@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:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  zoom: 1;
}

.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(20px);
  }
  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 {
  --min-with: 1000px;
  --headerHeight: 100px;
  --activeHeaderHeight: 100px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
  --spaceMin: 80px;
}
@media screen and (max-width: 960px) {
  :root {
    --min-with: 1px;
    --headerHeight: 80px;
    --activeHeaderHeight: 70px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
    --spaceMin: 60px;
  }
}

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

body {
  font: 400 16px/2 "Noto Sans JP", sans-serif;
  color: #212121;
  text-align: left;
  letter-spacing: 0.04em;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.04em;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #212121;
  transition: 0.3s;
}
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: 960px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

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

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

p {
  margin: 0;
}

.add_ttl {
  display: block;
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .add_ttl {
    font-size: 1.25em;
  }
}
.add_ttl:first-child {
  margin-top: 0;
}

.add_ttl_02 {
  display: block;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 20px;
  border-left: 7px solid #647B64;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .add_ttl_02 {
    font-size: 1.2em;
    padding-left: 10px;
  }
}
.add_ttl_02:first-child {
  margin-top: 0;
}

.add_border {
  display: inline-block;
  border-bottom: 1px solid #212121;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .add_border {
    margin-top: 40px;
  }
}
.add_border:first-child {
  margin-top: 0;
}
.add_border + .add_ttl {
  margin-top: 15px;
}

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

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

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

#container_wrap {
  position: relative;
  min-width: var(--min-with);
  padding-top: calc(var(--headerHeight) + 23px);
}
@media screen and (max-width: 960px) {
  #container_wrap {
    overflow: hidden;
    min-width: 1px;
  }
}

.page-appraisal #container_wrap {
  padding-top: 0;
}
.page-appraisal #list_breadcrumb {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(var(--headerHeight) + 23px);
  z-index: 1;
}

.home #container_wrap,
.page-housing-exhibition #container_wrap,
.parent-page-housing-exhibition #container_wrap,
.page-concept #container_wrap,
.page-company #container_wrap {
  padding-top: 0;
}
.home #list_breadcrumb,
.page-housing-exhibition #list_breadcrumb,
.parent-page-housing-exhibition #list_breadcrumb,
.page-concept #list_breadcrumb,
.page-company #list_breadcrumb {
  display: none;
}
.home .header:not(.js_scroll) .header__nav .pc_nav li::after,
.page-housing-exhibition .header:not(.js_scroll) .header__nav .pc_nav li::after,
.parent-page-housing-exhibition .header:not(.js_scroll) .header__nav .pc_nav li::after,
.page-concept .header:not(.js_scroll) .header__nav .pc_nav li::after,
.page-company .header:not(.js_scroll) .header__nav .pc_nav li::after {
  color: #fff;
}
.home .header:not(.js_scroll) .header__nav .pc_nav li a,
.page-housing-exhibition .header:not(.js_scroll) .header__nav .pc_nav li a,
.parent-page-housing-exhibition .header:not(.js_scroll) .header__nav .pc_nav li a,
.page-concept .header:not(.js_scroll) .header__nav .pc_nav li a,
.page-company .header:not(.js_scroll) .header__nav .pc_nav li a {
  color: #fff;
}
.home .header:not(.js_scroll) .menu-trigger,
.page-housing-exhibition .header:not(.js_scroll) .menu-trigger,
.parent-page-housing-exhibition .header:not(.js_scroll) .menu-trigger,
.page-concept .header:not(.js_scroll) .menu-trigger,
.page-company .header:not(.js_scroll) .menu-trigger {
  background-color: #fff;
}
.home .header:not(.js_scroll) .menu-trigger:not(.active)::after,
.page-housing-exhibition .header:not(.js_scroll) .menu-trigger:not(.active)::after,
.parent-page-housing-exhibition .header:not(.js_scroll) .menu-trigger:not(.active)::after,
.page-concept .header:not(.js_scroll) .menu-trigger:not(.active)::after,
.page-company .header:not(.js_scroll) .menu-trigger:not(.active)::after {
  color: #212121;
}
.home .header:not(.js_scroll) .menu-trigger:not(.active) span,
.page-housing-exhibition .header:not(.js_scroll) .menu-trigger:not(.active) span,
.parent-page-housing-exhibition .header:not(.js_scroll) .menu-trigger:not(.active) span,
.page-concept .header:not(.js_scroll) .menu-trigger:not(.active) span,
.page-company .header:not(.js_scroll) .menu-trigger:not(.active) span {
  background: linear-gradient(to bottom, transparent calc(50% - 0.5px), #212121 calc(50% - 0.5px), #212121 calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.home .header:not(.js_scroll) .menu-trigger:not(.active) span::before, .home .header:not(.js_scroll) .menu-trigger:not(.active) span::after,
.page-housing-exhibition .header:not(.js_scroll) .menu-trigger:not(.active) span::before,
.page-housing-exhibition .header:not(.js_scroll) .menu-trigger:not(.active) span::after,
.parent-page-housing-exhibition .header:not(.js_scroll) .menu-trigger:not(.active) span::before,
.parent-page-housing-exhibition .header:not(.js_scroll) .menu-trigger:not(.active) span::after,
.page-concept .header:not(.js_scroll) .menu-trigger:not(.active) span::before,
.page-concept .header:not(.js_scroll) .menu-trigger:not(.active) span::after,
.page-company .header:not(.js_scroll) .menu-trigger:not(.active) span::before,
.page-company .header:not(.js_scroll) .menu-trigger:not(.active) span::after {
  background-color: #212121;
}

.section_wrap {
  position: relative;
  margin-bottom: var(--space);
}
.section_wrap_min {
  position: relative;
  margin-bottom: var(--spaceMin);
}
.section_wrap:last-child {
  margin-bottom: 0;
}

.of_hidden {
  overflow: hidden;
}

.inner, .inner_lg, .inner_sm {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_sm {
  max-width: calc(930px + var(--sideW) * 2);
}
.inner_lg {
  max-width: calc(1360px + var(--sideW) * 2);
}
.inner + [class*=inner], .inner_sm + [class*=inner], .inner_lg + [class*=inner] {
  margin-top: var(--spaceMin);
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  min-width: var(--min-with);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  transition: 0.5s;
  padding: 0 0 0 var(--sideW);
  z-index: 1000;
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
  background-color: rgba(255, 255, 255, 0.8);
}
.header.js_scroll .menu-trigger {
  height: var(--activeHeaderHeight);
}
.header.active .header__logo {
  -webkit-mask: url(../images/logo.svg) no-repeat center/contain;
          mask: url(../images/logo.svg) no-repeat center/contain;
  background: #fff;
}
.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: block;
  position: relative;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  width: 200px;
  aspect-ratio: 200/54;
  background: url(../images/logo.svg) no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .header__logo {
    width: 150px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0 35px;
}
.header__nav .pc_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media screen and (max-width: 960px) {
  .header__nav .pc_nav {
    display: none;
  }
}
.header__nav .pc_nav li {
  display: flex;
  align-items: center;
  gap: 1em;
}
.header__nav .pc_nav li::after {
  content: "／";
}
.header__nav .pc_nav li:last-child::after {
  content: none;
}
.header__nav .pc_nav a {
  display: block;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
}
.header__nav .pc_nav a:hover {
  color: #647B64;
  border-bottom: 1px solid #647B64;
}

.global_nav {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #212121;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  transition: 0.5s;
  padding: 200px var(--sideW) 100px;
}
@media screen and (max-width: 960px) {
  .global_nav {
    padding: calc(var(--headerHeight) + 25px) calc(var(--sideW) / 2) 50px;
  }
}
.global_nav.active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 960px) {
  .global_nav.active .global_nav__in {
    opacity: 1;
    transition-delay: 0.3s;
  }
}
.global_nav__in {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 80px min(6.66vw, 100px);
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .global_nav__in {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 960px) {
  .global_nav .main_links {
    padding: 0 var(--sideW);
  }
}
.global_nav .main_links ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 960px) {
  .global_nav .main_links ul {
    gap: 10px;
  }
}
.global_nav .main_links ul li {
  position: relative;
  z-index: 1;
}
.global_nav__navigation {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0 min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .global_nav__navigation {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 15px;
  }
}
.global_nav__navigation .item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 960px) {
  .global_nav__navigation .item {
    gap: 10px;
  }
}
@media screen and (max-width: 960px) {
  .global_nav__navigation .item:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 15px;
    grid-column: 1/-1;
  }
}
.global_nav__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  border-left: 1px solid #727171;
  padding-left: 15px;
}
@media screen and (max-width: 960px) {
  .global_nav__list {
    padding-left: 10px;
  }
}
.global_nav__list a {
  display: block;
  position: relative;
  font-size: 0.9375em;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .global_nav__list a {
    font-size: 0.8125em;
    line-height: 1.5;
  }
}
.global_nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.global_nav__list a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: 0;
  transform-origin: right;
  transition: transform 0.3s;
  transform: scaleX(0);
}
@media screen and (max-width: 960px) {
  .global_nav__list a::after {
    content: none;
  }
}
.global_nav__list a.ico_blank {
  position: relative;
}
.global_nav__list a.ico_blank::before {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 10/9;
  background: url(../images/ico_blank.svg) no-repeat center/contain;
  position: absolute;
  left: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
}
.global_nav__sub_nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  margin-top: 10px;
}
.global_nav__sub_nav a {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.global_nav__sub_nav a::before {
  content: "-";
  display: block;
}
.global_nav__sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px min(2vw, 30px);
  grid-column: 1/-1;
}
@media screen and (max-width: 960px) {
  .global_nav__sns {
    padding: 0 var(--sideW);
  }
}
.global_nav__sns p {
  font-size: 0.9375em;
  color: #fff;
  line-height: 1.8;
}
.global_nav__sns ul {
  display: flex;
  gap: 17px;
}
.global_nav__sns ul a:hover {
  opacity: 0.6;
}
.global_nav__sns ul img {
  display: block;
}

.menu-trigger {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 8px;
  position: relative;
  aspect-ratio: 1/1;
  height: var(--headerHeight);
  cursor: pointer;
  background-color: #212121;
  transition: 0.5s;
  z-index: 2;
}
.menu-trigger::after {
  content: "MENU";
  display: block;
  font-size: 0.75em;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  margin-top: 5px;
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 35px;
  height: 23px;
  background: linear-gradient(to bottom, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px));
  transition: 0.5s;
  transform: rotate(90deg);
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: calc(100% - 14px);
  height: 1px;
  background-color: #fff;
  top: 0;
  left: calc(50% - (100% - 14px) / 2);
  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: #212121;
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: calc(50% - 1px);
  left: 0;
  opacity: 1;
  rotate: 135deg;
  width: 100%;
  background-color: #212121;
}
.menu-trigger.active span::after {
  bottom: auto;
  rotate: -135deg;
}

.footer {
  position: relative;
  overflow: hidden;
  background-color: #212121;
  padding-bottom: 75px;
}
.footer__contact {
  position: relative;
  padding-top: 160px;
  padding: 220px var(--sideW) 0;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .footer__contact {
    padding: 200px var(--sideW) 0;
  }
}
.footer__contact::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 80px);
  background: linear-gradient(to right, rgba(33, 33, 33, 0.42), rgba(33, 33, 33, 0.42)), url(../images/footer_bg.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .footer__contact::after {
    height: calc(100% - min(26vw, 100px));
  }
}
.footer__contact strong {
  display: block;
  font-size: 2.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 150px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .footer__contact strong {
    font-size: 1.5em;
  }
}
.footer__contact strong::after {
  content: attr(data-en);
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 960px) {
  .footer__contact strong::after {
    font-size: 0.75em;
    margin-top: 5px;
  }
}
.footer__contact ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  width: 1250px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .footer__contact ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
.footer__contact ul li {
  display: grid;
  grid-template-rows: auto;
}
.footer__contact ul a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  place-items: center;
  align-content: center;
  gap: 20px;
  position: relative;
  background-color: #647B64;
  color: #fff;
  padding: 40px 0 75px;
}
@media screen and (max-width: 960px) {
  .footer__contact ul a {
    gap: 10px;
    padding-block: 20px;
  }
}
.footer__contact ul a:hover {
  box-shadow: 0 18px 18px rgba(33, 33, 33, 0.5);
  transform: translateY(-3px);
}
.footer__contact ul a::after {
  content: "";
  position: absolute;
  width: 64px;
  aspect-ratio: 64/5;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .footer__contact ul a::after {
    bottom: 15px;
  }
}
.footer__contact ul a img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .footer__contact ul a img {
    transform: scale(0.8);
  }
}
.footer__contact ul a p {
  font-size: 0.875em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .footer__contact ul a p {
    font-size: 0.8125em;
  }
}
.footer__contact ul a p::before {
  content: attr(data-en);
  display: block;
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "EB Garamond", serif;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .footer__contact ul a p::before {
    font-size: 1.375em;
    margin-bottom: 2px;
  }
}
.footer__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px var(--sideW);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .footer__sns {
    padding: 40px var(--sideW);
  }
}
.footer__sns strong {
  display: block;
  position: relative;
  writing-mode: vertical-rl;
  color: #647B64;
  font-size: 1.875em;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .footer__sns strong {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
}
.footer__sns strong::after {
  content: "";
  position: absolute;
  width: 402px;
  aspect-ratio: 402/119;
  -webkit-mask: url(../images/bg_txt.svg) no-repeat center/contain;
          mask: url(../images/bg_txt.svg) no-repeat center/contain;
  background-color: #647B64;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  rotate: -11deg;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .footer__sns strong::after {
    width: 280px;
  }
}
.footer__sns_nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px min(2vw, 30px);
  grid-column: 1/-1;
}
@media screen and (max-width: 960px) {
  .footer__sns_nav {
    padding: 0 var(--sideW);
  }
}
.footer__sns_nav p {
  font-size: 0.9375em;
  color: #fff;
  line-height: 1.8;
}
.footer__sns_nav ul {
  display: flex;
  gap: 17px;
}
.footer__sns_nav ul a:hover {
  opacity: 0.6;
}
.footer__sns_nav ul img {
  display: block;
}
.footer__sitemap {
  margin-bottom: 55px;
}
@media screen and (max-width: 960px) {
  .footer__sitemap {
    margin-bottom: 45px;
  }
}
.footer__sitemap .inner, .footer__sitemap .inner_sm, .footer__sitemap .inner_lg {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px min(5vw, 75px);
}
@media screen and (max-width: 960px) {
  .footer__sitemap .inner, .footer__sitemap .inner_sm, .footer__sitemap .inner_lg {
    display: block;
  }
}
.footer__sitemap .address {
  color: #fff;
}
.footer__sitemap .address img {
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .footer__sitemap .address img {
    width: 150px;
  }
}
.footer__sitemap .address p {
  font-size: 0.9375em;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .footer__sitemap .address p {
    font-size: 0.875em;
    margin-bottom: 20px;
  }
}
.footer__sitemap .address p:last-child {
  font-size: 0.875em;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .footer__sitemap .address p:last-child {
    font-size: 0.75em;
  }
}
.footer__sitemap .address .fun p {
  font-size: 1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .footer__sitemap .address .fun p {
    font-size: 0.875em;
    text-align: center;
  }
}
.footer__sitemap .address .fun a {
  display: block;
  width: 364px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 10px;
}
.footer__sitemap .address .fun a:hover {
  box-shadow: 0 10px 10px rgba(33, 33, 33, 0.3);
}
.footer__sitemap .address .fun a img {
  display: block;
  margin: 0 auto;
  width: 153px;
}
@media screen and (max-width: 960px) {
  .footer__sitemap .address .fun a img {
    width: 120px;
  }
}
.footer .sitemap {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0 min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .footer .sitemap {
    display: none;
  }
}
.footer .sitemap .item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 960px) {
  .footer .sitemap .item {
    gap: 10px;
  }
}
@media screen and (max-width: 960px) {
  .footer .sitemap .item:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 15px;
    grid-column: 1/-1;
  }
}
.footer .sitemap__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  border-left: 1px solid #727171;
  padding-left: 15px;
}
@media screen and (max-width: 960px) {
  .footer .sitemap__list {
    padding-left: 10px;
  }
}
.footer .sitemap__list a {
  display: block;
  position: relative;
  font-size: 0.9375em;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .footer .sitemap__list a {
    font-size: 0.8125em;
    line-height: 1.5;
  }
}
.footer .sitemap__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.footer .sitemap__list a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: 0;
  transform-origin: right;
  transition: transform 0.3s;
  transform: scaleX(0);
}
@media screen and (max-width: 960px) {
  .footer .sitemap__list a::after {
    content: none;
  }
}
.footer .sitemap__list a.ico_blank {
  position: relative;
}
.footer .sitemap__list a.ico_blank::before {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 10/9;
  background: url(../images/ico_blank.svg) no-repeat center/contain;
  position: absolute;
  left: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .footer .sitemap__list a.ico_blank::before {
    width: 10px;
    left: -15px;
  }
}
.footer__text .copyright {
  color: #fff;
  font-size: 0.8125em;
}
@media screen and (max-width: 960px) {
  .footer__text .copyright {
    font-size: 0.75em;
  }
}

.main_visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  padding: 0 var(--sideW);
}
@media screen and (max-width: 960px) {
  .main_visual {
    justify-content: center;
  }
}
.main_visual__ttl {
  position: relative;
  font-family: "Noto Serif", serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  writing-mode: vertical-lr;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .main_visual__ttl {
    font-size: 1.5em;
  }
}
.main_visual__ttl::after {
  content: "";
  position: absolute;
  width: 402px;
  aspect-ratio: 402/119;
  background: url(../images/bg_txt.svg) no-repeat center/contain;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  rotate: -11deg;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .main_visual__ttl::after {
    width: 280px;
  }
}
.main_visual__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.main_visual__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual__slide .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .main_visual__slide .swiper-pagination {
    bottom: 20px;
  }
}
.main_visual__slide video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual__nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  width: 250px;
  right: var(--sideW);
  bottom: 55px;
}
@media screen and (max-width: 960px) {
  .main_visual__nav {
    display: none;
  }
}

.top_concept {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .top_concept {
    padding: 60px 0 0;
  }
}
.top_concept::before {
  content: "";
  position: absolute;
  width: 84.33vw;
  height: calc(100% - 80px);
  left: 0;
  top: 0;
  background-color: #2E2E30;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .top_concept::before {
    width: 100%;
    height: 85%;
  }
}
.top_concept .inner, .top_concept .inner_sm, .top_concept .inner_lg {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .top_concept .inner, .top_concept .inner_sm, .top_concept .inner_lg {
    display: block;
  }
}
.top_concept .text {
  padding-bottom: 110px;
}
@media screen and (max-width: 960px) {
  .top_concept .text {
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}
.top_concept .ttl {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #647B64;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 32px;
}
.top_concept .ttl::before {
  content: attr(data-en);
  display: block;
  font-size: 3.33em;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 960px) {
  .top_concept .ttl::before {
    font-size: 2.5em;
  }
}
.top_concept .ttl02 {
  position: relative;
  font-size: 3.125em;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 55px;
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 960px) {
  .top_concept .ttl02 {
    font-size: 1.75em;
    margin-bottom: 30px;
  }
}
.top_concept .ttl02::after {
  content: "";
  position: absolute;
  width: 191px;
  aspect-ratio: 191/92;
  -webkit-mask: url(../images/bg_txt.svg) no-repeat center/contain;
          mask: url(../images/bg_txt.svg) no-repeat center/contain;
  background-color: #647B64;
  left: 4em;
  bottom: -40px;
  transform: rotate(-11deg);
}
@media screen and (max-width: 960px) {
  .top_concept .ttl02::after {
    width: 160px;
  }
}
.top_concept p {
  font-family: "Noto Serif", serif;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .top_concept p {
    font-size: 0.875em;
  }
}
.top_concept p::before {
  content: "";
  display: block;
  width: 42px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, transparent 49%, #fff 50%, transparent 51%);
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .top_concept p::before {
    width: 25px;
  }
}
.top_concept figure {
  position: relative;
  width: 50vw;
  height: calc(100% + 80px);
}
@media screen and (max-width: 960px) {
  .top_concept figure {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
.top_concept figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .top_concept figure img {
    position: static;
  }
}

.top_event {
  position: relative;
  padding-top: 70px;
  margin-bottom: 180px;
}
@media screen and (max-width: 960px) {
  .top_event {
    padding-top: 60px;
    margin-bottom: 120px;
  }
}
.top_event::after {
  content: "";
  position: absolute;
  width: 81%;
  height: 405px;
  top: -80px;
  right: 0;
  z-index: -1;
  background-color: #F5F5F5;
}
@media screen and (max-width: 960px) {
  .top_event::after {
    top: -120px;
  }
}
.top_event h2 {
  font-size: 6.25em;
  font-weight: 400;
  line-height: 1;
  font-family: "EB Garamond", serif;
  color: #647B64;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .top_event h2 {
    font-size: 3.5em;
  }
}

.event_card {
  display: block;
}
.event_card:hover img {
  transform: scale(1.1);
}
.event_card:hover .ttl {
  color: #647B64;
}
.event_card figure {
  margin-bottom: 25px;
  aspect-ratio: 1/1;
}
.event_card figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.event_card .ttl {
  display: block;
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .event_card .ttl {
    font-size: 1em;
  }
}
.event_card p {
  font-size: 0.875em;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .event_card p {
    font-size: 0.75em;
  }
}

.top_slide {
  position: relative;
  padding: 50px calc(var(--sideW) * 2) 0;
  overflow: hidden;
  margin-top: -50px;
  margin: -50px 0 40px;
}
@media screen and (max-width: 960px) {
  .top_slide {
    padding: 50px var(--sideW) 0;
    margin: -50px 0 20px;
  }
}
.top_slide .swiper {
  overflow: visible;
}
.top_slide__count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: calc(var(--sideW) * 2);
  width: 100px;
}
.top_slide__count .swiper-button {
  position: static;
  width: 24px;
}
.top_slide__count .slide_num {
  display: flex;
  align-items: center;
  font-family: "EB Garamond", serif;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 1.25em;
}
.top_slide__count .slide_num .count {
  display: flex;
  align-items: center;
}
.top_slide__count .slide_num .count::after {
  content: "/";
  display: block;
}

.top_works {
  position: relative;
  padding: 40px 0 120px;
}
@media screen and (max-width: 960px) {
  .top_works {
    padding: 25px 0 60px;
  }
}
.top_works::after {
  content: "";
  position: absolute;
  width: 83.533vw;
  height: 100%;
  background: url(../images/top_bg.jpg) no-repeat center/cover;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.32;
}
.top_works h2 {
  display: block;
  position: relative;
  font-size: 1.5em;
  text-align: center;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 55px;
}
@media screen and (max-width: 960px) {
  .top_works h2 {
    font-size: 1.125em;
  }
}
.top_works h2::before {
  content: attr(data-en);
  position: absolute;
  font-size: 3.33em;
  font-family: "EB Garamond", serif;
  color: #647B64;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .top_works h2::before {
    font-size: 2.5em;
  }
}
.top_works .btn_cmn_01 {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .top_works .btn_cmn_01 {
    margin-bottom: 30px;
  }
}

