@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

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

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}

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

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

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

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

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js_active {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js_active {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js_active {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js_active {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --headerHeight: 158px;
  --activeHeaderHeight: 110px;
  --minWidth: 1100px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
  --spaceMin: 80px;
}
@media screen and (max-width: 767px) {
  :root {
    --headerHeight: 85px;
    --activeHeaderHeight: 70px;
    --minWidth: 1px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
    --spaceMin: 60px;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}

body {
  font: 400 16px/2 "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #191919;
  text-align: left;
  letter-spacing: 0.06em;
}

a {
  text-decoration: none;
  color: #191919;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.6;
}

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

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

#container_wrap {
  position: relative;
  min-width: var(--minWidth);
  padding-top: var(--headerHeight);
}
@media screen and (max-width: 767px) {
  #container_wrap {
    overflow: hidden;
  }
}

.section_wrap {
  position: relative;
  margin-bottom: var(--space);
}
.section_wrap_min {
  position: relative;
  margin-bottom: var(--spaceMin);
}
.section_wrap.bg_gray {
  background-color: #F7F7F7;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section_wrap.bg_gray {
    padding: 40px 0;
  }
}
.section_wrap.bg_blue {
  background-color: #ABBBC9;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section_wrap.bg_blue {
    padding: 40px 0;
  }
}
.section_wrap.of_hidden {
  overflow: hidden;
}

.inner, .model_house_wrap h2 span, .staff_bg > a, .staff_title, .inner_lg, .inner_min02, .inner_min {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_min {
  max-width: calc(1080px + var(--sideW) * 2);
}
.inner_min02 {
  max-width: calc(900px + var(--sideW) * 2);
}
.inner_lg {
  max-width: calc(1360px + var(--sideW) * 2);
}
.inner + .inner, .model_house_wrap h2 span + .inner, .model_house_wrap h2 .inner + span, .model_house_wrap h2 span + span, .staff_bg > a + .inner, .model_house_wrap h2 .staff_bg > a + span, .staff_bg > .inner + a, .model_house_wrap h2 .staff_bg > span + a, .staff_bg > a + a, .staff_title + .inner, .model_house_wrap h2 .staff_title + span, .staff_bg > .staff_title + a, .inner + .staff_title, .model_house_wrap h2 span + .staff_title, .staff_bg > a + .staff_title, .staff_title + .staff_title, .inner_min + .inner, .model_house_wrap h2 .inner_min + span, .staff_bg > .inner_min + a, .inner_min + .staff_title, .inner_min02 + .inner, .model_house_wrap h2 .inner_min02 + span, .staff_bg > .inner_min02 + a, .inner_min02 + .staff_title, .inner_lg + .inner, .model_house_wrap h2 .inner_lg + span, .staff_bg > .inner_lg + a, .inner_lg + .staff_title, .inner + .inner_min, .model_house_wrap h2 span + .inner_min, .staff_bg > a + .inner_min, .staff_title + .inner_min, .inner_min + .inner_min, .inner_min02 + .inner_min, .inner_lg + .inner_min, .inner + .inner_min02, .model_house_wrap h2 span + .inner_min02, .staff_bg > a + .inner_min02, .staff_title + .inner_min02, .inner_min + .inner_min02, .inner_min02 + .inner_min02, .inner_lg + .inner_min02, .inner + .inner_lg, .model_house_wrap h2 span + .inner_lg, .staff_bg > a + .inner_lg, .staff_title + .inner_lg, .inner_min + .inner_lg, .inner_min02 + .inner_lg, .inner_lg + .inner_lg {
  margin-top: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px min(6.66vw, 100px);
  width: calc(1220px + var(--sideW) * 2);
  max-width: 100%;
  margin: 0 auto var(--space);
  padding: 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .split {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .split__left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .split__right {
    width: 100%;
  }
}
.split--rev {
  grid-template-columns: 340px 1fr;
}
.split:not(:has(.split__left)) {
  grid-template-columns: 1fr;
}

.home #container_wrap {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .home .header:not(.js_scroll) .global_nav .sub .sns li:nth-child(1) a, .home .header:not(.js_scroll) .global_nav .sub .sns li:nth-child(1) span {
    background-image: url(../images/ico_ig_white.svg);
  }
  .home .header:not(.js_scroll) .global_nav .sub .sns li:nth-child(2) a {
    background-image: url(../images/ico_line_white.svg);
  }
  .home .header:not(.js_scroll) .global_nav .main > li > a, .home .header:not(.js_scroll) .global_nav .main span {
    color: #fff;
  }
  .home .header:not(.js_scroll) .global_nav .main > li > a::before, .home .header:not(.js_scroll) .global_nav .main span::before {
    background-color: #fff;
  }
}
.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: var(--minWidth);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s;
  padding: 0 var(--sideW) 25px;
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 0 calc(var(--sideW) / 2) 25px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding-right: 0;
    padding-bottom: 0;
  }
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
  background-color: #fff;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .header.js_scroll {
    padding-bottom: 0;
    background-color: transparent;
  }
}
.header.js_scroll .global_nav .sub .btn a, .header.js_scroll .global_nav .sub .btn span {
  padding: 10px 15px;
}
.header__ttl {
  transition: 0.5s;
  z-index: 3;
}
.header__ttl a {
  display: block;
  width: min(13.26vw, 199px);
  aspect-ratio: 199/31;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo.svg) no-repeat center/contain;
  transition: none;
  margin-block: 15px;
}
@media screen and (max-width: 767px) {
  .header__ttl a {
    width: min(41.3vw, 155px);
  }
}
.header__nav {
  height: 100%;
}

.global_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .global_nav {
    position: fixed;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    overflow-y: scroll;
    background-color: #335A7C;
    padding: var(--headerHeight) calc(var(--sideW) * 2);
  }
}
.global_nav.active {
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: auto;
  right: 0;
}
.global_nav .sub {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 25px;
  transform: translateX(calc(var(--sideW) - 10px));
}
@media screen and (max-width: 1200px) {
  .global_nav .sub {
    transform: translateX(calc(var(--sideW) / 2 - 10px));
  }
}
@media screen and (max-width: 767px) {
  .global_nav .sub {
    order: 2;
    justify-content: center;
    transform: none;
  }
}
.global_nav .sub .sp_tel {
  display: none;
}
@media screen and (max-width: 767px) {
  .global_nav .sub .sp_tel {
    display: block;
    order: 1;
  }
  .global_nav .sub .sp_tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 2.1875em;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #fff;
    line-height: 1;
  }
  .global_nav .sub .sp_tel a::before {
    content: "";
    display: block;
    width: 38px;
    aspect-ratio: 1/1;
    background: url(../images/ico_tel_white.svg) no-repeat center/contain;
  }
  .global_nav .sub .sp_tel p {
    font-size: 0.7em;
    font-weight: 300;
    text-align: center;
    color: #fff;
  }
}
.global_nav .sub ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .global_nav .sub ul {
    justify-content: center;
    width: 100%;
  }
}
.global_nav .sub .sns {
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .global_nav .sub .sns {
    order: 3;
    justify-content: center;
  }
}
.global_nav .sub .sns li:nth-child(2) a {
  background-image: url(../images/ico_line.svg);
}
@media screen and (max-width: 767px) {
  .global_nav .sub .sns li:nth-child(2) a {
    background-image: url(../images/ico_line_white.svg);
  }
}
.global_nav .sub .sns a {
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  background: url(../images/ico_ig.svg) no-repeat center/contain;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .global_nav .sub .sns a {
    width: 38px;
    background-image: url(../images/ico_ig_white.svg);
  }
}
.global_nav .sub .sns a:hover {
  filter: drop-shadow(0px 5px 10px rgba(25, 25, 25, 0.5));
}
.global_nav .sub .btn {
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .global_nav .sub .btn {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .global_nav .sub .btn li {
    width: 100%;
  }
}
.global_nav .sub .btn li:nth-child(2) a {
  background-color: #FFDE00;
  color: #191919;
}
@media screen and (max-width: 767px) {
  .global_nav .sub .btn li:nth-child(2) a {
    color: #335A7C;
  }
}
.global_nav .sub .btn li:nth-child(2) a::before {
  background: url(../images/ico_book.svg) no-repeat center/contain;
  width: 20px;
  aspect-ratio: 20/14;
}
@media screen and (max-width: 767px) {
  .global_nav .sub .btn li:nth-child(2) a::before {
    width: 28px;
  }
}
.global_nav .sub .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background-color: #172654;
  color: #fff;
  border-radius: 0 0 10px 10px;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  min-width: 190px;
}
@media screen and (max-width: 767px) {
  .global_nav .sub .btn a {
    font-size: 1em;
    border-radius: 10px;
    background-color: #fff;
    border-radius: 0;
    color: #335A7C;
    font-weight: 700;
    padding: 25px 0;
  }
}
.global_nav .sub .btn a:hover {
  filter: drop-shadow(0px 5px 10px rgba(25, 25, 25, 0.5));
}
.global_nav .sub .btn a::before {
  content: "";
  display: block;
  width: 17px;
  aspect-ratio: 1/1;
  background: url(../images/ico_calendar_white.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .global_nav .sub .btn a::before {
    width: 23px;
    background-image: url(../images/ico_calendar.svg);
  }
}
.global_nav .main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px min(2vw, 30px);
}
@media screen and (max-width: 767px) {
  .global_nav .main {
    flex-direction: column;
  }
}
.global_nav .main a, .global_nav .main span {
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: #335A7C;
  text-align: center;
  padding-bottom: 5px;
  font-size: clamp(13px, 1.07vw, 16px);
}
@media screen and (max-width: 767px) {
  .global_nav .main a, .global_nav .main span {
    color: #fff;
    font-size: 1.25em;
    white-space: nowrap;
  }
}
.global_nav .main a:hover::before, .global_nav .main span:hover::before {
  transform: scale(1, 1);
  transform-origin: left;
}
.global_nav .main a::before, .global_nav .main span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #172654;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transition: transform 0.5s;
  transform-origin: right;
}
.global_nav .main a::after, .global_nav .main span::after {
  content: attr(data-en);
  display: block;
  font-size: 0.75em;
  font-weight: 400;
}
.global_nav .main .has_child {
  position: relative;
}
.global_nav .main .has_child:hover {
  z-index: 1;
}
.global_nav .main .has_child:hover ul {
  opacity: 1;
  height: auto;
  overflow: visible;
}
.global_nav .main .has_child ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 13px;
  white-space: nowrap;
  width: 300px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .global_nav .main .has_child ul {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    height: auto;
    overflow: visible;
    gap: 10px;
    padding-bottom: 20px;
  }
}
.global_nav .main .has_child ul li a {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: #335A7C;
  text-align: center;
  background-color: #fff;
  line-height: 45px;
}
.global_nav .main .has_child ul li a:hover {
  background-color: #335A7C;
  color: #fff;
}
.global_nav .main .has_child ul li a:hover::after {
  background-color: #fff;
}
.global_nav .main .has_child ul li a::before {
  content: none;
}
.global_nav .main .has_child ul li a::after {
  content: "";
  position: absolute;
  width: 17px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #335A7C;
  top: calc(50% - 8.5px);
  right: 12px;
}

.menu-trigger {
  display: none;
  place-content: center;
  place-items: center;
  gap: 10px;
  position: relative;
  height: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
  z-index: 3;
  transition: 0.5s;
  background-color: #335A7C;
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    display: grid;
  }
}
.menu-trigger::after {
  content: "MENU";
  display: block;
  font-size: 0.75em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #fff;
  line-height: 1;
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 35px;
  height: 24px;
  background: linear-gradient(to bottom, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px));
  transition: 0.5s;
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  top: 0;
  left: 0;
  transform-origin: center;
  transition: 0.5s;
}
.menu-trigger span::after {
  top: auto;
  bottom: 0;
}
.menu-trigger.active {
  background-color: #fff;
}
.menu-trigger.active::after {
  content: "CLOSE";
  color: #335A7C;
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: calc(50% - 1px);
  opacity: 1;
  rotate: 135deg;
  background-color: #335A7C;
}
.menu-trigger.active span::after {
  bottom: auto;
  rotate: -135deg;
}

.footer {
  padding: 100px 0 90px;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 50px;
    font-size: 1em;
  }
}
.footer .inner, .footer .model_house_wrap h2 span, .model_house_wrap h2 .footer span, .footer .staff_bg > a, .footer .staff_title, .footer .inner_min, .footer .inner_min02, .footer .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__info {
    order: 2;
  }
}
.footer__info img {
  display: block;
  width: 258px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .footer__info img {
    width: 190px;
  }
}
.footer__info p {
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .footer__info p {
    font-size: 0.875em;
  }
}
.footer__info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.footer__info ul li:nth-child(2) a {
  background-image: url(../images/ico_line.svg);
}
.footer__info ul a {
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  background: url(../images/ico_ig.svg) no-repeat center/contain;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
}
.footer__info ul a:hover {
  filter: drop-shadow(0px 5px 10px rgba(25, 25, 25, 0.5));
}
.footer__info > a {
  display: inline-block;
  position: relative;
  font-size: 0.9375em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .footer__info > a {
    font-size: 0.875em;
    margin-bottom: 30px;
  }
}
.footer__info > a:hover::after {
  transform: scale(0, 1);
  transform-origin: right;
}
.footer__info > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #191919;
  left: 0;
  bottom: 0;
  transition: transform 0.5s;
  transform-origin: left;
}
.footer__sitemap {
  display: flex;
  flex-wrap: wrap;
  padding-right: var(--sideW);
  gap: 15px min(1.66vw, 25px);
}
@media screen and (max-width: 767px) {
  .footer__sitemap {
    order: 1;
    margin-bottom: 30px;
    padding: 0;
  }
}
.footer__sitemap > ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .footer__sitemap > ul {
    gap: 5px;
    width: calc(50% - 7.5px);
  }
}
.footer__sitemap > ul:nth-child(2) > li:nth-child(3), .footer__sitemap > ul:nth-child(2) > li:nth-child(5) {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .footer__sitemap > ul:nth-child(2) > li:nth-child(3), .footer__sitemap > ul:nth-child(2) > li:nth-child(5) {
    margin-bottom: 0;
  }
}
.footer__sitemap > ul a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .footer__sitemap > ul a {
    font-size: 0.75em;
  }
}
.footer__sitemap > ul a:hover::after {
  transform: scale(1, 1);
  transform-origin: left;
}
.footer__sitemap > ul a::before {
  content: "-";
  display: block;
}
.footer__sitemap > ul a::after {
  content: "";
  position: absolute;
  width: calc(100% - 1em);
  height: 1px;
  background-color: #191919;
  left: 1em;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform 0.5s;
}
.footer__sitemap > ul ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 1em;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer__sitemap > ul ul {
    padding-left: 0.5em;
    gap: 5px;
    margin-top: 5px;
  }
}
.footer .copyright {
  width: 100%;
  font-size: 0.75em;
  font-family: "Jost", sans-serif;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    order: 3;
  }
}

