:root {
  --color-text: #222;
  --color-heading: #183254;
  --color-heading-en: #c7ced8;
  --color-accent: #8e743c;
  --color-accent-light: #e0c894;
  --color-line: #35a62d;
  --font-ja: "Noto Serif JP", serif;
  --content-width: 1000px;
  --side-padding: 24px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: #fff;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - (var(--side-padding) * 2)), var(--content-width));
  margin-inline: auto;
}

.container--narrow {
  max-width: 900px;
}

.container--form {
  max-width: 860px;
}

.section {
  position: relative;
}

.section--light {
  background: #f9f9f9;
}

.section--dark {
  color: #fff;
  background-color: var(--color-heading);
}

.section-heading {
  color: var(--color-heading);
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading--light {
  color: #fff;
}

.section-heading__title {
  margin-bottom: 2px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.45;
}

.section-heading__en {
  margin-bottom: 0;
  color: var(--color-heading-en);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.section-lead {
  margin-bottom: 0;
  text-align: center;
}

.line-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 61px;
  margin-inline: auto;
  padding: 9px 18px 9px 18px;
  border: 1px solid #707070;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(#43b43a, #258d22);
  box-shadow: 0 2px 5px rgb(0 0 0 / 25%);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .04em;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .31);
}

.line-button::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 6px;
  background: linear-gradient(0deg,
      #EBCF93 0%,
      #CCAB65 50%,
      #EFE4CC 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.line-button__icon {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin-right: 13px;
  place-items: center;
  border-radius: 50%;
  color: #269523;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.line-button__arrow {
  margin-left: auto;
}

