@charset "UTF-8";

/* ===== ローディング画面 ===== */
#loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh; /* iPhone対応で安全に全画面 */
  height: 100vh; /* Firefox用 */
  background: linear-gradient(90deg, #fff1eb 0%, #ace0f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}


/* ロゴサイズ */
.loading__logo svg {
  width: 150px;
  height: auto;
  opacity: 0.01; /* 完全に 0 だと Firefox がレンダリング遅延 */
  transition: opacity 0.6s ease;

  display: flex;
  justify-content: center;
  align-items: center;
  /* 必要なら transform で微調整 */
  transform: translateX(-7%); /* 右寄りなら少し左に寄せる */
}

/* SVGパスの共通設定 */
.loading__logo path,
.loading__logo line {
  fill: none;
  stroke: var(--Primary__Black);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1000; /* JSで上書き */
  stroke-dashoffset: 1000; /* JSで上書き */
  opacity: 1; /* アニメーションでは触らない */
}

line {
  stroke-dasharray: 10; /* 線の長さに合わせて調整 */
  stroke-dashoffset: 10;
  /* animation: drawLine 1.2s forwards; */
}

.last-line {
  stroke-dasharray: 10; /* 初期値 */
  stroke-dashoffset: 10;
  stroke-opacity: 0; /* 最初は透明 */
}

/* 描画アニメーション */
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
    stroke-opacity: 1;
  }
}

/* アニメーション開始時に付与されるクラス */
.loading__logo.active svg {
  opacity: 1;
}

.loading__logo.active path,
.loading__logo.active line {
  animation-timing-function: linear; /* スムーズに描画 */
}

/* フェードアウト */
#loading.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading__logo svg path {
  animation: none;
}
.loading__logo svg {
  opacity: 1;
  transition: opacity .6s ease;
}

/* PC用ロゴサイズ */
@media screen and (min-width: 769px) {
  .loading__logo svg {
    width: 280px;
    height: auto;
  }
}

/* ===========================
  Main Visual
=========================== */

.article__header {
    width: 100%;
    height: auto;
    background-image: linear-gradient(90deg, #fff1eb 0%, #ace0f9 100%);
    padding: 102px 0;
}

.WorkAnnounce {
    padding: 16px 20px;
    color: var(--Primary__White);
    background-color: var(--Primary__MidBlue);
    width: 100%;
    font-family: "Zen Maru Gothic" ;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.FV {
    position: relative;
}

/* スライダー全体 */
.FV__slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    margin-top: 64px;
}

/* スライド3枚のグループ */
.FV__sliderList {
  animation: scroll-left 20s infinite linear .5s both;
  display: flex; /* スライド3枚を横並び */
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* スライド */
.FV__sliderItem {
  width: calc(50vw / 1); /* 3はスライドの枚数 */
  min-width: 250px;
  max-width: 300px;
}

/* スライドの画像 */
.FV__sliderItem img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 250px;
  max-width: 300px;
  border-radius: 6px;
  border: 1px solid var(--Primary__White);
}

/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.FV__Catchphrase {
    display: block;
    position: absolute;
    width: 100px;
    height: auto;
    top: -34px;
    left: 8%;
}

.FV__announce {
    position: absolute;
    bottom: -70px;
    right: 12%;;
}

.FV__announceBox {
    position: relative;
    padding: 8px 16px;
    background-color: #FFF7E3;
    border: 1px solid #D9D9D9;
    box-shadow: 0 4px 4px 0 rgba(32, 33, 36, 0.15);
}

.FV__announceTxt {
    font-family: "Zen Maru Gothic" ;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: var(--Primary__Black);
}

.FV__announceTxt2 {
    font-family: "Zen Maru Gothic" ;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--Primary__MidBlue);
    margin-top: 6px;
}

.FV__announceTxt2 span img {
    display: inline-block;
    width: 8px;
    height: auto;
    margin-top: 3px;
    margin-left: 6px;
}

.FV__announceImg {
    position: absolute;
    display: block;
    width: 50px;
    height: auto;
    border-radius: 50px;
    top: -24px;
    right: -22px;
}

