@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  /* ヘッダーの高さが66pxなら、それより少し多め（70px〜80px）に設定すると綺麗です */
  scroll-padding-top: 106px;
  scroll-behavior: smooth; /* ついでにこれを入れると、スッとなめらかに動きます */
}

body {
  margin: 0;
}

a {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

img {
  width: 100%;
  border-style: none;
}

li {
  list-style: none;
}

h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 2.4em;
}

a:hover {
  opacity: .8;
}

.w-container {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
}

main {
  background-color: #EEEEEE;
}

/* 消してる要素 */
.header, .sp-fixed-footer {
  display: none;
}

/* ヘッダー */
#header {
  width: 100%;
  height: 102px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background-color: #fff;
}

.header-container {
  width: 100%;
  height: 100%;
  margin-left: 40px;
  padding-right: 77px;
}

.header-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav, .header-nav ul, .header-link {
  display: flex;
  align-items: center;
}

.header-nav {
  gap: 30px;
}

.header-nav ul {
  gap: 38px;
}

.header-link {
  gap: 43px;
}

.header-logo {
  width: 205px;
  height: auto;
}

.header-nav ul li a {
  font-size: 16px;
  font-family: "EB Garamond", serif;
} 

.header-insta {
  width: 26px;
  height: 26px;
}

.header-tel a span {
  display: inline-block;
  font-size: 24px;
  font-family: "EB Garamond", serif;
  padding: 15px 21px;
  border: 1px solid #000;
}

/* トップ */
.main-v-box {
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow: hidden; /* 画像のはみ出し防止 */
  background-color: #000; /* 切り替え時の下地 */
}

.slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top; /* topよりcenter topが安定します */
  transition: opacity 1.5s ease-in-out; /* ここでフェード時間を制御 */
  z-index: 1;
}

/* クラスによる画像指定 */
.bg-0 { background-image: url('../image/main-img1.png'); }
.bg-1 { background-image: url('../image/main-img2.png'); }
.bg-2 { background-image: url('../image/main-img3.png'); }

.current { opacity: 1; z-index: 2; }
.next { opacity: 0; z-index: 1; }

.main-v-title h1 {
  position: absolute;
  bottom: 40%;
  right: 77px;
  font-size: 36px;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 2px;
}