.works_image_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px 63px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .works_image_list {
    gap: 20px;
  }
}
.works_image_list a {
  display: block;
  position: relative;
  aspect-ratio: 364/244;
  overflow: hidden;
}
.works_image_list a:hover img {
  transform: scale(1.1);
}
.works_image_list a:hover p {
  opacity: 1;
}
.works_image_list a figure {
  aspect-ratio: 364/244;
}
.works_image_list a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.works_image_list a p {
  display: grid;
  place-content: center;
  position: absolute;
  color: #fff;
  font-size: 1.125em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.75;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.63);
  padding: 0 20px;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .works_image_list a p {
    opacity: 1;
    height: auto;
    padding: 10px 12px;
    font-size: 0.875em;
  }
}
.works_image_list a p span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room_tour_ttl {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .room_tour_ttl {
    width: 200px;
  }
}

.list_instagram_videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: -62px;
}
@media screen and (max-width: 960px) {
  .list_instagram_videos {
    margin-top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .list_instagram_videos li:last-child {
    display: none;
  }
}
.list_instagram_videos a {
  display: block;
  position: relative;
}
.list_instagram_videos a::before {
  content: "";
  position: absolute;
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../images/ico_instagram_02.svg) no-repeat center/contain;
  left: 8px;
  top: 8px;
  z-index: 1;
}
.list_instagram_videos a video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_voice {
  background-color: #2E2E30;
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .top_voice {
    padding: 60px 0;
  }
}
.top_voice h2 {
  display: block;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif", serif;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .top_voice h2 {
    font-size: 1.75em;
  }
}
.top_voice h2::after {
  content: attr(data-en);
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 10px;
}
.top_voice .list_post a {
  color: #fff;
}
.top_voice .list_post a p::after {
  background-color: #fff;
}

.top_hinokism {
  position: relative;
  padding-top: 230px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .top_hinokism {
    padding-top: 0;
  }
}
.top_hinokism::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  background-color: #2E2E30;
  left: 0;
  top: 0;
  z-index: -1;
}
.top_hinokism .image {
  position: absolute;
  width: 61%;
  height: 567px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .top_hinokism .image {
    display: none;
  }
}
.top_hinokism .image figure {
  width: 100%;
  height: 100%;
}
.top_hinokism .text {
  position: relative;
  z-index: 1;
  width: 795px;
  max-width: 100%;
  margin-left: auto;
  padding: 85px 0 80px 75px;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text {
    padding: 40px 12px;
    margin: 0 -10px;
    max-width: none;
    width: auto;
  }
}
.top_hinokism .text::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text::after {
    width: 100%;
  }
}
.top_hinokism .text h2 {
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text h2 img {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
}
.top_hinokism .text h3 {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Noto Serif", serif;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text h3 {
    font-size: 1.375em;
  }
}
.top_hinokism .text p {
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text p {
    font-size: 0.875em;
  }
}
.top_hinokism .text p:last-child {
  margin-bottom: 0;
}
.top_hinokism .text ul li {
  border-bottom: 1px solid #212121;
}
.top_hinokism .text ul li:last-child {
  border-bottom: none;
}
.top_hinokism .text ul li a {
  display: block;
  position: relative;
  padding: 25px 0;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text ul li a {
    padding: 15px 0;
  }
}
.top_hinokism .text ul li a:hover {
  background-color: #647B64;
  color: #fff;
  padding-left: 25px;
}
.top_hinokism .text ul li a:hover::after {
  right: 10px;
  background-color: #fff;
}
.top_hinokism .text ul li a::after {
  content: "";
  position: absolute;
  width: 36px;
  aspect-ratio: 36/3;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat right center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat right center/contain;
  background-color: #212121;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text ul li a::after {
    width: 20px;
    top: 30px;
    transform: none;
  }
}
.top_hinokism .text ul li a h4 {
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text ul li a h4 {
    font-size: 1.125em;
  }
}
.top_hinokism .text ul li a p {
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .top_hinokism .text ul li a p {
    font-size: 0.8125em;
  }
}

.top_staff {
  overflow: hidden;
}
.top_staff .inner, .top_staff .inner_sm, .top_staff .inner_lg {
  position: relative;
  padding: 65px 0 100px;
}
@media screen and (max-width: 960px) {
  .top_staff .inner, .top_staff .inner_sm, .top_staff .inner_lg {
    padding: 30px var(--sideW) 60px;
  }
}
.top_staff .inner::after, .top_staff .inner_sm::after, .top_staff .inner_lg::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: calc(100% + 114px);
  background-color: #727171;
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
}

.staff_slider .swiper-wrapper {
  transition-timing-function: linear;
}
.staff_slider .swiper-slide {
  width: 265px;
  aspect-ratio: 530/738;
}
@media screen and (max-width: 960px) {
  .staff_slider .swiper-slide {
    width: auto;
  }
}
.staff_slider .swiper-slide.is-even {
  margin-top: 38px;
}
.staff_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_post {
  background: linear-gradient(to bottom, #727171 calc(100% - 200px), transparent calc(100% - 200px));
}
@media screen and (max-width: 960px) {
  .top_post {
    background: linear-gradient(to bottom, #727171 calc(100% - 140px), transparent calc(100% - 140px));
  }
}
.top_post .inner, .top_post .inner_sm, .top_post .inner_lg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .top_post .inner, .top_post .inner_sm, .top_post .inner_lg {
    grid-template-columns: 1fr;
  }
}
.top_post h2 {
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .top_post h2 {
    margin-bottom: 30px;
  }
}
.top_post h2::before {
  content: attr(data-en);
  display: block;
  font-size: 3.25em;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .top_post h2::before {
    font-size: 2.5em;
  }
}
.top_post .btn_ig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-size: 1.25em;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
}
.top_post .btn_ig:hover {
  text-decoration: underline;
}
.top_post .btn_ig::before {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_instagram_02.svg) no-repeat center/contain;
          mask: url(../images/ico_instagram_02.svg) no-repeat center/contain;
  background-color: #fff;
}
.top_post .list_blog {
  gap: 40px 0;
}
@media screen and (max-width: 960px) {
  .top_post .list_blog {
    gap: 40px;
    margin-bottom: 30px;
  }
}
.top_post .list_blog a {
  color: #fff;
}
@media screen and (min-width: 961px) {
  .top_post .list_blog a {
    display: grid;
    grid-template-columns: 215px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 10px 35px;
  }
  .top_post .list_blog a figure {
    aspect-ratio: 215/160;
    margin: 0;
    grid-row: 1/-1;
  }
}
.top_post .top_owners_life {
  margin-top: 90px;
}
@media screen and (max-width: 960px) {
  .top_post .top_owners_life {
    margin-top: 60px;
  }
}
.top_post .top_owners_life .inner, .top_post .top_owners_life .inner_sm, .top_post .top_owners_life .inner_lg {
  display: block;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .top_post .top_owners_life .inner, .top_post .top_owners_life .inner_sm, .top_post .top_owners_life .inner_lg {
    margin-bottom: 30px;
  }
}
.top_post .top_owners_life h2 {
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 35px;
}
.top_post .top_owners_life h2::before {
  content: "";
  display: block;
  width: 370px;
  max-width: 100%;
  aspect-ratio: 370/122;
  background: url(../images/txt_owners.svg) no-repeat center/contain;
  margin: 0 auto 5px;
}
@media screen and (max-width: 960px) {
  .top_post .top_owners_life h2::before {
    width: 200px;
  }
}
.top_post .top_owners_life .swiper-wrapper {
  transition-timing-function: linear;
}
.top_post .top_owners_life .swiper-slide {
  width: 290px;
}
@media screen and (max-width: 960px) {
  .top_post .top_owners_life .swiper-slide {
    width: 200px;
  }
}
.top_post .top_owners_life .swiper-slide a {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.top_post .top_owners_life .swiper-slide a:hover img {
  transform: scale(1.1);
}
.top_post .top_owners_life .swiper-slide a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_sale .ttl_wrap {
  display: grid;
  grid-template-columns: auto 60%;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .top_sale .ttl_wrap {
    display: block;
    margin-bottom: 25px;
  }
}
.top_sale .ttl_wrap .ttl_top_01 {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .top_sale .ttl_wrap .ttl_top_01 {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 960px) {
  .top_sale .ttl_wrap p {
    font-size: 0.875em;
  }
}
.top_sale .top_slide {
  margin-block: 0 50px;
}
@media screen and (max-width: 960px) {
  .top_sale .top_slide {
    margin-bottom: 30px;
  }
}
.top_sale .top_slide--openhouse .sales_card figure {
  aspect-ratio: 1/1;
}

.sales_card {
  display: block;
}
.sales_card:hover img {
  transform: scale(1.1);
}
.sales_card .address {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.5;
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 18px;
}
@media screen and (max-width: 960px) {
  .sales_card .address {
    font-size: 0.875em;
    margin-bottom: 12px;
  }
}
.sales_card .address::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 20/26;
  background: url(../images/ico_address.svg) no-repeat center/contain;
}
.sales_card figure {
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 573/348;
}
@media screen and (max-width: 960px) {
  .sales_card figure {
    margin-bottom: 15px;
  }
}
.sales_card figure:last-child {
  margin-bottom: 0;
}
.sales_card figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.sales_card figure:has(.tag) {
  position: relative;
}
.sales_card figure .tags {
  display: flex;
  gap: 5px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 960px) {
  .sales_card figure .tags {
    top: 10px;
    right: 10px;
  }
}
.sales_card figure .tag {
  display: grid;
  place-content: center;
  width: 74px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  line-height: 1.42;
  color: #fff;
  font-size: 0.875em;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .sales_card figure .tag {
    width: 60px;
    font-size: 0.75em;
  }
}
.sales_card figure .tag_const {
  background-color: #647B64;
}
.sales_card figure .tag_completed {
  background-color: #BE4A4A;
}
.sales_card figure .tag_soldout {
  background-color: #C6A167;
}
.sales_card figure .tag_photo {
  background-color: #425D9A;
}
.sales_card figure .soldout_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sales_card .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  line-height: 1.75;
}
.sales_card .price span {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .sales_card .price span {
    font-size: 0.875em;
    margin-bottom: 15px;
  }
}
.sales_card .price span b {
  font-size: 2.22em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sales_card .price span b {
    font-size: 2em;
  }
}
.sales_card .info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.875em;
}
.sales_card .info .item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .sales_card .info .item {
    gap: 8px;
  }
}
.sales_card .info .item dt {
  background-color: #647B64;
  color: #fff;
  text-align: center;
  min-width: 100px;
  padding: 3px 5px;
}
@media screen and (max-width: 960px) {
  .sales_card .info .item dt {
    min-width: 80px;
  }
}

.top_exhibition::before {
  content: "";
  display: block;
  width: 100%;
  height: 454px;
  background: url(../images/top_exhibition.jpg) no-repeat center/cover;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .top_exhibition::before {
    height: 200px;
    margin-bottom: 40px;
  }
}

.top_media {
  background: url(../images/top_bg.jpg) no-repeat center/cover;
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .top_media {
    padding: 60px 0;
  }
}
.top_media .inner, .top_media .inner_sm, .top_media .inner_lg {
  display: grid;
  grid-template-columns: 375px 1fr;
  align-items: start;
  gap: 30px 0;
}
@media screen and (max-width: 960px) {
  .top_media .inner, .top_media .inner_sm, .top_media .inner_lg {
    display: block;
  }
}
.top_media .ttl_wrap {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .top_media .ttl_wrap {
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
}
.top_media .ttl_wrap::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #727171;
  left: 0;
  bottom: 0;
}
.top_media .list_media {
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  .top_media .list_media {
    padding-top: 0;
  }
}

.hero {
  display: grid;
  place-content: center;
  position: relative;
  height: 300px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .hero {
    height: 200px;
    margin-bottom: 60px;
  }
}
.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__ttl {
  position: relative;
  z-index: 1;
  font-size: 2.5em;
  font-weight: 500;
  color: #fff;
  font-family: "Noto Serif", serif;
  text-align: center;
  line-height: 1.5;
  filter: drop-shadow(0 0 3px rgba(33, 33, 33, 0.8));
}
@media screen and (max-width: 960px) {
  .hero__ttl {
    font-size: 1.75em;
  }
}
.hero__ttl::after {
  content: attr(data-en);
  display: block;
  font-size: 0.4em;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .hero__ttl::after {
    font-size: 0.55em;
  }
}

.hero_bottom_image {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .hero_bottom_image {
    margin-bottom: 40px;
  }
}
.hero_bottom_image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .hero_bottom_image img {
    height: 200px;
  }
}

.voice_ttl_wrap {
  overflow: hidden;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .voice_ttl_wrap {
    margin-bottom: var(--space);
  }
}
.voice_ttl_wrap .inner, .voice_ttl_wrap .inner_sm, .voice_ttl_wrap .inner_lg {
  display: grid;
  grid-template-columns: 37.7% 1fr;
  align-items: end;
  gap: 25px min(3.66vw, 55px);
}
@media screen and (max-width: 960px) {
  .voice_ttl_wrap .inner, .voice_ttl_wrap .inner_sm, .voice_ttl_wrap .inner_lg {
    grid-template-columns: 1fr;
  }
}
.voice_ttl_wrap .text .ttl {
  font-size: 2.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .voice_ttl_wrap .text .ttl {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
}
.voice_ttl_wrap .text .name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 20px;
  font-size: 2em;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .voice_ttl_wrap .text .name {
    font-size: 1.25em;
    margin-bottom: 20px;
  }
}
.voice_ttl_wrap .text .name span {
  font-size: 0.47em;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 960px) {
  .voice_ttl_wrap .text .name span {
    font-size: 0.75em;
  }
}
.voice_ttl_wrap .text dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.75;
  font-size: 0.875em;
}
.voice_ttl_wrap .text dl .item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 12px;
}
.voice_ttl_wrap .text dl .item dt {
  background-color: #647B64;
  text-align: center;
  color: #fff;
  padding: 2px 0;
}
.voice_ttl_wrap .image {
  position: relative;
  height: 466px;
}
@media screen and (max-width: 960px) {
  .voice_ttl_wrap .image {
    height: auto;
  }
}
.voice_ttl_wrap .image figure {
  position: absolute;
  width: 56.4vw;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-top-left-radius: 80px;
}
@media screen and (max-width: 960px) {
  .voice_ttl_wrap .image figure {
    position: static;
    width: auto;
    margin-inline: calc(var(--sideW) * -1);
    border-top-left-radius: 0;
    aspect-ratio: 846/466;
  }
}
.voice_ttl_wrap .image figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff_detail .info {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 25px min(5.3333333333vw, 80px);
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .staff_detail .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 960px) {
  .staff_detail .info .image {
    display: contents;
  }
}
.staff_detail .info .image img {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 40px;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .image img {
    width: 250px;
    margin: 0 auto;
    order: 1;
  }
}
.staff_detail .info .image img:last-child {
  margin-bottom: 0;
}
.staff_detail .info .image .btn_cmn_01 {
  width: 250px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .image .btn_cmn_01 {
    order: 3;
  }
}
.staff_detail .info .text {
  padding-top: 30px;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .text {
    padding-top: 0;
    order: 2;
  }
}
.staff_detail .info .text::before {
  content: attr(data-en);
  display: block;
  font-size: 3.75em;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  line-height: 1;
  color: #EBEBEB;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .text::before {
    font-size: 2.75em;
    text-align: center;
  }
}
.staff_detail .info .text .position {
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .text .position {
    font-size: 0.9375em;
    text-align: center;
  }
}
.staff_detail .info .text .name {
  font-size: 2.375em;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .text .name {
    font-size: 1.5em;
    text-align: center;
  }
}
.staff_detail .info .text .qual {
  font-size: 0.875em;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .text .qual {
    margin-bottom: 20px;
  }
}
.staff_detail .info .text .profile {
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .text .profile {
    font-size: 0.875em;
    line-height: 1.8;
    margin-bottom: 15px;
  }
}
.staff_detail .info .text .staff_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.staff_detail .info .text .staff_text .item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0 25px;
  border-bottom: 1px solid #212121;
  padding: 15px 0;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .text .staff_text .item {
    grid-template-columns: 1fr;
  }
}
.staff_detail .info .text .staff_text .item dt {
  min-width: 200px;
}
@media screen and (max-width: 960px) {
  .staff_detail .info .text .staff_text .item dt {
    font-size: 0.9375em;
    margin-bottom: 5px;
  }
}
.staff_detail .info .text .staff_text .item dd {
  font-size: 0.875em;
}

.staff_faq {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .staff_faq {
    gap: 30px;
  }
}
.staff_faq .item {
  background-color: #F5F5F5;
  padding: 35px 45px 45px;
}
@media screen and (max-width: 960px) {
  .staff_faq .item {
    padding: 25px 15px;
  }
}
.staff_faq .item dt, .staff_faq .item dd {
  position: relative;
  padding-left: 55px;
}
@media screen and (max-width: 960px) {
  .staff_faq .item dt, .staff_faq .item dd {
    padding-left: 30px;
  }
}
.staff_faq .item dt::before, .staff_faq .item dd::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 36px;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .staff_faq .item dt::before, .staff_faq .item dd::before {
    font-size: 22px;
  }
}
.staff_faq .item dt {
  border-bottom: 1px dotted #727171;
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.75;
  font-family: "Noto Serif", serif;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .staff_faq .item dt {
    font-size: 1em;
  }
}
@media screen and (max-width: 960px) {
  .staff_faq .item dd {
    font-size: 0.875em;
  }
}
.staff_faq .item dd::before {
  content: "A.";
  top: -2px;
}
@media screen and (max-width: 960px) {
  .staff_faq .item dd::before {
    top: 2px;
  }
}
.staff_faq .item--custom dt, .staff_faq .item--custom dd {
  padding-left: 0;
}
.staff_faq .item--custom dt::before, .staff_faq .item--custom dd::before {
  content: none;
}

.staff_works {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .staff_works {
    margin-bottom: 40px;
  }
}
.staff_works:last-child {
  margin-bottom: 0;
}

.works_ttl_wrap {
  text-align: center;
}
.works_ttl_wrap .ttl {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Serif", serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap .ttl {
    font-size: 1.375em;
  }
}
.works_ttl_wrap .ttl::before {
  content: "works";
  display: block;
  font-size: 0.8em;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  margin-bottom: 15px;
}
.works_ttl_wrap .tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 1em;
  font-size: 0.875em;
  color: #727171;
  margin-bottom: 55px;
}
@media screen and (max-width: 960px) {
  .works_ttl_wrap .tag {
    line-height: 1.5;
    font-size: 0.75em;
    gap: 0.5em;
    margin-bottom: 40px;
  }
}

.works_sub_ttl_wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .works_sub_ttl_wrap {
    margin-bottom: 40px;
  }
}
.works_sub_ttl_wrap .ttl {
  font-size: 2em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .works_sub_ttl_wrap .ttl {
    font-size: 1.125em;
  }
}
.works_sub_ttl_wrap .lead {
  font-size: 1em;
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 960px) {
  .works_sub_ttl_wrap .lead {
    font-size: 0.875em;
  }
}

.works_image {
  display: block;
  width: 100%;
  height: 710px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .works_image {
    margin-bottom: 30px;
    height: auto;
  }
}

.case_slide {
  margin-bottom: 60px;
}
.case_slide img {
  display: block;
  width: 100%;
  aspect-ratio: 930/594;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #F5F5F5;
}
.case_slide__main {
  margin: 0 -30px 20px;
  padding: 0 30px;
}
@media screen and (max-width: 960px) {
  .case_slide__main {
    margin: 0 -20px 5px;
    padding: 0 20px;
  }
}
.case_slide__thumbs img {
  aspect-ratio: 202/124;
  -o-object-fit: cover;
     object-fit: cover;
}
.case_slide__thumbs .swiper-slide {
  border: 1px solid transparent;
}
.case_slide__thumbs .swiper-slide-thumb-active {
  border-color: #212121;
}
.case_slide .swiper-button {
  width: 60px;
  background: #212121;
  border-radius: 0;
}
@media screen and (max-width: 960px) {
  .case_slide .swiper-button {
    width: 40px;
  }
}
.case_slide .swiper-button::after {
  content: "";
  position: absolute;
  width: 26px;
  aspect-ratio: 26/3;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .case_slide .swiper-button::after {
    width: 20px;
  }
}
.case_slide .swiper-button-prev {
  left: 0;
}
.case_slide .swiper-button-next {
  right: 0;
}

.works_info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: baseline;
  gap: 0 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .works_info {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.works_info .item {
  display: grid;
  grid-template-columns: 105px 1fr;
  border-bottom: 1px solid #707070;
  padding: 13px 0;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .works_info .item {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
}
.works_info .item dt {
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .works_info .item dt {
    font-size: 0.9375em;
  }
}
.works_info .item dd {
  font-size: 0.875em;
}

.anchor_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 35px;
  margin-bottom: 100px;
}
.anchor_link:last-child {
  margin-bottom: 0;
}
.anchor_link .btn_cmn_01::after {
  width: 15px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../images/ico_arrow_circle.svg);
          mask-image: url(../images/ico_arrow_circle.svg);
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .faq_list {
    gap: 30px;
  }
}
.faq_list__item {
  background-color: #F5F5F5;
  padding: 30px 45px 45px;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .faq_list__item {
    padding: 15px;
  }
}
.faq_list__item dt, .faq_list__item dd {
  position: relative;
  padding-left: 55px;
}
@media screen and (max-width: 960px) {
  .faq_list__item dt, .faq_list__item dd {
    padding-left: 30px;
  }
}
.faq_list__item dt::before, .faq_list__item dd::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 36px;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .faq_list__item dt::before, .faq_list__item dd::before {
    font-size: 22px;
  }
}
.faq_list__item dt {
  border-bottom: 1px dotted #727171;
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.75;
  font-family: "Noto Serif", serif;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .faq_list__item dt {
    font-size: 1em;
  }
}
@media screen and (max-width: 960px) {
  .faq_list__item dd {
    font-size: 0.875em;
  }
}
.faq_list__item dd::before {
  content: "A.";
  top: -2px;
}
@media screen and (max-width: 960px) {
  .faq_list__item dd::before {
    top: 2px;
  }
}
.faq_list__item a:not([class]) {
  display: inline-block;
  color: #647B64;
  text-decoration: underline;
  font-weight: 500;
}
.faq_list__item a:not([class]):hover {
  text-decoration: none;
}