.footer_zeh {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer_zeh {
    line-height: 1.6em;
    font-size: 0.875em;
    margin-top: 20px;
  }
}
.footer_zeh h1 {
  color: #191919;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.7em;
  margin-bottom: 10px;
}
.footer_zeh .target {
  margin-bottom: 10px;
}
.footer_zeh .target p {
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .footer_zeh .target p {
    line-height: 1.6em;
    font-size: 0.875em;
  }
}
.footer_zeh .zeh-table {
  margin-top: 20px;
  margin-bottom: 40px;
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
}
.footer_zeh .zeh-table th, .footer_zeh .zeh-table td {
  border: 1px solid #172654;
  padding: 12px;
  text-align: center;
}
.footer_zeh .zeh-table th {
  background-color: #172654;
  color: #FFF;
}

.main_visual {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 1;
  margin-bottom: 50px;
}
.main_visual::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 90, 124, 0.37);
  left: 0;
  top: 0;
}
.main_visual::before {
  content: "";
  position: absolute;
  width: 114.8px;
  aspect-ratio: 164/266;
  background: url(../images/mv_icon_01.svg) no-repeat center/contain;
  right: var(--sideW);
  top: calc(var(--headerHeight) + 20px);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main_visual::before {
    width: 86.8px;
    top: calc(var(--headerHeight) + 40px);
  }
}
.main_visual.js_active h2 {
  opacity: 1;
  transition-delay: 0.2s;
}
.main_visual.js_active p {
  opacity: 1;
  transition-delay: 0.6s;
}
.main_visual video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual__text {
  position: absolute;
  top: 50%;
  left: var(--sideW);
  transform: translateY(-50%);
  color: #fff;
  z-index: 1;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .main_visual__text {
    top: auto;
    bottom: 35%;
    transform: none;
  }
}
.main_visual__text h2 {
  display: inline;
  font-size: min(4vw, 3.75em);
  font-weight: 700;
  background: linear-gradient(to bottom, transparent calc(100% - 5px), #fff calc(100% - 5px));
  transition: 1s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .main_visual__text h2 {
    font-size: 10vw;
  }
}
.main_visual__text p {
  font-family: "Jost", sans-serif;
  font-size: min(1.2vw, 1.125em);
  margin-top: 30px;
  transition: 1s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .main_visual__text p {
    font-size: 0.75em;
    margin-top: 15px;
  }
}
.main_visual .top_banner {
  display: block;
  aspect-ratio: 1/1;
  width: 246px;
  position: absolute;
  z-index: 5;
  right: 65px;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .main_visual .top_banner {
    width: 180px;
    right: 4.3%;
    bottom: 30px;
  }
}
.main_visual .top_banner .img_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.main_visual .top_banner .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual .top_banner .close_banner {
  position: absolute;
  width: 34px;
  height: 34px;
  top: 0;
  right: 0;
  z-index: 6;
  transform: translate(50%, -50%);
}

.top_bnr {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_bnr {
    padding: 0 var(--sideW);
  }
}
.top_bnr .swiper {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
  padding-top: 3px;
}
@media screen and (max-width: 767px) {
  .top_bnr .swiper {
    padding: 0 var(--sideW);
  }
}
.top_bnr .swiper-wrapper {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .top_bnr .swiper-wrapper {
    margin-bottom: 20px;
  }
}
.top_bnr .swiper-slide a {
  display: block;
}
.top_bnr .swiper-slide a:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.top_bnr .swiper .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: static;
}
.top_bnr .swiper .swiper-pagination-bullet {
  width: 15px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #335A7C;
  margin: 0;
  opacity: 1;
}
.top_bnr .swiper .swiper-pagination-bullet-active {
  background-color: #191919;
}

@media screen and (max-width: 767px) {
  .top_estate .inner, .top_estate .model_house_wrap h2 span, .model_house_wrap h2 .top_estate span, .top_estate .staff_bg > a, .top_estate .staff_title, .top_estate .inner_min, .top_estate .inner_min02, .top_estate .inner_lg {
    padding: 0;
  }
}
.top_estate dt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #FFDE00;
  color: #000;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 30px 30px 0 0;
  padding: 18px 10px;
}
@media screen and (max-width: 767px) {
  .top_estate dt {
    font-size: 1.125em;
    gap: 8px;
    padding: 15px;
  }
}
.top_estate dt::before {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  background: url(../images/ico_home_black.svg) no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top_estate dt::before {
    width: 20px;
  }
}
.top_estate dd {
  padding: 35px 15px 55px;
  background: linear-gradient(rgba(51, 90, 124, 0.71), rgba(51, 90, 124, 0.71)), url(../images/top_estate_01.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top_estate dd {
    padding: 35px var(--sideW);
  }
}
.top_estate dd .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 5px 10px;
  position: relative;
  width: 1064px;
  max-width: 100%;
  font-size: 1.375em;
  color: #fff;
  font-weight: 300;
  line-height: 1.3;
  padding: 10px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .top_estate dd .title {
    font-size: 0.75em;
    padding-top: 0;
  }
}
.top_estate dd .title::before {
  content: "";
  position: absolute;
  width: 200px;
  aspect-ratio: 110/103;
  background: url(../images/ico_character.svg) no-repeat center/contain;
  right: 0;
  bottom: 110%;
}
@media screen and (max-width: 1200px) {
  .top_estate dd .title::before {
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .top_estate dd .title::before {
    width: 73px;
    bottom: auto;
    top: -30px;
    right: -20px;
  }
}
.top_estate dd .title span {
  font-size: 1.2em;
}
@media screen and (max-width: 767px) {
  .top_estate dd .title span {
    font-size: 1.3em;
  }
}
.top_estate dd .title span span {
  font-size: 2.1em;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  display: inline-block;
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .top_estate dd .title span span {
    font-size: 2.2em;
  }
}
.top_estate dd ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px min(3.73vw, 55px);
  width: 1064px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_estate dd ul {
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 10px 13px;
  }
}
.top_estate dd ul a {
  display: block;
  position: relative;
  text-align: center;
  line-height: 65px;
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 0.08em;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top_estate dd ul a {
    font-size: 0.875em;
    line-height: 45px;
  }
}
.top_estate dd ul a::after {
  content: "";
  position: absolute;
  width: 28px;
  aspect-ratio: 28/29;
  -webkit-mask: url(../images/ico_search.svg) no-repeat center/contain;
          mask: url(../images/ico_search.svg) no-repeat center/contain;
  background-color: #335A7C;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top_estate dd ul a::after {
    width: 14px;
  }
}
.top_estate dd ul a:hover {
  background-color: #335A7C;
  color: #fff;
}
.top_estate dd ul a:hover::after {
  background-color: #fff;
}

.top_land {
  overflow: hidden;
  padding-bottom: 25px;
}
.top_land .swiper {
  overflow: visible;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_land .swiper {
    margin-bottom: 30px;
    padding-right: var(--sideW);
  }
}
.top_land .swiper-slide:hover img {
  transform: scale(1.1);
}
.top_land .swiper-slide:hover .btn_more::after {
  transform: scale(0, 1);
  transform-origin: right;
}
.top_land .swiper-slide .image {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 10px;
  overflow: hidden;
}
.top_land .swiper-slide .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.top_land .swiper-slide .title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_land .swiper-slide .title {
    font-size: 1.125em;
  }
}
.top_land .swiper-slide .info {
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_land .swiper-slide .info {
    font-size: 0.75em;
    margin-bottom: 10px;
  }
}

.top_news_wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 15px;
  border-top: 5px solid #335A7C;
  border-bottom: 5px solid #335A7C;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .top_news_wrap {
    grid-template-columns: 1fr;
    border-bottom: 0 none;
    padding: 30px 0 0;
  }
}
.top_news_wrap .ttl_top_01 {
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .top_news_wrap .ttl_top_01 {
    order: 1;
  }
}
.top_news_wrap .ttl_top_01 span {
  font-size: 1.77em;
}
@media screen and (max-width: 767px) {
  .top_news_wrap .left {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .top_news_wrap .right {
    order: 2;
  }
}
.top_news_wrap .list_news {
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top_news_wrap .list_news {
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 5px solid #335A7C;
    margin-bottom: 20px;
  }
}
.top_news_wrap .list_news a {
  padding: 0;
  border: 0 none;
}
@media screen and (max-width: 767px) {
  .top_news_wrap .al_center {
    order: 3;
  }
}

.top_exhibition {
  position: relative;
  background: linear-gradient(rgba(51, 90, 124, 0.2), rgba(51, 90, 124, 0.2)), url(../images/top_exhibition_01.jpg) no-repeat center/cover;
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .top_exhibition {
    padding: 80px 0;
    background: linear-gradient(rgba(25, 25, 25, 0.5), rgba(51, 90, 124, 0.2)), url(../images/top_exhibition_01.jpg) no-repeat center/cover;
  }
}
.top_exhibition h2 {
  font-size: 3.75em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .top_exhibition h2 {
    font-size: 1.75em;
    text-align: center;
  }
}
.top_exhibition h2::before {
  content: "";
  display: block;
  width: 277px;
  aspect-ratio: 277/40;
  background: url(../images/top_exhibition_txt.svg) no-repeat center/contain;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_exhibition h2::before {
    width: 250px;
    margin: 0 auto 10px;
  }
}
.top_exhibition p {
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .top_exhibition p {
    text-align: center;
    font-size: 0.875em;
  }
}

.top_concept {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 30px min(5.06vw, 76px);
  position: relative;
  padding: 120px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_concept {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }
}
.top_concept::before {
  content: "";
  position: absolute;
  width: 45%;
  height: 100%;
  background-color: #F5F5F5;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_concept::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .top_concept .left {
    padding: 55px 0;
    background: linear-gradient(to right, #F5F5F5 calc(100% - 13.6vw), transparent calc(100% - 13.6vw));
  }
}
@media screen and (max-width: 767px) {
  .top_concept .right {
    padding: 0 var(--sideW);
  }
}
.top_concept img {
  display: block;
  width: 100%;
  height: 662px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top_concept img {
    width: 100%;
    height: auto;
    aspect-ratio: 375/332;
  }
}
.top_concept h2 {
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .top_concept h2 {
    font-size: 0.9375em;
  }
}
.top_concept h2::before {
  content: "CONCEPT";
  display: block;
  font-size: 3.88em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #F7F7F7;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top_concept h2::before {
    font-size: 3.66em;
  }
}
.top_concept strong {
  display: block;
  font-size: 2.75em;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_concept strong {
    font-size: 1.75em;
  }
}
.top_concept strong span {
  color: #335A7C;
}
.top_concept p {
  font-weight: 300;
  line-height: 2.25em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_concept p {
    font-size: 0.875em;
    line-height: 2;
    margin-bottom: 20px;
  }
}

@keyframes textAnim01 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.top_point {
  overflow: hidden;
  position: relative;
  padding-top: 240px;
  padding-bottom: 40px;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .top_point {
    padding-top: 90px;
    margin-bottom: 120px;
  }
}
.top_point--under {
  padding-top: 0;
  margin-bottom: var(--space);
}
.top_point .text_01 {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  white-space: nowrap;
  color: #335A7C;
  line-height: 1.2;
  animation: textAnim01 15s linear infinite;
  filter: drop-shadow(9px 9px 0 #F0EDE6);
}
@media screen and (max-width: 767px) {
  .top_point .text_01 {
    font-size: 4.375em;
    filter: drop-shadow(4px 5px 0 #F0EDE6);
  }
}
.top_point .text_01::after {
  content: attr(data-text);
  display: block;
  white-space: nowrap;
}
.top_point .inner_lg {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg {
    text-align: center;
  }
}
.top_point .inner_lg .text_02 {
  position: absolute;
  writing-mode: vertical-lr;
  font-size: 1.75em;
  font-weight: 700;
  border-right: 3px solid #191919;
  left: min(3.33vw, 50px);
  top: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .text_02 {
    display: inline-block;
    position: static;
    writing-mode: horizontal-tb;
    border: 0 none;
    border-bottom: 3px solid #191919;
    font-size: 1.25em;
    margin-bottom: 60px;
  }
}
.top_point .inner_lg .text_02 span {
  text-combine-upright: all;
}
.top_point .inner_lg .grid {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 50px min(8.86vw, 133px);
  padding-left: min(11.3vw, 170px);
  margin-bottom: var(--space);
  counter-increment: num;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid {
    text-align: left;
    grid-template-columns: 1fr;
    padding: 0 var(--sideW);
  }
}
.top_point .inner_lg .grid:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid:last-child h3 {
    font-size: 1.5625em;
  }
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid .left {
    order: 2;
  }
}
.top_point .inner_lg .grid h3 {
  position: relative;
  font-size: 3.125em;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid h3 {
    font-size: 1.875em;
    margin-bottom: 20px;
  }
}
.top_point .inner_lg .grid h3::before {
  content: "";
  display: block;
  width: 200px;
  aspect-ratio: 200/64;
  background: url(../images/txt_point.svg) no-repeat center/contain;
  transform: rotate(-13deg);
  transform-origin: left bottom;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid h3::before {
    width: 126px;
    margin-bottom: 10px;
  }
}
.top_point .inner_lg .grid h3 span {
  color: #335A7C;
}
.top_point .inner_lg .grid p {
  font-weight: 300;
  line-height: 2em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid p {
    font-size: 0.875em;
    margin-bottom: 20px;
  }
}
.top_point .inner_lg .grid .right {
  position: relative;
  height: 470px;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid .right {
    order: 1;
    height: 165px;
    margin-left: 15px;
  }
}
.top_point .inner_lg .grid .right::after {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  left: -0.5em;
  bottom: -0.2em;
  font-size: 11.25em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 0.7;
  color: #FFF1AB;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid .right::after {
    font-size: 5.75em;
  }
}
.top_point .inner_lg .grid .right .image {
  position: absolute;
  width: calc(100% + var(--sideW));
  height: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .top_point .inner_lg .grid .right .image {
    width: calc(100% + var(--sideW) * 2);
  }
}
.top_point .inner_lg .grid .right .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 0 50px;
}

.top_point2 {
  overflow: visible;
}

.grecaptcha_text {
  width: 100%;
  font-size: 0.75em;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .grecaptcha_text {
    order: 4;
  }
}

.top_works {
  position: relative;
  padding: 120px 0 80px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .top_works {
    padding: 80px 0 60px;
  }
}
.top_works .ttl_top_01 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(-38%);
}
.top_works .ttl_top_01::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 68px;
  background-color: #191919;
  left: calc(50% - 0.5px);
  bottom: calc(100% + 5px);
}
.top_works .list_works .address {
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .top_works .list_works .address {
    font-size: 0.875em;
  }
}

.top_staff_link {
  display: block;
}
.top_staff_link:hover {
  opacity: 0.7;
}

