@charset "UTF-8";
/* ===== ヘッダー ===== */
.obi{
  position: relative;
  background: url("/img/obi.webp") no-repeat center center;
  background-size: cover;
  padding: 10px 15px;
  font-family: var(--font-shippori);
  font-weight: 500;
}
.header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 40px 40px 20px; 
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 950;
    transition: background-color 0.6s, padding 0.3s ease-out;
}
.header.is-sticky {
    padding-top: 10px;    
    padding-bottom: 10px; 
}
.header-logo img{
  width: 100%;
  max-width: 320px;
}
/* PC用ナビ (デフォルトは非表示) */
.nav-pc {
  display: none;
}
.nav-pc__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 20px 0 0;
}
.nav-pc__list li {
  margin-left: 40px;
}
.nav-pc__list a {
  text-decoration: none;
  color: #333;
  font-family: var(--font-corm);
  font-size: var(--fs-19);
  font-weight: 600;
}
.nav-pc__list a:hover {
}
.nav-pc__list a img{
  width: 25px;
}
@media (max-width: 1077px) {
  .header {
    padding: 40px 10px 20px 25px; 
  }
  .nav-pc__list li {
    margin-left: 25px;
  }
}
/* ハンバーガーボタン (スマホ用)*/
.hamburger-overlay {
  position: relative; 
  top: 0;
  right: 0;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}
.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }
.hamburger-overlay.active .hamburger-overlay__line {
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

/* オーバーレイメニュー (スマホ用) */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.header.overlay-active {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9); 
  border-bottom-color: transparent;
}
.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }
.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  font-family: var(--font-corm);
  font-size: var(--fs-24);
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}
.nav-overlay__link:hover {
}
.nav-overlay__link img{
  width: 40px;
}

/* レスポンシブ切り替え (PC表示) */
@media (min-width: 960px) {
  .nav-pc {
    display: block;
  }
  .hamburger-overlay {
    display: none;
  }
}
@media (max-width: 960px) {
  .header {
    padding: 10px; 
  }
  .header-logo img{
    max-width: 230px;
  }
}
@media (max-width: 600px) {
  .header-logo img{
    max-width: 180px;
  }
}


/* ===== #HEAD ===== */
#head {
  background: var(--color-white);
  padding-top: 160px;
}
#head .head-bg-img{
  background: url("/img/head_back.webp") no-repeat bottom center / cover;
}
#head .inr{
  height: 658px;
  width: 100%;
  max-width: 1090px;
  margin-right: auto;
  margin-left: auto;
  z-index: 3;
}
#head .img-wrap01{
  width: 100%;
  position: absolute;
  top:-165px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
}
#head .cont-ttl{
  position: absolute;
  bottom: 25px;
  left: -80px;
  transition: all 0.3s ease-out;
}
#head .cont-ttl img{
  width: 233px;
}
#head .cont-ttl div{
  margin: 50px 0 0 20px;
  font-family: var(--font-shippori);
}
#head .cont-ttl div h2{
  font-size: var(--fs-18);
  line-height: 2.1;
}
#head .cont-ttl div h1{
  font-size: var(--fs-40);
  line-height: 1.1;
}
#head .cont-ttl div p{
  font-size: var(--fs-16);
  margin-top: 1.2rem;
}
#head .img-wrap02{
  width: 350px;
  position: absolute;
  bottom: 60px;
  right: 200px;
  transition: all 0.3s ease-out;
}
#head .img-wrap03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  z-index: 3;
  pointer-events: none;
}
#head .img-wrap03 a {
  display: block;
  position: absolute;
  bottom: 130px;
  right: calc(50% - 562px);
  width: 180px; 
  height: 180px;
  pointer-events: auto; 
}
#head .img-wrap03 img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1190px) {
  #head .cont-ttl{
    position: absolute;
    bottom: 25px;
    left: 0px;
  }
  #head .cont-ttl img{
    width: 220px;
  }
  #head .img-wrap02{
    width: 300px;
    position: absolute;
    bottom: 70px;
    right: 90px;
  }
  #head .img-wrap03 a {
    bottom: 150px;
    right:-15px;
  }
}
@media screen and (max-width: 960px) {
  #head .inr{
    height: 580px;
  }
  #head .cont-ttl img{
    width: 180px;
  }
  #head .cont-ttl div{
    margin: 15px 0 0 20px;
    font-family: var(--font-shippori);
  }
  #head .img-wrap02{
    width: 200px;
    position: absolute;
    bottom: 200px;
    right: 180px;
  }
  #head .img-wrap03 a {
    bottom: 100px;
    right:-3%;
  }
}
@media screen and (max-width: 768px) {
  #head {
    padding-top: 80px;
  }
  #head .inr{
    height: auto;
  }
  #head .img-wrap01{
    position: relative;
    top: -80px;
    }
  #head .cont-ttl{
    position: relative;
    bottom: 0;
    padding-right: 5%;
    padding-left: 5%;
    margin-top: -110px;
    padding-bottom: 10px;
  }
  #head .cont-ttl img{
    width: 180px;
  }
  #head .cont-ttl div{
    margin: 40px 0 0 20px;
  }
  #head .img-wrap02{
    width: 20%;
    position: absolute;
    bottom: 140px;
    right: 30px;
  }
  #head .img-wrap03 a{
    width: 150px;
    height: 150px;
    bottom: 10px;
    right: -5%;
  }
}
@media screen and (max-width: 630px) {
  #head .cont-ttl{
    bottom: 0;
    left: 0;
    padding-left: 0%;
  }
  #head .cont-ttl img{
    width: 150px;
    height: 150px;
  }
  #head .cont-ttl div{
    margin: 40px 0 0 20px;
  }
  #head .cont-ttl div h2{
    font-size: var(--fs-17);
    line-height: 2.1;
    }
  #head .cont-ttl div h1{
    font-size: var(--fs-36);
    line-height: 1.1;
  }
  #head .cont-ttl div p{
    font-size: var(--fs-15);
    margin-top: 1.2rem;
  }
  #head .img-wrap02{
    width: 20%;
    position: absolute;
    bottom: 140px;
    right: 30px;
  }
}
@media screen and (max-width: 575px) {
  #head {
    padding-top: 60px;
  }
  #head .img-wrap01{
    top: -60px;
  }
  #head .cont-ttl{
    padding-left: 5%;
    margin-top: -130px;
  }
  #head .cont-ttl.flex-nml{
    display: block;
  }
  #head .cont-ttl img{
    width: 30%;
    height: auto;
    max-width: 150px;
    margin-left: -9%;
  }
  #head .cont-ttl div{
    margin: 0 0 0 20px;
  }
  #head .img-wrap02{
    width: 25%;
    position: absolute;
    bottom: 140px;
    right: 60px;
  }
  #head .img-wrap03 a{
    width: 30%;
    max-width: 150px;
    height: auto;
    position: absolute;
    bottom: 10px;
    right: -7%;
  }
}


