@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ====================================================================
# 共通パーツ
==================================================================== */
@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.inner {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .section-subtitle {
    font-size: 14px;
  }
}

.section-title {
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.cta-button {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  background-color: #000;
  padding: 16px 24px;
  display: inline-block;
}
.cta-button::after {
  content: "";
  display: inline-block;
  background: url(../images/btn-arrow.svg) no-repeat center/cover;
  width: 7px;
  height: 11px;
  margin-left: 8px;
}

.sp-cta {
  position: fixed;
  z-index: 999;
  bottom: 0;
  height: 80px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  box-shadow: 2px 2px 10px rgba(171, 171, 171, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.sp-cta__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-cta__button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.05em;
  background-color: #000;
  padding: 14px 24px;
  display: inline-block;
  border-radius: 8px;
}
.sp-cta__button::after {
  content: "";
  display: inline-block;
  background: url(../images/btn-arrow.svg) no-repeat center/cover;
  width: 7px;
  height: 11px;
  margin-left: 8px;
}

.scroll-text {
  margin-top: 30px;
}
.scroll-text p {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .body {
    padding-bottom: 80px;
  }
}

/* ====================================================================
# header
==================================================================== */
.header {
  height: 60px;
  background-color: #fff;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
  z-index: 1000;
  position: fixed;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-right: 52px;
    padding-left: 15px;
  }
}

.header__inner.inner {
  max-width: 100%;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .header__inner.inner {
    padding: 0 15px;
  }
}

.header__logo-group {
  display: flex;
  margin-right: 36px;
  gap: 32px;
  z-index: 9999;
}

.header__logo-1 {
  max-width: 54px;
}

.header__logo-2 {
  max-width: 113px;
}

.header__nav {
  margin-left: auto;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  padding: 8px;
  margin: 0 6px;
  position: relative;
}

a.header__link--drop::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../images/drop-icon.png) no-repeat center/cover;
  width: 10px;
  height: 5px;
  left: -6px;
  transition: transform 0.3s;
}

a.header__link--drop:hover::before {
  transform: rotate(180deg);
}

a.header__link::after,
.drop-menu-item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -1px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

a.header__link:hover::after,
.drop-menu-item a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

@media screen and (max-width: 1160px) {
  .header__link {
    font-size: 1.2vw;
    padding: 0 12px;
  }
}
.header__actions {
  display: flex;
  justify-content: center;
  padding-left: 12px;
}
@media screen and (max-width: 1024px) {
  .header__actions {
    display: none;
  }
}

.header__action {
  text-align: center;
  color: #000;
  font-weight: 300;
  font-size: 14px;
}
.header__action span {
  font-size: 16px;
}

.header__action-button {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  padding: 14px 24px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .header__action-button {
    padding: 10px 24px;
  }
}

/* ドロップダウンメニュー
------------------------------------------------------------- */
/* メニューアイテムのホバースタイル */
.header__item:hover .drop-menu-list {
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s; /* アニメーション設定 */
  visibility: visible;
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}

.drop-menu-list {
  background-color: #fff;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  transition: opacity 0.3s, visibility 0.3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  padding: 24px 18px;
}

.drop-menu-item a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0;
  position: relative;
  padding: 8px;
}

.drop-menu-item:not(:first-child) {
  margin-top: 24px;
}

/* ====================================================================
# hamburger
==================================================================== */
.hamburger {
  position: fixed;
  z-index: 9999;
  top: 22px;
  right: 15px;
  width: 40px;
  height: 24px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}

.hamburger.is-active {
  top: 45px;
  right: 15px;
}

.hamburger span {
  background-color: #000;
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  transition: 0.3s transform, 0.3s background-color;
}

.hamburger-menu {
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 130%;
}

.hamburger.is-active span {
  background-color: #000;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: -15px;
  transform: rotate(-30deg);
}

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

.hamburger.is-active span:nth-child(3) {
  top: -15px;
  transform: rotate(30deg);
}

/* ====================================================================
# drawer-menu
==================================================================== */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  display: none;
  height: 100vh;
  width: 100%;
  background-color: #fff;
}