.top_after {
  display: grid;
  place-content: center;
  position: relative;
  height: 430px;
  background-image: url(../images/top_bg_after.jpg);
}
@media screen and (max-width: 767px) {
  .top_after {
    height: auto;
    padding: 160px 0;
  }
}
.top_after::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 90, 124, 0.57);
  top: 0;
  left: 0;
}
.top_after p {
  position: relative;
  z-index: 1;
  font-size: 2.75em;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_after p {
    font-size: 2.5em;
    text-align: center;
    transform: translateX(0.25em);
  }
}
.top_after p span {
  display: inline-block;
  transform: translateX(-0.5em);
}
@media screen and (max-width: 767px) {
  .top_after p span {
    display: block;
    transform: none;
  }
}

.top_information .inner, .top_information .model_house_wrap h2 span, .model_house_wrap h2 .top_information span, .top_information .staff_bg > a, .top_information .staff_title, .top_information .inner_min, .top_information .inner_min02, .top_information .inner_lg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px min(4.46vw, 67px);
}
@media screen and (max-width: 767px) {
  .top_information .inner, .top_information .model_house_wrap h2 span, .model_house_wrap h2 .top_information span, .top_information .staff_bg > a, .top_information .staff_title, .top_information .inner_min, .top_information .inner_min02, .top_information .inner_lg {
    grid-template-columns: 1fr;
  }
}
.top_information .left,
.top_information .right {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 767px) {
  .top_information .left,
  .top_information .right {
    display: block;
  }
}
.top_information .left > p,
.top_information .right > p {
  text-align: right;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .top_information .left > p,
  .top_information .right > p {
    text-align: left;
    padding: 0;
  }
}
.top_information .left .btn_more,
.top_information .right .btn_more {
  color: #335A7C;
  font-size: 1.25em;
}
.top_information .left .btn_ig,
.top_information .right .btn_ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1.5;
  color: #335A7C;
}
.top_information .left .btn_ig:hover::after,
.top_information .right .btn_ig:hover::after {
  transform: rotateY(360deg);
  transition: 0.5s;
}
.top_information .left .btn_ig::after,
.top_information .right .btn_ig::after {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  background: url(../images/ico_ig.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top_information .right > p {
    text-align: center;
  }
}
.top_information .ttl_top_01 {
  font-size: 1em;
  text-align: left;
}
.top_information .ttl_top_01 span {
  font-size: 2.75em;
}
.top_information .ttl_top_01 + * {
  grid-column: 1/-1;
  grid-row: 2/-1;
}
@media screen and (max-width: 767px) {
  .top_information .ttl_top_01 + * {
    margin-bottom: 30px;
  }
}
.top_information__blog {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.top_information__blog a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px min(1.866vw, 28px);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_information__blog a {
    grid-template-columns: 120px 1fr;
    gap: 20px min(6.4vw, 24px);
    align-items: start;
  }
}
.top_information__blog a:hover img {
  transform: scale(1.1);
}
.top_information__blog a:hover .title {
  color: #335A7C;
}
.top_information__blog a .image {
  overflow: hidden;
  aspect-ratio: 262/196;
  border-radius: 5px;
}
.top_information__blog a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top_information__blog a .text {
    padding-top: 10px;
  }
}
.top_information__blog a .date {
  font-size: 0.9375em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1.8;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top_information__blog a .date {
    font-size: 0.8125em;
  }
}
.top_information__blog a .title {
  font-size: 1.125em;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-bottom: 5px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top_information__blog a .title {
    font-size: 1em;
  }
}
.top_information__blog a .cat {
  display: flex;
  align-items: baseline;
  font-size: 0.9375em;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .top_information__blog a .cat {
    flex-wrap: wrap;
    position: relative;
    font-size: 0.8125em;
    margin-top: 7px;
    padding-top: 8px;
  }
}
.top_information__blog a .cat::before {
  content: "ー Category：";
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top_information__blog a .cat::before {
    content: "Category：";
    width: 100%;
  }
}
.top_information__blog a .cat::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: #191919;
  top: 0;
  left: 0;
}
.top_information__blog a .cat span::after {
  content: "、";
}
.top_information__blog a .cat span:last-child::after {
  content: none;
}

.footer_bg {
  height: 300px;
}
@media screen and (max-width: 767px) {
  .footer_bg {
    height: 250px;
  }
}

.contact_cmn {
  background-color: #335A7C;
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .contact_cmn {
    padding: 50px 0 60px;
  }
}
.contact_cmn h2 {
  color: #fff;
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .contact_cmn h2 {
    font-size: 1em;
  }
}
.contact_cmn h2::before {
  content: attr(data-en);
  display: block;
  font-size: 3em;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact_cmn h2::before {
    font-size: 2.25em;
  }
}
.contact_cmn ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul {
    flex-direction: column;
    gap: 22px;
  }
}
.contact_cmn ul .tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 45%;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .tel {
    width: 100%;
  }
}
.contact_cmn ul .tel a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(45px, 3.6vw, 54px);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .tel a {
    font-size: min(9.33vw, 35px);
  }
}
.contact_cmn ul .tel a::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background: url(../images/ico_tel_white.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .tel a::before {
    width: 1.05em;
  }
}
.contact_cmn ul .tel p {
  font-size: clamp(14px, 1.2vw, 18px);
  padding-left: calc(min(3.6vw, 54px) + 10px);
  color: #fff;
  font-weight: 300;
  line-height: 1.8;
}
.contact_cmn ul .form {
  display: flex;
  gap: 10px 0;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .form {
    flex-wrap: wrap;
    width: 100%;
  }
}
.contact_cmn ul .form a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  width: 57%;
  font-size: 1.25em;
  font-weight: 700;
  padding: 20px 0;
  color: #335A7C;
  line-height: 1.5;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .form a {
    width: 100%;
    font-size: 1.125em;
  }
}
.contact_cmn ul .form a::before {
  content: "";
  display: block;
  width: 23px;
  aspect-ratio: 23/21;
  background: url(../images/ico_calendar.svg) no-repeat center/contain;
}
.contact_cmn ul .form a:nth-child(2) {
  width: 43%;
  background-color: #FFDE00;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .form a:nth-child(2) {
    width: 100%;
  }
}
.contact_cmn ul .form a:nth-child(2)::before {
  width: 28px;
  aspect-ratio: 28/18;
  background-image: url(../images/ico_book.svg);
}
.contact_cmn ul .line {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .line {
    width: 100%;
  }
}
.contact_cmn ul .line a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px 14px;
  padding: 10px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .line a {
    display: block;
    border: 0 none;
    font-size: 0.9375em;
    text-align: center;
    padding: 0;
  }
}
.contact_cmn ul .line a::before {
  content: "";
  display: block;
  width: 64px;
  aspect-ratio: 64/61;
  background: url(../images/ico_line_green.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .contact_cmn ul .line a::before {
    width: 43px;
    margin: 0 auto 5px;
  }
}

.footer_app {
  background-color: #6A90B1;
  padding: 52px 0;
}
@media screen and (max-width: 767px) {
  .footer_app {
    padding: 60px var(--sideW) 0;
  }
}
.footer_app ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 177px;
  align-items: center;
  gap: 12px 35px;
  position: relative;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .footer_app ul {
    grid-template-columns: 1fr;
    padding: 0 0 150px;
  }
}
.footer_app ul li:first-child {
  position: relative;
  aspect-ratio: 16/9;
}
.footer_app ul li:first-child iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .footer_app ul li:last-child {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .footer_app ul li:last-child img {
    transform: translateY(30%);
  }
}
.footer_app ul li img {
  display: block;
  margin: 0 auto;
}

.hero {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .hero {
    margin-bottom: 40px;
  }
}
.hero__text {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  width: calc(1220px + var(--sideW) * 2);
  max-width: 100%;
  padding: 0 var(--sideW);
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .hero__text {
    font-size: 1em;
    margin-bottom: 30px;
  }
}
.hero__text:last-child {
  margin-bottom: 0;
}
.hero__text span {
  display: block;
  font-size: 4em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1.25;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .hero__text span {
    font-size: 2em;
  }
}
.hero__text span::first-letter {
  color: #335A7C;
}
.hero__image {
  width: 100%;
  height: 345px;
}
@media screen and (max-width: 767px) {
  .hero__image {
    height: 200px;
  }
}
.hero--layout02 {
  display: grid;
  grid-template-columns: 1fr 65.2%;
  align-items: end;
  gap: 30px 0;
}
@media screen and (max-width: 767px) {
  .hero--layout02 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
}
.hero--layout02 .text {
  padding: 0 0 30px var(--sideW);
}
@media screen and (max-width: 767px) {
  .hero--layout02 .text {
    display: contents;
  }
}
.hero--layout02 .text #list_breadcrumb {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .hero--layout02 .text #list_breadcrumb {
    order: 1;
    width: 100%;
    margin-bottom: 40px;
  }
}
.hero--layout02 .text #list_breadcrumb .inner, .hero--layout02 .text #list_breadcrumb .model_house_wrap h2 span, .model_house_wrap h2 .hero--layout02 .text #list_breadcrumb span, .hero--layout02 .text #list_breadcrumb .staff_bg > a, .hero--layout02 .text #list_breadcrumb .staff_title, .hero--layout02 .text #list_breadcrumb .inner_min, .hero--layout02 .text #list_breadcrumb .inner_min02, .hero--layout02 .text #list_breadcrumb .inner_lg {
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .hero--layout02 .text #list_breadcrumb .inner, .hero--layout02 .text #list_breadcrumb .model_house_wrap h2 span, .model_house_wrap h2 .hero--layout02 .text #list_breadcrumb span, .hero--layout02 .text #list_breadcrumb .staff_bg > a, .hero--layout02 .text #list_breadcrumb .staff_title, .hero--layout02 .text #list_breadcrumb .inner_min, .hero--layout02 .text #list_breadcrumb .inner_min02, .hero--layout02 .text #list_breadcrumb .inner_lg {
    justify-content: flex-end;
  }
}
.hero--layout02 .hero__text {
  width: auto;
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .hero--layout02 .hero__text {
    width: 100%;
    font-size: 1em;
    order: 2;
  }
}
.hero--layout02 .hero__text span {
  font-size: 2.33em;
}
.hero--layout02 .hero__image {
  height: 334px;
}
@media screen and (max-width: 767px) {
  .hero--layout02 .hero__image {
    height: 200px;
    order: 3;
  }
}
.hero--exihibition {
  margin-bottom: 0;
}
.hero--exihibition .hero__image {
  height: 450px;
}
@media screen and (max-width: 767px) {
  .hero--exihibition .hero__image {
    height: 300px;
  }
}

.concept_main {
  display: grid;
  grid-template-columns: 53% 1fr;
  align-items: start;
  gap: 30px 36px;
}
@media screen and (max-width: 767px) {
  .concept_main {
    grid-template-columns: 1fr;
  }
}
.concept_main h2 {
  font-size: 2.75em;
  font-weight: 700;
  line-height: 1.36;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .concept_main h2 {
    font-size: 1.75em;
    margin-bottom: 30px;
  }
}
.concept_main h2 span {
  color: #335A7C;
}
.concept_main p {
  font-weight: 300;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .concept_main p {
    font-size: 0.875em;
    line-height: 2;
  }
}
.concept_main p span {
  display: block;
  margin-bottom: 12px;
}
.concept_main .right {
  position: relative;
  height: 393px;
}
@media screen and (max-width: 767px) {
  .concept_main .right {
    margin: 0 calc(var(--sideW) * -1);
    height: auto;
    aspect-ratio: 67/39;
  }
}
.concept_main .image {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + var(--sideW));
  height: 100%;
}
@media screen and (max-width: 767px) {
  .concept_main .image {
    width: 100%;
  }
}
.concept_main .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 90, 124, 0.37);
}
.concept_main .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ttl_concept {
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .ttl_concept {
    font-size: 1em;
  }
}
.ttl_concept::before {
  content: "FEATURES";
  display: block;
  font-size: 3.88em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .ttl_concept::before {
    font-size: 3em;
  }
}

.concept_features {
  display: grid;
  grid-template-columns: 48.3% 1fr;
  gap: 25px min(7.33vw, 110px);
  counter-increment: num;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .concept_features {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}
.concept_features:nth-of-type(even) {
  direction: rtl;
}
@media screen and (max-width: 767px) {
  .concept_features:nth-of-type(even) .left {
    margin: 0 calc(var(--sideW) * -1) 0 0;
  }
}
.concept_features:nth-of-type(even) .left::after {
  right: auto;
  left: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .concept_features:nth-of-type(even) .left::after {
    transform: none;
  }
}
.concept_features:nth-of-type(even) .left img {
  border-radius: 50px 0 0 0;
}
.concept_features:nth-of-type(even) .right {
  direction: ltr;
}
.concept_features:last-child {
  margin-bottom: 0;
}
.concept_features .left {
  position: relative;
  height: 470px;
}
@media screen and (max-width: 767px) {
  .concept_features .left {
    height: auto;
    aspect-ratio: 59/47;
    margin-left: calc(var(--sideW) * -1);
  }
}
.concept_features .left::after {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  font-size: 11.25em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: #F0EDE6;
  right: 0;
  bottom: -40px;
  transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .concept_features .left::after {
    font-size: 5em;
    bottom: 0;
    transform: none;
  }
}
.concept_features .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 50px 0 0;
}
.concept_features h3 {
  font-size: 3.125em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .concept_features h3 {
    font-size: 2em;
  }
}
.concept_features h3 span {
  color: #335A7C;
}
.concept_features p {
  font-weight: 300;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .concept_features p {
    font-size: 0.875em;
    line-height: 2;
  }
}

.about_grid_01 {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: center;
  gap: 25px 10px;
}
@media screen and (max-width: 767px) {
  .about_grid_01 {
    grid-template-columns: 1fr;
  }
}
.about_grid_01 h2 {
  position: relative;
  font-size: 3.125em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .about_grid_01 h2 {
    font-size: 2em;
  }
}
.about_grid_01 h2::after {
  content: "";
  position: absolute;
  width: 128px;
  aspect-ratio: 128/149;
  background-color: #FFDE00;
  bottom: calc(100% - 1.3em);
  right: calc(100% - 0.9em);
  z-index: -1;
  -webkit-clip-path: polygon(75% 0, 0 0, 100% 100%);
          clip-path: polygon(75% 0, 0 0, 100% 100%);
}
@media screen and (max-width: 767px) {
  .about_grid_01 h2::after {
    width: 100px;
  }
}
.about_grid_01 h2 span {
  color: #335A7C;
}
.about_grid_01 p {
  font-weight: 300;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .about_grid_01 p {
    line-height: 2;
  }
}
.about_grid_01 p span {
  display: block;
  margin-bottom: 10px;
}

.staff_link {
  display: grid;
  place-content: center;
  position: relative;
  height: 430px;
  overflow: hidden;
  background-image: url(../images/top_bg_after.jpg);
}
@media screen and (max-width: 767px) {
  .staff_link {
    height: auto;
    padding: 160px 0;
  }
}
.staff_link::before {
  content: "CREATING A COMFORTABLE HOME";
  position: absolute;
  bottom: -0.35em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4.375em;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.29);
  white-space: nowrap;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .staff_link::before {
    font-size: 10vw;
  }
}
.staff_link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 90, 124, 0.57);
  top: 0;
  left: 0;
}
.staff_link > * {
  position: relative;
  z-index: 1;
}