/* ===== #PRO01 ===== */
#pro01{
  background: var(--color-white) url("/img/pro01_back.webp") no-repeat top center / cover;
}
#pro01 .pro01-img{
  position: relative;
  padding-top: 220px;
}
#pro01 .pro01-img img:nth-of-type(1){
  width: 468px;
  position: absolute;
  top: 60px;
  left: 0;  
}
#pro01 .pro01-img img:nth-of-type(2){
  width: 405px;
  position: absolute;
  top: -90px;
  right: 0;
  z-index: 2;
}
#pro01 .content-ttl{
  padding-left: 530px;
  padding-right: 123px;
  padding-bottom: 50px;
}
#pro01 .content-ttl h2{
  width: 100%;
  margin-bottom: 30px;
}
#pro01 .content-ttl p{
  border-left: 1px solid var(--color-black);
  padding: 15px 0 15px 45px;
}
#pro01 .pro01-inr{
  background: url("/img/pro01_back02.webp") no-repeat top right / 60% auto ;
  background-image: url('/img/pro01_03.webp'),url('/img/pro01_back02.webp'); 
  background-position: calc(50% - 580px) top, right top;
  background-repeat: no-repeat,no-repeat;
  background-size: 450px auto , 60% auto;
  overflow: hidden;
}
#pro01 .pro01-inr ul{
  display: flex;
  gap: 130px;
}
#pro01 .pro01-inr .txt{
  padding-left: 200px;
}
#pro01 .pro01-inr .txt h4{
  display: inline-block;
  font-size: var(--fs-70);
  font-family: var(--font-corm);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0px;
  ruby-align: center;
}
#pro01 .pro01-inr .txt h4 rt{
  font-size: var(--fs-19);
  font-family: var(--font-shippori);
  letter-spacing: 0.1em;
}
#pro01 .pro01-inr .txt span{
  font-size: var(--fs-30);
  font-family: var(--font-shippori);
  letter-spacing: 0;
  display: inline-block;
  margin-left: 10px;
}
#pro01 .pro01-inr .txt p{
  max-width: 460px;
  line-height: 2em;
}
#pro01 .pro01-inr .img{
  margin-top: 50px;
  max-width: 530px;
  text-align: center;
}
#pro01 .pro01-inr .img p{
  font-size: var(--fs-12);
  font-family: var(--font-shippori);
  margin-top: 10px;
  text-align: left;
}
#pro01 .pro01-inr .img a{
  display: inline-block;
  font-size: var(--fs-32);
  font-family: var(--font-corm);
  line-height: 1;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 10px 100px 15px;
  margin: 40px auto;
  position: relative;
  z-index: 2;
}
#pro01 .pro01-inr .ttl{
  position: relative;
  padding-bottom: 400px;
}
#pro01 .pro01-inr .ttl h3{
  font-size: var(--fs-40);
  font-family: var(--font-shippori);
  letter-spacing: 0.1em;
  padding-top: 50px;
}
#pro01 .pro01-inr .ttl img{
  position: absolute;
  bottom: 0;
  right: -150px;
  max-width: 600px;
}
@media screen and (max-width: 1190px) {
  #pro01 .pro01-inr{
    background-position: calc(50% - 580px) top, right top;
    background-size: 450px auto , 60% auto;
  }
  #pro01 .pro01-inr ul{
    gap: 100px;
  }
  #pro01 .pro01-inr .txt{
    padding-left: 150px;
  }
}
@media screen and (max-width: 960px) {
  #pro01 .content-ttl{
    padding-right: 50px;
  }
  #pro01 .pro01-img img:nth-of-type(1){
    width: 390px;
  }
  #pro01 .pro01-img img:nth-of-type(2){
    top: -70px;
    width: 360px;
  }
  #pro01 .content-ttl{
    padding-left: 450px;
  }
  #pro01 .pro01-inr{
    background-position: -80px top, right top;
    background-size: 300px auto , 60% auto;
  }
  #pro01 .pro01-inr ul{
    display: flex;
    gap: 100px;
  }
  #pro01 .pro01-inr .txt{
    padding-left: 50px;
  }
  #pro01 .pro01-inr .ttl{
    position: relative;
    padding-bottom: 350px;
  }
  #pro01 .pro01-inr .ttl img{
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  #pro01 .pro01-img{
    padding-top: 42%;
  }
  #pro01 .pro01-img img:nth-of-type(1){
    width: 46%;
    top: 50px;
  }
  #pro01 .pro01-img img:nth-of-type(2){
    width: 41%;
    top: 25px;
  }
  #pro01 .content-ttl{
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 30px;
  }
  #pro01 .content-ttl h2{
    max-width: 300px;
    margin-bottom: 20px;
  }
  #pro01 .content-ttl p{
    padding: 15px 0 15px 45px;
  }
  #pro01 .pro01-inr{
    background: url("/img/pro01_back02.webp") no-repeat top right / 60% auto ;
    background-image: url('/img/pro01_03.webp'),url('/img/pro01_back02.webp'); 
    background-position: -10% top, right top;
    background-size: 30% auto , 60% auto;
  }
  #pro01 .pro01-inr ul{
    display: block;
    gap: 0;
    padding-top: 15px;
  }
  #pro01 .pro01-inr .txt{
    padding-left: 0;
  }
  #pro01 .pro01-inr .txt p{
    max-width: 100%;
  }
  #pro01 .pro01-inr .img{
    margin-top: 30px;
    max-width: 100%;
    text-align: center;
  }
  #pro01 .pro01-inr .img img{
    max-width: 300px;
    display: inline-block;
    margin: auto;
  }
  #pro01 .pro01-inr .img p{
    text-align: center;
  }
  #pro01 .pro01-inr .ttl{
    position: relative;
    padding-bottom: 0;
  }
  #pro01 .pro01-inr .ttl h3{
    padding-top: 50px;
  }
  #pro01 .pro01-inr .ttl h3.v-txt {
    writing-mode: horizontal-tb;
  }
  #pro01 .pro01-inr .ttl img{
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 400px;
    margin-left: auto;
  }
}
@media screen and (max-width: 575px) {
  #pro01 .pro01-img{
    padding-top: 48%;
  }
  #pro01 .content-ttl h2{
    max-width: 200px;
  }
  #pro01 .content-ttl p{
    padding: 15px 0 15px 5%;
  }
  #pro01 .pro01-inr .txt h4{
    font-size: 42px;
  }
  #pro01 .pro01-inr .txt h4 rt{
    font-size: var(--fs-16);
    line-height: 1;
  }
  #pro01 .pro01-inr .txt span{
    font-size: var(--fs-20);
  }
  #pro01 .pro01-inr .img img{
    max-width: 250px;
  }
  #pro01 .pro01-inr .ttl{
    position: relative;
    padding-bottom: 0;
  }
  #pro01 .pro01-inr .ttl h3{
    padding-top: 30px;
  }
  #pro01 .pro01-inr .ttl h3{
    font-size: var(--fs-30);
    padding-top: 0;
  }
  #pro01 .pro01-inr .ttl img{
    width: 100%;
    margin-top: -20px;
    max-width: 350px;
  }
}