.p1-a {
  background-image: url(../image/top-img1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.p1-a-box {
  padding: 76px 0 125px 140px;
}

.p1-a-h2 h2 {
  font-size: 36px;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 2px;
}

.p1-a-h3 {
  margin-top: 20px;
  margin-bottom: 30px;
}

.p1-a-h3 h3 {
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.p1-b-container {
  padding-top: 85px;
  padding-bottom: 107px;
}

.p1-b-item {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.p1-b-h2 {
  text-align: right;
  overflow: hidden;
}

.p1-b-h2 h2 {
  color: #F5F5F5;
  font-size: 96px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-right: -10px;
}

.p1-b-span {
  display: inline-block;
  padding: 6px 20px;
  border-top: 1px solid #A1A1A1;
  border-bottom: 1px solid #A1A1A1;
}

.p1-b-span span {
  color: #A1A1A1;
  font-family: "EB Garamond", serif;
}

.p1-b-span .feature-text {
  font-size: 20px;
  vertical-align: 5px;
}

.p1-b-span .number-text {
  font-size: 40px;
}

.p1-b-h3 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p1-b-h3 h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.8em;
}

.p1-b-right {
  position: relative;
}

.p1-b-img {
  max-width: 622px;
  height: auto;
  padding-top: 40px;
}

.p1-b-box .p1-b-item-reverse {
  flex-direction: row-reverse;
  padding-top: 87px;
  padding-bottom: 87px;
}

.p1-b-item-reverse .p1-b-right-span {
  bottom: 10px;
  left: -50px;
}

.p1-b-item:last-child .p1-b-right-span {
  bottom: -10px;
  right: 10px;
}

.p1-b {
  padding-top: 66px;
}

.p1-c {
  padding-bottom: 134px;
}

.p1-c-h2 {
  text-align: center;
}

.p1-c-h2 h2, .p1-d-h2 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 36px;
  font-family: "EB Garamond", serif;
  font-weight: 500;
}

/* ビフォー（左側）の画像 */
.p1-c-h2 h2::before, .p1-d-h2 h2::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 8px;
  background-image: url('../image/top-img11.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* アフター（右側）の画像 */
.p1-c-h2 h2::after, .p1-d-h2 h2::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 8px;
  background-image: url('../image/top-img12.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.p1-c-h3-img {
  height: auto;
  padding-top: 62px;
  margin-left: auto;
  margin-right: auto;
}

.c1 {
  width: 330px;
}

.c2 {
  width: 273px;
}

.c3 {
  width: 299px;
}

.c4 {
  width: 422px;
}

.c5 {
  width: 429px;
}

.c6 {
  width: 277px;
}

.p1-c-table {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.p1-c-menu-item td {
  padding-top: 42px;
}

.p1-c-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 40px 15px 15px;
  border-bottom: 1px solid #A1A1A1;
}

.p1-c-menu-title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
}

.p1-c-menu-price {
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
}

/* 説明文の設定 */
.p1-c-menu-description {
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.6em;
  padding-top: 24px;
  /* padding-bottom: 10px; */
}

.p1-d {
  background-image: url(../image/top-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-d-container {
  padding-top: 80px;
  padding-bottom: 170px;
}

.p1-d-gallery {
  display: grid;
  /* 横4列固定、各239px */
  grid-template-columns: repeat(4, 239px);
  /* 隙間15px */
  gap: 15px;
  /* 中央寄せ */
  justify-content: center;
  /* 上下に少し余白が必要な場合 */
  margin: 46px auto 0;
}

.p1-d-gallery-item {
  width: 239px;
  height: 319px;
  overflow: hidden;
}

.p1-d-gallery-item img {
  width: 100%;
  height: 100%;
  /* 指定サイズ（239x319）に合わせて画像を切り抜き表示 */
  object-fit: cover;
  display: block;
}

.p1-e-box {
  display: flex;
}

.p1-e-map, .p1-e-table {
  flex: 1;
}

.p1-e-map iframe {
  width: 100%;
  height: 100%;
}

.p1-e-table {
  background-color: #333333;
  padding: 40px 0px 64px;
}

.p1-e-table table {
  max-width: 684px;
  margin-left: auto;
  margin-right: auto;
}

.p1-e-table tr th, .p1-e-table tr td {
  color: #fff;
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  padding-top: 23px;
  padding-bottom: 23px;
  border-bottom: 1px solid #A1A1A1;
}

.p1-e-table tr th {
  width: 26%;
  text-align: left;
  padding-left: 64px;
}

/* フッター */
.footer-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-logo {
  width: 205px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.footer-tel {
  text-align: center;
}

.footer-tel a {
  display: inline-block;
  font-size: 24px;
  font-family: "EB Garamond", serif;
  padding: 15px 21px;
  border: 1px solid #000;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding-top: 25px;
  padding-bottom: 50px;
}

.footer-nav ul {
  display: flex;
  gap: 35px;
}

.footer-nav ul li, .copy-right p {
  font-family: "EB Garamond", serif; 
}

.copy-right {
  text-align: center;
}

.top-botan {
  width: 43px;
  height: 43px;
  position: fixed;
  bottom: 80px;
  right: 42px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* スクロールした時に追加するクラス */
.top-botan.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1100px) {
  /* トップ */
  .p1-d-gallery {
    /* ここで3列に変更 */
    grid-template-columns: repeat(3, 239px);
  }

}


@media screen and (max-width: 930px) {
  /* ヘッダー */


  #header {
    display: none;
  }

  /* ハンバーガーメニュー */
  .header {
    display: block;
  }
  .hamburger {
    display: block;
    height: 36px;
    position: relative;
    z-index: 1300;
    width: 36px;
    border: none;
    background-color: #fff;
  } 
  .hamburger.-active .hamburger__line {
      background-color: transparent;
  }
  .hamburger.-active .hamburger__line::before {
      top: 0;
      transform: rotate(45deg);
  }
  .hamburger.-active .hamburger__line::after {
      top: 0;
      transform: rotate(-45deg);
  }
  .hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 17.5px; 
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: #000;
    transition: 0.4s;
  }
  .hamburger__line:before,
  .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #000;
    transition: inherit;
  }
  .hamburger__line:before {
    top: -6px;
  }
  .hamburger__line:after {
    top: 6px;
  }
  .hamburger__text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .header {
    width: 100vw;
    height: 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    position: fixed;
    z-index: 1200; /* 他のコンテンツの上に表示させる */
    padding-left: 16px;
    padding-right: 16px;
  }
  .header .header-logo {
    width: 153px;
    height: 66px;
  }
  .header__nav-area {
    position: fixed;
    top: 65px;
    left: -100%;
    z-index: 1150;
    height: 340px;
    width: 100vw;
    visibility: hidden;
    padding-top: 13px;
    background-color: #fff;
    transition: 0.4s;
  }
  .header__nav-area.-active {
    left: 0;
    visibility: visible;
  }
  .global-navigation__list li {
    font-family: "EB Garamond", serif; 
    padding-top: 35px;
  }

  .global-navigation__link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    transition: color 0.4s;
    font-size: 16px;
  }
  .global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
  }
  .global-navigation__link.-accordion::after {
    content: '';
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    background-color: #ed3242;
    transform: translateY(-50%);
    transition: transform 0.4s;
  }
  .global-navigation__link.-accordion::before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    background-color: #ed3242;
    transform: translateY(-50%);
      
  }
  .global-navigation__link.-active::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
  }
  .accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
  }
  .accordion__list li {
    font-size: 0.75rem;
  }
  .accordion__list li + li {
    margin-top: 21px;
  }
  .accordion__link {
    color: #172e59;
  }

  /* トップ */
  .p1-e-box {
    flex-direction: column-reverse;
  }

  .p1-e-table {
    padding-left: 4%;
    padding-right: 4%;
  }

  .p1-e-map iframe {
    height: 330px;
  }

}