.archive_cat,
.archive_staff {
  display: grid;
  grid-template-columns: 189px 1fr;
  background-color: #F7F7F7;
  overflow: hidden;
  border-radius: 38px 0 0 38px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 960px) {
  .archive_cat,
  .archive_staff {
    border-radius: 10px 10px 0 0;
    grid-template-columns: 1fr;
  }
}
.archive_cat:last-child,
.archive_staff:last-child {
  margin-bottom: 0;
}
.archive_cat dt,
.archive_staff dt {
  background-color: #212121;
  color: #fff;
  font-size: 1.125em;
  font-family: "EB Garamond", serif;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 960px) {
  .archive_cat dt,
  .archive_staff dt {
    font-size: 1em;
    padding: 5px 0;
  }
}
.archive_cat dd,
.archive_staff dd {
  position: relative;
  padding: 23px 50px;
}
@media screen and (max-width: 960px) {
  .archive_cat dd,
  .archive_staff dd {
    padding: 20px;
  }
}
.archive_cat dd ul,
.archive_staff dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px min(2.66vw, 40px);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 960px) {
  .archive_cat dd ul,
  .archive_staff dd ul {
    font-size: 0.875em;
    gap: 0.5em;
    line-height: 1.5;
  }
}
.archive_cat dd a,
.archive_staff dd a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.archive_cat dd a:hover,
.archive_staff dd a:hover {
  text-decoration: underline;
  color: #647B64;
}
.archive_cat dd a::after,
.archive_staff dd a::after {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  background-color: #212121;
  transform: rotate(-90deg);
}
.archive_cat__toggle,
.archive_staff__toggle {
  position: absolute;
  width: 31px;
  aspect-ratio: 1/1;
  background: linear-gradient(#fff 0 0) center/45% 1px no-repeat, linear-gradient(#fff 0 0) center/1px 45% no-repeat;
  background-color: #212121;
  right: 20px;
  top: 22px;
  cursor: pointer;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .archive_cat__toggle,
  .archive_staff__toggle {
    right: 10px;
    top: 18px;
  }
}
.archive_cat__toggle:checked,
.archive_staff__toggle:checked {
  background: linear-gradient(#fff 0 0) center/45% 1px no-repeat;
  background-color: #212121;
}
.archive_cat__toggle:checked + .archive_staff__list,
.archive_staff__toggle:checked + .archive_staff__list {
  max-height: none;
}
.archive_cat__toggle + .archive_staff__list,
.archive_staff__toggle + .archive_staff__list {
  max-height: 2em;
  overflow: hidden;
  padding-right: 60px;
}
@media screen and (max-width: 960px) {
  .archive_cat__toggle + .archive_staff__list,
  .archive_staff__toggle + .archive_staff__list {
    padding-right: 40px;
  }
}

.archive_staff {
  margin-bottom: var(--spaceMin);
}

.blog_ttl_wrap {
  overflow: hidden;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .blog_ttl_wrap {
    margin-bottom: var(--space);
  }
}
.blog_ttl_wrap .inner, .blog_ttl_wrap .inner_sm, .blog_ttl_wrap .inner_lg {
  display: grid;
  grid-template-columns: 37.7% 1fr;
  align-items: center;
  gap: 25px min(3.66vw, 55px);
}
@media screen and (max-width: 960px) {
  .blog_ttl_wrap .inner, .blog_ttl_wrap .inner_sm, .blog_ttl_wrap .inner_lg {
    grid-template-columns: 1fr;
  }
}
.blog_ttl_wrap .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 25px;
  line-height: 1.75;
}
.blog_ttl_wrap .text time {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.blog_ttl_wrap .text time::before {
  content: "DATE. ";
  display: inline-block;
}
.blog_ttl_wrap .text .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  font-size: 0.875em;
}
.blog_ttl_wrap .text .ttl {
  width: 100%;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.5;
  margin-block: 25px 35px;
}
@media screen and (max-width: 960px) {
  .blog_ttl_wrap .text .ttl {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
}
.blog_ttl_wrap .image {
  position: relative;
  height: 547px;
}
@media screen and (max-width: 960px) {
  .blog_ttl_wrap .image {
    height: auto;
  }
}
.blog_ttl_wrap .image figure {
  position: absolute;
  width: 56.4vw;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-top-left-radius: 80px;
}
@media screen and (max-width: 960px) {
  .blog_ttl_wrap .image figure {
    position: static;
    width: auto;
    margin-inline: calc(var(--sideW) * -1);
    border-top-left-radius: 0;
    aspect-ratio: 846/466;
  }
}
.blog_ttl_wrap .image figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.one_price {
  background-color: #647B64;
  padding: 60px var(--sideW);
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .one_price {
    padding: 30px var(--sideW) 0;
    margin-bottom: 60px;
  }
}
.one_price .text {
  position: relative;
  padding: 0 min(20vw, 300px) 0 var(--sideW);
  margin-bottom: 52px;
}
@media screen and (max-width: 960px) {
  .one_price .text {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 30px;
  }
}
.one_price .text h2 {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Serif", serif;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .one_price .text h2 {
    font-size: 1em;
    order: 3;
  }
}
.one_price .text h2::before {
  content: attr(data-en);
  display: block;
  font-size: 3.33em;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "EB Garamond", serif;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .one_price .text h2::before {
    font-size: 2.5em;
  }
}
.one_price .text p {
  color: #fff;
}
@media screen and (max-width: 960px) {
  .one_price .text p {
    order: 3;
    font-size: 0.875em;
  }
}
.one_price .text img {
  position: absolute;
  right: min(4vw, 60px);
  bottom: 0;
  width: clamp(150px, 13.666vw, 205px);
}
@media screen and (max-width: 960px) {
  .one_price .text img {
    width: 120px;
    position: static;
    order: 1;
    margin: 0 auto 20px;
  }
}
.one_price #map {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 960px) {
  .one_price #map {
    width: auto;
    margin-inline: calc(var(--sideW) * -1);
  }
}

.subdivision_search {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .subdivision_search {
    margin-bottom: 60px;
  }
}
.subdivision_search h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .subdivision_search h2 {
    font-size: 1.125em;
  }
}
.subdivision_search h2::after {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  background-color: #212121;
}
.subdivision_search ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .subdivision_search ul {
    gap: 5px;
  }
}
.subdivision_search ul li a {
  display: block;
  position: relative;
  border: 1px solid #212121;
  padding: 8px 20px;
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .subdivision_search ul li a {
    font-size: 0.875em;
    padding: 3px 15px;
  }
}
.subdivision_search ul li a:hover, .subdivision_search ul li a.is_current {
  color: #fff;
  border-color: #647B64;
}
.subdivision_search ul li a:hover::after, .subdivision_search ul li a.is_current::after {
  transform: scaleX(1);
  transform-origin: left;
}
.subdivision_search ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #647B64;
  left: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
  transition: transform 0.3s;
}

.sec_subdivision .ttl_cmn_01 {
  margin-bottom: 10px;
}
.sec_subdivision .sub_ttl {
  text-align: center;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .sec_subdivision .sub_ttl {
    font-size: 0.875em;
    margin-bottom: 40px;
  }
}
.sec_subdivision .map {
  margin-bottom: 40px;
}
.sec_subdivision .property_summary {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  background-color: #F5F5F5;
  padding: 30px 35px;
  font-size: 0.875em;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .sec_subdivision .property_summary {
    padding: 20px 15px;
  }
}
.sec_subdivision .canvas-03 {
  text-align: right;
  font-size: 0.75em;
  margin-bottom: var(--space);
}
.sec_subdivision .canvas-03 span {
  display: block;
}
.sec_subdivision .canvas-03 span:empty {
  display: none;
}
.sec_subdivision .table_parent {
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .sec_subdivision .table_parent {
    margin-bottom: 5px;
  }
}

.subd_slider {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .subd_slider {
    margin-bottom: 40px;
  }
}
.subd_slider__main {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .subd_slider__main {
    margin-bottom: 20px;
  }
}
.subd_slider__thumbs {
  margin: 0 -20px;
  padding: 0 20px;
}
@media screen and (max-width: 960px) {
  .subd_slider__thumbs {
    margin: 0 calc(var(--sideW) * -1);
    padding: 0 var(--sideW);
  }
}
.subd_slider__thumbs .swiper-slide {
  border: 1px solid transparent;
  transition: 0.3s;
}
.subd_slider__thumbs .swiper-slide-thumb-active {
  border-color: #647B64;
}
.subd_slider .swiper-slide {
  aspect-ratio: 930/566;
  overflow: hidden;
}
.subd_slider .swiper-slide:has(img.generated-image) {
  background-color: #f1f1f1;
}
.subd_slider .swiper-slide:has(img.generated-image) img {
  -o-object-fit: contain;
     object-fit: contain;
}
.subd_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.subd_slider .swiper-button-prev {
  left: 0;
}
.subd_slider .swiper-button-next {
  right: 0;
}

.subd_info,
.property_summary_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .subd_info,
  .property_summary_info {
    font-size: 0.875em;
    gap: 5px;
  }
}
.subd_info .item,
.property_summary_info .item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .subd_info .item,
  .property_summary_info .item {
    gap: 5px;
  }
}
.subd_info .item dt,
.property_summary_info .item dt {
  background-color: #647B64;
  color: #fff;
  text-align: center;
  min-width: 163px;
  padding: 10px 5px;
}
@media screen and (max-width: 960px) {
  .subd_info .item dt,
  .property_summary_info .item dt {
    min-width: 80px;
  }
}
.subd_info .item dd,
.property_summary_info .item dd {
  background-color: #F5F5F5;
  padding: 10px 18px;
}
@media screen and (max-width: 960px) {
  .subd_info .item dd,
  .property_summary_info .item dd {
    padding: 10px;
  }
}

.property_summary_info {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .property_summary_info {
    margin-bottom: 40px;
  }
}

.sec_subdivision h2 {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .sec_subdivision h2 {
    margin-bottom: 20px;
  }
}
.sec_subdivision h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #212121;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec_subdivision h2 span {
  display: inline-block;
  position: relative;
  background-color: #fff;
  padding: 0 45px;
  font-size: 2em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .sec_subdivision h2 span {
    font-size: 1.375em;
    padding: 0 20px;
  }
}

.subd_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px 10px;
}
@media screen and (max-width: 960px) {
  .subd_table {
    font-size: 0.875em;
  }
}
.subd_table th, .subd_table td {
  line-height: 1.75;
  padding: 8px;
  text-align: center;
}
.subd_table th {
  background-color: #647B64;
  color: #fff;
}
.subd_table td {
  background-color: #F5F5F5;
}
.subd_table td:first-child {
  background-color: #647B64;
  color: #fff;
}
.subd_table td:first-child::after {
  content: "号地";
  display: inline-block;
}
.subd_table .red {
  color: #ff0000;
}

.rel_open_house {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .rel_open_house {
    gap: 40px;
  }
}
.rel_open_house .item {
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: center;
  gap: 20px min(2.66vw, 40px);
}
@media screen and (max-width: 960px) {
  .rel_open_house .item {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.rel_open_house .item figure {
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 573/348;
}
@media screen and (max-width: 960px) {
  .rel_open_house .item figure {
    margin-bottom: 15px;
    grid-row: 2;
  }
}
.rel_open_house .item figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .rel_open_house .item .text {
    display: contents;
  }
}
.rel_open_house .item .text .ttl {
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 25px;
}
.rel_open_house .item .text .address {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.5;
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 18px;
}
@media screen and (max-width: 960px) {
  .rel_open_house .item .text .address {
    font-size: 0.875em;
    margin-bottom: 12px;
    grid-row: 1;
  }
}
.rel_open_house .item .text .address::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 20/26;
  background: url(../images/ico_address.svg) no-repeat center/contain;
}
.rel_open_house .item .text .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  line-height: 1.75;
}
.rel_open_house .item .text .price span {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .rel_open_house .item .text .price span {
    font-size: 0.875em;
    margin-bottom: 15px;
  }
}
.rel_open_house .item .text .price span b {
  font-size: 2.22em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .rel_open_house .item .text .price span b {
    font-size: 2em;
  }
}
.rel_open_house .item .text .info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.875em;
  margin-bottom: 30px;
}
.rel_open_house .item .text .info .item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .rel_open_house .item .text .info .item {
    gap: 8px;
  }
}
.rel_open_house .item .text .info .item dt {
  background-color: #647B64;
  color: #fff;
  text-align: center;
  min-width: 100px;
  padding: 3px 5px;
}
@media screen and (max-width: 960px) {
  .rel_open_house .item .text .info .item dt {
    min-width: 80px;
  }
}

.rel_open_house_image {
  margin-bottom: var(--space);
}
.rel_open_house_image img {
  display: block;
  margin: 0 auto;
}

.openhouse_main_image {
  display: block;
  width: 100%;
  height: 740px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .openhouse_main_image {
    height: 320px;
  }
}

.price_wrap {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .price_wrap {
    margin-bottom: 40px;
  }
}
.price_wrap .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .price_wrap .price {
    display: block;
    font-size: 1em;
  }
}
.price_wrap .price span {
  font-family: "Roboto", sans-serif;
  font-size: 3em;
  line-height: 1.25;
}
@media screen and (max-width: 960px) {
  .price_wrap .price span {
    font-size: 1.875em;
  }
}
.price_wrap .loan_info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .price_wrap .loan_info {
    grid-template-columns: 1fr;
  }
}
.price_wrap .loan_info dt {
  display: grid;
  place-content: center;
  background-color: #647B64;
  color: #fff;
  text-align: center;
  min-width: 163px;
  padding: 10px;
}
@media screen and (max-width: 960px) {
  .price_wrap .loan_info dt {
    min-width: 80px;
  }
}
.price_wrap .loan_info dd {
  background-color: #F5F5F5;
  padding: 12px 15px 15px;
}
@media screen and (max-width: 960px) {
  .price_wrap .loan_info dd {
    padding: 10px 15px;
  }
}
.price_wrap .loan_info dd strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-weight: 500;
  line-height: 1.75;
}
.price_wrap .loan_info dd strong b {
  font-size: 2em;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
}
@media screen and (max-width: 960px) {
  .price_wrap .loan_info dd strong b {
    font-size: 1.875em;
  }
}
.price_wrap .loan_info dd p {
  font-size: 0.875em;
}
.price_wrap .loan_info__cation {
  font-size: 0.75em;
  line-height: 1.75;
  letter-spacing: 0;
  margin-bottom: 40px;
}

.loan_simulation {
  border: 1px solid #647B64;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .loan_simulation {
    border-radius: 10px;
  }
}
.loan_simulation summary {
  background-color: #647B64;
  font-size: 1.125em;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}
@media screen and (max-width: 960px) {
  .loan_simulation summary {
    font-size: 1em;
  }
}
.loan_simulation summary::-webkit-details-marker {
  display: none;
}
.loan_simulation summary::marker {
  content: "";
}
.loan_simulation__text {
  padding: 30px 40px;
}
@media screen and (max-width: 960px) {
  .loan_simulation__text {
    padding: 20px 15px;
  }
}
.loan_simulation__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}
.loan_simulation__items .item {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .loan_simulation__items .item {
    grid-template-columns: 90px 1fr;
    font-size: 0.875em;
  }
}
.loan_simulation__items .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
}
@media screen and (max-width: 960px) {
  .loan_simulation__items .wpcf7-radio {
    gap: 0 10px;
  }
}
.loan_simulation__items .wpcf7-radio .wpcf7-list-item {
  margin-bottom: 0;
}
.loan_simulation__items input[type=number],
.loan_simulation__items select {
  width: 172px;
  border: 1px solid #212121;
  padding: 10px 15px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .loan_simulation__items input[type=number],
  .loan_simulation__items select {
    width: 130px;
  }
}
.loan_simulation button {
  width: 290px;
  padding-block: 12px;
}
@media screen and (max-width: 960px) {
  .loan_simulation button {
    width: 200px;
    margin: 0 auto;
  }
}
.loan_simulation .results {
  border-top: 1px solid #212121;
  margin-top: 30px;
  padding-top: 18px;
}
.loan_simulation .results strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.loan_simulation .results strong span {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 960px) {
  .loan_simulation .results strong span {
    font-size: 1.75em;
  }
}
.loan_simulation .results .tyui-01 {
  font-size: 0.8125em;
}

.section_setubi {
  background-color: #F5F5F5;
  padding-block: var(--space);
  overflow: hidden;
}
.section_setubi .top_slide {
  margin-top: 0;
  padding-inline: 0;
  overflow: visible;
  margin-bottom: 0;
}
.section_setubi .setubi_box {
  display: block;
  position: relative;
  padding: 25px 23px;
  background-color: #fff;
}
.section_setubi .setubi_box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  aspect-ratio: 1/1;
  background: url(../images/ico_search.svg) no-repeat center/16px auto;
  background-color: #212121;
}
.section_setubi .setubi_box__title {
  text-align: center;
  font-size: 1.125em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  margin-bottom: 12px;
}

.floor_plan_image {
  display: block;
  margin: 0 auto;
}

.sec_oh_story {
  background-color: #2E2E30;
  background-image: linear-gradient(to right, rgba(245, 245, 245, 0.07) 1px, transparent 1px), linear-gradient(to bottom, rgba(245, 245, 245, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  padding-block: var(--space);
  color: #fff;
}
@media screen and (max-width: 960px) {
  .sec_oh_story {
    background-size: 30px 30px;
  }
}
.sec_oh_story h2 {
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  text-align: center;
  line-height: 1.5;
  color: #647B64;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .sec_oh_story h2 {
    font-size: 1.125em;
  }
}
.sec_oh_story h2::before {
  content: "Story";
  display: block;
  font-size: 5em;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  line-height: 1;
}
.sec_oh_story .story_member {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 60px;
  position: relative;
  padding-top: 130px;
  margin-bottom: var(--spaceMin);
}
.sec_oh_story .story_member::before {
  content: "";
  position: absolute;
  width: 234px;
  aspect-ratio: 234/106;
  background: url(../images/txt_project_member.svg) no-repeat center/contain;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_member::before {
    width: 180px;
  }
}
.sec_oh_story .member_info {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 25px;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .member_info {
    grid-template-columns: 100px 1fr;
    gap: 15px;
  }
}
.sec_oh_story .member_info figure {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.sec_oh_story .member_info figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_oh_story .member_info .text {
  line-height: 1.75;
}
.sec_oh_story .member_info .text .position {
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .member_info .text .position {
    font-size: 0.875em;
  }
}
.sec_oh_story .member_info .text .name {
  font-size: 1.25em;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .member_info .text .name {
    font-size: 1.125em;
  }
}
.sec_oh_story .member_info .text a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 0.75em;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  padding-bottom: 10px;
}
.sec_oh_story .member_info .text a:hover::after {
  left: 10px;
}
.sec_oh_story .member_info .text a::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 3px;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.sec_oh_story .story_text {
  border: 1px solid #fff;
  padding: 50px 60px 60px 150px;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_text {
    padding: 30px 20px;
  }
}
.sec_oh_story .story_text__ttl {
  position: relative;
  font-size: 1.875em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_text__ttl {
    font-size: 1.5em;
  }
}
.sec_oh_story .story_text__ttl::before {
  content: attr(data-num);
  position: absolute;
  top: 50%;
  right: calc(100% + 22px);
  transform: translateY(-50%);
  font-size: 2.66em;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  font-style: italic;
  line-height: 1;
  color: #647B64;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_text__ttl::before {
    display: block;
    position: static;
    transform: none;
  }
}
.sec_oh_story .story_text__text {
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_text__text {
    font-size: 0.875em;
  }
}
.sec_oh_story .story_text__comment {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 35px;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_text__comment {
    gap: 10px;
    margin-top: 20px;
  }
}
.sec_oh_story .story_text__comment li {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 15px 30px;
  background-color: #fff;
  padding: 22px 26px;
  color: #212121;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_text__comment li {
    grid-template-columns: 1fr;
    justify-content: center;
    padding: 20px 15px;
  }
}
.sec_oh_story .story_text__comment li figure {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_text__comment li figure {
    width: 100px;
    margin: 0 auto;
  }
}
.sec_oh_story .story_text__comment li figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_oh_story .story_text__comment li p {
  line-height: 1.75;
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_text__comment li p {
    font-size: 0.875em;
  }
}
.sec_oh_story .story_grid {
  position: relative;
  padding-top: 55px;
}
.sec_oh_story .story_grid::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 70px;
  background-color: #fff;
  top: -35px;
  left: calc(50% - 0.5px);
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_grid::before {
    height: 60px;
    top: -20px;
  }
}
.sec_oh_story .story_grid__ttl {
  text-align: center;
  font-size: 2.375em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_grid__ttl {
    font-size: 1.75em;
  }
}
.sec_oh_story .story_grid__ttl::before {
  content: attr(data-num);
  display: block;
  font-size: 2.1em;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  font-style: italic;
  line-height: 1;
  color: #647B64;
}
.sec_oh_story .story_grid__ttl::after {
  content: attr(data-en);
  display: block;
  font-size: 0.47em;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.sec_oh_story .story_grid .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px min(4vw, 60px);
  margin-bottom: var(--spaceMin);
}
.sec_oh_story .story_grid .item:nth-child(odd) .image {
  order: 2;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_grid .item:nth-child(odd) .image {
    order: 1;
  }
}
.sec_oh_story .story_grid .item:nth-child(odd) .text {
  order: 1;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_grid .item:nth-child(odd) .text {
    order: 2;
  }
}
.sec_oh_story .story_grid .item .image {
  width: 50%;
  height: 410px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_grid .item .image {
    width: 100%;
    height: auto;
    aspect-ratio: 610/406;
  }
}
.sec_oh_story .story_grid .item .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_oh_story .story_grid .item .text {
  width: calc(50% - min(4vw, 60px));
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_grid .item .text {
    width: 100%;
  }
}
.sec_oh_story .story_grid .item .text .ttl {
  position: relative;
  font-size: 1.75em;
  font-family: "Noto Serif", serif;
  line-height: 1.57;
  font-weight: 500;
  margin-bottom: 20px;
  padding-top: 40px;
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_grid .item .text .ttl {
    font-size: 1.375em;
  }
}
.sec_oh_story .story_grid .item .text .ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #fff calc(50% - 13px), transparent calc(50% - 13px), transparent calc(50% + 13px), #fff calc(50% + 13px));
  top: 0;
  left: 0;
}
.sec_oh_story .story_grid .item .text .ttl::after {
  content: "";
  position: absolute;
  width: 19px;
  aspect-ratio: 1/1;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: -8px;
  left: calc(50% - 9.5px);
  transform: rotate(45deg);
}
@media screen and (max-width: 960px) {
  .sec_oh_story .story_grid .item .text .comment {
    font-size: 0.875em;
  }
}

.event_ttl_wrap {
  margin-bottom: var(--space);
  overflow: hidden;
}
.event_ttl_wrap .inner, .event_ttl_wrap .inner_sm, .event_ttl_wrap .inner_lg {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0 min(5.733vw, 86px);
  align-items: center;
}
@media screen and (max-width: 960px) {
  .event_ttl_wrap .inner, .event_ttl_wrap .inner_sm, .event_ttl_wrap .inner_lg {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.event_ttl_wrap .ttl {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Serif", serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .event_ttl_wrap .ttl {
    font-size: 1.75em;
  }
}
.event_ttl_wrap strong {
  display: block;
  font-size: 2em;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .event_ttl_wrap strong {
    font-size: 1.25em;
  }
}
.event_ttl_wrap dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.event_ttl_wrap dl .item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 12px;
  line-height: 1.5;
  font-size: 0.875em;
}
@media screen and (max-width: 960px) {
  .event_ttl_wrap dl .item {
    gap: 8px;
  }
}
.event_ttl_wrap dl .item dt {
  background-color: #647B64;
  color: #fff;
  text-align: center;
  min-width: 100px;
  padding: 3px 5px;
}
@media screen and (max-width: 960px) {
  .event_ttl_wrap dl .item dt {
    min-width: 80px;
  }
}
.event_ttl_wrap .hash {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-block: -30px 40px;
  color: #727171;
  font-family: "Noto Serif", serif;
  font-size: 0.875em;
}
.event_ttl_wrap .hash span {
  display: flex;
}
.event_ttl_wrap .hash span::before {
  content: "#";
}
.event_ttl_wrap .gift_bnr {
  grid-column: 1/-1;
}
.event_ttl_wrap .gift_bnr::after {
  left: auto;
  top: auto;
  bottom: 0;
  right: calc(var(--sideW) * -1);
  border-top-right-radius: 50px;
  height: calc(100% + 110px);
}
@media screen and (max-width: 960px) {
  .event_ttl_wrap .gift_bnr::after {
    right: calc(var(--sideW) * -1 / 2);
    height: 100%;
    border-top-right-radius: 25px;
  }
}