/* ===== #PRO02 ===== */
#pro02{
  background-image:
    url("/img/pro02_05.webp"),
    url("/img/pro02_04.webp"),
    url("/img/pro02_back.webp"); 
  background-position:
    calc(50% - 680px) calc(100% - 70px),
    calc(50% + 630px) 300px,
    top center;
  background-repeat: no-repeat,no-repeat,no-repeat;
  background-size: 498px auto,443px auto,cover;
  padding-top: 150px;
  z-index: 1;
}
#pro02 .ttl{
  padding: 0 80px 70px;
}
#pro02 .ttl h2{
  width: 100%;
  max-width: 405px;
  margin-bottom: 30px;
  margin-right: 50px;
}
#pro02 .ttl p{
  max-width: 530px;
  margin-top: 10px;
}
#pro02 ul{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
#pro02 ul li {
  flex: 1;
  background-color: transparent; 
  padding: 40px 40px 140px;
  position: relative; 
  z-index: 3; 
}
#pro02 ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
#pro02 ul li::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  z-index: -2;   
  background-image: url('/img/pro02_back02.webp');
  background-size: cover;
  background-position: center;
}
#pro02 ul li:nth-of-type(2){
  transform: translateY(50px);
}
#pro02 ul li:nth-of-type(3){
  transform: translateY(100px);
}
#pro02 ul li img{
  width: 120px;
  height: 120px;
  float: right;
}
#pro02 ul li h3{
  width: calc(100% - 135px);
  font-size: var(--fs-55);
  font-family: var(--font-shippori);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
}
#pro02 ul li h3 span{
  display: block;
  font-size: var(--fs-30);
  font-family: var(--font-corm);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-top: 15px;
  margin-bottom: 60px;
}
#pro02 ul li h4{
  font-size: var(--fs-30);
  font-family: var(--font-shippori);
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
#pro02 ul li .link{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#pro02 ul li .link a{
  display: inline-block;
  font-size: var(--fs-26);
  font-family: var(--font-corm);
  line-height: 1;
  padding: 10px 25px 15px;
  border: 1px solid var(--color-black)
}
#pro02 .txt{
  margin-top: 160px;
}
#pro02 .txt p{
  color: var(--color-gray);
  padding: 40px 80px 60px;
}
@media screen and (max-width: 1300px) {
  #pro02{
    background-position:
      calc(50% - 630px) calc(100% - 100px),
      calc(50% + 630px) 30px,
      top center;
    background-size: 498px auto,443px auto,cover;
  }
  #pro02 .ttl p{
    max-width: 100%;
  }
  #pro02 ul li h4{
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 1190px) {
  #pro02{
    background-position:
      calc(50% - 500px) calc(100% - 100px),
      calc(50% + 500px) 30px,
      top center;
    background-size: 400px auto,350px auto,cover;
  }
  #pro02{
    padding-top: 100px;
  }
  #pro02 ul{
    display: block;
    gap: 40px;
  }
  #pro02 ul li {
    margin-bottom: 50px;
    width: calc(100% - 100px);
    vertical-align: top;
    padding: 40px 40px 130px;
  }
  #pro02 ul li:nth-of-type(2){
  transform: translateY(0);
  transform: translateX(50px);
}
  #pro02 ul li:nth-of-type(3){
    transform: translateY(0);
    transform: translateX(100px);
  }
  #pro02 ul li img{
    float: left;
  }
  #pro02 ul li h3{
    display: inline-block;
    width: 100px;
    margin-left: 40px;
  }
  #pro02 ul li:nth-of-type(3) h3{
    width: 150px;
  }
  #pro02 ul li h3 span{
    margin-bottom: 40px;
  }
  #pro02 ul li h4{
    display: inline-block;
    vertical-align: top;
    margin-top: 15px;
  }
  #pro02 ul li:nth-of-type(3) h4{
    margin-top: 35px;
  }
  #pro02 ul li .pc-only{
    display: none;
  }
  #pro02 .txt{
    margin-top: 80px;
  }
}
@media screen and (max-width: 1030px) {
  #pro02 ul li:nth-of-type(2) h4{
    margin-top: 0;
  }
  #pro02 ul li:nth-of-type(2) .pc-only{
    display: inline-block;
  }
  #pro02 ul li:nth-of-type(3) h4{
    margin-top: 25px;
  }
  #pro02 ul li:nth-of-type(3) .pc-only{
    display: inline-block;
  }
}
@media screen and (max-width: 960px) {
  #pro02{
    background-position:
      calc(50% - 400px) calc(100% - 80px),
      calc(50% + 400px) 30px,
      top center;
    background-size: 400px auto,350px auto,cover;
  }
}
@media screen and (max-width: 768px) {
  #pro02{
    background-position:
      calc(50% - 300px) calc(100% - 50px),
      calc(50% + 400px) 30px,
      top center;
    background-size: 350px auto,350px auto,cover;
  }
  #pro02{
    padding-top: 50px;
  }
  #pro02 .ttl{
    padding: 0 5% 50px;
  }
  #pro02 .ttl h2{
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
    margin-right: 0;
  }
  #pro02 ul li {
    margin-bottom: 50px;
    width: calc(100% - 30px);
    vertical-align: top;
    padding: 30px 30px 100px;
  }
  #pro02 ul li:nth-of-type(2){
  transform: translateX(15px);
  }
  #pro02 ul li:nth-of-type(3){
    transform: translateX(30px);
  }
  #pro02 ul li img{
    width: 100px;
    height: 100px;
  }
  #pro02 ul li h3{
    display: inline-block;
    width: 80px;
    margin-left: 30px;
  }
  #pro02 ul li:nth-of-type(3) h3{
    width: 120px;
  }
  #pro02 ul li h3 span{
    margin-bottom: 30px;
  }
  #pro02 ul li h4{
    letter-spacing: 0.1em;
  }
  #pro02 ul li:nth-of-type(3) h4{
    margin-top: 25px;
  }
  #pro02 ul li .link{
    bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  #pro02{
    background-position:
      calc(50% - 180px) calc(100% - 10px),
      calc(50% + 200px) 10px,
      top center;
    background-size: 250px auto,250px auto,cover;
  }
  #pro02{
    padding-top: 30px;
  }
  #pro02 .ttl {
    padding: 0 5% 35px;
  }
  #pro02 .ttl h2{
    max-width: 200px;
  }
  #pro02 ul li {
    margin-bottom: 30px;
    width: 100%;
    padding: 20px 20px 80px;
  }
  #pro02 ul li::after {
    top: 10px;
    left: 10px;
  }
  #pro02 ul li:nth-of-type(2){
  transform: translateX(0);
  }
  #pro02 ul li:nth-of-type(3){
    transform: translateX(0);
  }
  #pro02 ul li img{
    float: right;
  }
  #pro02 ul li h3{
    margin-left: 0;
  }
  #pro02 ul li h3 span{
    margin-bottom: 15px;
    width: 200px!important;
  }
  #pro02 ul li h3 span .pc-only{
    display: none!important;
  }
  #pro02 ul li h4{
    letter-spacing: 0.1em;
    margin-top: 0!important;
    line-height: 150%;
  }
  #pro02 ul li .link{
    bottom: 23px;
  }
  #pro02 ul li .link a{
    font-size: var(--fs-20);
    padding: 7px 20px 12px;
  }
  #pro02 .txt{
    margin-top: 50px;
  }
  #pro02 .txt p{
    color: var(--color-gray);
    padding: 20px 0px 50px;
  }
}

