@charset "UTF-8";
:root {
  --base: "Zen Kaku Gothic New", sans-serif;
  --en: "Lexend Giga", sans-serif;
  --mc: #cbc4b8;
  --fc: #2d2f26;
  --bc: #e3ded6;
  --mq: 4.8;
  /*
  --mq: 12.8vw;
  @media screen and (max-width: 1024px) {
    --mq: 7.5vw;
  }
  @media screen and (max-width: 479px) {
    --mq: 3.75vw;
  }*/
}

/*---変数---*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul,
li {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
  border: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

section {
  position: relative;
}

input[type="submit"],
input[type="button"] {
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

main {
  display: block;
}

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

sup {
  position: relative;
  top: -1ex;
  vertical-align: baseline;
}

button {
  outline: none;
}

iframe {
  display: block;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  font-family: var(--base);
  font-size: 1rem;
  color: var(--fc);
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: var(--base);
  }
}
body.fix {
  position: fixed;
  width: 100%;
}
body.open {
  overflow: hidden;
}

html,
body {
  position: relative;
  width: 100%;
}

*:focus {
  outline: none;
}

p,
li,
dl,
tr,
th,
td {
  font-size: min(4.2666666667vw, 1.6rem);
  letter-spacing: normal;
}

span {
  font-weight: inherit;
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: min(6.4vw, 2.4rem);
  letter-spacing: normal;
}

a,
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

.pc-tb {
  display: block;
}
@media screen and (max-width: 479px) {
  .pc-tb {
    display: none !important;
  }
}

.tb-sp {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb-sp {
    display: block !important;
  }
}

.tb {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
}
@media screen and (max-width: 479px) {
  .tb {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 479px) {
  .sp {
    display: block !important;
  }
}

.fade-up {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.fade-down {
  animation: fadeDown 0.6s forwards;
}

@keyframes fadeDown {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
}
.cmn-wrap {
  position: relative;
  margin: 0 auto;
  padding-inline: 32px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .cmn-wrap {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 360px) {
  .cmn-wrap {
    padding-inline: 16px;
  }
}
.cmn-wrap.--full {
  padding-bottom: 0;
  padding-inline: 0;
}

.cmn-ttl {
  position: relative;
  color: #000;
}
.cmn-ttl__main {
  position: relative;
  display: block;
  font-family: var(--en);
  font-size: min(6.4vw, 2.4rem);
  font-weight: 400;
  line-height: 100%;
}
.cmn-ttl__sub {
  display: block;
  margin-top: 16px;
  font-size: min(4.2666666667vw, 1.6rem);
  line-height: 100%;
  letter-spacing: 0.16rem;
}
.cmn-ttl.--white {
  color: #fff;
}
.cmn-ttl.--center {
  text-align: center;
}
.cmn-ttl.--center .cmn-ttl__sub {
  margin-top: 8px;
}

.cmn-ttl2 {
  position: relative;
  width: fit-content;
}
.cmn-ttl2__main {
  position: relative;
  display: block;
  font-size: min(6.4vw, 2.4rem);
  line-height: 100%;
}
.cmn-ttl2::before {
  content: "";
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 263px;
  aspect-ratio: 263/33;
  background: url(./img/line-ttl.png) no-repeat center center/contain;
}
.cmn-ttl2.--other .cmn-ttl2__main {
  line-height: 133.333%;
  letter-spacing: 0.24rem;
}
.cmn-ttl2.--other::before {
  top: 100%;
}

.wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
  max-width: 960px;
}
@media screen and (max-width: 479px) {
  .wrap {
    padding-inline: 0;
  }
}
.wrap::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(./img/bg-body.jpg) no-repeat top center/cover;
  pointer-events: none;
}
@media screen and (max-width: 479px) {
  .wrap::before {
    content: none;
  }
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.hd-cnt {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-inline: 20px;
  margin-inline: auto;
  height: 100vh;
}
.hd-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc((100% - 480px) / 2);
  height: 100%;
}
.hd-name {
  position: relative;
  margin-top: 35px;
  margin-left: -20px;
  width: 100%;
  max-width: 493px;
}
.hd-name__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 266px;
  z-index: 1;
}
.hd-name img {
  width: 100%;
}
.hd-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 480px) / 2);
  height: 100%;
}
.hd-cta {
  margin-block: auto 48px;
  max-width: 336px;
}
.hd-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #789a4f;
  opacity: 0;
  cursor: pointer;
  z-index: 1002;
  opacity: 0;
}
.hd-toggle__line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 16px;
}
.hd-toggle span {
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  background: #fff;
}
.hd-toggle span {
  height: 1px;
}
.hd-toggle span:nth-child(1) {
  top: 0;
}
.hd-toggle span:nth-child(2) {
  top: 8px;
}
.hd-toggle span:nth-child(3) {
  top: 16px;
}
@media screen and (max-width: 1024px) {
  .hd {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 56px;
    line-height: 1;
    transition: all 0.4s;
    opacity: 0;
    z-index: 1000;
  }
  .hd-cnt {
    align-items: center;
    flex-wrap: nowrap;
    padding-inline: 20px;
    height: 100%;
  }
  .hd-main {
    align-items: center;
    padding: 0;
    width: auto;
    background: transparent;
  }
  .hd-name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 105px;
    max-width: none;
    z-index: 1001;
  }
  .hd-name__logo {
    width: 100%;
  }
  .hd-menu {
    justify-content: center;
    max-width: none;
  }
  .hd-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .hd-nav__cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 80px;
    padding-inline: 30px;
    width: 100%;
    height: 100%;
  }
  .hd-nav__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 280px;
  }
  .hd-nav__link {
    display: block;
    padding-block: min(3.2vw, 2.4rem);
    padding-inline: 0;
    height: auto;
    width: auto;
    overflow: visible;
    text-align: center;
    transition: 0.4s;
  }
  .hd-nav__link-st {
    display: block;
    font-size: min(5.3333333333vw, 2rem);
    line-height: normal;
  }
  .hd-toggle {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
  .hd-toggle span {
    transition: 0.35s ease-in-out;
  }
}
@media screen and (max-width: 1024px) {
  .hd.fixed {
    background: #fff;
    opacity: 1;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .hd.fixed .hd-toggle {
    opacity: 1;
  }
}
.hd.open {
  z-index: 100;
}
.hd.open .hd-nav {
  opacity: 1;
  transition: 0.4s;
  visibility: visible;
  transform: translateX(0);
}
.hd.open .hd-toggle {
  opacity: 1;
}
.hd.open .hd-toggle span:nth-child(1) {
  top: 7px;
  width: 100%;
  transform: rotate(45deg);
}
.hd.open .hd-toggle span:nth-child(2) {
  opacity: 0;
}
.hd.open .hd-toggle span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.ft {
  position: relative;
  padding-block: 48px 40px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .ft {
    padding-block: 48px 104px;
  }
}
.ft-name {
  margin-inline: auto;
  max-width: 264px;
  width: 70%;
  aspect-ratio: 11/1;
}
.ft-logo {
  display: block;
  width: 100%;
  height: 100%;
}
.ft-logo img {
  width: 100%;
}
.ft-data {
  margin-top: 40px;
  text-align: center;
}
.ft-data__add {
  text-align: center;
  font-size: min(4.2666666667vw, 1.6rem);
  font-weight: 400;
  line-height: normal;
}
.ft-data__phone {
  margin-top: 24px;
  text-align: center;
  font-size: min(8.5333333333vw, 3.2rem);
  font-weight: 500;
  line-height: normal;
}
.ft-data__open {
  margin-top: 24px;
  text-align: center;
  font-size: min(4.2666666667vw, 1.6rem);
  line-height: 150%;
  letter-spacing: 0.064rem;
}
.ft-copy {
  margin-top: 54px;
  color: #535353;
  text-align: center;
  font-size: min(3.7333333333vw, 1.4rem);
  line-height: 100%;
  letter-spacing: 0.095rem;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 480px;
  z-index: 1000;
  transition: transform 0.4s;
  transform: translate(-50%, 100%);
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .banner {
    display: none;
  }
}
.banner__inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
}
.banner__btn-link {
  display: block;
}
.banner__btn-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__btn.--contact {
  aspect-ratio: 548/144;
}
.banner__btn.--phone {
  aspect-ratio: 230/144;
}

.content {
  position: relative;
  width: 480px;
  background: #f2f0ed;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: clip;
}
@media screen and (max-width: 1024px) {
  .content {
    margin-top: 0;
    border-radius: 0;
    margin-inline: auto;
    width: 100%;
    max-width: 480px;
  }
}
.content.open {
  background: transparent;
  box-shadow: none;
}

.cta {
  margin-left: -9px;
}
.cta__link {
  display: block;
  transition: 0.4s;
}
.cta__link img {
  width: 100%;
  aspect-ratio: 700/708;
}
@media screen and (min-width: 1025px) {
  .cta__link:hover {
    opacity: 0.6;
  }
}

.main-cta {
  padding-block: 32px;
}
.main-cta.--cta02 {
  padding-block: 24px;
}
@media screen and (max-width: 1024px) {
  .main-cta.--cta02 {
    padding-block: 80px 24px;
  }
}

.gift .gift-box__note {
  padding: 14px;
  height: 137px;
  background: #d9d9d9;
  overflow-y: auto;
}
.gift .gift-box__ttl {
  color: #000;
  font-size: 1.4rem;
  line-height: 100%;
}
.gift .gift-box__txt {
  margin-top: 14px;
  color: #000;
  font-size: 1rem;
  line-height: 160%;
}

.sec-fv {
  position: relative;
}
.sec-fv__name {
  position: absolute;
  top: 30px;
  left: 16px;
  max-width: min(55.4666666667vw, 20.8rem);
}
.sec-fv__awards {
  position: absolute;
  top: 0;
  right: 16px;
  width: min(29.8666666667vw, 11.2rem);
  aspect-ratio: 112/169;
}
.sec-fv .fv-cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 120px;
  width: calc(100% - 16px);
}
@media screen and (max-width: 1024px) {
  .sec-fv .fv-cnt {
    padding-top: 180px;
  }
}
.sec-fv .fv-cnt__ttl {
  color: #fff;
  font-size: min(6.4vw, 2.4rem);
  font-weight: 500;
  line-height: 3.2rem;
  text-align: center;
}
.sec-fv .fv-cnt__ttl strong {
  display: block;
  margin-bottom: 24px;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 18px rgba(130, 128, 128, 0.4);
  font-family: var(--en);
  font-size: min(10.6666666667vw, 4rem);
  font-weight: 500;
  line-height: 125%;
}
.sec-fv .fv-cnt__ttl small {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 18px rgba(130, 128, 128, 0.46);
  font-size: min(4.8vw, 1.8rem);
  font-weight: 500;
  line-height: 177.778%;
}
.sec-fv .fv-cnt__txt {
  margin-top: 120px;
  margin-inline: auto 16px;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .sec-fv .fv-cnt__txt {
    margin-top: 32px;
  }
}
.sec-fv .fv-cnt__txt-st {
  color: #fff;
  font-family: var(--en);
  font-size: min(3.7333333333vw, 1.4rem);
  font-style: normal;
  font-weight: 300;
  line-height: 164.286%;
}
.sec-fv .fv-cnt__btn {
  margin-top: -16px;
  width: min(41.3333333333vw, 15.5rem);
  aspect-ratio: 155/156;
}
.sec-fv .fv-cnt__btn-link {
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .sec-fv .fv-cnt__btn-link:hover {
    opacity: 0.6;
  }
}
.sec-fv__gallery {
  margin-right: -1px;
  padding-block: 24px;
}
@media screen and (max-width: 1024px) {
  .sec-fv__gallery {
    padding-block: 0;
  }
}

@media screen and (max-width: 1024px) {
  .sec-about {
    padding-block: 72px 48px;
  }
}
.sec-about__ttl {
  text-align: center;
}
.sec-about__ttl-sub {
  display: block;
  font-family: var(--en);
  font-size: min(5.3333333333vw, 2rem);
  line-height: 100%;
}
.sec-about__ttl-main {
  position: relative;
  display: block;
  margin-top: 16px;
  font-size: min(8.5333333333vw, 3.2rem);
  font-weight: 500;
  line-height: 100%;
}
.sec-about__cnt {
  margin-top: 48px;
}
.sec-about__txt {
  text-align: center;
}
.sec-about__txt-st {
  line-height: 175%;
}
.sec-about__txt-st:not(:first-child) {
  margin-top: 28px;
}
.sec-about__ph {
  margin-top: 48px;
  margin-right: -1px;
}

.sec-strengths {
  padding-block: 48px;
}
.sec-strengths__cnt {
  margin-top: 48px;
}
.sec-strengths__txt {
  font-size: 1.5rem;
  line-height: 186.667%;
}
.sec-strengths__spec {
  margin-top: 48px;
}
@media screen and (max-width: 1024px) {
  .sec-strengths__spec {
    margin-inline: -8px;
  }
}
.sec-strengths .spec-table {
  display: flex;
  flex-direction: column;
  line-height: normal;
}
.sec-strengths .spec-table__row {
  display: flex;
  gap: 12px;
}
.sec-strengths .spec-table__name {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: calc((100% - 70px - 24px) / 2);
  color: #000;
  font-size: min(4.2666666667vw, 1.6rem);
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .sec-strengths .spec-table__name {
    padding: 6px;
  }
}
.sec-strengths .spec-table__name.--normal {
  background: #d7e1b0;
}
.sec-strengths .spec-table__name.--upgrade {
  position: relative;
  background: #f7e8b9;
}
.sec-strengths .spec-table__name span {
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 85.267px;
  aspect-ratio: 85.267/23;
}
.sec-strengths .spec-table__cnt .spec-table__row:nth-child(odd) .spec-table__label {
  color: #9ca675;
}
.sec-strengths .spec-table__cnt .spec-table__row:nth-child(odd) .spec-table__value {
  background: #fff;
}
.sec-strengths .spec-table__cnt .spec-table__row:nth-child(even) .spec-table__label {
  color: #d7ac24;
}
.sec-strengths .spec-table__cnt .spec-table__row:nth-child(even) .spec-table__value {
  background: #e3e2e2;
}
.sec-strengths .spec-table__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  text-align: center;
  font-size: min(4.2666666667vw, 1.6rem);
  font-weight: 500;
  line-height: normal;
}
.sec-strengths .spec-table__value {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: calc((100% - 70px - 24px) / 2);
  min-height: 62px;
  color: #000;
  text-align: center;
  font-size: min(4.2666666667vw, 1.6rem);
  line-height: normal;
}
.sec-strengths .spec-table__value.--fs13 {
  font-size: min(3.4666666667vw, 1.3rem);
}
.sec-strengths .spec-table__value.--fs14 {
  font-size: min(3.7333333333vw, 1.4rem);
}

.sec-model {
  padding-block: 32px 0;
}
.sec-model__data {
  margin-top: 72px;
  text-align: right;
  font-size: min(3.7333333333vw, 1.4rem);
  line-height: 171.429%;
  letter-spacing: 0.14rem;
}
.sec-model .model-gallery {
  padding-block: 40px;
  padding-inline: 32px;
}
@media screen and (max-width: 479px) {
  .sec-model .model-gallery {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 360px) {
  .sec-model .model-gallery {
    padding-inline: 16px;
  }
}
.sec-model .model-gallery__before {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .sec-model .model-gallery__before {
    gap: 16px;
  }
}
.sec-model .model-gallery__before-ph {
  flex: 1;
  aspect-ratio: 158/103;
}
.sec-model .model-gallery__before-txt {
  flex: 1;
  font-size: min(3.7333333333vw, 1.4rem);
  font-weight: 400;
  line-height: 178.571%;
  letter-spacing: 0.14rem;
}
@media screen and (max-width: 1024px) {
  .sec-model .model-gallery__before-txt {
    line-height: 171.429%;
  }
}
.sec-model .model-gallery__after {
  margin-top: 16px;
}
.sec-model .model-gallery.--gallery02,
.sec-model .model-gallery.--gallery04 {
  background: var(--bc);
}
.sec-model .model-gallery.--gallery02 .model-gallery__before,
.sec-model .model-gallery.--gallery04 .model-gallery__before {
  flex-direction: row-reverse;
}
.sec-model .model-floor {
  padding-block: 80px 48px;
}
.sec-model .model-floor__box:not(:first-child) {
  margin-top: 32px;
}
.sec-model .model-floor__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 2px solid var(--fc);
  aspect-ratio: 327/37;
  font-family: var(--en);
  font-size: min(5.3333333333vw, 2rem);
  line-height: 100%;
}
.sec-model .model-floor__gallery {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}
.sec-model .model-floor__ph {
  position: relative;
}
.sec-model .model-floor__ph-label {
  margin-bottom: 8px;
  color: var(--fc);
  font-family: var(--en);
  font-size: min(4.8vw, 1.8rem);
  line-height: 100%;
  text-align: center;
}
.sec-model .model-floor__ph::before {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 48px;
  aspect-ratio: 1;
  background: url(./img/icon-zoom.png) no-repeat center center/cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-model .model-floor__ph::before {
    bottom: 2px;
    right: 2px;
    width: 32px;
  }
}

.sec-other {
  padding-block: 54px 80px;
}
.sec-other__cnt {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .sec-other__cnt {
    margin-top: 72px;
  }
}
.sec-other .other-box__ttl {
  font-size: min(4.8vw, 1.8rem);
  line-height: 100%;
  letter-spacing: 0.1801rem;
}
.sec-other .other-box__ph {
  margin-top: 16px;
}
.sec-other .other-box.--box2 {
  margin-top: 40px;
}
.sec-other__txt {
  margin-top: 24px;
}
.sec-other__txt-st:not(:first-child) {
  margin-top: 24px;
}

.sec-cost {
  padding-block: 48px;
  background: url(./img/bg-cost.jpg) no-repeat center center/cover;
}
.sec-cost__ph {
  margin-top: 32px;
}
.sec-cost__txt {
  margin-top: 16px;
}
.sec-cost__txt-st {
  color: #fff;
  font-size: min(4.2666666667vw, 1.6rem);
  line-height: 162.5%;
  letter-spacing: 0.15rem;
}

.sec-works {
  padding-block: 48px 78px;
}
.sec-works__cnt {
  position: relative;
  margin-top: 48px;
}
.sec-works .works-slide__item {
  height: auto;
}
@media screen and (max-width: 1024px) {
  .sec-works .works-slide__item {
    aspect-ratio: 327/240;
  }
}
.sec-works .swiper-button-next,
.sec-works .swiper-button-prev {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(11.7333333333vw, 4.4rem);
  height: min(11.7333333333vw, 4.4rem);
  background: url(./img/icon-arw_slide.png) no-repeat center center/cover;
  border: none;
  transition: 0.4s;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-next,
  .sec-works .swiper-button-prev {
    right: 4px;
  }
}
.sec-works .swiper-button-next::after,
.sec-works .swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: 1025px) {
  .sec-works .swiper-button-next:hover,
  .sec-works .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.sec-works .swiper-button-prev {
  left: 8px;
  right: auto;
  transform: scale(-1, 1) translateY(-50%);
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-prev {
    left: 4px;
  }
}

.sec-access {
  padding-block: 48px;
  background: #464544;
  color: #fff;
}
.sec-access__cnt {
  margin-top: 40px;
}
.sec-access__name {
  font-size: min(4.8vw, 1.8rem);
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.sec-access .access-overview {
  margin-top: 16px;
  border-top: 1px solid #706f6f;
}
.sec-access .access-overview__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 8px;
  padding-inline: 16px;
  border-bottom: 1px solid #706f6f;
}
.sec-access .access-overview__label {
  width: 104px;
  font-size: min(3.7333333333vw, 1.4rem);
  line-height: normal;
}
.sec-access .access-overview__value {
  flex: 1;
  font-size: min(3.7333333333vw, 1.4rem);
  line-height: normal;
}
.sec-access__map {
  margin-top: 24px;
  aspect-ratio: 327/200;
}
.sec-access__map iframe {
  width: 100%;
  height: 100%;
}

.sec-contact {
  padding-block: 40px 80px;
}
.sec-contact__head {
  margin-bottom: 40px;
}
