@charset "utf-8";

/*PCファースト　@media screen and (min-width: 960px)*/
/*全体設定*/
html {
  font-size: 100%;
}

body {
  background-color: #f8fbff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New";
  font-weight: 400;
  color: #1E2124;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #1E2124;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

p {
  font-size: 18px;
  font-weight: 500;
  color: #1E2124;
}

/*カーソル*/
.cursor-deco {
  position: fixed;
  /* 画面全体に固定配置 */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  pointer-events: none;
  /* クリック判定を無効化 → 他の要素を邪魔しない */
  z-index: 9999;
  /* グリーンのグラデーション */
  background: radial-gradient(circle at center,
      rgba(72, 201, 60, 0.8) 0%, rgba(111, 239, 90, 0.5) 60%, rgba(168, 247, 160, 0.2) 100%);
  box-shadow: 0 0 25px rgba(72, 201, 60, 0.6);
  will-change: transform;

}

/*ヘッダー*/
/*ここからPCヘッダーのオンラインアイコン*/
#header .online_shop_icon {
  width: 100%;
  max-width: 100px;
  position: fixed;
  top: 15px;
  left: 20px;
  z-index: 110;
}

#header .online_shop_icon a {
  display: block;
}

#header .online_shop_icon img {
  width: 80%;
  transition: 0.3s ease;
  /* 切り替え*/
}

#header .online_shop_icon a:hover img {
  content: url("../img/go_icon.png");
}

.online_shop_icon a:hover {
  opacity: 1;
}

/*ここまでPCヘッダーのオンラインアイコン*/

/*ここからタブレットのオンラインアイコン*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #header .online_shop_icon {
    max-width: 80px;
  }

}

/*ここまでタブレットのオンラインアイコン*/

/*ここからスマホのオンラインアイコン*/
@media screen and (max-width: 767px) {
  #header .online_shop_icon {
    max-width: 70px;
  }
}

/*ここまでスマホのオンラインアイコン*/

/*ここからPCヘッダーのハンバーガー*/
#header .hamburger {
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 100;
}

#header .hamburger span {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #48C93C;
  position: absolute;
  left: 10px;
  transition: all 0.4s;
}

#header .hamburger span:nth-of-type(1) {
  /* 1番目の棒 */
  top: 16px;
}

#header .hamburger span:nth-of-type(2) {
  /* 2番目の棒 */
  top: 30px;
}

#header .hamburger span:nth-of-type(3) {
  /* 3番目の棒 */
  top: 44px;
}

/*-------
   active×になる
   --------*/
#header .hamburger.active span:nth-of-type(1) {
  /* 1番目の棒 */
  top: 24px;
  transform: rotate(-45deg);
}

#header .hamburger.active span:nth-of-type(2) {
  /* 2番目の棒 */
  opacity: 0;
  /* 透明にして消えたようにみせる。 */
}

#header .hamburger.active span:nth-of-type(3) {
  /* 3番目の棒 */
  top: 24px;
  transform: rotate(45deg);
}

/* ---隠す--- */
#header .navi {
  width: 40%;
  height: 100vh;
  background-color: #fff;
  opacity: 0.7;
  position: fixed;
  top: 0;
  right: -80%;
  /* 画面上から見えない場所で固定 */
  z-index: 20;
  transition: all 0.6s;
}

/*-------
   activeのクラスが付いたら表示
   --------*/
#header .navi.active {
  right: 0;
}

#header .navi .menu {
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 60px 0;
  overflow: auto;
}

#header .navi .menu li {
  padding: 10px 30px;
}

#header .navi .menu li a {
  font-family: Zen Kaku Gothic New;
  font-weight: bold;
  font-size: 20px;
  line-height: 4em;
  color: #020202;
}

ul,
ol {
  padding: 0;
  position: relative;
}

ul li,
ol li {
  border-left: solid 6px #5BC93B;
  background: #f4fff1;
  margin-bottom: 10px;
  line-height: 1.1;
  padding: 0.5em;

}

/*----ここまでPCヘッダーのハンバーガー*/

/*ここからタブレットヘッダーのハンバーガー*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #header .navi {
    width: 50%;
    right: -60%;
  }

  #header .navi.active {
    right: 0;
  }
}

/*----ここまでタブレットヘッダーのハンバーガー*/