.about_under {
  position: relative;
  padding-top: 300px;
}
@media screen and (max-width: 767px) {
  .about_under {
    padding-top: 200px;
  }
}
.about_under .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .about_under .image {
    height: 300px;
  }
}
.about_under .text {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 20px;
  padding: 70px min(6.66vw, 100px) 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about_under .text {
    padding: 30px 10px;
    text-align: left;
  }
}
.about_under .text h2 {
  font-size: 2.625em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  color: #335A7C;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about_under .text h2 {
    font-size: 1.25em;
    text-align: center;
  }
}
.about_under .text p {
  font-size: 1.125em;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .about_under .text p {
    font-size: 0.875em;
  }
}

.performance_bg {
  position: relative;
}
.performance_bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 35px);
  top: 35px;
  left: 0;
  background: linear-gradient(-5.78deg, #4F6171 50%, #697C8D 50%);
  z-index: -1;
  -webkit-clip-path: polygon(0 6.78%, 100% 0, 100% 93.2%, 0% 100%);
          clip-path: polygon(0 6.78%, 100% 0, 100% 93.2%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .performance_bg::after {
    -webkit-clip-path: polygon(0 2%, 100% 0, 100% 98%, 0% 100%);
            clip-path: polygon(0 2%, 100% 0, 100% 98%, 0% 100%);
    background: linear-gradient(-5.78deg, #4F6171 55%, #697C8D 55%);
  }
}

.performance_grid_01 {
  display: grid;
  grid-template-columns: 1fr 53.8%;
  gap: 15px min(6.66vw, 100px);
  color: #fff;
  margin-bottom: var(--space);
}
@media screen and (max-width: 767px) {
  .performance_grid_01 {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .performance_grid_01 > .left *, .performance_grid_01 .right * {
    order: 2;
  }
}
.performance_grid_01 .left {
  padding-top: 240px;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .left {
    padding-top: 0;
    display: contents;
  }
}
.performance_grid_01 .left h3 {
  position: relative;
  font-size: 3.75em;
  font-weight: 700;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  height: 122px;
  margin-bottom: 40px;
  line-height: 1;
  color: #FFDE00;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .left h3 {
    font-size: 2em;
    height: auto;
    writing-mode: horizontal-tb;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
.performance_grid_01 .left h3::after {
  content: attr(data-en);
  position: absolute;
  font-size: 0.333em;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.08em;
  right: calc(100% + 20px);
  top: 0;
  white-space: nowrap;
  color: #ABBBC9;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .left h3::after {
    writing-mode: horizontal-tb;
    display: block;
    position: static;
    font-size: 0.6em;
  }
}
.performance_grid_01 .left h4 {
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .left h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
}
.performance_grid_01 .left p {
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .left p {
    font-size: 0.875em;
  }
}
.performance_grid_01 .left p small {
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .right {
    display: contents;
  }
}
.performance_grid_01 .right img {
  display: block;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .right img {
    margin-bottom: 30px;
    order: 1;
  }
}
.performance_grid_01 .right strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .right strong {
    font-size: 1.25em;
  }
}
.performance_grid_01 .right strong::before {
  content: "";
  display: block;
  width: 54px;
  aspect-ratio: 54/48;
  background: url(../images/ico_check_yellow.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .right strong::before {
    width: 30px;
    flex-shrink: 0;
  }
}
.performance_grid_01 .right ul {
  display: flex;
  flex-direction: column;
  gap: 23px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .right ul {
    gap: 15px;
  }
}
.performance_grid_01 .right ul li {
  position: relative;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7;
  padding-left: 2.22em;
}
@media screen and (max-width: 767px) {
  .performance_grid_01 .right ul li {
    font-size: 0.875em;
  }
}
.performance_grid_01 .right ul li::before {
  content: "";
  position: absolute;
  width: 1.66em;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 3px;
  left: 0;
  top: 0;
}
.performance_grid_01 .right ul li::after {
  content: "";
  position: absolute;
  width: 0.833em;
  aspect-ratio: 15/11;
  top: 0.5em;
  left: 0.44em;
  background: url(../images/ico_check_02.svg) no-repeat center/contain;
}

.performance_bnr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px 70px;
}
.performance_bnr li:nth-child(2) a {
  background-image: linear-gradient(to bottom, rgba(51, 90, 124, 0.29), rgba(51, 90, 124, 0.29)), url(../images/performance_04.jpg);
}
.performance_bnr a {
  display: block;
  position: relative;
  padding: 60px 50px 55px;
  background: linear-gradient(to bottom, rgba(51, 90, 124, 0.29), rgba(51, 90, 124, 0.29)), url(../images/performance_03.jpg) no-repeat center/cover;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .performance_bnr a {
    padding: 30px 20px;
    font-size: 1.25em;
  }
}
.performance_bnr a::after {
  content: "";
  position: absolute;
  width: 29px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  right: 30px;
  top: calc(50% - 14.5px);
}
@media screen and (max-width: 767px) {
  .performance_bnr a::after {
    width: 24px;
    top: calc(50% - 12px);
    right: 10px;
  }
}
.performance_bnr a:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}

.maintenance_grid_01 {
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: center;
  gap: 25px min(5.06vw, 76px);
  margin-bottom: var(--spaceMin);
  counter-increment: num;
}
@media screen and (max-width: 767px) {
  .maintenance_grid_01 {
    grid-template-columns: 1fr;
  }
}
.maintenance_grid_01:last-child {
  margin-bottom: 0;
}
.maintenance_grid_01 .left {
  height: 364px;
}
@media screen and (max-width: 767px) {
  .maintenance_grid_01 .left {
    height: auto;
    aspect-ratio: 534/364;
  }
}
.maintenance_grid_01 .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.maintenance_grid_01 h3 {
  position: relative;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .maintenance_grid_01 h3 {
    font-size: 1.25em;
  }
}
.maintenance_grid_01 h3::before {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 2.5em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #FFDE00;
  line-height: 1;
  margin-bottom: 5px;
}
.maintenance_grid_01 h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background-color: #191919;
  margin: 18px 0 25px;
}
.maintenance_grid_01 p {
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .maintenance_grid_01 p {
    font-size: 0.875em;
  }
}

.biz_wrap .maintenance_grid_01 h3::before {
  content: none;
}

.message_01 {
  display: grid;
  grid-template-columns: 423px 1fr;
  gap: 30px 75px;
}
@media screen and (max-width: 767px) {
  .message_01 {
    grid-template-columns: 1fr;
  }
}
.message_01 .image {
  position: relative;
  aspect-ratio: 423/577;
}
@media screen and (max-width: 767px) {
  .message_01 .image {
    aspect-ratio: 3/2;
  }
}
.message_01 .image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  background-color: #ABBBC9;
  top: 135px;
  right: 93px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .message_01 .image::after {
    top: 30px;
    right: var(--sideW);
    height: 100%;
  }
}
.message_01 .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.message_01 .text {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .message_01 .text {
    padding-top: 0;
  }
}
.message_01 h2 {
  font-size: 2.625em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #335A7C;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .message_01 h2 {
    font-size: 1.5em;
  }
}
.message_01 h2::before {
  content: attr(data-en);
  display: block;
  font-size: 1.66em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
  color: #DFEAF4;
  line-height: 1.2;
}
.message_01 p {
  font-weight: 300;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .message_01 p {
    font-size: 1em;
    line-height: 2;
  }
}
.message_01 p span {
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .message_01 p span {
    margin-bottom: 15px;
  }
}
.message_01 p span:last-child {
  margin-bottom: 0;
}

.company_logo {
  background-color: #fff;
  padding: 70px min(6.66vw, 100px);
}
@media screen and (max-width: 767px) {
  .company_logo {
    padding: 30px var(--sideW);
  }
}
.company_logo h3 {
  font-size: 1.625em;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Jost", sans-serif;
  color: #335A7C;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .company_logo h3 {
    font-size: 1.5em;
  }
}
.company_logo img {
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .company_logo img {
    width: 100px;
  }
}
.company_logo p {
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company_logo p {
    font-size: 0.875em;
    text-align: left;
  }
}

.g_map_wrap .g_map {
  height: 440px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .g_map_wrap .g_map {
    height: 300px;
  }
}
.g_map_wrap .g_map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.g_map_wrap p {
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .g_map_wrap p {
    font-size: 0.875em;
  }
}
.g_map_wrap ul li {
  font-weight: 300;
  line-height: 1.8;
  padding-left: 34px;
  background: url(../images/ico_train.svg) no-repeat center left 2px/20px auto;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .g_map_wrap ul li {
    font-size: 0.875em;
    padding-left: 30px;
    background-position: top left;
  }
}
.g_map_wrap ul li:nth-child(2) {
  background-image: url(../images/ico_car.svg);
  background-size: 24px auto;
  background-position: center left;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .g_map_wrap ul li:nth-child(2) {
    background-position: top left;
  }
}

.staff_title {
  margin-bottom: 40px;
}
.staff_title h2 {
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #335A7C;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .staff_title h2 {
    font-size: 1.75em;
    margin-bottom: 15px;
  }
}
.staff_title h2::before {
  content: "";
  display: block;
  width: 111px;
  aspect-ratio: 111/17;
  background: url(../images/logo.svg) no-repeat center/contain;
  margin-bottom: 10px;
}
.staff_title a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .staff_title a {
    font-size: 1em;
  }
}
.staff_title a::after {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #335A7C;
}
@media screen and (max-width: 767px) {
  .staff_title a::after {
    width: 25px;
  }
}

.staff_footer {
  text-align: right;
}
.staff_footer .button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .staff_footer .button {
    font-size: 1em;
  }
}
.staff_footer .button::after {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #335A7C;
}
@media screen and (max-width: 767px) {
  .staff_footer .button::after {
    width: 25px;
  }
}

.img-fade {
  opacity: 1;
  transition: opacity 0.03s ease;
}

.img-fade.fade-out {
  opacity: 0;
}

.img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.1s ease-in-out;
  will-change: opacity;
}

.img-before {
  z-index: 1;
  opacity: 1;
}

.img-after {
  z-index: 2;
  opacity: 0;
}

.staff_bg {
  margin-bottom: 100px;
}
.staff_bg > a {
  display: block;
}
.model_house_wrap {
  padding: var(--space) 0;
  background-color: #697C8D;
  overflow: hidden;
}
.model_house_wrap h2 {
  position: relative;
  margin-bottom: 90px;
  padding-right: var(--sideW);
}
@media screen and (max-width: 767px) {
  .model_house_wrap h2 {
    margin-bottom: 60px;
    padding: 0;
  }
}
.model_house_wrap h2::before {
  content: "MODEL HOUSE";
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7.5em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.29);
}
@media screen and (max-width: 767px) {
  .model_house_wrap h2::before {
    display: block;
    position: static;
    font-size: 12vw;
    transform: none;
    margin-bottom: 10px;
    text-align: center;
  }
}
.model_house_wrap h2 span {
  display: block;
  font-size: 1.75em;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .model_house_wrap h2 span {
    font-size: 1.375em;
    text-align: center;
  }
}

.mh_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0;
  margin-bottom: var(--space);
}
@media screen and (max-width: 767px) {
  .mh_grid {
    grid-template-columns: 1fr;
  }
}
.mh_grid:last-child {
  margin-bottom: 0;
}
.mh_grid .left {
  position: relative;
  padding: 530px 80px 0 0;
}
@media screen and (max-width: 767px) {
  .mh_grid .left {
    padding: 0;
  }
}
.mh_grid .left .image {
  position: absolute;
  width: 850px;
  max-width: 100vw;
  height: 495px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .mh_grid .left .image {
    position: static;
    width: auto;
    height: auto;
    aspect-ratio: 85/49;
    margin: 0 calc(var(--sideW) * -1) 25px;
  }
}
.mh_grid .left .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mh_grid .left h3 {
  font-size: 2em;
  line-height: 1.44;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .mh_grid .left h3 {
    font-size: 1.5em;
  }
}
.mh_grid .left p {
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.44;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mh_grid .left p {
    font-size: 1em;
  }
}
.mh_grid .right {
  position: relative;
  z-index: 1;
  padding-top: 45px;
  margin-top: 400px;
}
@media screen and (max-width: 767px) {
  .mh_grid .right {
    padding: 30px 30px 0 0;
    margin: 0;
  }
}
.mh_grid .right::after {
  content: "";
  position: absolute;
  width: 90vw;
  height: 100%;
  background-color: #fff;
  left: -65px;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mh_grid .right::after {
    left: calc(50% - 50vw);
  }
}
.mh_grid .right strong {
  display: block;
  position: relative;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Jost", sans-serif;
  color: #335A7C;
  padding-left: 50px;
  margin-bottom: 18px;
}
.mh_grid .right strong::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 1px;
  background-color: #335A7C;
  left: 0;
  top: calc(50% - 0.5px);
}
.mh_grid .right p {
  font-size: 0.9375em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .mh_grid .right p {
    font-size: 0.875em;
  }
}
.mh_grid .right .btn_cmn_01 {
  translate: 0 50%;
}

.other_mh h2 {
  display: block;
  font-size: 1.625em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1.5;
  text-align: center;
  color: #335A7C;
  margin-bottom: 50px;
}
.other_mh ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px min(3.33vw, 50px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .other_mh ul {
    grid-template-columns: 1fr;
  }
}
.other_mh ul li > p {
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .other_mh ul li > p {
    font-size: 1.25em;
  }
}
.other_mh ul li a {
  display: block;
}
.other_mh ul li a:hover img {
  transform: scale(1.1);
}
.other_mh ul li a:hover .btn_more::after {
  transform: scale(0, 1);
}
.other_mh ul li a .image {
  aspect-ratio: 42/24;
  overflow: hidden;
  margin-bottom: 25px;
}
.other_mh ul li a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}

.sec_purchase_01 h2 {
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #335A7C;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .sec_purchase_01 h2 {
    font-size: 1.5em;
    text-align: left;
  }
}
.sec_purchase_01 h3 {
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sec_purchase_01 h3 {
    margin-bottom: 40px;
  }
}
.sec_purchase_01 h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #697C8D;
  top: calc(50% - 0.5px);
  left: 0;
}
.sec_purchase_01 h3 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 0 20px;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #335A7C;
}
@media screen and (max-width: 767px) {
  .sec_purchase_01 h3 span {
    font-size: 1.125em;
  }
}
.sec_purchase_01 ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px min(3.66vw, 55px);
}
.sec_purchase_01 ul li {
  position: relative;
  counter-increment: num;
}
.sec_purchase_01 ul li::before {
  content: counter(num, decimal-leading-zero);
  display: grid;
  place-content: center;
  position: absolute;
  width: clamp(70px, 6.33vw, 95px);
  aspect-ratio: 1/1;
  background-color: #697C8D;
  border-radius: 50%;
  top: 0;
  left: 0;
  font-size: 2.5em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .sec_purchase_01 ul li::before {
    font-size: 2em;
    left: 15px;
  }
}
.sec_purchase_01 ul li img {
  display: block;
  aspect-ratio: 37/25;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.sec_purchase_01 ul li strong {
  display: block;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #335A7C;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sec_purchase_01 ul li strong {
    font-size: 1.5em;
  }
}
.sec_purchase_01 ul li p {
  font-size: 0.9375em;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec_purchase_01 ul li p {
    font-size: 0.875em;
  }
}

