@charset "UTF-8";

/* パンくず 追加スタイル PC */
@media only screen and (min-width: 768px){
  .breadcrumb__list{
    padding-bottom: 1.6rem;
  }
}

.main-area {
  --color-text-primary: #3C3C3C;

  --font-hiragino-mincho: "hiragino-mincho-pron";
  --font-gilda-display: "Gilda Display";
  --font-barlow: "Barlow";

  --font-ja: var(--font-hiragino-mincho), serif;
  --font-en: var(--font-gilda-display), serif;

  --max-container-width: 1200px;

  overflow-x: clip;
  font-family: var(--font-ja);
  color: var(--color-text-primary);
  font-weight: 300;
  line-height: 2;
  font-feature-settings: normal;
}
.main-area picture {
  display: block;
}
.main-area img {
  width: 100%;
  height: auto;
}
/* テーマカラー設定 */
.section-body:nth-of-type(1) {
  --color-section-accent: var(--color-section-1-accent, var(--color-page-common));
}
.section-body:nth-of-type(2) {
  --color-section-accent: var(--color-section-2-accent, var(--color-page-common));
}
.section-body:nth-of-type(3) {
  --color-section-accent: var(--color-section-3-accent, var(--color-page-common));
}
.section-body:nth-of-type(4) {
  --color-section-accent: var(--color-section-4-accent, var(--color-page-common));
}
.section-body:nth-of-type(5) {
  --color-section-accent: var(--color-section-5-accent, var(--color-page-common));
}
.section-body:nth-of-type(6) {
  --color-section-accent: var(--color-section-6-accent, var(--color-page-common));
}

/* 上部コンテンツ */
.upper-area .upper-area__first-view {
  width: min(100%, 1400px);
  margin: 0 auto;
}
.upper-area .upper-area__lead-text {
  text-align: center;
}
.upper-area .upper-area__heading-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  line-height: 1.1;
}
.upper-area .upper-area__heading {
  font-family: var(--font-en);
  font-weight: 400;
  color: var(--color-upper-heading-accent, var(--color-page-common));
  letter-spacing: 0.03em;
}
.upper-area .upper-area__sub-heading {
  letter-spacing: 0.07em;
}

/* コンテンツ */
.section-wrapper {
  width: min(100%, var(--max-container-width));
  margin: 0 auto;
}
.section-body:nth-of-type(1) {
  padding-top: 0;
}
.section-main__lead {
  line-height: 2;
  letter-spacing: 0.07em;
}