/* Main Visual__Pc */
@media screen and (min-width: 769px)  {
    .article__header {
        width: 100%;
        height: auto;
        padding: 140px 0 86px;
    }

    .WorkAnnounce {
        padding: 16px 0;
        width: 100%;
        font-size: 2rem;
    }

    /* スライダー全体 */
    .FV__slider {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
        overflow: hidden;
        margin-top: 64px;
    }

    /* スライド3枚のグループ */
    .FV__sliderList {
        gap: 32px;
    }

    /* スライド */
    .FV__sliderItem {
        width: calc(50vw / 1); /* 3はスライドの枚数 */
        max-width: 350px;
    }

    /* スライドの画像 */
    .FV__sliderItem img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 350px;
        border-radius: 10px;
    }

    .FV__Catchphrase {
        display: block;
        position: absolute;
        width: 150px;
        height: auto;
        top: -55px;
        left: 16%;
    }

    .FV__announce {
    position: absolute;
    bottom: -40px;
    right: 8%;
}

    .FV__announceBox {
        position: relative;
        padding: 16px 24px;
    }

    .FV__announceTxt {
        font-size: 2rem;
    }

    .FV__announceTxt2 {
        font-size: 2.4rem;
        margin-top: 10px;
    }

    .FV__announceTxt2 span img {
        display: inline-block;
        width: 11px;
        height: auto;
        margin-top: 3px;
        margin-left: 8px;
    }

    .FV__announceImg {
        position: absolute;
        display: block;
        width: 70px;
        height: auto;
        top: -34px;
        right: -28px;
    }
}/* Main Visual__Pc__end */

/* ===========================
  scroll
=========================== */

.scroll {
  background-color: #F3FCFF;
  border-bottom: 2px dashed #048DB7;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.scroll__contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  animation: scroll 10s linear infinite ;
}

.scroll__txt {
  color: #6194BD;
  text-align: center;
  font-family: "Comfortaa";
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%; /* 16px */
}

.scroll__arrow {
  width: 14.667px;
  height: 17.363px;
}
@keyframes scroll {
  0% {transform: 
    translateX(0);}
  100% {transform: 
    translateX(100%);}
}

/* scroll__Pc */
@media screen and (min-width: 769px) {
  .scroll {
    border-bottom: 3px dashed #048DB7;
    gap: 64px;
    padding: 26px 0;
  }

  .scroll__contents {
    gap: 10px;
  }

  .scroll__txt {
    font-size: 3.6rem;
  }

  .scroll__arrow {
    width: 30px;
    height: 32.559px;
  }
}
/* scroll__end */


/* ===========================
 New Topics
=========================== */

.NewTopics {
    position: relative;
    margin: 80px auto 0;
    width: 314px;
    height: auto;
}

.NewTopics__Txt {
    display: none;
}

.NewTopics__Title {
    display: block;
    width: 236px;
    height: auto;
    margin: 0 auto;
}

.NewTopics__star1 {
    position: absolute;
    width: 24px;
    height: auto;
    top: -30px;
    left: 14px;
}

.NewTopics__star2 {
    position: absolute;
    width: 40px;
    height: auto;
    bottom: -24px;
    right: -2px;
}

.NewTopics__SubTxt {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-top: 8px;
}

/* NewTopics__Pc */
@media screen and (min-width: 769px) {
    .NewTopics {
        position: relative;
        margin: 140px auto 0;
        width: 100%;
        max-width: 618px;
        height: auto;
    }

    .NewTopics__Title {
        display: block;
        width: 380px;
        height: auto;
    }

    .NewTopics__star1 {
        position: absolute;
        width: 55px;
        height: auto;
        top: -50px;
        left: 15px;
    }

    .NewTopics__star2 {
        position: absolute;
        width: 80px;
        height: auto;
        bottom: -60px;
        right: 2%;
    } 

    .NewTopics__SubTxt {
        font-size: 2.4rem;
        margin-top: 16px;
    }
}/* NewTopicsPc__end */

/* ===========================
Toppic
=========================== */

.Toppic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;

  margin: 64px 16px 0;
}

.Toppic__announce {
    width: 100%;
    height: auto;
    margin-top: 48px;
}

.Toppic__announceBox {
    position: relative;
    width: 281px;
    height: auto;
    margin-left: auto;
    margin-right: 24px;
    padding: 8px 16px;
    background-color: #FFF7E3;
    border: 1px solid #D9D9D9;
    box-shadow: 0 4px 4px 0 rgba(32, 33, 36, 0.15);
}

.Toppic__announceTxt {
    font-family: "Zen Maru Gothic" ;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: var(--Primary__Black);
}

.Toppic__announceTxt2Box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.Toppic__announceTxt2 {
    font-family: "Zen Maru Gothic" ;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--Primary__MidBlue);
    margin-top: 6px;
}

.Toppic__announceTxt2 span img {
    display: inline-block;
    width: 8px;
    height: auto;
    margin-top: 3px;
    margin-left: 6px;
}

.Toppic__Icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.Toppic__IconInsta img {
    display: block;
    width: 17px;
    height: auto;
}

.Toppic__IconX img {
    display: block;
    width: 17px;
    height: auto;
}

