@charset "UTF-8";
/*
変数
*/
@keyframes float-updown {
  0%, 100% {
    transform: translateY(0); /* 初期位置 */
  }
  50% {
    transform: translateY(-20px); /* 20px上に浮かせる */
  }
}
@keyframes float-updown2 {
  0%, 100% {
    transform: translateY(0); /* 初期位置 */
  }
  50% {
    transform: translateY(20px); /* 20px上に浮かせる */
  }
}
/*-----------------------------------
kv
-----------------------------------*/
.kv {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/770;
  position: relative;
  background: #EBF999;
  margin-bottom: 12.1527777778vw;
}
.kv .bg_text, .kv .catch, .kv .vegi {
  position: absolute;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv {
    aspect-ratio: 375/752;
    aspect-ratio: 375/652;
    margin-bottom: 20.0782268579vw;
  }
}
.kv .bg_text {
  width: 100%;
  height: auto;
  top: 44%;
  transform: translateY(-50%);
  overflow: hidden;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .bg_text {
    top: 35%;
    top: 56vw;
  }
}
.kv .bg_text p {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loop-scroll 50s linear infinite; /* 20秒で1周、等速、無限 */
}
.kv .bg_text p img {
  margin: 0 2vw;
}
.kv {
  /* 左方向へ流れるアニメーション */
}
@keyframes loop-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 全6枚のうち、半分の3枚分（50%）移動した瞬間に0%に戻ることで
    ループが繋がって見えます。
    */
    transform: translateX(-50%);
  }
}
.kv .catch {
  left: 4.3055555556vw;
  bottom: 4.3055555556vw;
  width: 34.4444444444vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .catch {
    top: 112vw;
    right: 0;
    width: 75.6192959583vw;
  }
}
.kv .vegi {
  z-index: 2;
}
.kv .vegi1 { /*ブロッコリ*/
  width: 20.6944444444vw;
  top: 8.3333333333vw;
  left: 0;
  animation: float-updown 4s ease-in-out infinite; /* 4秒で1往復、加減速、無限 */
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .vegi1 {
    top: 17%;
    left: -6vw;
    width: 30vw;
  }
}
.kv .vegi2 { /*にんにく*/
  width: 19.0972222222vw;
  top: 2.7777777778vw;
  left: 17.6388888889vw;
  animation: float-updown 4s ease-in-out infinite; /* 4秒で1往復、加減速、無限 */
  animation-delay: -1s;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .vegi2 {
    top: 6vw;
    left: 20vw;
    width: 38vw;
  }
}
.kv .vegi3 { /*にんじん*/
  width: 29.7916666667vw;
  top: 19.2361111111vw;
  left: 17.6388888889vw;
  animation: float-updown2 4s ease-in-out infinite; /* 4秒で1往復、加減速、無限 */
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .vegi3 {
    top: 68vw;
    left: 4vw;
    width: 48vw;
  }
}
.kv .vegi4 { /*トマト*/
  width: 29.4444444444vw;
  top: 10.1388888889vw;
  left: 37%;
  transform: translateX(-50%);
  animation: float-updown 4s ease-in-out infinite; /* 4秒で1往復、加減速、無限 */
  animation-delay: 0s;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .vegi4 {
    top: 38vw;
    left: 23vw;
    width: 58vw;
  }
}
.kv .vegi5 { /*さつまいも*/
  width: 22.9166666667vw;
  top: 5.3472222222vw;
  left: 62vw;
  animation: float-updown 4s ease-in-out infinite; /* 4秒で1往復、加減速、無限 */
  animation-delay: -1s;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .vegi5 {
    top: 6vw;
    left: 60vw;
    width: 36vw;
  }
}
.kv .vegi6 {
  width: 28.9583333333vw;
  top: 25.4166666667vw;
  left: 53vw;
  animation: float-updown2 4s ease-in-out infinite; /* 4秒で1往復、加減速、無限 */
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .vegi6 {
    top: 73vw;
    left: 50vw;
    width: 46vw;
  }
}
.kv .vegi7 {
  width: 18.4722222222vw;
  top: 8.75vw;
  right: 0;
  animation: float-updown 4s ease-in-out infinite; /* 4秒で1往復、加減速、無限 */
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .vegi7 {
    top: 33vw;
    right: 0;
    width: 26vw;
  }
}
.kv .scroll {
  position: absolute;
  width: 5.8333333333vw;
  bottom: -2.7777777778vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央揃え */
  z-index: 10;
}
.kv .scroll img {
  display: block;
  margin-bottom: 5px; /* 矢印と縦線の間隔 */
}
.kv .scroll .scroll-line {
  display: block;
  position: relative;
  width: 0.2083333333vw; /* 線の太さ */
  height: 5.5555555556vw; /* 線の全体の長さ（最大値） */
  overflow: hidden; /* 線が伸び縮みして見えるようにする */
  border-radius: 0.2083333333vw;
  /* 縦線の「中身」をbeforeで描画してアニメーションさせる */
}
.kv .scroll .scroll-line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* 線の色。画像に合わせて調整してください */
  /* アニメーションの呼び出し */
  /* 1.5秒かけて1回実行。無限ループ(infinite) */
  animation: scroll-line-anim 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .kv .scroll {
    bottom: -6.9444444444vw;
    width: 19.035202086vw;
  }
  .kv .scroll .scroll-line {
    width: 0.6518904824vw; /* 線の太さ */
    height: 13.037809648vw; /* 線の全体の長さ（最大値） */
    border-radius: 0.6518904824vw;
  }
}
.kv {
  /* 縦線が上から伸びて、下へ縮んでいくアニメーション */
}
@keyframes scroll-line-anim {
  0% {
    transform: scaleY(0); /* 最初は長さゼロ */
    transform-origin: top; /* 上端を起点に伸びる */
    opacity: 0;
  }
  30% {
    transform: scaleY(1); /* 最大まで伸びる */
    transform-origin: top; /* まだ上端が起点 */
    opacity: 1;
  }
  60% {
    transform: scaleY(1); /* 長さを維持 */
    transform-origin: bottom; /* 起点を下端に切り替える */
    opacity: 1;
  }
  100% {
    transform: scaleY(0); /* 下端に向かって縮む */
    transform-origin: bottom; /* 下端が起点 */
    opacity: 0;
  }
}