.line-button small {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

/* First view */
.hero {
  position: relative;
  height: 768px;
  overflow: hidden;
  color: #fff;
  background: #041124;
}

.hero__visual {
  position: relative;
  width: min(100%, 1366px);
  height: 768px;
  margin-inline: auto;
  background: url("../img/mv.webp") center top / 1366px 768px no-repeat;
}

.hero__logo {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 34px;
  width: 112px;
}

.hero__landmark {
  position: absolute;
  z-index: 2;
  top: 165px;
  left: 62px;
  width: 150px;
}

.hero__architect-sign {
  position: absolute;
  z-index: 2;
  top: 409px;
  right: 37px;
  width: 93.42px;
}

.hero__title {
  position: absolute;
  z-index: 2;
  top: 27px;
  left: 50%;
  width: 605px;
  margin: 0;
  transform: translateX(-29%);
}

.hero__title img {
  width: 100%;
}

.hero__points {
  position: absolute;
  z-index: 2;
  top: 535px;
  left: calc(50% - 500px);
  width: 762px;
}

.hero__points--sp {
  display: none;
}

.hero__offer {
  position: absolute;
  z-index: 3;
  top: 493px;
  right: max(24px, calc(50% - 500px));
  width: 300px;
}

.hero__present {
  width: 258px;
  margin: 0 auto 9px;
}

.line-button--hero {
  width: 300px;
  min-height: 60px;
  padding-inline: 10px;
  font-size: 16px;
}

.line-button--hero .line-button__icon {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  margin-right: 8px;
}

.line-button--hero small {
  font-size: 12px;
}

.hero__notes {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: calc(50% - 500px);
  width: 690px;
  margin-bottom: 0;
  font-size: 9px;
  line-height: 1.5;
}

.hero__footer {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.hero__footer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

/* Recommend */
.recommend {
  min-height: 830px;
  padding: 40px 0 70px;
  background: #fff url("../img/recommend_bg.webp") center top / cover no-repeat;
}

.recommend__banner {
  width: 1000px;
  margin-bottom: 57px;
}

.recommend .section-heading {
  margin-bottom: 30px;
}

.recommend .section-lead {
  margin-bottom: 22px;
}

.recommend__list {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}

.recommend__list li+li {
  margin-top: 5px;
}

/* Value */
.value {
  min-height: 768px;
  background: var(--color-heading) url("../img/value_bg.webp") center / cover no-repeat;
}

.value__inner {
  min-height: 768px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.value__content {
  width: 570px;
  padding: 50px 0 38px;
}

.value h2 {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.45;
}

.value h3 {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.value h4 {
  margin: 28px 0 12px;
  color: var(--color-accent-light);
  font-size: 20px;
  font-weight: 500;
}

.value p {
  margin-bottom: 0;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 2;
}

/* Strengths */
.strengths {
  min-height: 665px;
  padding: 80px 0 72px;
  background: #fff url("../img/strengths_bg.webp") center / cover no-repeat;
}

.strengths .section-heading {
  margin-bottom: 28px;
}

.strengths .section-lead {
  margin-bottom: 45px;
}

.strengths__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 0;
  text-align: center;
}

.strengths__list img {
  margin: 0 auto 17px;
}

.strengths__list h3 {
  min-height: 58px;
  margin-bottom: 13px;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.strengths__list p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.75;
  text-align: left;
}

/* Overview */
.overview {
  min-height: 870px;
  padding: 76px 0 70px;
}

.overview .section-heading {
  margin-bottom: 30px;
}

.overview .section-lead {
  margin-bottom: 32px;
}

.overview__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 15px;
}

.overview__table th,
.overview__table td {
  padding: 11px 18px;
  border-bottom: 1px solid #d6d6d6;
  vertical-align: top;
}

.overview__table th {
  width: 240px;
  color: #fff;
  background: #c5b185;
  font-weight: 400;
  text-align: left;
}

.price-list {
  margin-bottom: 7px;
}

.price-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.overview__table small {
  font-size: 12px;
}

/* Room */
.room {
  min-height: 850px;
  padding: 68px 0 82px;
}

.room__grid {
  display: grid;
  grid-template-columns: 370px 1fr;
  grid-template-rows: auto auto;
  gap: 30px 45px;
}

.room__copy {
  padding-top: 15px;
}

.room__copy .section-heading {
  margin-bottom: 30px;
}

.room__copy p {
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 2;
}

.line-button--small {
  min-height: 52px;
  padding: 8px 15px;
  font-size: 15px;
}

.line-button--small .line-button__icon {
  flex-basis: 32px;
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.room__viewer {
  overflow: hidden;
  min-height: 390px;
  background: #eee;
}

/* LINE guide */
.line-guide {
  min-height: 550px;
  padding: 82px 0 65px;
  background: #061a2f url("../img/check_bg.webp") center / cover no-repeat;
  text-align: center;
}

.line-guide h2 {
  margin-bottom: 37px;
  color: #f1dfb8;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
}

.line-guide__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 660px;
  max-width: 100%;
  margin: 0 auto 33px;
  text-align: left;
}

.line-guide__content ul {
  margin-bottom: 0;
}

.line-guide__content li {
  position: relative;
  padding-left: 29px;
  font-size: 18px;
  line-height: 1.9;
}

.line-guide__content li::before {
  position: absolute;
  top: .38em;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../img/check.svg") center / contain no-repeat;
  content: "";
}

/* Voice */
.voice {
  min-height: 670px;
  padding: 72px 0 78px;
  background: linear-gradient(180deg, #fff, #f9f9f9);
}

.voice .section-heading {
  margin-bottom: 45px;
}

.voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.voice-card {
  min-height: 380px;
  padding: 28px 24px;
  border: 1px solid #d1c9b8;
  background: rgb(255 255 255 / 75%);
  text-align: center;
  border-radius: 10px;
}

.voice-card img {
  margin: 0 auto 20px;
}

.voice-card h3 {
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.voice-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

/* Why */
.why {
  min-height: 768px;
  background: var(--color-heading) url("../img/why_bg.webp") center / cover no-repeat;
}

.why__inner {
  padding-top: 82px;
}

.why .section-heading {
  width: 500px;
  margin-bottom: 38px;
}

.why__content {
  width: 500px;
}

.why__content article+article {
  margin-top: 27px;
}

.why__content h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 500;
}

.why__content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.85;
}

/* Support */
.support {
  min-height: 633px;
  padding: 72px 0 58px;
}

.support .section-heading {
  margin-bottom: 28px;
}

.support .section-lead {
  margin-bottom: 38px;
}

.support__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 17px;
  margin-bottom: 31px;
  text-align: center;
}

.support__list img {
  width: 110px;
  margin: 0 auto 14px;
}

.support__list span {
  display: block;
  color: var(--color-heading);
  line-height: 1.55;
}

.support__note {
  margin-bottom: 0;
  text-align: center;
}

/* Account CTA */
.account-cta {
  min-height: 313px;
  padding: 54px 0;
  border-top: 3px solid var(--color-accent-light);
  border-bottom: 3px solid var(--color-accent-light);
  text-align: center;
}

.account-cta h2 {
  margin-bottom: 8px;
  color: var(--color-heading);
  font-size: 30px;
  font-weight: 400;
}

.account-cta p {
  margin-bottom: 25px;
  color: var(--color-heading);
  font-size: 18px;
}

/* Safety */
.safety {
  min-height: 920px;
  padding: 72px 0 78px;
}

.safety__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  grid-template-rows: auto auto;
  gap: 25px 0;
}