.Toppic__announceImg {
    position: absolute;
    display: block;
    width: 50px;
    height: auto;
    border-radius: 50px;
    top: -24px;
    right: -22px;
}

/* Toppic__Pc */
@media screen and (min-width: 769px) {
    .Toppic__announce {
        width: 100%;
        height: auto;
        margin-top: 64px;
    }

    .Toppic__announceBox {
        position: relative;
        width: 370px;
        height: auto;
        margin-left: auto;
        margin-right: 140px;
        padding: 18px 24px;
    }

    .Toppic__announceTxt {
        font-size: 2rem;
    }

    .Toppic__announceTxt2Box {
        gap: 8px;
    }

    .Toppic__announceTxt2 {
        font-size: 2rem;
        margin-top: 10px;
    }

    .Toppic__announceTxt2 span img {
        display: inline-block;
        width: 11px;
        height: auto;
        margin-top: 3px;
        margin-left: 8px;
    }

    .Toppic__Icon {
        margin-top: 14px;
    }

    .Toppic__IconInsta img {
        display: block;
        width: 26px;
        height: auto;
    }

    .Toppic__IconX img {
        display: block;
        width: 26px;
        height: auto;
    }

    .Toppic__announceImg {
        position: absolute;
        display: block;
        width: 70px;
        height: auto;
        top: -34px;
        right: -28px;
    }
}

/* Toppic__Pc */
@media screen and (min-width: 1240px) {

 .Toppic {
    flex-direction: row;
    gap: 48px;
    margin: 120px auto 0;
    width: clamp(705px, 80.5vw, 1680px); 
  }
}


/* ----------------------------
 News 
----------------------------- */
.section--News {
 background-color: var(--Primary__White);
 padding: 20px 12px;
 box-shadow: 0 10px 4px 0 rgba(32, 33, 36, 0.20);
 border-top: 28px solid var(--Primary__Blue);
 position: relative;
 max-width: 550px;
 margin: 0 auto;
}

.section--News .section__title {
    font-family: "Comfortaa" ;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    color: var(--Primary__MidBlue);
    margin-top: 8px;
}

.section--News .section__titleJp {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    margin-top: 6px;
}


.News__contents {
 margin-top: 32px;
}

.News__item {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 gap: 16px;
 margin-top: 16px;
 padding-bottom: 16px;
 border-bottom: 2px solid var(--Primary__SkyBlue);
}

.News__item:first-of-type {
 margin-top: 0;
}

/* ✅ 画像・テキスト部分 */
.News__img {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
}

.News__date {
  font-family: "Comfortaa";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--Primary__DeepGray);
  line-height: 1;
}

.News__title {
  margin-top: 4px;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.News__title:hover {
  color: var(--Primary__Orange);
}

.section--News .Btn {
  margin: 48px auto 0;
}

.News__masking {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
  width: 170px;
  height: auto;
}

/* News__Pc */
@media screen and (min-width: 1240px) {

    .section--News {
        padding: 16px 24px 48px;
        border-top: 28px solid var(--Primary__Blue);
        position: relative;
        max-width: 100%;
        width: clamp(480px, 38vw, 556px);
        margin: 0;
        flex: 1;
    }

    .section--News .section__title {
        font-size: 6.4rem;
        margin-top: 8px;
    }

    .section--News .section__titleJp {
        font-size: 2rem;
        margin-top: 8px;
    }

    .News__contents {
        margin-top: 48px;
    }

    .News__item {
        max-height: 150px;
    }

    .News__img {
        width: 100%;
        height: auto;
        max-width: 188px;
        min-width: 140px;
    }


    .News__title {
        font-size: 1.6rem;
    }

    .News__contents .Btn {
        margin: 56px auto 0;
    }

    .News__masking {
        position: absolute;
        top: -70px;
        left: 50%;
        transform: translate(-50%);
        width: 273px;
        height: auto;
    }
}
/* NewsPc__end */

/* ----------------------------
 Report 
----------------------------- */
.section--Report {
 background-color: var(--Primary__White);
 padding: 20px 12px;
 box-shadow: 0 10px 4px 0 rgba(32, 33, 36, 0.20);
 border-top: 28px solid var(--Primary__Orange);
 position: relative;
 max-width: 550px;
 margin: 0 auto;
}

.section--Report .section__title {
    font-family: "Comfortaa" ;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    color: var(--Primary__MidBlue);
    margin-top: 8px;
}

.section--Report .section__titleJp {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    margin-top: 6px;
}

.Report__contents {
 margin-top: 32px;
}

.Report__item {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 gap: 16px;
 margin-top: 16px;
 padding-bottom: 16px;
 border-bottom: 2px solid var(--Primary__SkyBlue);
}

.Report__item:first-of-type {
 margin-top: 0;
}

/* ✅ 画像・テキスト部分 */
.Report__img {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
}

.Report__date {
  font-family: "Comfortaa";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--Primary__DeepGray);
  line-height: 1;
}