.gift_bnr {
  position: relative;
  padding: 100px 0 60px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .gift_bnr {
    padding: 30px 0;
  }
}
.gift_bnr:last-child {
  margin-bottom: 0;
}
.gift_bnr::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #F5F5F5;
  left: calc(50% - 50vw);
  top: 0;
  z-index: -1;
}
.gift_bnr img {
  display: block;
  margin: 0 auto 15px;
}
.gift_bnr p {
  font-size: 0.8125em;
  line-height: 1.8;
}

.event_point {
  display: flex;
  flex-direction: column;
  gap: var(--spaceMin);
  margin-bottom: var(--space);
}
.event_point .item {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 20px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .event_point .item {
    grid-template-columns: 1fr;
  }
}
.event_point .item:not(:has(.image)) {
  grid-template-columns: 0.5fr;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .event_point .item:not(:has(.image)) {
    grid-template-columns: 1fr;
  }
}
.event_point .item img {
  width: 100%;
  aspect-ratio: 61/39;
  -o-object-fit: cover;
     object-fit: cover;
}
.event_point .item span {
  display: grid;
  place-content: center;
  position: relative;
  width: 73px;
  aspect-ratio: 1/1;
  border: 1px solid #647B64;
  font-size: 2.5em;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.03em;
  line-height: 1;
  border-radius: 50%;
  color: #647B64;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .event_point .item span {
    width: 55px;
    font-size: 1.75em;
  }
}
.event_point .item span::before {
  content: "";
  position: absolute;
  width: 56px;
  aspect-ratio: 56/26;
  background: url(../images/txt_point.svg) no-repeat center/contain;
  left: 50%;
  top: -8px;
  transform: translateX(-50%) rotate(-15deg);
}
@media screen and (max-width: 960px) {
  .event_point .item span::before {
    width: 40px;
  }
}
.event_point .item h4 {
  font-size: 2em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media screen and (max-width: 960px) {
  .event_point .item h4 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 960px) {
  .event_point .item p {
    font-size: 0.875em;
  }
}

.hero_appraisal {
  display: grid;
  place-content: center;
  position: relative;
  background: url(../images/hero_appraisal.jpg) no-repeat center/cover;
  height: 100vh;
  margin-bottom: var(--spaceMin);
}
.hero_appraisal::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(100, 123, 100, 0.18);
}
.hero_appraisal h1 {
  position: relative;
  z-index: 1;
  font-size: 4em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .hero_appraisal h1 {
    font-size: 2em;
  }
}

.appraisal_btn_wrap {
  margin-bottom: var(--space);
}
.appraisal_btn_wrap:last-child {
  margin-bottom: 0;
}
.appraisal_btn_wrap p {
  font-size: 1.375em;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .appraisal_btn_wrap p {
    font-size: 1em;
  }
}
.appraisal_btn_wrap p:last-child {
  font-size: 1.125em;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .appraisal_btn_wrap p:last-child {
    font-size: 0.875em;
  }
}
.appraisal_btn_wrap .btn_related {
  width: 930px;
  max-width: 100%;
  margin: 0 auto 15px;
}

.sec_appraisal_02 {
  overflow: hidden;
  padding-block: 100px var(--space);
  margin-bottom: 0;
}
.sec_appraisal_02 .inner, .sec_appraisal_02 .inner_sm, .sec_appraisal_02 .inner_lg {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: start;
  gap: 20px min(5.33vw, 80px);
}
@media screen and (max-width: 960px) {
  .sec_appraisal_02 .inner, .sec_appraisal_02 .inner_sm, .sec_appraisal_02 .inner_lg {
    grid-template-columns: 1fr;
  }
}
.sec_appraisal_02 .inner h2, .sec_appraisal_02 .inner_sm h2, .sec_appraisal_02 .inner_lg h2 {
  font-size: 2.375em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.44;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .sec_appraisal_02 .inner h2, .sec_appraisal_02 .inner_sm h2, .sec_appraisal_02 .inner_lg h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
}
.sec_appraisal_02 .inner h2::before, .sec_appraisal_02 .inner_sm h2::before, .sec_appraisal_02 .inner_lg h2::before {
  content: "About";
  display: block;
  color: #F5F5F5;
  font-size: 1.57em;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  margin-bottom: 5px;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .sec_appraisal_02 .inner p, .sec_appraisal_02 .inner_sm p, .sec_appraisal_02 .inner_lg p {
    font-size: 0.875em;
  }
}
.sec_appraisal_02 .inner .image, .sec_appraisal_02 .inner_sm .image, .sec_appraisal_02 .inner_lg .image {
  position: relative;
  height: 415px;
}
@media screen and (max-width: 960px) {
  .sec_appraisal_02 .inner .image, .sec_appraisal_02 .inner_sm .image, .sec_appraisal_02 .inner_lg .image {
    height: auto;
    aspect-ratio: 750/415;
  }
}
.sec_appraisal_02 .inner .image::after, .sec_appraisal_02 .inner_sm .image::after, .sec_appraisal_02 .inner_lg .image::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: calc(100% + 200px);
  background-color: #F5F5F5;
  left: 70px;
  top: -100px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec_appraisal_02 .inner .image::after, .sec_appraisal_02 .inner_sm .image::after, .sec_appraisal_02 .inner_lg .image::after {
    height: calc(100% + 50px);
    top: -25px;
  }
}
.sec_appraisal_02 .inner .image figure, .sec_appraisal_02 .inner_sm .image figure, .sec_appraisal_02 .inner_lg .image figure {
  position: absolute;
  width: 50vw;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .sec_appraisal_02 .inner .image figure, .sec_appraisal_02 .inner_sm .image figure, .sec_appraisal_02 .inner_lg .image figure {
    width: 100%;
  }
}
.sec_appraisal_02 .inner .image figure img, .sec_appraisal_02 .inner_sm .image figure img, .sec_appraisal_02 .inner_lg .image figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.sec_appraisal_03__in {
  position: relative;
  background-color: #fff;
  background-image: linear-gradient(to right, #F5F5F5 1px, transparent 1px), linear-gradient(to bottom, #F5F5F5 1px, transparent 1px);
  background-size: 55px 55px;
  padding-block: var(--space);
}
@media screen and (max-width: 960px) {
  .sec_appraisal_03__in {
    background-size: 30px 30px;
  }
}
.sec_appraisal_03__in::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 157px;
  background-color: #212121;
  left: calc(50% - 0.5px);
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_appraisal_03__in::before {
    height: 90px;
  }
}
.sec_appraisal_03 ul {
  width: 930px;
  max-width: 100%;
  margin: 0 auto;
}
.sec_appraisal_03 ul li {
  display: grid;
  grid-template-columns: 314px 1fr;
  align-items: center;
  gap: 20px min(3vw, 45px);
  border-bottom: 1px dotted #727171;
  padding: 40px 0;
}
@media screen and (max-width: 960px) {
  .sec_appraisal_03 ul li {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
}
.sec_appraisal_03 ul li h3 {
  font-size: 1.375em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .sec_appraisal_03 ul li h3 {
    font-size: 1.125em;
  }
}
.sec_appraisal_03 ul li p {
  font-size: 0.9375em;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .sec_appraisal_03 ul li p {
    font-size: 0.875em;
  }
}

.list_icon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px min(4vw, 60px);
  margin-bottom: var(--spaceMin);
}
@media screen and (max-width: 960px) {
  .list_icon {
    line-gap-override: 30px;
  }
}
.list_icon:last-child {
  margin-bottom: 0;
}
.list_icon li {
  position: relative;
  background-color: #F5F5F5;
  padding: 40px 30px 45px;
}
@media screen and (max-width: 960px) {
  .list_icon li {
    padding: 30px 15px;
  }
}
.list_icon li::before {
  content: "";
  position: absolute;
  width: 50px;
  aspect-ratio: 1/1;
  background-color: #647B64;
  left: 0;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 960px) {
  .list_icon li::before {
    width: 30px;
  }
}
.list_icon li img {
  display: block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 960px) {
  .list_icon li img {
    width: 150px;
  }
}
.list_icon li .ttl {
  display: block;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .list_icon li .ttl {
    font-size: 1.25em;
  }
}
.list_icon li p {
  font-size: 0.9375em;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .list_icon li p {
    font-size: 0.875em;
  }
}

@media screen and (min-width: 961px) {
  .sec_recommend_02 .list_icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  .sec_recommend_02 .list_icon {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.sec_recommend_02 .list_icon li {
  min-width: 365px;
}
@media screen and (max-width: 960px) {
  .sec_recommend_02 .list_icon li {
    min-width: 1px;
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  .sec_recommend_02 .list_icon li img {
    width: 100px;
  }
}
.sec_recommend_02 h3 {
  position: relative;
  text-align: center;
  margin-bottom: 35px;
  padding-top: 110px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .sec_recommend_02 h3 {
    padding-top: 60px;
  }
}
.sec_recommend_02 h3:nth-of-type(2)::before {
  background-image: url(../images/txt_point_02.svg);
}
.sec_recommend_02 h3::before {
  content: "";
  position: absolute;
  width: 159px;
  aspect-ratio: 159/93;
  background: url(../images/txt_point_01.svg) no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .sec_recommend_02 h3::before {
    width: 100px;
  }
}
.sec_recommend_02 h3 span {
  display: inline-block;
  position: relative;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Serif", serif;
  padding: 0 45px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .sec_recommend_02 h3 span {
    font-size: 1.5em;
    padding: 0 20px;
  }
}
.sec_recommend_02 h3 span::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #647B64;
  left: calc(50% - 50vw);
  top: calc(50% - 0.5px);
  z-index: -1;
}

.sec_recommend_03__in {
  position: relative;
  background-color: #fff;
  background-image: linear-gradient(to right, #F5F5F5 1px, transparent 1px), linear-gradient(to bottom, #F5F5F5 1px, transparent 1px);
  background-size: 55px 55px;
  padding-block: var(--space);
}
@media screen and (max-width: 960px) {
  .sec_recommend_03__in {
    background-size: 30px 30px;
  }
}
.sec_recommend_03__in::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 157px;
  background-color: #212121;
  left: calc(50% - 0.5px);
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_recommend_03__in::before {
    height: 90px;
  }
}
.sec_recommend_03 ul {
  width: 930px;
  max-width: 100%;
  margin: 0 auto 35px;
}
.sec_recommend_03 ul li {
  position: relative;
  font-size: 1.375em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  padding: 16px 0 16px 52px;
  line-height: 1.75;
  border-bottom: 1px dashed #727171;
}
@media screen and (max-width: 960px) {
  .sec_recommend_03 ul li {
    font-size: 1em;
    padding: 10px 0 10px 30px;
  }
}
.sec_recommend_03 ul li::before {
  content: "";
  position: absolute;
  width: 37px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #212121;
  background: url(../images/ico_check.svg) no-repeat center/18px auto;
  left: 0;
  top: 1.68em;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_recommend_03 ul li::before {
    width: 1.5em;
    top: 1.5em;
    background-size: 12px auto;
  }
}
.sec_recommend_03 p {
  text-align: center;
}

.sec_recommend_04 .flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
  counter-reset: step;
}
@media screen and (max-width: 960px) {
  .sec_recommend_04 .flow {
    gap: 20px;
  }
}
.sec_recommend_04 .flow li {
  background-color: #F5F5F5;
  padding: 30px 45px 35px;
  border-radius: 10px;
  counter-increment: step;
}
@media screen and (max-width: 960px) {
  .sec_recommend_04 .flow li {
    padding: 20px 15px;
  }
}
.sec_recommend_04 .flow li strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 20px;
  font-size: 1.375em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  padding-bottom: 15px;
  border-bottom: 1px dotted #727171;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .sec_recommend_04 .flow li strong {
    font-size: 1.125em;
    gap: 10px;
  }
}
.sec_recommend_04 .flow li strong::before {
  content: "Step." counter(step);
  display: block;
  font-size: 1.6em;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.08em;
  line-height: 1;
}
.sec_recommend_04 .flow li p {
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .sec_recommend_04 .flow li p {
    font-size: 0.875em;
  }
}
.sec_recommend_04 h3 {
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid #212121;
  margin-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .sec_recommend_04 h3 {
    font-size: 1.25em;
  }
}
.sec_recommend_04 .terms li {
  position: relative;
  padding-left: 1em;
  letter-spacing: 0;
  font-size: 0.8125em;
}
.sec_recommend_04 .terms li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.sec_recommend_04 .terms + p {
  font-size: 0.8125em;
}

.sec_channel {
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .sec_channel {
    margin-bottom: var(--spaceMin);
  }
}
.sec_channel .ttl_wrap {
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 60px;
  border-bottom: 1px solid #647B64;
}
@media screen and (max-width: 960px) {
  .sec_channel .ttl_wrap {
    padding-bottom: 25px;
    margin-bottom: 40px;
  }
}
.sec_channel .ttl_wrap::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 4px;
  background-color: #647B64;
  left: 0;
  bottom: -2px;
}
@media screen and (max-width: 960px) {
  .sec_channel .ttl_wrap::before {
    width: 120px;
  }
}
.sec_channel .ttl_wrap .ttl_top_01 {
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .sec_channel .ttl_wrap .ttl_top_01 {
    margin-bottom: 20px;
  }
}
.sec_channel .ttl_wrap p {
  max-width: 714px;
}
@media screen and (max-width: 960px) {
  .sec_channel .ttl_wrap p {
    font-size: 0.875em;
  }
}
.sec_channel + a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 930px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #212121;
  text-align: center;
  font-size: 1.75em;
  font-family: "Noto Serif", serif;
  color: #fff;
  font-weight: 500;
  padding: 30px 0;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .sec_channel + a {
    font-size: 1.25em;
    padding: 20px 0;
  }
}
.sec_channel + a:hover {
  box-shadow: 0 15px 15px rgba(33, 33, 33, 0.5);
  transform: translateY(-3px);
}
.sec_channel + a::before {
  content: "";
  display: block;
  width: 38px;
  aspect-ratio: 1/1;
  background: url(../images/ico_youtube_02.svg) no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .sec_channel + a::before {
    width: 30px;
  }
}

.hero_housing {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  padding-top: 230px;
  overflow: hidden;
  background-color: #212121;
  padding: var(--headerHeight) 0 200px;
}
@media screen and (max-width: 960px) {
  .hero_housing {
    display: block;
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }
}
.hero_housing .text {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 130px 15px 0;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .hero_housing .text {
    width: 100%;
    padding-top: 60px;
    margin-bottom: 30px;
  }
}
.hero_housing .text__in {
  max-width: 565px;
}
.hero_housing .ttl_top_01 {
  font-size: 1.125em;
  color: #647B64;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .hero_housing .ttl_top_01 {
    font-size: 1em;
    margin-bottom: 20px;
  }
}
.hero_housing strong {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5em;
  font-weight: 400;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .hero_housing strong {
    font-size: 1.125em;
    margin-bottom: 15px;
  }
}
.hero_housing strong::before {
  content: "";
  display: block;
  width: 37px;
  height: 1px;
  background-color: #fff;
}
.hero_housing h2 {
  display: inline-block;
  position: relative;
  font-size: 3.125em;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Noto Serif", serif;
  color: #fff;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .hero_housing h2 {
    font-size: 1.375em;
  }
}
.hero_housing h2::after {
  content: "";
  position: absolute;
  width: 192px;
  aspect-ratio: 192/92;
  background: url(../images/txt_living_feeling.svg) no-repeat center/contain;
  right: -30px;
  bottom: -40px;
}
@media screen and (max-width: 960px) {
  .hero_housing h2::after {
    width: 120px;
  }
}
.hero_housing p {
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .hero_housing p {
    font-size: 0.875em;
  }
}
.hero_housing p:last-child {
  margin-bottom: 0;
}
.hero_housing .image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .hero_housing .image {
    width: 100%;
  }
}
.hero_housing .image .swiper_main {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .hero_housing .image .swiper_main {
    margin-bottom: 10px;
  }
}
.hero_housing .image .swiper_main .swiper-slide {
  width: 100%;
  height: 750px;
}
@media screen and (max-width: 960px) {
  .hero_housing .image .swiper_main .swiper-slide {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.hero_housing .image .swiper_main .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_housing .image .swiper_main:not(.has_thumb) .swiper-slide {
  height: 882px;
}
@media screen and (max-width: 960px) {
  .hero_housing .image .swiper_main:not(.has_thumb) .swiper-slide {
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 960px) {
  .hero_housing .image .swiper_thumb {
    padding: 0 var(--sideW);
  }
}
.hero_housing .image .swiper_thumb .swiper-slide {
  aspect-ratio: 167/100;
  border: 1px solid transparent;
}
.hero_housing .image .swiper_thumb .swiper-slide-thumb-active {
  border-color: #fff;
}
.hero_housing .image .swiper_thumb .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_housing--top {
  padding: 230px 0 155px;
}
@media screen and (max-width: 960px) {
  .hero_housing--top {
    padding: var(--headerHeight) 0 100px;
  }
}
.hero_housing--top .inner, .hero_housing--top .inner_sm, .hero_housing--top .inner_lg {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 30px;
}
@media screen and (max-width: 960px) {
  .hero_housing--top .inner, .hero_housing--top .inner_sm, .hero_housing--top .inner_lg {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.hero_housing--top .text {
  display: block;
  padding: 0;
  width: auto;
}
.hero_housing--top .ttl_top_01 {
  grid-column: 1/-1;
}
.hero_housing--top .image {
  position: relative;
  width: auto;
  height: 656px;
}
@media screen and (max-width: 960px) {
  .hero_housing--top .image {
    height: 300px;
  }
}
.hero_housing--top .image figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .hero_housing--top .image figure {
    width: 100%;
  }
}
.hero_housing--top .image figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_housing--top + .section_housing_list {
  margin-top: -235px;
}
@media screen and (max-width: 960px) {
  .hero_housing--top + .section_housing_list {
    margin-top: -80px;
  }
}

.section_housing_list {
  margin-top: -100px;
}
@media screen and (max-width: 960px) {
  .section_housing_list {
    margin-top: -80px;
  }
}

.exhibition_wrap {
  background-color: #F5F5F5;
  padding: 90px var(--sideW);
}
@media screen and (max-width: 960px) {
  .exhibition_wrap {
    padding-block: 30px;
  }
}
.exhibition_wrap .lead {
  margin-bottom: 35px;
}
.exhibition_wrap > .btn_cmn_01 {
  margin-bottom: var(--spaceMin);
}
.exhibition_wrap .list_exhibition {
  -moz-column-gap: min(2.33vw, 35px);
       column-gap: min(2.33vw, 35px);
}
.exhibition_wrap .list_exhibition .btn_cmn_01 {
  width: 160px;
}
.exhibition_wrap .g_map {
  position: relative;
  height: 480px;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .exhibition_wrap .g_map {
    height: 300px;
  }
}
.exhibition_wrap .g_map iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.exhibition_wrap table {
  width: 930px;
  max-width: 100%;
  margin: 0 auto 60px;
  border-collapse: separate;
}
@media screen and (max-width: 960px) {
  .exhibition_wrap table {
    display: block;
    width: 100%;
  }
  .exhibition_wrap table thead, .exhibition_wrap table tbody, .exhibition_wrap table tr, .exhibition_wrap table th, .exhibition_wrap table td {
    display: block;
    width: 100%;
  }
}
.exhibition_wrap table th, .exhibition_wrap table td {
  border-bottom: 1px solid #727171;
  line-height: 1.75;
  padding: 20px 25px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .exhibition_wrap table th, .exhibition_wrap table td {
    padding: 15px 0;
    font-size: 0.875em;
  }
}
.exhibition_wrap table th {
  width: 200px;
}
@media screen and (max-width: 960px) {
  .exhibition_wrap table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.exhibition_wrap table td {
  padding-inline: 0;
}
@media screen and (max-width: 960px) {
  .exhibition_wrap table td {
    padding-top: 0;
  }
}

.housing_gift_bnr {
  display: block;
  margin-bottom: 30px;
}

.sec_housing .grid {
  display: flex;
  flex-direction: column;
  gap: var(--spaceMin) 0;
  margin-bottom: var(--space);
}
.sec_housing .grid .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid .item {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 960px) {
  .sec_housing .grid .item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.sec_housing .grid .item:nth-child(even) .image {
  order: 2;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid .item:nth-child(even) .image {
    order: 1;
  }
}
.sec_housing .grid .item:nth-child(even) .image figure {
  left: auto;
  right: 0;
}
.sec_housing .grid .item:nth-child(even) .text {
  order: 1;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid .item:nth-child(even) .text {
    order: 2;
  }
}
.sec_housing .grid .image {
  position: relative;
  height: 583px;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid .image {
    height: auto;
  }
}
.sec_housing .grid .image figure {
  position: absolute;
  width: calc(100% + 185px);
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid .image figure {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 865/583;
  }
}
.sec_housing .grid .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_housing .grid .text {
  position: relative;
  z-index: 3;
  background-color: #fff;
  padding: 45px 50px;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid .text {
    padding: 20px 0 0;
  }
}
.sec_housing .grid span {
  display: inline-block;
  border-bottom: 1px solid #212121;
  margin-bottom: 5px;
}
.sec_housing .grid h3 {
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid h3 {
    font-size: 1.5em;
  }
}
.sec_housing .grid p {
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid p {
    font-size: 0.875em;
  }
}
.sec_housing .grid p:last-child {
  margin-bottom: 0;
}
.sec_housing .grid .item_02 {
  text-align: center;
  width: 930px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid .item_02 p {
    text-align: left;
  }
}
.sec_housing .grid_02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px min(4vw, 60px);
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .sec_housing .grid_02 {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}
.sec_housing .grid_02 a:hover {
  opacity: 0.7;
}

.page-concept .top_concept {
  padding-top: var(--headerHeight);
  margin-bottom: 60px;
}
.page-concept .top_concept::before {
  width: 100%;
}
.page-concept .top_concept .text {
  padding-top: 120px;
}
@media screen and (max-width: 960px) {
  .page-concept .top_concept .text {
    padding-top: 60px;
  }
}

.sec_concept_01 {
  overflow: hidden;
}
.sec_concept_01 h2 {
  margin-bottom: 60px;
}
.sec_concept_01 h2 img {
  display: block;
}
@media screen and (max-width: 960px) {
  .sec_concept_01 h2 img {
    width: 200px;
  }
}

.concept_ism {
  display: flex;
  flex-direction: column;
  gap: 70px;
  counter-reset: num;
}
@media screen and (max-width: 960px) {
  .concept_ism {
    gap: 40px;
  }
}
.concept_ism .item {
  position: relative;
  counter-increment: num;
}
.concept_ism .item:nth-child(even) .image {
  margin-left: auto;
}
.concept_ism .item:nth-child(even) .image figure {
  right: auto;
  left: 0;
}
@media screen and (max-width: 960px) {
  .concept_ism .item:nth-child(even) .image figure {
    left: calc(var(--sideW) * -1);
  }
}
.concept_ism .item:nth-child(even) .text {
  margin-left: 0;
}
.concept_ism .item .image {
  position: relative;
  width: 865px;
  max-width: 100%;
  height: 483px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .concept_ism .item .image {
    height: auto;
    aspect-ratio: 935/483;
  }
}
.concept_ism .item .image figure {
  position: absolute;
  width: 62.33vw;
  height: 100%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1500px) {
  .concept_ism .item .image figure {
    width: calc(100% + var(--sideW));
  }
}
@media screen and (max-width: 960px) {
  .concept_ism .item .image figure {
    width: 100vw;
    left: calc(var(--sideW) * -1);
  }
}
.concept_ism .item .image figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept_ism .item .text {
  width: 865px;
  max-width: 100%;
  background-color: #fff;
  padding: 65px var(--sideW) 0;
  margin-top: -250px;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .concept_ism .item .text {
    padding: 20px var(--sideW) 0;
    margin-top: -20px;
  }
}
.concept_ism .item h3 {
  display: flex;
  align-items: baseline;
  gap: 15px;
  position: relative;
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .concept_ism .item h3 {
    font-size: 1.375em;
  }
}
.concept_ism .item h3::before {
  content: counter(num, decimal-leading-zero);
  display: grid;
  place-content: center;
  width: 73px;
  aspect-ratio: 1/1;
  border: 1px solid #647B64;
  color: #647B64;
  font-size: 40px;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  line-height: 1;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .concept_ism .item h3::before {
    width: 50px;
    font-size: 25px;
  }
}
.concept_ism .item h3::after {
  content: "";
  position: absolute;
  width: 40px;
  aspect-ratio: 40/22;
  background: url(../images/txt_ism.svg) no-repeat center/contain;
  left: 18px;
  top: -5px;
}
@media screen and (max-width: 960px) {
  .concept_ism .item h3::after {
    width: 30px;
    left: 12px;
  }
}
@media screen and (max-width: 960px) {
  .concept_ism .item p {
    font-size: 0.875em;
  }
}

.sec_concept_02 {
  padding: 110px 0 140px;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 {
    padding: 60px 0;
  }
}
.sec_concept_02::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/top_bg.jpg) no-repeat center/cover;
  left: 0;
  top: 0;
  opacity: 0.4;
  z-index: -1;
}
.sec_concept_02 .inner, .sec_concept_02 .inner_sm, .sec_concept_02 .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 0;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .inner, .sec_concept_02 .inner_sm, .sec_concept_02 .inner_lg {
    gap: 30px 0;
  }
}
.sec_concept_02 .inner .ttl, .sec_concept_02 .inner_sm .ttl, .sec_concept_02 .inner_lg .ttl {
  width: 40%;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .inner .ttl, .sec_concept_02 .inner_sm .ttl, .sec_concept_02 .inner_lg .ttl {
    width: 100%;
  }
}
.sec_concept_02 .inner .ttl .ttl_cmn_02, .sec_concept_02 .inner_sm .ttl .ttl_cmn_02, .sec_concept_02 .inner_lg .ttl .ttl_cmn_02 {
  text-align: left;
  margin-bottom: 0;
}
.sec_concept_02 .inner .ttl .ttl_cmn_02::after, .sec_concept_02 .inner_sm .ttl .ttl_cmn_02::after, .sec_concept_02 .inner_lg .ttl .ttl_cmn_02::after {
  left: 0;
  transform: translateX(0);
}
.sec_concept_02 .inner .text, .sec_concept_02 .inner_sm .text, .sec_concept_02 .inner_lg .text {
  width: 60%;
  padding-top: 30px;
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .inner .text, .sec_concept_02 .inner_sm .text, .sec_concept_02 .inner_lg .text {
    width: 100%;
    padding-top: 0;
  }
}
.sec_concept_02 .inner table, .sec_concept_02 .inner_sm table, .sec_concept_02 .inner_lg table {
  width: 930px;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .inner table, .sec_concept_02 .inner_sm table, .sec_concept_02 .inner_lg table {
    margin: 0 calc(var(--sideW) * -1);
  }
}
.sec_concept_02 .inner table th, .sec_concept_02 .inner_sm table th, .sec_concept_02 .inner_lg table th, .sec_concept_02 .inner table td, .sec_concept_02 .inner_sm table td, .sec_concept_02 .inner_lg table td {
  background-color: #fff;
  font-size: 0.9375em;
  padding: 8px;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .sec_concept_02 .inner table th, .sec_concept_02 .inner_sm table th, .sec_concept_02 .inner_lg table th, .sec_concept_02 .inner table td, .sec_concept_02 .inner_sm table td, .sec_concept_02 .inner_lg table td {
    font-size: 0.8125em;
    padding: 8px 3px;
    line-height: 1.5;
  }
}

.sec_concept_03 {
  position: relative;
  background: linear-gradient(to bottom, #727171 758px, transparent 758px);
  padding-top: var(--space);
  color: #fff;
}
.sec_concept_03::before {
  content: "";
  position: absolute;
  width: 400px;
  aspect-ratio: 400/154;
  background: url(../images/txt_concept_02.svg) no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translate(-50%, -38%);
}
@media screen and (max-width: 960px) {
  .sec_concept_03::before {
    width: 200px;
  }
}
.sec_concept_03 .ttl_cmn_01 {
  letter-spacing: 0.3em;
}
.sec_concept_03 .ttl_cmn_01::after {
  letter-spacing: 0.1em;
}
.sec_concept_03 .ttl_cmn_01 span {
  display: inline-block;
  transform: translateY(-10px);
}
.sec_concept_03 .ttl_cmn_01 span + span {
  transform: translateY(10px);
}
.sec_concept_03 p {
  text-align: center;
  font-family: "Noto Serif", serif;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .sec_concept_03 p {
    font-size: 0.9375em;
    margin-bottom: 40px;
  }
}
.sec_concept_03 .list_btns {
  margin-top: 65px;
}
@media screen and (max-width: 960px) {
  .sec_concept_03 .list_btns {
    margin-top: 40px;
  }
}

.sec_concept_04 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .sec_concept_04 ul {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 calc(var(--sideW) * -1);
  }
}
.sec_concept_04 ul a {
  display: flex;
  align-items: center;
  position: relative;
  background-color: rgba(33, 33, 33, 0.5);
  color: #fff;
  height: 170px;
  padding: 0 60px 0 35px;
  overflow: hidden;
}
.sec_concept_04 ul a:hover {
  background-color: rgba(33, 33, 33, 0.8);
}
.sec_concept_04 ul a:hover img {
  transform: scale(1.05);
}
.sec_concept_04 ul a::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.sec_concept_04 ul a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: -1;
}
.sec_concept_04 ul a h3 {
  font-size: 1.75em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 960px) {
  .sec_concept_04 ul a h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
}
.sec_concept_04 ul a p {
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .sec_concept_04 ul a p {
    font-size: 0.875em;
  }
}

.sec_concept_05 .lead {
  font-family: "Noto Serif", serif;
}
.sec_concept_05 ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .sec_concept_05 ul {
    grid-template-columns: 1fr;
  }
}
.sec_concept_05 ul li {
  display: grid;
  grid-template-rows: 1fr auto auto;
}
.sec_concept_05 ul a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-items: center;
  gap: 20px;
}
.sec_concept_05 ul a:hover figure img {
  transform: scale(1.05);
}
.sec_concept_05 ul a.is_current {
  pointer-events: none;
}
.sec_concept_05 ul a.is_current figure::before {
  content: "今ご覧いただいているページ";
  display: grid;
  place-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.6);
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 1.25em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .sec_concept_05 ul a.is_current figure::before {
    font-size: 1em;
  }
}
.sec_concept_05 ul h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_concept_05 ul p {
  font-size: 1.25em;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .sec_concept_05 ul p {
    font-size: 0.875em;
    text-align: center;
  }
}
.sec_concept_05 ul p span {
  display: block;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  margin-top: 10px;
}

