@charset "utf-8";

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
  padding: 0;
}
input,
textarea {
  margin: 0;
  font-size: 100%;
}
label {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
img {
  vertical-align: top;
  max-width: 100%;
  object-fit: cover;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:after,
q:before {
  content: "";
}
a,
input,
select,
textarea,
button {
  outline: none;
}
abbr,
acronym {
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
p {
  line-height: 200%;
  letter-spacing: 1.12px;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: normal;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}

a:hover {
  opacity: 0.8;
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: auto;
  font-size: 62.5%;
  scroll-padding-top: 122px;
  /* scroll-behavior: smooth; */
}
body {
  color: #1b1b1b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  -webkit-text-size-adjust: none;
  line-height: 150%;
  overflow: visible;
}
.inner {
  width: 104rem;
  max-width: calc(100% - 4.8rem);
  margin: 0 auto;
}
.inner.sm {
  width: 55.3rem;
}

.no_hover:hover {
  opacity: 1 !important;
  transform: none !important;
}

.layout {
  margin-top: 11.5rem;
  border-bottom: 1px solid #1b1b1b;
}

.title {
  font-family: "Nothing You Could Do", cursive;
  font-size: 11rem;
  line-height: 150%;
}

.title span {
  margin-left: -2.4rem;
}

.title_sub {
  font-family: "Ovo", serif;
  font-size: 8rem;
  line-height: 150%;
  display: flex;
  align-items: end;
  gap: 3.6rem;
  margin-bottom: 3.2rem;
}

.title_sub span {
  font-size: 1.6rem;
  margin-bottom: 2.6rem;
  line-height: 200%;
}

@media screen and (max-width: 767px) {
  .layout {
    margin-top: 8.2rem;
  }

  .title {
    font-size: 5.6rem;
  }

  .title span {
    margin-left: -1.5rem;
  }

  .title_sub {
    flex-direction: column;
    align-items: start;
    font-size: 4rem;
    gap: 0;
  }

  .title_sub span {
    font-size: 1.2rem;
  }
}

/*** pc 835px ~ 1100px ***/
@media screen and (min-width: 767px) and (max-width: 1200px) {
  html {
    font-size: calc(100vw / 120);
  }
}
/*** sp ***/
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 37.5);
  }
}
/*** pc ***/
@media screen and (min-width: 767px) {
  .sp {
    display: none;
  }
}
/*** sp ***/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

/* !header
---------------------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  font-family: "Ovo", serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3.2rem 1.6rem 3.6rem;
  background: transparent;
  z-index: 1000;
}

header .logo {
  width: 12rem;
  object-fit: contain;
  position: relative;
  z-index: 1001;
}

header .header_right {
  display: flex;
  gap: 3.2rem;
  align-items: center;
}

header nav ul {
  display: flex;
  font-size: 1.6rem;
  gap: 3.6rem;
  list-style: none;
}

header nav ul .has_image {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.js-link-text-wrapper .js-link-text img {
  margin-right: 0.4rem;
  vertical-align: middle;
  padding-bottom: 0.2rem;
}

.js-link-text-wrapper .js-link-text > div span {
  vertical-align: middle;
}

.js-link-text {
  position: relative;
  display: inline-block;
}

.menu_item_text {
  position: relative;
  display: inline-block;
}

.js-link-text-wrapper .js-link-text > div:nth-child(1) span {
  will-change: transform, opacity;
  transform-style: preserve-3d;
  transition: 0.6s;
  transition-delay: calc(0.02s * var(--index));
  transform-origin: bottom;
  display: inline-block;
  opacity: 1;
}

.js-link-text-wrapper .js-link-text > div:nth-child(2) span {
  will-change: transform, opacity;
  transform-style: preserve-3d;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(0.03ms * var(--index));
  transform-origin: top;
  display: inline-block;
  transform: translate3d(0, 100%, 0) rotateX(-90deg);
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .js-link-text-wrapper .js-link-text:hover > div:nth-child(1) span {
    transform: translate3d(0, -100%, 0) rotateX(-90deg);
    opacity: 0;
  }
  .js-link-text-wrapper .js-link-text:hover > div:nth-child(2) span {
    transform: translate3d(0, 0%, 0) rotateX(0deg);
    opacity: 1;
  }
}

.line_btn {
  background: #1b1b1b;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  padding: 1.6rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  width: fit-content;
}

.line_btn img {
  width: 2rem;
  height: 2rem;
}

.line_btn.sp {
  display: none;
}

/* ハンバーガーメニューとInstagramのコンテナ */
.mobile_controls {
  display: none;
  align-items: center;
  gap: 0.4rem;
  z-index: 1001;
}