/* ===== #ABOUT US ===== */
#abo{
  background: var(--color-white) url("/img/abo_back.webp") no-repeat top center / cover;
  padding: 100px 0 100px;
}
#abo .ttl h2{
  max-width: 600px;
}
#abo .txt{
  margin-top: 90px;
}
#abo .txt h3{
  font-size: var(--fs-16);
  font-family: var(--font-shippori);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
#abo .txt table{
  width: 100%;
  font-size: var(--fs-16);
  font-family: var(--font-shippori);
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
#abo .txt table th,
#abo .txt table td{
  padding: 15px 25px;
  border-top: 1px solid var(--color-gray);
}
#abo .txt table tr:last-of-type th,
#abo .txt table tr:last-of-type td{
  border-bottom: 1px solid var(--color-gray);
}

#abo .txt table th{
  white-space: nowrap;
  font-weight: 400;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  #abo .ttl h2{
    max-width: 50%;
  }
}
@media screen and (max-width: 960px) {
  #abo{
    padding: 80px 0 100px;
  }
  #abo .txt{
    margin-top: 60px;
  }
  #abo .txt table th,
  #abo .txt table td{
    border-top: 1px solid var(--color-higray);
  }
  #abo .txt table tr:last-of-type th,
  #abo .txt table tr:last-of-type td{
    border-bottom: 1px solid var(--color-higray);
  }
  #abo .txt table td{
    line-height: 170%;
  }
}
@media screen and (max-width: 575px) {
  #abo{
    padding: 50px 0 70px;
  }
  #abo .txt{
    margin-top: 30px;
  }
  #abo .txt table th,
  #abo .txt table td{
    padding: 10px 15px;
  }
  #abo .txt table td{
    padding-left: 5px;
  }
}