.sec_purchase_02 {
  position: relative;
  overflow: hidden;
  padding-top: 95px;
}
@media screen and (max-width: 767px) {
  .sec_purchase_02 {
    padding-top: 0;
  }
}
.sec_purchase_02::before {
  content: "";
  position: absolute;
  width: calc((100% - 1015px) / 2);
  height: 100%;
  background-color: #697C8D;
  left: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 100% 95px, 100% 100%, 0 calc(100% - 95px));
          clip-path: polygon(0 0, 100% 95px, 100% 100%, 0 calc(100% - 95px));
}
@media screen and (max-width: 767px) {
  .sec_purchase_02::before {
    content: none;
  }
}
.sec_purchase_02::after {
  content: "";
  position: absolute;
  width: calc(100% - (100% - 1015px) / 2);
  height: calc(100% - 95px);
  background-color: #697C8D;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec_purchase_02::after {
    width: 100%;
    height: 100%;
  }
}
.sec_purchase_02 .inner_min {
  position: relative;
  padding-block: 120px;
  width: calc(1015px + var(--sideW) * 2);
  max-width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec_purchase_02 .inner_min {
    padding-block: 60px;
  }
}
.sec_purchase_02 h2 {
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .sec_purchase_02 h2 {
    font-size: 1.25em;
  }
}
.sec_purchase_02 ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 35px min(3.66vw, 55px);
}
@media screen and (max-width: 767px) {
  .sec_purchase_02 ul {
    padding: 25px 0;
  }
}
.sec_purchase_02 ul::after {
  content: "";
  position: absolute;
  width: 560px;
  aspect-ratio: 56/19;
  background: url(../images/purchase_bg.svg) no-repeat center/contain;
  left: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec_purchase_02 ul::after {
    opacity: 0.4;
  }
}
.sec_purchase_02 ul li {
  display: flex;
  align-items: baseline;
  gap: 11px;
  position: relative;
  font-size: 1.375em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec_purchase_02 ul li {
    font-size: 1em;
  }
}
.sec_purchase_02 ul li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.36em;
  aspect-ratio: 1/1;
  background: url(../images/ico_check_02.svg) no-repeat center/0.682em auto;
  background-color: #fff;
  border-radius: 3px;
  transform: translateY(0.25em);
}

.sec_purchase_03 ul {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 75px;
}
.sec_purchase_03 ul li {
  display: grid;
  grid-template-columns: 384px 1fr;
  align-items: center;
  gap: 45px;
  counter-increment: num;
}
@media screen and (max-width: 767px) {
  .sec_purchase_03 ul li {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.sec_purchase_03 ul li h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #335A7C;
  grid-column: 1/-1;
  padding-bottom: 15px;
  border-bottom: 1px solid #ABBBC9;
}
@media screen and (max-width: 767px) {
  .sec_purchase_03 ul li h3 {
    font-size: 1.25em;
  }
}
.sec_purchase_03 ul li h3::before {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 1.78em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
}
.sec_purchase_03 ul li h3::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 3px;
  background-color: #697C8D;
  left: 0;
  bottom: -2px;
}
.sec_purchase_03 ul li img {
  display: block;
  border-radius: 20px;
}
.sec_purchase_03 ul li p {
  font-weight: 300;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec_purchase_03 ul li p {
    font-size: 0.875em;
    line-height: 1.8;
  }
}
.sec_purchase_03 h4 {
  position: relative;
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #335A7C;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 1px solid #ABBBC9;
}
@media screen and (max-width: 767px) {
  .sec_purchase_03 h4 {
    font-size: 1.5em;
  }
}
.sec_purchase_03 h4::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 3px;
  background-color: #335A7C;
  left: calc(50% - 36px);
  bottom: -2px;
}

.hero_estate {
  position: relative;
  height: 224px;
  margin-bottom: 30px;
}
.hero_estate__text {
  position: absolute;
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .hero_estate__text {
    font-size: 2em;
  }
}
.hero_estate__text::after {
  content: attr(data-en);
  display: block;
  font-size: 0.45em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .hero_estate__text::after {
    font-size: 0.5em;
  }
}
.hero_estate img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero_estate_single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 var(--sideW);
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .hero_estate_single {
    margin-bottom: 40px;
  }
}
.hero_estate_single p {
  width: 135px;
  line-height: 43px;
  text-align: center;
  border-radius: 30px;
  font-size: 1.125em;
  font-weight: 700;
  color: #697C8D;
  border: 1px solid #697C8D;
}
@media screen and (max-width: 767px) {
  .hero_estate_single p {
    width: 120px;
    line-height: 35px;
    font-size: 1em;
  }
}
.hero_estate_single h1 {
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.33;
  color: #335A7C;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero_estate_single h1 {
    font-size: 1.5em;
  }
}

.contact_tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px min(4vw, 60px);
  position: relative;
  width: 1016px;
  max-width: 100%;
  margin: 0 auto 60px;
  border: 1px solid #697C8D;
  padding: 42px min(5.66vw, 85px);
}
@media screen and (max-width: 767px) {
  .contact_tel {
    padding-block: 20px;
    margin-bottom: 40px;
  }
}
.contact_tel--lg {
  width: auto;
}
.contact_tel::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #335A7C;
  top: -1.5px;
  left: min(5.66vw, 85px);
}
.contact_tel > p:not([class]) {
  width: 100%;
  text-align: center;
  font-size: 1.125em;
  font-weight: 300;
  color: #335A7C;
  line-height: 1.7;
  margin-bottom: -20px;
}
@media screen and (max-width: 767px) {
  .contact_tel > p:not([class]) {
    font-size: 0.875em;
  }
}
.contact_tel > strong {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 15px;
  color: #335A7C;
  border-bottom: 1px solid #335A7C;
}
@media screen and (max-width: 767px) {
  .contact_tel > strong {
    font-size: 1.125em;
  }
}
.contact_tel__catch {
  width: 100%;
  padding-bottom: 15px;
  text-align: center;
  font-size: 0.9375em;
  font-weight: 300;
  line-height: 1.8;
  border-bottom: 1px solid #335A7C;
}
@media screen and (max-width: 767px) {
  .contact_tel__catch {
    font-size: 0.875em;
    text-align: left;
  }
}
.contact_tel .tel a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.5em;
  color: #335A7C;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .contact_tel .tel a {
    font-size: min(9.33vw, 35px);
  }
}
.contact_tel .tel a::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_tel_white.svg) no-repeat center/contain;
          mask: url(../images/ico_tel_white.svg) no-repeat center/contain;
  background-color: #335A7C;
}
@media screen and (max-width: 767px) {
  .contact_tel .tel a::before {
    width: 1.05em;
  }
}
.contact_tel .tel p {
  text-align: center;
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact_tel .line {
    width: 100%;
  }
}
.contact_tel .line a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #4CAF50;
  font-size: 1.125em;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  padding: 13px;
  border-radius: 5px;
}
.contact_tel .line a:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.contact_tel .line a::before {
  content: "";
  display: block;
  width: 36px;
  aspect-ratio: 36/34;
  -webkit-mask: url(../images/ico_line_green.svg) no-repeat center/contain;
          mask: url(../images/ico_line_green.svg) no-repeat center/contain;
  background-color: #fff;
}
.contact_tel .line_02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px 12px;
  width: 100%;
}
.contact_tel .line_02 p {
  font-weight: 300;
}
.contact_tel .line_02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 155px;
  max-width: 100%;
  border-radius: 5px;
  background-color: #4CAF50;
  font-size: 0.9375em;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  padding: 5px 0;
}
.contact_tel .line_02 a:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.contact_tel .line_02 a::before {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 26/25;
  -webkit-mask: url(../images/ico_line_green.svg) no-repeat center/contain;
          mask: url(../images/ico_line_green.svg) no-repeat center/contain;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contact_tel .btn {
    width: 100%;
  }
}
.contact_tel .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 560px;
  max-width: 100%;
  font-size: 1.25em;
  font-weight: 700;
  background-color: #172654;
  color: #fff;
  padding: 18px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .contact_tel .btn a {
    font-size: 1.125em;
    padding: 12px;
  }
}
.contact_tel .btn a:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.contact_tel .btn a::before {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 28/20;
  background: url(../images/ico_mail_white.svg) no-repeat center/contain;
}
.contact_tel .btn_02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 580px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .contact_tel .btn_02 {
    grid-template-columns: 1fr;
  }
}
.contact_tel .btn_02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  max-width: 100%;
  font-size: 1.25em;
  font-weight: 700;
  background-color: #172654;
  color: #fff;
  padding: 18px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .contact_tel .btn_02 a {
    font-size: 1.125em;
    padding: 12px;
  }
}
.contact_tel .btn_02 a:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.contact_tel .btn_02 a::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 20/21;
  background: url(../images/ico_calendar_white.svg) no-repeat center/contain;
}
.contact_tel .btn_02 a:nth-child(2) {
  background-color: #FFDE00;
  color: #191919;
}
.contact_tel .btn_02 a:nth-child(2)::before {
  width: 26px;
  aspect-ratio: 26/19;
  background-image: url(../images/ico_book.svg);
}

.contact_catalog img {
  display: block;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .contact_catalog img {
    margin-bottom: 30px;
  }
}
.contact_catalog p {
  text-align: center;
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact_catalog p {
    font-size: 0.875em;
    text-align: left;
    margin-bottom: 30px;
  }
}

.land_slider {
  margin-bottom: 40px;
}
.land_slider .swiper-slide {
  aspect-ratio: 1/1;
  border: 1px solid #707070;
}
.land_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.land_slider .swiper-button-prev {
  left: 24.5%;
}
@media screen and (max-width: 767px) {
  .land_slider .swiper-button-prev {
    left: 18%;
  }
}
.land_slider .swiper-button-next {
  right: 24.5%;
}
@media screen and (max-width: 767px) {
  .land_slider .swiper-button-next {
    right: 18%;
  }
}

.land_lead {
  text-align: center;
  font-weight: 300;
  width: 740px;
  max-width: 100%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .land_lead {
    margin-bottom: 60px;
    text-align: left;
    font-size: 0.875em;
  }
}

.estate_box {
  background-color: #fff;
  padding: 60px min(6.66vw, 100px) 70px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .estate_box {
    margin-bottom: 60px;
    padding: 30px var(--sideW);
  }
}
.estate_box:last-child {
  margin-bottom: 0;
}
.estate_box h2 {
  position: relative;
  font-size: 2.5em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1.5;
  color: #335A7C;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .estate_box h2 {
    font-size: 1.5em;
    padding-left: 30px;
    margin-bottom: 25px;
  }
}
.estate_box h2::before {
  content: "";
  position: absolute;
  width: 17px;
  aspect-ratio: 1/1;
  background-color: #335A7C;
  top: calc(50% - 8.5px);
  right: calc(100% + 18px);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .estate_box h2::before {
    right: auto;
    left: 0;
  }
}
.estate_box .land_lead {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .estate_box .land_lead {
    margin-bottom: 20px;
  }
}
.estate_box--map .map_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .estate_box--map .map_wrap .map {
    width: calc(100% + var(--sideW) * 2);
    max-width: calc(100% + var(--sideW) * 2);
    margin-inline: calc(var(--sideW) * -1);
  }
}
.estate_box--map .map_wrap .address {
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .estate_box--map .map_wrap .address {
    font-size: 0.9375em;
  }
}
.estate_box--map .map_wrap .map_link {
  display: block;
  position: relative;
  font-weight: 500;
  line-height: 1.8;
  font-family: "Jost", sans-serif;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .estate_box--map .map_wrap .map_link {
    font-size: 0.9375em;
  }
}
.estate_box--map .map_wrap .map_link:hover::after {
  transform: scale(0, 1);
  transform-origin: right;
}
.estate_box--map .map_wrap .map_link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #191919;
  transition: transform 0.5s;
  transform: scale(1, 1);
  transform-origin: left;
  left: 0;
  bottom: -1px;
}
.estate_box--map h3 {
  position: relative;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .estate_box--map h3 {
    margin-bottom: 25px;
  }
}
.estate_box--map h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #335A7C;
  top: calc(50% - 0.5px);
  left: 0;
}
.estate_box--map h3 span {
  position: relative;
  display: inline-block;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 25px;
  color: #335A7C;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .estate_box--map h3 span {
    font-size: 1.25em;
  }
}
.estate_box--map ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .estate_box--map ul {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 30px 10px;
    margin-bottom: 30px;
  }
}
.estate_box--map ul img {
  width: 100%;
  -o-object-fit: 308/210;
     object-fit: 308/210;
  margin: 0 auto 15px;
}
.estate_box--map ul strong {
  display: block;
  font-size: 1.375em;
  line-height: 1.5;
  color: #335A7C;
  font-weight: 700;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .estate_box--map ul strong {
    font-size: 1.125em;
  }
}
.estate_box--map ul p {
  font-size: 0.9375em;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .estate_box--map ul p {
    font-size: 0.875em;
  }
}
.estate_box--map ul + p {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .estate_box--map ul + p {
    font-size: 0.875em;
  }
}
.estate_box--about h3 {
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #335A7C;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .estate_box--about h3 {
    font-size: 1.375em;
  }
}
.estate_box--about h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .estate_box--about h4 {
    font-size: 1em;
  }
}
.estate_box--about h4 span {
  display: inline-block;
  color: #335A7C;
}
.estate_box--about h4 span span {
  font-size: 2.25em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  margin-right: 5px;
}
.estate_box--about .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 25px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .estate_box--about .tags {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.estate_box--about .tags li {
  background-color: #697C8D;
  color: #fff;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 45px;
}
@media screen and (max-width: 767px) {
  .estate_box--about .tags li {
    font-size: 0.875em;
    line-height: 30px;
    padding: 0 20px;
  }
}
.estate_box--about .outline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 26px;
  margin-bottom: 30px;
}
.estate_box--about .outline table {
  width: calc(50% - 13px);
  border-collapse: separate;
}
@media screen and (max-width: 767px) {
  .estate_box--about .outline table {
    display: block;
    width: 100%;
  }
  .estate_box--about .outline table thead, .estate_box--about .outline table tbody, .estate_box--about .outline table tr, .estate_box--about .outline table th, .estate_box--about .outline table td {
    display: block;
    width: 100%;
  }
}
.estate_box--about .outline table th, .estate_box--about .outline table td {
  border-bottom: 1px dashed #697C8D;
  padding: 10px 0;
  font-weight: 300;
  vertical-align: top;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .estate_box--about .outline table th, .estate_box--about .outline table td {
    padding: 0 0 10px;
  }
}
.estate_box--about .outline table th {
  width: 155px;
}
@media screen and (max-width: 767px) {
  .estate_box--about .outline table th {
    width: 100%;
    padding: 10px 0 0;
    border-bottom: 0 none;
  }
}
.estate_box--about .outline + p {
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.8;
}
.estate_box--estate {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .estate_box--estate {
    padding-top: 30px;
  }
}
.estate_box--estate .estate_image {
  margin: 0 calc(var(--sideW) / 2 * -1);
}
.estate_box--estate .btn_cmn_03.js_open::after {
  transform: rotate(-90deg);
}
.estate_box--estate .btn_cmn_03::after {
  transform: rotate(90deg);
}
.estate_box--estate .estate_info {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.estate_box--estate .estate_info.js_open {
  max-height: 10000px;
  overflow: visible;
}
.estate_box--estate .estate_info .ttl_search {
  margin-inline: calc(min(6.66vw, 100px) * -1);
}
@media screen and (max-width: 767px) {
  .estate_box--estate .estate_info .ttl_search {
    margin-inline: calc(var(--sideW) * -1);
    margin-bottom: 30px;
  }
}
.estate_box--estate .estate_info .table_parent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 38px;
}
.estate_box--estate .estate_info table {
  width: calc(50% - 19px);
  border-collapse: separate;
}
@media screen and (max-width: 767px) {
  .estate_box--estate .estate_info table {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .estate_box--estate .estate_info table:not(:first-of-type) thead {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding-block: 0;
  }
}
@media screen and (max-width: 767px) {
  .estate_box--estate .estate_info table:not(:first-of-type) thead tr, .estate_box--estate .estate_info table:not(:first-of-type) thead th {
    visibility: hidden;
    line-height: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding-block: 0;
  }
}
.estate_box--estate .estate_info table th, .estate_box--estate .estate_info table td {
  padding: 8px 15px;
  border-right: 3px solid #fff;
  line-height: 1.8;
  text-align: center;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .estate_box--estate .estate_info table th, .estate_box--estate .estate_info table td {
    font-size: 0.875em;
  }
}
.estate_box--estate .estate_info table th:last-child, .estate_box--estate .estate_info table td:last-child {
  border-right: 0 none;
}
.estate_box--estate .estate_info table th {
  background-color: #335A7C;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.estate_box--estate .estate_info table td {
  padding: 12px 15px;
  font-size: 0.9375em;
  font-weight: 300;
  border-bottom: 1px dashed #697C8D;
}
@media screen and (max-width: 767px) {
  .estate_box--estate .estate_info table td {
    font-size: 0.875em;
  }
}
.estate_box--property h3 {
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: #335A7C;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .estate_box--property h3 {
    font-size: 1.125em;
  }
}

