@charset "utf-8";
/*==========================
common
==========================*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: #0d0d0d;
  /* font-family: "Noto Serif JP"; */
  font-style: normal;
  margin: 0 auto;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/*==========================
header
==========================*/
.header {
  position: relative;
  height: 105px;
}

.header__ad {
  position: relative; /* ←ここがポイント！ */
  margin     : auto;
  font-size  : 140%;
  line-height: 1.5em;
  background : #0d0d0d;
  overflow   : hidden;
  top: 0;
  left: 0;
  width: 100%;
  background: #0d0d0d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.header__ad span{
  display     : inline-block;
  padding-left: 100%;
  white-space : nowrap;
  line-height : 1em;
  animation   : scrollAnime 20s linear infinite;
  padding: 11px 0;
  color: #FFF;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align : center;
}
@keyframes scrollAnime{
    0% { transform: translateX(0)}
  100% { transform: translateX(-100%)}
}

/* .nav初期表示 */
.nav {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100vh;
  padding: 24px 6.4%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
    
}

.nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  margin-top: 17px;
  margin-left: -59px;
  display: block;
  width: 250px;
  height: 60px;
  flex-shrink: 0;
  aspect-ratio: 25/6;
}

.logo__txt {
  display: none;
}

.nav__menuEmoji {
  display: flex;
  position: absolute;
  right: 18.1%; /* 必要に応じて調整 */
  top: 52px;
}

.nav__btn {
  display: block;
  width: 39.644px;
  height: 21.474px;
  flex-shrink: 0;
  cursor: pointer;
  position: absolute;
  top: 63px;
  right: 4.8%;
}

.nav__list {
  margin-top: 53px;
  margin-left: 13.8%;
  display: block;
  justify-content: center;
}

.nav__item {
  margin-bottom: 10px;
}