/* ===== #MENU ===== */
#menu{
}
#menu h2{
  margin-bottom: 80px;
}
#menu section{
  padding: 100px 0 120px;
}
#menu .ttl ul{
  max-width: 830px;
  margin: 0 auto 50px;
}
#menu .ttl ul li{
  width: 143px;
}
/*menu共通*/
#menu h3{
  font-size: var(--fs-60);
  font-family: var(--font-shippori);
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 5px 15px 15px 30px;
  border-left: 30px solid var(--color-black);
  margin-bottom: 30px;
}
#menu h3 span{
  display: inline-block;
  font-size: 50%;
  margin-left: 15px;
}
#menu .plans-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 23px;
}
#menu .plan-box {
  position: relative;
  background-color: var(--color-white);
  color: var(--color-gray);
}
#menu .plan-box:not(.rows) {
  grid-column: span 2;
}
#menu .plan-box h4{
  position: relative;
  font-size: var(--fs-24);
  font-family: var(--font-shippori);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 20px 30px;
  color: var(--color-black);
}
#menu .plan-box h4 span{
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: var(--color-white);
  padding: 2px 15px;
  border-radius: 50px;
  font-size: var(--fs-16);
}
#menu .plan-box .txt-box{
  padding: 30px 30px 90px;
  letter-spacing: 0.1em;
}
#menu .plan-box .txt-box h5{
  font-size: var(--fs-22);
  font-family: var(--font-shippori);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