.bnr_estate {
  display: block;
}
.bnr_estate img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.construction_concept h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Jost", sans-serif;
  color: #335A7C;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .construction_concept h2 {
    font-size: 1.25em;
  }
}
.construction_concept h2::before {
  content: "";
  display: block;
  width: 35px;
  height: 1px;
  background-color: #335A7C;
}
.construction_concept p {
  font-size: 1em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .construction_concept p {
    font-size: 1em;
  }
}

.construction_point {
  display: grid;
  grid-template-columns: 58.8% 1fr;
  align-items: center;
  gap: 25px min(4.4vw, 66px);
  margin-bottom: var(--spaceMin);
}
@media screen and (max-width: 767px) {
  .construction_point {
    grid-template-columns: 1fr;
  }
}
.construction_point:first-child {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .construction_point:first-child {
    margin-top: 60px;
  }
}
.construction_point:last-child {
  margin-bottom: 0;
}
.construction_point:nth-child(even) {
  direction: rtl;
}
@media screen and (max-width: 767px) {
  .construction_point:nth-child(even) {
    direction: ltr;
  }
}
.construction_point:nth-child(even) .text {
  direction: ltr;
}
.construction_point:nth-child(even) .text h3::before {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .construction_point:nth-child(even) .text h3::before {
    text-align: left;
  }
}
.construction_point:nth-child(even) .text h3::after {
  right: auto;
  left: calc(100% + 14px);
}
@media screen and (max-width: 767px) {
  .construction_point:nth-child(even) .text h3::after {
    left: auto;
    right: calc(100% + 10px);
  }
}
.construction_point .image {
  height: 500px;
}
@media screen and (max-width: 767px) {
  .construction_point .image {
    height: auto;
    aspect-ratio: 8/5;
  }
}
.construction_point .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.construction_point .text h3 {
  position: relative;
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  transform: translateX(-0.2em);
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .construction_point .text h3 {
    font-size: 1.375em;
  }
}
.construction_point .text h3::before {
  content: "POINT";
  display: block;
  font-size: 0.5em;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #335A7C;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-left: 0.2em;
}
.construction_point .text h3::after {
  content: "";
  position: absolute;
  width: 148px;
  height: 1px;
  background-color: #335A7C;
  top: 0.55em;
  right: calc(100% + 14px);
}
@media screen and (max-width: 767px) {
  .construction_point .text h3::after {
    right: calc(100% + 10px);
  }
}
.construction_point .text p {
  font-weight: 300;
  letter-spacing: 0.08em;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .construction_point .text p {
    font-size: 0.875em;
  }
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 410px;
}
@media screen and (max-width: 767px) {
  .map {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_top_01 {
  display: block;
  font-size: 1.25em;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ttl_top_01 {
    font-size: 1em;
    margin-bottom: 30px;
  }
}
.ttl_top_01 span {
  display: block;
  font-size: 2.5em;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .ttl_top_01 span {
    font-size: 2.25em;
  }
}
.ttl_top_01 span::first-letter {
  color: #335A7C;
}

.ttl_cmn_01 {
  display: block;
  font-size: 1.25em;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    font-size: 1em;
    margin-bottom: 40px;
  }
}
.ttl_cmn_01 span {
  display: block;
  font-size: 2.5em;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 span {
    font-size: 2.25em;
  }
}
.ttl_cmn_01 span::first-letter {
  color: #335A7C;
}
.ttl_cmn_01--blue {
  color: #335A7C;
}
.ttl_cmn_01--white {
  color: #fff;
}
.ttl_cmn_01--white span::first-letter {
  color: #fff;
}
.ttl_cmn_01--min {
  font-size: 1em;
}
.ttl_cmn_01--min span {
  font-size: 2.25em;
}

.ttl_cmn_02 {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #335A7C;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 1.75em;
    margin-bottom: 40px;
  }
}
.ttl_cmn_02 img {
  display: block;
  margin: 0 auto 10px;
  width: 111px;
}

.ttl_search {
  display: block;
  position: relative;
  text-align: center;
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #335A7C;
  padding-bottom: 20px;
  margin-bottom: 75px;
  border-bottom: 1px solid #697C8D;
}
@media screen and (max-width: 767px) {
  .ttl_search {
    font-size: 1.25em;
  }
}
.ttl_search::after {
  content: "";
  position: absolute;
  width: 73px;
  height: 3px;
  background-color: #697C8D;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.ttl_search span {
  display: inline-block;
}
.ttl_search span:not(:last-child)::after {
  content: "、";
}

.list_news {
  display: flex;
  flex-direction: column;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .list_news {
    margin-bottom: 40px;
  }
}
.list_news:last-child {
  margin-bottom: 0;
}
.list_news a {
  display: grid;
  grid-template-columns: 110px auto 1fr;
  align-items: baseline;
  gap: 15px 24px;
  padding: 20px 0;
  border-bottom: 1px solid #ABBBC9;
}
@media screen and (max-width: 767px) {
  .list_news a {
    grid-template-columns: 75px auto 1fr;
    gap: 8px 12px;
    padding: 15px 0;
  }
}
.list_news a:hover .title span::after {
  transform: scale(1, 1);
  transform-origin: left;
}
.list_news a .date {
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .list_news a .date {
    font-size: 0.875em;
  }
}
.list_news a .cat {
  min-width: 103px;
  color: #fff;
  border-radius: 5px;
  line-height: 30px;
  text-align: center;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .list_news a .cat {
    min-width: 85px;
    line-height: 25px;
    font-size: 0.8125em;
  }
}
.list_news a .cat.ad {
  background-color: #335A7C;
}
.list_news a .cat.news {
  background-color: #D3CFC6;
}
.list_news a .title {
  font-weight: 300;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .list_news a .title {
    grid-column: 1/-1;
    grid-row: 2/3;
    font-size: 0.9375em;
  }
}
.list_news a .title span {
  display: inline-block;
  position: relative;
}
.list_news a .title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #191919;
  transition: transform 0.5s;
  transform: scale(0, 1);
  transform-origin: right;
  left: 0;
  bottom: -1px;
}

.list_blog {
  margin-bottom: 60px;
}
.list_blog:last-child {
  margin-bottom: 0;
}
.list_blog li {
  padding: 40px 0;
  border-bottom: 1px solid #ABBBC9;
}
@media screen and (max-width: 767px) {
  .list_blog li {
    padding: 20px 0;
  }
}
.list_blog a {
  display: grid;
  grid-template-columns: 262px 1fr;
  gap: 20px min(2.66vw, 40px);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .list_blog a {
    display: block;
  }
}
.list_blog a:hover img {
  transform: scale(1.1);
}
.list_blog a:hover .title {
  color: #335A7C;
}
.list_blog a .image {
  overflow: hidden;
  aspect-ratio: 262/196;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .list_blog a .image {
    margin-bottom: 15px;
  }
}
.list_blog a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .list_blog a .text {
    padding-top: 10px;
  }
}
.list_blog a .date {
  font-family: "Jost", sans-serif;
  line-height: 1.8;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .list_blog a .date {
    font-size: 0.875em;
  }
}
.list_blog a .title {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-bottom: 5px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .list_blog a .title {
    font-size: 1em;
  }
}
.list_blog a .cat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  position: relative;
  font-size: 0.9375em;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .list_blog a .cat {
    position: relative;
    font-size: 0.8125em;
    padding-top: 10px;
    margin-top: 10px;
  }
}
.list_blog a .cat::before {
  content: "ー Category：";
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .list_blog a .cat::before {
    content: "Category：";
  }
}
@media screen and (max-width: 767px) {
  .list_blog a .cat::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    background-color: #191919;
    top: 0;
    left: 0;
  }
}
.list_blog a .cat span:not(:last-child)::after {
  content: "、";
}
.list_blog a .expert {
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.list_blog--related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px min(3vw, 45px);
}
@media screen and (max-width: 767px) {
  .list_blog--related {
    grid-template-columns: 1fr;
  }
}
.list_blog--related li {
  padding: 0;
  border-bottom: 0 none;
}
.list_blog--related a {
  display: block;
}
.list_blog--related a .image {
  margin-bottom: 15px;
}
.list_blog--related a .expert {
  display: none;
}

.list_works {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 80px min(3vw, 45px);
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .list_works {
    gap: 30px min(3vw, 45px);
    margin-bottom: 30px;
  }
}
.list_works:last-child {
  margin-bottom: 0;
}
.list_works a {
  display: block;
}
.list_works a:hover {
  color: #335A7C;
}
.list_works a:hover img {
  transform: scale(1.1);
}
.list_works a .image {
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 18px;
}
.list_works a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.list_works a .address {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9375em;
  font-weight: 300;
  line-height: 1.5;
  color: #191919;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .list_works a .address {
    font-size: 0.875em;
  }
}
.list_works a .address::before {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background-color: #191919;
  flex-shrink: 0;
}
.list_works a .title {
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .list_works a .title {
    font-size: 1em;
  }
}

.list_estate {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}
.list_estate li {
  display: grid;
  grid-template-columns: 34% 1fr;
  align-items: start;
  gap: 25px min(4.2vw, 63px);
}
@media screen and (max-width: 767px) {
  .list_estate li {
    grid-template-columns: 1fr;
  }
}
.list_estate li .image {
  position: relative;
}
.list_estate li .image.negotiations::before, .list_estate li .image.sold::before {
  content: "商談中";
  display: grid;
  place-content: center;
  position: absolute;
  width: 86px;
  aspect-ratio: 1/1;
  background: url(../images/ico_estate.svg) no-repeat center/contain;
  top: 17px;
  left: 22px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .list_estate li .image.negotiations::before, .list_estate li .image.sold::before {
    width: 60px;
    font-size: 0.875em;
    left: 10px;
    top: 10px;
  }
}
.list_estate li .image.sold::before {
  content: "完売";
}
.list_estate li .image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 415/288;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_estate li strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 25px;
  font-size: 2em;
  color: #335A7C;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .list_estate li strong {
    font-size: 1.5em;
    gap: 5px 15px;
  }
}
.list_estate li strong span {
  display: block;
  width: 133px;
  line-height: 43px;
  border-radius: 50px;
  text-align: center;
  font-size: 0.5625em;
  color: #697C8D;
  border: 1px solid #335A7C;
}
@media screen and (max-width: 767px) {
  .list_estate li strong span {
    width: 100px;
    line-height: 30px;
    font-size: 0.7em;
  }
}
.list_estate li p {
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .list_estate li p {
    font-size: 0.875em;
  }
}
.list_estate li dl {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid #335A7C;
  border-bottom: 1px solid #335A7C;
  padding: 10px 0;
  margin-bottom: 23px;
}
.list_estate li dl dt {
  font-size: 1.25em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .list_estate li dl dt {
    font-size: 1.125em;
  }
}
.list_estate li dl dd {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25em;
  color: #335A7C;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .list_estate li dl dd {
    font-size: 1em;
  }
}
.list_estate li dl dd span {
  font-size: 2.25em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 767px) {
  .list_estate li dl dd span {
    font-size: 2em;
  }
}
.list_estate li table {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .list_estate li table th {
    width: 120px;
  }
}
.list_estate li table th, .list_estate li table td {
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 5px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .list_estate li table th, .list_estate li table td {
    font-size: 0.875em;
  }
}
.list_estate li a {
  display: block;
  width: 245px;
  line-height: 65px;
  border-radius: 40px;
  background: url(../images/ico_arrow_white.svg) no-repeat center right 15px/30px auto;
  background-color: #335A7C;
  color: #fff;
  font-size: 1.375em;
  font-family: "Jost", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .list_estate li a {
    width: 200px;
    line-height: 55px;
    font-size: 1.25em;
    background-size: 25px auto;
  }
}
.list_estate li a:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}

.list_nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 33px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .list_nav {
    margin-bottom: 60px;
    gap: 10px;
  }
}
.list_nav:last-child {
  margin-bottom: 0;
}
.list_nav a {
  display: block;
  text-align: center;
  font-size: 1.25em;
  font-weight: 300;
  line-height: 65px;
  border-radius: 5px;
  background: url(../images/ico_arrow_white.svg) no-repeat center right 9px/24px auto;
  background-color: #335A7C;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .list_nav a {
    font-size: 1em;
    line-height: 50px;
    background-position: center right 5px;
    background-size: 15px;
  }
}
.list_nav a.is_current {
  background-color: #697C8D;
}
.list_nav a:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}