.Report__title {
  margin-top: 4px;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.Report__title:hover {
  color: var(--Primary__Orange);
}

.section--Report .Btn {
  margin: 48px auto 0;
}

.Report__masking {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
  width: 170px;
  height: auto;
}

/* Report__Pc */
@media screen and (min-width: 1240px) {

  .section--Report {
    padding: 16px 24px 48px;
    border-top: 28px solid var(--Primary__Orange);
    position: relative;
    max-width: 100%;
    width: clamp(480px, 38vw, 556px);
    margin: 0;
    flex: 1;
  }

    .section--Report .section__title {
        font-size: 6.4rem;
        margin-top: 8px;
    }

    .section--Report .section__titleJp {
        font-size: 2rem;
        margin-top: 8px;
    }

    .Report__contents {
        margin-top: 48px;
    }

    .Report__item {
        max-height: 150px;
    }

    .Report__img {
        width: 100%;
        height: auto;
        max-width: 188px;
        min-width: 140px;
    }


    .Report__title {
        font-size: 1.6rem;
    }

    .Report__contents .Btn {
        margin: 56px auto 0;
    }

    .Report__masking {
        position: absolute;
        top: -70px;
        left: 50%;
        transform: translate(-50%);
        width: 273px;
        height: auto;
    }
}/* ReportPc__end */

/* ----------------------------
Works
----------------------------- */

.WorksContainer {
 margin-top: 80px;
}

.WorksContainerUpper {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--Primary__MidBlue);
  padding: 20px 0;
}

.WorksContainerUpper__List {
  display: flex;
  animation: marquee 20s linear infinite;
}

.WorksContainerUpper__List:last-of-type {
  /* 2つ目のリストを最初の後ろに連結 */
  margin-left: 2rem;
}

.WorksContainerUpper__Item {
  font-family: "Comfortaa";
  font-size: 4rem;
  font-weight: 700;
  color: var(--Primary__White);
  margin-right: 48px;
  flex-shrink: 0; /* 文字が縮まない */
  line-height: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 2つ合わせて100% → 片方分でループ */
  }
}

/* PC */
@media (min-width: 769px) {
    .WorksContainerUpper__Item {
        font-size: 6.4rem;
        margin-right: 64px;
    }

    .WorksContainerUpper__List {
        animation: marquee 30s linear infinite;
    }
}

