.header {
  padding: 0;
  /* background: transparent; */
  position: fixed;
  padding: 5px 0;
  z-index: 100;
  width: 100%;
}
.header{
    background-color: #0000006f;
    transition:.5s;
}

.header .header-inner {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between; /* 左右に飛ばす */
  align-items: center;
}
.header .logo{
  font-family: "Oswald", sans-serif;
  color:#fff;
  line-height:1.2;
  text-align:center;
  font-weight:700;
  position: relative;
  z-index: 999;
}
.header .logo img{
    max-width: 250px;
    width: 80%;
    min-width:120px;
}
/* PC用メニュー */
.header .nav-list {
  display: flex;
  list-style: none;
}

.header .nav-item .parent-link {
  text-decoration: none;
  color:#fff;
  margin-left: 60px;
  font-weight: bold;
}
.header .nav-item .parent-link a{
  color:#fff;
  text-decoration: none;
}


.header .submenu ul{
    list-style: none;}
    .header .submenu ul li{
    display: inline-block;
  }
  .header .submenu li a {
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;
    padding: 0 15px;

    border-right: 1px solid rgba(255, 255, 255, 0.4);
    margin: 10px 0 !important;
    display: block;
    line-height: 1.2;
  }
  .header .nav-item > .parent-link::before {
    content: '▶';
    display: inline-block;
    margin-right: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
  }
@media screen and (min-width: 769px) {
/* 追加 */
/* 1. 親要素：ホバー判定を安定させる */
  .header .nav-item {
    /* position: relative; */
    padding-bottom: 55px; /* ヘッダーとサブメニューの物理的な隙間を埋める */
    margin-bottom: -55px;
  }

  /* 2. 矢印の設定 */
  .header .nav-item:hover{
    opacity: .7;
    transition: .5s;
  }
  /* .header .nav-item:hover > .parent-link::before {
    transform: rotate(90deg);
  } */

  /* 3. サブメニュー本体（文字のコンテナ） */
  .header .submenu {
    position: absolute;
    top: 100%;          /* 親メニューの直下 */
    left: 0;            /* 基本は親メニューの左端に揃える */
    display: flex;
    justify-content: space-between;
    /* white-space: nowrap; */
    /* flex-wrap: wrap;
    list-style: none; */
    padding: 20px 0;    /* 帯の高さ（内側の余白） */
    margin: 0;
    z-index: 100;
    /* max-width: 500px; */
    left: 0;
    width: 100vw;
    
    /* フェード設定 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    background-color: #0000006f;
  }
   .header .submenu ul{
    max-width: 300px;
    list-style: none;


   }
   .header .nav-item:nth-child(2) .submenu{
    padding-right: 40%;
   }
   .header .nav-item:nth-child(1) .submenu{
    padding-right: 55%;
   }
   .header .nav-item:nth-child(3) .submenu{
    padding-right: 30%;
   }
   .header .nav-item:nth-child(4) .submenu{
    padding-right: 20%;
   }
   .header .nav-item:nth-child(5) .submenu{
    padding-right: 10%;
   }
   .header .nav-item .submenu{
    justify-content: right;
   }
   .header .nav-item:nth-child(6) .submenu ul{
    /* justify-content: right; */
   }

  /* 4. グレーの背景（画面幅100vw・隙間なし） */
  .header .submenu::before {
    content: "";
    position: fixed;    /* 画面全体に対して固定 */
    left: 0;
    width: 100vw;
    
    /* ヘッダーの高さに合わせてここを微調整してください */
    height: 100%;       
    /* background-color: #0000006f;グレー背景（半透明） */
    z-index: -1;        /* 文字より後ろへ */
    pointer-events: none;
    /* ヘッダーとの隙間を完全に埋めるための調整 */
    top: auto; 
    margin-top: -10px;  /* 文字位置とのバランス調整 */
  }

  /* 5. ホバーで表示 */
  .header .nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* 6. 右側のメニューが画面からはみ出すのを防ぐ調整 */
  /* CONTACTやOTHERなど、右側のメニューだけ右端に揃える */
  .header .nav-item:nth-last-child(-n+2) .submenu {
    left: auto;
    right: 0;
  }

  
  /* 7. サブメニュー内のリンクと区切り線 */
  
  .header .submenu li:last-child a {
    border-right: none;
  }
}
/* 追加end */

/* ハンバーガーボタン（PCでは非表示） */
.header .hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  width: 44px;
  height: 44px;
  position: relative;

  border-radius: 50px;
  border: 2px solid #fff;
}

