@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Zen+Kaku+Gothic+New&display=swap");
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

メインビジュアル

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

更新履歴

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.update-box {
  background: #fff;
  border-radius: 16px;        /* ← 角丸 */
   border: 1px solid black;     /* ← 枠線をくっきり */
  padding: 16px 20px;
  margin: 1em 0 3em;
  
  /* 紙っぽい影 */
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.10),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.update-list {
  height: 140px;
  overflow-y: auto;
  padding-right: 10px;
}

/* スクロールバー非表示 */
.update-list::-webkit-scrollbar {
  display: none;
}

.update__item {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.update__item:not(:last-child) {
  border-bottom: 1px solid #e5e9ef;
}

.update__item time {
  font-family: "Josefin Sans", "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  color: #666;
}

.update-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.update__item.is-latest {
  position: relative;
  padding-left: 16px;
}

.update__item.is-latest::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: #8aa4c8;
  border-radius: 2px;


/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 ABOUT

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ Profile －－－－－－－－－－*/
.profile__img {
  padding: 0 40px;
}
.profile__img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: auto;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 CONTACT

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.mailform input, .mailform textarea {
  width: max(50%, 400px);
}

/* タブレット、スマホ */
@media screen and (max-width: 768px) {
  .mailform input,
  .mailform textarea {
    max-width: 100%;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

GALLERY

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.gallerylist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.gallerylist__item {
  width: calc((100% - 80px) / 5);
  height: auto;
}
@media screen and (max-width: 1180px) {
  .gallerylist__item {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 767px) {
  .gallerylist__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 520px) {
  .gallerylist__item {
    width: calc((100% - 20px) / 2);
  }
}
.gallerylist__item a {
  position: relative;
  width: 100%;
  display: block;
}
.gallerylist__item a::before {
  content: "";
  display: block;
  padding-top: 100%;
  /*100%=親要素の横幅*/
}
.gallerylist__item a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*－－－－－－－－－－ 連載一覧 －－－－－－－－－－*/
.flex{
  margin-bottom: 100px;
}
.cardlist a {
  text-decoration: none;
}
@media screen and (max-width: 520px) {
  .cardlist {
    gap: 10px;
  }
}
.cardlist .cardlist__item {
  width: calc((100% - 60px) / 4);
}
.cardlist .cardlist__item a .cardlist__img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .cardlist .cardlist__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 520px) {
  .cardlist .cardlist__item {
    width: calc();
    a {
     .cardlist__img {
      height: 100px;
     }
    }
  }
}
.cardlist__img {
  border: solid 1px black;
}

/* 漫画用リスト */



.card__f {
  max-width: 1000px;
  display: flex;
  line-height: 1.5;
  margin: 0.5em;
  
}
.card__f-image {
  display: flex;
  justify-content: left;
  align-items: center;/* 上辺合わせにしたい場合は center を flex-start に変更 */
  width: 40%;/* 画像の横幅専有パーセンテージ */
  margin: 0.3em auto;
  padding: 1em;
  
}

.card__f-text {
  flex: 1;
  min-width: 0;
  display: block;
  align-items: center;
  padding: 1em;
  border-left: 1px solid rgb(200,200,200);/* 画像とテキストの間にボーダー不要の場合はこの一行削除 */
  font-size: 1.5rem;
}

.card__f-text h3 {
  font-weight: 600;
  font-style: normal;
  font-size: 1.8rem;
  padding: 1rem 0.5rem;
}

@media screen and (min-width: 1020px) {

  .card_f_all{
    display: flex;
    flex-wrap: wrap;
  }
  .card__f  {
    max-width: 500px;
  }
}

@media screen and (max-width: 1020px) {
  .card__f-image {
    max-width: 300px ;
  }
  .card__f-text {
    font-size: 1.2rem;
  }
  
  .card__f-text h3 {
    font-size: 1.5rem;
  }
}

  
/* 漫画用リストここまで */

@media screen and (max-width: 767px) {
.mainvisual{
    position: fixed;
    top: 10px;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: -1;
    opacity: 100%;
  }
}

/* line awsome用css */


i.la, i.las, i.lar, i.lab {
  font-size:24px;
  color: dimgray;
  vertical-align: top;
  }

 i.la-fire-alt
 {color: red;}

  @media screen and (max-width: 767px) {
   i.la, i.las, i.lar, i.lab {
  font-size:20px;
  }
  }