.section--Works {
  margin: 0 auto ;
  background-image: linear-gradient(90deg, #fff1eb 0%, #ace0f9 100%);
  padding: 64px 16px 40px;
  width: 100%;
}

.Works__Group {
  margin-top: 48px;
}

.Works__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.Works__contentsImgGroup {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: 421px;
}

.Works__contentsImg:first-of-type {
  width: 100%;
  min-width: 141px;
  max-width: 181px;
  margin-top: 115px;
}

.Works__contentsImg:last-of-type {
  width: 100%;
  min-width: 168px;
  max-width: 208px;
}

.Works__contentsTxtBox {
  max-width: 421px;
}

.Works__contentsTitleBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.Works__contentsTitle {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 700;
}

.Works__contentsTxt {
  margin: 24px auto 0 ;
  font-family: "Zen Maru Gothic";
  font-weight: 400;
  text-align: center;
  font-size: 1.4rem;
}

.Works__contentsTxt span {
  font-weight: 700;
  background-image: linear-gradient(0deg, #fbbf2480 0.5em, transparent 0.5em);
}


/* スライダー全体 */
.Works__slider {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
  margin-top: 48px;
}
/* スライド3枚のグループ */
.Works__sliderList {
  animation: scroll-right 20s infinite linear .5s both;
  display: flex; /* スライド3枚を横並び */
}
/* スライド */
.Works__sliderItem {
  width: calc(50vw / 1); /* 3はスライドの枚数 */
  margin-right: 32px;
  max-width: 200px;
}
/* スライドの画像 */
.Works__sliderItem img {
  display: block;
  width: 100%;
}
/* CSSアニメーション */
@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.Works__sliderAnnounce {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  margin-left: auto;
  background-color: var(--Primary__Orange);
  padding: 10px 20px 10px 10px;
  border-radius: 30px;
  width: 168px;
  height: auto;
  box-shadow: 0 4px 4px 0 rgba(32, 33, 36, 0.15);
}

.Works__sliderAnnounce__circle {
    display: block;
    width: 12px;
    height: auto;
    margin: 3px 12px 0 0;
}

.Works__sliderAnnounce .Btn__Txt {
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--Primary__White);
    margin-right: 6px;
}

.Works__sliderAnnounce .Btn__arrow img {
  display: block;
  width: 7px;
  height: 12px;
  padding-bottom: 6px;
}

.section--Works .Btn {
  margin: 48px auto 0;
}

.WorksContainerLower {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -1px;
}

.WorksContainerLowerPc {
    display: none;
}

/* Works__Pc */
@media screen and (min-width: 769px) {

    .WorksContainer {
        margin-top: 140px;
    }

    .section--Works {
        margin: 0 auto ;
        padding: 80px 0px;
        width: 100%;
    }

    .Works__Group {
        margin-top: 64px;
    }

    .Works__contents {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 80px;
        width: clamp(705px, 80.5vw, 1680px); 
    }

    .Works__contentsImgGroup {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 50px;
        max-width: 540px;
    }

    .Works__contentsImg:first-of-type {
        width: 100%;
        max-width: 250px;
        margin-top: 115px;
    }

    .Works__contentsImg:last-of-type {
        width: 100%;
        max-width: 290px;
    }

    .Works__contentsTxtBox {
        max-width: 570px;
    }

    .Works__contentsTitle {
        font-size: 3.2rem;
        font-weight: 700;
        text-align: left;
    }

    .Works__contentsTxt {
        margin: 32px 0 0 0;
        font-weight: 400;
        text-align: left;
        font-size: 2rem;
    }

    .Works__contentsTxt:first-of-type {
        margin: 56px 0 0 0;
    }

    .Works__contentsTxt span {
        font-weight: 700;
    }


    /* スライダー全体 */
    .Works__slider {
        display: flex; /* スライドのグループを横並び */
        overflow: hidden; /* はみ出たスライドを隠す */
        margin-top: 80px;
    }
    /* スライド3枚のグループ */
    .Works__sliderList {
        animation: scroll-left 20s infinite linear .5s both;
        display: flex; /* スライド3枚を横並び */
    }
    /* スライド */
    .Works__sliderItem {
        width: calc(50vw / 1); /* 3はスライドの枚数 */
        margin-right: 40px;
        max-width: 300px;
    }
    /* スライドの画像 */
    .Works__sliderItem img {
        display: block;
        width: 100%;
    }
  
    .Works__sliderAnnounce {
        margin-top: 56px;
        margin-left: auto;
        margin-right: 9.7%;
        padding: 16px 30px 16px 20px;
        width: 250px;
        height: auto;
    }

    .Works__sliderAnnounce__circle {
        display: block;
        width: 14px;
        height: auto;
        margin: 4px 20px 0 0;
    }

    .Works__sliderAnnounce .Btn__Txt {
        font-size: 2rem;
        margin-right: 8px;
    }

    .Works__sliderAnnounce .Btn__arrow img {
        display: block;
        width: 7px;
        height: 12px;
        padding-bottom: 6px;
    }

    .section--Works .Btn {
        margin: 56px auto 0;
    }

    .WorksContainerLower {
        display: none;
    }

    .WorksContainerLowerPc {
        display: block;
        width: 100%;
        height: auto;
        margin-top: -1px;
    }
}/* WorksPc__end */

/* ----------------------------
 Original__Slider 
----------------------------- */

.Original__SliderGroup {
    background-color: var(--Primary__White);
    padding-top: 20px;
}

.Original__SliderList {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: Originalscroll-left 15s infinite linear .5s both;
}

.Original__SliderList:nth-of-type(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
    animation: Originalscroll-right 15s infinite linear .5s both;
}

.Original__SliderItem {
    margin-right: 16px;
    animation: OriginalItemscroll 30s infinite linear .5s both;
}

.Original__SliderItem img {
    display: block;
    height: auto;
    max-width: 100px;
}

/* CSSアニメーション */
@keyframes Originalscroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes Originalscroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes OriginalItemscroll {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.Original__Slider_backimg {
    display: block;
    width: 100%;
    height: auto;
}

.Original__Slider_backimgPc {
    display: none;
}

/* Original__Slider__Pc */
@media screen and (min-width: 769px) {
    .Original__SliderGroup {
        padding-top: 40px;
    }

    .Original__SliderList {
        display: flex;
        justify-content: center;
        align-items: center;
        animation: Originalscroll-left 40s infinite linear .5s both;
    }

    .Original__SliderList:nth-of-type(2) {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
        animation: Originalscroll-right 40s infinite linear .5s both;
    }

    .Original__SliderItem {
        margin-right: 48px;
        max-width: 200px;
        animation: OriginalItemscroll 40s infinite linear .5s both;
    }

    .Original__SliderItem img {
        display: block;
        height: auto;
        max-width: 200px;
    }

    .Original__Slider_backimg {
        display: none;
    }

    .Original__Slider_backimgPc {
        display: block;
        width: 100%;
        height: auto;
    }
}/* Original__SliderPc__end */

/* ----------------------------
 Original 
----------------------------- */

.section--Original {
  margin: 80px auto 0;
}

.section--Original .section__titleGroup {
    position: relative;
    width: 287px;
    height: auto;
    margin: 0 auto;
}

.Original__star1 {
    position: absolute;
    width: 24px;
    height: auto;
    top: -30px;
    left: 14px;
}

.Original__star2 {
    position: absolute;
    width: 40px;
    height: auto;
    bottom: -24px;
    right: -2px;
}

.Original__titleSubTxt {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-top: 12px;
}

/* タイトル部分 */
.Original__Title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Original__TitleEn {
  text-align: center;
  font-family: "Comfortaa";
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  padding-right: 10px;
  border-right: 2px solid var(--Primary__Orange);
}

.Original__TitleJp {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 10px;
}

/* ----------------------------
レイアウト設定
----------------------------- */

/* スマホでは縦並び（デフォルト） */
.Original__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 32px 16px 0;
}

.Original__listBox {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* 各ブロック（Comics / Illust） */
.Original__block {
  width: 300px;
  margin: 0 auto;
}

/* ----------------------------
Swiper共通スタイル
----------------------------- */

.original__swiper,
.original__swiper2 {
  width: 230px;
  height: auto;
  margin: 32px auto 0;
}

.swiper-slide {
  box-shadow: none !important;
  border-radius: 20px;
  overflow: hidden;
}

.original__cardItem {
  width: 230px;
  height: auto;
  padding: 16px;
  border-radius: 20px;
  border: 3px solid var(--Primary__White);
  background-color: var(--primary__Blue); /* デフォルト色 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ----------------------------
カードの色分け（Comics側）
----------------------------- */
.original__swiper .swiper-slide:nth-of-type(1) .original__cardItem {
  background-color: var(--primary__Blue);
}
.original__swiper .swiper-slide:nth-of-type(2) .original__cardItem {
  background-color: var(--Primary__Pink);
}
.original__swiper .swiper-slide:nth-of-type(3) .original__cardItem {
  background-color: var(--Primary__Mint);
}
.original__swiper .swiper-slide:nth-of-type(4) .original__cardItem {
  background-color: var(--Primary__DeepBlue);
}

/* ----------------------------
カードの色分け（Illust側）
----------------------------- */
.original__swiper2 .swiper-slide:nth-of-type(1) .original__cardItem {
  background-color: var(--Primary__Mint);
}
.original__swiper2 .swiper-slide:nth-of-type(2) .original__cardItem {
  background-color: var(--primary__Blue);
}
.original__swiper2 .swiper-slide:nth-of-type(3) .original__cardItem {
  background-color: var(--Primary__Pink);
}
.original__swiper2 .swiper-slide:nth-of-type(4) .original__cardItem {
  background-color: var(--Primary__DeepBlue);
}

/* ----------------------------
カード内の要素
----------------------------- */
.original__cardItemImg {
  width: 198px;
  height: auto;
  border-radius: 10px;
}

.original__cardItemTxt {
  margin-top: 16px;
  margin-bottom: 16px;
  text-align: center;
  font-family: "Zen Maru Gothic";
  color: var(--Primary__White);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 25%;
}

.original__cardItemTxt:hover {
  color: var(--Primary__Orange);
}

.original__cardItemTxtSub {
    font-family: "Comfortaa";
    font-size: 1.2rem;
    font-weight: 400;
    text-align: right;
    line-height: 1;
    color: var(--Primary__White);
    margin-top: 24px;
}

/* ----------------------------
ナビゲーション矢印
----------------------------- */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: #FF7300;
  font-size: 24px;
  font-weight: bold;
}

.swiper-button-prev {
  left: 5%;
}
.swiper-button-next {
  right: 5%;
}

.section--Original .Btn {
    margin: 48px auto 0;
}

/* Original__Pc */
@media (min-width: 769px) {

    .section--Original {
        margin: 140px auto 0;
        width: clamp(705px, 80.5vw, 1680px); 
    }

    .section--Original .section__titleGroup {
        position: relative;
        width: 685px;
        height: auto;
        margin: 0 auto;
    }

    .Original__star1 {
        position: absolute;
        width: 55px;
        height: auto;
        top: -50px;
        left: 15px;
    }

    .Original__star2 {
        position: absolute;
        width: 80px;
        height: auto;
        bottom: 0px;
        right: 2%;
    } 

    .Original__titleSubTxt {
        font-size: 2.4rem;
        margin-top: 32px;
    }


    .Original__TitleEn {
        font-size: 6.4rem;
        border-right: 3px solid var(--Primary__Orange);
    }

    .Original__TitleJp {
        font-size: 2rem;
        line-height: 1.8;
    }

    .Original__container {
        border-radius: 50px;
        margin: 64px auto 0;
    }

    .Original__listBox {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 1000px;
        width: 100%;
        padding-bottom: 32px;
    }

    .Original__block {
        width: 100%;
        margin: 0 ;
    }

    .original__swiper,
    .original__swiper2 {
        width: 300px;
        height: auto;
        margin: 48px  auto 0;
    }

    .original__cardItem {
        width: 100%;
        width: 300px;
    }

    .original__cardItemImg {
        width: 100%;
        max-width: 268px;
    }

    .original__cardItemTxt {
        font-size: 1.6rem;
    }

    .section--Original .Btn {
        margin: 56px auto 0;
    }
}/* OriginalPc__end */

/* ----------------------------
About
----------------------------- */

.AboutContainerUpper {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 80px;
    margin-bottom: -1px;
}

.AboutContainerUpperPc {
    display: none;
}

.section--About {
    padding-bottom: 56px;
    background-image: linear-gradient(90deg, #fff1eb 0%, #ace0f9 100%);
}

.About__group {
  margin-top: 48px;
}

.About__img {
  width: 300px;
  height: 300px;
  border-radius: 300px;
  display: block;
  margin: 0 auto;
}

.About__nameContents {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.About__nameJp {
  width: 64px;
  height: auto;
  padding-right: 10px;
  border-right: 2px solid var(--Primary__Orange);
}

.About__nameEn {
  padding-left: 10px;
  font-family: "Comfortaa";
  font-size: 1.6rem;
  font-weight: 400;
  text-align: end;
  line-height: 1; /* 14px */
}

.About__nameIconInsta {
  margin-left: 15px;
  width: 30px;
  height: 30px;
}

.About__mainTxt {
  margin-top: 32px;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 400;
}

.About__txt1 ,
.About__txt2 {
  margin: 24px auto 0;
  padding: 0 16px;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 550px;
}

.section--About .Btn {
  margin: 48px auto 0;
}

.AboutContainerLower {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -1px;
}

.AboutContainerLowerPc {
    display: none;
}

/* About__Pc */
@media screen and (min-width: 769px) {
    .AboutContainerUpper {
        display: none;
    }

    .AboutContainerUpperPc {
        display: block;
        width: 100%;
        height: auto;
        margin-top: 140px;
        margin-bottom: -1px;
    }

    .section--About {
        padding-bottom: 40px;
        background-image: linear-gradient(90deg, #fff1eb 0%, #ace0f9 100%);
    }

    .About__group {
        margin-top: 0px;
        margin: 64px auto 0;
    }

    .About__contents {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 80px;
        margin: 0 32px;
        padding-bottom: 32px;
    }

    .About__img {
        width: 100%;
        height: auto;
        border-radius: 300px;
        display: block;
        max-width: 340px;
        margin: 0;
    }

    .About__nameContents {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 32px;
    }

    .About__mainTxt {
        margin-top: 40px;
        text-align: left;
        font-size: 1.6rem;
    }

    .About__txt1 ,
    .About__txt2 {
        margin: 0;
        margin-top: 30px;
        text-align: left;
        font-size: 1.6rem;
        padding: 0;
        max-width: 550px;
    }

    .section--About .Btn {
        margin: 56px auto 0;
    }

    .AboutContainerLower {
        display: none;
    }

    .AboutContainerLowerPc {
        display: block;
        width: 100%;
        height: auto;
        margin-top: -1px;
    }
}/*　About__end */

/* ----------------------------
SupportMore
----------------------------- */

.section--SupportMore {
  margin: 80px 16px 0;
}

.SupportMore__Title {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  justify-content: center;
  width: 343px;
  padding: 12px 10px;
  border-radius: 30px;
  border: 2px dashed var(--Primary__White);
  background-color: var(--Primary__MidBlue);
  margin: 0 auto;
}

.SupportMore__TitleCircle {
    display: block;
    width: 12px;
    height: auto;
    margin-right: 2px;
    margin-bottom: 4px;
}

.SupportMore__TitleEn {
  text-align: center;
  font-family: "Comfortaa";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1; /* 24px */
  color: var(--Primary__White);
  padding-right: 10px;
  border-right: 2px solid var(--Primary__White);
}

.SupportMore__TitleJp {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--Primary__White);
}

.SupportMore__contents {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 48px 0;
}

/* 各カード */
.SupportMore__list {
  flex: 0 0 82%; /* ←1枚ずつ見せる（調整OK） */
  scroll-snap-align: center;
  max-width: 300px;
}

/* 内部のカードデザイン */
.SupportMore__item {
  padding: 12px;
  background: var(--Primary__White);
  overflow: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);

  max-width: 300px;
}

.SupportMore__item:first-of-type {
  margin-top: 0;
  background: var(--Primary__Blue);
}

.SupportMore__list:nth-of-type(2) .SupportMore__item {
  background: var(--Primary__Mint);
}

.SupportMore__list:last-of-type .SupportMore__item {
  background-color: var(--Primary__DeepBlue);
}

.SupportMore__img {
  display: block;
  width: 100%;
}

.SupportMore__itemBox {
  padding: 12px 10px;
  background-color: var(--Primary__White);
  height: 277px;
}

.SupportMore__topic {
  color: var(--Primary__Blue);
  text-align: center;
  font-family: "Comfortaa";
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1; /* 24px */
}

.SupportMore__list:nth-of-type(2) .SupportMore__topic {
  color: var(--Primary__Mint);
}

.SupportMore__list:last-of-type .SupportMore__topic {
  color: var(--Primary__DeepBlue);
}

.SupportMore__txt {
  margin-top: 24px;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
}

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

.SupportMore__BtnGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 12px;
  margin: 24px  auto 0;
}

.SupportMore__Btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  padding: 5px 5px;
  border: 2px solid var(--Primary__Orange);
  background: var(--Primary__LightOrange);
  box-shadow: 0 4px 4px 0 rgba(32, 33, 36, 0.15);
  max-width: 130px;
  margin: 24px auto 0;
}

.SupportMore__Btn:hover {
  background-color: var(--Primary__Orange);
}

.SupportMore__BtnGroup .SupportMore__Btn {
  margin: 0;
}

.SupportMore__BtnTxt {
  font-family: "Comfortaa";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1; /* 16px */
}

.SupportMore__Btnarrow {
  width: 12px;
  height: 7px;
}

/* SupportMore__Pc */
@media screen and (min-width: 769px) {
    .section--SupportMore {
        margin: 140px auto 0;
        max-width: 1160px;
    }

    .SupportMore__Title {
        display: flex;
        align-items: flex-end;
        gap: 6px;
        justify-content: center;
        width: 670px;
        padding: 18px 22px;
        border-radius: 50px;
    }

    .SupportMore__TitleCircle {
        width: 20px;
        height: auto;
        margin-right: 2px;
        margin-bottom: 14px;
    }

    .SupportMore__TitleEn {
        font-size: 4.8rem;
    }

    .SupportMore__TitleJp {
        font-size: 2.4rem;
    }

    .SupportMore__contents {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 64px;
        margin-top: 64px;
        flex-wrap: wrap;
        padding: 0;

        scroll-snap-type: none;
    }

    .SupportMore__img {
        max-width: 307px;
    }

    .SupportMore__list {
        margin-top: 0;
        max-width: 343px;
    }

    .SupportMore__item {
        max-width: 343px;
        padding: 18px;
    }

    .SupportMore__topic {
        font-size: 3rem;
    }

    .SupportMore__txt {
        font-size: 1.6rem;
    }

    .SupportMore__txt br {
        display: none;
    }

    .SupportMore__itemBox {
        max-width: 307px;
        height: auto;
    }
}

/*==========================
fadeIn
==========================*/

.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
    will-change: transform, opacity; /* ← GPU最適化！ */
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/* 初期状態（画面外・透明） */
.slideIn {
  opacity: 0;
  transform: translateX(80px); /* 右から */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示された時 */
.slideIn.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* WorksSticky */
.WorksPinArea {
  position: relative;
  z-index: 20;                /* 最前面 */
  margin-top: 0vh;          /* Toppic__announce に被せる */

  transform: translateY(40vh); /* ← 完全に画面下 */
  transition: transform 2.0s cubic-bezier(.4, 0, .2, 1);
}

.WorksPinArea.is-show {
  transform: translateY(0);   /* ← 画面トップ */
}

.fadeInLeft {
    transform: translate(-50px, 0); /* 左 → 右 */
    opacity: 0;
    transition: 2.5s;
    will-change: transform, opacity;
}

.fadeInLeft.animated {
    transform: translate(0, 0);
    opacity: 1;
}

.AboutArea {
    position: relative;
    z-index: 20;                /* 最前面 */
    margin-top: 0vh;          /* Toppic__announce に被せる */

    transform: translateY(40vh); /* ← 完全に画面下 */
    transition: transform 2.5s cubic-bezier(.4, 0, .2, 1);
}

.AboutArea.is-show {
  transform: translateY(0);   /* ← 画面トップ */
}