/* 棒の描画 */
.header .hamburger span {
  display: block;
  width: 50%;
  margin-left: 25%;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; display: none;}
.hamburger span:nth-child(3) { bottom: 15px; }
@media screen and (max-width: 1300px) {
   .header .nav-item .parent-link{margin-left: 30px;}

}
/* スマホ用レイアウト (768px以下) */
@media screen and (max-width: 768px) {
  .header .hamburger {
    display: block;
  }

  .header .nav {
    position: fixed;
    top: 0;
    right: -100%; /* 最初は画面の外に隠す */
    width: 100%;
    height: 100vh;
    background: #87ceeb;
    transition: all 0.3s;
    padding-top: 120px;
    z-index: 99;
  }

  .header .nav-list {
    flex-direction: column;
    align-items: left;
    max-width: 300px;
    margin: auto;
  }

  .header .nav-item {
    margin: 10px 0;
  }
  .header .nav-item a, .header .nav-item .parent-link{color: #fff;font-size: 23px;margin-left: 0;}

  .header .nav-item .submenu{
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    opacity: unset;
    
  }
  .header .nav-item .submenu ul a{
    font-weight: 400;
    margin-top: 10px;

  }

  /* JSでクラスがついた時の動き */
  .header .nav.is-open {
    right: 0;
    overflow-y: scroll;
  }

  .hamburger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
}
/* フッター */
/* セクション全体の背景と配置 */
.top-prefooter {
  position: relative;
  background-color: #add8e6; /* 薄い水色 */
  padding: 200px 0 50px;
  overflow: hidden;
  
}

.shop-section{
    margin-top: -10vw;
    
    }

/* 濃い水色の波（簡易的に長方形で表現、実際はSVG画像推奨） */

.top-prefooter .shop-container {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -50px; /* 画像とカードを少し重ねるための調整 */
}

/* 左側：画像プレースホルダ */
.top-prefooter .shop-image {
  flex: 1;
  width: 40%;
}

.top-prefooter .image-placeholder {
  background-color: #808080; /* グレー */
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: center;
  width: 120%;
  margin-bottom: 30px;
}

/* 縦書きのMASAテキスト */
.top-prefooter .vertical-text {
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  left: -20px;
  position:absolute;
  z-index:5;
  font-family: "Oswald", sans-serif;
  top:20px;
}

.top-prefooter .vertical-text img{
    max-width:130px;
    width:10%;
    min-width:80px;
}

/* 右側：ショップカード */
.top-prefooter .shop-card {
  flex: 0 0 400px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  // margin-left: -80px; /* 画像の上に被せる */
  position:relative;
  z-index:5;
}

.top-prefooter .card-inner {
  padding: 40px;
  text-align: center;
}

.top-prefooter .card-subtitle {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.top-prefooter .card-title {
  color: #00bfff;
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  text-align: left;
  font-family:sans-serif;
}

.top-prefooter .card-details {
  text-align: left;
  font-size: 12px;
  line-height: 1.8;
  color: #666;
}

/* カード下部の青いエリア */
.top-prefooter .card-footer {
  background-color: #00bfff;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.top-prefooter .card-footer p {
  font-size: 11px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.top-prefooter .contact-button {
  display: inline-block;
  background: #fff;
  color: #00bfff;
  text-decoration: none;
  padding: 10px 60px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}
.top-prefooter .contact-button:hover{opacity:0.7;}

.top-prefooter .contact-button span {
  font-size: 10px;
  margin-left: 5px;
}
.top-prefooter .image-placeholder-inner{display:none;}


/* スマホ対応 */
@media screen and (max-width: 768px) {
    .top-prefooter .image-placeholder-inner{display:block;}
  .top-prefooter .shop-container {
    flex-direction: column;
    padding: 0 20px;
  }
  .top-prefooter .shop-card {
    margin-left: 0;
    margin-top: -50px; /* スマホでは上下で重ねる */
    width: 100%;
  }
  .top-prefooter .shop-image {
    width: 100%;
  }
  .top-prefooter .image-placeholder {
    display:none;
  }
}
.top-prefooter.footer {
  background-color: #add8e6; /* 画像に合わせた水色（適宜調整してください） */
  padding: 60px 0 20px;
  color: #fff;
  font-family: sans-serif;
}

.top-prefooter .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  /* display: flex; */
  justify-content: space-between; /* 左右に配置 */
  align-items: flex-start;          /* 下揃えにすると画像に近くなります */
  margin-bottom: 0px;
  gap: 10px;
}
/* 追加　＝＝＝＝＝ */
.top-prefooter .footer-inner .footer-nav-list{
  
  display: flex;
}
.top-prefooter .footer-inner .footer-nav-over{


}
.top-prefooter .footer-inner .footer-nav-over:first-child{
  width: 30%;

}
.top-prefooter .footer-inner .footer-nav-over:nth-child(2){
  width: 30%;

}
.top-prefooter .footer-inner .footer-nav-over:last-child{
  width: 40%;
}
.top-prefooter .footer-inner .submenu{
  margin-bottom: 20px;
  padding: 10px 0 10px 30px;
  border-left: 1px solid #fff;
  min-height: 70px;
}
.top-prefooter .footer-inner .submenu ul{
  list-style: none;
  display: flex;


}
.top-prefooter .footer-inner .submenu ul li{
  width: 45%;

}
.top-prefooter .footer-inner .submenu ul li.sp-s{
  display: none;
}
.top-prefooter .footer-inner .submenu ul a{
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .top-prefooter .footer-inner .footer-nav-list{
    flex-wrap: wrap;
  }
    .top-prefooter .footer-inner .footer-nav-over:first-child{
    width: 50%;

  }
  .top-prefooter .footer-inner .footer-nav-over:nth-child(2){
    width: 50%;

  }
  .top-prefooter .footer-inner .footer-nav-over:last-child{
    width:100%;
  }
}
@media screen and (max-width: 768px) {
  .top-prefooter .footer-inner .footer-nav-list{
    flex-direction: column;
  }
    .top-prefooter .footer-inner .footer-nav-over:first-child{
    width: 100%;

  }
  .top-prefooter .footer-inner .footer-nav-over:nth-child(2){
    width: 100%;

  }
  .top-prefooter .footer-inner .submenu{
    border-left: unset;
    min-height: unset;
    margin-bottom: 0px;
    padding-left: 0;

  }
  .top-prefooter .footer-inner .submenu ul{
    display: block;
    width: 100%;
  }
  .top-prefooter .footer-inner .submenu ul li{
    width: 100%;
    
    flex-wrap: wrap;
    display: none;
    flex-direction: unset;
    
   }
   .top-prefooter .footer-inner .submenu ul li.sp-s{
    display: block;
    
   }
   .top-prefooter .footer-inner .submenu ul li.both{
    display: block;;
   }
   .top-prefooter .footer-inner .submenu ul a{
    border-right: 1px solid #fff;
    width: fit-content;
    padding: 0 10px;
    display: inline-block;

   }

}

/* ロゴのスタイル */
.top-prefooter .footer-logo a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.2em; /* 文字の間隔を広げる */
  display: block;
  font-family: "Oswald", sans-serif;
  text-align:center;
}

.top-prefooter .footer-logo img{
    max-width:230px;
    width:100%;
    min-width:120px;
}

/* ナビゲーションのスタイル */


.top-prefooter .footer-nav-list > li > .parent-link{
  width: 150px;
  font-size: 20px;
}
.top-prefooter .footer-nav-list > li > .parent-link::before {
    content: '▶';
    display: inline-block;
    margin-right: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
  }

.top-prefooter .footer-nav-list li .submenu ul{
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px
}
.top-prefooter .footer-nav-list li .submenu ul li{
  border-right: 1px solid #fff;
  margin-bottom: 0;
}
.top-prefooter .footer-nav-list li .submenu ul li:last-child{
  border-right: unset;
}
.top-prefooter .footer-nav-list li .submenu ul a{
  width: fit-content;
  margin: 0 10px;
  font-size: 13px;

}

.top-prefooter .footer-nav-list a ,.top-prefooter .footer-nav-list  .parent-link{
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .top-prefooter .footer-nav-list li{
  flex-direction: column;

}
}
/* コピーライト */
.top-prefooter .copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 10px;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.top-prefooter .to-top-button a {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 10;
  display: flex;
      justify-content: center;
    flex-direction: column;
  max-width: 200px;
  width:10vw;
  max-height: 200px;
  height:10vw;
  text-align: center;
  color: #fff;
  text-decoration: unset;
  background-color: #00bfff;
  border-radius: 50%;
  padding: 10px 0;
}
.top-prefooter .to-top-button a span {
  display: block;
  font-size: 13px;
}
.top-prefooter .to-top-button a:hover {
  opacity: 0.7;
}
.sp{display:none !important;}
/* スマホ対応 */
@media screen and (max-width: 768px) {
    .top-prefooter .card-subtitle{font-size: 24px;}
    .top-prefooter .card-title{font-size: 18px;margin-top: 10px;}
    .top-prefooter .to-top-button, .top-prefooter .vertical-text{display:none;}
    .sp{display:block !important;}
    .p-kv_slider__track-custom .p-kv_slider__track__list__item__inner__info__title img{max-width:400px;width:50%;margin:auto;}
    .top-prefooter .shop-container{display:block;}
    .top-prefooter .vertical-text, .to-top-button{display:none;}
  .top-prefooter .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    max-width: 400px;
  }
  .top-prefooter .footer-logo{
    display: flex;
    justify-content: flex-start;
    max-width: 300px;
    width: 60%;
    margin: 0 auto;

  }
  .top-prefooter .footer-inner .footer-nav{
    order: 1;
    max-width: 300px;
    width: 100%;
  }
  .top-prefooter .footer-inner .footer-logo{
    order: 2;
  }
  
  .top-prefooter .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .top-prefooter .footer-nav-list{
    flex-direction: column;
    max-width: 400px;
    margin: auto;
    gap: 0;
  }
  .top-prefooter .footer-nav-list > li:first-child{
    /* border-top: 1px solid #fff; */
  }
  .top-prefooter .footer-nav-list > li{
    padding: 0;
    /* border-bottom: 1px solid #fff; */
    width: 100%;
    position: relative;
  }
  .top-prefooter .footer-nav-list li a{
    display: inline-block;
    width: 100%;
  }
  /* .top-prefooter .footer-nav-list li::after{
    content: "▶︎";
    position: absolute;
    right: 10px;
  } */
}