.safety__copy {
  padding-top: 35px;
}

.safety__copy .section-heading {
  margin-bottom: 30px;
}

.safety__copy p {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 2;
}

.safety__person {
  width: 400px;
  height: 420px;
  margin-left: auto;
  object-fit: cover;
}

.safety__address {
  padding: 22px 20px 18px 30px;
  background: #fff;
}

.safety__address h3 {
  margin-bottom: 17px;
  color: var(--color-heading);
  font-size: 22px;
  font-weight: 400;
}

.safety__address ul {
  margin-bottom: 10px;
}

.safety__address li {
  position: relative;
  min-height: 24px;
  padding-left: 37px;
  font-size: 14px;
  line-height: 1.7;
}

.safety__address li+li {
  margin-top: 10px;
}

.safety__address li img {
  position: absolute;
  top: 1px;
  left: 0;
}

.safety__address p {
  margin: 0 0 0 37px;
  font-size: 13px;
}

.safety__office {
  width: 480px;
  height: 260px;
  object-fit: cover;
}

/* Flow */
.flow {
  min-height: 930px;
  padding: 72px 0 65px;
}

.flow .section-heading {
  margin-bottom: 27px;
}

.flow .section-lead {
  margin-bottom: 36px;
}

.flow__list {
  position: relative;
  width: 620px;
  max-width: 100%;
  margin: 0 auto 38px;
}

.flow__list::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 83px;
  width: 1px;
  background: #c5b185;
  content: "";
}

.flow__list li {
  position: relative;
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: center;
  min-height: 70px;
}

.flow__list li::before {
  position: absolute;
  left: 78px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
  content: "";
}

.flow__step {
  color: var(--color-accent);
  font-size: 15px;
  letter-spacing: .04em;
}

.flow__step strong {
  display: inline-block;
  margin-left: 5px;
  font-size: 24px;
  font-weight: 400;
}

/* Team */
.team {
  padding: 0 0 43px;
  background: #00112a;
  text-align: center;
}

.team__people {
  min-height: 870px;
  padding: 74px 0 92px;
  background: url("../img/system_bg.webp") center / cover no-repeat;
}

.team__title {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 400;
}

.team__title::after {
  display: block;
  width: 60px;
  height: 1px;
  margin: 13px auto 0;
  background: #a77d22;
  content: "";
}

.team__lead {
  margin-bottom: 34px;
}

.team__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}

.team__list article {
  min-width: 0;
}

.team__list img {
  width: 100%;
  aspect-ratio: 97 / 68;
  border-radius: 8px;
  object-fit: cover;
}

.team__list h3 {
  margin: 15px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(255 255 255 / 45%);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.team__list h3 small {
  display: block;
  font-size: 14px;
}

.team__list p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.9;
}

.team__partners-wrap {
  margin-top: -71px;
}

.team__partners {
  padding: 42px 29px 27px;
  border: 1px solid #384a67;
  background: #001734;
}

.team__partners-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}

.team__partners-lead {
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.6;
}

.team__partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.team__partner-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  min-width: 0;
  min-height: 208px;
  padding: 20px 25px;
  border: 1px solid #384a67;
  text-align: left;
}

.team__partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__partner-logo img {
  width: auto;
  max-width: 100%;
  max-height: 126px;
  filter: brightness(0) invert(1);
}

.team__partner-content {
  min-width: 0;
}

.team__partner-content h3 {
  margin: 0 0 7px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
}

.team__partner-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.75;
}