.sp_instagram {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1rem;
  font-family: "Ovo", serif;
  line-height: 1;
}

.sp_instagram img {
  width: 1.4rem;
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 1rem 2.4rem;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hamburger span {
  width: 4rem;
  height: 0.1rem;
  background-color: #333;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(20deg) translate(2px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-20deg) translate(2px, -6px);
}

/* spメニュー */
.sp_menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 999;
  padding: 19rem 3rem 3rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp_menu.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.sp_menu nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.sp_menu nav ul li a {
  font-size: 3.2rem;
  text-decoration: none;
  color: #333;
  font-family: "Ovo", serif;
  line-height: 150%;
}

.sp_menu .mobile-line-btn {
  display: none;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
  header {
    padding: 1.6rem 0 1.6rem 1rem;
    height: 8.2rem;
  }

  header .logo {
    width: 7.6rem;
  }

  header .header_right {
    display: none;
  }

  .mobile_controls {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .sp_menu {
    display: block;
  }

  body.menu-open {
    overflow: hidden;
  }

  .line_btn.sp {
    display: block;
    position: fixed;
    z-index: 100;
    bottom: 1rem;
    right: 0;
    padding: 1.6rem 2rem;
    justify-content: center;
  }

  .line_btn.sp img {
    width: 1.85rem;
    height: 1.85rem;
  }
}

/* !kv
---------------------------------------------------------- */
.kv {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 11.5rem;
  position: relative;
}

.kv a {
  flex-shrink: 0;
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: bottom;
  font-family: "Nothing You Could Do", cursive;
  height: fit-content;
  width: 7%;
  margin-bottom: 17rem;
}

.kv .kv_slide {
  position: relative;
  width: 91.5%;
}

.kv img {
  width: 100%;
}

.kv_controls {
  position: absolute;
  bottom: 2.5rem;
  right: 4.2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem; /* ページネーションとボタンの間隔 */
  z-index: 10;
}

/* KVページネーション */
.kv_pagination {
  font-family: "Ovo", serif;
  font-size: 2.8rem;
  line-height: 150%;
  color: #fff; /* 写真に重なるので白色想定。必要に応じて調整 */
  display: none;
}

.kv_pagination .current {
  font-size: 4.8rem;
}

/* 再生/停止ボタン */
.kv_play_toggle {
  width: 3.6rem;
  height: 3.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
  flex-shrink: 0; /* ボタンが縮まないように */
}

.kv_play_toggle:hover {
  opacity: 0.7;
}

.kv_play_toggle img {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .kv {
    margin-top: 8.2rem;
    padding-top: 0.8rem;
  }

  .kv a {
    width: 7%;
    margin-bottom: 7rem;
  }

  .kv .kv_slide {
    aspect-ratio: 320/480;
    object-fit: cover;
    object-position: center;
    width: 85.5%;
  }

  .kv img {
    aspect-ratio: 320/480;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .kv_controls {
    bottom: 1rem;
    right: 2.3rem;
  }

  .kv_play_toggle {
    display: none;
  }

  .kv_pagination {
    font-size: 1.8rem;
  }

  .kv_pagination .current {
    font-size: 3.6rem;
  }
}

/* !top_info
---------------------------------------------------------- */
.top_info {
  padding: 6.4rem 0 12rem;
}

.top_info .info_box {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: #c92c2c;
  background: #ffe9e9;
}

.top_info .info_box p {
  line-height: 150%;
  letter-spacing: 1.12px;
  text-align: center;
}

.top_info .info_box .heed_heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .top_info {
    padding: 5.6rem 0 6.4rem;
  }

  .top_info .info_box {
    padding: 1.8rem 2rem;
    gap: 0.8rem;
  }

  .top_info .info_box .heed_text {
    text-align: start;
  }
}

/* !about
---------------------------------------------------------- */
.about {
  padding-bottom: 16rem;
}

.about .about_container {
  display: flex;
  justify-content: space-between;
}

.about .about_right {
  width: 53.2rem;
  padding-top: 10rem;
}

.about .about_right .about_heading {
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  margin-bottom: 2.4rem;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 8rem;
  }

  .about .about_container {
    flex-direction: column;
  }

  .about .about_right {
    width: 100%;
    padding-top: 2.4rem;
  }

  .about .about_right .about_heading {
    font-size: 2.4rem;
  }

  .about .about_right .about_text {
    line-height: 150%;
  }
}

/* !insert_slider
---------------------------------------------------------- */
.insert_slider.top {
  padding-bottom: 16rem;
}

.insert_slider.bottom {
  padding-bottom: 12rem;
}

.insert_slider {
  width: 100%;
  overflow: hidden;
}

.insert_slider .slick-slide {
  margin: 0 1.2rem;
  width: 342px !important;
  height: 456px !important;
  aspect-ratio: 342/456;
}

.insert_slider .slick-slide .slide_item > img {
  object-fit: cover;
  display: block;
}

.insert_slider .slick-prev,
.insert_slider .slick-next {
  display: none !important;
}

.insert_slider .slick-dots {
  display: none !important;
}

@media (max-width: 768px) {
  .insert_slider.top,
  .insert_slider.bottom {
    padding-bottom: 8rem;
  }

  .insert_slider .slick-slide {
    margin: 0 0.4rem;
  }

  .insert_slider .slick-slide {
    width: 160px !important;
    height: 213px !important;
    aspect-ratio: 160/213;
  }
}

/* !menu
---------------------------------------------------------- */
.menu {
  padding-bottom: 18rem;
  position: relative;
}

.menu .menu_container {
  overflow: visible !important;
}

.menu .menu_wrapper {
  display: flex;
  gap: 10rem;
  margin-top: 4.2rem;
  align-items: flex-start;
  position: relative;
}

.menu .menu_wrapper .menu_left {
  flex-shrink: 0;
  width: 28.4rem;
  position: sticky;
  top: 20rem;
  align-self: flex-start;
}

.menu .menu_wrapper .menu_left ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4.8rem;
  list-style: none;
  padding: 0;
  margin-top: 0;
}