* {
  margin: 0;
  padding: 0;
}

#about {
  background-color: #87ceeb;
  padding: 250px 0 350px;
  position: relative;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
  
}
#about .txt {
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.7;
  letter-spacing: 0.2em;
}
#about .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#about .top-img-wrap {
  width: 100%;
  position: absolute;
  top: 250px;
}
#about .top-img-wrap img {
  max-width: 1700px;
  width: 95%;
  margin: auto;
  display: block;
  z-index: 0;
}
#about .inner {
  max-width: 1500px;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
  padding: 150px 0 0;
}
#about .inner .ttl {
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: clamp(30px, 3.0526315789vw, 58px);
}
#about .inner .w-bg {
  margin-top: 150px;
  background-color: #fff;
  border-radius: 20px;
  padding: 100px 0;
}
#about .inner .w-bg img {
  width: 100%;
}
#about .inner .lead-ttl, #about .inner .lead-inn, #about .inner .about-main {
  max-width: 1190px;
  width: 90%;
  margin: auto;
}
#about .inner .lead-ttl {
  color: #00bfff;
  text-align: center;
  font-size: 31px;
}
#about .inner .lead-inn {
  margin-top: 80px !important;
}
#about .inner .lead-inn .txt-wrap, #about .inner .lead-inn .img-wrap {
  width: 45%;
}
#about .inner .about-main {
  margin-top: 40px;
}
#about .inner .about-main .txt-l{
    font-size: 21px;
    margin-top:15px;
    text-align:center;
}
#about .inner .about-main .ttl-img {
  max-width: 778px;
  margin: 100px auto 0;
}
#about .inner .about-main .main-content {
  margin-top: 50px;
}
#about .inner .main-content .item {
  margin-top: 100px;
}
#about .inner .main-content .img-wrap {
  width: 43%;
  position: relative;
}
#about .inner .main-content .img-wrap .num {
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  position: absolute;
  line-height: 1;
  top: -40px;
  left: 35px;
  color: #00bfff;
}
#about .inner .main-content .txt-wrap {
  width: 50%;
}
#about .inner .main-content .txt-wrap .txt-l {
  color: #00bfff;
  font-size: clamp(18px, 1.6666666667vw, 25px);
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  text-align:left;
}
#about .inner .main-content .txt-wrap .txt {
  letter-spacing: 0.1em;
  font-size: 13px;
  color: #333;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
}
#about .inner .main-content .txt-wrap .txt-s {
    font-size: 11px;
    margin-top:30px;
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
    
    }