.sec_about_01 figure {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .sec_about_01 figure {
    margin-bottom: 60px;
  }
}
.sec_about_01 .grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 20px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .sec_about_01 .grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 960px) {
  .sec_about_01 .grid .image {
    order: 2;
  }
}
.sec_about_01 .grid .image img {
  margin-bottom: 10px;
}
.sec_about_01 .grid .image p {
  font-size: 0.9375em;
}
.sec_about_01 .grid .catch {
  text-align: left;
  font-size: 2em;
}
@media screen and (max-width: 960px) {
  .sec_about_01 .grid .catch {
    font-size: 1.375em;
  }
}
@media screen and (max-width: 960px) {
  .sec_about_01 .grid .text {
    order: 1;
  }
}
.sec_about_01 .grid .text ul li {
  padding: 23px 0;
  border-bottom: 1px solid #212121;
}
@media screen and (max-width: 960px) {
  .sec_about_01 .grid .text ul li {
    padding: 10px 0;
  }
}
.sec_about_01 .grid .text ul li:last-child {
  border-bottom: none;
}
.sec_about_01 .grid .text ul li strong {
  display: block;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .sec_about_01 .grid .text ul li strong {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 960px) {
  .sec_about_01 .grid .text ul li p {
    font-size: 0.875em;
  }
}

.sec_about_02 .list_btns {
  margin-bottom: var(--spaceMin);
}

.performance_wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spaceMin);
}
.performance_wrap .item {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 20px min(4.66vw, 70px);
}
@media screen and (max-width: 960px) {
  .performance_wrap .item {
    grid-template-columns: 1fr;
  }
}
.performance_wrap .item .image figure {
  position: sticky;
  top: var(--headerHeight);
}
.performance_wrap .item .image img {
  display: block;
  aspect-ratio: 462/606;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.performance_wrap .item .text h3 {
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  border-left: 4px solid #647B64;
  padding: 10px 0 10px 22px;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .performance_wrap .item .text h3 {
    font-size: 1.375em;
    padding: 5px 0 5px 15px;
  }
}
.performance_wrap .item .text .catch {
  font-size: 2em;
  text-align: left;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .performance_wrap .item .text .catch {
    font-size: 1.375em;
  }
}
.performance_wrap .item .text p {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .performance_wrap .item .text p {
    font-size: 0.875em;
    margin-bottom: 20px;
  }
}
.performance_wrap .item .text ul {
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .performance_wrap .item .text ul {
    margin-bottom: 25px;
  }
}
.performance_wrap .item .text ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #212121;
  font-size: 1.25em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.75;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .performance_wrap .item .text ul li {
    padding: 10px 0;
    font-size: 1em;
  }
}
.performance_wrap .item .text ul li:hover {
  text-decoration: underline;
}
.performance_wrap .item .text ul li::after {
  content: "";
  display: block;
  width: 29px;
  aspect-ratio: 1/1;
  background: url(../images/ico_search.svg) no-repeat center/15px auto;
  background-color: #212121;
  border-radius: 50%;
}
.performance_wrap .item .text ul li:first-child {
  padding-top: 0;
}

.sec_about_03 {
  overflow: hidden;
}

.performance_other {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 960px) {
  .performance_other {
    gap: 60px;
  }
}
.performance_other .item {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .performance_other .item {
    grid-template-columns: 1fr;
  }
}
.performance_other .item:nth-child(even) {
  grid-template-columns: 50% 1fr;
}
@media screen and (max-width: 960px) {
  .performance_other .item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.performance_other .item:nth-child(even) .image {
  order: 1;
}
@media screen and (max-width: 960px) {
  .performance_other .item:nth-child(even) .image {
    order: 2;
  }
}
.performance_other .item:nth-child(even) .image figure {
  left: auto;
  right: 0;
}
.performance_other .item:nth-child(even) .text {
  order: 2;
}
@media screen and (max-width: 960px) {
  .performance_other .item:nth-child(even) .text {
    order: 1;
  }
}
.performance_other .item .text {
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .performance_other .item .text {
    padding-top: 0;
  }
}
.performance_other .item .text .catch {
  font-size: 2em;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .performance_other .item .text .catch {
    font-size: 1.375em;
  }
}
.performance_other .item .text ul li {
  padding: 20px 0;
  border-bottom: 1px solid #212121;
}
@media screen and (max-width: 960px) {
  .performance_other .item .text ul li {
    padding: 12px 0;
  }
}
.performance_other .item .text ul li:last-child {
  border-bottom: none;
}
.performance_other .item .text p {
  margin-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .performance_other .item .text p {
    font-size: 0.875em;
  }
}
.performance_other .item .text p:last-child {
  margin-bottom: 0;
}
.performance_other .item .text p.border {
  border-top: 1px solid #212121;
  border-bottom: 1px solid #212121;
  padding: 15px 0;
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .performance_other .item .text p.border {
    padding: 10px 0;
  }
}
.performance_other .item .image {
  position: relative;
  height: 517px;
}
@media screen and (max-width: 960px) {
  .performance_other .item .image {
    height: auto;
    aspect-ratio: 758/517;
  }
}
.performance_other .item .image figure {
  position: absolute;
  width: 50vw;
  height: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 960px) {
  .performance_other .item .image figure {
    width: 100%;
  }
}
.performance_other .item .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec_about_04 .ttl_cmn_01 {
  position: relative;
  font-size: 1.75em;
  margin-bottom: 95px;
}
@media screen and (max-width: 960px) {
  .sec_about_04 .ttl_cmn_01 {
    font-size: 1.5em;
  }
}
.sec_about_04 .ttl_cmn_01::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 56px;
  background-color: #212121;
  left: 50%;
  top: calc(100% + 20px);
  transform: translateX(-50%);
}
.sec_about_04 .ttl_cmn_01::after {
  font-size: 0.57em;
  color: #727171;
}
.sec_about_04 .catch {
  font-size: 2em;
}
@media screen and (max-width: 960px) {
  .sec_about_04 .catch {
    font-size: 1.375em;
  }
}
.sec_about_04 .lead {
  margin-bottom: 25px;
}
.sec_about_04 .price {
  background-color: #F5F5F5;
  padding: 30px 15px;
  font-size: 1.125em;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Serif", serif;
  margin-bottom: 15px;
}
.sec_about_04 .price span {
  display: block;
  font-size: 1.33em;
  font-family: "Noto Sans JP", sans-serif;
}
.sec_about_04 .price + p {
  text-align: center;
  font-size: 0.8125em;
}

.sec_lineup_01 .ttl_cmn_01 {
  margin-bottom: var(--spaceMin);
}
.sec_lineup_01 h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .sec_lineup_01 h2 {
    margin-bottom: 30px;
  }
}
.sec_lineup_01 h2 img {
  display: block;
  margin: 0 auto;
}

.lineup_wrap {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px min(5.66vw, 85px);
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .lineup_wrap {
    grid-template-columns: 1fr;
    padding: 0 var(--sideW);
  }
}
.lineup_wrap:last-child {
  margin-bottom: 0;
}
.lineup_wrap .text {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding: 30px 15px 0;
}
@media screen and (max-width: 960px) {
  .lineup_wrap .text {
    padding: 0;
  }
}
.lineup_wrap .text__in {
  max-width: 520px;
}
.lineup_wrap .text h3::before {
  content: attr(data-en);
  display: block;
  font-size: 1.66em;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  color: #F5F5F5;
  line-height: 1.2;
  margin-bottom: 12px;
}
.lineup_wrap .text p {
  margin-bottom: 35px;
}
.lineup_wrap ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px min(2.33vw, 35px);
  align-content: start;
  padding: 0 min(2.33vw, 35px);
}
@media screen and (max-width: 960px) {
  .lineup_wrap ul {
    gap: 10px;
    padding: 0 10px;
  }
}
.lineup_wrap ul li:first-child {
  grid-column: 1/-1;
  margin: 0 calc(min(2.33vw, 35px) * -1);
}
@media screen and (max-width: 960px) {
  .lineup_wrap ul li:first-child {
    margin: 0 -10px;
  }
}
.lineup_wrap ul li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}

.hero_lineup {
  margin-bottom: var(--space);
}
.hero_lineup__ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .hero_lineup__ttl {
    margin-bottom: 30px;
  }
}
.hero_lineup__ttl img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
}
.hero_lineup .swiper .ttl {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  font-family: "Noto Serif", serif;
  padding: 0 var(--sideW);
}
.hero_lineup .swiper .ttl h2 {
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .hero_lineup .swiper .ttl h2 {
    font-size: 1.125em;
  }
}
.hero_lineup .swiper .ttl p {
  font-size: 1.125em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .hero_lineup .swiper .ttl p {
    font-size: 0.8125em;
  }
}
.hero_lineup .swiper-slide {
  height: 696px;
}
@media screen and (max-width: 960px) {
  .hero_lineup .swiper-slide {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.hero_lineup .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_lineup .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .hero_lineup .swiper-pagination {
    bottom: 5px;
  }
}
.hero_lineup .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  background-color: #fff;
  border: none;
}
@media screen and (max-width: 960px) {
  .hero_lineup .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
  }
}
.hero_lineup .swiper-pagination .swiper-pagination-bullet::after {
  content: none;
}
.hero_lineup .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #212121;
}

.sec_zero_01 {
  background-color: #F5F5F5;
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .sec_zero_01 {
    padding: 40px 0;
  }
}
.sec_zero_01 .inner, .sec_zero_01 .inner_sm, .sec_zero_01 .inner_lg {
  display: grid;
  grid-template-columns: 41% 1fr;
  gap: 60px min(3.33vw, 50px);
}
@media screen and (max-width: 960px) {
  .sec_zero_01 .inner, .sec_zero_01 .inner_sm, .sec_zero_01 .inner_lg {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.sec_zero_01 .ttl_label_blk {
  grid-column: 1/-1;
  margin-bottom: 0;
}
.sec_zero_01 p {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .sec_zero_01 p {
    font-size: 0.875em;
  }
}
.sec_zero_01 p:last-child {
  margin-bottom: 0;
}
.sec_zero_01 ul {
  margin-bottom: 30px;
}
.sec_zero_01 ul li {
  position: relative;
  border-bottom: 1px solid #212121;
  font-size: 1.25em;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  padding: 0 0 10px 29px;
  margin-bottom: 15px;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .sec_zero_01 ul li {
    font-size: 1em;
    padding-left: 20px;
  }
}
.sec_zero_01 ul li:last-child {
  margin-bottom: 0;
}
.sec_zero_01 ul li::before {
  content: "";
  position: absolute;
  width: 19px;
  aspect-ratio: 19/14;
  background: url(../images/ico_check.svg) no-repeat center/contain;
  left: 0;
  top: 1em;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_zero_01 ul li::before {
    width: 12px;
  }
}

.sec_zero_02 {
  overflow: hidden;
}
.sec_zero_02 .concept_ism .item .text {
  padding-bottom: 30px;
}

.zero_slider {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .zero_slider {
    margin-top: 20px;
  }
}
.zero_slider .swiper {
  overflow: visible;
}
.zero_slider .swiper figure {
  display: block;
  margin: 0 auto 35px;
}
@media screen and (max-width: 960px) {
  .zero_slider .swiper figure {
    margin-bottom: 15px;
  }
}
.zero_slider .swiper strong {
  display: block;
  font-size: 1.75em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .zero_slider .swiper strong {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
}
.zero_slider .swiper p {
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .zero_slider .swiper p {
    font-size: 0.875em;
  }
}

.page-zero-style .sec_concept_05,
.page-flexible-comfort .sec_concept_05 {
  padding-top: var(--space);
}

.youtube_wrap {
  width: 930px;
  max-width: 100%;
  margin: 0 auto 40px;
  aspect-ratio: 16/9;
}
.youtube_wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec_comfort_about .inner, .sec_comfort_about .inner_sm, .sec_comfort_about .inner_lg {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0 min(3.33vw, 50px);
}
@media screen and (max-width: 960px) {
  .sec_comfort_about .inner, .sec_comfort_about .inner_sm, .sec_comfort_about .inner_lg {
    grid-template-columns: 1fr;
  }
}
.sec_comfort_about .inner .ttl_cmn_02, .sec_comfort_about .inner_sm .ttl_cmn_02, .sec_comfort_about .inner_lg .ttl_cmn_02 {
  grid-column: 1/-1;
}
@media screen and (max-width: 960px) {
  .sec_comfort_about .inner p, .sec_comfort_about .inner_sm p, .sec_comfort_about .inner_lg p {
    font-size: 0.9375em;
    margin-bottom: 30px;
  }
}
.sec_comfort_about .inner .youtube_wrap, .sec_comfort_about .inner_sm .youtube_wrap, .sec_comfort_about .inner_lg .youtube_wrap {
  width: 100%;
}

.sec_comfort_01 {
  overflow: hidden;
}
.sec_comfort_01 .box01 {
  margin-bottom: 75px;
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box01 {
    margin-bottom: 40px;
  }
}
.sec_comfort_01 .box01 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 145px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box01 ul {
    gap: 50px;
  }
}
.sec_comfort_01 .box01 ul::before {
  content: "";
  position: absolute;
  width: 64px;
  aspect-ratio: 1/1;
  inset: 0;
  background: linear-gradient(45deg, transparent calc(50% - 1px), #212121 calc(50% - 1px), #212121 calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(-45deg, transparent calc(50% - 1px), #212121 calc(50% - 1px), #212121 calc(50% + 1px), transparent calc(50% + 1px));
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box01 ul::before {
    width: 30px;
  }
}
.sec_comfort_01 .box01 ul li {
  width: 360px;
  max-width: 100%;
  text-align: center;
  border: 1px solid #212121;
  padding: 15px;
  font-family: "Noto Serif", serif;
  font-size: 2.5em;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box01 ul li {
    width: 130px;
    font-size: 1.5em;
    padding: 10px;
  }
}
.sec_comfort_01 .box01 p {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box01 p {
    text-align: left;
  }
}
.sec_comfort_01 .box2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px min(4vw, 60px);
}
.sec_comfort_01 .box2 .item {
  position: relative;
  background-color: #F5F5F5;
  text-align: center;
  padding: 35px;
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box2 .item {
    text-align: left;
    padding: 35px 15px;
  }
}
.sec_comfort_01 .box2 .item::before {
  content: "";
  position: absolute;
  width: 166px;
  height: 5px;
  background-color: #212121;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec_comfort_01 .box2 .item h3 {
  font-size: 1.875em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box2 .item h3 {
    font-size: 1.5em;
  }
}
.sec_comfort_01 .box2 .item p {
  font-size: 0.9375em;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box2 .item p {
    font-size: 0.875em;
  }
}
.sec_comfort_01 .box2 .item p:last-child {
  margin-bottom: 0;
}
.sec_comfort_01 .box2 .item ul {
  border-top: 1px dashed #212121;
  border-bottom: 1px dashed #212121;
  padding: 15px 0;
  text-align: left;
  margin-bottom: 15px;
}
.sec_comfort_01 .box2 .item ul li {
  position: relative;
  font-size: 0.9375em;
  line-height: 1.8;
  padding-left: 23px;
}
.sec_comfort_01 .box2 .item ul li::before {
  content: "";
  position: absolute;
  width: 13px;
  aspect-ratio: 1/1;
  background: url(../images/ico_check_02.svg) no-repeat center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_comfort_01 .box2 .item ul li::before {
    top: 0.9em;
  }
}

.page-comfort-style .sec_comfort_02 {
  background-color: transparent;
  padding-bottom: 0;
}

.sec_comfort_02 {
  background-color: #F5F5F5;
  padding-block: var(--space);
}
.sec_comfort_02 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px min(2.66vw, 40px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .sec_comfort_02 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-inline: calc(var(--sideW) * -1);
  }
}
.sec_comfort_02 ul a {
  display: block;
  position: relative;
  height: 430px;
  background-color: rgba(33, 33, 33, 0.5);
  padding: 25px;
  color: #fff;
  font-family: "Noto Serif", serif;
  clip-path: polygon(100% 0, 100% calc(100% - 35px), calc(100% - 35px) 100%, 0 100%, 0 0);
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .sec_comfort_02 ul a {
    height: 300px;
    padding: 25px 15px;
  }
}
.sec_comfort_02 ul a:hover::before {
  background-color: rgba(33, 33, 33, 0.8);
}
.sec_comfort_02 ul a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.5);
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.3s;
}
.sec_comfort_02 ul img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  top: 0;
  left: 0;
}
.sec_comfort_02 ul strong {
  display: inline-block;
  font-weight: 500;
  line-height: 1.75;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .sec_comfort_02 ul strong {
    font-size: 0.875em;
  }
}
.sec_comfort_02 ul p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .sec_comfort_02 ul p {
    font-size: 1em;
  }
}
.sec_comfort_02 ul p::before {
  content: "view more";
  position: absolute;
  font-size: 0.6em;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  color: #fff;
  left: 25px;
  bottom: 45px;
  letter-spacing: 0.04em;
}
.sec_comfort_02 ul p::after {
  content: "";
  position: absolute;
  width: 26px;
  aspect-ratio: 26/3;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  left: 25px;
  bottom: 28px;
}