.menu .menu_wrapper .menu_left ul li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Shippori Mincho";
  font-size: 1.8rem;
  letter-spacing: 0.18px;
  color: #949494;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu .menu_wrapper .menu_left ul li a.active {
  color: #1b1b1b;
}

.menu .menu_wrapper .menu_left ul li a span {
  font-family: "Ovo", serif;
  font-size: 1.2rem;
}

.menu .menu_wrapper .menu_left .benefits_info {
  background: #f5f5f5;
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0.96px;
  padding: 1.6rem 2rem;
  color: #5c5c5c;
}

.menu .menu_wrapper .menu_right {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  flex: 1;
  min-width: 0;
}

.menu .menu_wrapper .menu_right .menu_item {
  border-top: 1px solid #1b1b1b;
  padding-top: 6.4rem;
}

.menu_detail .menu_info {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.menu_detail .menu_info .menu_content {
  padding-bottom: 2.8rem;
  border-bottom: 1px solid #e8e8e8;
}

.menu_detail .menu_info .menu_content .menu_title {
  display: flex;
  gap: 1.3rem;
  align-items: end;
  margin-bottom: 0.4rem;
}

.menu_detail .menu_info .menu_content .menu_title .en {
  font-size: 3.2rem;
  font-family: "Ovo", serif;
}

.menu_detail .menu_info .menu_content .menu_title .ja {
  font-size: 1.4rem;
  letter-spacing: 0.14px;
  line-height: 150%;
  font-family: "Shippori Mincho", serif;
  padding-bottom: 0.3rem;
}

.menu_detail .menu_info .menu_content .menu_desc {
  letter-spacing: 1.12px;
}

.menu_detail .menu_info .menu_price {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 3rem;
}

.menu_detail .menu_info .menu_price p {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-size: 1.6rem;
  font-family: "Shippori Mincho";
  letter-spacing: 0.16px;
}

.menu_detail .menu_info .menu_price.new_born_price {
  margin-bottom: 0.8rem;
}

.menu_detail .menu_info .menu_price.new_born_price p {
  flex-direction: column;
  gap: 0.2rem;
  align-items: start;
}

.menu_detail .menu_info .announce {
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0.96px;
  text-align: center;
  margin-bottom: 2rem;
}

.menu_detail .menu_info .menu_price p .price {
  font-size: 3.2rem;
  font-family: "Ovo", serif;
}

.menu_detail .menu_info .menu_price p .tax {
  font-size: 1.2rem;
  line-height: 150%;
  padding-bottom: 1rem;
  position: relative;
  bottom: 0.3rem;
  left: 0.2rem;
  letter-spacing: 0.12px;
}

.menu_detail .menu_info .shooting_info {
  background: #f5f5f5;
  font-size: 1.2rem;
  line-height: 180%;
  letter-spacing: 0.96px;
  padding: 1.6em 2.4rem;
}

@media screen and (max-width: 767px) {
  .menu {
    padding-bottom: 8rem;
  }

  .menu .menu_wrapper .menu_left {
    display: none;
  }

  .menu .menu_wrapper {
    margin-top: 3.2rem;
  }

  .menu .menu_wrapper .menu_right {
    gap: 2.8rem;
  }

  .menu .menu_wrapper .menu_right .menu_item {
    border-top: none;
    border-bottom: 1px solid #e8e8e8;
    padding-top: 0;
    padding-bottom: 2.8rem;
  }

  .menu_detail .menu_info {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
  }

  .menu_detail .menu_info .menu_content .menu_title .en {
    font-size: 2.6rem;
    line-height: 150%;
  }

  .menu_detail .menu_info .menu_content .menu_title .ja {
    font-size: 1.2rem;
    letter-spacing: 0.12px;
    padding-bottom: 1rem;
  }

  .menu_detail .menu_info .menu_content .menu_desc {
    line-height: 180%;
  }

  .menu_detail .menu_info .menu_price {
    flex-direction: column;
    margin-bottom: 2.4rem;
    gap: 1rem;
  }

  .menu_detail .menu_info .menu_price p {
    gap: auto;
    justify-content: space-between;
    font-size: 1.4rem;
    letter-spacing: 0.14px;
  }

  .menu_detail .menu_info .menu_price p .price {
    font-size: 2.6rem;
    width: 15rem;
  }

  .menu_detail .menu_info .menu_price p .tax {
    font-size: 1rem;
    line-height: 150%;
    padding-bottom: 1rem;
    position: relative;
    bottom: 0.3rem;
    left: 0.2rem;
    letter-spacing: 0.12px;
  }

  .menu_detail .menu_info .shooting_info {
    padding: 1.6em 2rem;
  }

  .menu_detail .menu_info .menu_price.new_born_price p {
    flex-direction: row;
    align-items: center;
  }

  .menu_detail .menu_info .announce {
    text-align: start;
  }
}

/* メニュースライダー */
.menu_item {
  position: relative;
}

.menu_slider {
  position: relative;
}

.menu_slider .slide_item img {
  width: 100%;
  aspect-ratio: 655/436.67;
  object-fit: cover;
}

.menu_slider button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

/* ナビゲーションカスタマイズ */
.menu_slider .slick-prev,
.menu_slider .slick-next {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  z-index: 10;
  background: #1b1b1b;
  border-radius: 50%;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  position: absolute;
}

.menu_slider .slick-prev:hover,
.menu_slider .slick-next:hover {
  opacity: 0.8;
}

.menu_slider .slick-prev:before,
.menu_slider .slick-next:before {
  content: "";
  display: block;
  width: 1.82rem;
  height: 1.82rem;
  background-image: url("../image/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu_slider .slick-next:before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.menu_slider .slick-prev {
  left: 2.4rem;
}

.menu_slider .slick-next {
  right: 2.4rem;
}

.menu_slider .slick-disabled {
  opacity: 0.3;
}

/* カスタムページネーション */
.menu_slider .slick-dots {
  bottom: 2rem;
  right: 2rem;
  left: auto;
  width: auto;
  text-align: right;
}

.menu_slider .slick-dots li {
  display: none;
}

/* ページネーション表示用 */
.menu_item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.menu_pagination {
  font-family: "Ovo", serif;
  font-size: 2rem;
  z-index: 10;
  line-height: 150%;
  display: none;
}

.menu_pagination .current {
  font-size: 4rem;
}

/* メニュースライダー コントロール */
.menu_controls {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 10;
}

/* 再生/停止ボタン */
.menu_play_toggle {
  width: 3.2rem;
  height: 3.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.menu_play_toggle:hover {
  opacity: 0.7;
}

.menu_play_toggle img {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .menu_slider .slick-prev,
  .menu_slider .slick-next {
    display: none !important;
  }

  .menu_pagination {
    bottom: 2rem;
    right: 2rem;
    padding: 0;
    font-size: 1.4rem;
  }

  .menu_pagination .current {
    font-size: 2.6rem;
  }

  .menu_controls {
    padding: 1.8rem 2rem;
  }

  .menu_play_toggle {
    display: none;
  }
}

/* アコーディオン全体 */
.menu_spec {
  margin-top: 4rem;
}

.accordion_pc {
  display: block;
}
.accordion_sp {
  display: none;
}

/* ボタンエリア */
.accordion_buttons {
  display: flex;
  gap: 1.6rem;
  width: 100%;
}

/* ボタン共通スタイル */
.accordion_btn {
  display: flex;
  position: relative;
  padding: 1.6rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex: 1 0 0;
  align-self: stretch;
  cursor: pointer;
  transition: all 0.3s ease;

  /* 閉じている時のスタイル */
  border: 1px solid #1b1b1b;
  background: #fff;
  color: #1b1b1b;
  text-align: center;
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 1.12px;
}

/* 開いている時のスタイル */
.accordion_btn.active {
  background: #1b1b1b;
  border: none;
  color: #fff;
  border: 1px solid #1b1b1b;
}

/* プラス/マイナスアイコン */
.accordion_icon {
  position: absolute;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  top: 50%;
  right: 2.45rem;
  transform: translateY(-62%);
}

/* プラスアイコン(閉じている時) */
.accordion_icon::before,
.accordion_icon::after {
  content: "";
  position: absolute;
  background: #1b1b1b;
  transition: all 0.3s ease;
}

.accordion_icon::before {
  width: 1rem;
  height: 0.12rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion_icon::after {
  width: 0.12rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 開いている時のアイコン(マイナス) */
.accordion_btn.active .accordion_icon::before,
.accordion_btn.active .accordion_icon::after {
  background: white;
}

.accordion_btn.active .accordion_icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* アコーディオンコンテンツエリア */
.accordion_contents {
  width: 100%;
}

/* アコーディオンコンテンツ */
.accordion_content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.accordion_content.active {
  max-height: 120rem;
  opacity: 1;
  padding-top: 3.2rem;
}

/* テーブルのスタイル(必要に応じて調整) */
.accordion_content table {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .menu_spec {
    margin-top: 3.2rem;
  }

  /* SP用を表示、PC用を非表示 */
  .accordion_pc {
    display: none;
  }
  .accordion_sp {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .accordion_buttons {
    flex-direction: column;
  }

  .accordion_btn {
    width: 100%;
    font-size: 1.4rem;
    padding: 1.2rem 1.6rem;
  }

  .accordion_content.active {
    padding-top: 1.6rem;
  }

  .accordion_icon {
    right: 2rem;
    transform: translateY(-55%);
    width: 1rem;
    height: 1rem;
  }
}

/* 組み合わせ */
.combination_title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3.2rem;
}

.combination_detail {
  display: flex;
  gap: 4rem;
}

.combination_detail img {
  width: 50%;
  aspect-ratio: 307.5/203.58;
  object-fit: contain;
  height: fit-content;
}

.combination_detail ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 50%;
}

.combination_detail ul li {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d1d1d1;
}

.combination_detail ul li:last-of-type {
  border-bottom: none;
}

.combination_detail ul li .combination_heading {
  font-size: 1.6rem;
}

.combination_detail ul li .combination_total {
  font-size: 2rem;
}

.combination_detail ul li .combination_text {
  font-size: 1.2rem;
  letter-spacing: 0.96px;
}

@media screen and (max-width: 767px) {
  .combination_title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .combination_detail {
    flex-direction: column;
    gap: 1.8rem;
  }

  .combination_detail img {
    width: 100%;
  }

  .combination_detail ul {
    width: 100%;
  }

  .combination_detail ul li {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d1d1d1;
  }

  .combination_detail ul li .combination_total {
    font-size: 1.6rem;
  }

  .combination_detail ul li .combination_text {
    font-size: 1.2rem;
    letter-spacing: 0.96px;
  }
}

/* オプションテーブル */
.option_table {
  width: 100%;
  border-collapse: collapse;
  line-height: 150%;
  letter-spacing: 0.64px;
}

.option_table thead th {
  background: #1b1b1b;
  color: #fff;
  padding: 1.2rem 1.6rem;
  text-align: left;
  font-weight: 400;
  border: 1px solid #fff;
  vertical-align: middle;
  text-align: center;
}

.option_table tbody td {
  background: #f5f5f5;
  color: #1b1b1b;
  padding: 1.6rem;
  vertical-align: middle;
  border: 1px solid #fff;
}

/* 1列目(オプション名)の幅 */
.option_table thead th:nth-child(1),
.option_table tbody td:nth-child(1) {
  width: 30%;
}

/* 2列目(料金)の幅 */
.option_table thead th:nth-child(2),
.option_table tbody td:nth-child(2) {
  width: 18.5%;
}

/* 料金グループ */
.price_group {
  display: flex;
  flex-direction: column;
  margin: -2rem; /* セルのpaddingを相殺 */
}

.price_item {
  padding: 2rem; /* セルと同じpaddingを適用 */
  border-bottom: 1px solid #fff;
}

.price_item:last-child {
  border-bottom: none;
}

/* 3列目(備考)の幅 */
.option_table thead th:nth-child(3),
.option_table tbody td:nth-child(3) {
  width: 55%;
}

/* リンクスタイル */
.table_link {
  text-decoration: underline;
  color: #1b1b1b;
}

.table_link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .option_table {
    font-size: 1.2rem;
  }

  .option_table thead th,
  .option_table tbody td {
    padding: 1.2rem;
  }

  /* 1列目(オプション名)の幅 */
  .option_table thead th:nth-child(1),
  .option_table tbody td:nth-child(1) {
    width: 32%;
  }

  /* 2列目(料金)の幅 */
  .option_table thead th:nth-child(2),
  .option_table tbody td:nth-child(2) {
    width: 27%;
  }

  .price_group {
    margin: -1.2rem;
  }

  .price_item {
    padding: 1.2rem;
  }
}

/* !access
---------------------------------------------------------- */
.access {
  padding-bottom: 8rem;
}

.access .access_detail {
  display: flex;
  justify-content: space-between;
}

.access .access_detail .access_right {
  width: 58.5rem;
  padding-top: 10rem;
}

.access .access_detail .access_right ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.access .access_detail .access_right ul li {
  border-top: 1px solid #1b1b1b;
  padding: 2.4rem 1.6rem 0;
  font-size: 1.6rem;
}

.access .access_detail .access_right ul li:last-of-type {
  border-bottom: 1px solid #1b1b1b;
  padding-bottom: 2.4rem;
}

.access .access_detail .access_right ul li p {
  letter-spacing: 1.28px;
}

.google_map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  aspect-ratio: 600/250;
  width: 100%;
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .access .access_detail {
    flex-direction: column;
  }

  .access .access_detail .access_right {
    width: 100%;
    padding-top: 3.2rem;
  }

  .access .access_detail .access_right ul li {
    font-size: 1.4rem;
  }

  .access .access_detail .access_right ul li p {
    letter-spacing: 1.12p;
  }

  .google_map iframe {
    margin-top: 6rem;
    aspect-ratio: 376/400;
  }
}

/* !faq
---------------------------------------------------------- */
.faq {
  padding: 6rem 0 16rem;
}

.faq .faq_container {
  display: flex;
  justify-content: space-between;
}

.faq .faq_container .faq_right {
  padding-top: 10rem;
  width: 68.4rem;
}

.faq .faq_container .faq_right ul {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.faq .faq_container .faq_right ul li {
  padding: 3.2rem 1.6rem 0;
  border-top: 1px solid #1b1b1b;
}

.faq .faq_container .faq_right ul li:last-of-type {
  border-bottom: 1px solid #1b1b1b;
  padding-bottom: 3.2rem;
}

.faq .faq_container .faq_right ul li .question {
  display: flex;
  gap: 1.2rem;
  font-size: 1.6rem;
  line-height: 180%;
  letter-spacing: 1.28px;
  margin-bottom: 0.8rem;
}

.faq .faq_container .faq_right ul li .question span {
  font-family: "Ovo", serif;
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 0.1rem;
}

.faq .faq_container .faq_right ul li .answer {
  color: #737373;
  letter-spacing: 1.12px;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 0 0 8rem;
  }

  .faq .faq_container {
    flex-direction: column;
  }

  .faq .faq_container .faq_right {
    padding-top: 3.2rem;
    width: 100%;
  }

  .faq .faq_container .faq_right ul {
    gap: 2.4rem;
  }

  .faq .faq_container .faq_right ul li {
    padding: 2.4rem 1.6rem 0;
  }

  .faq .faq_container .faq_right ul li:last-of-type {
    padding-bottom: 2.4rem;
  }

  .faq .faq_container .faq_right ul li .question {
    margin-bottom: 1.2rem;
  }

  .faq .faq_container .faq_right ul li .answer {
    font-size: 1.4rem;
  }
}

/* !contact
---------------------------------------------------------- */
.contact {
  padding: 10rem 0 16rem;
  background: #f5f5f5;
}

.contact .contact_container {
  display: flex;
  justify-content: space-between;
}

.contact .contact_container .contact_right {
  width: 53.6rem;
  padding-top: 4.8rem;
}

.contact .contact_container .contact_right p {
  font-size: 1.6rem;
  letter-spacing: 1.28px;
  margin-bottom: 4.8rem;
}

.contact .contact_container .contact_right .contact_btns {
  display: flex;
  gap: 2.4rem;
}

.contact .line_btn,
.contact .tel_btn {
  width: 25.6rem;
  height: 6.4rem;
}

.contact .line_btn {
  font-size: 1.6rem;
  justify-content: center;
}

.contact .tel_btn {
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: start;
  white-space: nowrap;
  border: 1px solid #1b1b1b;
}

.contact .tel_btn .tel_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
}

.tel_btn .tel_text .number {
  font-family: "Ovo", serif;
  font-size: 2.2rem;
  line-height: 120%;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 8rem 0 10rem;
  }

  .contact .contact_container {
    flex-direction: column;
  }

  .contact .contact_container .contact_right {
    width: 100%;
    padding-top: 1.6rem;
  }

  .contact .contact_container .contact_right p {
    line-height: 180%;
    margin-bottom: 4rem;
  }

  .contact .contact_container .contact_right .contact_btns {
    flex-direction: column;
    gap: 1.6rem;
  }

  .contact .line_btn,
  .contact .tel_btn {
    width: 100%;
  }

  .contact .tel_btn {
    padding: 0 2.05rem;
    gap: 3.45rem;
    align-items: center;
  }

  .contact .tel_btn .tel_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
  }
}