#menu .plan-box .txt-box .price{
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-40);
  font-family: var(--font-shippori);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
}
#menu .plan-box .txt-box .price span{
  font-size: var(--fs-16);
}
#menu .plan-box ul{
  display: flex;
  align-items: flex-start;
}
#menu .plan-box ul li{
  display: inline-block;
}
#menu .plan-box ul li.img-box{
  width: 250px;
  margin: 30px 0 30px 30px;
  flex-shrink: 0;
}
#menu .plan-box ul li.txt-box{
  flex-grow: 1;
}
#menu .plan-box ul li.txt-box .price{
  text-align: right;
  padding-right: 25px;
}
/*1枠に2つ商品がある場合*/
#menu .plan-box .txt-box.two{
  padding-bottom: 30px;
}
#menu .plan-box .txt-box.two h5{
  margin-bottom: 20px;
}
#menu .plan-box .txt-box.two .price{
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  bottom: 0;
  left: 0;
  transform: translateX(0);
  text-align: right;
  padding-right: 0;
}
#menu .cap-box{
  margin-top: 20px;
}

@media (max-width: 960px) {
  #menu h2{
    margin-bottom: 50px;
  }
  #menu section{
    padding: 70px 0 80px;
  }
  #menu .ttl ul li{
    width: 125px;
  }
  #menu .plan-box {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  #menu h2{
    margin-bottom: 30px;
  }
  #menu section{
    padding: 50px 0 60px;
  }
  #menu .ttl ul{
    max-width: 830px;
    margin: 0 auto 30px;
  }
  #menu .ttl ul li{
    width: 100px;
  }
  #menu .plans-container {
    gap: 15px;
  }
  #menu h3{
    font-size: var(--fs-40);
    padding: 5px 15px 15px 20px;
    border-left: 20px solid var(--color-black);
    margin-bottom: 20px;
  }
  #menu .plans-container {
    gap: 15px;
  }
  #menu .plan-box h4{
    padding: 10px 25px;
  }
  #menu .plan-box .txt-box{
    padding: 15px 15px 60px;
  }
  #menu .plan-box .txt-box h5{
    margin-bottom: 10px;
  }
  #menu .plan-box .txt-box .price{
    bottom: 20px;
    font-size: var(--fs-30);
  }
  #menu .plan-box .txt-box .price span{
    font-size: var(--fs-14);
  }
  #menu .plan-box ul li.img-box{
    width: 150px;
    margin: 15px 0 15px 15px;
  }
  #menu .plan-box ul li.txt-box{
    flex-grow: 1;
  }
  #menu .plan-box ul li.txt-box .price{
    text-align: right;
    padding-right: 25px;
  }
}
@media screen and (max-width: 575px) {
  #menu .ttl ul li{
    width: 19%;
  }
  #menu .plan-box h4{
    font-size: var(--fs-17);
    padding: 10px 10px;
    letter-spacing: 0.05em;
  }
  #menu .plan-box h4 span{
    font-size: var(--fs-12);
    letter-spacing: 0;
    padding: 2px 10px;
    right: 5px;
  }
  #menu .plan-box .txt-box{
    padding: 15px 15px 55px;
  }
  #menu .plan-box .txt-box h5{
    font-size: var(--fs-20);
    letter-spacing: 0.05em;
    line-height: 140%;
  }
  #menu .plan-box ul{
    display: block;
  }
  #menu .plan-box ul li{
    display: block;
  }
  #menu .plan-box ul li.img-box{
    width: 150px;
    margin: 15px auto 0;
  }
  #menu .plan-box ul li.txt-box{
    flex-grow: 1;
  }
  #menu .plan-box ul li.txt-box .price{
    padding-right: 5px;
  }
}