.sec_comfort_03 {
  overflow: hidden;
}

.sec_comfort_04 .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 30px min(5.33vw, 80px);
}
@media screen and (max-width: 960px) {
  .sec_comfort_04 .box {
    grid-template-columns: 1fr;
  }
}

.comfort_features {
  display: flex;
  flex-direction: column;
  gap: var(--space);
  counter-reset: num;
}
.comfort_features .item {
  counter-increment: num;
}
.comfort_features .features_lead {
  position: relative;
  padding-top: 400px;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_lead {
    padding-top: 0;
    margin-bottom: 30px;
  }
}
.comfort_features .features_lead:last-child {
  margin-bottom: 0;
}
.comfort_features .features_lead figure {
  position: absolute;
  width: 100vw;
  height: 483px;
  top: 0;
  left: calc(50% - 50vw);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_lead figure {
    position: relative;
    height: 250px;
    margin: 0 calc(var(--sideW) * -1);
    left: auto;
  }
}
.comfort_features .features_lead figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comfort_features .features_lead .text {
  background-color: #fff;
  width: 865px;
  max-width: 100%;
  padding: 80px var(--sideW) 0;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_lead .text {
    padding: 30px var(--sideW) 0;
    margin-top: -50px;
  }
}
.comfort_features .features_lead .text h3 {
  display: flex;
  align-items: baseline;
  gap: 15px;
  position: relative;
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_lead .text h3 {
    font-size: 1.375em;
  }
}
.comfort_features .features_lead .text h3::before {
  content: counter(num, decimal-leading-zero);
  display: grid;
  place-content: center;
  width: 73px;
  aspect-ratio: 1/1;
  border: 1px solid #647B64;
  color: #647B64;
  font-size: 40px;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  line-height: 1;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_lead .text h3::before {
    width: 50px;
    font-size: 25px;
  }
}
.comfort_features .features_lead .text h3::after {
  content: "";
  position: absolute;
  width: 40px;
  aspect-ratio: 40/22;
  background: url(../images/txt_ism.svg) no-repeat center/contain;
  left: 18px;
  top: -5px;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_lead .text h3::after {
    width: 30px;
    left: 12px;
  }
}
@media screen and (max-width: 960px) {
  .comfort_features .features_lead .text p {
    font-size: 0.875em;
  }
}
.comfort_features .features_detail {
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #F5F5F5;
  padding: 60px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .comfort_features .features_detail {
    padding: 30px 15px;
    overflow-x: scroll;
  }
}
.comfort_features .features_detail h3 {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #212121;
  text-align: center;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_detail h3 {
    font-size: 1em;
  }
}
@media screen and (max-width: 960px) {
  .comfort_features .features_detail__scroll {
    width: 200%;
  }
}
.comfort_features .features_detail img {
  display: block;
  margin: 0 auto;
}
.comfort_features .features_detail img:first-of-type {
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}
.comfort_features .features_detail ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_detail ul {
    gap: 0 3%;
  }
}
.comfort_features .features_detail ul strong {
  display: block;
  font-size: 1.125em;
  font-weight: 400;
  background-color: #647B64;
  padding: 5px 0;
  color: #fff;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_detail ul strong {
    font-size: 1em;
    line-height: 1.5;
  }
}
.comfort_features .features_detail ul p {
  font-size: 0.9375em;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .comfort_features .features_detail ul p {
    font-size: 0.875em;
  }
}
.comfort_features .comfort_features_plan {
  overflow: visible;
}
.comfort_features .comfort_features_plan p {
  font-size: 1.125em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.comfort_features .comfort_features_plan img {
  display: block;
  border-radius: 10px;
}

.sec_style h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .sec_style h2 {
    margin-bottom: 30px;
  }
}
.sec_style h2 img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec_style h2 img {
    max-width: 60%;
  }
}
.sec_style .main_img {
  display: block;
  width: 100%;
  height: 692px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: var(--spaceMin);
}
@media screen and (max-width: 960px) {
  .sec_style .main_img {
    height: auto;
    aspect-ratio: 1500/692;
  }
}
.sec_style .plan {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px min(3.33vw, 50px);
  margin-bottom: var(--spaceMin);
}
@media screen and (max-width: 960px) {
  .sec_style .plan {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.sec_style .plan p {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .sec_style .plan p {
    font-size: 0.875em;
    margin-bottom: 25px;
  }
}
.sec_style .plan p:last-child {
  margin-bottom: 0;
}
.sec_style .plan strong {
  display: block;
  font-size: 2.75em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid #212121;
}
@media screen and (max-width: 960px) {
  .sec_style .plan strong {
    font-size: 2em;
    margin-bottom: 30px;
    padding-bottom: 0;
  }
}
.sec_style .plan .detail {
  display: grid;
  grid-template-areas: "area1 area3" "area2 area4";
  gap: 10px;
  font-size: 0.875em;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .sec_style .plan .detail {
    grid-template-areas: none;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
}
.sec_style .plan .detail .item {
  display: grid;
  grid-template-columns: 101px 1fr;
  gap: 0 12px;
}
.sec_style .plan .detail .item:nth-child(1) {
  grid-area: area1;
}
@media screen and (max-width: 960px) {
  .sec_style .plan .detail .item:nth-child(1) {
    grid-area: auto;
  }
}
.sec_style .plan .detail .item:nth-child(2) {
  grid-area: area2;
}
@media screen and (max-width: 960px) {
  .sec_style .plan .detail .item:nth-child(2) {
    grid-area: auto;
  }
}
.sec_style .plan .detail .item:nth-child(3) {
  grid-area: area3;
}
@media screen and (max-width: 960px) {
  .sec_style .plan .detail .item:nth-child(3) {
    grid-area: auto;
  }
}
.sec_style .plan .detail .item:nth-child(4) {
  grid-area: area4;
}
@media screen and (max-width: 960px) {
  .sec_style .plan .detail .item:nth-child(4) {
    grid-area: auto;
  }
}
.sec_style .plan .detail .item dt {
  background-color: #647B64;
  text-align: center;
  color: #fff;
}
.sec_style .plan .detail .item dt:empty {
  background-color: transparent;
}
.sec_style .plan .price {
  display: grid;
  grid-template-columns: 147px 1fr;
  gap: 0 20px;
  align-items: center;
  line-height: 1.5;
  font-size: 1.125em;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .sec_style .plan .price {
    grid-template-columns: 100px 1fr;
    gap: 10px;
    font-size: 1em;
  }
}
.sec_style .plan .price dt {
  text-align: center;
  padding: 10px;
  background-color: #647B64;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}
.sec_style .plan .price dd {
  font-weight: 500;
}
.sec_style .plan .price dd span {
  font-size: 2.22em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 960px) {
  .sec_style .plan .price dd span {
    font-size: 1.875em;
  }
}
.sec_style .plan .price + p {
  font-size: 0.875em;
}
.sec_style .box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px min(4vw, 60px);
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .sec_style .box {
    margin-bottom: 50px;
  }
}
.sec_style .box:last-child {
  margin-bottom: 0;
}
.sec_style .box::after {
  content: "";
  position: absolute;
  width: 84px;
  aspect-ratio: 84/12;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #212121;
  top: 210px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .sec_style .box::after {
    content: none;
  }
}
.sec_style .box .item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  position: relative;
  background-color: #F5F5F5;
  text-align: center;
  padding: 35px;
}
@media screen and (max-width: 960px) {
  .sec_style .box .item {
    text-align: left;
    padding: 35px 15px;
  }
}
.sec_style .box .item::before {
  content: "";
  position: absolute;
  width: 166px;
  height: 5px;
  background-color: #212121;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .sec_style .box .item::before {
    width: 120px;
  }
}
.sec_style .box .item h4 {
  font-size: 1.875em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .sec_style .box .item h4 {
    font-size: 1.5em;
  }
}
.sec_style .box .item p {
  font-size: 0.9375em;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .sec_style .box .item p {
    font-size: 0.875em;
  }
}
.sec_style .box .item p:last-child {
  margin-bottom: 0;
}
.sec_style .box .item ul li {
  padding-bottom: 40px;
  border-bottom: 1px dashed #212121;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .sec_style .box .item ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.sec_style .box .item ul li:last-child {
  margin-bottom: 0;
}
.sec_style .box .item ul li img {
  display: block;
  margin: 0 auto;
}
.sec_style .box2 {
  display: grid;
  grid-template-columns: 1fr calc(50% + 40px);
  gap: 30px min(2.66vw, 40px);
  background-color: #F0F0F0;
  padding: 70px min(5.33vw, 80px);
}
@media screen and (max-width: 960px) {
  .sec_style .box2 {
    grid-template-columns: 1fr;
    padding: 40px 15px;
  }
}
.sec_style .box2 .text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  counter-reset: alpha;
}
@media screen and (max-width: 960px) {
  .sec_style .box2 .text {
    gap: 15px;
  }
}
.sec_style .box2 .text li {
  counter-increment: alpha;
  background-color: #fff;
  padding: 28px 25px;
}
@media screen and (max-width: 960px) {
  .sec_style .box2 .text li {
    padding: 20px 15px;
  }
}
.sec_style .box2 .text li h4 {
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-size: 1.5em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .sec_style .box2 .text li h4 {
    gap: 10px;
    font-size: 1.25em;
  }
}
.sec_style .box2 .text li h4::before {
  content: counter(alpha, upper-alpha);
  display: grid;
  place-content: center;
  width: 58px;
  aspect-ratio: 1/1;
  background-color: #727171;
  color: #fff;
  font-size: 31px;
  font-family: "EB Garamond", serif;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .sec_style .box2 .text li h4::before {
    width: 40px;
    font-size: 22px;
  }
}
.sec_style .box2 .text li p {
  font-size: 0.9375em;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .sec_style .box2 .text li p {
    font-size: 0.875em;
  }
}

.hero_techno {
  position: relative;
  background-color: #003748;
  padding: var(--space) 0;
  margin-bottom: var(--space);
}
.hero_techno .inner_lg {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 20px min(6vw, 90px);
  color: #fff;
}
@media screen and (max-width: 960px) {
  .hero_techno .inner_lg {
    grid-template-columns: 1fr;
  }
}
.hero_techno .inner_lg h1 {
  margin-bottom: 30px;
}
.hero_techno .inner_lg strong {
  display: block;
  font-size: 2.75em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .hero_techno .inner_lg strong {
    font-size: 1.375em;
  }
}
.hero_techno .inner_lg p {
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 960px) {
  .hero_techno .inner_lg p {
    font-size: 0.875em;
  }
}
.hero_techno .ttl_label_blue {
  position: absolute;
  width: 930px;
  max-width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  transform: translateY(50%);
}
@media screen and (max-width: 960px) {
  .hero_techno .ttl_label_blue {
    max-width: calc(100% - var(--sideW) * 2);
  }
}

.sec_techno_01 .inner, .sec_techno_01 .inner_sm, .sec_techno_01 .inner_lg {
  display: grid;
  grid-template-columns: 41% 1fr;
  gap: 60px min(3.33vw, 50px);
}
@media screen and (max-width: 960px) {
  .sec_techno_01 .inner, .sec_techno_01 .inner_sm, .sec_techno_01 .inner_lg {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.sec_techno_01 p {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .sec_techno_01 p {
    font-size: 0.875em;
  }
}
.sec_techno_01 p:last-child {
  margin-bottom: 0;
}
.sec_techno_01 ul {
  margin-bottom: 30px;
}
.sec_techno_01 ul li {
  position: relative;
  border-bottom: 1px solid #212121;
  font-size: 1.25em;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  padding: 0 0 10px 29px;
  margin-bottom: 15px;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .sec_techno_01 ul li {
    font-size: 1em;
    padding-left: 20px;
  }
}
.sec_techno_01 ul li:last-child {
  margin-bottom: 0;
}
.sec_techno_01 ul li::before {
  content: "";
  position: absolute;
  width: 19px;
  aspect-ratio: 19/14;
  background: url(../images/ico_check.svg) no-repeat center/contain;
  left: 0;
  top: 1em;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_techno_01 ul li::before {
    width: 12px;
  }
}

.sec_techno_02 {
  overflow: hidden;
}
.sec_techno_02 img {
  display: block;
  margin: 0 auto;
}
.sec_techno_02 h2 {
  margin-bottom: 20px;
}
.sec_techno_02 h2 img {
  transform: rotate(-13deg);
}
@media screen and (max-width: 960px) {
  .sec_techno_02 h2 img {
    width: 200px;
  }
}
.sec_techno_02 .detail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 10px;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .sec_techno_02 .detail {
    grid-template-columns: 1fr;
  }
}
.sec_techno_02 .detail::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: calc(100% + 100px + 230px);
  background-color: #F5F5F5;
  left: calc(50% - 50vw);
  bottom: -100px;
  z-index: -1;
}
.sec_techno_02 .detail img {
  mix-blend-mode: multiply;
}

.sec_techno_03 {
  background-color: #003748;
  padding: var(--space) 0;
}
.sec_techno_03 dl {
  counter-reset: num;
  display: flex;
  flex-direction: column;
  gap: 110px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .sec_techno_03 dl {
    gap: 60px;
  }
}
.sec_techno_03 dl .item {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 20px min(3.33vw, 50px);
  position: relative;
  background-color: #fff;
  padding: var(--sideW);
  counter-increment: num;
}
@media screen and (max-width: 960px) {
  .sec_techno_03 dl .item {
    grid-template-columns: 1fr;
  }
}
.sec_techno_03 dl .item::before {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  top: -20px;
  right: 30px;
  line-height: 1;
  font-size: 8.75em;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  color: #F5F5F5;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_techno_03 dl .item::before {
    font-size: 5em;
    top: -10px;
    right: 15px;
  }
}
.sec_techno_03 dl h3 {
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .sec_techno_03 dl h3 {
    font-size: 1.375em;
  }
}
@media screen and (max-width: 960px) {
  .sec_techno_03 dl p {
    font-size: 0.875em;
  }
}
.sec_techno_03 .box {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .sec_techno_03 .box {
    gap: 30px;
    padding: 30px 0;
    margin-bottom: 40px;
  }
}
.sec_techno_03 .box img {
  display: block;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.hero_company {
  position: relative;
  padding: calc(var(--headerHeight) + 65px) 0 0;
}
.hero_company::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 285px);
  background-color: #728889;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 960px) {
  .hero_company::after {
    height: calc(100% + 200px);
  }
}
.hero_company .inner, .hero_company .inner_sm, .hero_company .inner_lg {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 30px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .hero_company .inner, .hero_company .inner_sm, .hero_company .inner_lg {
    grid-template-columns: 1fr;
  }
}
.hero_company .text {
  padding: 60px 0 0 var(--sideW);
}
@media screen and (max-width: 960px) {
  .hero_company .text {
    padding: 0;
  }
}
.hero_company h1 {
  font-size: 1.125em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  color: #fff;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .hero_company h1 {
    font-size: 1em;
  }
}
.hero_company h1::before {
  content: "Company";
  display: block;
  font-size: 3.33em;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  line-height: 1.2;
}
.hero_company .catch {
  margin-bottom: 30px;
}
.hero_company p {
  font-family: "Noto Serif", serif;
  line-height: 2.1;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .hero_company p {
    line-height: 1.75;
  }
}
.hero_company p::before {
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px));
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .hero_company p::before {
    width: 30px;
  }
}
.hero_company .image img {
  display: block;
  width: 100%;
  height: 710px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .hero_company .image img {
    height: auto;
  }
}

.sec_company_01 {
  overflow: hidden;
  margin-top: -80px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .sec_company_01 {
    margin-top: -40px;
  }
}
.sec_company_01 .inner, .sec_company_01 .inner_sm, .sec_company_01 .inner_lg {
  position: relative;
  padding-block: var(--space);
}
.sec_company_01 .inner::before, .sec_company_01 .inner_sm::before, .sec_company_01 .inner_lg::before {
  content: "";
  position: absolute;
  width: calc(100% + 100vw);
  height: 100%;
  background-color: #212121;
  right: var(--sideW);
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .sec_company_01 .inner::before, .sec_company_01 .inner_sm::before, .sec_company_01 .inner_lg::before {
    right: calc(var(--sideW) / 2);
  }
}
.sec_company_01 .ttl_cmn_01 {
  position: relative;
  letter-spacing: 0.3em;
}
.sec_company_01 .ttl_cmn_01::before {
  content: "";
  display: block;
  width: 400px;
  aspect-ratio: 400/154;
  background: url(../images/txt_concept_02.svg) no-repeat center/contain;
  margin: 0 auto 15px;
}
@media screen and (max-width: 960px) {
  .sec_company_01 .ttl_cmn_01::before {
    width: 200px;
  }
}
.sec_company_01 .ttl_cmn_01::after {
  letter-spacing: 0.1em;
}
.sec_company_01 .ttl_cmn_01 span {
  display: inline-block;
  transform: translateY(-10px);
}
.sec_company_01 .ttl_cmn_01 span + span {
  transform: translateY(10px);
}
.sec_company_01 .lead {
  font-family: "Noto Serif", serif;
}
.sec_company_01 dl {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 930px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec_company_01 dl {
    gap: 40px;
  }
}
.sec_company_01 dl dt {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
.sec_company_01 dl dt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  top: calc(50% - 10px);
}
.sec_company_01 dl dt span {
  display: inline-block;
  position: relative;
  font-size: 1.125em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  background-color: #212121;
  padding: 0 30px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .sec_company_01 dl dt span {
    font-size: 1em;
  }
}
.sec_company_01 dl dt span::before {
  content: attr(data-en);
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 3.33em;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .sec_company_01 dl dt span::before {
    font-size: 3em;
  }
}
.sec_company_01 dl dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sec_company_01 dl dd ul li {
  font-size: 1.25em;
  font-family: "Noto Serif", serif;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 960px) {
  .sec_company_01 dl dd ul li {
    font-size: 1em;
  }
}

.sec_company_02 .inner, .sec_company_02 .inner_sm, .sec_company_02 .inner_lg {
  display: grid;
  grid-template-columns: 473px 1fr;
  gap: 30px min(5.33vw, 80px);
}
@media screen and (max-width: 960px) {
  .sec_company_02 .inner, .sec_company_02 .inner_sm, .sec_company_02 .inner_lg {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 960px) {
  .sec_company_02 .image {
    order: 2;
  }
}
.sec_company_02 .image figure {
  margin-bottom: 20px;
}
.sec_company_02 .image p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  font-size: 1.125em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .sec_company_02 .image p {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 960px) {
  .sec_company_02 .image p img {
    width: 150px;
  }
}
.sec_company_02 .text {
  padding-top: 70px;
}
@media screen and (max-width: 960px) {
  .sec_company_02 .text {
    padding-top: 0;
    order: 1;
  }
}
.sec_company_02 .text h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 25px;
  font-size: 1.125em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .sec_company_02 .text h2 {
    font-size: 1em;
  }
}
.sec_company_02 .text h2::before {
  content: attr(data-en);
  display: block;
  font-size: 3.33em;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .sec_company_02 .text h2::before {
    font-size: 3em;
  }
}
.sec_company_02 .text .catch {
  position: relative;
}
.sec_company_02 .text .catch::before {
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, transparent calc(50% - 0.5px), #212121 calc(50% - 0.5px), #212121 calc(50% + 0.5px), transparent calc(50% + 0.5px));
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .sec_company_02 .text .catch::before {
    width: 30px;
  }
}
.sec_company_02 .text p:not(.catch) {
  font-family: "Noto Serif", serif;
  line-height: 2.1;
}
@media screen and (max-width: 960px) {
  .sec_company_02 .text p:not(.catch) {
    font-size: 0.875em;
    line-height: 1.8;
  }
}

.sec_company_03 figure {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .sec_company_03 figure {
    margin-bottom: 30px;
  }
}

.sec_company_04 figure {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .sec_company_04 figure {
    margin-bottom: 30px;
  }
}
.sec_company_04 .table_cmn_01 {
  width: 930px;
  max-width: 100%;
  margin: 0 auto;
}
.sec_company_04 .fun {
  margin-top: 55px;
}
@media screen and (max-width: 960px) {
  .sec_company_04 .fun {
    margin-top: 40px;
  }
}
.sec_company_04 .fun p {
  text-align: center;
  font-size: 1.375em;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .sec_company_04 .fun p {
    font-size: 0.875em;
    margin-bottom: 10px;
  }
}
.sec_company_04 .fun a {
  display: block;
  width: 507px;
  max-width: 100%;
  margin: auto;
  border: 1px solid #212121;
}
.sec_company_04 .fun a:hover {
  box-shadow: 0 10px 10px rgba(33, 33, 33, 0.3);
}
.sec_company_04 .fun a img {
  display: block;
  margin: 0 auto;
  width: 213px;
}
@media screen and (max-width: 960px) {
  .sec_company_04 .fun a img {
    width: 150px;
  }
}

.sec_reform_01 h2 {
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 960px) {
  .sec_reform_01 h2 img {
    width: 200px;
  }
}