/*ここからスマホヘッダーのハンバーガー*/
@media screen and (max-width: 767px) {
  #header .navi {
    width: 50%;
    right: -60%;
  }

  #header .navi.active {
    right: 0;
  }

  #header .navi .menu li a {
    font-size: 18px;
    line-height: 2.5em;
  }

}

/*----ここまでスマホヘッダーのハンバーガー*/

/*メイン*/

/*ここからPCのFV*/
.fv {
  display: flex;
  justify-content: space-evenly;
  /* 画像の間隔を均等に */
  align-items: center;
  padding: 50px 0;
  max-width: 1200px;
  margin: 0 auto;
  /* 中央寄せ */
  background-image: url(../img/white_back.jpg);
}

.fv>div {
  flex: 1;
  /* 各子要素を同じ幅に */
  display: flex;
  justify-content: center;
  /* 中央に画像を配置 */
}

.fv img,
.left_top img,
.center_logo img {
  max-width: 300px;
  height: auto;
  object-fit: contain;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

/* スライド全体のスタイル */
.slider-container {
  position: relative;
  margin: 20px 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* 各スライド画像のスタイル */
.slideimg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* 中央寄せ */
  opacity: 0;
  animation: fadeInOut 12s infinite;
  transition: opacity 1.5s ease-in-out;
}


.slideimg img {
  max-width: 300px;
  height: 500px;
  display: block;
  object-fit: cover;
}

.slideimg:nth-child(1) {
  animation-delay: 0s;
}

.slideimg:nth-child(2) {
  animation-delay: 3s;
}

.slideimg:nth-child(3) {
  animation-delay: 6s;
}

.slideimg:nth-child(4) {
  animation-delay: 9s;
}

/* フェードイン・アウトのアニメーション */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  35% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/*ここからタブレットのFV*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv {
    padding: 30px 0;
    flex-wrap: wrap;
    /* 横並びが窮屈なら折り返し */
  }

  .fv img,
  .left_top img,
  .center_logo img {
    max-width: 240px;
    /* 少し縮小 */
  }

  .slider-container {
    height: 400px;
  }

  .slideimg img {
    max-width: 250px;
    height: 400px;
  }

}

/*----ここまでタブレットのFV*/

/*ここからスマホのFV*/
@media screen and (max-width: 767px) {
  .fv {
    flex-direction: column;
    /* 縦並びにする */
    background-size: cover;
  }

  .fv>div {
    margin-bottom: 20px;
  }

  .fv img,
  .left_top img,
  .center_logo img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  }

  .left_top img {
    max-width: 150px;
  }

  .center_logo img {
    max-width: 130px;

  }

  .slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }

  .slider-container {
    height: auto;
  }

  .slideimg {
    position: relative;
    left: 45px;
  }

}

/*----ここまでスマホのFV*/

/* ここからPCのセクション指示 */
section {
  width: auto;
  height: 340px;
  background-image: url(../img/back_pink.jpg);
  background-repeat: repeat-x;
  background-position: center;
  text-align: center;
}

section .under_text p {
  font-family: Zen Kaku Gothic New;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6em;
  text-decoration: none;
}

.text {
  width: auto;
  padding: 10px;
  overflow: hidden;
  /* 枠からはみ出た部分を非表示 */
}

/*見出しスクロール設定*/
.text h2,
.text h3 {
  display: inline-block;
  /* 必須 */
  padding-left: 100%;
  /* 右端から文字をスタート*/
  white-space: nowrap;
  /* 改行が起こらない*/
  line-height: 1.5em;
  animation: scroll 20s linear infinite;
  /* 下のアニメーションを20秒かけて行い、それをくりかえす */
  font-family: Zen Kaku Gothic New;
  font-size: 46px;
  font-weight: 900;
  color: #fff;
}

/* アニメーション（右から左に移動） */
@keyframes scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-100%)
  }
}

/*----ここまでPCのセクション*/