.team__partner-content .team__partner-en {
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.team__official {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 20px;
  width: min(100%, 608px);
  min-height: 94px;
  margin: 23px auto 0;
  padding: 17px 34px 17px 41px;
  border: 1px solid #384a67;
  background: #001734;
  text-align: left;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.55;
}

.team__official img {
  width: 46px;
}

.team__official strong {
  color: #a77d22;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.team__official-arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media (max-width: 1023px) {
  .team {
    padding-bottom: 50px;
  }

  .team__people {
    min-height: 0;
    padding: 62px 0 100px;
  }

  .team__people .container,
  .team__partners-wrap {
    max-width: 700px;
  }

  .team__list,
  .team__partner-list {
    grid-template-columns: 1fr;
  }

  .team__list {
    gap: 45px;
  }

  .team__partners-wrap {
    margin-top: -40px;
  }
}

/* FAQ */
.faq {
  min-height: 1780px;
  padding: 72px 0 90px;
}

.faq .section-heading {
  margin-bottom: 50px;
}

.faq__list {
  margin-bottom: 0;
}

.faq__list>div {
  padding: 20px 0 22px;
}

.faq__list dt,
.faq__list dd {
  position: relative;
  padding-left: 48px;
}

.faq__list dt {
  margin-bottom: 11px;
  color: var(--color-heading);
  font-size: 18px;
}

.faq__list dd {
  margin: 0;
  font-size: 16px;
}

.faq__list dt::before,
.faq__list dd::before {
  position: absolute;
  top: -.12em;
  left: 0;
  color: var(--color-heading);
  font-size: 28px;
  line-height: 1.2;
}

.faq__list dt::before {
  content: "Q.";
}

.faq__list dd::before {
  content: "A.";
  color: #8594A7;
}

/* Contact */
.contact {
  min-height: 1040px;
  padding: 72px 0 86px;
  background: #F9F8F6;
  background: linear-gradient(0deg, rgba(249, 248, 246, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.contact .section-heading {
  margin-bottom: 30px;
}

.contact .section-lead {
  margin-bottom: 37px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.contact-form__row>label:first-child,
.contact-form__row legend {
  padding-top: 13px;
}

.contact-form__row .must {
  color: #E23541;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfddd6;
  border-radius: 0;
  outline-color: var(--color-heading);
  color: var(--color-text);
  background: #fff;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  padding: 14px 16px;
  resize: vertical;
}

.contact-form__name {
  grid-template-columns: 260px 1fr 1fr;
  gap: 15px;
}

.contact-form__name legend {
  width: auto;
}

.contact-form__name label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form__name label>span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-text);
  font-size: 13px;
}

.contact-form__privacy {
  margin: 26px 0 30px;
  text-align: center;
}

.contact-form ::-webkit-input-placeholder {
  font-weight: 400;
  color: #CCCCCC;
}

.contact-form ::-moz-placeholder {
  font-weight: 400;
  color: #CCCCCC;
}

.contact-form:-ms-input-placeholder {
  font-weight: 400;
  color: #CCCCCC;
}

.submit-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 61px;
  margin-inline: auto;
  border: 1px solid #707070;
  color: #fff;
  background: linear-gradient(#264c76, #183254);
  font-size: 18px;
  letter-spacing: .12em;
  border-radius: 8px;
}

.submit-button::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 8px;
  background: linear-gradient(0deg,
      #EBCF93 0%,
      #CCAB65 50%,
      #EFE4CC 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.submit-button span {
  margin-left: 42px;
  color: #fff;
  font-size: 27px;
}

/* Partner */
.partner__box {
  display: grid;
  grid-template-columns: 360px 1fr;
  padding: 38px 55px;
  border: 5px solid #A5B4CB;
  background: #EFF2F3;
  background: linear-gradient(0deg, rgba(239, 242, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
  margin-top: 55px;
}

.partner__box h2 {
  margin-bottom: 7px;
  color: var(--color-heading);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .1em;
  text-align: center;
}

.partner__box h2::after {
  display: block;
  width: 60px;
  height: 1px;
  margin: 10px auto;
  background: #183254;
  content: "";
}

.partner__box>div:first-child p {
  color: #7788a1;
  font-size: 18px;
}

.partner__content ul {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 18px;
}

.partner__content li {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
}

.partner__content li::before {
  position: absolute;
  top: .4em;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../img/check2.svg") center / contain no-repeat;
  content: "";
}

.partner__content p {
  font-size: 18px;
}

/* Footer */
.footer {
  color: #222;
  background: #fff;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  min-height: 190px;
  gap: 70px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}

.footer__brand img {
  width: 80px;
}

.footer__brand strong {
  font-size: 16px;
  font-weight: 500;
}

.footer__sep {
  width: 1px;
  height: 100%;
  background: #CCCCCC;
}

.footer address {
  font-size: 12px;
  font-style: normal;
  line-height: 1.8;
}

.footer__bottom {
  min-height: 60px;
  color: #fff;
  background: #222;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.footer__bottom a,
.footer__bottom small {
  font-size: 12px;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {

  .line-button,
  .submit-button {
    transition: opacity .2s ease;
  }

  .line-button:hover,
  .submit-button:hover {
    opacity: .8;
  }
}

@media (max-width: 1024px) {
  :root {
    --side-padding: 32px;
  }

  .hero__points,
  .hero__notes {
    left: var(--side-padding);
  }

  .hero__offer {
    right: var(--side-padding);
    padding-top: 20px;
  }

  .hero__offer::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #EBCF93;
    background: linear-gradient(90deg, rgba(235, 207, 147, 1) 0%, rgba(216, 185, 118, 1) 20%, rgba(204, 171, 101, 1) 30%, rgba(239, 228, 204, 1) 50%, rgba(224, 197, 141, 1) 75%, rgba(97, 85, 61, 1) 100%);
  }

  .hero__footer {
    bottom: 40px;
    height: min(108px, 20.744vw);
  }

  .line-button--hero {
    width: 100%;
    min-height: min(115px, 26.744vw);
    border-radius: 9px;
    font-size: min(23px, 5.349vw);
  }

  .line-button--hero .line-button__icon {
    flex-basis: min(50px, 11.628vw);
    width: min(50px, 11.628vw);
    height: min(50px, 11.628vw);
    margin-right: min(12px, 2.791vw);
    font-size: min(12px, 2.791vw);
  }

  .line-button--hero small {
    font-size: min(16px, 3.721vw);
  }

  .strengths__list {
    gap: 12px;
  }

  .support__list {
    gap: 8px;
  }

  .safety__grid {
    grid-template-columns: 1fr 45%;
    gap: 25px 35px;
  }

  .partner {
    padding: 40px 0;
  }

  .partner__box {
    display: block;
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --side-padding: 20px;
  }

  body {
    font-size: 14px;
    line-height: 1.8;
  }

  .section-heading__title {
    font-size: 28px;
    line-height: 1.45;
  }

  .section-heading__en {
    font-size: 14px;
  }

  .line-button {
    min-height: 58px;
    padding: 8px 17px 8px 12px;
    font-size: 16px;
  }

  .line-button__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    margin-right: 8px;
  }

  /* SP first view follows the supplied 430px design. */
  .hero {
    height: min(1526px, 354.884vw);
  }

  .hero__visual {
    width: 430px;
    max-width: 100%;
    height: min(1526px, 354.884vw);
    background: #041124 url("../img/mv_sp.webp") center top / min(430px, 100vw) auto no-repeat;
  }

  .hero__logo {
    top: min(21px, 4.884vw);
    left: min(20px, 4.651vw);
    width: min(145px, 33.721vw);
  }

  .hero__landmark {
    top: min(20px, 4.651vw);
    right: min(20px, 4.651vw);
    left: auto;
    width: min(176px, 40.93vw);
  }

  .hero__architect-sign {
    top: min(398px, 92.558vw);
    right: min(38px, 8.837vw);
    width: min(93.42px, 21.726vw);
  }

  .hero__title {
    top: min(493px, 114.651vw);
    left: 50%;
    width: min(408px, 94.884vw);
    max-width: none;
    transform: translateX(-50%);
  }

  .hero__points--pc {
    display: none;
  }

  .hero__points--sp {
    display: block;
    top: min(811px, 188.605vw);
    left: 50%;
    width: min(408px, 94.884vw);
    max-width: none;
    transform: translateX(-50%);
  }

  .hero__offer {
    top: min(1145px, 266.279vw);
    right: auto;
    left: 50%;
    width: min(390px, 90.698vw);
    transform: translateX(-50%);
  }

  .hero__present {
    width: min(297px, 69.07vw);
    margin-bottom: min(18px, 4.186vw);
  }

  .hero__notes {
    top: min(1008px, 234.419vw);
    bottom: auto;
    left: min(20px, 4.651vw);
    width: min(390px, 90.698vw);
    font-size: min(9px, 2.093vw);
    line-height: 1.5;
  }

  .recommend,
  .value,
  .strengths,
  .overview,
  .room,
  .line-guide,
  .voice,
  .why,
  .support,
  .account-cta,
  .safety,
  .flow,
  .team,
  .faq,
  .contact,
  .partner {
    min-height: 0;
  }

  .recommend {
    padding: 25px 0 65px;
    background-position: center top;
  }

  .recommend__banner {
    margin-bottom: 55px;
  }

  .recommend .section-heading {
    margin-bottom: 24px;
  }

  .recommend__list li+li {
    margin-top: 12px;
  }

  .value {
    background-position: 32% center;
  }

  .value__inner {
    min-height: 760px;
    align-items: flex-end;
  }

  .value__content {
    width: 100%;
    margin: 0 calc(var(--side-padding) * -1);
    padding: 42px var(--side-padding) 50px;
    background: rgb(8 35 67 / 82%);
  }

  .value h2 {
    font-size: 27px;
  }

  .value h3 {
    margin-bottom: 23px;
    font-size: 20px;
  }

  .value h4 {
    font-size: 18px;
  }

  .value p {
    font-size: 14px;
    line-height: 1.9;
  }

  .strengths {
    padding: 62px 0;
  }

  .strengths__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .strengths__list li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0 20px;
    align-items: center;
    padding: 20px;
    background: rgb(255 255 255 / 75%);
  }

  .strengths__list img {
    grid-row: 1 / 3;
    width: 90px;
    margin: 0;
  }

  .strengths__list h3 {
    min-height: 0;
    margin: 0 0 8px;
    font-size: 17px;
    text-align: left;
  }

  .strengths__list p {
    font-size: 13px;
  }

  .overview,
  .room,
  .voice,
  .support,
  .safety,
  .flow,
  .faq,
  .contact {
    padding: 60px 0;
  }

  .overview__table-wrap {
    overflow-x: auto;
  }

  .overview__table {
    font-size: 13px;
  }

  .overview__table th,
  .overview__table td {
    display: block;
    width: 100%;
    padding: 10px 14px;
  }

  .overview__table th {
    border-bottom: 0;
  }

  .price-list div {
    grid-template-columns: 110px 1fr;
  }

  .room__grid {
    display: block;
  }

  .room__copy {
    margin-bottom: 35px;
    padding-top: 0;
  }

  .room__viewer {
    min-height: 0;
    aspect-ratio: 18 / 13;
    margin-bottom: 20px;
  }

  .line-guide {
    padding: 62px 0;
  }

  .line-guide h2 {
    font-size: 24px;
  }

  .line-guide__content {
    grid-template-columns: 1fr;
    width: 310px;
  }

  .line-guide__content li {
    font-size: 15px;
  }

  .voice__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voice-card {
    min-height: 0;
  }

  .why {
    min-height: 760px;
    background-position: 60% center;
  }

  .why__inner {
    padding: 55px 0;
  }

  .why .section-heading,
  .why__content {
    width: 100%;
  }

  .why__inner::before {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 0;
    width: 100%;
    background: rgb(24 50 84 / 65%);
    content: "";
  }

  .why .section-heading,
  .why__content {
    position: relative;
    z-index: 1;
  }

  .why__content h3 {
    font-size: 19px;
  }

  .support__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .support__list span {
    font-size: 14px;
  }

  .account-cta {
    padding: 50px 0;
  }

  .account-cta h2 {
    font-size: 25px;
  }

  .account-cta p {
    font-size: 15px;
  }

  .safety__grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .safety__copy {
    padding-top: 0;
  }

  .safety__person {
    order: 2;
    width: 100%;
    height: auto;
  }

  .safety__address {
    order: 3;
    padding: 20px;
  }

  .safety__office {
    order: 4;
    width: 100%;
    height: auto;
  }

  .flow__list li {
    grid-template-columns: 115px 1fr;
    min-height: 75px;
    font-size: 13px;
  }

  .flow__list::before {
    left: 72px;
  }

  .flow__list li::before {
    left: 67px;
  }

  .team {
    padding: 0 0 40px;
  }

  .team__people {
    padding: 55px 0 75px;
  }

  .team__title {
    font-size: 25px;
  }

  .team__list {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .team__partners-wrap {
    margin-top: -30px;
  }

  .team__partners {
    padding: 32px 16px 20px;
  }

  .team__partners-title {
    font-size: 23px;
  }

  .team__partners-lead {
    font-size: 13px;
  }

  .team__partner-card {
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
    padding: 28px 22px;
    text-align: center;
  }

  .team__partner-logo img {
    max-width: 158px;
  }

  .team__partner-content h3 {
    font-size: 19px;
  }

  .team__partner-content p {
    font-size: 14px;
  }

  .team__partner-content .team__partner-en {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .team__official {
    grid-template-columns: 36px minmax(0, 1fr) 10px;
    gap: 14px;
    min-height: 88px;
    padding: 15px 16px;
    font-size: 12px;
  }

  .team__official img {
    width: 36px;
  }

  .team__official-arrow {
    width: 10px;
    height: 10px;
  }

  .faq__list>div {
    padding: 18px 0 20px;
  }

  .faq__list dt,
  .faq__list dd {
    padding-left: 38px;
  }

  .faq__list dt {
    font-size: 16px;
  }

  .faq__list dd {
    font-size: 14px;
  }

  .faq__list dt::before,
  .faq__list dd::before {
    font-size: 23px;
  }

  .contact-form__row,
  .contact-form__name {
    display: block;
    margin-bottom: 20px;
  }

  .contact-form__row legend {
    display: block;
    margin-bottom: 8px;
    padding-top: 0;
  }

  .contact-form__name label {
    display: block;
  }

  .contact-form__privacy {
    font-size: 12px;
  }

  .partner h2 {
    font-size: 27px;
  }

  .partner__content ul {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .footer__bottom .container {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-block: 12px;
    text-align: center;
  }
}

@media (max-width: 374px) {
  :root {
    --side-padding: 16px;
  }

  .hero__logo {
    left: 13px;
    width: 128px;
  }

  .hero__landmark {
    right: 13px;
    width: 155px;
  }

  .line-button--hero {
    font-size: 19px;
  }

  .line-button--hero small {
    font-size: 14px;
  }

  .section-heading__title {
    font-size: 25px;
  }

  .strengths__list li {
    grid-template-columns: 75px 1fr;
    gap: 0 14px;
    padding: 15px;
  }

  .strengths__list img {
    width: 75px;
  }
}

/* Design fidelity adjustments */
.section-heading__en::after {
  display: block;
  width: 60px;
  height: 1px;
  margin: 17px auto 0;
  background: #a77d22;
  content: "";
}

.section-heading--left .section-heading__en::after {
  margin-left: 0;
}

.line-button {
  position: relative;
  justify-content: center;
  padding-right: 68px;
  padding-left: 68px;
  text-align: center;
}

.line-button__icon {
  position: absolute;
  left: 10px;
  display: block;
  width: 51px;
  height: 50px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.line-button__arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  margin: 0;
  border-top: 1px solid currentcolor;
  border-right: 1px solid currentcolor;
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%) rotate(45deg);
}

.line-button--hero .line-button__icon,
.line-button--small .line-button__icon {
  flex-basis: auto;
  width: 42px;
  height: 41px;
  margin: 0;
}

.recommend__list li {
  position: relative;
}

.recommend__list li>img {
  width: 100%;
}

.recommend__list li>span {
  position: absolute;
  top: 50%;
  left: 115px;
  color: #183254;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  transform: translateY(-50%);
}

.value h2::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 18px;
  background: #e0c894;
  content: "";
}

.room__viewer iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.room__photos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.room__photos li {
  min-width: 0;
  text-align: center;
}

.room__photos img {
  width: 100%;
  aspect-ratio: 18 / 13;
  object-fit: cover;
}

.room__photos span {
  display: block;
  padding-top: 8px;
  color: #183254;
  font-size: 13px;
}

.line-guide__content li {
  font-size: 27px;
  line-height: 1.75;
}

.why .section-heading {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.why .section-heading__en::after {
  margin-right: auto;
  margin-left: auto;
}

.flow__list {
  width: 620px;
}

.flow__list::before {
  left: 145px;
}

.flow__list li {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 50px;
  min-height: 70px;
}

.flow__list li::before {
  left: 140px;
}

.flow__step {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  white-space: nowrap;
}

.flow__step strong {
  margin-left: 0;
}

.faq__list dt {
  margin-bottom: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid #c7ced8;
}

.contact-form__label {
  padding-top: 13px;
}

.contact-form__name {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.partner {
  min-height: 330px;
  padding: 50px 0;
}

.partner__box {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: center;
  min-height: 230px;
  padding: 45px 70px;
}

.partner__content ul {
  column-gap: 25px;
  row-gap: 6px;
}

@media (min-width: 768px) {
  .hero__title {
    left: 50%;
    width: min(44.29vw, 605px);
    transform: translateX(-50%);
  }

  .hero__offer {
    right: clamp(24px, 3.3vw, 46px);
    width: min(22vw, 300px);
  }
}

@media (max-width: 767px) {
  .section-heading--left .section-heading__en::after {
    margin-right: auto;
    margin-left: auto;
  }

  .line-button--hero .line-button__icon {
    flex-basis: auto;
    width: min(50px, 11.628vw);
    height: min(50px, 11.628vw);
    margin: 0;
  }

  .recommend__list li>span {
    left: 19%;
    max-width: 76%;
    font-size: clamp(11px, 3.5vw, 15px);
  }

  .room__viewer iframe {
    min-height: 0;
  }

  .room__photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
  }

  .line-guide__content li {
    font-size: 20px;
  }

  .why .section-heading,
  .why__content {
    width: 100%;
  }

  .flow__list li {
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 34px;
  }

  .flow__list::before {
    left: 112px;
  }

  .flow__list li::before {
    left: 107px;
  }

  .contact-form__label {
    display: block;
    margin-bottom: 8px;
    padding-top: 0;
  }

  .contact-form__name {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form__name label+label {
    margin-top: 0;
  }

  .partner__box {
    min-height: 0;
    padding: 30px 24px;
  }
}

/* Scale the supplied hero canvas as one unit to preserve every relative position. */
.hero {
  --hero-scale: 1;
  height: 56.2225vw;
}

.hero__visual {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1366px;
  max-width: none;
  height: 768px;
  margin: 0;
  background-position: center top;
  background-size: 1366px 768px;
  transform: translateX(-50%) scale(var(--hero-scale));
  transform-origin: top center;
}

@media (min-width: 1024px) {
  .hero__logo {
    top: 24px;
    left: 34px;
    width: 112px;
  }

  .hero__landmark {
    top: 165px;
    right: auto;
    left: 62px;
    width: 150px;
  }

  .hero__architect-sign {
    top: 409px;
    right: 37px;
    width: 93.42px;
  }

  .hero__title {
    top: 27px;
    left: 50%;
    width: 605px;
    transform: translateX(-50%);
  }

  .hero__points {
    top: 535px;
    left: 183px;
    width: 762px;
  }

  .hero__offer {
    top: 493px;
    right: 46px;
    left: auto;
    width: 300px;
    transform: none;
  }

  .hero__notes {
    top: auto;
    bottom: 86px;
    left: 183px;
    width: 690px;
    font-size: 9px;
  }

  .hero__footer {
    bottom: 0;
    height: 100px;
  }
}

@media (max-width: 1023px) {
  .hero {
    height: 354.8837vw;
  }

  .hero__visual {
    width: 430px;
    max-width: none;
    height: 1526px;
    background-size: 430px auto;
  }

  .hero__logo {
    top: 21px;
    left: 20px;
    width: 145px;
  }

  .hero__landmark {
    top: 20px;
    right: 20px;
    left: auto;
    width: 176px;
  }

  .hero__architect-sign {
    top: 398px;
    right: 38px;
    width: 93.42px;
  }

  .hero__title {
    top: 493px;
    left: 50%;
    width: 408px;
    transform: translateX(-50%);
  }

  .hero__points--sp {
    top: 841px;
    left: 50%;
    width: 408px;
    transform: translateX(-50%);
  }

  .hero__offer {
    top: 1145px;
    right: auto;
    left: 50%;
    width: 390px;
    transform: translateX(-50%);
  }

  .hero__present {
    width: 297px;
    margin-bottom: 18px;
  }

  .line-button--hero {
    min-height: 78px;
    border-radius: 9px;
    font-size: 23px;
  }

  .line-button--hero .line-button__icon {
    width: 50px;
    height: 50px;
  }

  .line-button--hero small {
    font-size: 16px;
  }

  .hero__notes {
    top: 1038px;
    bottom: auto;
    left: 20px;
    width: 390px;
    font-size: 10px;
  }

  .hero__footer {
    bottom: 40px;
    height: 72px;
  }
}

@media (max-width: 1023px) {
  .hero__visual {
    background-image: url("../img/mv_sp.webp");
  }

  .hero__points--pc {
    display: none;
  }

  .hero__points--sp {
    display: block;
  }

}