.sec_reform_02 {
  overflow: hidden;
}
.sec_reform_02 .inner, .sec_reform_02 .inner_sm, .sec_reform_02 .inner_lg {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 30px min(5.33vw, 80px);
}
@media screen and (max-width: 960px) {
  .sec_reform_02 .inner, .sec_reform_02 .inner_sm, .sec_reform_02 .inner_lg {
    grid-template-columns: 1fr;
  }
}
.sec_reform_02 .text {
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  .sec_reform_02 .text {
    padding-top: 0;
  }
}
.sec_reform_02 .text h2 {
  text-align: left;
}
.sec_reform_02 .text h2::before {
  content: "About";
  display: block;
  font-size: 1.57em;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  color: #F5F5F5;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .sec_reform_02 .text p {
    font-size: 0.875em;
  }
}
.sec_reform_02 .mov {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .sec_reform_02 .mov {
    padding: 40px 0;
  }
}
.sec_reform_02 .mov::after {
  content: "";
  position: absolute;
  width: 50vw;
  min-width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  left: min(4.66vw, 70px);
  top: 0;
  z-index: -1;
}
.sec_reform_02 .mov__in {
  position: relative;
  width: 50vw;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 960px) {
  .sec_reform_02 .mov__in {
    width: 100%;
  }
}
.sec_reform_02 .mov__in iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec_reform_03 {
  position: relative;
}
.sec_reform_03::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 157px;
  background-color: #212121;
  left: calc(50% - 0.5px);
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_reform_03::before {
    height: 100px;
  }
}
.sec_reform_03 .box {
  padding: var(--space) 0;
  background-color: #fff;
  background-image: linear-gradient(to right, #F5F5F5 1px, transparent 1px), linear-gradient(to bottom, #F5F5F5 1px, transparent 1px);
  background-size: 50px 50px;
}
@media screen and (max-width: 960px) {
  .sec_reform_03 .box {
    background-size: 40px 40px;
  }
}
.sec_reform_03 .box ul {
  width: 930px;
  max-width: 100%;
  margin: 0 auto 40px;
}
.sec_reform_03 .box ul li {
  position: relative;
  border-bottom: 1px dotted #212121;
  font-size: 1.375em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  padding: 18px 0 18px 52px;
}
@media screen and (max-width: 960px) {
  .sec_reform_03 .box ul li {
    font-size: 1em;
    padding: 13px 0 13px 36px;
  }
}
.sec_reform_03 .box ul li::before {
  content: "";
  position: absolute;
  width: 1.68em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #212121;
  background: url(../images/ico_check.svg) no-repeat center/18px auto;
  left: 0;
  top: 1.48em;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .sec_reform_03 .box ul li::before {
    background-size: 12px auto;
  }
}

.sec_reform_04 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px min(4vw, 60px);
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .sec_reform_04 ul {
    gap: 40px;
  }
}
.sec_reform_04 ul li {
  display: block;
  text-align: center;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  cursor: pointer;
}
.sec_reform_04 ul li:hover img {
  transform: scale(1.1);
}
.sec_reform_04 ul li figure {
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .sec_reform_04 ul li figure {
    margin-bottom: 15px;
  }
}
.sec_reform_04 ul li .ttl {
  display: block;
  text-align: center;
  font-size: 1.375em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .sec_reform_04 ul li .ttl {
    font-size: 1.125em;
  }
}
.sec_reform_04 ul li .btn {
  position: relative;
}
@media screen and (max-width: 960px) {
  .sec_reform_04 ul li .btn {
    font-size: 0.875em;
  }
}
.sec_reform_04 ul li .btn::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #212121;
  margin: 10px auto 0;
}
.sec_reform_04 dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec_reform_04 dl dt {
  background-color: #212121;
  color: #fff;
  text-align: center;
  font-size: 1.375em;
  line-height: 1.5;
  padding: 10px 50px;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 960px) {
  .sec_reform_04 dl dt {
    font-size: 1em;
  }
}
.sec_reform_04 dl dd {
  border: 1px solid #212121;
  padding: 30px 50px;
}
@media screen and (max-width: 960px) {
  .sec_reform_04 dl dd {
    padding: 20px 15px;
    font-size: 0.875em;
  }
}

.sec_reform_05 {
  background-color: #212121;
  padding: var(--sideW) 0;
  margin-bottom: 0;
}
.sec_reform_05 ul {
  display: flex;
  flex-direction: column;
  gap: 60px;
  counter-reset: num;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul {
    gap: 30px;
    margin-bottom: 40px;
  }
}
.sec_reform_05 ul li {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 20px min(3.33vw, 50px);
  background-color: #fff;
  padding: var(--sideW);
  counter-increment: num;
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul li {
    grid-template-columns: 1fr;
  }
}
.sec_reform_05 ul li .image {
  position: relative;
}
.sec_reform_05 ul li .image::after {
  content: "";
  position: absolute;
  width: 70px;
  aspect-ratio: 70/86;
  background: url(../images/ico_character.svg) no-repeat center/contain;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul li .image::after {
    width: 45px;
    bottom: 10px;
  }
}
.sec_reform_05 ul li .image img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul li .image img {
    height: auto;
  }
}
.sec_reform_05 ul li .image p {
  position: absolute;
  left: 40px;
  bottom: 30px;
  background-color: #647B64;
  border-radius: 60px 60px 60px 0;
  line-height: 1.5;
  padding: 8px 20px;
  color: #fff;
  font-size: 1.125em;
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul li .image p {
    position: static;
    left: 15px;
    bottom: 10px;
    font-size: 0.8125em;
    padding: 5px 20px;
    margin-top: 15px;
  }
}
.sec_reform_05 ul li .text {
  position: relative;
}
.sec_reform_05 ul li .text::before {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 3.75em;
  font-weight: 500;
  font-family: "EB Garamond", serif;
  line-height: 0.9;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul li .text::before {
    font-size: 2.5em;
  }
}
.sec_reform_05 ul li .text::after {
  content: "";
  position: absolute;
  width: 34px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, transparent calc(50% - 0.5px), #212121 calc(50% - 0.5px), #212121 calc(50% + 0.5px), transparent calc(50% + 0.5px));
  top: 2em;
  left: 3.5em;
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul li .text::after {
    top: 1em;
    left: 2.5em;
  }
}
.sec_reform_05 ul li .text h3 {
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul li .text h3 {
    font-size: 1.375em;
    margin-bottom: 15px;
  }
}
.sec_reform_05 ul li .text p {
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .sec_reform_05 ul li .text p {
    font-size: 0.875em;
  }
}
.sec_reform_05 ul li .text p:last-child {
  margin-bottom: 0;
}

.oubo_box {
  background-color: #647B64;
  padding: 30px var(--sideW);
  margin-bottom: 40px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .oubo_box {
    padding: 20px 15px;
  }
}
.oubo_box .oubo_p1 {
  color: #fff;
  font-size: 1.875em;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .oubo_box .oubo_p1 {
    font-size: 1.25em;
  }
}
.oubo_box .oubo_p2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 0.875em;
}
@media screen and (max-width: 960px) {
  .oubo_box .oubo_p2 {
    font-size: 0.75em;
  }
}
.oubo_box .oubo_p3 {
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .oubo_box .oubo_p3 {
    font-size: 0.8125em;
  }
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 364px;
}
@media screen and (max-width: 960px) {
  .map {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.map--lg {
  height: 460px;
}
@media screen and (max-width: 960px) {
  .map--lg {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map + p {
  font-weight: 700;
  letter-spacing: 0.01;
}

.ttl_top_01 {
  position: relative;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .ttl_top_01 {
    font-size: 1.125em;
  }
}
.ttl_top_01::before {
  content: attr(data-en);
  display: block;
  font-size: 3.33em;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.08em;
  color: #647B64;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .ttl_top_01::before {
    font-size: 2.75em;
  }
}
.ttl_top_01:last-child {
  margin-bottom: 0;
}
.ttl_top_01.center {
  text-align: center;
}

.ttl_cmn_01 {
  display: block;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_01 {
    font-size: 1.75em;
  }
}
.ttl_cmn_01::after {
  content: attr(data-en);
  display: block;
  font-size: 0.4em;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_01::after {
    font-size: 0.6em;
  }
}
.ttl_cmn_01.wht {
  color: #fff;
}

.ttl_cmn_02 {
  display: block;
  position: relative;
  font-size: 1.5em;
  text-align: center;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  padding-bottom: 40px;
  margin-bottom: 55px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_02 {
    font-size: 1.125em;
    padding-bottom: 25px;
    margin-bottom: 35px;
  }
}
.ttl_cmn_02::before {
  content: attr(data-en);
  display: block;
  font-size: 3.33em;
  font-family: "EB Garamond", serif;
  color: #647B64;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_02::before {
    font-size: 2.5em;
  }
}
.ttl_cmn_02::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #727171;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.ttl_cmn_02.left {
  text-align: left;
}
.ttl_cmn_02.left::after {
  left: 0;
  transform: translateX(0);
}
.ttl_cmn_02.no_border {
  padding-bottom: 0;
}
.ttl_cmn_02.no_border::after {
  content: none;
}

.ttl_cmn_03 {
  display: block;
  position: relative;
  text-align: center;
  font-size: 2.5em;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #647B64;
  font-family: "Noto Serif", serif;
  padding-bottom: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_03 {
    font-size: 1.5em;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
}
.ttl_cmn_03::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #647B64;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.ttl_cmn_03::after {
  content: attr(data-en);
  display: block;
  font-size: 0.45em;
  font-family: "EB Garamond", serif;
  color: #727171;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.ttl_label_blk {
  display: block;
  background-color: #212121;
  text-align: center;
  color: #fff;
  font-size: 1.75em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  padding: 25px 15px;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .ttl_label_blk {
    font-size: 1.375em;
    padding: 15px;
    margin-bottom: 40px;
  }
}

.ttl_label_gray {
  display: block;
  background-color: #727171;
  text-align: center;
  color: #fff;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  padding: 15px;
  line-height: 1.5;
  margin-bottom: 45px;
}
.ttl_label_gray.ico_chara {
  position: relative;
}
.ttl_label_gray.ico_chara::after {
  content: "";
  position: absolute;
  width: 70px;
  aspect-ratio: 70/86;
  background: url(../images/ico_character.svg) no-repeat center/contain;
  right: 30px;
  bottom: 0;
}
.ttl_label_gray small {
  display: block;
}

.ttl_label_blue {
  display: block;
  background-color: #346C7E;
  text-align: center;
  color: #fff;
  font-size: 1.75em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  padding: 25px 15px;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .ttl_label_blue {
    font-size: 1.375em;
    padding: 15px;
    margin-bottom: 40px;
  }
}

.ttl_label_blue02 {
  display: block;
  background-color: #003748;
  text-align: center;
  color: #fff;
  font-size: 1.75em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  padding: 25px 15px;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .ttl_label_blue02 {
    font-size: 1.375em;
    padding: 15px;
    margin-bottom: 40px;
  }
}
.ttl_label_blue02 small {
  display: block;
  font-size: 0.75em;
}

.list_post {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px 63px;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .list_post {
    gap: 30px 0;
    margin-bottom: 40px;
  }
}
.list_post:last-child {
  margin-bottom: 0;
}
.list_post a {
  display: block;
  font-family: "Noto Serif", serif;
}
.list_post a:hover img {
  transform: scale(1.1);
}
.list_post a:hover strong {
  color: #647B64;
}
.list_post a figure {
  aspect-ratio: 1/1;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .list_post a figure {
    aspect-ratio: 3/2;
    margin-bottom: 15px;
  }
}
.list_post a figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.list_post a strong {
  display: block;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .list_post a strong {
    font-size: 0.9375em;
    margin-bottom: 5px;
  }
}
.list_post a .btn {
  position: relative;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .list_post a .btn {
    font-size: 0.875em;
  }
}
.list_post a .btn::after {
  content: "";
  position: absolute;
  width: 26px;
  aspect-ratio: 26/2;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #212121;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.list_post a.card_staff figure {
  aspect-ratio: 2/3;
}
.list_post a.card_staff figure figcaption {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #212121;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.5;
  padding: 2px 15px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .list_post a.card_staff figure figcaption {
    font-size: 0.75em;
    padding: 2px 10px;
  }
}
.list_post a.card_staff .position {
  text-align: center;
  font-size: 1.125em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .list_post a.card_staff .position {
    font-size: 0.875em;
  }
}
.list_post a.card_staff strong {
  font-size: 1.5em;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .list_post a.card_staff strong {
    font-size: 1.25em;
  }
}
.list_post a.card_works figure {
  aspect-ratio: 365/244;
}
.list_post:has(.card_staff) {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
@media screen and (max-width: 960px) {
  .list_post:has(.card_staff) {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}

.list_blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px min(4vw, 60px);
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .list_blog {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
}
.list_blog:last-child {
  margin-bottom: 0;
}
.list_blog li {
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.list_blog a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  align-items: start;
  gap: 20px 0;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .list_blog a {
    gap: 15px 0;
  }
}
.list_blog a:hover figure img {
  transform: scale(1.1);
}
.list_blog a:hover .ttl {
  color: #647B64;
}
.list_blog a figure {
  aspect-ratio: 3/2;
}
.list_blog a figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.list_blog a time {
  display: flex;
  gap: 0.25em;
  font-size: 0.875em;
  font-weight: 400;
  font-family: "EB Garamond", serif;
}
.list_blog a time::before {
  content: "DATE.";
}
.list_blog a .ttl {
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .list_blog a .ttl {
    font-size: 1.125em;
  }
}
.list_blog--ranking {
  grid-template-columns: repeat(5, 1fr);
  gap: 40px min(2.66vw, 40px);
}
@media screen and (max-width: 960px) {
  .list_blog--ranking {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.list_blog--ranking a time {
  font-size: 0.75em;
}
.list_blog--ranking a .ttl {
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .list_blog--ranking a .ttl {
    font-size: 0.875em;
  }
}
.list_blog--ranking a .post_writer {
  grid-template-columns: 48px 1fr;
  gap: 3px 12px;
}
.list_blog--ranking a .post_writer dd {
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0 6px;
}
@media screen and (max-width: 767px) {
  .list_blog--ranking a .post_writer dd {
    font-size: 0.8125em;
  }
}

.post_writer {
  display: grid;
  grid-template-columns: 63px 1fr;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 960px) {
  .post_writer {
    gap: 10px;
  }
}
.post_writer dt {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.post_writer dt img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
}
.post_writer dd {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.125em;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .post_writer dd {
    font-size: 1em;
  }
}
.post_writer dd::before {
  content: "Writer:";
  display: block;
  font-size: 0.72em;
  font-weight: 500;
}
.post_writer__profile {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #F5F5F5;
  font-size: 0.875em;
}

.list_sales {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 75px min(3.33vw, 50px);
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .list_sales {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
}
.list_sales:last-child {
  margin-bottom: 0;
}
.list_sales--openhouse .sales_card figure {
  aspect-ratio: 1/1;
}

.list_exhibition {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 42px;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .list_exhibition {
    gap: 30px;
    margin-bottom: 40px;
  }
}
.list_exhibition:last-child {
  margin-bottom: 0;
}
.list_exhibition li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 15px;
  width: calc(33.3333333333% - 28px);
}
@media screen and (max-width: 960px) {
  .list_exhibition li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .list_exhibition li {
    width: 100%;
  }
}
.list_exhibition li .ttl {
  font-size: 1.125em;
  width: 100%;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .list_exhibition li .ttl {
    margin-bottom: 5px;
    font-size: 1em;
  }
}
.list_exhibition li figure {
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .list_exhibition li figure {
    margin-bottom: 15px;
  }
}
.list_exhibition li .btn_cmn_01 {
  width: 181px;
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .list_exhibition li .btn_cmn_01 {
    max-width: calc(50% - 7.5px);
    font-size: 0.8125em;
  }
}

.list_channel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 50px 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .list_channel {
    gap: 25px;
  }
}
.list_channel figure {
  aspect-ratio: 16/9;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .list_channel figure {
    margin-bottom: 10px;
  }
}
.list_channel figure iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_channel p {
  font-size: 1.125em;
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .list_channel p {
    font-size: 1em;
  }
}
.list_channel.col2 {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .list_channel.col2 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px 0;
  }
}

.list_media {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 50px 35px;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .list_media {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 30px 20px;
  }
}
.list_media:last-child {
  margin-bottom: 0;
}
.list_media li {
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif", serif;
}
.list_media li figure {
  width: 100%;
  aspect-ratio: 203/285;
  margin-bottom: 20px;
}
.list_media li figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.list_media li .ttl {
  font-size: 0.9375em;
  margin-bottom: 8px;
}
.list_media li .txt {
  font-size: 0.8125em;
}

.list_case_cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_case_cat {
    gap: 10px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .list_case_cat li {
    width: calc(50% - 5px);
  }
}
.list_case_cat .btn_cmn_01 {
  width: 290px;
}
@media screen and (max-width: 767px) {
  .list_case_cat .btn_cmn_01 {
    width: 100%;
  }
}

.list_check {
  width: 930px;
  max-width: 100%;
  margin: 0 auto 100px;
}
.list_check li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 1.25em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  border-bottom: 1px solid black;
}
@media screen and (max-width: 960px) {
  .list_check li {
    font-size: 1em;
    line-height: 1.75;
    padding-left: 23px;
  }
}
.list_check li::before {
  content: "";
  position: absolute;
  width: 19px;
  aspect-ratio: 19/14;
  background: url(../images/ico_check.svg) no-repeat center/contain;
  left: 0;
  top: calc(1em + 10px);
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .list_check li::before {
    width: 1em;
  }
}

.list_num {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .list_num {
    margin-bottom: 25px;
    font-size: 0.875em;
  }
}
.list_num li {
  list-style-type: decimal;
  margin-left: 1.2em;
}
.list_num + p {
  margin-bottom: 40px;
}

.list_instagram {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: min(2vw, 30px);
  margin-bottom: 55px;
}
@media screen and (max-width: 960px) {
  .list_instagram {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 30px;
  }
}
.list_instagram a:hover img {
  transform: scale(1.1);
}
.list_instagram figure {
  aspect-ratio: 1/1;
}
.list_instagram figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 960px) {
  .list_btns {
    gap: 15px;
  }
}
.list_btns--left {
  justify-content: left;
}
@media screen and (max-width: 960px) {
  .list_btns li {
    width: 100%;
  }
}

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

.scroll-hint {
  overflow-y: hidden !important;
}

.table_cmn_01 {
  border-collapse: separate;
}
@media screen and (max-width: 960px) {
  .table_cmn_01 {
    display: block;
    width: 100%;
  }
  .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 th, .table_cmn_01 td {
  border-bottom: 1px solid #212121;
  padding: 20px 25px;
  line-height: 1.8;
  font-weight: 500;
  vertical-align: top;
}
.table_cmn_01 th a, .table_cmn_01 td a {
  text-decoration: underline;
}
.table_cmn_01 th a:hover, .table_cmn_01 td a:hover {
  color: #647B64;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .table_cmn_01 th {
    border-bottom: none;
    padding: 15px 0 0;
  }
}
@media screen and (max-width: 960px) {
  .table_cmn_01 td {
    padding: 3px 0 15px;
    font-size: 0.9375em;
  }
}

.btn_cmn_01 {
  display: block;
  position: relative;
  width: 350px;
  max-width: 100%;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  color: #212121;
  font-family: "Noto Serif", serif;
  border: 1px solid #212121;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .btn_cmn_01 {
    font-size: 0.9375em;
    width: 280px;
  }
}
.btn_cmn_01::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #212121;
  transform-origin: right;
  transition: transform 0.3s;
  transform: scaleX(0);
  z-index: -1;
  left: 0;
  top: 0;
}
.btn_cmn_01::after {
  content: "";
  position: absolute;
  width: 17px;
  aspect-ratio: 17/3;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #212121;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.btn_cmn_01:hover {
  color: #fff;
}
.btn_cmn_01:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn_cmn_01:hover::after {
  background-color: #fff;
}
.btn_cmn_01.wht {
  color: #fff;
  border-color: #fff;
}
.btn_cmn_01.wht::before {
  background-color: #fff;
}
.btn_cmn_01.wht::after {
  background-color: #fff;
}
.btn_cmn_01.wht:hover {
  color: #212121;
}
.btn_cmn_01.wht:hover::after {
  background-color: #212121;
}
.btn_cmn_01.bg_wht {
  background-color: #fff;
  border-color: #fff;
}
.btn_cmn_01.bg_wht::before {
  background-color: #212121;
}
.btn_cmn_01.bg_wht::after {
  background-color: #212121;
}
.btn_cmn_01.bg_wht:hover {
  color: #fff;
}
.btn_cmn_01.bg_wht:hover::after {
  background-color: #fff;
}
.btn_cmn_01.blk {
  color: #fff;
  background-color: #212121;
  border-color: #212121;
}
.btn_cmn_01.blk::before {
  background-color: #fff;
}
.btn_cmn_01.blk::after {
  background-color: #fff;
}
.btn_cmn_01.blk:hover {
  color: #212121;
}
.btn_cmn_01.blk:hover::after {
  background-color: #212121;
}
.btn_cmn_01.azuki {
  background-color: #8B5673;
  border-color: #8B5673;
  color: #fff;
}
.btn_cmn_01.azuki::before {
  background-color: #fff;
}
.btn_cmn_01.azuki::after {
  background-color: #fff;
}
.btn_cmn_01.azuki:hover {
  color: #8B5673;
}
.btn_cmn_01.azuki:hover::after {
  background-color: #8B5673;
}
.btn_cmn_01.center {
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .btn_cmn_01.sp_center {
    margin-inline: auto;
  }
}
.btn_cmn_01.is-current {
  background-color: #F5F5F5;
}
@media screen and (max-width: 960px) {
  .btn_cmn_01.w_auto {
    width: auto;
  }
}
.btn_cmn_01:has(.comment) {
  margin-top: 40px;
}
.btn_cmn_01 .comment {
  position: absolute;
  font-size: 0.9375em;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #212121;
  pointer-events: none;
}
.btn_cmn_01 .comment::before, .btn_cmn_01 .comment::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 20px;
  background: linear-gradient(to right top, transparent calc(50% - 0.5px), #212121 calc(50% - 0.5px), #212121 calc(50% + 0.5px), transparent calc(50% + 0.5px));
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
}
.btn_cmn_01 .comment::after {
  right: auto;
  left: calc(100% + 10px);
  background: linear-gradient(to left top, transparent calc(50% - 0.5px), #212121 calc(50% - 0.5px), #212121 calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

.btn_submit {
  display: block;
  position: relative;
  width: 350px;
  max-width: 100%;
  font-weight: 500;
  text-align: center;
  padding: 15px;
  color: #fff;
  background-color: #212121;
  font-family: "Noto Serif", serif;
  border: 1px solid #212121;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .btn_submit {
    font-size: 0.9375em;
    width: 280px;
  }
}
.btn_submit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform-origin: right;
  transition: transform 0.3s;
  transform: scaleX(0);
  z-index: -1;
  left: 0;
  top: 0;
}
.btn_submit:hover {
  color: #212121;
}
.btn_submit:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn_submit:hover::after {
  background-color: #212121;
}
.btn_submit:disabled:hover {
  color: #fff;
}
.btn_submit:disabled:hover::before {
  transform: scaleX(0);
}
.btn_submit:disabled:hover::after {
  background-color: #fff;
}
.btn_submit::after {
  content: "";
  position: absolute;
  width: 17px;
  aspect-ratio: 17/3;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.post_content {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .post_content {
    margin-bottom: 50px;
  }
}
.post_content p:not([class]) {
  margin-top: 35px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .post_content p:not([class]) {
    font-size: 0.875em;
    margin-top: 25px;
  }
}
.post_content p:not([class]):first-child {
  margin-top: 0;
}
.post_content p:not([class]) + p:not([class]) {
  margin-top: 1em;
}
.post_content img {
  display: block;
  margin-top: 35px;
}
.post_content img:first-child {
  margin-top: 0;
}
.post_content .table_parent {
  margin-top: 20px;
}
.post_content .table_parent:first-child {
  margin-top: 0;
}
.post_content hr {
  border-width: 1px;
  border-color: #F5F5F5;
  margin-top: 55px;
}
.post_content table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .post_content table {
    width: auto;
  }
}
.post_content table:first-child {
  margin-top: 0;
}
.post_content table tr:last-child td {
  border-bottom: 0 none;
}
.post_content table td {
  font-size: 0.9375em;
  padding: 15px 25px;
  background-color: #F8F8F8;
  border-bottom: 8px solid #647B64;
}
@media screen and (max-width: 960px) {
  .post_content table td {
    font-size: 0.875em;
    padding: 10px 15px;
  }
}
.post_content table td:first-child {
  background-color: #A3EBD9;
  font-weight: 700;
}
.post_content .image_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 55px;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .post_content .image_grid {
    gap: 12px;
  }
}
.post_content .image_grid:first-child {
  margin-top: 0;
}
.post_content .image_grid figure {
  margin-top: 0;
}
.post_content figure {
  display: block;
  margin-top: 45px;
}
.post_content figure:first-child {
  margin-top: 0;
}
.post_content figcaption {
  text-align: center;
  font-size: 1.125em;
  line-height: 1.5;
  font-family: "Noto Serif", serif;
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .post_content figcaption {
    font-size: 0.875em;
  }
}