.section-point__heading {
  padding: 0 var(--section-inline-padding, 0);
  font-family: var(--font-en);
  color: var(--color-section-accent);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
.section-point__body {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  display: flex;
  padding: 0 var(--section-inline-padding, 0);
}
.section-point__item {
  flex-shrink: 0;
}
.section-point__caption {
  line-height: 1.6;
  letter-spacing: 0.07em;
}

.section-body__detail {
  padding: 0 var(--section-inline-padding);
  font-family: var(--font-en);
}
.section-main-item__name {
  font-family: var(--font-ja);
  color: var(--color-section-accent);
  line-height: 1.5;
  letter-spacing: 0.07em;
}
.section-main-item__price {
  line-height: 1.2;
  letter-spacing: 0.07em;
}
.section-main-item__cta {
  display: grid;
  place-content: center;
  padding: 5px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: var(--color-section-accent);
}
.section-coordinate__heading {
  color: var(--color-section-accent);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
.section-coordinate__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.section-coordinate__item {
  line-height: 1.5;
  letter-spacing: 0.07em;
}
a.section-coordinate__item-inner {
  text-decoration: underline;
}

/* 下部コンテンツ */
.bottom-area {
  width: min(100%, 1000px);
  margin: 0 auto;
}
.bottom-area__buttons {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.bottom-area__button {
  display: grid;
  place-content: center;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.bottom-area__button--fill {
  color: var(--color-button-accent-foreground, var(--color-page-common-foreground, #fff));
  background-color: var(--color-button-accent, var(--color-page-common));
}
.bottom-area__button--outline {
  color: var(--color-button-accent, var(--color-page-common));
  background-color: var(--color-button-accent-foreground, var(--color-page-common-foreground, #fff));
  border: 1px solid currentColor;
}
.bottom-area__feature-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}
.bottom-area__feature-heading-ja,
.bottom-area__feature-heading-en {
  letter-spacing: 0.07em;
}
.bottom-area__feature-heading-en {
  font-family: var(--font-barlow), sans-serif;
  font-weight: 500;
}
.bottom-area__feature-list {
  display: grid;
}
.bottom-area__annotation {
  font-family: var(--hirakaku);
  line-height: 1.63;
  letter-spacing: 0.07em;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .main-area {
    --container-default: 100%;

    padding-bottom: calc(80 *(100vw / 375));
    font-size: calc(14 *(100vw / 375));
  }
  /* 上部コンテンツ */
  .upper-area .upper-area__lead-text {
    margin-top: calc(73 *(100vw / 375));
  }
  .upper-area .upper-area__heading-wrap {
    margin-top: calc(54 *(100vw / 375));
    gap: calc(10 *(100vw / 375));
  }
  .upper-area .upper-area__heading {
    font-size: calc(30 *(100vw / 375));
  }
  .upper-area .upper-area__sub-heading {
    font-size: calc(15 *(100vw / 375));
  }
  .upper-area__anchor-list {
    --gap-x: calc(3 *(100vw / 375));
    --gap-y: calc(20 *(100vw / 375));
  }
  .upper-area__anchor-item {
    gap: calc(8 *(100vw / 375));
  }
  .upper-area__anchor-item-heading {
    gap: calc(7 *(100vw / 375));
  }
  .upper-area__anchor-item-heading::before {
    font-size: calc(14 *(100vw / 375));
  }
  .upper-area__anchor-item-heading::after {
    width: calc(18 *(100vw / 375));
  }
  .upper-area__anchor-item-heading-en {
    font-size: calc(13 *(100vw / 375));
  }
  .upper-area__anchor-item-heading-ja {
    font-size: calc(10 *(100vw / 375));
  }

  /* コンテンツ */
  .section-wrapper {
    --section-inline-padding: calc(30 *(100vw / 375));
  }
  .section-body {
    padding: calc(40 *(100vw / 375)) 0;
  }
  .section-body:first-of-type {
    padding-bottom: calc(20 *(100vw / 375));
  }
  .section-wrapper {
    margin-top: calc(30 *(100vw / 375));
  }

  .section-main {
  
  }
  .section-main__image {
  
  }
  .section-main__lead {
    padding: 0 var(--section-inline-padding, 0);
    margin-top: calc(20 *(100vw / 375));
    font-size: calc(14 *(100vw / 375));
  }
  .section-sub {
    margin-top: calc(40 *(100vw / 375));
  }
  .section-sub[data-image-pattern="a"] figure:nth-of-type(1),
  .section-sub[data-image-pattern="a-reverse"] figure:nth-of-type(1) {
    width: calc(250 *(100vw / 375));
  }
  .section-sub[data-image-pattern="a"] figure:nth-of-type(2),
  .section-sub[data-image-pattern="a-reverse"] figure:nth-of-type(2) {
    width: calc(315 *(100vw / 375));
    margin-top: calc(20 *(100vw / 375));
  }
  .section-sub[data-image-pattern="a"] figure:nth-of-type(2),
  .section-sub[data-image-pattern="a-reverse"] figure:nth-of-type(1) {
    margin-left: auto;
  }
  .section-sub[data-image-pattern="b"] {
    padding: var(--section-inline-padding, 0);
  }

  .section-point {
    margin-top: calc(40 *(100vw / 375));
  }
  .section-point__heading {
    margin-bottom: calc(10 *(100vw / 375));
    font-size: calc(22 *(100vw / 375));
  }
  .section-point__body {
    gap: calc(15 *(100vw / 375));
  }
  .section-point__item {
    width: calc(240 *(100vw / 375));
  }
  .section-point__image {
  
  }
  .section-point__caption {
    margin-top: calc(15 *(100vw / 375));
    font-size: calc(13 *(100vw / 375));
  }

  .section-body__detail {
    margin-top: calc(40 *(100vw / 375));
  }
  .section-main-item__name {
    font-size: calc(20 *(100vw / 375));
  }
  .section-main-item__price {
    margin-top: calc(5 *(100vw / 375));
    font-size: calc(15 *(100vw / 375));
  }
  .section-main-item__cta {
    width: calc(160 *(100vw / 375));
    height: calc(35 *(100vw / 375));
    margin-top: calc(15 *(100vw / 375));
    font-size: calc(14 *(100vw / 375));
  }
  .section-coordinate {
    margin-top: calc(30 *(100vw / 375));
  }
  .section-coordinate__heading {
    margin-bottom: calc(10 *(100vw / 375));
    font-size: calc(16 *(100vw / 375));
  }
  .section-coordinate__list {
    gap: calc(12 *(100vw / 375));
  }
  .section-coordinate__item {
    font-size: calc(12 *(100vw / 375));
  }

  /* 下部コンテンツ */
  .bottom-area {
    margin-top: calc(40 *(100vw / 375));
    padding: 0 calc(15 *(100vw / 375));
  }
  .bottom-area__buttons {
    gap: calc(20 *(100vw / 375));
  }
  .bottom-area__button {
    width: calc(280 *(100vw / 375));
    height: calc(50 *(100vw / 375));
    font-size: calc(14 *(100vw / 375));
  }
  .bottom-area__feature {
    margin-top: calc(78 *(100vw / 375));
  }
  .bottom-area__feature-heading {
    gap: calc(8 *(100vw / 375));
  }
  .bottom-area__feature-heading::before {
    font-size: calc(24 *(100vw / 375));
  }
  .bottom-area__feature-heading-ja {
    font-size: calc(14 *(100vw / 375));
  }
  .bottom-area__feature-heading-en {
    font-size: calc(31 *(100vw / 375));
  }
  .bottom-area__feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(9 *(100vw / 375));
    margin-top: calc(30 *(100vw / 375));
  }
  .bottom-area__annotation {
    margin-top: calc(38 *(100vw / 375));
    font-size: calc(11 *(100vw / 375));
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .main-area {
    --container-default: 100rem;

    padding-bottom: 10rem;
    font-size: 1.4rem;
  }
  /* 上部コンテンツ */
  .upper-area .upper-area__lead-text {
    margin-top: 9.2rem;
  }
  .upper-area .upper-area__heading-wrap {
    margin-top: 7.5rem;
    gap: 1rem;
  }
  .upper-area .upper-area__heading {
    font-size: 4rem;
  }
  .upper-area .upper-area__sub-heading {
    font-size: 1.6rem;
  }
  .upper-area__anchor-list {
    --gap-x: 5rem;
    --gap-y: 3rem;
  }
  .upper-area__anchor-item {
    gap: 1.5rem;
  }
  .upper-area__anchor-item-heading {
    gap: 0.7rem;
  }
  .upper-area__anchor-item-heading::before {
    font-size: 2rem;
  }
  .upper-area__anchor-item-heading::after {
    width: 1.8rem;
  }
  .upper-area__anchor-item-heading-en {
    font-size: 2.4rem;
  }
  .upper-area__anchor-item-heading-ja {
    font-size: 1.2rem;
  }

  /* コンテンツ */
  .section-wrapper {
    --section-inline-padding: 0;
    margin-top: 4rem;
  }
  .section-body {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 6rem;
    padding: 7rem 0;
  }
  .section-body:first-of-type {
    padding-bottom: 3.6rem;
  }
  .section-body__gallery {
    flex-shrink: 0;
    width: 82rem;
  }
  .section-body__detail {
    position: sticky;
    top: calc(var(--headerHeight, 0px) + 10px);
    flex-shrink: 0;
    width: 32rem;
  }

  .section-main {
    width: 67.5rem;
    margin-left: auto;
  }
  .section-main__image {
  }
  .section-main__lead {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .section-sub {
    margin-top: 6rem;
  }
  .section-sub[data-image-pattern="a"],
  .section-sub[data-image-pattern="a-reverse"] {
    display: grid;
    grid-template-columns: 34rem minmax(0, 1fr);
    gap: 3rem;
  }
  .section-sub[data-image-pattern="b"] {
    width: 67.5rem;
    margin-left: auto;
  }

  .section-point {
    margin-top: 6rem;
  }
  .section-point__heading {
    margin-bottom: 1rem;
    font-size: 2.2rem;
  }
  .section-point__body {
    gap: 2rem;
  }
  .section-point__item {
    width: 26rem;
  }
  .section-point__image {
  
  }
  .section-point__caption {
    margin-top: 1.5rem;
    font-size: 1.3rem;
  }

  .section-main-item__name {
    font-size: 2rem;
  }
  .section-main-item__price {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
  .section-main-item__cta {
    width: 16rem;
    height: 3.5rem;
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
  .section-coordinate {
    margin-top: 5rem;
  }
  .section-coordinate__heading {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  .section-coordinate__list {
    gap: 1.2rem;
  }
  .section-coordinate__item {
    font-size: 1.2rem;
  }

  /* 下部コンテンツ */
  .bottom-area {
    margin-top: 3rem;
  }
  .bottom-area__buttons {
    gap: 2rem;
  }
  .bottom-area__button {
    width: 28rem;
    height: 5rem;
  }
  .bottom-area__feature-heading {
    margin-top: 8rem;
    gap: 0.8rem;
  }
  .bottom-area__feature-heading-ja {
    font-size: 1.4rem;
  }
  .bottom-area__feature-heading-en {
    font-size: 3.1rem;
  }
  .bottom-area__feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }
  .bottom-area__annotation {
    margin-top: 5.6rem;
    font-size: 1.1rem;
  }
}