#about .masa-txt {
  position: absolute;
  font-size: clamp(60px, 6.3157894737vw, 120px);
  font-family: "Oswald", sans-serif;
  right: 0;
  bottom: 0px;
  z-index: 6;
  letter-spacing: 0.2em;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
}
#about .masa-txt img{
max-width:130px;
    width:10%;
    min-width:80px;
}
#product {
  position: relative;
  margin-top: -200px;
  margin-bottom: -150px;
}
#product img {
  width: 100%;
}
#product .ttl-img {
  max-width: 700px;
  margin: auto;
}
#product .product-contain {
  background-color: #00bfff;
  margin-top: -7px;
  padding: 100px 0 250px;
  width: 100%;
      position: relative;
    z-index: 5;
}
#product .product-contain .ttl {
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #00bfff;
  font-size: clamp(25px, 1.8421052632vw, 35px);
}
#product .product-contain .lead-txt {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(16px, 1.7052631579vw, 37px);
  line-height: 1.8;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
}
#product .product-contain .inner {
  max-width: 1500px;
  width: 90%;
  margin: auto;
}
#product .product-contain .w-bg {
  background-color: #fff;
  padding: 100px;
  border-radius: 40px;
  margin-top: -30px;
}
#product .product-contain .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.5%;
}
#product .product-contain .items .item {
  width: 31%;
  margin-top: 50px;
}
#product .product-contain .items .item a{
    text-decoration: none;
}
#product .product-contain .items .txt-m {
  font-size: clamp(20px, 1.6666666667vw, 25px);
  height: 100px;
  margin-top: 15px;
  text-decoration: none;
  color: #000;
}
#product .product-contain .items .txt {
  font-size: 13px;
  font-weight: 100;
  color: #333;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-decoration: none;
}
#product .product-contain .items .img-wrap {
  aspect-ratio: 38/30;
}
#product .product-contain .items .img-wrap img{
height: 100%;border-radius:30px;}
#product .btn-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#product .btn-wrap a {
  letter-spacing:.24em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-decoration: unset;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