.related_staff {
  display: grid;
  grid-template-columns: 52% 1fr;
  align-items: center;
  gap: 20px min(2.3333333333vw, 35px);
  background-color: #F5F5F5;
  padding: 35px min(2.6666666667vw, 40px);
  line-height: 1.8;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .related_staff {
    grid-template-columns: 1fr;
    padding: 15px;
    margin-bottom: 40px;
  }
}
.related_staff:not(:has(dd)) {
  grid-template-columns: 1fr;
}
.related_staff:not(:has(dd)) dt {
  border: none;
  justify-self: center;
  padding: 0;
}
.related_staff dt {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 10px min(1.6666666667vw, 25px);
  border-right: 1px solid #B7B7B7;
  padding-right: 20px;
}
@media screen and (max-width: 960px) {
  .related_staff dt {
    grid-template-columns: 1fr;
    border: none;
    border-bottom: 1px solid #B7B7B7;
    text-align: center;
    padding-right: 0;
    padding-bottom: 15px;
  }
}
.related_staff dt img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .related_staff dt img {
    width: 140px;
    margin: 0 auto;
  }
}
.related_staff dt p:not([class]) {
  font-weight: 500;
}
.related_staff dt .name {
  font-size: 1.125em;
  font-family: "Noto Serif", serif;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .related_staff dt .name {
    font-size: 0.9375em;
  }
}
.related_staff dt .name span {
  display: inline-block;
  font-size: 1.33em;
}
.related_staff dt a {
  display: inline-block;
  position: relative;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  line-height: 1.5;
}
.related_staff dt a:hover::after {
  margin-left: 10px;
}
.related_staff dt a::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #212121;
  margin-top: 8px;
  transition: 0.3s;
}
.related_staff dd {
  font-size: 0.9375em;
}
@media screen and (max-width: 960px) {
  .related_staff dd {
    font-size: 0.875em;
  }
}

.btn_related {
  display: block;
  position: relative;
  font-size: 1.75em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding: 30px 10px;
  background-color: #647B64;
  border-radius: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .btn_related {
    font-size: 1.125em;
    padding: 18px 0;
    margin-bottom: 40px;
  }
}
.btn_related:hover {
  box-shadow: 0 10px 20px rgba(33, 33, 33, 0.5);
  transform: translateY(-3px);
}
.btn_related::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 5px;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .btn_related::after {
    width: 30px;
    right: 10px;
  }
}
.btn_related.blk {
  background-color: #212121;
}
.btn_related.blk::after {
  background-color: #fff;
}
.btn_related.azuki {
  background-color: #8B5673;
}
.btn_related.azuki::after {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../images/ico_arrow_circle.svg);
          mask-image: url(../images/ico_arrow_circle.svg);
  background-color: #fff;
}

.ttl_related {
  display: block;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
  .ttl_related {
    font-size: 1.5em;
  }
}
.ttl_related::after {
  content: attr(data-en);
  display: block;
  font-size: 0.4em;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 960px) {
  .ttl_related::after {
    font-size: 0.6em;
  }
}

.list_pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px 25px;
  justify-content: space-between;
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  padding: 25px 0;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .list_pagination {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    font-size: 0.875em;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination li {
  line-height: 1.5;
}
.list_pagination li.prev a, .list_pagination li.next a {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .list_pagination li.prev a, .list_pagination li.next a {
    padding: 0 15px;
  }
}
.list_pagination li.prev a::before, .list_pagination li.next a::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 3px;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #212121;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .list_pagination li.prev a::before, .list_pagination li.next a::before {
    width: 20px;
  }
}
.list_pagination li.prev a:hover, .list_pagination li.next a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  .list_pagination li.prev {
    order: 1;
  }
}
.list_pagination li.prev a {
  padding-left: 45px;
}
@media screen and (max-width: 960px) {
  .list_pagination li.prev a {
    padding-left: 30px;
  }
}
.list_pagination li.prev a::before {
  transform: rotate(-180deg);
  left: 0;
}
.list_pagination li.next {
  text-align: right;
}
@media screen and (max-width: 960px) {
  .list_pagination li.next {
    order: 2;
  }
}
.list_pagination li.next a {
  text-align: left;
  padding-right: 45px;
}
@media screen and (max-width: 960px) {
  .list_pagination li.next a {
    padding-right: 20px;
  }
}
.list_pagination li.next a::before {
  right: 0;
}
@media screen and (max-width: 960px) {
  .list_pagination li.archive {
    order: 3;
    margin-top: 20px;
    text-align: center;
  }
}
.list_pagination li.archive a {
  display: inline-block;
  border-bottom: 2px solid transparent;
}
@media screen and (max-width: 960px) {
  .list_pagination li.archive a {
    border-bottom-color: #647B64;
  }
}
.list_pagination li.archive a:hover {
  border-bottom-color: #647B64;
}

.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .wp-pagenavi {
    gap: 5px;
    justify-content: center;
  }
}
.wp-pagenavi:last-child {
  margin-bottom: 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: block;
  font-size: 1.5em;
  font-family: "EB Garamond", serif;
  text-align: center;
  width: 20px;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.125em;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  border-block-color: #212121;
}
.wp-pagenavi a.last, .wp-pagenavi a.first, .wp-pagenavi a.extend,
.wp-pagenavi span.last,
.wp-pagenavi span.first,
.wp-pagenavi span.extend {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  color: #212121;
  font-size: 1.125em;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi a.last, .wp-pagenavi a.first, .wp-pagenavi a.extend,
  .wp-pagenavi span.last,
  .wp-pagenavi span.first,
  .wp-pagenavi span.extend {
    font-size: 0.875em;
  }
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------------------------------------------------------------------- */
.bg_parallax {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .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;
}

/* モーダル
---------------------------------------------------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}
@media screen and (max-width: 960px) {
  .modal {
    border-radius: 20px;
  }
}
.modal_close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../images/modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .modal_close_btn {
    width: 40px;
    right: 0;
    top: 0;
  }
}
.modal_content {
  display: none;
  position: relative;
  width: 1220px;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 75px var(--sideW);
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .modal_content {
    padding-block: 45px 20px;
    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(33, 33, 33, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

.modal_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px min(4vw, 60px);
}
@media screen and (max-width: 960px) {
  .modal_item {
    grid-template-columns: 1fr;
  }
}
.modal_item strong {
  display: block;
  font-size: 2em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  border-left: 4px solid #647B64;
  padding: 10px 0 10px 22px;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .modal_item strong {
    font-size: 1.375em;
    padding: 5px 0 5px 15px;
  }
}
.modal_item .catch {
  font-size: 2em;
  text-align: left;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .modal_item .catch {
    font-size: 1.25em;
  }
}
.modal_item p:not([class]) {
  font-size: 0.9375em;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .modal_item p:not([class]) {
    font-size: 0.875em;
    margin-bottom: 20px;
  }
}
.modal_item .youtube_wrap {
  width: auto;
  margin-bottom: 0;
}
.modal_item .images {
  display: flex;
  flex-direction: column;
  gap: var(--spaceMin);
  grid-column: 1/-1;
}
@media screen and (max-width: 960px) {
  .modal_item .images {
    gap: 20px;
  }
}

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

.tab_style_sales__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 35px;
  margin-bottom: 60px;
}
.tab_style_sales__menu li {
  cursor: pointer;
}
.tab_style_sales__menu li::after {
  width: 15px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../images/ico_arrow_circle.svg);
          mask-image: url(../images/ico_arrow_circle.svg);
}
.tab_style_sales__menu li.js_active {
  color: #fff;
}
.tab_style_sales__menu li.js_active::before {
  transform: scaleX(1);
}
.tab_style_sales__menu li.js_active::after {
  background-color: #fff;
}

/* パンくず
---------------------------------------------------------------------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.8125em;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  #list_breadcrumb {
    font-size: 0.75em;
    overflow-x: scroll;
    text-align: right;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_sm, #list_breadcrumb .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
}
@media screen and (max-width: 960px) {
  #list_breadcrumb .inner, #list_breadcrumb .inner_sm, #list_breadcrumb .inner_lg {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    width: auto;
    max-width: none;
    margin: 0;
  }
}
#list_breadcrumb .inner a:hover, #list_breadcrumb .inner_sm a:hover, #list_breadcrumb .inner_lg a:hover {
  text-decoration: underline;
}

/* swiper-common
---------------------------------------------------------------------------------------------------------------------- */
.swiper-button {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/ico_swiper_button.svg) no-repeat right/contain;
  margin: 0;
  top: calc(50% - 20px);
}
@media screen and (max-width: 960px) {
  .swiper-button {
    width: 30px;
    top: calc(50% - 15px);
  }
}
.swiper-button::after {
  content: none;
}
.swiper-button-prev {
  transform: rotate(180deg);
  left: -20px;
}
.swiper-button-next {
  right: -20px;
}
.swiper-button.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: static;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .swiper-pagination {
    gap: 10px;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 21px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  background: transparent;
  margin: 0 !important;
  border: 1px solid #fff;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #647B64;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: #647B64;
}
.swiper-pagination--border {
  margin-top: 20px;
  justify-content: start;
}
.swiper-pagination--border .swiper-pagination-bullet {
  width: 52px;
  height: 20px;
  aspect-ratio: auto;
  border-radius: 0;
  border: none;
}
.swiper-pagination--border .swiper-pagination-bullet::after {
  width: 100%;
  height: 3px;
  background-color: #F5F5F5;
  aspect-ratio: auto;
  border-radius: 0;
}

/* その他
---------------------------------------------------------------------------------------------------------------------- */
.catch {
  display: block;
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif", serif;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .catch {
    font-size: 1.5em;
    margin-bottom: 25px;
  }
}
.catch:last-child {
  margin-bottom: 0;
}
.catch.left {
  text-align: left;
}
.catch.sm {
  font-size: 2em;
}
@media screen and (max-width: 960px) {
  .catch.sm {
    font-size: 1.375em;
  }
}
.catch.wht {
  color: #fff;
}

.lead {
  text-align: center;
  font-size: 0.9375em;
  line-height: 1.8;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .lead {
    text-align: left;
    line-height: 1.75;
    font-size: 0.875em;
    margin-bottom: 40px;
  }
}
.lead:last-child {
  margin-bottom: 0;
}
.lead.left {
  text-align: left;
}
.lead.sp_center {
  text-align: left;
}
@media screen and (max-width: 960px) {
  .lead.sp_center {
    text-align: center;
  }
}
.lead.wht {
  color: #fff;
}
.lead.lg {
  font-size: 1.125em;
}
@media screen and (max-width: 960px) {
  .lead.lg {
    font-size: 1em;
  }
}
.lead.lg small {
  display: block;
  font-size: 0.77em;
}

.slide_image {
  display: block;
  position: relative;
  overflow: hidden;
}
.slide_image.js_active .slide_bg {
  animation: slideImage 1s forwards;
}
.slide_image.js_active img,
.slide_image.js_active iframe,
.slide_image.js_active .tag {
  opacity: 1;
  transition: opacity 0.1s 0.4s, transform 0.3s;
}
.slide_image .slide_bg {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #647B64;
  left: 0;
  top: 0;
  z-index: 2;
  transform: translateX(-100%);
}
.slide_image img, .slide_image iframe, .slide_image .tag {
  opacity: 0;
  transition: 0.3s;
}

@keyframes slideImage {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
/* フォームパーツ
---------------------------------------------------------------------------------------------------------------------- */
.subd_form .form_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 500;
  color: #647B64;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .subd_form .form_tel {
    font-size: 0.75em;
    line-height: 1.75;
  }
}
.subd_form .form_tel a {
  display: flex;
  align-items: baseline;
  font-size: 3.75em;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #647B64;
}
@media screen and (max-width: 960px) {
  .subd_form .form_tel a {
    margin-bottom: 10px;
  }
}
.subd_form .form_tel a::before {
  content: "tel.";
  display: block;
  font-size: 0.66em;
  letter-spacing: 0.04em;
}

.event_form .form_tel {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.event_form .form_tel span {
  font-weight: 500;
  font-family: "Noto Serif", serif;
  color: #647B64;
}
.event_form .form_tel a {
  display: flex;
  align-items: baseline;
  font-size: 2.5em;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #647B64;
}
@media screen and (max-width: 960px) {
  .event_form .form_tel a {
    margin-bottom: 10px;
  }
}
.event_form .form_tel a::before {
  content: "tel.";
  display: block;
  font-size: 0.8em;
  letter-spacing: 0.04em;
}
.event_form .line {
  position: relative;
  background-color: #4CAF50;
  padding: 45px 15px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .event_form .line {
    padding: 30px 15px;
  }
}
.event_form .line strong {
  display: inline-block;
  position: relative;
  font-size: 2.125em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .event_form .line strong {
    font-size: 1.375em;
  }
}
.event_form .line strong::before {
  content: "";
  position: absolute;
  width: 47px;
  aspect-ratio: 47/45;
  -webkit-mask: url(../images/ico_line_02.svg) no-repeat center/contain;
          mask: url(../images/ico_line_02.svg) no-repeat center/contain;
  background-color: #fff;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .event_form .line strong::before {
    right: calc(100% + 10px);
    width: 32px;
  }
}
.event_form .line p {
  line-height: 1.75;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .event_form .line p {
    font-size: 0.875em;
    text-align: left;
  }
}
.event_form .line .btn_cmn_01 {
  border: none;
  background-color: #fff;
}

.dlist_form {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
}
.dlist_form .item {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: baseline;
  gap: 0 min(2.66vw, 40px);
  padding: 40px 0;
  border-bottom: 1px dotted #212121;
}
@media screen and (max-width: 960px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
    padding: 20px 0;
  }
}
.dlist_form .item.date_01 dd, .dlist_form .item.date_02 dd {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .dlist_form .item.date_01 dd, .dlist_form .item.date_02 dd {
    justify-content: flex-start;
  }
}
.dlist_form .item.date_01 dd input, .dlist_form .item.date_02 dd input {
  width: 220px;
}
@media screen and (max-width: 960px) {
  .dlist_form .item.date_01 dd input, .dlist_form .item.date_02 dd input {
    width: 150px;
  }
}
.dlist_form .item.date_01 dd select, .dlist_form .item.date_02 dd select {
  width: 220px;
}
@media screen and (max-width: 960px) {
  .dlist_form .item.date_01 dd select, .dlist_form .item.date_02 dd select {
    width: auto;
  }
}
.dlist_form .item.date_01 dd .time, .dlist_form .item.date_02 dd .time {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .dlist_form .item.date_01 dd .time, .dlist_form .item.date_02 dd .time {
    position: relative;
  }
  .dlist_form .item.date_01 dd .time p, .dlist_form .item.date_02 dd .time p {
    position: absolute;
    left: 10px;
    bottom: 100%;
    font-size: 0.75em;
  }
}
.dlist_form .item.date_01 dd p, .dlist_form .item.date_02 dd p {
  margin: 0;
}
.dlist_form .item.date_01 {
  padding-bottom: 0;
  border-bottom: none;
}
.dlist_form .item.date_02 {
  padding-top: 20px;
}
.dlist_form dt {
  font-family: "Noto Serif", serif;
  font-size: 1.125em;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .dlist_form dt {
    font-size: 1em;
  }
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 58px;
  line-height: 30px;
  text-align: center;
  background-color: #647B64;
  color: #fff;
  font-size: 0.875em;
  border-radius: 15px;
}
@media screen and (max-width: 960px) {
  .dlist_form dt.req::after {
    font-size: 0.75em;
    line-height: 24px;
  }
}
.dlist_form dd p {
  font-size: 0.9375em;
  font-family: "Noto Serif", serif;
  line-height: 1.75;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .dlist_form dd p {
    font-size: 0.875em;
    line-height: 1.5;
  }
}
.dlist_form dd p:last-child {
  margin-bottom: 0;
}
.dlist_form dd .wpcf7-form-control-wrap {
  display: block;
}
.dlist_form dd .wpcf7-form-control-wrap:has(.wpcf7-checkbox) .wpcf7-not-valid-tip {
  bottom: -1.8em;
  left: 0;
}
.dlist_form dd .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 5px;
  bottom: -0.8em;
  font-size: 0.75em;
  line-height: 1.5;
  pointer-events: none;
  background-color: #dc3232;
  color: #fff;
  padding: 0 0 2px 0.25em;
}
.dlist_form dd.birth {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .dlist_form dd.birth {
    font-size: 0.875em;
    gap: 5px;
  }
}
.dlist_form dd.birth select {
  width: 120px;
  font-size: 1em;
}
@media screen and (max-width: 960px) {
  .dlist_form dd.birth select {
    width: 80px;
  }
}
.dlist_form .wpcf7-form-control-wrap:has(.zip) {
  display: inline-block;
  margin-right: 10px;
}
.dlist_form .wpcf7-form-control-wrap:has(.zip)::before {
  content: "〒";
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 960px) {
  .dlist_form .wpcf7-form-control-wrap:has(.zip)::before {
    margin-right: 10px;
  }
}
.dlist_form .wpcf7-form-control-wrap:has(.zip) + span {
  display: inline-block;
  font-family: "Noto Serif", serif;
}
.dlist_form .zip {
  width: 240px;
}
@media screen and (max-width: 960px) {
  .dlist_form .zip {
    width: 150px;
  }
}

.dlist_form_02 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}
.dlist_form_02 dt {
  font-size: 1.25em;
  font-weight: 400;
  font-family: "Noto Serif", serif;
  line-height: 1.5;
  border-bottom: 1px dotted #212121;
  margin-bottom: 25px;
}
.dlist_form_02 dd .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
}

.privacy_text {
  text-align: center;
  font-family: "Noto Serif", serif;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .privacy_text {
    font-size: 0.875em;
    text-align: left;
  }
}
.privacy_text a {
  text-decoration: underline;
}
.privacy_text a:hover {
  text-decoration: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
input[type=number],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 15px;
  border: 1px solid #212121;
  line-height: 1.5;
  color: #212121;
  text-align: left;
}
@media screen and (max-width: 960px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  input[type=number],
  select,
  textarea {
    padding: 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=number]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ADADAD;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ADADAD;
}

@media screen and (max-width: 960px) {
  input[type=date] {
    min-height: 46px;
    padding-block: 0;
  }
}

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

select {
  width: auto;
  padding: 15px 35px 15px 20px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
  width: 230px;
}
@media screen and (max-width: 960px) {
  select {
    width: 100%;
    padding: 10px 35px 10px 10px;
  }
}

#autozip {
  pointer-events: none;
}

.contact_privacy_wrap {
  background-color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .contact_privacy_wrap {
    margin-bottom: 25px;
  }
}
.contact_privacy_wrap strong {
  display: block;
  font-size: 1.125em;
  margin-bottom: 8px;
}
.contact_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: 15px 30px;
}
@media screen and (max-width: 960px) {
  .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 5px;
}
@media screen and (max-width: 960px) {
  .wpcf7-checkbox .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: 0;
    padding-bottom: 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.9375em;
  font-family: "Noto Serif", serif;
}
.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: #647B64;
}
.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;
}
.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 #647B64;
  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: 960px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    left: 3px;
  }
}

.wpcf7-radio {
  display: block;
}
.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0 0 5px;
}
.wpcf7-radio .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-radio .wpcf7-list-item label input {
  display: none;
}
.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  font-size: 1em;
  padding-left: 28px;
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before, .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 1.25em;
  aspect-ratio: 1/1;
  height: auto;
  border: 1px solid #647B64;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  background-color: #647B64;
  width: 0.75em;
  left: 0.25em;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
    left: 3px;
  }
}

[data-name=consultation_date] {
  width: 230px;
}

[data-name=doui] {
  display: block;
  margin-bottom: 60px;
}
[data-name=doui] .wpcf7-acceptance {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 960px) {
  [data-name=doui] .wpcf7-acceptance {
    padding: 20px 15px;
    font-size: 0.9375em;
  }
}
[data-name=doui] .wpcf7-acceptance .wpcf7-list-item {
  padding: 0;
}
[data-name=doui] .wpcf7-acceptance a {
  text-decoration: underline;
  color: #647B64;
}
[data-name=doui] .wpcf7-acceptance a:hover {
  text-decoration: none;
}

.page-privacy-policy .lead {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #212121;
}

.dlist_policy {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: var(--space);
}
.dlist_policy:last-child {
  margin-bottom: 0;
}
.dlist_policy dt {
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  margin-bottom: 10px;
  line-height: 1.5;
  border-bottom: 1px solid #212121;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .dlist_policy dt {
    font-size: 1em;
    gap: 5px;
  }
}
@media screen and (max-width: 960px) {
  .dlist_policy dd {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 960px) {
  .dlist_policy dd ul {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}
.dlist_policy dd ul:last-child {
  margin-bottom: 0;
}
.dlist_policy dd ul li {
  display: flex;
  gap: 0.5em;
}
.dlist_policy dd ul li::before {
  content: "■";
  display: block;
  flex-shrink: 0;
}
.dlist_policy dd ol {
  counter-reset: num;
}
.dlist_policy dd ol li {
  position: relative;
  counter-increment: num;
  padding-left: 1.5em;
}
.dlist_policy dd ol li::before {
  content: "(" counter(num) ")";
  position: absolute;
  flex-shrink: 0;
  top: 1em;
  left: 0;
  transform: translateY(-50%);
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha_text {
  font-size: 0.75em;
  color: #fff;
}

/* ユーティリティ
mx ＝ "x軸方向のmargin"
---------------------------------------------------------------------------------------------------------------------- */
.u-text-center {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .u-text-left-sp {
    text-align: left;
  }
}

.u-mx-center {
  margin-inline: auto;
}

.u-mx-right {
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .u-mx-right-sp {
    margin-left: auto;
  }
}

.u-mx-left {
  margin-right: auto;
}

@media screen and (max-width: 960px) {
  .u-mx-left-sp {
    margin-right: auto;
  }
}

.u-disp-ib {
  display: inline-block;
}

.u-gap {
  display: block;
  margin-bottom: 0.6em;
}