.nav__emoji {
  font-family: Inter;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav__txt {
  color: #0D0D0D;
  font-family: Literata;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
  display: block;
  width: 39.644px;
  height: 21.474px;
  flex-shrink: 0;
  cursor: pointer;
  position: absolute;
  top: 63px;
  right: 4.8%;
}

.header__logo {
  top: 0;
  margin-left: -35px;
  margin-bottom: 2px;
}

.header__emoji {
  display: flex;
  position: absolute;
  right: 18.1%; /* 必要に応じて調整 */
  top: 52px;
}

.icon__item {
  color: #0D0D0D;
  font-family: Inter;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* .header pc */
@media screen and (min-width:769px) {
  .header {
    position: relative;
    height: 158px;
  }
  
  .header__ad span{
    font-size: 2rem;
    line-height: normal;
}

  .nav {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    padding: 24px 6.4%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
      
  }

  .nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__logo {
    margin-top: 25px;
    margin-left: -90px;
    display: block;
    width: 250px;
    height: 60px;
    flex-shrink: 0;
    aspect-ratio: 25/6;
  }


  .nav__menuEmoji {
    width: 53px;
    height: 41.681px;
    flex-shrink: 0;
    display: flex;
    position: absolute;
    right: 18.4%;
    top: 72px;
    gap: 6px;
  }

  .nav__btn {
    display: block;
    width: 39.644px;
    height: 21.474px;
    flex-shrink: 0;
    cursor: pointer;
    position: absolute;
    top: 94px;
    right: 4.1%;
  }
  
  .nav__list {
    margin-top: 90px;
    margin-left: 16.9%;
    display: block;
    justify-content: center;
  }

  .nav__item {
    margin-bottom: 20px;
  }

  .nav__emoji {
    font-family: Inter;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .nav__txt {
    color: #0D0D0D;
    font-family: Literata;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  /* .nav.active表示 */
  .nav.active {
    transform: translateX(0);
  }

  .header__btn {
    top: 95px;
    right: 4.1%;
  }

  .header__logo {
    display: flex;
    top: 0;
    margin: 0 auto;
  }

  .logo__img {
    margin-top: 24px;
  }

  .logo__txt {
    margin-top: 49px;
    margin-left: -2%;
    display: block;
    color: #0D0D0D;
    font-family: Inter;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .header__emoji {
    right: 9.5%;
    top: 73.5px;
    gap: 8px;
  }

  .icon__item {
    font-size: 4rem;
  }
}/* pc 769px */

/*==========================
main
==========================*/
/* .article header */
.vertical-scroll-text,
.scroll-inner {
  display: none;
}

.mainImg {
  position: relative;
  display: block;       /* ← または flex、でも block が無難 */
  width: 100%;          /* ← 追加！ */
}

.mainImg .mainImg__sp {
  position: static;
  display: block;
  object-fit: cover;
  margin: 0 auto;       /* ← 中央寄せ */
  width: 100%;          /* ← 幅100% */
  flex-shrink: 0;
  aspect-ratio: 125/179;
  border-top: 1px solid #0D0D0D;
  border-bottom: 1px solid #0D0D0D;
}

.mainImg .mainImg__pc {
  display: none;
}

.mainVisual__scroll {
  position: absolute;
  color: #0D0D0D;
  font-family: DotGothic16;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  top: 50%;
  background-color: #d9d9d9;
  width: 537px;
  overflow: hidden;
}

.mainVisual__scroll.left {
  display: none;
  
}

@keyframes scrollVertical {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* .article header pc */
@media screen and (min-width:769px) {
 .main {
    position: relative;  /* この中で絶対配置できるように */
    overflow: hidden;
  }

  .vertical-scroll-text {
    position: absolute;  /* ← fixed から変更 */
    left: 0;
    top: 0;
    width: 137px;
    height: 100%;
    overflow: hidden;
    z-index: 2;           /* 必要に応じて調整 */
    border-top: 1px solid #0D0D0D;
    border-right: 1px solid #0D0D0D;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .scroll-inner {
  display: flex;
  flex-direction: column; /* ←ここが重要！ */
  animation: scrollVertical 80s linear infinite;
  transform: rotate(180deg);
  }

  .scroll-inner p {
    writing-mode: vertical-rl;
    transform: translateY(-100%);
    white-space: nowrap;
    text-align: center;
    color: #0d0d0d;
    font-family: DotGothic16;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.4rem;
  }

@keyframes scrollVertical {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(50%); /* ← 複製2つぶんの半分 = 1個ぶん */
  }
}


    .mainImg {
      position: relative;
      padding-left: 137px;
    }

    .mainImg .mainImg__pc {
      display: block;
      object-fit: cover;
      margin: 0 auto;       /* ← 中央寄せ */
      width: 100%;          /* ← 幅100% */
      z-index: 1;
      position: relative;
      border-top: 1px solid #0D0D0D;
      border-bottom: 1px solid #0D0D0D;
    }

    .mainImg .mainImg__sp {
      display: none;
    }
    
    .mainVisual__item {
      margin-bottom: 6px;
    }
}/* pc 769px */


/* .service */
.section--service {
  position: relative; /* 相対位置で背景画像の基準にする */
  /* overflow: hidden; */
  margin-top: 40px;
}

.service__spBkgr {
  /* padding: 0 5.3%; */
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 335px;
}

.service__spBkgr img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 必要に応じて調整（contain や none） */
}

.service__spBkgr::after {
    content: 'SERVICE';
    display: block;
    color: #0D0D0D;
    text-align: center;
    font-family: DotGothic16;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 510px;
    left: 28px;
}

.service__pcBkgr {
  display: none;
}

.service-wrap {
  position: relative;
  z-index: 1;
}

.service__content {
  padding-top: 40px;
}

.service__txt {
  padding: 30px 8% 18px;
  color: #0D0D0D;
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.service__list {
  width: 100%;
  margin: 0 auto;
}

.slick-slide {
  display: flex !important;
  justify-content: center;
  /* 高さを揃えたいなら */
  align-items: center;
}

.service__card {
  display: flex;
  flex-direction: column;
  align-items: center; /* ←横方向に中央揃え */
  text-align: center;  /* ←テキストの中央揃え */
  width: 100%;
  margin: 15px auto;
   /* @include breakpoint(500px) { */
  }

.service__img {
  height: auto;
  width: 100%;
}

.service__img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.service__imgTxt {
  color: #0D0D0D;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.dots-class button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.dots-class {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.dots-class li {
    width: 12px;
    height: 8px;
    background-color: #ccc;
    cursor: pointer;
    position: relative;
}
.dots-class li::before {
    content: "";
    display: inline-block;
    background-color: #2560AF;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
}

.dots-class li.slick-active::before {
    background-color: #2560AF;
    animation: progressbar-anime 4.5s linear forwards;
}

@keyframes progressbar-anime {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
  }

.about__btn {
  padding:10px 5px 12px 45px;
  border: 1px solid #0D0D0D;
  background: #FFF;
  display: block;
  width: 243px;
  height: 54.31px;
  flex-shrink: 0;
  margin: 20px auto 0;
}

.btn__txt {
  color: #0d0d0d;
  font-family: DotGothic16;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;  
}

/* .service header pc */
@media screen and (min-width:769px) {
    .section--service {
    position: relative; /* 相対位置で背景画像の基準にする */
    /* overflow: hidden; */
    /* margin-top: 250px; */
    margin-left: 11.3%;
  }

  .service__pcBkgr {
    display: block;
    padding: 40px 5.3% 50px;
    position: absolute;
    z-index: 0;
  }

  .service__pcBkgr img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 必要に応じて調整（contain や none） */
  }

  .service__pcBkgr::after {
    content: 'SERVICE';
    display: block;
    color: #0D0D0D;
    text-align: center;
    font-family: DotGothic16;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 730px;
    left: 160px;
}

  .service__spBkgr {
    display: none;
  }

  .service-wrap {
    position: relative;
    z-index: 1;
  }

  .service__content {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 170px;
  }

  .service__txt {
    padding: 50px 8% 18px;
    font-size: 2.4rem;
    order: 2;
  }

  .service__list {
    display: flex;
    justify-content: center; /* 左寄せなら flex-start / 均等なら space-between */
    flex-wrap: wrap; /* 複数行にするなら */
    width: 100%;
    margin: 0 auto;
    padding: 0 8%;
    order: 1;
  }

  .service__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%; /* 3列レイアウト例（必要に応じて調整） */
    margin: 0;
  }

  .slick-slide {
    display: flex !important; /* slick解除時にもカードを表示 */
  }

  .service__img {
    height: auto;
    width: 100%;
  }

  .service__img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .service__imgTxt {
    font-size: 2.4rem;
    margin-top: 20px;
  }

  .dots-class button {
    display: none;
  }

  .dots-class {
    display: none;
  }

  .dots-class li {
    display: none;
  }
  .dots-class li::before {
    display: none;
  }

  .dots-class li.slick-active::before {
    display: none;
  }

  @keyframes progressbar-anime {
      from {
          width: 0%;
      }
      to {
          width: 100%;
      }
    }

  .about__btn {
    padding: 18px 15px 22px 165px;
    width: 501px;
    height: 75px;
    flex-shrink: 0;
    margin: 20px auto 0;
  }

  .btn__txt {
    font-size: 2.4rem;
  }

}/* pc 769px */

/* .category */
.section--category {
  position: relative; /* 相対位置で背景画像の基準にする */
  margin-top: 70px;
}

.category {
  display: inline-block;
  padding: 50px 69.3% 0 11%;
  color: #0D0D0D;
  text-align: center;
  font-family: DotGothic16;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.category__spBkgr {
  /* padding: 0 5.3%; */
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 343px;
}

.category__spBkgr img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 必要に応じて調整（contain や none） */
}

.category__spBkgr::after {
    content: 'CATEGORY';
    display: block;
    color: #0D0D0D;
    text-align: center;
    font-family: DotGothic16;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 490px;
    left: 24px;
}


.category__pcBkgr {
  display: none;
}

.category-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.category__content {
  padding-top: 40px;
}

.category__txt {
  padding: 50px 20% 20px 16%;
  color: #0D0D0D;
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.category__list {
  width: 100%;
  margin: 0 auto;
}

.category__slider {
  overflow: hidden;
  display: flex;
  max-width: 325px;
  margin: 20px auto 0; /* 上20px・左右autoで中央揃え */
  gap: 20px;
}

.category__slider-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category__topList,
 .category__bottomList {
  display: flex;
  gap: 20px;
  animation: scroll-left 20s linear infinite;
}

/* 上の行（左に流れる） */
.category__topList {
  animation: scroll-left 20s linear infinite;
}

/* 下の行（右に流れる） */
.category__bottomList {
  animation: scroll-right 20s linear infinite;
}

.category__img {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category__img img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  background: #FFF;
  object-fit: contain;
}

/* アニメーション定義 */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.category__about__btn {
  padding: 10px 25px 12px 35px;
  border: 1px solid #0D0D0D;
  background: #FFF;
  display: block;
  width: 243px;
  height: 54.31px;
  flex-shrink: 0;
  margin: 35px auto 0;
}

/* .category header pc */
@media screen and (min-width:769px) {
  .section--category {
    position: relative; /* 相対位置で背景画像の基準にする */
    margin-top: 45px;
    margin-left: 11.3%;
}

  .category__spBkgr {
    display: none;
  }

  .category__pcBkgr {
    display: block;
    padding: 40px 5.3% 50px;
    position: absolute;
    z-index: 0;
  }

  .category__pcBkgr img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 必要に応じて調整（contain や none） */
  }

    .category__pcBkgr::after {
    content: 'CATEGORY';
    display: block;
    color: #0D0D0D;
    text-align: center;
    font-family: DotGothic16;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 730px;
    left: 160px;
}

  .category-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
  }

  .category__content {
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    padding-top: 200px;
  }

  .category__txt {
    font-size: 2.4rem;
    order: 2;
  }

  .category__list {
    order: 1;
  }

  .category__slider {
    display: flex;
    overflow: hidden;
    max-width: 1125px;
    width: 100%;
    margin-top: 20px;
    gap: 20px;
    margin-left: 5.4%;

  }

  .category__slider-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .category__topList,
  .category__bottomList {
    display: flex;
    gap: 20px;
    animation: scroll-left 20s linear infinite;
  }

  /* 上の行（左に流れる） */
  .category__topList {
    animation: scroll-left 20s linear infinite;
  }

  /* 下の行（右に流れる） */
  .category__bottomList {
    animation: scroll-right 20s linear infinite;
  }

  .category__img {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .category__img img {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    background: #FFF;
    object-fit: contain;
  }

  /* アニメーション定義 */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .category__about__btn {
    padding: 18px 15px 22px 150px;
    width: 501px;
    height: 75px;
    margin: 35px auto 0;
  }
}/* pc 769px */

/* .gift-finder */
.section--gift-finder {
  position: relative; /* 相対位置で背景画像の基準にする */
  margin-top: 105px;
}

.gift-finder__spBkgr {
  /* padding: 0 5.3%; */
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 343px;
}

.gift-finder__spBkgr img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 必要に応じて調整（contain や none） */
}

.gift-finder__spBkgr::after {
    content: 'GIFT FINDER';
    display: block;
    color: #0D0D0D;
    text-align: center;
    font-family: DotGothic16;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 705px;
    left: 7px;
}

.gift-finder__pcBkgr {
  display: none;
}

.gift-finder-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.gift-finder__content {
  padding-top: 40px;
}

.gift-finder__txt {
  padding: 50px 8% 20px;
  color: #0D0D0D;
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.gift-finder__spImg {
  display: block;
  margin: 0 auto; /* 左右autoで中央寄せ */
}

.gift-finder__spImg img {
  display: block;
  margin: 0 auto;
}

.gift-finder__pcImg {
  display: none;
}

.gift-finder__btn {
  padding:10px 17px 12px 25px;
  border: 1px solid #0D0D0D;
  background: #FFF;
  display: block;
  width: 243px;
  height: 54.31px;
  flex-shrink: 0;
  margin: 40px auto 0;
}

.btn__txt {
  color: #0d0d0d;
  font-family: DotGothic16;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;  
}

/* .gift-finder pc */
@media screen and (min-width:769px) {
  .section--gift-finder {
  position: relative; /* 相対位置で背景画像の基準にする */
  margin-top: 150px;
  margin-left: 11.3%;
}

  .gift-finder {
    padding: 50px 6.3% 0 10.5%;
    font-size: 3.2rem;
  }

  .gift-finder__spBkgr {
    display: none;
  }

  .gift-finder__pcBkgr {
    display: block;
    padding: 40px 5.3% 50px;
    position: relative;
    z-index: 0;
  }

  .gift-finder__pcBkgr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gift-finder__pcBkgr::after {
    content: 'GIFT FINDER';
    display: block;
    color: #0D0D0D;
    text-align: center;
    font-family: DotGothic16;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 730px;
    left: 135px;
}

  .gift-finder-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
  }

  .gift-finder__content {
  position: absolute;
  top: 50%;          /* 縦中央寄せ */
  left: 50%;         /* 横中央寄せ */
  transform: translate(-50%, -130%);
  max-width: 620px;  /* 最大幅調整 */
  z-index: 10;       /* 背景画像より前面 */
    /* margin-top: 160px;
    padding-top: 200px; */
  }

  .gift-finder__txt {
    padding: 50px 8% 20px;
    font-size: 2.4rem;
    order: 2;
  }

  .gift-finder__spImg {
    display: none;
  }

  .gift-finder__pcImg {
    display: flex;
    justify-content: center;
    order: 1;
  }

  .gift-finder__btn {
    padding: 18px 15px 22px 143px;
    width: 501px;
    height: 75px;
    margin: 40px auto 0;
    order: 3;
  }

  .btn__txt {
    font-size: 2.4rem;
  }
}/* pc 769px */

/* .item */
.section--item {
  position: relative; /* 相対位置で背景画像の基準にする */
  margin-top: 80px;
  margin-bottom: 115px;
}

.item__spBkgr {
  /* padding: 0 5.3%; */
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 343px;
}

.item__spBkgr img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 必要に応じて調整（contain や none） */
}

.item__spBkgr::after {
    content: 'ITEM';
    display: block;
    color: #0D0D0D;
    text-align: center;
    font-family: DotGothic16;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 450px;
    left: 40px;
}

.item__pcBkgr {
  display: none;
}

.item__spBkgr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.item__content {
  padding-top: 40px;
}

.item__txt {
  padding: 40px 16.2% 25px;
  color: #0D0D0D;
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item__slider {
  overflow: hidden;
  max-width: 325px;
  width: 100%;
  position: relative;
  margin: 20px auto 0; /* 上20px・左右autoで中央揃え */
}

.item__slider-track {
  display: flex;
  animation: scroll-left 20s linear infinite;
  width: max-content; /* 子要素の幅に自動合わせ */
}

.item__list {
  display: flex;
  gap: 20px;
}

.item__img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* アニメーションで左にスクロール */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.item__btn {
  padding:10px 40px 12px 61px;
  border: 1px solid #0D0D0D;
  background: #FFF;
  display: block;
  width: 243px;
  height: 54.31px;
  flex-shrink: 0;
  margin: 40px auto 0;
}

/* .item header pc */
@media screen and (min-width:769px) {
.section--item {
  position: relative; /* 相対位置で背景画像の基準にする */
  margin-top: 0;
  margin-bottom: 200px;
  margin-left: 11.3%;
}

.item {
  padding: 50px 69.3% 0 14.5%;
  font-size: 3.2rem;
}

.item__spBkgr {
  display: none;
}

.item__pcBkgr {
  display: block;
  padding: 40px 5.3% 50px;
  position: absolute;
  z-index: 0;
}

  .item__pcBkgr::after {
    content: 'ITEM';
    display: block;
    color: #0D0D0D;
    text-align: center;
    font-family: DotGothic16;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 730px;
    left: 185px;
}

.item__pcBkgr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.item__content {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-top: 200px;
}

.item__txt {
  padding: 70px 16.2% 25px;
  font-size: 2.4rem;
  order: 2;
}

.item__slider {
  overflow: hidden;
  max-width: 1125px;
  width: 100%;
  position: relative;
  order: 1;
  margin-left: 5.4%;
}

.item__slider-track {
  display: flex;
  animation: scroll-left 20s linear infinite;
  width: max-content; /* 子要素の幅に自動合わせ */
}

.item__list {
  display: flex;
  gap: 20px;
}

.item__img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* アニメーションで左にスクロール */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.item__btn {
  padding: 18px 15px 22px 177px;
  width: 501px;
  height: 75px;
  flex-shrink: 0;
  margin: 40px auto 0;
  order: 3;
}
}/* pc 769px */

/* .footer */
.article__footer {
  /* width: 375px; */
  min-height: 870px;
  padding: 0 0 20px 0;
  /* border-top: 1px solid #0D0D0D; */
  background: url(../images/footer_bkgr.jpg) lightgray -53.125px -0.008px / 129.375% 100.002% no-repeat;
}

.footer__sns {
  display: flex;
  flex-direction: column;
  align-items: center;   /* 横方向中央揃え */
  justify-content: center; /* 必要に応じて縦方向も中央に */
  width: 100%;
  margin-top: 30px;      /* 必要に応じて調整 */
}

.footer__spImg {
  width: 100%;
  border-top: 1px solid #0D0D0D;
  border-bottom: 1px solid #0D0D0D;
}

.sns__txt { 
  color: #0D0D0D;
  font-family: Inter;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.sns__img {
  display: flex;
  align-items: center;
  gap: 61px;
  justify-content: center;
}

.footer__snsImg {
  margin-top: 42px;
  position: relative;
  display: block;
  width: 64.76px;
  height: 64.696px;
  aspect-ratio: 64.76/64.70;
  z-index: 2;
}

.footer__snsImg img {
  position: relative;
  z-index: 2;
  display: block; /* 任意：余白除去用 */
}

.footer__snsImg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 121px;
  height: 121px;
  border: 1px solid #0D0D0D;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  gap: 5px;
  background-color: #fff;
}

.footerNav__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /* border-top: 1px solid #0D0D0D; */
}

.footerNav__list {
  margin-top: 74px;
  margin-left: 5.9%;
  color: #0D0D0D;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footerNav__item {
  white-space: nowrap;
}

.footer__id {
  margin-top: 74px;
  margin-right: 20%;
  color: #0D0D0D;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__top,
.footer__contact {
    margin: 0;
}

.footer__top {
  margin-top: 100px;
  margin-bottom: 20px;
  margin-right: 6.9%;
  color: #0D0D0D;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__contact {
  margin-top: 58px;
  margin-bottom: 43px;
  margin-left: 5.9%;
  color: #0D0D0D;
  font-family: Inter;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__pcImg {
  display: none;
}

.footer__item {
  display: flex;
  justify-content: center;
  margin-top: 42px;
  margin-bottom: 42px;
  gap: 5px;
  flex-wrap: wrap; /* 折り返し可能にしたい場合 */
  color: #0D0D0D;
  font-family: Inter;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  }

.copy {
  color: #0D0D0D;
  font-family: Inter;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center; /* ← これを追加 */
}

/* .footer pc */
@media screen and (min-width:769px) {
  .article__footer {
    width: 100%;
    background: url(../images/footer_bkgr.jpg) lightgray -204px -0.008px / 129.375% 100.002% no-repeat;
      border-top: 1px solid #0D0D0D;
  }
  
  .footerNav__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .footer__sns,
.footerNav__list {
  position: static; /* 必要なら relative にするが、絶対配置は避ける */
}
  
  .footer__sns {
    order: 2;
    margin-top: 40px;
    margin: 40px clamp(5%, 10%, 10.3%) 0 clamp(5%, 18%, 16.9%);
    width: auto;
  }

  .sns__txt {
    margin: 0 auto;
    font-size: 3.2rem;
  }

  .sns__img {
    display: flex;
    align-items: center;
    gap: clamp(40px, calc(7.7vw), 111px);
    justify-content: center;
  }

  .footer__snsImg {
    margin-top: 62px;
    position: relative;
    display: block;
    max-width: 100px;
    min-width: 60px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .footer__snsImg img {
  width: 100%;
  height: auto;
  display: block;
}

  .footer__snsImg::after {
    max-width: 186.728px;
    height: auto;
    width: 180%;
    aspect-ratio: 1/1;
    gap: 25px;
  }

  .footerNav__list {
    display: grid;
    margin-top: 55px;
    margin-left: 5.9%;
    gap: 7px;
    order: 1;
  }

  .footer__id {
    display: grid;
    margin-top: 55px;
    margin-right: 13.6%;
    gap: 7px;
    order: 3;
  }

  .footer__top {
  margin-right: 3%;
  margin-top: 200px;
  margin-bottom: 30px;
  }

  .footer__contact {
    margin-top: 68px;
    margin-bottom: 27px;
    margin-left: 5.9%;
  }

  .footer__spImg {
    display: none; 
  }

  .footer__pcImg {
    display: block;
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    aspect-ratio: 360/83;
    border-top: 1px solid #0D0D0D;
    border-bottom: 1px solid #0D0D0D;
  }

  .footer__item {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 10px;
    font-size: 1.6rem;
    }

  .copy {
    margin-bottom: 70px;
  }
  }/* pc 769px */