/*ここからタブレットのセクション*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section {
    height: 280px;
    background-size: cover;
  }

  section .under_text p {
    font-size: 20px;
  }

  .text h2,
  .text h3,
  .text h4 {
    font-size: 42px;
  }
}

/*ここからスマホのセクション*/
@media screen and (max-width: 767px) {
  section {
    height: 240px;
    padding: 0 20px;
    background-size: cover;
    background-position: center;
  }

  section .under_text p {
    line-height: 1.3em;
    font-size: 14px;
    word-break: keep-all;
    /* 日本語の改行を自然に */
  }

  .text h2,
  .text h3,
  .text h4 {
    font-size: 30px;
  }

}

/*ここからpcのアイテム説明*/
.products_wrapper {
  margin: 0 auto;
  height: auto;
  box-sizing: border-box;
  text-align: center;
}

.item_wrapper {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 20px;
}

.item_img {
  flex: 0 0 40%;
  /* 横並び時に幅を確保 */
}

.item_img img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.item_container {
  flex: 1;
  /* 親の残り幅に収める */
  max-width: 100%;
  /* 親幅を超えないように制限 */
  box-sizing: border-box;
  /* padding込み */
  overflow: hidden;
  /* はみ出しを隠す*/
  text-align: center;
  gap: 40px;
}

/*pcのアイテムスクロール*/
figure {
  margin: 5px 5px;
  padding: 5px;
}

figcaption {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 5px;
}

.card {
  flex-shrink: 0;
  width: 380px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;

}

.card img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.card-content {
  padding: 30px;
}

.card-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: scroll;
  padding: 8px;
}

/* スクロールバーの設定 */
.card-container::-webkit-scrollbar {
  height: 14px;
  /* スクロールバーの高さ */
}

.card-container::-webkit-scrollbar-thumb {
  background: #69ba8d;
  /* ツマミの色 */
  border-radius: 7px;
  /* ツマミ両端の丸み */
}

.card-container::-webkit-scrollbar-track {
  background: #98e18fa8;
  /* トラックの色 */
  border-radius: 7px;
  /* トラック両端の丸み */
}

.item_price {
  margin: 10px 0;
}

.item_price p {
  font-size: 16px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #48C93C;
  border-radius: 22px;
}

.button a {
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1rem;
}

.button:hover {
  background-color: #3aa832;
}

/* PCキャラおすすめ */
.character_box {
  display: flex;
  width: auto;
  padding-top: 15px;
}

.chara_img {
  width: 250px;
}

.chara_text_1,
.chara_text_2,
.chara_text_3,
.chara_text_4 {
  padding: 20px 15px;
  text-align: center;
  line-height: 1.6rem;
}

/* PCキャラおすすめ文章の背景 */
.chara_text_1 {
  background-color: rgb(255, 233, 238);
}

.chara_text_2 {
  background-color: #E9DED8;
}

.chara_text_3 {
  background-color: #E9F1FA;
}

.chara_text_4 {
  background-color: #eee6ff;
}

.character_box p {
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-weight: 600;
}

.character_box span {
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 28px;
}

/*----ここまでPCのアイテム説明/

/*ここからタブレットのアイテム説明*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .item_wrapper {
    flex-direction: row;
    /* 縦並びにする */
    gap: 20px;
    text-align: center;

  }

  .item_img {
    flex: 0 auto;
    width: 400px;
  }

  .card {
    width: 300px;
  }

  .character_box {
    flex-wrap: wrap;
    text-align: center;
    display: flex;
    justify-content: space-between;

  }


  .chara_img {
    width: 40%;
  }

  .chara_text_1,
  .chara_text_2,
  .chara_text_3,
  .chara_text_4 {
    padding: 20px 20px;
    text-align: left;
  }


  .character_box p {
    font-size: 15px;
    word-break: keep-all;
    /* 日本語の改行を自然に */
  }

}