.drawer-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__link {
  color: #000;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  font-weight: 500;
  width: 240px;
  display: inline-block;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

.drawer__actions {
  margin-top: 32px;
  text-align: center;
}
.drawer__actions .header__action-button {
  padding: 12px 60px;
}
.drawer__actions .header__action-button.header__action-button--reservation {
  margin-top: 24px;
}

/* ====================================================================
# main contents
==================================================================== */
.main {
  position: relative;
}

.hero {
  background: url(../images/main-Image.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero {
    background: url(../images/main-image_sp.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    justify-content: center;
    height: calc(100vh - 250px);
  }
}

.hero__content {
  margin-top: 160px;
  margin-left: 30px;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .hero__content {
    margin-top: 500px;
    margin-left: 0;
  }
}

.hero__title {
  width: 286px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .hero__title {
    width: 200px;
  }
}

.hero__description {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 150%;
  letter-spacing: 0;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .hero__description {
    font-size: 20px;
    margin-top: 35px;
  }
}

/* event space
------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .event-space.section {
    padding-top: 35px;
  }
}

.event-space__inner {
  display: flex;
  gap: min(70px, 4.86vw);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .event-space__inner {
    flex-direction: column;
    gap: 70px;
  }
}

.event-space__content {
  flex: 1;
}

.event-space__description {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .event-space__description {
    font-size: 16px;
  }
}

.event-space__pricing-table {
  margin-top: 30px;
  border-collapse: collapse;
}

.event-space__pricing-header {
  border: 1px solid;
}
.event-space__pricing-header th {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  text-align: left;
  padding: 12px;
}

.event-space__day {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  border: 1px solid;
  background-color: #ECECEC;
  text-align: center;
  width: 230px;
}

.event-space__price {
  font-size: 28px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0;
  border: 1px solid;
  width: 370px;
  text-align: center;
  padding: 6px;
}
@media screen and (max-width: 768px) {
  .event-space__price {
    font-size: 24px;
  }
}
.event-space__price span {
  font-size: 14px;
  font-weight: 500;
}

.event-space__cta {
  margin-top: 36px;
}

.event-space__image {
  max-width: 520px;
}

/* access
------------------------------------------------------------- */
.access__group {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .access__group {
    margin-top: 50px;
  }
}

.access__content-title {
  text-align: center;
  color: #000;
  font-size: 40px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .access__content-title {
    font-size: 24px;
  }
}

.access__content {
  margin-top: 24px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .access__content {
    flex-direction: column;
    margin-top: 18px;
  }
}

.access__details {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .access__details {
    font-size: 16px;
  }
}

.access__location:not(:first-child) {
  margin-top: 30px;
}

.access__transport {
  margin-top: 30px;
}
.access__transport td {
  padding-right: 12px;
  padding-bottom: 6px;
}

.access__note {
  margin-top: 24px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .access__note {
    font-size: 14px;
  }
}

.access__map {
  max-width: 736px;
  flex: 2;
}
@media screen and (max-width: 768px) {
  .access__map {
    margin-top: 40px;
  }
}

.access__google-map {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .access__google-map {
    margin-top: 30px;
  }
}

.access__cta {
  text-align: center;
  margin-top: 80px;
}

/* furniture
------------------------------------------------------------- */
.furniture {
  position: relative;
}

.furniture::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: #000;
  width: 300px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.furniture__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 46px;
}
@media screen and (max-width: 768px) {
  .furniture__grid {
    margin-top: 40px;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}

.furniture__name {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .furniture__name {
    font-size: 16px;
  }
}

.furniture__small {
  text-align: center;
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 300;
  line-height: 150%;
}

.furniture__note {
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .furniture__note {
    margin-top: 40px;
    font-size: 16px;
    text-align: left;
  }
}

.furniture__cta-wrap {
  margin-top: 60px;
  text-align: center;
}

.furniture__cta-group-title {
  border-bottom: 1px solid #000;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0;
}

.furniture__cta-group {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .furniture__cta-group {
    flex-direction: column;
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .furniture__cta {
    margin-top: 40px;
  }
}

/* contact
------------------------------------------------------------- */
.contact {
  background-color: #F8F4ED;
}

.contact__description {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  text-align: center;
  padding-bottom: 60px;
}

.contact__form {
  max-width: 700px;
  margin: 0 auto;
}

/* faq
------------------------------------------------------------- */
.faq__items {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .faq__items {
    margin-top: 60px;
  }
}

.faq__item {
  margin-top: 32px;
  border-bottom: 1px solid #CACACA;
  padding-bottom: 32px;
}

.faq__question {
  font-size: 22px;
  font-weight: 700;
  line-height: 170%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .faq__question {
    font-size: 18px;
  }
}

.faq__icon {
  width: 40px;
  display: inline;
  margin-right: 16px;
}

.faq__answer {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
}
.faq__answer a {
  color: #0051FF;
  text-decoration: underline;
}

.faq__list {
  margin-top: 1em;
}

.faq__cta {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .faq__cta {
    margin-top: 60px;
  }
}

/* ====================================================================
# footer
==================================================================== */
.footer {
  padding: 60px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px;
  }
}

.footer__content {
  text-align: center;
}

.footer__copyright {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    gap: 24px;
  }
}

.footer__link {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  text-decoration: underline;
}

.footer__copyright {
  display: block;
  margin-top: 40px;
}

/* ====================================================================
# thanks page
==================================================================== */
.thanks {
  margin-top: 300px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks {
    margin-top: 200px;
  }
}

.thanks__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0.03em;
}

.thanks__top-link {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .thanks__top-link {
    margin-top: 30px;
  }
}

/* ====================================================================
# 追記 KYO用
==================================================================== */
/* lead
------------------------------------------------------------- */
.lead {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .lead {
    padding: 60px 0;
  }
}

.lead-logos__inner {
  display: flex;
  gap: 120px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .lead-logos__inner {
    flex-direction: column;
    gap: 55px;
  }
}

.lead-logos__mil {
  max-width: 492px;
}
@media screen and (max-width: 768px) {
  .lead-logos__mil {
    width: 80%;
    margin: 0 auto;
  }
}

.lead-logos__kyo {
  max-width: 565px;
}
@media screen and (max-width: 768px) {
  .lead-logos__kyo {
    width: 80%;
    margin: 0 auto;
  }
}

.lead-intro {
  margin-top: 60px;
}

.lead-intro__lead {
  color: #000;
  font-size: 40px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lead-intro__lead {
    font-size: 20px;
  }
}

.lead-intro__description {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lead-intro__description {
    font-size: 20px;
  }
}

.lead-intro__action {
  text-align: center;
  margin-top: 40px;
}

/* kyo-banner
------------------------------------------------------------- */
.kyo-banner__content {
  background-color: #fff;
  border: 1px solid;
  padding: 40px;
  display: flex;
  gap: 40px;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .kyo-banner__content {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }
}

.kyo-banner__image {
  max-width: 640px;
}

.kyo-banner__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .kyo-banner__details {
    gap: 30px;
  }
}