@media (max-width: 768px) {
  /* 全体 */
  html {
    scroll-padding-top: 70px;
  }

  p {
    letter-spacing: 0;
    line-height: 2em;
  }

  .w-container {
    width: 92%;
    margin-left: 4%;
    margin-left: 4%;
  }

  .br {
    display: none;
  }

  /* .sp-br {
    display: block;
  } */

  /* トップ */
  .bg-0 { background-image: url('../image/sp-main-img1.png'); }
  .bg-1 { background-image: url('../image/sp-main-img2.png'); }
  .bg-2 { background-image: url('../image/sp-main-img3.png'); }

  .main-v-title h1 {
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-size: 32px;
    letter-spacing: 0px;
  }

  .p1-a {
    background-position: 75% center; 
  }

  .p1-a-box {
    padding: 50px 4%;
  } 

  .p1-a-h2, .p1-a-h3 {
    text-align: center;
  }

  .p1-a-h3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .p1-b {
    padding-top: 30px;
  }

  .p1-b-h2 h2 {
    font-size: 40px;
    margin-right: -20%;
  }

  .p1-b-container {
    padding-top: 0;
    padding-bottom: 70px;
  }

  .p1-b-item {
    flex-direction: column;
    align-items: center;
    gap: 23px;
    padding-top: 20px;
  }

  .p1-b-box .p1-b-item-reverse {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .p1-b-left {
    text-align: center;
  }

  .p1-b-h3 {
    padding-bottom: 16px;
  }
  
  .p1-b-h3 h3 {
    font-size: 20px;
  }

  .p1-b-p {
    text-align: left;
  }

  .p1-b-img {
    width: 100%;
    padding-top: 0;
  }

  .p1-c {
    padding-bottom: 64px;
  }

  .p1-c-h3-img {
    padding-top: 23px;
  }

  .p1-c-menu-item td {
    padding-top: 23px;
  }

  .p1-c-menu-header {
    padding: 0 10px 6px;
  }

  .p1-c-menu-title {
    font-size: 16px;
  }

  .p1-c-menu-price {
    font-size: 16px;
  }

  .p1-c-menu-description {
    font-size: 12px;
    padding-top: 10px;
  }

  .c1 {
    width: 230px;
  }

  .c2 {
    width: 180px;
  }

  .c3 {
    width: 180px;
  }

  .c4 {
    width: 274px;
  }

  .c5 {
    width: 290px;
  }

  .c6 {
    width: 189px;
  }

  .p1-d-container {
    padding-bottom: 80px;
  }

  .p1-d-gallery {
    grid-template-columns: repeat(2, 162px);
    gap: 12px;
    margin-top: 32px;
  }

  .p1-d-gallery-item {
    width: 162px;
    height: 216px;
  }

  .p1-e-table tr th, .p1-e-table tr td {
    display: block;
  }

  .p1-e-table tr th {
    width: 100%;
    border: none;
    padding: 20px 0 10px;
  }

  .p1-e-table tr td {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .p1-e-td span{
    display: block;
    padding-bottom: 4px;
  }

  .p1-e-td span:last-child {
    padding-bottom: 0;
  }

  .p1-e-table tr .p1-e-table {
    padding-top: 18px;
    padding-bottom: 36px;
  }

  /* フッター */
  .footer-container {
    padding: 36px 4% 46px;
    margin-bottom: 96px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
    row-gap: 15px;
  }

  .sp-fixed-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 96px;
    background-image: url(../image/top-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2000;
  }
  
  .sp-fixed-footer__item img {
    width: 43px;
    height: 43px;
    object-fit: contain;
  }

  .top-botan {
    bottom: 106px;
  }

}