/* !footer
---------------------------------------------------------- */
.footer_top {
  background: white;
  padding: 5.6rem 0 6.4rem;
  display: flex;
}

.footer_top .inner,
.footer_bottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_top .inner img {
  width: 16rem;
}

.footer_top .inner p {
  font-size: 1.2rem;
  line-height: 200%;
  letter-spacing: 0.96px;
}

.footer_bottom {
  background: #1b1b1b;
  color: #d1d1d1;
  padding: 1.6rem;
}

.footer_bottom .inner ul {
  display: flex;
  gap: 3.2rem;
}

.footer_bottom .inner .copyright {
  font-family: "Ovo", serif;
}

@media screen and (max-width: 767px) {
  .footer_top {
    padding: 4.8rem 0 5.6rem;
  }

  .footer_top .inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer_top .inner img {
    width: 10rem;
  }

  .footer_bottom {
    padding: 2.4rem 0;
    font-size: 1.2rem;
  }

  .footer_bottom .inner {
    flex-direction: column;
    gap: 1.2rem;
  }

  .footer_bottom .inner ul {
    gap: 2.4rem;
  }
}

/* !プラポリ,規約
---------------------------------------------------------- */
.lower-layer_container {
  padding: 6.4rem 0 12rem;
  line-height: 200%;
  letter-spacing: 1.12px;
}