.list_nav_image {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px 64px;
}
@media screen and (max-width: 767px) {
  .list_nav_image {
    padding: 0 var(--sideW);
  }
}
.list_nav_image a {
  display: block;
  padding: 0 20px;
}
.list_nav_image a:hover img {
  transform: scale(1.1);
}
.list_nav_image a .image {
  aspect-ratio: 1/1;
  margin: 0 -20px;
  overflow: hidden;
  border-radius: 10px;
}
.list_nav_image a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.list_nav_image a strong {
  display: block;
  position: relative;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 22px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .list_nav_image a strong {
    font-size: 1.375em;
  }
}
.list_nav_image a strong::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.66em;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #F7F7F7;
  transform: translateY(-55%);
}
.list_nav_image a p {
  display: inline-block;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  border-bottom: 1px solid #191919;
  padding-bottom: 2px;
}

.list_philosophy {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .list_philosophy {
    gap: 30px;
  }
}
.list_philosophy li {
  counter-increment: num;
}
.list_philosophy strong {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  color: #335A7C;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  border-bottom: 1px solid #ABBBC9;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .list_philosophy strong {
    font-size: 1.25em;
    gap: 15px;
  }
}
.list_philosophy strong::before {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 1.78em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 767px) {
  .list_philosophy strong::before {
    font-size: 1.5em;
  }
}
.list_philosophy strong::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 3px;
  background-color: #335A7C;
  left: 0;
  bottom: -2px;
}
@media screen and (max-width: 767px) {
  .list_philosophy strong::after {
    width: 60px;
  }
}
.list_philosophy p {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .list_philosophy p {
    font-size: 0.875em;
  }
}

.list_staff {
  display: flex;
  flex-direction: column;
  gap: var(--spaceMin) 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .list_staff {
    margin-bottom: 80px;
  }
}
.list_staff li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 25px min(3.6vw, 54px);
}
@media screen and (max-width: 767px) {
  .list_staff li {
    grid-template-columns: 1fr;
  }
}
.list_staff li .left {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 334/466;
}
@media screen and (max-width: 767px) {
  .list_staff li .left {
    width: 56%;
  }
}
.list_staff li .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_staff li .right {
  padding-top: 45px;
}
@media screen and (max-width: 767px) {
  .list_staff li .right {
    padding-top: 0;
  }
}
.list_staff li .post {
  font-size: 1.125em;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.77;
  color: #335A7C;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .list_staff li .post {
    font-size: 1em;
  }
}
.list_staff li .name {
  display: flex;
  align-items: center;
  gap: 5px 20px;
  position: relative;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #ABBBC9;
  padding-bottom: 18px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .list_staff li .name {
    font-size: 1.5em;
  }
}
.list_staff li .name:last-child {
  margin-bottom: 0;
}
.list_staff li .name::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 3px;
  background-color: #335A7C;
  left: 0;
  bottom: -2px;
}
.list_staff li .name span {
  display: block;
  font-size: 0.5em;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #335A7C;
}
@media screen and (max-width: 767px) {
  .list_staff li .name span {
    font-size: 0.7em;
  }
}
.list_staff li .text {
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 55px;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .list_staff li .text {
    font-size: 0.875em;
    margin-bottom: 35px;
  }
}
.list_staff li .text:last-child {
  margin-bottom: 0;
}
.list_staff li table {
  position: relative;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .list_staff li table {
    display: block;
    width: 100%;
    font-size: 0.875em;
  }
  .list_staff li table thead, .list_staff li table tbody, .list_staff li table tr, .list_staff li table th, .list_staff li table td {
    display: block;
    width: 100%;
  }
}
.list_staff li table::before, .list_staff li table::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 1px;
  background-color: #191919;
  top: -20px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .list_staff li table::before, .list_staff li table::after {
    top: -10px;
  }
}
.list_staff li table::after {
  top: auto;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .list_staff li table::after {
    bottom: -10px;
  }
}
.list_staff li table th, .list_staff li table td {
  vertical-align: top;
  line-height: 1.75;
  padding: 3px 0;
}
@media screen and (max-width: 767px) {
  .list_staff li table th, .list_staff li table td {
    padding: 5px 0;
  }
}
.list_staff li table th {
  padding-right: 15px;
  font-weight: 300;
  min-width: 155px;
}
@media screen and (max-width: 767px) {
  .list_staff li table th {
    width: 100%;
    padding-bottom: 0;
  }
}
.list_staff li table th::before {
  content: "■";
  display: inline-block;
  margin-right: 0.5em;
}
.list_staff li table td {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .list_staff li table td {
    padding-top: 0;
  }
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 40px;
}
@media screen and (max-width: 767px) {
  .list_btns {
    gap: 15px;
  }
}

.dlist_area dt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  background-color: #335A7C;
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 30px 30px 0 0;
  padding: 18px 10px;
}
@media screen and (max-width: 767px) {
  .dlist_area dt {
    font-size: 1.125em;
    gap: 8px;
    padding: 15px;
  }
}
.dlist_area dt::before {
  content: "";
  display: block;
  width: 36px;
  aspect-ratio: 1/1;
  background: url(../images/ico_home_white.svg) no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .dlist_area dt::before {
    width: 20px;
  }
}
.dlist_area dt::after {
  content: "";
  position: absolute;
  width: 100px;
  aspect-ratio: 100/93;
  background: url(../images/ico_character.svg) no-repeat center/contain;
  top: 28px;
  right: 130px;
}
@media screen and (max-width: 767px) {
  .dlist_area dt::after {
    width: 70px;
    right: -10px;
    top: -40px;
  }
}
.dlist_area dd {
  background-color: #EAF2F8;
  padding: 75px 70px 55px;
}
@media screen and (max-width: 767px) {
  .dlist_area dd {
    padding: 30px var(--sideW);
  }
}
.dlist_area dd strong {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #335A7C;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .dlist_area dd strong {
    font-size: 1.25em;
  }
}
.dlist_area dd > strong {
  position: relative;
  z-index: 1;
}
.dlist_area dd > strong::after {
  content: "";
  position: absolute;
  width: 134px;
  aspect-ratio: 134/50;
  background: url(../images/txt_area.svg) no-repeat center/contain;
  left: -20px;
  top: -32px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .dlist_area dd > strong::after {
    width: 100px;
    top: -20px;
  }
}
.dlist_area dd > strong:nth-of-type(2)::after {
  content: none;
}
.dlist_area dd .check_01 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px min(2.13vw, 32px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .dlist_area dd .check_01 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    row-gap: 10px;
  }
}
.dlist_area dd .check_01 label {
  display: block;
  background-color: #fff;
  color: #335A7C;
  padding: 18px 25px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .dlist_area dd .check_01 label {
    padding: 10px;
    font-size: 0.875em;
  }
}
.dlist_area dd .check_01 label input {
  display: none;
}
.dlist_area dd .check_01 label input:checked + span::after {
  border-color: #335A7C;
}
.dlist_area dd .check_01 label span {
  display: block;
  position: relative;
  padding-left: 2.5em;
}
.dlist_area dd .check_01 label span::before {
  content: "";
  position: absolute;
  width: 1.56em;
  aspect-ratio: 1/1;
  border: 1px solid #335A7C;
  left: 0;
  top: calc(50% - 0.78em);
}
.dlist_area dd .check_01 label span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 0.3em;
  top: calc(50% - 0.3em);
  transform: rotate(-40deg);
  transition: 0.5s;
}
.dlist_area dd .price {
  display: grid;
  grid-template-columns: 245px 1fr;
  align-items: center;
  gap: 15px min(3vw, 45px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .dlist_area dd .price {
    grid-template-columns: 1fr;
  }
}
.dlist_area dd .price strong {
  padding: 15px 0;
  margin: 0;
  border-right: 1px solid #335A7C;
}
@media screen and (max-width: 767px) {
  .dlist_area dd .price strong {
    padding: 0 0 10px;
    border: 0 none;
    border-bottom: 1px solid #335A7C;
  }
}
.dlist_area dd .check_02 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}
.dlist_area dd .check_02 label {
  display: block;
  font-size: 1.125em;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .dlist_area dd .check_02 label {
    font-size: 1em;
  }
}
.dlist_area dd .check_02 label input {
  display: none;
}
.dlist_area dd .check_02 label input:checked + span::after {
  border-color: #335A7C;
}
.dlist_area dd .check_02 label span {
  display: block;
  position: relative;
  padding-left: 2.1em;
}
.dlist_area dd .check_02 label span::before {
  content: "";
  position: absolute;
  width: 1.44em;
  aspect-ratio: 1/1;
  border: 1px solid #335A7C;
  left: 0;
  top: calc(50% - 0.72em);
}
.dlist_area dd .check_02 label span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 0.35em;
  top: calc(50% - 0.25em);
  transform: rotate(-40deg);
  transition: 0.5s;
}
.dlist_area dd button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 320px;
  max-width: 100%;
  line-height: 65px;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  background-color: #335A7C;
  border-radius: 5px;
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 auto;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .dlist_area dd button {
    font-size: 1em;
    width: 280px;
    line-height: 55px;
  }
}
.dlist_area dd button:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.dlist_area dd button::before {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_search.svg) no-repeat center/contain;
          mask: url(../images/ico_search.svg) no-repeat center/contain;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .dlist_area dd button::before {
    width: 25px;
  }
}
.dlist_area dd button.reset {
  background-color: #fff;
  border: 1px solid #335A7C;
  color: #335A7C;
}
.dlist_area dd button.reset::before {
  content: none;
}

.table_parent {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 30px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}

.table_cmn_01 {
  width: 100%;
  max-width: 1016px;
  border-collapse: separate;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .table_cmn_01 {
    display: block;
  }
  .table_cmn_01 thead, .table_cmn_01 tbody, .table_cmn_01 tr, .table_cmn_01 th, .table_cmn_01 td {
    display: block;
    width: 100%;
  }
}
.table_cmn_01:last-child {
  margin-bottom: 0;
}
.table_cmn_01 th, .table_cmn_01 td {
  vertical-align: top;
  border-bottom: 1px solid #ABBBC9;
  letter-spacing: 0.08em;
  padding: 20px 0;
}
.table_cmn_01 th {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  width: 195px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .table_cmn_01 th {
    width: 100%;
    padding: 15px 0 5px;
    font-size: 1em;
    border-bottom: 0 none;
  }
}
.table_cmn_01 td {
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .table_cmn_01 td {
    font-size: 0.875em;
    padding: 0 0 15px;
  }
}

.btn_cmn_01 {
  display: block;
  position: relative;
  width: 380px;
  max-width: 100%;
  background-color: #335A7C;
  border: 1px solid #335A7C;
  border-radius: 5px;
  color: #fff;
  font-size: 1.375em;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-family: "Jost", sans-serif;
  text-align: center;
  padding: 15px 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01 {
    font-size: 1em;
    padding: 12px 40px;
    width: 275px;
  }
}
.btn_cmn_01:last-child {
  margin-bottom: 0;
}
.btn_cmn_01:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.btn_cmn_01::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #fff;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01::after {
    width: 22px;
    right: 10px;
  }
}
.btn_cmn_01--ja {
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.btn_cmn_01--center {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01--sp_center {
    margin-inline: auto;
  }
}
.btn_cmn_01--white {
  background-color: #fff;
  border: 0 none;
  color: #335A7C;
}
.btn_cmn_01--white::after {
  background-color: #335A7C;
}

.btn_cmn_02 {
  display: block;
  position: relative;
  width: 400px;
  max-width: 100%;
  line-height: 75px;
  background-color: #fff;
  color: #335A7C;
  border: 1px solid #335A7C;
  font-size: 1.25em;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.08em;
  border-radius: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02 {
    width: 300px;
    line-height: 55px;
    font-size: 1.125em;
  }
}
.btn_cmn_02:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.btn_cmn_02::after {
  content: "";
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #335A7C;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn_cmn_02::after {
    width: 20px;
    right: 15px;
  }
}
.btn_cmn_02--blue {
  background-color: #335A7C;
  color: #fff;
}
.btn_cmn_02--blue::after {
  background-color: #fff;
}

.btn_cmn_03 {
  display: block;
  position: relative;
  width: 450px;
  max-width: 100%;
  background-color: #335A7C;
  border: 1px solid #335A7C;
  border-radius: 40px;
  color: #fff;
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 20px 40px;
  margin: 0 auto 40px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn_cmn_03 {
    font-size: 1em;
    padding: 12px 40px;
  }
}
.btn_cmn_03:last-child {
  margin-bottom: 0;
}
.btn_cmn_03:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}
.btn_cmn_03::after {
  content: "";
  position: absolute;
  width: 22px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #fff;
  right: 15px;
  top: calc(50% - 11px);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn_cmn_03::after {
    width: 22px;
    right: 10px;
  }
}

.btn_more {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1.7;
  transition: 0.5s;
}
.btn_more:hover::after {
  transform: scale(0, 1);
  transform-origin: right;
}
.btn_more::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #191919;
  left: 0;
  bottom: 0;
  transition: transform 0.5s;
  transform: scale(1, 1);
  transform-origin: left;
}

.btn_submit {
  display: block;
  width: 300px;
  line-height: 60px;
  border-radius: 30px;
  text-align: center;
  background-color: #335A7C;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: 0.5s;
  margin: 0 auto;
}
.btn_submit:hover {
  filter: drop-shadow(0 10px 10px rgba(25, 25, 25, 0.5));
  transform: translateY(-3px);
}

.post_title_wrap {
  padding-bottom: 55px;
  border-bottom: 1px solid #ABBBC9;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .post_title_wrap {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
}
.post_title_wrap .date {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .post_title_wrap .date {
    font-size: 0.875em;
  }
}
.post_title_wrap .title {
  font-size: 2.5em;
  font-weight: 700;
  color: #335A7C;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .post_title_wrap .title {
    font-size: 1.375em;
  }
}
.post_title_wrap .cat {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .post_title_wrap .cat {
    font-size: 0.875em;
  }
}
.post_title_wrap .cat::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: #191919;
  left: 0;
  top: 1em;
}
.post_title_wrap .cat span::after {
  content: "、";
}
.post_title_wrap .cat span:last-child::after {
  content: none;
}

.works_detail_title {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #335A7C;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .works_detail_title {
    font-size: 1.5em;
  }
}

.works_detail_address {
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.7;
  color: #335A7C;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .works_detail_address {
    font-size: 1em;
  }
}

.add_ttl {
  display: block;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .add_ttl {
    font-size: 1.375em;
  }
}
.add_ttl:first-child {
  margin-top: 0;
}

.add_ttl_02 {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .add_ttl_02 {
    font-size: 1.125em;
  }
}
.add_ttl_02:first-child {
  margin-top: 0;
}