/*ヘッド*/
#menu #m-01{
  background: var(--color-white) url("/img/m01_back.webp") no-repeat top center / cover;
}
#menu #m-01 .plan-box {
  border: 2px solid var(--color-pink-dark);
}
#menu #m-01 .plan-box h4{
  background: var(--color-pink);
}
#menu #m-01 .plan-box h4 span{
  color: var(--color-pink-dark);
}
/*フェイシャル*/
#menu #m-02{
  background-image:
    url("/img/m02_back02.webp"),
    url("/img/m02_back.webp"); 
  background-position:
    calc(50% - 510px) 65px,
    top center;
  background-repeat: no-repeat,no-repeat;
  background-size: 477px auto,cover;
}
#menu #m-02 .plan-box {
  border: 2px solid var(--color-blue-dark);
}
#menu #m-02 .plan-box h4{
  background: var(--color-blue);
}
#menu #m-02 .plan-box h4 span{
  color: var(--color-blue-dark);
}
/*クーポン新規*/
#menu #m-03{
  background: var(--color-white) url("../img/m03_back.webp") no-repeat top center / cover;
}
#menu #m-03 .plan-box {
  border: 2px solid var(--color-green-dark);
}
#menu #m-03 .plan-box h4{
  background: var(--color-green);
}
#menu #m-03 .plan-box h4 span{
  color: var(--color-green-dark);
}
/*クーポン全員*/
#menu #m-04{
  background: var(--color-white) url("../img/m04_back.webp") no-repeat top center / cover;
}
#menu #m-04 .plan-box {
  border: 2px solid var(--color-orange-dark);
}
#menu #m-04 .plan-box h4{
  background: var(--color-orange);
}
#menu #m-04 .plan-box h4 span{
  color: var(--color-orange-dark);
}
/*販売・ホームケア*/
#menu #m-05{
  background: var(--color-white) url("../img/m05_back.webp") no-repeat top center / cover;
}
#menu #m-05 .plan-box {
  border: 2px solid var(--color-yellow-dark);
}
#menu #m-05 .plan-box h4{
  background: var(--color-yellow);
}
#menu #m-05 .plan-box h4 span{
  color: var(--color-yellow-dark);
}
@media screen and (max-width: 960px) {
  #menu #m-02{
    background-position:
      calc(50% - 500px) 30px,
      top center;
    background-size: 350px auto,cover;
  }
}
@media screen and (max-width: 768px) {
  #menu #m-02{
    background-position:
      -25% 30px,
      top center;
  }
}
@media screen and (max-width: 575px) {
  #menu #m-02{
    background-position:
      -25% 0,
      top center;
    background-size: 250px auto,cover;
  }
}


/* ===== #Reservation ===== */
#res{
  position: relative;
  background: var(--color-white) url("/img/res_back.webp") no-repeat top center / cover;
  padding: 100px 0 100px;
}
#res .res-box1{
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-higray);
  padding: 70px 50px 50px;
}
#res .res-box1 h2{
  background: var(--color-white);
  position: absolute;
  top: -32px;
  right: 30px;
  padding: 5px 30px 15px;
  text-align: right;
  font-size: var(--fs-55);
  font-family: var(--font-corm);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
#res .res-box1 h2 span{
  display: block;
  font-size: var(--fs-16);
  letter-spacing: 0.05em;
}
#res .res-box1 ul li:first-of-type{
  width: 40%;
  font-family: var(--font-shippori);
}
#res .res-box1 ul li.map{
  width: 53%;
}
#res .res-box1 h4{
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-black);
}
#res .res-box1 h4 img{
  width: 100%;
  max-width: 322px;
}
#res .res-box1 .txt{
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  text-align: center;
}
#res .res-box1 .txt .address{
  font-size: var(--fs-12);
}
#res .res-box1 .txt .tel{
  font-size: var(--fs-30);
}
#res .res-box1 .line a{
  display: block;
  background: var(--color-black);
  padding: 10px;
  font-size: var(--fs-18);
  text-align: center;
  color: var(--color-white);
  vertical-align: middle;
}
#res .res-box1 .line img{
  display: inline-block;
  max-width: 37px;
  margin-right: 30px;
  vertical-align: middle;
}
#res .res-box1 .map > p{
  font-size: var(--fs-14);
  padding: 0 20px;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