.lead {
  margin-bottom: 7.2rem;
}

.list_layout {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
}

.list_layout .heading {
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 2rem;
}

.common_list li p {
  display: flex;
}

.common_list.second {
  margin-left: 1.2rem;
}

@media screen and (max-width: 767px) {
  .lower-layer_container {
    padding: 2rem 0 8rem;
  }

  .lead {
    margin-bottom: 4.8rem;
  }

  .list_layout {
    gap: 5.6rem;
  }

  .list_layout .heading {
    margin-bottom: 1.6rem;
  }
}

/* !404
---------------------------------------------------------- */
.not_found {
  margin-top: 11.5rem;
  padding: 12rem 0 16rem;
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  align-items: center;
}

.not_found h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not_found h1 p {
  font-family: "Ovo", serif;
  font-size: 6.4rem;
}

.not_found h1 span {
  font-size: 1.6rem;
}

.not_found .btn {
  display: inline-block;
  width: 32rem;
  padding: 1.6rem 0;
  border: 1px solid #1b1b1b;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .not_found {
    margin-top: 8.2rem;
    padding: 6.6rem 0 8cqw;

    gap: 3.6rem;
  }

  .not_found h1 p {
    font-size: 3.2rem;
  }

  .not_found h1 span {
    font-size: 1.2rem;
  }

  .not_found .btn {
    font-size: 1.4rem;
  }
}