.ttl_related {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid #ABBBC9;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .ttl_related {
    font-size: 1em;
    margin-bottom: 30px;
  }
}
.ttl_related span {
  display: block;
  font-size: 2.1em;
  font-family: "Jost", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.ttl_related span::first-letter {
  color: #335A7C;
}

.ttl_other {
  display: block;
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
  color: #335A7C;
  line-height: 1.5;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .ttl_other {
    font-size: 1em;
  }
}
.ttl_other::before {
  content: attr(data-en);
  display: block;
  font-size: 2.5em;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
}

.post_contents {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .post_contents {
    margin-bottom: 50px;
  }
}
.post_contents p {
  margin-top: 25px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .post_contents p {
    font-size: 0.875em;
  }
}
.post_contents p:first-child {
  margin-top: 0;
}
.post_contents img {
  display: block;
  margin-top: 35px;
}
.post_contents img:first-child {
  margin-top: 0;
}
.post_contents .table_parent {
  margin-top: 20px;
}
.post_contents .table_parent:first-child {
  margin-top: 0;
}
.post_contents table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .post_contents table {
    width: auto;
  }
}
.post_contents table:first-child {
  margin-top: 0;
}
.post_contents table tr:last-child td {
  border-bottom: 0 none;
}
.post_contents table td {
  font-size: 0.9375em;
  padding: 15px 25px;
  background-color: #F8F8F8;
  border-bottom: 8px solid #335A7C;
}
@media screen and (max-width: 767px) {
  .post_contents table td {
    font-size: 0.875em;
    padding: 10px 15px;
  }
}
.post_contents table td:first-child {
  background-color: #A3EBD9;
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: var(--headerHeight);
}
.sidebar__title {
  position: relative;
  font-family: "Jost", sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  color: #335A7C;
  padding-top: 15px;
  margin-bottom: 25px;
  border-top: 1px solid #335A7C;
}
@media screen and (max-width: 767px) {
  .sidebar__title {
    font-size: 1.25em;
    padding-top: 10px;
    margin-bottom: 15px;
  }
}
.sidebar__title::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 2px;
  background-color: #335A7C;
  left: 0;
  top: -1.5px;
}
@media screen and (max-width: 767px) {
  .sidebar__title::before {
    width: 40px;
  }
}
.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.sidebar__list a {
  display: block;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 18px 25px;
  background-color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .sidebar__list a {
    padding: 18px 15px;
  }
}
.sidebar__list a:hover {
  background-color: #335A7C;
  color: #fff;
}
.sidebar__outline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar__outline .item {
  display: grid;
  grid-template-columns: 155px 1fr;
  border-bottom: 1px dashed #172654;
  line-height: 1.8;
  font-weight: 300;
  padding-bottom: 8px;
}

.works_image {
  overflow: hidden;
  max-width: calc(900px + var(--sideW) * 2);
  margin: 0 auto 100px;
}
.works_image .works_slide {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .works_image .works_slide {
    margin-bottom: 20px;
  }
}
.works_image .works_slide .swiper-slide {
  aspect-ratio: 15/8;
  border: 1px solid #F5F5F5;
}
.works_image .works_slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.works_image .works_slide_thumb {
  overflow: visible;
}
.works_image .works_slide_thumb .swiper-slide {
  border: 1px solid transparent;
  transition: border 0.5s;
  opacity: 0.6;
  cursor: pointer;
}
.works_image .works_slide_thumb .swiper-slide-active, .works_image .works_slide_thumb .swiper-slide:hover {
  border-color: #335A7C;
  opacity: 1;
}
.works_image .works_slide_thumb img {
  width: 100%;
  aspect-ratio: 220/130;
  -o-object-fit: cover;
     object-fit: cover;
}
.works_image .works_slide_thumb .swiper-pagination-progressbar {
  position: static;
  margin-top: 20px;
  width: 340px;
  max-width: 100%;
  background-color: #ABBBC9;
}
@media screen and (max-width: 767px) {
  .works_image .works_slide_thumb .swiper-pagination-progressbar {
    margin-top: 30px;
  }
}
.works_image .works_slide_thumb .swiper-pagination-progressbar-fill {
  background-color: #335A7C;
}

.ttl_bar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #335A7C;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_bar {
    font-size: 1.375em;
  }
}
.ttl_bar:last-child {
  margin-bottom: 0;
}
.ttl_bar::before {
  content: "";
  display: block;
  width: 35px;
  height: 1px;
  background-color: #335A7C;
}

.story_text {
  font-weight: 300;
  padding-bottom: 55px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ABBBC9;
}
@media screen and (max-width: 767px) {
  .story_text {
    margin-bottom: 30px;
    padding-bottom: 25px;
    font-size: 0.875em;
  }
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------- */
.bg_parallax {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .bg_parallax {
    background-size: auto 120%;
  }
}

.img_parallax {
  position: relative;
  overflow: hidden;
}
.img_parallax img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px;
    justify-content: flex-start;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: grid;
  place-content: center;
  width: 50px;
  aspect-ratio: 1/1;
  background-color: #697C8D;
  color: #fff;
  font-size: 1.5em;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
    font-size: 1.125em;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  background-color: #335A7C;
}
.wp-pagenavi a.extend,
.wp-pagenavi span.extend {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #335A7C;
}
.wp-pagenavi a.extend::after,
.wp-pagenavi span.extend::after {
  content: none;
}

/* モーダル
---------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .modal {
    border-radius: 20px;
  }
}
.modal_close_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../images/ico_modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .modal_close_btn {
    width: 30px;
    right: 12px;
  }
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}
.modal_content {
  display: none;
  position: relative;
  width: auto;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 75px min(6.66vw, 100px) 90px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .modal_content {
    padding: 40px var(--sideW);
    border-radius: 20px;
  }
}
.modal_prev, .modal_next {
  position: absolute;
  width: var(--sideW);
  height: 100%;
  left: 0;
  top: 0;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
.modal_prev::after, .modal_next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/30px auto;
  left: 0;
  top: 0;
  transform: rotate(180deg);
}
.modal_next {
  left: auto;
  right: 0;
}
.modal_next::after {
  transform: rotate(0);
}

.modal_overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(51, 90, 124, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

/* タブ切り替え
---------------------------------------------------------- */
.js_tab .js_tab__content_item {
  display: none;
}
.js_tab .js_tab__content_item.js_active {
  display: block;
}

/* パンくず
---------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.8125em;
  font-weight: 300;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb {
    font-size: 0.75em;
    margin-bottom: 40px;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_min, #list_breadcrumb .inner_min02, #list_breadcrumb .inner_lg, #list_breadcrumb .staff_title, #list_breadcrumb .staff_bg > a, #list_breadcrumb .model_house_wrap h2 span, .model_house_wrap h2 #list_breadcrumb span {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
  line-height: 1.5em;
}

/* swiper-button
---------------------------------------------------------- */
.swiper-button {
  width: 90px;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #335A7C;
  margin: 0;
  top: calc(50% - 45px);
}
@media screen and (max-width: 767px) {
  .swiper-button {
    width: 40px;
    top: calc(50% - 20px);
  }
}
.swiper-button::after {
  content: none;
}
.swiper-button-prev {
  transform: rotate(180deg);
}

/* その他
---------------------------------------------------------- */
.lead {
  text-align: center;
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    line-height: 1.75;
    font-size: 1em;
    margin-bottom: 3em;
  }
}
.lead:last-child {
  margin-bottom: 0;
}
.lead.left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lead.sp_center {
    text-align: center;
  }
}
.lead.mb_min {
  margin-bottom: 2.5em;
}
@media screen and (max-width: 767px) {
  .lead.mb_min {
    margin-bottom: 2em;
  }
}
.lead span {
  display: block;
  margin-bottom: 0.75em;
}
.lead span:last-child {
  margin-bottom: 0;
}

.al_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .al_center--sp {
    text-align: center;
  }
}

.nolink {
  pointer-events: none;
}

.disp_ib {
  display: inline-block;
}

/* アーカイブのページネーション
---------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ABBBC9;
  padding: 25px 0 0;
  margin-bottom: var(--space);
}
@media screen and (max-width: 767px) {
  .list_pagination {
    padding: 20px 0;
    border-bottom: 1px solid #ABBBC9;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination li {
  line-height: 1.5;
}
.list_pagination li.list {
  text-align: center;
}
.list_pagination li.list a {
  color: #191919;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 1em;
  padding-bottom: 5px;
}
.list_pagination li.list a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #191919;
  left: 0;
  bottom: 0;
  transition: transform 0.5s;
  transform-origin: left;
}
.list_pagination li.list a:hover {
  text-decoration: none;
}
.list_pagination li.list a:hover::after {
  transform-origin: right;
  transform: scale(0, 1);
}
.list_pagination li a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  color: #335A7C;
  font-size: 1.25em;
  font-family: "Jost", sans-serif;
}
.list_pagination li a:hover {
  text-decoration: underline;
}

/* フォームパーツ
---------------------------------------------------------- */
.contact_wrap {
  background-color: #fff;
  padding: 60px min(6.66vw, 100px);
}
@media screen and (max-width: 767px) {
  .contact_wrap {
    padding: 30px var(--sideW);
  }
}
.contact_wrap .mail {
  background-color: #F7F7F7;
  padding: 30px 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact_wrap .mail {
    padding: var(--sideW);
  }
}
.contact_wrap .mail strong {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.7;
}
.contact_wrap .mail p {
  font-size: 0.875em;
  line-height: 1.75;
}

.dlist_form {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  margin-bottom: 40px;
}
.dlist_form .item {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: baseline;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.dlist_form .item.privacy {
  padding-top: 40px;
  border-top: 1px dashed #ABBBC9;
}
@media screen and (max-width: 767px) {
  .dlist_form .item.privacy {
    padding-top: 25px;
  }
}
.dlist_form dt {
  font-weight: 700;
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 45px;
  line-height: 22px;
  text-align: center;
  background-color: #335A7C;
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
}
.dlist_form dd .date {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .dlist_form dd .date {
    grid-template-columns: 1fr;
  }
}
.dlist_form dd .date label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 14px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .dlist_form dd .date label select {
    width: 100%;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  background-color: transparent;
  border: 1px solid #ABBBC9;
  font-weight: 300;
  line-height: 1.5;
  color: #191919;
  text-align: left;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  select,
  textarea {
    padding: 15px 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #A3A3A3;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #A3A3A3;
}

textarea {
  height: 186px;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 150px;
  }
}

select {
  width: auto;
  padding: 22px 45px 22px 20px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
}
@media screen and (max-width: 767px) {
  select {
    padding: 15px 45px 15px 10px;
  }
}

input[type=date] {
  height: 70px;
  padding: 0 20px;
  min-width: 10em;
}
@media screen and (max-width: 767px) {
  input[type=date] {
    padding: 0 10px;
    height: 56px;
  }
}

.wpcf7-form-control-wrap:has(#zip) {
  display: block;
  margin-bottom: 20px;
}
.wpcf7-form-control-wrap:has(#zip)::before {
  content: "〒";
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap:has(#zip)::before {
    margin-right: 10px;
  }
}

#zip {
  width: 280px;
}
@media screen and (max-width: 767px) {
  #zip {
    width: 150px;
  }
}

.privacy_wrap {
  border-top: 1px dashed #3B3B3B;
  border-bottom: 1px dashed #3B3B3B;
  padding: 25px 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .privacy_wrap {
    padding: 20px 0;
    margin-bottom: 25px;
  }
}
.privacy_wrap p {
  font-size: 0.875em;
}

.wpcf7-checkbox,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox.site_check,
.wpcf7-acceptance.site_check {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox.site_check,
  .wpcf7-acceptance.site_check {
    gap: 15px 25px;
  }
}
.wpcf7-checkbox.site_check .wpcf7-list-item,
.wpcf7-acceptance.site_check .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label {
  font-size: 0.875em;
  font-weight: 300;
}
.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  border-color: #335A7C;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 25px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 1.42em;
  aspect-ratio: 1/1;
  border: 1px solid #335A7C;
  left: 0;
  top: calc(50% - 0.71em);
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 0.2em;
  top: calc(50% - 0.3em);
  transform: rotate(-40deg);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    top: 8px;
    left: 3px;
  }
}

.doui .wpcf7-acceptance {
  display: block;
}
.doui .wpcf7-acceptance a {
  color: #335A7C;
  text-decoration: underline;
}
.doui .wpcf7-acceptance a:hover {
  text-decoration: none;
}
.doui + p {
  font-size: 0.8125em;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 5px;
}

.form_toggle {
  padding-top: 40px;
  border-top: 1px dashed #ABBBC9;
}
@media screen and (max-width: 767px) {
  .form_toggle {
    padding: 35px 0 0;
  }
}
.form_toggle .btn {
  position: relative;
  width: 100%;
  max-width: 900px;
  border: 1px solid #335A7C;
  border-radius: 50px;
  font-size: 0.9375em;
  font-weight: 300;
  line-height: 1.75;
  padding: 20px 35px;
  text-align: center;
  color: #335A7C;
  cursor: pointer;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form_toggle .btn {
    font-size: 0.875em;
    border-radius: 10px;
    padding: 10px 20px 10px 10px;
    line-height: 1.5;
    text-align: left;
  }
}
.form_toggle .btn::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  border-right: 1px solid #335A7C;
  border-bottom: 1px solid #335A7C;
  top: calc(50% - 5px);
  right: 20px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .form_toggle .btn::after {
    right: 5px;
  }
}
.form_toggle .btn.js_open::after {
  transform: rotate(-135deg);
}
.form_toggle .toggle_menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.form_toggle .toggle_menu.js_open {
  max-height: 1000px;
  overflow: visible;
  padding-top: 40px;
}
.form_toggle .toggle_menu .item:not(:first-child) {
  margin-top: 35px;
}

.dlist_policy {
  margin-bottom: 20px;
}
.dlist_policy:last-child {
  margin-bottom: 0;
}
.dlist_policy .item {
  margin-bottom: 70px;
}
.dlist_policy dt {
  position: relative;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #335A7C;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ABBBC9;
}
@media screen and (max-width: 767px) {
  .dlist_policy dt {
    font-size: 1.25em;
  }
}
.dlist_policy dt::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 3px;
  background-color: #335A7C;
  left: 0;
  bottom: -3px;
}
.dlist_policy dd {
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .dlist_policy dd {
    font-size: 0.875em;
  }
}
.dlist_policy dd p {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .dlist_policy dd p {
    margin-bottom: 25px;
  }
}
.dlist_policy dd p:last-child {
  margin-bottom: 0;
}
.dlist_policy dd ul {
  padding: 20px 0;
  border-top: 1px solid #ABBBC9;
  border-bottom: 1px solid #ABBBC9;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .dlist_policy dd ul {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}
.dlist_policy dd ul li::before {
  content: "■";
  display: inline-block;
  margin-right: 0.5em;
}

.policy_box .ttl {
  font-size: 1.125em;
  color: #335A7C;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .policy_box .ttl {
    font-size: 1em;
  }
}
.policy_box .txt {
  font-size: 0.9375em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .policy_box .txt {
    font-size: 0.875em;
  }
}/*# sourceMappingURL=layout.css.map */