.kyo-banner__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .kyo-banner__title {
    font-size: 20px;
  }
}

.kyo-banner__logo {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .kyo-banner__logo {
    margin: 0 auto;
    width: 62%;
  }
}

/* features
------------------------------------------------------------- */
.features__inner {
  padding-top: 100px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .features__inner {
    gap: 60px;
    padding-bottom: 80px;
  }
}

.features__item {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .features__item {
    display: block;
  }
}

.features__item.features__item--reverse {
  flex-direction: row-reverse;
}

.features__text {
  flex: 1;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0;
}

.features__description {
  margin-top: 16px;
}

.features__title {
  font-size: 20px;
  font-weight: 700;
}

.features__media {
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .features__media {
    margin-top: 24px;
  }
}

/* facility
------------------------------------------------------------- */
.facility__big-logo {
  max-width: 727px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .facility__big-logo {
    width: 80%;
  }
}

.facility__big-logo-kyo {
  max-width: 470px;
  margin: 0 auto;
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .facility__big-logo-kyo {
    width: 60%;
    padding-top: 50px;
  }
}

.facility__group {
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .facility__group {
    padding: 80px 0;
  }
}

.facility__group.facility__group--first::before,
.facility__big-logo-kyo::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: #000;
  width: 300px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.facility__group.facility__group--second {
  background-color: #F8F4ED;
}

.facility__title {
  margin-top: 45px;
  color: #000;
  font-size: 32px;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .facility__title {
    font-size: 22px;
    margin-top: 30px;
  }
}

.facility__logo {
  margin: 100px auto 0;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .facility__logo {
    margin-top: 40px;
    width: 45%;
  }
}

.facility__logo.facility__logo--annex {
  margin-top: 0;
}

.facility__content {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .facility__content {
    display: block;
    margin-top: 40px;
  }
}

.facility__details {
  width: 100%;
  max-width: 460px;
}
@media screen and (max-width: 1024px) {
  .facility__details {
    margin: 60px auto 0;
  }
}

.facility__info-list {
  padding-bottom: 30px;
  border-bottom: 1px solid;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .facility__info-list {
    gap: 40px;
  }
}

.facility__info-item {
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .facility__info-item {
    font-size: 20px;
  }
}

.facility__features-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 37px 30px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .facility__features-list {
    margin-top: 30px;
    padding: 0;
    gap: 30px 20px;
  }
}

.facility__feature-item {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .facility__feature-item {
    font-size: 16px;
  }
}

.facility__icon {
  width: 34px;
  margin-right: 9px;
}
@media screen and (max-width: 768px) {
  .facility__icon {
    width: 26px;
  }
}

.facility__floor-plan {
  max-width: 968px;
  margin: 0 auto;
  text-align: center;
  margin-top: 54px;
}
.facility__floor-plan img {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .facility__floor-plan img {
    width: 100%;
  }
}

.facility__floor-plan--second {
  max-width: 968px;
  margin: 0 auto;
  text-align: center;
}