#product .btn-wrap span {
  color: #333;
  font-size: 24px;
}
#product .btn-wrap .arr-img {
  width: 13px;
  display: block;
}
#product .btn-wrap .arr-img svg {
  width: 100%;
}
#product .wave-wrap-2 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-top: -7px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1200px) {
  #about {
    padding-top: 150px;
  }
  #about .top-img-wrap {
    top: 150px;
  }
  #about .inner {
    padding: 70px 0;
  }
  #about .inner .w-bg {
    margin-top: 80px;
    padding-top: 30px;
  }
  #about .inner .lead-inn{
      margin-top: 20px !important;
     }
  #about .inner .lead-inn .txt-wrap{
      margin-top: 20px;
  }
  #about .inner .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin: auto;
  }
  #about .inner .img-wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  #about .inner .txt-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  #about .inner .lead-inn .img-wrap, #about .inner .main-content .img-wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  #about .inner .lead-inn .txt-wrap, #about .inner .main-content .txt-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  #about .inner .lead-inn .txt-wrap .txt-l, #about .inner .main-content .txt-wrap .txt-l {
    text-align: center;
    margin-top: 10px;
    height: unset;
  }
  #product .product-contain .w-bg {
    padding: 100px 7% 10%;
  }
  #product .product-contain .items .item {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
    #about {
    padding-bottom: 200px;
  }
    #product .ttl-img{max-width:250px;margin-bottom:-60px;}
    .sp-hide{display:none;}
    .sp{display:block;}
    #about .masa-txt {display:none;}
    #product .btn-wrap{justify-content: center;margin-top: 20px;}
  #about .top-img-wrap {
      width: 100%;
      position: absolute;
    }
    #about .top-img-wrap img {
      width: 100%;
     aspect-ratio: 1/1;
        object-fit:cover;
    }
  #about .inner .lead-ttl {
      font-size:20px;
  }
  #product .product-contain .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin: auto;
  }
  #product .product-contain .items .item {
    width: 100%;
  }
  #product .product-contain .items .item .txt-m {
    height: unset;
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
  }
  #product .product-contain .items .item .txt {
    margin-top: 10px;
  }
    #product .product-contain{padding-bottom:150px;}
    #product{margin-bottom:-50px;}
}


/* アニメーションのキーフレーム定義 */
@keyframes fadeInUp {
    0% {
        opacity: 0; /* 完全に透明 */
        transform: translateY(30px); /* 30px下に配置 */
    }
    100% {
        opacity: 1; /* 完全に表示 */
        transform: translateY(0); /* 元の位置に戻る */
    }
}

/* 対象となる要素の初期状態 */
.ani {
    opacity: 0; /* 最初は隠しておく */
    visibility: hidden; /* クリックなどもできないようにする */
    /* 動きを滑らかにするための設定（念のため） */
    will-change: opacity, transform; 
}

/* JavaScriptでこのクラスが付与されたらアニメーションを開始 */
.ani.is-animated {
    visibility: visible;
    /* アニメーション名 | 再生時間 | イージング | 最後に状態を維持 */
    animation: fadeInUp 1.5s ease-out forwards;
}