#res .res-box1 .res-img{
  margin-top: 30px;
}
#res .res-box1 .res-img img{
  width: 48%;
}
#res .res-box2{
  position: relative;
  color: var(--color-white);  
  margin-top: 30px;
  z-index: 1;
}
#res .res-box2 a{
  display: block;
  background: url("/img/res02_back.webp") no-repeat top center / cover;
  padding: 15px;
}
#res .res-box2 a .link{
  border: 1px solid var(--color-white);
  padding: 80px 30px;
  text-align: center;
}
#res .res-box2 h4{
  font-size: var(--fs-45);
  font-family: var(--font-shippori);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#res .res-box2 h4 img{
  display: inline-block;
  width: 50px;
}
#res .res-box2 p{
  font-size: var(--fs-22);
  font-family: var(--font-shippori);
  text-align: center; 
}
#res .res-box2 .txt{
  display: inline-block;
  font-size: var(--fs-19);
  letter-spacing: 0.2em;
  padding: 0px 30px 5px;
  margin-top: 20px;
  border-radius: 50px;
  border: 1px solid var(--color-white);
}
#res .img{
  display: block;
  width: 470px;
  position: absolute;
  bottom: 30px;
  right: 0;
}
@media screen and (max-width: 960px) {
  #res .res-box1{
    padding: 50px 50px 50px;
  }
  #res .res-box1 .flex-btw{
    display: block;
    position: relative;
  }
  #res .res-box1 ul li:first-of-type{
    width: 100%;
  }
  #res .res-box1 ul li.map{
    width: 100%;
  }
  #res .res-box1 h4{
    padding-bottom: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  #res .res-box1 .txt{
    margin-bottom: 20px;
  }
  #res .res-box1 .map {
    margin-top: 40px;
  }
  #res .img{
    width: 300px;
  }
  #res .res-box1 .res-img img{
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  #res{
    padding: 50px 0 50px;
  }
  #res .res-box1{
    padding: 60px 20px 30px;
  }
  #res .res-box1 h2{
    top: -25px;
    right: 15px;
    padding: 5px 10px 15px;
    font-size: var(--fs-45);
    line-height: 1.2;
  }
  #res .res-box1 h4{
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #res .res-box1 h4 img{
    max-width: 300px;
  }
  #res .res-box1 .txt{
    margin-bottom: 20px;
  }
  #res .res-box2 a{
    padding: 10px;
  }
  #res .res-box2 a .link{
    padding: 50px 20px;
  }
  #res .res-box2 h4{
    gap: 20px;
  }
  #res .res-box2 h4 img{
    width: 40px;
  }
  #res .res-box2 p{
    font-size: var(--fs-18);
  }
  #res .res-box2 .txt{
    display: inline-block;
    font-size: var(--fs-16);
    letter-spacing: 0.2em;
    padding: 0px 20px 5px;
    margin-top: 20px;
  }
  #res .img{
    width: 250px;
    bottom: 10px;
  }
}


/* ===== footer ===== */
footer{
  background: var(--color-white) url("/img/foot_back.webp") no-repeat top center / cover;
  padding: 70px 30px;
}
footer ul li:first-of-type{
  width: 60%;
  font-family: var(--font-shippori);
}
footer h4{
  margin-bottom: 10px;
  font-weight: 600;
}
footer h4 img{
  width: 100%;
  max-width: 233px;
}
footer .txt{
  letter-spacing: 0.1em;
}
footer .txt .address{
  font-size: var(--fs-14);
}
footer .txt .tel{
  font-size: var(--fs-26);
  letter-spacing: 0.1em;
}
footer ul li.menu-list {
  width: 40%;
  border-left: 1px solid var(--color-black);
  padding: 0 0 0 40px;
}
footer .menu-list-container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  row-gap: 5px;
  column-gap: 5px;
}
footer .left-part {
  display: flex;
  align-items: center;
}
footer .eng {
  flex-shrink: 0;
  font-family: var(--font-corm);
  font-size: var(--fs-18);
  font-weight: 600;
}
footer .jap {
  grid-column: 2;
  text-align: left;
  font-size: var(--fs-12);
  letter-spacing: 0;
}
footer .line-filler {
  height: 1px;
  background-color: #333;
  margin: 0 10px; 
}
footer .line-filler.fill {
  flex-grow: 1;
}
footer .line-filler.short {
  width: 15px;
}
footer a.sns{
  display: inline-block;
  margin-top: 20px;
  margin-right: 5px;
}
footer a.sns img{
  width: 25px;
}
@media screen and (max-width: 1150px) {
  footer ul li:first-of-type{
    width: 50%;
  }
  footer ul li.menu-list {
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  footer ul li:first-of-type{
    width: 40%;
  }
  footer ul li.menu-list {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  footer ul li:first-of-type{
    width: 100%;
  }
  footer ul li.menu-list {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  footer{
    padding: 50px 30px;
  }
  footer ul li.menu-list {
    padding: 0 0 0 20px;
  }
  footer .eng {
    letter-spacing: 0.05em;
  }
  footer .line-filler {
    margin: 0 10px; 
  }
  footer .line-filler.fill {
    flex-grow: 1;
  }
  footer .line-filler.short {
    width: 15px;
  }
}