.facility__download-link {
  margin-top: 40px;
  display: inline-block;
}

.facility__comment {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0;
  margin-top: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .facility__comment {
    margin-top: 60px;
  }
}

.facility__main-image {
  max-width: 660px;
  width: 100%;
}

/* swiper customize
------------------------------------------------------------- */
.slider-thumbnail {
  margin-top: 4px;
}

.slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
  aspect-ratio: 65.8/43.86;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.slider-main .swiper-slide {
  aspect-ratio: 660/440;
}

/* price
------------------------------------------------------------- */
.price {
  background-color: #F8F4ED;
}

.price__sub-heading {
  color: #000;
  font-size: 40px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0;
  text-align: center;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .price__sub-heading {
    margin-top: 40px;
    font-size: 24px;
  }
}

.price__sub-heading--red {
  color: #C41616;
  font-size: 18px;
  font-weight: 700;
  line-height: 170%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__sub-heading--red {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .price__sub-heading--red span {
    font-size: 14px;
  }
}

.price__block {
  max-width: 800px;
  margin: 32px auto 0;
}
@media screen and (max-width: 768px) {
  .price__block {
    margin-top: 24px;
  }
}
.price__block:nth-of-type(2) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .price__block:nth-of-type(2) {
    margin-top: 40px;
  }
}

.price__table-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  padding: 10px 0;
  background-color: #555;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .price__table-title {
    font-size: 16px;
  }
}

.price__table {
  border-collapse: collapse;
}
.price__table th,
.price__table td {
  border: 1px solid;
  text-align: center;
  height: 80px;
}
.price__table th:first-child,
.price__table td:first-child {
  background-color: #ECECEC;
  width: 150px;
}
.price__table th:not(:first-child),
.price__table td:not(:first-child) {
  background-color: #fff;
  width: 326px;
}
.price__table th {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  .price__table th {
    font-size: 16px;
    padding: 4px;
  }
}

.price-table__header-main {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .price-table__header-main {
    font-size: 16px;
  }
}

.price-table__header-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .price-table__header-sub {
    font-size: 14px;
  }
}

.price-table__data {
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .price-table__data {
    font-size: 20px;
  }
}

.price-table__unit {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .price-table__unit {
    font-size: 14px;
  }
}

.price__notes {
  margin-top: 24px;
}
.price__notes li {
  text-indent: -1em;
  padding-left: 1em;
}
.price__notes li::before {
  content: "※";
}

.price__note {
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
}

.price__mil {
  margin-top: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
}

.price__cta {
  text-align: center;
  margin-top: 40px;
}

.price__gallery-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
  text-align: center;
  margin-top: 56px;
}

.price__reserve {
  max-width: 1000px;
  margin: 70px auto 0;
}

.price__reserve-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 170%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__reserve-title {
    font-size: 20px;
  }
}

.price__reserve-list {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}
.price__reserve-list li {
  text-indent: -1em;
  padding-left: 1em;
}
.price__reserve-list li::before {
  content: "・";
}

.early-pack {
  margin: 120px auto 0;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .early-pack {
    margin-top: 100px;
  }
}

.early-pack__title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 170%;
}

.table__container {
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
}

.early-pack-table {
  margin-top: 24px;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .early-pack-table {
    width: 800px;
  }
}
.early-pack-table th,
.early-pack-table td {
  border: 1px solid;
  text-align: center;
  height: 80px;
  background-color: #fff;
}
.early-pack-table th:first-child,
.early-pack-table td:first-child {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .early-pack-table th:first-child,
.early-pack-table td:first-child {
    width: auto;
  }
}
.early-pack-table th:not(:first-child),
.early-pack-table td:not(:first-child) {
  width: 376px;
}
@media screen and (max-width: 768px) {
  .early-pack-table th:not(:first-child),
.early-pack-table td:not(:first-child) {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .early-pack-table__body {
    width: 800px;
    overflow-x: scroll;
  }
}

.early-pack-table__label {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .early-pack-table__label {
    font-size: 18px;
  }
}

.early-pack-table__price {
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .early-pack-table__price {
    font-size: 20px;
  }
}

.early-pack-table__unit {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .early-pack-table__unit {
    font-size: 14px;
  }
}

.early-pack-table__note {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .early-pack-table__note {
    font-size: 16px;
  }
}

.early-pack-table__attention {
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  color: #C41616;
}

.early-pack__notes {
  margin-top: 20px;
}
.early-pack__notes li {
  text-indent: -1em;
  padding-left: 1em;
}
.early-pack__notes li::before {
  content: "※";
}

.early-pack__note {
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
}

.price__action {
  text-align: center;
  margin-top: 40px;
}