.b_lineup {
  position: fixed;
  width: 13.6111111111vw;
  right: 2.7777777778vw;
  bottom: 2.7777777778vw;
  z-index: 50;
  pointer-events: none;
}
.b_lineup a {
  position: relative;
  display: block;
  pointer-events: all;
}
.b_lineup a img.txt {
  position: absolute;
  left: 13%;
  top: 17%;
  width: 74%;
  animation: text-rotate 15s linear infinite;
}
@keyframes text-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .b_lineup {
    width: 31.2907431551vw;
    right: 3vw;
    bottom: 3vw;
  }
}

/*
greeting
*/
.greeting .greeting__up {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__up {
    flex-direction: column-reverse;
  }
}
.greeting .greeting__up .txt {
  width: 48.4848484848%;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__up .txt {
    width: 100%;
  }
}
.greeting .greeting__up .txt h2 {
  font-size: 3.1944444444vw;
  font-weight: 900;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.greeting .greeting__up .txt h2 span:last-of-type {
  border-bottom: #F83600 solid 0.16em;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__up .txt h2 {
    font-size: 7.8226857888vw;
  }
}
.greeting .greeting__up .txt h2 + p {
  margin-top: 1em;
  font-size: 1.3888888889vw;
  line-height: 1.5;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__up .txt h2 + p {
    font-size: 4.1720990874vw;
  }
}
.greeting .greeting__up .txt a.b_snack {
  width: 28.0555555556vw;
  height: 6.25vw;
  border-radius: 6.25vw;
  padding: 0 1.6em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: solid #555 0.0694444444vw;
  font-size: 1.7361111111vw;
  color: #fff;
  background: #F83600;
  box-shadow: 0px 0.5555555556vw 0px 0px rgba(0, 0, 0, 0.2509803922);
  margin-top: 1.5277777778vw;
}
.greeting .greeting__up .txt a.b_snack span {
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
}
.greeting .greeting__up .txt a.b_snack i {
  color: #F83600;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__up .txt a.b_snack {
    width: 83.4419817471vw;
    height: 18.7744458931vw;
    border-radius: 18.7744458931vw;
    font-size: 5.2151238592vw;
    box-shadow: 0px 2.0860495437vw 0px 0px rgba(0, 0, 0, 0.2509803922);
    margin-top: 5.2151238592vw;
  }
  .greeting .greeting__up .txt a.b_snack span {
    width: 8.3441981747vw;
    height: 8.3441981747vw;
  }
}
.greeting .greeting__up .pic {
  width: 48.4848484848%;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__up .pic {
    width: 100%;
    margin-bottom: 8.8657105606vw;
  }
}
.greeting .greeting__merit__flex {
  display: flex;
  justify-content: space-between;
  margin: 4.8611111111vw auto 2.5vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__merit__flex {
    margin: 16.9491525424vw auto 5.2151238592vw;
    flex-direction: column;
    gap: 40px;
  }
}
.greeting .greeting__merit__flex .flex_item {
  background-color: #e9e4d1;
  border-radius: 4.4444444444vw;
  width: 31.5151515152%;
  padding: 2.6388888889vw 2.2222222222vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__merit__flex .flex_item {
    width: 100%;
    border-radius: 13.037809648vw;
    padding: 7.8226857888vw 6.518904824vw;
  }
}
.greeting .greeting__merit__flex .flex_item .icon {
  margin-bottom: 1.5277777778vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__merit__flex .flex_item .icon {
    margin-bottom: 4.4328552803vw;
  }
}
.greeting .greeting__merit__flex .flex_item .icon img {
  height: 3.6111111111vw;
  width: auto;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__merit__flex .flex_item .icon img {
    width: 33.3767926988vw;
    height: auto;
  }
}
.greeting .greeting__merit__flex .flex_item .pic {
  margin-bottom: 1.25vw;
  width: 18.0555555556vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__merit__flex .flex_item .pic {
    width: 54.7588005215vw;
    margin-bottom: 3.3898305085vw;
  }
}
.greeting .greeting__merit__flex .flex_item .ttl {
  font-size: 2.2222222222vw;
  font-weight: 900;
  color: #000;
  margin-bottom: 0.5555555556vw;
  line-height: 1.4;
  font-family: "M PLUS 1", sans-serif;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__merit__flex .flex_item .ttl {
    font-size: 6.7796610169vw;
    margin-bottom: 0.7822685789vw;
  }
}
.greeting .greeting__merit__flex .flex_item .txt {
  font-size: 1.5277777778vw;
  line-height: 1.5;
  color: #333;
  text-align: left;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__merit__flex .flex_item .txt {
    font-size: 4.6936114733vw;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .greeting__merit__flex .flex_item .txt br {
    display: none;
  }
}
.greeting .merit_note {
  font-size: 1.0416666667vw;
  line-height: 1.8;
  padding-bottom: 7vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .greeting .merit_note {
    font-size: 3.6505867014vw;
    padding-bottom: 10vw;
    line-height: 1.6;
  }
}

/*
dekirumade
*/
.dekirumade {
  background: #EFEAD4;
  min-height: 13.8888888889vw;
  position: relative;
  width: 100%;
  overflow: hidden;
  /*aspect-ratio:1440 / 1020;*/
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade {
    min-height: 177.3142112125vw;
  }
}
.dekirumade .star {
  position: absolute;
  z-index: 0;
  opacity: 0;
  transform: scale(0); /* 最初は小さく透明 */
  transition: none; /* 余計な干渉を防ぐ */
  /* アニメーションの呼び出し */
  /* 3秒かけて1回実行。無限ループ(infinite) */
  animation: star-glow 3s ease-in-out infinite;
  /* 拡大して消えるアニメーションの内容 */
}
@keyframes star-glow {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.5); /* 1.5倍〜2倍程度で調整 */
  }
  100% {
    opacity: 0;
    transform: scale(2); /* 最大2倍で消える */
  }
}
.dekirumade .star {
  /* タイミングの5パターン（animation-delay） */
}
.dekirumade .star.star1, .dekirumade .star.star6, .dekirumade .star.star11 {
  animation-delay: 0s;
}
.dekirumade .star.star2, .dekirumade .star.star7, .dekirumade .star.star12 {
  animation-delay: 0.6s;
}
.dekirumade .star.star3, .dekirumade .star.star8, .dekirumade .star.star13 {
  animation-delay: 1.2s;
}
.dekirumade .star.star4, .dekirumade .star.star9, .dekirumade .star.star14 {
  animation-delay: 1.8s;
}
.dekirumade .star.star5, .dekirumade .star.star10, .dekirumade .star.star15, .dekirumade .star.star16 {
  animation-delay: 2.4s;
}
.dekirumade .star.star1, .dekirumade .star.star2, .dekirumade .star.star3, .dekirumade .star.star4, .dekirumade .star.star5 {
  width: 3.6111111111vw;
}
.dekirumade .star.star6, .dekirumade .star.star7, .dekirumade .star.star8, .dekirumade .star.star9, .dekirumade .star.star10 {
  width: 4.0277777778vw;
}
.dekirumade .star.star11, .dekirumade .star.star12, .dekirumade .star.star13, .dekirumade .star.star14, .dekirumade .star.star15, .dekirumade .star.star16 {
  width: 3.1944444444vw;
}
.dekirumade .star.star1 {
  top: 10%;
  left: 0%;
}
.dekirumade .star.star2 {
  top: 25%;
  left: 85%;
}
.dekirumade .star.star3 {
  top: 15%;
  left: 60%;
}
.dekirumade .star.star4 {
  top: 4%;
  left: 20%;
}
.dekirumade .star.star5 {
  top: 80%;
  left: 5%;
}
.dekirumade .star.star6 {
  top: 65%;
  left: 70%;
}
.dekirumade .star.star7 {
  top: 15%;
  left: 40%;
}
.dekirumade .star.star8 {
  top: 85%;
  left: 90%;
}
.dekirumade .star.star9 {
  top: 35%;
  left: 50%;
}
.dekirumade .star.star10 {
  top: 55%;
  left: 30%;
}
.dekirumade .star.star11 {
  top: 70%;
  left: 55%;
}
.dekirumade .star.star12 {
  top: 40%;
  left: 75%;
}
.dekirumade .star.star13 {
  top: 90%;
  left: 25%;
}
.dekirumade .star.star14 {
  top: 40%;
  left: 95%;
}
.dekirumade .star.star15 {
  top: 60%;
  left: 10%;
}
.dekirumade .star.star16 {
  top: 75%;
  left: 80%;
}
.dekirumade .vegi {
  position: absolute;
  z-index: 1;
}
.dekirumade .vegi.vegi1 { /**/
  width: 10vw;
  left: 13.1944444444vw;
  top: 10.4166666667vw;
  animation: float-updown 4s ease-in-out infinite;
}
.dekirumade .vegi.vegi2 { /**/
  width: 11.1111111111vw;
  right: 8.3333333333vw;
  top: 12.5vw;
  animation: float-updown 4s ease-in-out infinite;
}
.dekirumade .vegi.vegi3 { /*ブロッコリ*/
  width: 9.7222222222vw;
  left: 2.9166666667vw;
  top: 24.3055555556vw;
  animation: float-updown2 4s ease-in-out infinite;
}
.dekirumade .vegi.vegi4 { /*きゅうり*/
  width: 9.3055555556vw;
  left: 22.9166666667vw;
  top: 24.3055555556vw;
  animation: float-updown 4s ease-in-out infinite;
}
.dekirumade .vegi.vegi5 { /*たまねぎ*/
  width: 6.25vw;
  right: 24.4444444444vw;
  top: 22.2222222222vw;
  animation: float-updown2 4s ease-in-out infinite;
}
.dekirumade .vegi.vegi6 { /*さつまいも*/
  width: 6.25vw;
  left: 4.8611111111vw;
  bottom: 11.8055555556vw;
  animation: float-updown2 4s ease-in-out infinite;
}
.dekirumade .vegi.vegi7 { /*トマト*/
  width: 6.9444444444vw;
  left: 28.4722222222vw;
  bottom: 16.6666666667vw;
  animation: float-updown2 4s ease-in-out infinite;
  z-index: 4;
}
.dekirumade .vegi.vegi8 { /*にんじん*/
  width: 8.3333333333vw;
  right: 10.4166666667vw;
  bottom: 13.8888888889vw;
  animation: float-updown 4s ease-in-out infinite;
  z-index: 4;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .vegi.vegi1 { /*黄色かぼちゃ*/
    width: 16.1668839635vw;
    left: 18.2529335072vw;
    top: 19.556714472vw;
  }
  .dekirumade .vegi.vegi2 { /*かぼちゃ*/
    width: 16.9491525424vw;
    right: 41.7209908735vw;
    top: auto;
    bottom: 19.556714472vw;
  }
  .dekirumade .vegi.vegi3 { /*ブロッコリ*/
    width: 18.2529335072vw;
    left: -2.6075619296vw;
    top: 58.6701434159vw;
  }
  .dekirumade .vegi.vegi4 { /*きゅうり*/
    width: 17.4706649283vw;
    left: 69.1003911343vw;
    top: 22.1642764016vw;
  }
  .dekirumade .vegi.vegi5 { /*たまねぎ*/
    width: 14.3415906128vw;
    right: -3.9113428944vw;
    top: 63.8852672751vw;
  }
  .dekirumade .vegi.vegi6 { /*さつまいも*/
    width: 11.7340286832vw;
    left: 3.9113428944vw;
    bottom: 26.7275097784vw;
  }
  .dekirumade .vegi.vegi7 { /*トマト*/
    width: 13.037809648vw;
    left: 10.4302477184vw;
    bottom: 44.3285528031vw;
    z-index: 4;
  }
  .dekirumade .vegi.vegi8 { /*にんじん*/
    width: 15.6453715776vw;
    right: 6.518904824vw;
    bottom: 22.1642764016vw;
    z-index: 4;
  }
}
.dekirumade .en_subttl {
  text-align: center;
  color: #000;
  position: relative;
  z-index: 1;
  padding-top: 5.9722222222vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .en_subttl {
    padding-top: 31.2907431551vw;
    margin-bottom: 4.1720990874vw;
  }
}
.dekirumade h2 {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0.3472222222vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade h2 {
    margin-bottom: 1.3037809648vw;
  }
}
.dekirumade h2 img {
  width: 44.7222222222vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade h2 img {
    width: 70.4041720991vw;
  }
}
.dekirumade {
  /*--------------------------------- 
  スライダ用
  ---------------------------------*/
  /* ベースのコンテナ設定 */
}
.dekirumade .myslider {
  height: 37.3vw;
  position: relative;
  z-index: 2;
  margin-top: -2.0833333333vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .myslider {
    height: auto;
  }
}
.dekirumade .slider-container {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 11vw 0 11vw; /*上下のパディング：小さいと拡大パネルが見切れる*/
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .slider-container {
    padding: 24vw 0; /*上下のパディング：小さいと拡大パネルが見切れる*/
  }
}
.dekirumade .slider-container .controls {
  position: absolute;
  box-sizing: border-box;
  width: 46%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  padding-right: 18px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .slider-container .controls {
    width: 92%;
    top: 50%;
    padding-right: 0;
  }
}
.dekirumade .slider-container .controls button {
  background: none; /* 背景色をなしに */
  border: none; /* 枠線をなしに */
  padding: 0; /* 内側の余白をなしに */
  cursor: pointer; /* カーソルを指マークに */
  outline: none; /* クリック時の青い枠線を消す（必要に応じて） */
  flex-shrink: 0;
}
.dekirumade .slider-container .controls button img {
  display: block; /* 余計な隙間をなくす */
  height: auto; /* 高さは自動調整 */
  width: 5.8333333333vw;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: transform;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .slider-container .controls button img {
    width: 10.9517601043vw;
  }
}
.dekirumade .slider-container .controls button img {
  transition-duration: 0.15s;
}
.dekirumade .slider-container .controls button img:hover {
  transform: scale(1.2);
}
.dekirumade .slider-container .slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1vw; /* JSの gapVw と合わせる */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.dekirumade .slider-container .slider-wrapper .slide-item {
  /* 5枚表示の基準幅（100%を5分割） */
  /*flex: 0 0 calc((100% - (40px * 4)) / 5);
  flex: 0 0 calc((100% - (40px * 3.2)) / 4.2);
  */
  flex: 0 0 calc((100% - 6.4vw) / 4.2);
  aspect-ratio: 16/9;
  border-radius: 12px;
  transition: flex-basis 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* 中央に来た時だけ幅を広げる（1.76倍相当） */
  z-index: 1;
}
.dekirumade .slider-container .slider-wrapper .slide-item.is-active {
  flex-basis: calc((100% - 6.4vw) / 4.2 * 1.76);
  z-index: 2;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .slider-container .slider-wrapper .slide-item {
    /* スマホ用：2.4分割（splitNumと合わせる） */
    flex: 0 0 calc((100% - 1.4vw) / 2);
  }
  .dekirumade .slider-container .slider-wrapper .slide-item.is-active {
    /* スマホ用拡大 */
    flex-basis: calc((100% - 1.4vw) / 2);
  }
}
.dekirumade .slider-container .slider-wrapper .slide-item .slide-item_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* 幅の変化のアニメーション */
}
.dekirumade .slider-container .slider-wrapper .slide-item .slide-item_inner img {
  display: block;
  margin: 0 auto;
  transform: scale(1);
  /* 変化を滑らかにするなら transition も有効（任意） */
  transition: transform 0.3s ease;
}
.dekirumade .slider-container .slider-wrapper .slide-item .slide-item_inner img.on, .dekirumade .slider-container .slider-wrapper .slide-item .slide-item_inner img.caption {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.dekirumade .slider-container .slider-wrapper .slide-item .slide-item_inner img.caption {
  width: 19vw !important;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .slider-container .slider-wrapper .slide-item .slide-item_inner img.caption {
    width: 40vw !important;
  }
}
.dekirumade .slider-container .slider-wrapper .slide-item {
  /* 1. アクティブな時の画像の状態を定義 */
}
.dekirumade .slider-container .slider-wrapper .slide-item.is-active .slide-item_inner img.off {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  /* アニメーションが終わった後、あるいはアニメーションがない時にこの値を維持させる */
  transform: scale(1);
}
.dekirumade .slider-container .slider-wrapper .slide-item.is-active .slide-item_inner img.caption {
  visibility: visible;
  opacity: 0;
  bottom: 0;
  right: 0;
  /*transform: rotateY(-180deg) translate(22%,+35%);*/
  transform: translate(22%, 45%);
  animation: forwards;
  animation-delay: 0.5s;
  animation-name: capFadein;
  animation-duration: 0.3s;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .slider-container .slider-wrapper .slide-item.is-active .slide-item_inner img.caption {
    right: -14vw;
    bottom: -2vw;
  }
}
.dekirumade .slider-container .slider-wrapper .slide-item.is-active .slide-item_inner img.on {
  visibility: visible;
  opacity: 1;
  position: relative;
  /* アニメーションが終わった後、あるいはアニメーションがない時にこの値を維持させる */
  transform: scale(1);
  /* 2. アニメーションの設定 */
  /* forwards を指定しつつ、100% の状態を維持 */
  /*animation: imgBounce 0.5s 0.6s forwards;*/
  /*animation: smoothBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;

  /* ease-in-out を使うことで、各ポイントの接続を滑らかにします */
  animation: elasticZoom 0.7s ease-in-out 0.6s forwards;
}
.dekirumade .slider-wrapper.is-jump .slide-item.is-active .slide-item_inner img {
  animation: none;
  transform: scale(1.76);
}
@keyframes capFadein {
  0% {
    opacity: 0;
    transform: translate(22%, 45%);
  }
  100% {
    opacity: 1;
    transform: translate(22%, 35%);
  }
}
@keyframes rotateY {
  0% {
    opacity: 0;
    transform: rotateY(-180deg) translate(22%, 35%);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) translate(22%, 35%);
  }
}
@keyframes imgBounce {
  0% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  20% {
    transform: scale(1.95); /* 一度行き過ぎる */
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: scale(1.58); /* 少し戻る */
    animation-timing-function: ease-in-out;
  }
  60% {
    transform: scale(1.85); /* 小さく行き過ぎる */
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: scale(1.75); /* ほぼ収束 */
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: scale(1.76); /* 最終的な目標値 */
  }
}
@keyframes smoothBounce {
  0% {
    transform: scale(1);
  }
  /* 途中のカクつきを抑えるため、中間点は1つだけに絞ります。
  cubic-bezier が「行き過ぎて戻る」動きを補完してくれます。
  */
  100% {
    transform: scale(1.76);
  }
}
@keyframes elasticZoom {
  0% {
    transform: scale(1);
  }
  60% {
    /* 目標値(1.76)を少し超える */
    transform: scale(1.85);
  }
  80% {
    /* わずかに戻りすぎる */
    transform: scale(1.7);
  }
  100% {
    transform: scale(1.76);
  }
}
.dekirumade {
  /* ワープ時（is-jumpクラス付与時）はアニメーションを無効化 */
}
.dekirumade .is-jump {
  transition: none !important;
}
.dekirumade .is-jump .slide-item {
  transition: none !important;
}
.dekirumade {
  /*
  メーターのブロック
  */
}
.dekirumade .dekirumade__bottom {
  background: #FF8C20;
  height: 13.1944444444vw;
  padding-top: 6.25vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom {
    height: 28.6831812256vw;
    padding-top: 11.7340286832vw;
  }
}
.dekirumade .dekirumade__bottom .progress_box {
  width: 62.5vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .progress_box {
    width: 87.6140808344vw;
  }
}
.dekirumade .dekirumade__bottom .memori_wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_base {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #F2E3C9;
  height: 0.9722222222vw;
  border: 0.1388888889vw solid #000;
  border-radius: 0.9722222222vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .memori_wrapper .memori_base {
    height: 3.1290743155vw;
    border: 0.3911342894vw solid #000;
    border-radius: 3.1290743155vw;
  }
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_base {
  cursor: grab;
  cursor: pointer;
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_base:active {
  cursor: grabbing;
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_base .progress_fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #00D282;
  border-radius: 0.6944444444vw 0 0 0.6944444444vw;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .memori_wrapper .memori_base .progress_fill {
    border-radius: 2.6075619296vw 0 0 2.6075619296vw;
  }
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_base .usagi_marker {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-43%, -80%);
  transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none; /* 画像へのクリックをスルーして親のdrag-areaに届かせる */
  /* ここが重要：子要素の img がドラッグを邪魔しないようにする */
  pointer-events: auto;
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_base .usagi_marker:active {
  cursor: grabbing;
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_base .usagi_marker img {
  width: 5.7638888889vw;
  display: block;
  /* 画像としての「持ち上げ」を禁止して、クリックだけを通す */
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none; /* marker（親）でイベントを取りたいので none のまま */
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .memori_wrapper .memori_base .usagi_marker img {
    width: 13.5593220339vw;
  }
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori {
  position: relative;
  margin-bottom: 0.4166666667vw;
  transform: scale(98%);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .memori_wrapper .memori {
    margin-bottom: 1.0430247718vw;
  }
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori .memori_tri {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.25vw;
  transform: translateX(110%);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .memori_wrapper .memori .memori_tri {
    width: 2.6075619296vw;
  }
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_labels {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .memori_wrapper .memori_labels {
    padding-top: 2.0860495437vw;
  }
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_labels .start {
  width: 3.9583333333vw;
  transform: translate(-118%, -100%);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .memori_wrapper .memori_labels .start {
    width: 9.3872229465vw;
    transform: none;
  }
}
.dekirumade .dekirumade__bottom .memori_wrapper .memori_labels .goal {
  width: 3.4722222222vw;
  transform: translate(118%, -100%);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .dekirumade .dekirumade__bottom .memori_wrapper .memori_labels .goal {
    width: 8.3441981747vw;
    transform: none;
  }
}

/*
day365
*/
.day365 {
  background-color: #110103;
  background-image: url(../img/home/day365/bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  position: relative;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 {
    background-size: 220%;
    background-position: left top;
  }
}
.day365:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(17, 1, 3, 0) 5%, rgb(17, 1, 3) 94%);
}
.day365 .mask_up {
  margin-bottom: 9.375vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .mask_up {
    margin-bottom: 14.3415906128vw;
  }
}
.day365 .mask_bottom {
  margin-top: 3.8194444444vw;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.day365 .mask_bottom img {
  width: 106%;
  margin-left: -3%;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .mask_bottom {
    margin-top: 26.075619296vw;
  }
}
.day365 .en_subttl {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.day365 h2 {
  color: #fff;
  font-size: 3.1944444444vw;
  text-align: center;
  font-weight: 900;
  margin-bottom: 5vw;
  position: relative;
  z-index: 1;
}
.day365 h2 br {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 h2 {
    font-size: 7.8226857888vw;
    margin-bottom: 14.3415906128vw;
    line-height: 1.4;
  }
  .day365 h2 br {
    display: inline;
  }
}
.day365 .ttls {
  width: 43.0555555556vw;
  margin: 0 auto 3.4722222222vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .ttls {
    width: 82.1382007823vw;
    margin: 0 auto 11.7340286832vw;
  }
}
.day365 .ttls .ttl0 {
  width: 15.4166666667vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .ttls .ttl0 {
    width: 29.2046936115vw;
  }
}
.day365 .ttls .ttl1,
.day365 .ttls .ttl2 {
  width: 100%;
}
.day365 .ttls .ttl1 {
  margin: 1.6666666667vw auto 1.25vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .ttls .ttl1 {
    margin: 3.1290743155vw auto 2.3468057366vw;
  }
}
.day365 .strong_ttl {
  text-align: center;
  color: #fff;
  letter-spacing: 0.14em;
  font-size: 1.9444444444vw;
  font-family: "Montserrat";
  font-weight: 700;
  text-align: center;
  margin: 0 auto 1.7361111111vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .strong_ttl {
    font-size: 4.1720990874vw;
    margin: 0 auto 5.2151238592vw;
  }
}
.day365 .strong_list {
  width: 61.1111111111vw;
  margin: 0 auto 3.75vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .strong_list {
    width: 82.1382007823vw;
    margin: 0 auto 13.8200782269vw;
  }
}
.day365 .story {
  width: 91.6666666667vw;
  padding: 6.3888888889vw 8.75vw;
  margin: 0 auto;
  padding-right: 0;
  border-radius: 5.6944444444vw;
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .story {
    width: 87.3533246415vw;
    padding: 10.9517601043vw 5.2151238592vw 70.4041720991vw;
    border-radius: 5.2151238592vw;
  }
}
.day365 .story h3 {
  font-size: 1.9444444444vw;
  font-family: "Montserrat";
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .story h3 {
    font-size: 4.1720990874vw;
    margin-bottom: 1.2em;
  }
}
.day365 .story .story_flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3.75vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .story .story_flex {
    display: block;
    position: relative;
  }
}
.day365 .story .story_flex .txt {
  width: 32.5vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .story .story_flex .txt {
    width: 70.4041720991vw;
  }
}
.day365 .story .story_flex .pic {
  position: absolute;
  right: 0;
  z-index: 0;
  transform: translateY(-5%);
}
.day365 .story .story_flex .pic img {
  width: 51.9444444444vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .story .story_flex .pic {
    width: 108%;
    bottom: 0;
    right: auto;
    left: 0;
    transform: translate(-5%, 130%);
  }
  .day365 .story .story_flex .pic img {
    width: 100%;
  }
}
.day365 .story .story_copy {
  width: 75.6944444444vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .day365 .story .story_copy {
    width: 63.6245110821vw;
    margin-top: 5vw;
  }
}

/*
特定のタイプ共通
*/
section.sect_t1 {
  padding: 8.3333333333vw 0;
  background: #EFEAD4;
  background-image: url(../img/home/sect_border.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 90%;
}
section.sect_t1 ._centering .en_subttl {
  text-align: center;
}
section.sect_t1 ._centering h2 {
  text-align: center;
  line-height: 1;
  padding-top: 0.8333333333vw;
  margin-bottom: 2.9166666667vw;
}
section.sect_t1 ._centering .b_archive {
  margin: 2.7777777778vw auto 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.sect_t1 {
    background-image: url(../img/home/sect_border_sp.svg);
    padding: 19.556714472vw 0;
  }
  section.sect_t1 ._centering h2 {
    padding-top: 3.1290743155vw;
    margin-bottom: 5.4758800522vw;
  }
  section.sect_t1 ._centering .b_archive {
    margin: 7.8226857888vw auto 0;
  }
}

/*
ラインナップ
*/
section.lineup {
  background: #EFEAD4;
}
section.lineup h2 {
  margin-bottom: 1.3888888889vw;
}
section.lineup h2 img {
  width: 19.1666666667vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.lineup h2 {
    margin-bottom: 2.0860495437vw;
  }
  section.lineup h2 img {
    width: 46.9361147327vw;
  }
}
section.lineup .lead {
  text-align: center;
  font-size: 1.25vw;
  margin-bottom: 4.1666666667vw;
  line-height: 1.4;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.lineup .lead {
    font-size: 4.1720990874vw;
    margin-bottom: 7.8226857888vw;
    line-height: 1.5;
  }
}
section.lineup .end_msg {
  margin: 5.5555555556vw auto 0;
  font-size: 1.6666666667vw;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.lineup .end_msg {
    margin: 11.4732724902vw auto 0;
    font-size: 4.1720990874vw;
  }
}
section.lineup .b_contactus {
  margin: 3.0555555556vw auto 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.lineup .b_contactus {
    margin: 5.9973924381vw auto 0;
  }
}

/*
活用事例
*/
section.case h2 img {
  width: 12.7777777778vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.case h2 img {
    width: 31.2907431551vw;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.case ._centering {
    padding-right: 0;
  }
}

/*
Blog
*/
section.blog h2 img {
  width: 7.2222222222vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.blog h2 img {
    width: 17.7314211213vw;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.blog ._centering {
    padding-right: 0;
  }
}

/*
お知らせ
*/
section.news h2 img {
  width: 12.7777777778vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.news h2 img {
    width: 31.2907431551vw;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.news ._centering {
    padding-right: 0;
  }
}

section.customer {
  background: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 44.0277777778vw;
  overflow: hidden;
  position: relative;
}
section.customer img.pic {
  transform: translateX(-38%) translateY(9%) rotate(-40deg) scale(72%);
}
section.customer .txt {
  width: 46%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
section.customer .txt h2 {
  font-size: 2.5vw;
  font-weight: 900;
  margin-bottom: 0.5em;
  line-height: 1;
}
section.customer .txt .msg {
  font-size: 1.25vw;
  line-height: 1.6;
  margin-bottom: 1em;
}
section.customer .txt .b_contactus {
  margin-top: 1.5277777778vw;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  section.customer {
    height: 152.5423728814vw;
    padding-top: 17.2099087353vw;
    flex-direction: column-reverse;
  }
  section.customer img.pic {
    transform: translateX(0) translateY(15%) rotate(-30deg) scale(130%);
  }
  section.customer .txt {
    position: relative;
    width: 100%;
    padding: 0 5.2151238592vw;
  }
  section.customer .txt h2 {
    font-size: 7.8226857888vw;
    line-height: 1;
  }
  section.customer .txt .msg {
    font-size: 3.6505867014vw;
  }
  section.customer .txt .b_contactus {
    margin: 3.9113428944vw auto;
  }
}

.b_archive_wrapper {
  padding-top: 5rem;
  margin-top: 5rem;
  border-top: solid 1px #ddd;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .b_archive_wrapper {
    padding-top: 4rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 599px) and (orientation: portrait) {
  .b_archive_wrapper {
    padding-top: 5rem;
    margin-top: 5rem;
  }
}/*# sourceMappingURL=home.css.map */