/*----ここまでタブレットのアイテム説明/

/*ここからスマホのアイテム説明*/
@media screen and (max-width: 767px) {
  .item_wrapper {
    flex-direction: column;
    /* 完全縦並び */
    gap: 20px;
    padding: 10px;
  }

  .item_img {
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .item_container {
    text-align: left;
    /* 読みやすく左寄せ */
  }

  .card {
    width: 80%;
    margin: 0 auto 20px;
  }

  .card-content {
    padding: 20px;
  }

  .card-container {
    flex-wrap: wrap;
    overflow-x: hidden;
  }

  .item_price {
    text-align: center;
    margin: 0 auto;
  }

  .item_price p {
    display: block;
    text-align: center;
    /* テキストも中央に */
    font-size: 14px;
    /* 少し小さめに調整 */
  }


  .button {
    padding: 8px 16px;
    border-radius: 18px;
    display: block;
    /* ブロック要素にする */
    width: fit-content;
    /* 中身の幅に合わせる */
    margin: 20px auto;
    /* 左右自動で中央寄せ */
    text-align: center;
    /* 中のテキストも中央 */

  }

  .button a {
    font-size: 14px;
    display: inline-block;
    text-align: center;

  }

  .character_box {
    flex-direction: column;
    /* 縦並びにする */
    align-items: center;
  }

  .chara_img {
    width: 180px;
    margin-bottom: 15px;
    text-align: center;
  }

  .character_box p {
    font-size: 14px;
    line-height: 1.4rem;
    word-break: keep-all;
    /* 日本語の改行を自然に */
  }

  .character_box span {
    font-size: 22px;
  }
}

/*----ここまでスマホのアイテム説明/

/*ここからPCのメンバー紹介*/
.honeyclover_wrapper {
  aspect-ratio: 16 / 9;
  background-image: url(../img/member.jpg);
  background-position: center top;
  background-size: cover;
  margin: 0 auto;
  position: relative;
}

.member_intoroduce {
  width: 100%;
  text-align: center;
  position: absolute;
  text-align: center;
  bottom: 20px;
}

.member_intoroduce p {
  font-size: 20px;
  line-height: 2rem;
}

/*----ここまでPCのメンバー紹介/

/*ここからタブレットのメンバー紹介*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .honeyclover_wrapper {
    aspect-ratio: 19/16;
    background-image: url(../img/member.jpg);
    background-position: center;
  }

  .member_intoroduce {
    bottom: 70px;
  }

  .member_intoroduce p {
    font-size: 18px;
    line-height: 1.8rem;
  }
}

/*----ここまでタブレットのメンバー紹介/

/*ここからスマホのメンバー紹介*/
@media screen and (max-width: 767px) {
  .honeyclover_wrapper {
    aspect-ratio: 13/20;
    background-image: url(../img/member_mobile.jpg);
  }

  .member_intoroduce {
    bottom: 10px;
  }

  .member_intoroduce p {
    font-size: 14px;
    line-height: 1.6rem;
    padding: 0 20px;
  }
}

/*----ここまでスマホのメンバー紹介*/


/*フッター*/
/*ここからPCのフッター */
#footer {
  padding: 80px 0;
  background-color: #101113;
  text-align: center;
}

#footer .footer_banner,
.sns {
  text-align: center;
  justify-content: center;
  display: flex;
  gap: 30px;
}

#footer .footer_banner img,
.sns {
  height: 100%;
  width: auto;
}

#footer .sns {
  padding-top: 50px;
}

#footer .footer_text {
  text-align: center;
  margin-top: 50px;
}

#footer .footer_text a {
  color: #fff;
}

/*----ここまでPCのフッター*/

/* ここからタブレットのフッター */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #footer {
    padding: 30px 0;
  }

  #footer .footer_banner,
  #footer .sns {
    flex-wrap: wrap;
    gap: 20px;
  }

  #footer .footer_banner img,
  .sns img {
    object-fit: cover;
  }

  #footer .footer_text {
    margin-top: 40px;
    font-size: 14px;
  }
}

/*----ここまでタブレットのフッター*/

/* ここからスマホのフッター */
@media screen and (max-width: 767px) {
  #footer {
    padding: 40px 5px 0;
  }

  #footer .footer_banner {
    flex-direction: column;
    /* 縦並びにする */
    display: flex;
    align-items: center;
    gap: 15px;
  }


  #footer .footer_text {
    margin: auto;
    font-size: 10px;
    line-height: 0.8rem;
  }

  #footer .footer_text p {
    font-size: 11px;
  }

  #footer .footer_text a {
    display: inline-block;
    /* リンクを縦並びに */
    padding: 30px;
  }

  #footer .footer_banner img {
    width: 70%;
  }

  #footer .sns img {
    width: 15%;
  }
}

/*----ここまでスマホのフッター*/