@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 {
  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] {
  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を全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

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

.flt {
  float: left;
}

.flr {
  float: right;
}

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

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

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

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

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

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

.clear {
  clear: both;
}

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

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

.c_red {
  color: #FF3425;
}

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

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

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

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

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(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: 123px;
  --activeHeaderHeight: 123px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
  --spaceMin: 80px;
}
@media screen and (max-width: 768px) {
  :root {
    --min-with: 1px;
    --activeHeaderHeight: 90px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
    --spaceMin: 60px;
  }
}

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

body {
  font: 400 16px/2 "Noto Serif", serif;
  color: #3A3A3A;
  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: #3A3A3A;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

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

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

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

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

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

.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(1000px + 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;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 var(--sideW);
  }
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
  background-color: rgba(255, 255, 255, 0.8);
}
.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__ttl {
  transition: 0.5s;
}
.header__logo {
  display: block;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  width: 204px;
  aspect-ratio: 204/67;
  background: url(../images/logo.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 150px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0 35px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    gap: 0 15px;
  }
}
.header__nav .tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__nav .tel {
    display: none;
  }
}
.header__nav .tel p {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1.5;
  width: 100%;
}
.header__nav .tel p:last-child {
  margin-bottom: 0;
  font-size: 0.75em;
  justify-content: center;
}
.header__nav .tel p span {
  display: block;
  position: relative;
}
.header__nav .tel p span::before, .header__nav .tel p span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3A3A3A;
  left: calc(100% + 7px);
  top: calc(50% - 0.5px);
}
.header__nav .tel p span::after {
  left: auto;
  right: calc(100% + 7px);
}
.header__nav .tel a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 2.5em;
  letter-spacing: 0.08em;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 10px;
}
.header__nav .tel a::before {
  content: "";
  display: block;
  width: 49px;
  aspect-ratio: 49/28;
  background: url(../images/ico_freedial.svg) no-repeat center/contain;
  transform: translateY(3px);
}
.header__nav .line {
  display: block;
  width: 51px;
  aspect-ratio: 50/48;
  text-indent: 110%;
  overflow: hidden;
  white-space: nowrap;
  mask: url(../images/ico_line.svg) no-repeat center/contain;
  background-color: #3A3A3A;
}
@media screen and (max-width: 768px) {
  .header__nav .line {
    width: 40px;
  }
}
.header__nav .line:hover {
  background-color: #1F3A36;
  transform: translateY(-3px);
}

.global_nav {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(58, 58, 58, 0.74), rgba(58, 58, 58, 0.74)), url(../images/gnav_bg.jpg) no-repeat center/cover;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  transition: 0.5s;
  padding: 0 var(--sideW) 100px;
}
@media screen and (max-width: 768px) {
  .global_nav {
    padding: 0 calc(var(--sideW) / 2) 75px;
  }
}
.global_nav.active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .global_nav.active .global_nav__in {
    opacity: 1;
    transition-delay: 0.5s;
  }
}
.global_nav__ttl {
  display: flex;
  align-items: center;
  height: var(--headerHeight);
  margin-bottom: 30px;
}
.global_nav__ttl .header__logo {
  display: block;
  background-image: url(../images/logo_wht.svg);
}
.global_nav__in {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto auto auto 1fr;
  gap: 0 calc(var(--sideW) * 2);
  padding: 0 var(--sideW);
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .global_nav__in {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
.global_nav__contact {
  grid-column: 2/3;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .global_nav__contact {
    gap: 15px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .global_nav__contact li {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .global_nav__contact li:nth-child(3) {
    order: 1;
  }
}
.global_nav__contact a {
  display: block;
  position: relative;
  background-color: #fff;
  border: 1px solid #fff;
  line-height: 58px;
  text-align: center;
  font-size: 1.125em;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .global_nav__contact a {
    font-size: 0.8125em;
  }
}
.global_nav__contact a:hover {
  background-color: transparent;
  color: #fff;
}
.global_nav__contact a:hover::after {
  background-color: #fff;
}
.global_nav__contact a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.global_nav__contact a.ico_line {
  background-color: transparent;
  color: #fff;
}
.global_nav__contact a.ico_line:hover {
  background-color: #fff;
  color: #1F3A36;
}
.global_nav__contact a.ico_line:hover::after {
  background-color: #1F3A36;
}
.global_nav__contact a.ico_line::after {
  width: 32px;
  aspect-ratio: 32/30;
  mask-image: url(../images/ico_line.svg);
  background-color: #fff;
}
.global_nav__list {
  grid-column: 1/2;
  grid-row: 1/-1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 var(--sideW);
}
@media screen and (max-width: 768px) {
  .global_nav__list {
    gap: 10px;
    margin-bottom: 55px;
  }
}
.global_nav__list .gnav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.global_nav__list .gnav > li:has(ul) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  gap: 0 10px;
}
.global_nav__list .gnav > li:has(ul) input {
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.global_nav__list .gnav > li:has(ul) input::after {
  content: "";
  position: absolute;
  width: 18px;
  aspect-ratio: 1/1;
  background: linear-gradient(#fff 0 0) center/calc(100% - 8px) 1px no-repeat, linear-gradient(#fff 0 0) center/1px calc(100% - 8px) no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #fff;
}
.global_nav__list .gnav > li:has(ul) input:checked::after {
  background: linear-gradient(#fff 0 0) center/calc(100% - 8px) 1px no-repeat;
}
.global_nav__list .gnav > li:has(ul) input:checked + ul {
  display: flex;
}
.global_nav__list .gnav a {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  color: #fff;
  font-size: 1.125em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .global_nav__list .gnav a {
    font-size: 0.9375em;
  }
}
.global_nav__list .gnav a::before {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  left: 0;
  top: calc(50% - 5px);
  transform: rotate(-45deg);
}
.global_nav__list .gnav ul {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .global_nav__list .gnav ul {
    gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  .global_nav__list .gnav ul li {
    line-height: 1.5;
  }
}
.global_nav__list .gnav ul a {
  display: inline-flex;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .global_nav__list .gnav ul a {
    font-size: 0.85em;
    padding-left: 0;
  }
}
.global_nav__list .gnav ul a::before {
  content: "-";
  display: block;
  position: static;
  width: auto;
  border: none;
  aspect-ratio: auto;
  transform: none;
  flex-shrink: 0;
}
.global_nav__inspark {
  grid-column: 2/3;
  grid-row: 4/5;
}
@media screen and (max-width: 768px) {
  .global_nav__inspark {
    margin-bottom: 55px;
  }
}
.global_nav__inspark a {
  display: block;
}
.global_nav__inspark a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 15px rgba(58, 58, 58, 0.5);
}
.global_nav__inspark a img {
  display: block;
}
.global_nav__tel {
  grid-column: 2/3;
  grid-row: 1/2;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .global_nav__tel {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
    padding: 30px 0;
  }
}
.global_nav__tel p {
  color: #fff;
  text-align: center;
  font-size: 1.375em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .global_nav__tel p {
    font-size: 1em;
  }
}
.global_nav__tel p:last-child {
  margin-bottom: 0;
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .global_nav__tel p:last-child {
    font-size: 0.8125em;
  }
}
.global_nav__tel a {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-size: 3.5em;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Playfair Display", serif;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .global_nav__tel a {
    font-size: 2.4375em;
  }
}
.global_nav__tel a::before {
  content: "";
  display: block;
  width: 71px;
  aspect-ratio: 71/41;
  background: url(../images/ico_freedial_wht.svg) no-repeat center/contain;
  transform: translateY(5px);
}
.global_nav__sns {
  grid-column: 2/3;
  grid-row: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 29px;
}
.global_nav__sns a {
  display: block;
}
.global_nav__sns a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 15px rgba(58, 58, 58, 0.5);
}
.global_nav__sns a img {
  display: block;
}

.menu-trigger {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 8px;
  position: relative;
  width: 165px;
  height: var(--headerHeight);
  cursor: pointer;
  background-color: #3A3A3A;
  transition: 0.5s;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .menu-trigger {
    width: 76px;
    background: transparent;
  }
}
.menu-trigger::after {
  content: "menu";
  display: block;
  font-size: 1.25em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .menu-trigger::after {
    color: #3A3A3A;
    font-size: 0.875em;
  }
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 100px;
  height: 25px;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .menu-trigger span {
    width: 76px;
    height: 19px;
  }
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 0;
  left: 0;
  transform-origin: center;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .menu-trigger span::before, .menu-trigger span::after {
    background-color: #3A3A3A;
  }
}
.menu-trigger span::after {
  top: auto;
  bottom: 0;
}
.menu-trigger.active {
  background-color: transparent;
}
.menu-trigger.active::after {
  opacity: 0;
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: calc(50% - 1px);
  opacity: 1;
  rotate: 135deg;
  background-color: #fff;
}
.menu-trigger.active span::after {
  bottom: auto;
  rotate: -135deg;
}

.footer {
  position: relative;
  overflow: hidden;
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 min(8vw, 120px);
  background-color: #1F3A36;
  padding: 80px var(--sideW);
  color: #fff;
}
.footer__contact .ttl_top_02.lg {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__contact .ttl_top_02.lg {
    font-size: 1em;
  }
  .footer__contact .ttl_top_02.lg::before {
    font-size: 3.75em;
  }
}
.footer__contact .tel {
  position: relative;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .footer__contact .tel {
    padding: 0 0 30px;
    border: none;
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
  }
}
.footer__contact .tel::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: calc(min(4vw, 60px) * -1);
}
@media screen and (max-width: 768px) {
  .footer__contact .tel::after {
    display: none;
  }
}
.footer__contact .tel p {
  color: #fff;
  text-align: center;
  font-size: 1.375em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer__contact .tel p {
    font-size: 1em;
  }
}
.footer__contact .tel p:last-child {
  margin-bottom: 0;
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .footer__contact .tel p:last-child {
    font-size: 0.8125em;
  }
}
.footer__contact .tel a {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-size: 3.5em;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Playfair Display", serif;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer__contact .tel a {
    font-size: 2.4375em;
  }
}
.footer__contact .tel a::before {
  content: "";
  display: block;
  width: 71px;
  aspect-ratio: 71/41;
  background: url(../images/ico_freedial_wht.svg) no-repeat center/contain;
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  .footer__contact .tel a::before {
    width: 49px;
  }
}
@media screen and (max-width: 768px) {
  .footer__contact .btn {
    width: 100%;
  }
}
.footer__contact .btn a {
  margin-bottom: 20px;
}
.footer__contact .btn a:last-child {
  margin-bottom: 0;
}
.footer__contact .btn_02 {
  width: 100%;
  margin-top: 20px;
}
.footer__info {
  position: relative;
  padding: 160px var(--sideW);
  background: linear-gradient(to bottom, rgba(58, 58, 58, 0.7), rgba(58, 58, 58, 0.7)), url(../images/footer_info_bg.jpg) no-repeat center top/cover;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__info {
    padding: 120px var(--sideW) 70px;
  }
}
.footer__info video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.footer__info .in {
  position: relative;
  z-index: 1;
}
.footer__info .scroll_text {
  top: 20px;
}
.footer__info .scroll_text::before, .footer__info .scroll_text::after {
  color: rgba(255, 255, 255, 0.25);
}
.footer__info h2 {
  font-size: 2.5em;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .footer__info h2 {
    font-size: 1.875em;
  }
}
.footer__info p {
  font-size: 0.9375em;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .footer__info p {
    font-size: 0.8125em;
    text-align: left;
  }
}
.footer__sitemap {
  position: relative;
  background-color: #3A3A3A;
  padding: 90px 0 420px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__sitemap {
    padding-bottom: 150px;
  }
}
.footer__sitemap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 520px;
  bottom: 0;
  left: 0;
  background: url(../images/footer_bg.png) no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  .footer__sitemap::after {
    height: 130px;
  }
}
.footer__sitemap .inner_lg {
  display: grid;
  grid-template-columns: auto auto 304px;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .footer__sitemap .inner_lg {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__sitemap .address {
    text-align: center;
  }
}
.footer__sitemap .address .footer_logo {
  display: block;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .footer__sitemap .address .footer_logo {
    width: 191px;
    margin: 0 auto 30px;
  }
}
.footer__sitemap .address p {
  font-size: 0.9375em;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .footer__sitemap .address p {
    font-size: 0.875em;
  }
}
.footer__sitemap .address p.name {
  font-size: 1.25em;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .footer__sitemap .address p.name {
    font-size: 1.125em;
  }
}
.footer__sitemap .address ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .footer__sitemap .address ul {
    justify-content: center;
  }
}
.footer__sitemap .address ul img {
  display: block;
}
.footer__sitemap .sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 min(3vw, 45px);
}
@media screen and (max-width: 768px) {
  .footer__sitemap .sitemap {
    display: none;
  }
}
.footer__sitemap .sitemap ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__sitemap .sitemap ul > li:has(ul) {
  position: relative;
  gap: 0 10px;
}
.footer__sitemap .sitemap ul > li:has(ul) input {
  position: absolute;
  width: 23px;
  aspect-ratio: 1/1;
  cursor: pointer;
  right: 0;
  top: 0;
}
.footer__sitemap .sitemap ul > li:has(ul) input::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  border-radius: 50%;
  border: 1px solid #fff;
}
.footer__sitemap .sitemap ul > li:has(ul) input:checked::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.footer__sitemap .sitemap ul > li:has(ul) input:checked + ul {
  display: flex;
  width: 100%;
}
.footer__sitemap .sitemap ul > li:has(ul) a::after {
  content: none;
}
.footer__sitemap .sitemap ul > li:has(ul) > a {
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  padding: 0 0 5px;
}
.footer__sitemap .sitemap ul a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 1.125em;
  line-height: 1.5;
  padding-right: min(4vw, 60px);
}
@media screen and (max-width: 768px) {
  .footer__sitemap .sitemap ul a {
    font-size: 0.9375em;
  }
}
.footer__sitemap .sitemap ul a:hover {
  text-decoration: underline;
}
.footer__sitemap .sitemap ul a::after {
  content: "";
  position: absolute;
  width: 23px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  right: 0;
  top: 0;
}
.footer__sitemap .sitemap ul ul {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding-left: 1em;
  margin-top: 0.5em;
}
.footer__sitemap .sitemap ul ul li {
  line-height: 1.5;
}
.footer__sitemap .sitemap ul ul a {
  display: inline-flex;
  gap: 0.5em;
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .footer__sitemap .sitemap ul ul a {
    font-size: 0.85em;
    padding-left: 0;
  }
}
.footer__sitemap .sitemap ul ul a::before {
  content: "-";
  display: block;
  position: static;
  width: auto;
  border: none;
  aspect-ratio: auto;
  transform: none;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__sitemap .bnr {
    width: 300px;
  }
}
.footer__sitemap .bnr .bnr_inspark {
  display: block;
  margin-bottom: 25px;
}
.footer__sitemap .bnr .bnr_inspark:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 15px rgba(58, 58, 58, 0.5);
}
.footer__text {
  background-color: #3A3A3A;
  padding: 25px var(--sideW);
}
@media screen and (max-width: 768px) {
  .footer__text {
    padding-bottom: 80px;
  }
}
.footer__text .copyright {
  text-align: center;
  font-size: 0.875em;
  font-family: "Playfair Display", serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__text .copyright {
    margin-bottom: 15px;
  }
}

.page_top {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 20px;
  width: 45px;
  aspect-ratio: 1/1;
  background-color: #fff;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #3A3A3A;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .page_top {
    width: 35px;
  }
}
.page_top:hover {
  background-color: #1F3A36;
}
.page_top:hover::after {
  background-color: #fff;
}
.page_top.js_active {
  opacity: 1;
  pointer-events: auto;
}
.page_top::after {
  content: "";
  position: absolute;
  width: 17px;
  aspect-ratio: 17/13;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #1F3A36;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: 0.5s;
}

.home #container_wrap {
  padding-top: 0;
}
.home .header:not(.js_scroll) .header__logo {
  display: none;
}
.home .header:not(.js_scroll) .header__nav .tel {
  color: #fff;
}
.home .header:not(.js_scroll) .header__nav .tel a {
  color: #fff;
}
.home .header:not(.js_scroll) .header__nav .line {
  background-color: #fff;
}
.home .header:not(.js_scroll) .menu-trigger {
  background-color: transparent;
}
.home .header:not(.js_scroll) .menu-trigger:not(.active)::after {
  color: #fff;
}
.home .header:not(.js_scroll) .menu-trigger:not(.active) span::before, .home .header:not(.js_scroll) .menu-trigger:not(.active) span::after {
  background-color: #fff;
}
.home .global_nav .header__logo {
  display: block;
}

.main_visual {
  display: flex;
  align-items: center;
  position: relative;
  height: 100vh;
  padding: 0 var(--sideW);
}
@media screen and (max-width: 768px) {
  .main_visual {
    justify-content: center;
  }
}
.main_visual::before, .main_visual::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 47, 45, 0.36);
  top: 0;
  left: 0;
  z-index: 1;
}
.main_visual::after {
  background: url(../images/main_visual_filter.png) repeat top left/337px auto;
  z-index: 2;
  opacity: 0.43;
}
.main_visual__ttl {
  position: relative;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .main_visual__ttl {
    font-size: 1.6em;
  }
}
.main_visual__ttl::before {
  content: "";
  display: block;
  width: 202px;
  aspect-ratio: 202/66;
  background: url(../images/logo_wht.svg) no-repeat center/contain;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .main_visual__ttl::before {
    width: 138px;
    margin-bottom: 20px;
  }
}
.main_visual__ttl::after {
  content: "All for owners  →  Allows";
  display: block;
  font-size: 0.63em;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 768px) {
  .main_visual__ttl::after {
    margin-top: 5px;
  }
}
.main_visual__mov {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.fixed_bnr {
  display: flex;
  gap: 20px;
  position: fixed;
  right: 10px;
  bottom: 80px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .fixed_bnr {
    width: calc(100% - 55px);
    justify-content: flex-end;
    left: 0;
    right: auto;
    bottom: 10px;
    gap: 14px;
  }
}
.fixed_bnr li {
  width: 262px;
}
@media screen and (max-width: 768px) {
  .fixed_bnr li {
    width: calc(50% - 7px);
  }
}
.fixed_bnr a {
  display: block;
}
.fixed_bnr a:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 5px 5px rgba(58, 58, 58, 0.5));
}

.top_news {
  position: relative;
  margin: -65px 0 30px 0;
  z-index: 10;
}
.top_news a {
  display: flex;
  align-items: baseline;
  gap: 0 30px;
  width: min(51vw, 765px);
  padding: 20px 40px 20px 30px;
  border-radius: 10px;
  background: url(../images/ico_arrow.svg) no-repeat center right 20px/16px auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top_news a {
    flex-direction: column;
    padding: 25px calc(var(--sideW) * 2) 25px var(--sideW);
    width: auto;
    margin-right: calc(var(--sideW) * -1);
    border-top-right-radius: 0;
  }
}
.top_news a time {
  font-family: "Playfair Display", serif;
  font-size: 1.25em;
  font-family: "Playfair Display", serif;
  flex-shrink: 0;
}
.top_news a p {
  font-size: 0.9375em;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scroll_text {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 7.5em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  line-height: 0.9;
  color: transparent;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .scroll_text {
    font-size: 5em;
  }
}
.scroll_text::before, .scroll_text::after {
  content: attr(data-text);
  display: inline-block;
  white-space: nowrap;
  color: #F2EEE8;
  padding-left: 0.5em;
  will-change: transform;
  animation: scroll_text_marquee 25s linear infinite;
}
.scroll_text::after {
  left: 100%;
}

@keyframes scroll_text_marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top_concept {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding: 110px 0 140px;
  width: 1500px;
  max-width: 100%;
  margin: 0 auto var(--space);
}
@media screen and (max-width: 768px) {
  .top_concept {
    padding: 0;
  }
}
.top_concept .text {
  width: 55%;
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .top_concept .text {
    width: auto;
    margin-top: 0;
  }
}
.top_concept .text h2 {
  font-size: 2.5em;
  font-family: 500;
  line-height: 1.5;
  color: #1F3A36;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .top_concept .text h2 {
    font-size: 1.75em;
  }
}
.top_concept .text h2::before {
  content: "Concept";
  display: block;
  font-size: 0.7em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.top_concept .text p {
  line-height: 2.1;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .top_concept .text p {
    font-size: 0.875em;
  }
}
.top_concept_slider {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  width: 45.2%;
  height: calc(100% - 90px);
  top: 90px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .top_concept_slider {
    position: static;
    width: auto;
    height: auto;
    margin: 55px 0 60px;
  }
}
.top_concept_slider .swiper {
  width: 50%;
  height: calc(100% - 90px);
}
@media screen and (max-width: 768px) {
  .top_concept_slider .swiper {
    width: 100%;
    height: auto;
  }
}
.top_concept_slider .slide_02 {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .top_concept_slider .slide_02 {
    margin-top: 0;
  }
}
.top_concept_slider .swiper-wrapper {
  transition-timing-function: linear;
}
.top_concept_slider .swiper-slide {
  aspect-ratio: 3/2;
  height: auto;
}
@media screen and (max-width: 768px) {
  .top_concept_slider .swiper-slide {
    width: 40vw;
  }
}
.top_concept_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_works {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto var(--space);
}
.top_works .inner, .top_works .inner_sm, .top_works .inner_lg {
  position: relative;
}
.top_works__ttl {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 60px;
  padding-right: 180px;
}
@media screen and (max-width: 768px) {
  .top_works__ttl {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.top_works__ttl .ttl_top_02 {
  margin-bottom: 0;
  flex-shrink: 0;
}
.top_works .btn_more {
  position: absolute;
  right: var(--sideW);
  top: 15px;
}
@media screen and (max-width: 768px) {
  .top_works .btn_more {
    top: 10px;
  }
}
.top_works .list_works {
  gap: 0;
}

.top_award {
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  .top_award {
    padding-top: 0;
  }
}
.top_award__in {
  position: relative;
  padding: 130px var(--sideW);
  background: url(../images/bg_gray.jpg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .top_award__in {
    padding-block: var(--space);
    margin: 0 calc(var(--sideW) * -1);
  }
}
.top_award .award_record_icon {
  position: absolute;
  top: -45px;
  right: -25px;
}
@media screen and (max-width: 768px) {
  .top_award .award_record_icon {
    position: static;
    margin: 0 auto 45px;
  }
}
@media screen and (max-width: 768px) {
  .top_award .list_award {
    margin: 0 calc(var(--sideW) * -1) 40px;
  }
}
.top_award .list_award a {
  background-color: #fff;
  color: #3A3A3A;
}
.top_award .list_award a:hover {
  color: #fff;
}
.top_award .list_award a:hover::after {
  background-color: #fff;
}
.top_award .list_award a::after {
  background-color: #3A3A3A;
}

.award_record_icon {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.award_record_icon:last-child {
  margin-bottom: 0;
}
.award_record_icon li {
  display: grid;
  place-content: center;
  width: 215px;
  aspect-ratio: 1/1;
  color: #fff;
  background: url(../images/award_record_bg.svg) no-repeat center/contain;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .award_record_icon li {
    width: 150px;
  }
}
.award_record_icon li .in {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.award_record_icon li p {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .award_record_icon li p {
    font-size: 0.75em;
  }
}
.award_record_icon li p:last-child {
  font-size: 1.0625em;
}
@media screen and (max-width: 768px) {
  .award_record_icon li p:last-child {
    font-size: 0.8125em;
  }
}
.award_record_icon li strong {
  display: block;
  font-size: 1.875em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .award_record_icon li strong {
    font-size: 1.25em;
  }
}
.award_record_icon li strong span {
  font-size: 1.566em;
}

.top_style {
  position: relative;
  padding-bottom: var(--space);
}
.top_style::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 500px);
  background: linear-gradient(rgba(31, 58, 54, 0.82), rgba(31, 58, 54, 0.82)), url(../images/bg_gray.jpg) no-repeat center/cover;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top_style h2 {
  font-weight: 500;
  text-align: center;
  margin-bottom: 55px;
}
.top_style h2::before {
  content: attr(data-en);
  display: block;
  font-size: 7.5em;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #F2EEE8;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top_style h2::before {
    font-size: 5em;
  }
}
.top_style__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px min(4vw, 60px);
  margin-bottom: var(--space);
}
@media screen and (max-width: 768px) {
  .top_style__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top_style__list li:not(:last-child) {
    width: 100%;
  }
}
.top_style__list li:not(:last-child):nth-child(2) {
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .top_style__list li:not(:last-child):nth-child(2) {
    margin-top: 0;
  }
}
.top_style__list li:not(:last-child) a {
  display: flex;
  justify-content: center;
  position: relative;
  height: 609px;
  padding-top: 65px;
}
@media screen and (max-width: 768px) {
  .top_style__list li:not(:last-child) a {
    height: 480px;
  }
}
.top_style__list li:not(:last-child) a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 58, 54, 0.6);
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 1;
}
.top_style__list li:not(:last-child) a::after {
  content: "";
  position: absolute;
  width: 47px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.top_style__list li:not(:last-child) a:hover::before {
  background-color: rgba(31, 58, 54, 0.8);
}
.top_style__list li:not(:last-child) a img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.top_style__list li:not(:last-child) a p {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .top_style__list li:not(:last-child) a p {
    font-size: 1.25em;
  }
}
.top_style__list li:last-child {
  grid-column: 1/-1;
}
@media screen and (max-width: 768px) {
  .top_style__list li:last-child {
    grid-column: auto;
  }
}
.top_style__list li:last-child a {
  display: grid;
  grid-template-columns: 308px 1fr;
  gap: 20px 33px;
  align-items: center;
  position: relative;
  width: 1030px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top_style__list li:last-child a {
    grid-template-columns: 1fr;
    width: auto;
    padding-bottom: 25px;
  }
}
.top_style__list li:last-child a:hover {
  background-color: rgba(31, 58, 54, 0.6);
  color: #fff;
}
.top_style__list li:last-child a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
.top_style__list li:last-child a img {
  width: 100%;
  height: 91px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top_style__list li:last-child a img {
    height: auto;
    aspect-ratio: 323/157;
  }
}
.top_style__list li:last-child a p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top_style__list li:last-child a p {
    font-size: 1.125em;
    text-align: center;
  }
}

.top_voice {
  position: relative;
  overflow: hidden;
}
.top_voice .ttl_top_02::before {
  font-size: 2em;
}
.top_voice__slide {
  position: relative;
  margin-bottom: 40px;
}
.top_voice__slide a {
  display: block;
}
.top_voice__slide a:hover figure::after {
  opacity: 1;
}
.top_voice__slide a:hover img {
  transform: scale(1.05);
}
.top_voice__slide a figure {
  aspect-ratio: 37/24;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.top_voice__slide a figure::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 58, 54, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
}
.top_voice__slide a figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.top_voice__slide a .num {
  font-size: 0.9375em;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .top_voice__slide a .num {
    font-size: 0.875em;
  }
}
.top_voice__slide a .ttl {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top_voice__slide a .ttl {
    font-size: 1.125em;
  }
}

.top_show-space {
  position: relative;
  padding: var(--space) 0;
  margin-bottom: 0;
}
.top_show-space::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 58, 54, 0.82);
  top: 0;
  left: 0;
  z-index: 1;
}
.top_show-space video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}
.top_show-space .inner, .top_show-space .inner_sm, .top_show-space .inner_lg {
  position: relative;
  z-index: 2;
}
.top_show-space h2 {
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .top_show-space h2 {
    font-size: 1.125em;
  }
}
.top_show-space h2::before {
  content: attr(data-en);
  display: block;
  font-size: 5em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.33);
}
@media screen and (max-width: 768px) {
  .top_show-space h2::before {
    font-size: 4.44em;
    line-height: 0.9;
  }
}
.top_show-space img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top_show-space img {
    max-width: calc(100% + var(--sideW) * 2);
    margin: 0 calc(var(--sideW) * -1);
    height: 544px;
    object-fit: cover;
  }
}
.top_show-space .list_btns {
  margin-top: -30px;
}

.top_blog {
  background-color: #F7F7F7;
  margin-bottom: 0;
  padding: var(--space) 0;
}
.top_blog__slide {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top_blog__slide .list_blog {
    display: flex;
    margin-bottom: 0;
  }
}
.top_blog__slide .swiper-pagination,
.top_blog__slide .swiper-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .top_blog__slide .swiper-pagination,
  .top_blog__slide .swiper-button {
    display: block;
  }
}

.top_media {
  background-color: #F7F7F7;
  margin-bottom: 0;
  padding-bottom: var(--space);
}
.top_media .inner, .top_media .inner_sm, .top_media .inner_lg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px min(6.66vw, 100px);
}
@media screen and (max-width: 768px) {
  .top_media .inner, .top_media .inner_sm, .top_media .inner_lg {
    grid-template-columns: 1fr;
  }
}
.top_media .media h3 {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.4;
  color: #C1A47B;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .top_media .media h3 {
    font-size: 1.125em;
  }
}
.top_media .media .radio {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #B9B9B9;
}
.top_media .media .radio img {
  display: block;
  margin: 0 auto 20px;
}
.top_media .media .radio p {
  font-size: 0.9375em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_media .media .radio p {
    font-size: 0.875em;
    text-align: left;
  }
}
.top_media .instagram {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_media .instagram {
    padding-top: 30px;
    border-top: 1px solid #B9B9B9;
  }
}
.top_media .instagram .instagram_link {
  display: inline-block;
  position: relative;
  padding-left: 55px;
  font-size: 1.125em;
  letter-spacing: 0.08em;
}
.top_media .instagram .instagram_link::before {
  content: "";
  position: absolute;
  width: 42px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/ico_ig.svg) no-repeat center/22px auto;
  background-color: #3A3A3A;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top_information {
  background-color: #F7F7F7;
  margin-bottom: 0;
  padding-bottom: var(--space);
}
.top_information__in {
  display: grid;
  grid-template-columns: min(22.33vw, 335px);
  grid-template-rows: auto 1fr;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px min(4vw, 60px) 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top_information__in {
    display: block;
    padding: 20px var(--sideW);
    margin-bottom: 0;
  }
}
.top_information .ttl_top_02 {
  grid-column: 1/-1;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .top_information .ttl_top_02 {
    margin-bottom: 20px;
  }
}
.top_information .list_information {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 768px) {
  .top_information .list_information {
    margin-bottom: 0;
  }
}
.top_information .btn {
  grid-column: 1/2;
  grid-row: 2/3;
  padding-top: 30px;
}
.top_information .top_bnr_inspark {
  display: block;
}
@media screen and (max-width: 768px) {
  .top_information .top_bnr_inspark {
    display: none;
  }
}
.top_information .top_bnr_inspark:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 15px rgba(58, 58, 58, 0.5);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 313px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 200px;
    margin-bottom: 40px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 58, 58, 0.4);
  top: 0;
  left: 0;
}
.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.hero_single {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: center;
  gap: 20px min(4vw, 60px);
  width: calc(1220px + var(--sideW) * 2);
  max-width: 100%;
  margin: 0 auto 60px;
  padding: 60px var(--sideW);
  border-bottom: 1px solid #3A3A3A;
}
@media screen and (max-width: 768px) {
  .hero_single {
    grid-template-columns: 1fr;
    padding: 20px var(--sideW);
    margin-bottom: 20px;
  }
}
.hero_single time {
  font-size: 1.125em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .hero_single time {
    font-size: 0.875em;
  }
}
.hero_single__ttl {
  font-size: 2em;
  letter-spacing: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .hero_single__ttl {
    font-size: 1.25em;
  }
}
.hero_single__cat {
  display: inline-block;
  padding: 5px 15px;
  background-color: #F2EEE8;
  border-radius: 30px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .hero_single__cat {
    font-size: 0.875em;
  }
}
.hero_single .image {
  aspect-ratio: 610/406;
}
.hero_single .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_concept {
  display: grid;
  place-content: center;
  position: relative;
  height: calc(100vh - var(--headerHeight));
}
@media screen and (max-width: 768px) {
  .hero_concept {
    margin-bottom: var(--space);
  }
}
.hero_concept::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(58, 58, 58, 0.4);
  z-index: 0;
}
.hero_concept__img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero_concept__ttl {
  position: relative;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .hero_concept__ttl {
    font-size: 1.6em;
  }
}
.hero_concept__ttl::before {
  content: "";
  display: block;
  width: 202px;
  aspect-ratio: 202/66;
  background: url(../images/logo_wht.svg) no-repeat center/contain;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .hero_concept__ttl::before {
    width: 138px;
    margin-bottom: 20px;
  }
}
.hero_concept__ttl::after {
  content: "All for owners  →  Allows";
  display: block;
  font-size: 0.63em;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 768px) {
  .hero_concept__ttl::after {
    margin-top: 5px;
  }
}

.hero_show-space {
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
  padding: 0 var(--sideW);
  height: calc(100vh - var(--headerHeight));
  margin-bottom: var(--space);
}
.hero_show-space::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(58, 58, 58, 0.4);
  z-index: 0;
}
.hero_show-space__img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero_show-space__ttl {
  position: relative;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  z-index: 3;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hero_show-space__ttl {
    font-size: 1.6em;
  }
}
.hero_show-space__ttl::before {
  content: "";
  display: block;
  width: 202px;
  aspect-ratio: 202/66;
  background: url(../images/logo_wht.svg) no-repeat center/contain;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .hero_show-space__ttl::before {
    width: 138px;
    margin-bottom: 20px;
  }
}
.hero_show-space p {
  position: relative;
  line-height: 1.75;
  color: #fff;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero_show-space p {
    font-size: 0.875em;
  }
}

.hero_mov {
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
  padding: 0 var(--sideW);
  height: calc(100vh - var(--headerHeight));
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .hero_mov {
    margin-bottom: var(--space);
  }
}
.hero_mov::before, .hero_mov::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 47, 45, 0.36);
  top: 0;
  left: 0;
  z-index: 1;
}
.hero_mov::after {
  background: url(../images/main_visual_filter.png) repeat top left/337px auto;
  z-index: 2;
  opacity: 0.43;
}
.hero_mov__ttl {
  position: relative;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  z-index: 3;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hero_mov__ttl {
    font-size: 1.6em;
  }
}
.hero_mov__ttl::before {
  content: "";
  display: block;
  width: 202px;
  aspect-ratio: 202/66;
  background: url(../images/logo_wht.svg) no-repeat center/contain;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .hero_mov__ttl::before {
    width: 138px;
    margin-bottom: 20px;
  }
}
.hero_mov p {
  position: relative;
  line-height: 1.75;
  color: #fff;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .hero_mov p {
    font-size: 0.875em;
  }
}
.hero_mov__movie {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero_style {
  display: grid;
  place-content: center;
  position: relative;
  height: calc(100vh - var(--headerHeight));
}
@media screen and (max-width: 768px) {
  .hero_style {
    margin-bottom: var(--space);
  }
}
.hero_style::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(58, 58, 58, 0.4);
  z-index: 0;
}
.hero_style__img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero_style__txt {
  position: relative;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  z-index: 3;
  padding-top: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .hero_style__txt {
    font-size: 0.875em;
    padding-top: 50px;
  }
}
.hero_style__txt::before {
  content: "Style";
  display: block;
  font-size: 7.5em;
  font-family: "Playfair Display", serif;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .hero_style__txt::before {
    font-size: 5em;
  }
}
.hero_style__txt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 202px;
  aspect-ratio: 202/66;
  background: url(../images/logo_wht.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .hero_style__txt::after {
    width: 138px;
  }
}

.sec_award_record .top_award__record {
  position: static;
  margin-bottom: 40px;
}
.sec_award_record .award_record {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sec_award_record .award_record {
    margin-bottom: 10px;
  }
}
.sec_award_record .award_record:last-child {
  margin-bottom: 0;
}
.sec_award_record .award_record[open] summary::after {
  transform: rotate(-90deg);
}
.sec_award_record .award_record summary {
  position: relative;
  font-size: 3.125em;
  font-family: "Playfair Display", serif;
  line-height: 1;
  letter-spacing: 0.12em;
  padding: 0 26px 15px;
  background-color: #F7F7F7;
  list-style: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sec_award_record .award_record summary {
    font-size: 2.5em;
  }
}
.sec_award_record .award_record summary::-webkit-details-marker {
  display: none;
}
.sec_award_record .award_record summary::after {
  content: "";
  position: absolute;
  width: 31px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  right: 20px;
  top: 17px;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .sec_award_record .award_record summary::after {
    top: 12px;
  }
}
.sec_award_record .award_record__item {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .sec_award_record .award_record__item {
    padding: 10px 0 20px;
  }
}

.sec_voice {
  overflow: hidden;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .sec_voice {
    padding-top: 30px;
  }
}
.sec_voice__ttl {
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .sec_voice__ttl {
    margin-bottom: 25px;
  }
}
.sec_voice__ttl .num {
  display: inline-block;
  font-size: 1.0625em;
  color: #3A3A3A;
  border-bottom: 1px solid #3A3A3A;
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .sec_voice__ttl .num {
    font-size: 0.875em;
  }
}
.sec_voice__ttl .ttl {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec_voice__ttl .ttl {
    font-size: 1.25em;
  }
}
.sec_voice__content {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_voice__content {
    margin-bottom: 40px;
  }
}
.sec_voice .main_image {
  width: 960px;
  max-width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .sec_voice .main_image {
    width: 100vw;
    max-width: none;
    margin: 0 calc(var(--sideW) * -1) 30px;
  }
}
.sec_voice .comment {
  display: grid;
  grid-template-columns: 412px 1fr;
  align-items: center;
  gap: 52px;
  position: relative;
  background-color: #fff;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_voice .comment {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
}
.sec_voice .comment::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: calc(100% + 247px + 127px);
  left: calc(50% - 50vw);
  top: -247px;
  background-color: #F7F7F7;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec_voice .comment::after {
    height: calc(100% + 120px + 90px);
    top: -120px;
  }
}
.sec_voice .comment img {
  height: 308px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sec_voice .comment img {
    height: auto;
    aspect-ratio: 412/308;
  }
}
.sec_voice .comment__text {
  padding: 20px 44px 20px 0;
}
@media screen and (max-width: 768px) {
  .sec_voice .comment__text {
    padding: 0 var(--sideW) 20px;
  }
}
.sec_voice .comment strong {
  display: block;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 15px;
  border-bottom: 1px solid #3A3A3A;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .sec_voice .comment strong {
    font-size: 1em;
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
}
.sec_voice .comment p {
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .sec_voice .comment p {
    font-size: 0.875em;
    line-height: 1.7;
  }
}
.sec_voice h2 {
  background-color: #3A3A3A;
  color: #fff;
  font-size: 1.75em;
  line-height: 1.5;
  padding: 22px 43px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sec_voice h2 {
    margin-bottom: 30px;
    font-size: 1.25em;
    padding: 15px;
  }
}
.sec_voice .enquete {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 25px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_voice .enquete {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
}
.sec_voice .enquete .item:last-child {
  grid-column: 2/4;
}
@media screen and (max-width: 768px) {
  .sec_voice .enquete .item:last-child {
    grid-column: auto;
  }
}
.sec_voice .enquete dt {
  text-align: center;
  background-color: #F2EEE8;
  line-height: 1.5;
  padding: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .sec_voice .enquete dt {
    font-size: 0.9375em;
    padding: 10px;
    margin-bottom: 15px;
  }
}
.sec_voice .enquete dd {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
@media screen and (max-width: 768px) {
  .sec_voice .enquete dd {
    gap: 10px 20px;
  }
}
.sec_voice .enquete dd span {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .sec_voice .enquete dd span {
    font-size: 0.9375em;
  }
}
.sec_voice .enquete dd span::before {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  border: 1px solid #B9B9B9;
}
.sec_voice .enquete dd span.checked::after {
  content: "";
  position: absolute;
  width: 23px;
  aspect-ratio: 23/17;
  background: url(../images/ico_check.svg) no-repeat center/contain;
  left: 3px;
  top: 5px;
}
.sec_voice .enquete dd .recommend_num {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  position: relative;
  width: 600px;
  max-width: 100%;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .sec_voice .enquete dd .recommend_num {
    width: auto;
    gap: 2px;
  }
}
.sec_voice .enquete dd .recommend_num:last-child {
  margin-bottom: 0;
}
.sec_voice .enquete dd .recommend_num::before, .sec_voice .enquete dd .recommend_num::after {
  content: "←おすすめしない";
  position: absolute;
  left: 10px;
  top: calc(100% + 5px);
  font-size: 0.8125em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec_voice .enquete dd .recommend_num::before, .sec_voice .enquete dd .recommend_num::after {
    font-size: 0.75em;
  }
}
.sec_voice .enquete dd .recommend_num::after {
  content: "おすすめしたい→";
  left: auto;
  right: 10px;
}
.sec_voice .enquete dd .recommend_num span {
  border: 1px solid #B9B9B9;
  height: 75px;
  font-size: 1.4em;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sec_voice .enquete dd .recommend_num span {
    height: 40px;
    font-size: 1.2em;
    padding: 0 5px;
  }
}
.sec_voice .enquete dd .recommend_num span::before, .sec_voice .enquete dd .recommend_num span::after {
  content: none;
}
.sec_voice .enquete dd .recommend_num span.checked {
  background-color: #C1A47B;
  color: #fff;
}
.sec_voice .enquete__comment {
  width: 100%;
  font-size: 0.875em;
  line-height: 1.6;
  margin-top: 10px;
}
.sec_voice .enquete__comment.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec_voice .enquete__more {
  display: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: #F7F7F7;
  font-size: 0.875em;
  line-height: 1.5;
  color: #3A3A3A;
  padding: 8px;
  font-family: "Noto Serif", serif;
  cursor: pointer;
  transition: 0.5s;
}
.sec_voice .enquete__more:hover {
  background-color: #1F3A36;
  color: #fff;
}
.sec_voice .enquete__more.is-visible {
  display: block;
}
.sec_voice .admin_comment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #F7F7F7;
  padding: 55px var(--sideW);
}
@media screen and (max-width: 768px) {
  .sec_voice .admin_comment {
    padding: 30px var(--sideW);
  }
}
.sec_voice .admin_comment h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 35px;
  margin-bottom: 30px;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec_voice .admin_comment h3 {
    font-size: 1.125em;
    margin-bottom: 15px;
  }
}
.sec_voice .admin_comment h3::before {
  content: "";
  display: block;
  width: 203px;
  aspect-ratio: 203/66;
  background: url(../images/logo.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .sec_voice .admin_comment h3::before {
    width: 150px;
  }
}
.sec_voice .admin_comment .text {
  font-size: 0.9375em;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_voice .admin_comment .text {
    font-size: 0.875em;
    line-height: 1.75;
  }
}
.sec_voice .admin_comment .text p:blank {
  display: none;
}

.single_works__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .single_works__ttl {
    margin-bottom: 40px;
  }
}
.single_works__ttl .num {
  font-size: 1.75em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding-bottom: 5px;
  border-bottom: 1px solid #3A3A3A;
}
@media screen and (max-width: 768px) {
  .single_works__ttl .num {
    font-size: 1.25em;
  }
}
.single_works__ttl h1 {
  font-size: 2em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .single_works__ttl h1 {
    font-size: 1.25em;
  }
}
.single_works__ttl .cat {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  padding: 5px 15px;
  background-color: #F2EEE8;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .single_works__ttl .cat {
    font-size: 0.875em;
  }
}
.single_works .img_wrap {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .single_works .img_wrap {
    display: block;
    margin-bottom: 30px;
  }
}
.single_works .img_wrap .left_img {
  width: 75%;
  aspect-ratio: 885/575;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .single_works .img_wrap .left_img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.single_works .img_wrap .left_img span,
.single_works .img_wrap .left_img a.ignition {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #47484A;
  border-radius: 20px;
  padding: 3px 15px 5px 40px;
  color: #fff;
}
.single_works .img_wrap .left_img span:before,
.single_works .img_wrap .left_img a.ignition:before {
  content: "";
  width: 17px;
  height: 14px;
  background: url(../images/ico_img.svg) no-repeat center/100% auto;
  top: 10px;
  left: 15px;
  position: absolute;
}
.single_works .img_wrap .left_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single_works .img_wrap .right_img {
  width: 24%;
}
@media screen and (max-width: 768px) {
  .single_works .img_wrap .right_img {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
}
.single_works .img_wrap .right_img .img_box {
  aspect-ratio: 285/185;
  overflow: hidden;
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .single_works .img_wrap .right_img .img_box {
    width: 33%;
    margin-bottom: 0;
  }
}
.single_works .img_wrap .right_img .img_box:last-child {
  margin-bottom: 0;
}
.single_works .img_wrap .right_img .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single_works .tag_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .single_works .tag_wrap {
    margin-bottom: 40px;
    gap: 5px;
  }
}
.single_works .tag_wrap a {
  display: block;
  line-height: 1.5;
  padding: 8px 20px;
  font-size: 0.9375em;
  background-color: #F7F7F7;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .single_works .tag_wrap a {
    font-size: 0.875em;
    padding: 5px 10px;
  }
}
.single_works .tag_wrap a:hover {
  background-color: #1F3A36;
  color: #fff;
}
.single_works .table_works th {
  width: 18%;
  text-align: left;
  vertical-align: top;
  padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .single_works .table_works th {
    width: 100%;
    display: block;
    padding-bottom: 10px;
  }
}
.single_works .table_works th span {
  padding-left: 10px;
}
.single_works .table_works td {
  text-align: left;
  vertical-align: top;
  padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .single_works .table_works td {
    width: 100%;
    display: block;
  }
}
.single_works .content_works {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 var(--sideW);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.single_works .content_works.js-active {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}
.single_works .content_works.js-active .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.single_works .content_works.js-active .works_inner_wrap {
  overflow-y: scroll;
  height: 80vh;
  position: relative;
  z-index: 10;
  background: #fff;
  padding: 50px 5%;
}
.single_works .content_works.js-active .works_inner_wrap .card_works__close {
  position: sticky;
  transform: translate(150%, -100%);
  top: 0;
  left: 100%;
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .single_works .content_works.js-active .works_inner_wrap .card_works__close {
    transform: translate(0, -110%);
  }
}
.single_works .content_works.js-active .works_inner_wrap .card_works__close:before, .single_works .content_works.js-active .works_inner_wrap .card_works__close:after {
  content: "";
  display: block;
  width: 56%;
  height: 2px;
  background-color: #000;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.single_works .content_works.js-active .works_inner_wrap .card_works__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.single_works .content_works.js-active .works_inner_wrap .card_works__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.single_works .content_works.js-active .works_inner_wrap .inner_r {
  max-width: 800px;
  margin: -30px auto 0;
}
.single_works .content_works.js-active .works_inner_wrap .inner_r .img_box {
  margin-bottom: 50px;
}
.single_works .content_works.js-active .works_inner_wrap .inner_r .img_box:last-child {
  margin-bottom: 0;
}
.single_works .content_works.js-active .works_inner_wrap .inner_r .img_box img {
  display: block;
  margin-bottom: 25px;
}
.single_works .content_works.js-active .works_inner_wrap .inner_r .img_box p {
  margin: 0;
  line-height: 1.5;
}

.sec_reference {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .sec_reference {
    padding-top: 30px;
  }
}
.sec_reference .reference_search_wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_reference .reference_search_wrap {
    margin-bottom: 40px;
  }
}
.sec_reference .reference_search_wrap[open] summary::after {
  transform: rotate(-90deg);
}
.sec_reference .reference_search_wrap summary {
  position: relative;
  font-size: 1.5em;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.12em;
  padding: 20px 26px;
  background-color: #1F3A36;
  color: #fff;
  list-style: none;
  cursor: pointer;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .sec_reference .reference_search_wrap summary {
    font-size: 1.125em;
  }
}
.sec_reference .reference_search_wrap summary::-webkit-details-marker {
  display: none;
}
.sec_reference .reference_search_wrap summary::after {
  content: "";
  position: absolute;
  width: 31px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  background-color: #fff;
  right: 20px;
  top: 17px;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .sec_reference .reference_search_wrap summary::after {
    top: 12px;
  }
}

.content_reference {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 var(--sideW);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.content_reference.js-active {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}
.content_reference.js-active .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.content_reference .inner_r {
  width: 62.5%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .content_reference .inner_r {
    width: 100%;
  }
}
.content_reference .inner_r .card_reference__close {
  position: absolute;
  display: block;
  bottom: -10px;
  right: 0;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #FFF;
}
.content_reference .inner_r .card_reference__close:before, .content_reference .inner_r .card_reference__close:after {
  content: "";
  display: block;
  width: 56%;
  height: 2px;
  background-color: #FFF;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.content_reference .inner_r .card_reference__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.content_reference .inner_r .card_reference__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.content_reference .inner_r img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
}
.content_reference .inner_r p {
  font-size: 0.9375em;
  margin: 0;
}

.sec_concept_01 .inner, .sec_concept_01 .inner_sm, .sec_concept_01 .inner_lg {
  position: relative;
}
.sec_concept_01 .text {
  width: 680px;
  max-width: 100%;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_concept_01 .text {
    padding-top: 0;
  }
}
.sec_concept_01 .text strong {
  display: inline-block;
  font-size: 1.75em;
  font-weight: 500;
  border-bottom: 1px solid #3A3A3A;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_concept_01 .text strong {
    font-size: 1.25em;
    line-height: 1.75;
    margin-bottom: 30px;
  }
}
.sec_concept_01 .text p {
  font-size: 1.125em;
}
@media screen and (max-width: 768px) {
  .sec_concept_01 .text p {
    font-size: 0.875em;
  }
}
.sec_concept_01 img {
  position: absolute;
  right: 0;
  top: 90px;
  width: clamp(400px, 36.133vw, 542px);
}
@media screen and (max-width: 768px) {
  .sec_concept_01 img {
    position: static;
    width: auto;
    margin: 0 auto;
  }
}

.sec_concept_02 {
  overflow: hidden;
  position: relative;
  padding-block: 280px 220px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .sec_concept_02 {
    padding-block: 60px;
  }
}
.sec_concept_02::after {
  content: "";
  position: absolute;
  width: 68.466vw;
  height: 100%;
  background-color: #F7F7F7;
  top: 0;
  left: 0;
}
.sec_concept_02 .scroll_text {
  top: 80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_concept_02 .scroll_text {
    top: 0;
    z-index: 2;
  }
}
.sec_concept_02 .inner, .sec_concept_02 .inner_sm, .sec_concept_02 .inner_lg {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 30px min(5.33vw, 80px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_concept_02 .inner, .sec_concept_02 .inner_sm, .sec_concept_02 .inner_lg {
    grid-template-columns: 1fr;
  }
}
.sec_concept_02 .inner .image, .sec_concept_02 .inner_sm .image, .sec_concept_02 .inner_lg .image {
  position: relative;
  height: 653px;
}
@media screen and (max-width: 768px) {
  .sec_concept_02 .inner .image, .sec_concept_02 .inner_sm .image, .sec_concept_02 .inner_lg .image {
    height: auto;
  }
}
.sec_concept_02 .inner .image figure, .sec_concept_02 .inner_sm .image figure, .sec_concept_02 .inner_lg .image figure {
  position: absolute;
  width: 44.46vw;
  height: 100%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .sec_concept_02 .inner .image figure, .sec_concept_02 .inner_sm .image figure, .sec_concept_02 .inner_lg .image figure {
    position: static;
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 calc(var(--sideW) * -1);
  }
}
.sec_concept_02 .inner .image figure img, .sec_concept_02 .inner_sm .image figure img, .sec_concept_02 .inner_lg .image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec_concept_02 .inner .text, .sec_concept_02 .inner_sm .text, .sec_concept_02 .inner_lg .text {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .sec_concept_02 .inner .text, .sec_concept_02 .inner_sm .text, .sec_concept_02 .inner_lg .text {
    padding-top: 0;
  }
}
.sec_concept_02 .inner .text p, .sec_concept_02 .inner_sm .text p, .sec_concept_02 .inner_lg .text p {
  font-size: 1.125em;
}
@media screen and (max-width: 768px) {
  .sec_concept_02 .inner .text p, .sec_concept_02 .inner_sm .text p, .sec_concept_02 .inner_lg .text p {
    font-size: 0.875em;
  }
}

.sec_concept_03 {
  position: relative;
  padding: 240px 0 0;
  margin-top: -120px;
}
@media screen and (max-width: 768px) {
  .sec_concept_03 {
    padding-top: 80px;
    margin-top: -40px;
  }
}
.sec_concept_03::before, .sec_concept_03::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 235px);
  background: url(../images/bg_gray.jpg) repeat center/cover;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .sec_concept_03::before, .sec_concept_03::after {
    height: calc(100% - 25vw);
  }
}
.sec_concept_03::after {
  background: none;
  background-color: rgba(31, 58, 54, 0.8);
  z-index: -1;
}
.sec_concept_03 .concept_wrap {
  display: grid;
  grid-template-columns: 51% 1fr;
  gap: 15px min(3.33vw, 50px);
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_concept_03 .concept_wrap {
    grid-template-columns: 1fr;
  }
}
.sec_concept_03 .concept_wrap:last-of-type {
  margin-bottom: var(--space);
}
.sec_concept_03 .concept_wrap .text {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .sec_concept_03 .concept_wrap .text {
    padding-top: 0;
  }
}
.sec_concept_03 .concept_wrap .text img {
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sec_concept_03 .concept_wrap .text img {
    width: 200px;
    margin-bottom: 15px;
  }
}
.sec_concept_03 .concept_wrap .text h2 {
  font-size: 2.5em;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .sec_concept_03 .concept_wrap .text h2 {
    font-size: 1.5em;
  }
}
.sec_concept_03 .concept_wrap .text p {
  font-size: 0.9375em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec_concept_03 .concept_wrap .text p {
    font-size: 0.875em;
    line-height: 1.75;
  }
}
.sec_concept_03 .concept_wrap .image {
  position: relative;
  padding: 65px 70px 0 0;
}
@media screen and (max-width: 768px) {
  .sec_concept_03 .concept_wrap .image {
    padding: 50px 25px 0 0;
  }
}
.sec_concept_03 .concept_wrap .image img {
  display: block;
}
.sec_concept_03 .concept_wrap .image p {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  font-family: "Playfair Display", serif;
  font-size: 2.5em;
  line-height: 1.5;
  color: #C1A47B;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .sec_concept_03 .concept_wrap .image p {
    font-size: 2em;
    right: calc(var(--sideW) * -1);
  }
}
.sec_concept_03 .concept_wrap .image p span {
  display: block;
  writing-mode: vertical-lr;
  transform: translateY(0.5em);
}
.sec_concept_03 .concept_movie {
  width: 850px;
  aspect-ratio: 16/9;
  max-width: 100%;
  margin: 0 auto;
}
.sec_concept_03 .concept_movie iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec_show-space_01 {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto var(--space);
}
.sec_show-space_01 .inner, .sec_show-space_01 .inner_sm, .sec_show-space_01 .inner_lg {
  display: grid;
  grid-template-columns: 55.73% 1fr;
  gap: 30px min(4.466vw, 67px);
}
@media screen and (max-width: 768px) {
  .sec_show-space_01 .inner, .sec_show-space_01 .inner_sm, .sec_show-space_01 .inner_lg {
    display: block;
  }
}
.sec_show-space_01 .text {
  width: 680px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_show-space_01 .text {
    padding-top: 0;
    margin-bottom: 30px;
  }
}
.sec_show-space_01 .text strong {
  display: inline-block;
  font-size: 1.75em;
  font-weight: 500;
  border-bottom: 1px solid #3A3A3A;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_01 .text strong {
    font-size: 1.25em;
    line-height: 1.75;
    margin-bottom: 30px;
  }
}
.sec_show-space_01 .text p {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_01 .text p {
    font-size: 0.875em;
    margin-bottom: 25px;
  }
}
.sec_show-space_01 .mov {
  position: absolute;
  top: 0;
  right: 0;
  width: min(40.8vw, 612px);
  aspect-ratio: 612/543;
}
@media screen and (max-width: 768px) {
  .sec_show-space_01 .mov {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
.sec_show-space_01 .mov::before, .sec_show-space_01 .mov::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  background-color: #fff;
  left: 0;
  top: calc(50% - 7.5px);
  z-index: 1;
}
.sec_show-space_01 .mov::after {
  width: 15px;
  height: 100%;
  top: 0;
  left: calc(50% - 7.5px);
}
.sec_show-space_01 .mov video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.sec_show-space_02 {
  overflow: hidden;
  position: relative;
  padding-block: 160px var(--space);
}
@media screen and (max-width: 768px) {
  .sec_show-space_02 {
    padding-block: 60px;
  }
}
.sec_show-space_02::after {
  content: "";
  position: absolute;
  width: 68.466vw;
  height: 100%;
  background-color: #F7F7F7;
  top: 0;
  left: 0;
}
.sec_show-space_02 .scroll_text {
  top: 80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_show-space_02 .scroll_text {
    top: 0;
    z-index: 2;
  }
}
.sec_show-space_02 .inner, .sec_show-space_02 .inner_sm, .sec_show-space_02 .inner_lg {
  position: relative;
  z-index: 1;
}
.sec_show-space_02 h2 {
  text-align: center;
  font-size: 2.75em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_02 h2 {
    font-size: 2em;
  }
}
.sec_show-space_02 .virtual {
  width: 913px;
  max-width: 100%;
  aspect-ratio: 913/470;
  margin: 0 auto 35px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_02 .virtual {
    margin-bottom: 30px;
  }
}
.sec_show-space_02 .virtual iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec_show-space_02 p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_show-space_02 p {
    font-size: 0.875em;
  }
}

.sec_show-space_03 {
  overflow: hidden;
}
.sec_show-space_03 .inner, .sec_show-space_03 .inner_sm, .sec_show-space_03 .inner_lg {
  display: flex;
  flex-wrap: wrap;
  gap: 0 min(5.33vw, 80px);
}
.sec_show-space_03 strong {
  display: inline-block;
  font-size: 1.75em;
  font-weight: 500;
  border-bottom: 1px solid #3A3A3A;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_03 strong {
    font-size: 1.2em;
    line-height: 1.75;
    margin-bottom: 30px;
  }
}
.sec_show-space_03 p {
  font-size: 1.125em;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_03 p {
    font-size: 0.875em;
    margin-bottom: 25px;
  }
}
.sec_show-space_03 p:last-child {
  margin-bottom: 0;
}
.sec_show-space_03 .text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .sec_show-space_03 .text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.sec_show-space_03 .image {
  width: calc(50% - min(5.33vw, 80px));
}
@media screen and (max-width: 768px) {
  .sec_show-space_03 .image {
    width: 100%;
  }
}
.sec_show-space_03 .image__in {
  position: relative;
  margin-right: calc(var(--sideW) * -2);
  height: 412px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_03 .image__in {
    height: auto;
    aspect-ratio: 666/412;
    overflow: hidden;
  }
}
.sec_show-space_03 .image__in figure {
  width: 100%;
  height: 100%;
}
.sec_show-space_03 .image__in figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec_show-space_03 ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_03 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
  }
}

.sec_show-space_04 {
  overflow: hidden;
  position: relative;
  padding-block: 160px var(--space);
  margin-bottom: 0;
  background: url(../images/show-space_hall_bg.jpg) no-repeat top/contain, url(../images/bg_gray.jpg) repeat center/cover;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 {
    padding-block: 60px;
  }
}
.sec_show-space_04::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 58, 58, 0.63);
  top: 0;
  left: 0;
}
.sec_show-space_04 .scroll_text {
  top: 80px;
  z-index: 1;
  opacity: 0.33;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 .scroll_text {
    top: 0;
    z-index: 2;
  }
}
.sec_show-space_04 .inner, .sec_show-space_04 .inner_sm, .sec_show-space_04 .inner_lg {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.sec_show-space_04 h2 {
  font-size: 2.25em;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
}
.sec_show-space_04 h2 + p {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 h2 + p {
    font-size: 0.875em;
    text-align: left;
    margin-bottom: 30px;
  }
}
.sec_show-space_04 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 ul li:first-child {
    grid-column: 1/-1;
  }
}
.sec_show-space_04 .style {
  display: flex;
  flex-direction: column;
  gap: 60px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 .style {
    gap: 40px;
  }
}
.sec_show-space_04 .style .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 48px;
}
.sec_show-space_04 .style .item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 .style .item:nth-child(even) {
    flex-direction: row;
  }
}
.sec_show-space_04 .style .item .image {
  width: calc(50% - 48px);
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 .style .item .image {
    width: 100%;
    order: 2;
  }
}
.sec_show-space_04 .style .item .image img {
  display: block;
}
.sec_show-space_04 .style .item .text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 .style .item .text {
    display: contents;
    width: 100%;
  }
}
.sec_show-space_04 .style .item .text h3 {
  font-size: 2.25em;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 .style .item .text h3 {
    font-size: 1.5em;
    margin-bottom: 0;
    order: 1;
  }
}
.sec_show-space_04 .style .item .text h3::before {
  content: attr(data-en);
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 0.55em;
}
.sec_show-space_04 .style .item .text p {
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .sec_show-space_04 .style .item .text p {
    font-size: 0.875em;
    order: 3;
  }
}

.member_wrap {
  background-color: #F7F7F7;
  padding: 55px min(8.66vw, 130px);
}
@media screen and (max-width: 768px) {
  .member_wrap {
    padding: 30px var(--sideW);
  }
}
.member_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0 30px;
}
.member_wrap ul li {
  display: flex;
  font-size: 0.9375em;
  width: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .member_wrap ul li {
    width: 100%;
    font-size: 0.875em;
  }
}
.member_wrap ul li::before {
  content: "●";
  display: block;
}

.media_mix {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 50px;
  justify-content: center;
  border-top: 1px solid #B9B9B9;
  padding-top: 55px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .media_mix {
    margin-top: 40px;
    padding-top: 30px;
    gap: 10px 25px;
  }
}
.media_mix p {
  font-size: 0.875em;
}

.sec_service_01 .inner, .sec_service_01 .inner_sm, .sec_service_01 .inner_lg {
  display: grid;
  grid-template-columns: 55.7% 1fr;
  gap: 30px 32px;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .inner, .sec_service_01 .inner_sm, .sec_service_01 .inner_lg {
    grid-template-columns: 1fr;
  }
}
.sec_service_01 .text {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text {
    padding-top: 0;
  }
}
.sec_service_01 .text p {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text p {
    font-size: 0.875em;
    margin-bottom: 25px;
  }
}
.sec_service_01 .text p:last-child {
  margin-bottom: 0;
}
.sec_service_01 .text ul {
  counter-reset: num;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text ul {
    margin-bottom: 30px;
  }
}
.sec_service_01 .text ul a {
  display: flex;
  align-items: baseline;
  gap: 35px;
  position: relative;
  font-size: 1.125em;
  letter-spacing: 0.08em;
  counter-increment: num;
  border-bottom: 1px solid #B9B9B9;
  line-height: 1.5;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text ul a {
    font-size: 0.9375em;
    gap: 15px;
  }
}
.sec_service_01 .text ul a:hover {
  box-shadow: 6px 4px 6px rgba(58, 58, 58, 0.2);
  transform: translateY(-3px);
}
.sec_service_01 .text ul a::before {
  content: "Style" counter(num);
  display: block;
  font-size: 2em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  color: #B9B9B9;
  font-family: "Playfair Display", serif;
  font-style: italic;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text ul a::before {
    font-size: 1.5em;
  }
}
.sec_service_01 .text ul a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  right: 14px;
  top: calc(50% - 4.5px);
  transform: rotate(90deg);
}
.sec_service_01 .text dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  border: 1px solid #C1A47B;
  margin-bottom: 35px;
  width: 626px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text dl {
    width: auto;
    line-height: 1.5;
  }
}
.sec_service_01 .text dl:last-child {
  margin-bottom: 0;
}
.sec_service_01 .text dl dt {
  background-color: #C1A47B;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375em;
  text-align: center;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text dl dt {
    font-size: 0.875em;
  }
}
.sec_service_01 .text dl dd {
  padding: 5px 20px;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text dl dd {
    font-size: 0.875em;
    padding: 5px 10px;
  }
}
.sec_service_01 .text .service {
  background-color: #F7F7F7;
  padding: 30px min(3.66vw, 55px);
  width: 626px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text .service {
    width: auto;
    padding: 20px var(--sideW);
  }
}
.sec_service_01 .text .service strong {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 1.25em;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 20px;
  border-bottom: 1px solid #3A3A3A;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text .service strong {
    font-size: 0.875em;
  }
}
.sec_service_01 .text .service strong span:first-child {
  display: block;
  font-size: 1.4em;
}
.sec_service_01 .text .service strong span:last-child {
  font-size: 1.8em;
}
.sec_service_01 .text .service p {
  font-size: 0.9375em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text .service p {
    font-size: 0.875em;
  }
}
.sec_service_01 .text .service p:last-child {
  font-size: 0.8125em;
}
@media screen and (max-width: 768px) {
  .sec_service_01 .text .service p:last-child {
    font-size: 0.75em;
  }
}
.sec_service_01 img {
  display: block;
  margin-top: 90px;
  margin-right: calc(var(--sideW) * -1);
}
@media screen and (max-width: 768px) {
  .sec_service_01 img {
    width: 400px;
    margin: auto;
  }
}

.sec_service_02 {
  counter-increment: num;
  overflow: hidden;
}
.sec_service_02 .inner, .sec_service_02 .inner_sm, .sec_service_02 .inner_lg {
  display: flex;
  flex-wrap: wrap;
  gap: 0 min(5.33vw, 80px);
}
@media screen and (max-width: 768px) {
  .sec_service_02 .inner, .sec_service_02 .inner_sm, .sec_service_02 .inner_lg {
    gap: 20px;
  }
}
.sec_service_02 h2 {
  width: 100%;
  text-align: center;
  font-size: 2.75em;
  line-height: 1.5;
  font-weight: 500;
  padding-top: 70px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sec_service_02 h2 {
    font-size: 2em;
    padding-top: 30px;
    margin-bottom: 0;
  }
}
.sec_service_02 h2::after {
  content: attr(data-en);
  position: absolute;
  font-size: 2.72em;
  font-family: "Playfair Display", serif;
  width: 100%;
  text-align: center;
  color: #F2EEE8;
  line-height: 0.9;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec_service_02 h2::after {
    font-size: 1.8em;
  }
}
.sec_service_02 .text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .sec_service_02 .text {
    width: 100%;
  }
}
.sec_service_02 .text h3 {
  font-size: 2.625em;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sec_service_02 .text h3 {
    font-size: 1.5625em;
  }
}
.sec_service_02 .text h3::before {
  content: "Style " counter(num);
  display: block;
  font-size: 0.66em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.sec_service_02 .text p {
  font-size: 1.125em;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .sec_service_02 .text p {
    font-size: 0.875em;
    margin-bottom: 20px;
  }
}
.sec_service_02 .image {
  position: relative;
  width: calc(50% - min(5.33vw, 80px));
  height: 412px;
}
@media screen and (max-width: 768px) {
  .sec_service_02 .image {
    width: 100%;
    height: auto;
  }
}
.sec_service_02 .image figure {
  position: absolute;
  width: 44.44vw;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .sec_service_02 .image figure {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 666/412;
  }
}
.sec_service_02 .image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec_service_03 {
  margin-bottom: 0;
}
.sec_service_03__in {
  background: url(../images/bg_gray.jpg) no-repeat center top/cover;
  padding: var(--space) 0;
}
@media screen and (max-width: 768px) {
  .sec_service_03__in {
    padding: var(--sideW);
    margin: 0 calc(var(--sideW) / 2 * -1);
  }
}
.sec_service_03 img {
  display: block;
  width: 960px;
  margin: 0 auto 40px;
}

.sec_service_04 {
  position: relative;
  padding: 130px 0 160px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .sec_service_04 {
    padding: 60px 0 80px;
  }
}
.sec_service_04::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 200px);
  background: linear-gradient(rgba(31, 58, 54, 0.82), rgba(31, 58, 54, 0.82)), url(../images/bg_gray.jpg) no-repeat center/cover;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .sec_service_04::before {
    height: calc(100% + 100px);
  }
}
.sec_service_04 .inner, .sec_service_04 .inner_sm, .sec_service_04 .inner_lg {
  position: relative;
  z-index: 1;
}

.sec_style {
  padding: var(--space) 0;
  background: linear-gradient(rgba(31, 58, 54, 0.82), rgba(31, 58, 54, 0.82)), url(../images/bg_gray.jpg) no-repeat center/cover;
}
.sec_style + #list_breadcrumb {
  margin-top: calc(var(--space) * -1);
}
.sec_style h2 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 2.75em;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  padding-top: 70px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sec_style h2 {
    font-size: 1.5em;
    padding-top: 30px;
    margin-bottom: 30px;
  }
}
.sec_style h2::after {
  content: attr(data-en);
  position: absolute;
  font-size: 2.72em;
  font-family: "Playfair Display", serif;
  width: 100%;
  text-align: center;
  color: rgba(242, 238, 232, 0.15);
  line-height: 0.9;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .sec_style h2::after {
    font-size: 2.2em;
  }
}
.sec_style .detail_list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec_style .detail_list {
    margin-bottom: 60px;
    gap: 35px;
  }
}
.sec_style .detail_list li {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-areas: "text img";
  gap: 30px min(4vw, 60px);
}
@media screen and (max-width: 768px) {
  .sec_style .detail_list li {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "text";
  }
}
.sec_style .detail_list li:nth-child(even) {
  grid-template-areas: "img text";
}
@media screen and (max-width: 768px) {
  .sec_style .detail_list li:nth-child(even) {
    grid-template-areas: "img" "text";
  }
}
.sec_style .detail_list li .text {
  grid-area: text;
  color: #fff;
}
.sec_style .detail_list li .text h3 {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec_style .detail_list li .text h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
}
.sec_style .detail_list li .text h3::before {
  content: "";
  display: block;
  width: 229px;
  aspect-ratio: 229/49;
  background: url(../images/garden_txt_01.svg) no-repeat center/contain;
  transform: rotate(-4deg);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec_style .detail_list li .text h3::before {
    width: 180px;
  }
}
.sec_style .detail_list li .text p {
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .sec_style .detail_list li .text p {
    font-size: 0.875em;
  }
}
.sec_style .detail_list li .image {
  grid-area: img;
}
.sec_style .plan_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list {
    gap: 40px;
  }
}
.sec_style .plan_list > li {
  display: grid;
  grid-template-columns: 1fr 59.3%;
  align-items: start;
  gap: 0 min(3.33vw, 50px);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list > li {
    display: block;
  }
}
.sec_style .plan_list > li .text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0 15px;
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list > li .text {
    flex-direction: column;
    gap: 10px;
  }
}
.sec_style .plan_list > li .text .ttl_top_02 {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list > li .text .ttl_top_02 {
    margin-bottom: 0;
  }
}
.sec_style .plan_list > li .text .price {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25em;
  line-height: 1.5;
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list > li .text .price {
    font-size: 1em;
    transform: translateY(0);
  }
}
.sec_style .plan_list > li .text .price span {
  font-size: 1.8em;
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list > li .text .price span {
    font-size: 1.5em;
  }
}
.sec_style .plan_list > li .text ul {
  margin-bottom: 5px;
}
.sec_style .plan_list > li .text ul li {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list > li .text ul li {
    font-size: 0.875em;
  }
}
.sec_style .plan_list > li .text ul li::before {
  content: "●";
  display: block;
  flex-shrink: 0;
}
.sec_style .plan_list > li .text .cation {
  font-size: 0.8125em;
}
.sec_style .plan_list > li .image {
  padding-top: 30px;
}
.sec_style .plan_list > li .image p {
  font-size: 0.9375em;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 30px;
  line-height: 1.5;
  padding: 15px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list > li .image p {
    font-size: 0.875em;
    margin-bottom: 25px;
    padding: 10px 0;
  }
}
.sec_style .plan_list__slide {
  position: relative;
}
.sec_style .plan_list__slide .is-static .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px min(2.4vw, 36px);
}
@media screen and (max-width: 768px) {
  .sec_style .plan_list__slide .is-static .swiper-wrapper {
    gap: 5px;
  }
}
.sec_style .plan_list__slide .swiper-button {
  width: 30px;
  top: calc(50% - 15px);
}
.sec_style .plan_list__slide .swiper-button-next {
  right: -15px;
}
.sec_style .plan_list__slide .swiper-button-prev {
  left: -15px;
}

.reference_item {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .reference_item {
    gap: 60px;
    margin-bottom: 30px;
  }
}
.reference_item > li {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 20px min(5vw, 75px);
}
@media screen and (max-width: 768px) {
  .reference_item > li {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.reference_item > li .text {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .reference_item > li .text {
    display: contents;
  }
}
.reference_item > li .text h3 {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .reference_item > li .text h3 {
    font-size: 1.5em;
    margin-bottom: 0;
    order: 1;
  }
}
.reference_item > li .text h3::before {
  content: "";
  display: block;
  width: 229px;
  aspect-ratio: 229/49;
  background: url(../images/garden_txt_01.svg) no-repeat center/contain;
  transform: rotate(-4deg);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .reference_item > li .text h3::before {
    width: 180px;
  }
}
.reference_item > li .text p {
  font-size: 0.9375em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .reference_item > li .text p {
    font-size: 0.875em;
    margin-bottom: 0;
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .reference_item > li .text ul {
    order: 4;
  }
}
.reference_item > li .text ul a {
  display: block;
  position: relative;
  font-size: 1.375em;
  color: #fff;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #fff;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .reference_item > li .text ul a {
    font-size: 0.9375em;
    padding: 8px 12px;
  }
}
.reference_item > li .text ul a:hover {
  background-color: #fff;
  color: #1F3A36;
}
.reference_item > li .text ul a:hover::after {
  background-color: #1F3A36;
}
.reference_item > li .text ul a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .reference_item > li .image {
    order: 2;
    margin: 0 calc(var(--sideW) * -1);
  }
}
.reference_item > li .image img {
  position: sticky;
  top: var(--activeHeaderHeight);
}
@media screen and (max-width: 768px) {
  .reference_item > li .image img {
    position: static;
    width: 100%;
    aspect-ratio: 3/2;
  }
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .map {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.map--lg {
  height: 460px;
}
@media screen and (max-width: 768px) {
  .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 {
  display: block;
  font-size: 2.25em;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .ttl_top_01 {
    font-size: 1.625em;
  }
}
.ttl_top_01::after {
  content: attr(data-en);
  display: block;
  font-size: 0.55em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .ttl_top_01::after {
    font-size: 0.69em;
  }
}
.ttl_top_01:last-child {
  margin-bottom: 0;
}
.ttl_top_01.wht {
  color: #fff;
}

.ttl_top_02 {
  display: block;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .ttl_top_02 {
    font-size: 1em;
  }
}
.ttl_top_02::before {
  content: attr(data-en);
  display: block;
  font-size: 3em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.12em;
}
.ttl_top_02:last-child {
  margin-bottom: 0;
}
.ttl_top_02.sm {
  font-size: 1.125em;
}
@media screen and (max-width: 768px) {
  .ttl_top_02.sm {
    font-size: 1em;
  }
}
.ttl_top_02.sm::before {
  font-size: 2.66em;
}
@media screen and (max-width: 768px) {
  .ttl_top_02.sm::before {
    font-size: 1.75em;
  }
}
.ttl_top_02.lg {
  font-size: 1.125em;
}
.ttl_top_02.lg::before {
  font-size: 4.44em;
}
.ttl_top_02.center {
  text-align: center;
}
.ttl_top_02.wht {
  color: #fff;
}

.ttl_cmn_01 {
  display: block;
  position: relative;
  font-size: 2.25em;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  z-index: 2;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_01 {
    font-size: 1.75em;
  }
}
.ttl_cmn_01:last-child {
  margin-bottom: 0;
}
.ttl_cmn_01::after {
  content: attr(data-en);
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 0.55em;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_01::after {
    font-size: 0.69em;
  }
}
.ttl_cmn_01.wht {
  color: #fff;
}

.ttl_cmn_02 {
  display: block;
  font-size: 3.25em;
  font-weight: 500;
  line-height: 1.4;
  color: #1F3A36;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_02 {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
}
.ttl_cmn_02:last-child {
  margin-bottom: 0;
}
.ttl_cmn_02::before {
  content: attr(data-en);
  display: block;
  font-size: 0.54em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_02::before {
    font-size: 0.69em;
    margin-bottom: 10px;
  }
}

.ttl_image {
  margin-bottom: 40px;
}
.ttl_image img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ttl_image img {
    width: 160px;
  }
}

.list_works {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .list_works {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
}
.list_works a {
  display: block;
  position: relative;
  aspect-ratio: 420/312;
  overflow: hidden;
}
.list_works a:hover .text {
  opacity: 1;
}
.list_works a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_works a .cat {
  position: absolute;
  max-width: calc(100% - 36px);
  font-size: 0.75em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  padding: 5px 10px;
  background-color: #F2EEE8;
  border-radius: 20px;
  top: 18px;
  right: 18px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .list_works a .cat {
    max-width: calc(100% - 10px);
    top: 5px;
    right: 5px;
  }
}
.list_works a .text {
  display: grid;
  place-content: center;
  place-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 58, 54, 0.71);
  z-index: 2;
  bottom: 0;
  left: 0;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .list_works a .text {
    display: block;
    opacity: 1;
    height: auto;
    padding: 10px 15px;
  }
}
.list_works a .text .num {
  display: block;
  font-size: 1.375em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .list_works a .text .num {
    font-size: 1.125em;
    text-align: left;
    line-height: 1;
  }
}
.list_works a .text .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25em;
  line-height: 1.6;
  padding: 0 min(3.6vw, 54px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .list_works a .text .ttl {
    font-size: 1em;
    padding: 0;
    text-align: left;
  }
}
.list_works a .text .ttl::after {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .list_works a .text .ttl::after {
    content: none;
  }
}

.list_award {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px min(3.6vw, 54px);
  margin-bottom: 40px;
  text-align: center;
}
.list_award:last-child {
  margin-bottom: 0;
}
.list_award li {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  align-items: start;
  gap: 0;
}
.list_award li:not(:has(.btn_01)) {
  grid-template-rows: auto auto 1fr auto;
}
.list_award li:not(:has(.btn_02)) {
  grid-template-rows: auto auto 1fr auto;
}
.list_award figure {
  display: block;
  aspect-ratio: 37/24;
  margin-bottom: 20px;
}
.list_award figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_award .name {
  font-weight: 500;
  color: #1F3A36;
  line-height: 1.5;
  margin-bottom: 10px;
}
.list_award .result {
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.5;
  color: #1F3A36;
  margin-bottom: 15px;
}
.list_award a {
  display: block;
  position: relative;
  text-align: center;
  width: 300px;
  max-width: 100%;
  background-color: #3A3A3A;
  color: #fff;
  line-height: 42px;
  font-size: 0.9375em;
  letter-spacing: 0.08em;
  margin: 0 auto 15px;
}
.list_award a:hover {
  background-color: #1F3A36;
}
.list_award a:last-child {
  margin-bottom: 0;
}
.list_award a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
.list_award a.btn_02::after {
  width: 10px;
  mask-image: url(../images/ico_blank.svg);
}

.list_blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px min(3.6vw, 54px);
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .list_blog {
    gap: 25px;
  }
}
.list_blog:last-child {
  margin-bottom: 0;
}
.list_blog a {
  display: block;
}
.list_blog a:hover figure::after {
  opacity: 1;
}
.list_blog a:hover img {
  transform: scale(1.05);
}
.list_blog a figure {
  aspect-ratio: 37/24;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .list_blog a figure {
    margin-bottom: 10px;
  }
}
.list_blog a figure::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 58, 54, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
}
.list_blog a figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.list_blog a time {
  display: block;
  font-size: 0.875em;
  font-weight: 500;
  margin-bottom: 5px;
}
.list_blog a p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .list_blog a p {
    font-size: 1em;
  }
}

.list_commercial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .list_commercial {
    grid-template-columns: 1fr;
  }
}
.list_commercial .movie {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 15px;
}
.list_commercial .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.list_commercial p {
  font-weight: 500;
  color: #1F3A36;
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .list_commercial p {
    text-align: left;
    font-size: 0.875em;
  }
}
.list_commercial.archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px min(3.533vw, 53px);
}
@media screen and (max-width: 768px) {
  .list_commercial.archive {
    gap: 25px;
  }
}
.list_commercial.archive li {
  width: calc(33.3333333333% - min(3.533vw, 53px) * 2 / 3);
}
@media screen and (max-width: 768px) {
  .list_commercial.archive li {
    width: 100%;
  }
}

.list_information {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .list_information {
    margin-bottom: 30px;
  }
}
.list_information:last-child {
  margin-bottom: 0;
}
.list_information a {
  display: grid;
  grid-template-columns: 112px 105px 1fr;
  align-items: baseline;
  gap: 5px 18px;
  border-bottom: 1px solid #B9B9B9;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .list_information a {
    display: flex;
    flex-wrap: wrap;
  }
}
.list_information a:hover .ttl {
  text-decoration: underline;
  color: #1F3A36;
}
.list_information a .cat {
  background-color: #F2EEE8;
  text-align: center;
  font-size: 0.8125em;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 5px;
  line-height: 1.5;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .list_information a .cat {
    padding: 0 10px;
  }
}
.list_information a time {
  font-size: 1.25em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .list_information a time {
    font-size: 1em;
  }
}
.list_information a .ttl {
  font-size: 0.9375em;
  transition: 0.5s;
}

.list_voice {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.list_voice li {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: center;
  gap: 20px min(4vw, 60px);
  border-bottom: 1px solid #B9B9B9;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .list_voice li {
    grid-template-columns: 1fr;
    padding: 25px 0;
  }
}
.list_voice li .image {
  aspect-ratio: 548/355;
}
.list_voice li .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_voice li .text {
  line-height: 1.5;
}
.list_voice li .text .num {
  display: inline-block;
  font-weight: 500;
  border-bottom: 1px solid #3A3A3A;
  padding-bottom: 5px;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .list_voice li .text .num {
    font-size: 0.875em;
    margin-bottom: 10px;
  }
}
.list_voice li .text .ttl {
  font-size: 1.75em;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .list_voice li .text .ttl {
    font-size: 1.25em;
    margin-bottom: 15px;
  }
}
.list_voice li .text .factor,
.list_voice li .text .customer {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: baseline;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .list_voice li .text .factor,
  .list_voice li .text .customer {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.list_voice li .text .factor dt,
.list_voice li .text .customer dt {
  font-weight: 500;
  color: #1F3A36;
}
@media screen and (max-width: 768px) {
  .list_voice li .text .factor dt,
  .list_voice li .text .customer dt {
    font-size: 0.875em;
  }
}
.list_voice li .text .factor dd,
.list_voice li .text .customer dd {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
@media screen and (max-width: 768px) {
  .list_voice li .text .factor dd,
  .list_voice li .text .customer dd {
    font-size: 0.875em;
    gap: 5px 8px;
  }
}
.list_voice li .text .factor dd span,
.list_voice li .text .customer dd span {
  display: block;
  padding: 6px 18px;
  background-color: #F7F7F7;
  text-align: center;
  font-size: 0.9375em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .list_voice li .text .factor dd span,
  .list_voice li .text .customer dd span {
    padding: 4px 10px;
  }
}
.list_voice li .text .customer {
  grid-template-columns: 350px 1fr;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .list_voice li .text .customer {
    grid-template-columns: 1fr;
  }
}
.list_voice li .text .customer dd span {
  background-color: #C1A47B;
  color: #fff;
}

.list_reference {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px min(3.6vw, 54px);
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .list_reference {
    gap: 25px;
  }
}
.list_reference:last-child {
  margin-bottom: 0;
}
.list_reference__img {
  display: block;
  aspect-ratio: 37/24;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.list_reference__img:not(figure):hover::before {
  background-color: #fff;
}
.list_reference__img:not(figure):hover::after {
  opacity: 1;
}
.list_reference__img:not(figure):hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .list_reference__img {
    margin-bottom: 10px;
  }
}
.list_reference__img::before {
  content: "";
  position: absolute;
  width: 22px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_img_popup.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}
.list_reference__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 58, 54, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
}
.list_reference__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.list_reference p {
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .list_reference p {
    font-size: 1em;
  }
}

.list_dot {
  margin-left: 0.6em;
}
.list_dot li {
  list-style-type: disc;
  margin-left: 0.5em;
}

.list_staff {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 55px min(3.533vw, 53px);
}
@media screen and (max-width: 768px) {
  .list_staff {
    gap: 30px;
  }
}
.list_staff li img {
  display: block;
  width: 100%;
  aspect-ratio: 37/24;
  object-fit: cover;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .list_staff li img {
    margin-bottom: 15px;
  }
}
.list_staff li strong {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #B9B9B9;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .list_staff li strong {
    font-size: 1.25em;
  }
}
.list_staff li strong::before {
  content: "";
  display: block;
  width: 11px;
  aspect-ratio: 1/1;
  background-color: #3A3A3A;
  border-radius: 50%;
  flex-shrink: 0;
}
.list_staff li .qual {
  font-size: 0.875em;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .list_staff li .qual {
    margin-bottom: 10px;
  }
}
.list_staff li .text {
  font-size: 0.9375em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .list_staff li .text {
    font-size: 0.875em;
  }
}
.list_staff li.last {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px min(3.8vw, 57px);
  grid-column: 1/-1;
}
@media screen and (max-width: 768px) {
  .list_staff li.last {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .list_staff li.last img {
    margin-bottom: 15px;
  }
}
.list_staff li.last .post {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .list_staff li.last .post {
    font-size: 1em;
  }
}
.list_staff li.last .name {
  font-size: 1.875em;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-bottom: 5px;
  border-bottom: 1px solid #B9B9B9;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .list_staff li.last .name {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
}

.list_faq_cat {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px min(2.66vw, 40px);
  width: 960px;
  max-width: 100%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .list_faq_cat {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 40px;
  }
}
.list_faq_cat a {
  display: block;
  position: relative;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 15px 0;
  box-shadow: 0 3px 4px rgba(58, 58, 58, 0.1);
}
@media screen and (max-width: 768px) {
  .list_faq_cat a {
    padding: 10px 0;
    font-size: 0.8125em;
  }
}
.list_faq_cat a:hover {
  box-shadow: 0 9px 12px rgba(58, 58, 58, 0.3);
  transform: translateY(-3px);
}
.list_faq_cat a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  right: 15px;
  top: calc(50% - 4.5px);
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .list_faq_cat a::after {
    width: 10px;
    right: 5px;
  }
}

.list_flow {
  margin-bottom: 80px;
  counter-reset: num;
}
@media screen and (max-width: 768px) {
  .list_flow {
    margin-bottom: 60px;
  }
}
.list_flow__contact {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px min(8vw, 120px);
  margin-top: 40px;
}
.list_flow__contact .tel {
  position: relative;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .list_flow__contact .tel {
    padding: 0 0 30px;
    border: none;
    border-bottom: 1px solid #3A3A3A;
    margin-bottom: 30px;
  }
}
.list_flow__contact .tel::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #3A3A3A;
  top: 0;
  right: calc(min(4vw, 60px) * -1);
}
@media screen and (max-width: 768px) {
  .list_flow__contact .tel::after {
    display: none;
  }
}
.list_flow__contact .tel p {
  color: #3A3A3A;
  text-align: center;
  font-size: 1.375em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .list_flow__contact .tel p {
    font-size: 1em;
  }
}
.list_flow__contact .tel p:last-child {
  margin-bottom: 0;
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .list_flow__contact .tel p:last-child {
    font-size: 0.8125em;
  }
}
.list_flow__contact .tel a {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-size: 3.5em;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Playfair Display", serif;
  line-height: 0.9;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .list_flow__contact .tel a {
    font-size: 2.4375em;
  }
}
.list_flow__contact .tel a::before {
  content: "";
  display: block;
  width: 71px;
  aspect-ratio: 71/41;
  background: url(../images/ico_freedial.svg) no-repeat center/contain;
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  .list_flow__contact .tel a::before {
    width: 49px;
  }
}
@media screen and (max-width: 768px) {
  .list_flow__contact .btn {
    width: 100%;
  }
}
.list_flow__contact .btn a {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .list_flow__contact .btn a {
    margin-bottom: 10px;
  }
}
.list_flow__contact .btn a:last-child {
  margin-bottom: 0;
}
.list_flow__contact .btn_02 {
  width: 100%;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .list_flow__contact .btn_02 {
    margin-top: 10px;
  }
}
.list_flow__contact .btn_02 .btn_cmn_01 {
  background-color: #06C765;
  border-color: #06C765;
}
.list_flow li {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px min(4vw, 60px);
  padding: 80px 0;
  border-top: 1px solid #B9B9B9;
}
@media screen and (max-width: 768px) {
  .list_flow li {
    display: block;
    padding: 35px 0;
  }
}
.list_flow li:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .list_flow li .image {
    margin-bottom: 20px;
  }
}
.list_flow li .image img {
  display: block;
}
.list_flow li .image video {
  width: 100%;
}
.list_flow li .text {
  padding-top: 25px;
  counter-increment: num;
}
@media screen and (max-width: 768px) {
  .list_flow li .text {
    padding-top: 0;
    margin-bottom: 20px;
  }
}
.list_flow li .text::before {
  content: "STEP " counter(num, decimal-leading-zero);
  display: inline-block;
  font-size: 1.0625em;
  color: #1F3A36;
  font-weight: 500;
  border-bottom: 1px solid #1F3A36;
  margin-bottom: 20px;
}
.list_flow li .text h3 {
  font-size: 1.75em;
  font-weight: 500;
  color: #1F3A36;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .list_flow li .text h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .list_flow li .text p {
    font-size: 0.875em;
    line-height: 1.75;
  }
}

.list_exterior_parts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px min(2.66vw, 40px);
}
@media screen and (max-width: 768px) {
  .list_exterior_parts {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.list_exterior_parts a {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 33px;
  align-items: center;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .list_exterior_parts a {
    gap: 20px;
  }
}
.list_exterior_parts a:hover {
  background-color: rgba(31, 58, 54, 0.6);
  color: #fff;
}
.list_exterior_parts a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
.list_exterior_parts a img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .list_exterior_parts a img {
    aspect-ratio: 138/100;
  }
}
.list_exterior_parts a p {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .list_exterior_parts a p {
    font-size: 0.875em;
    padding-right: 40px;
  }
}

.list_reference_cat {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px min(1.33vw, 20px);
  width: 1100px;
  max-width: 100%;
  margin: 0 auto 110px;
}
@media screen and (max-width: 768px) {
  .list_reference_cat {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 40px;
  }
}
.list_reference_cat a {
  display: grid;
  place-content: center;
  position: relative;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 15px 30px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .list_reference_cat a {
    padding: 10px 14px;
    font-size: 0.8125em;
    height: 100%;
  }
}
.list_reference_cat a:hover {
  background-color: #3A3A3A;
  color: #fff;
}
.list_reference_cat a:hover::after {
  background-color: #fff;
}
.list_reference_cat a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  right: 12px;
  top: calc(50% - 4.5px);
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .list_reference_cat a::after {
    width: 10px;
    right: 5px;
  }
}

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

.dlist_faq {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .dlist_faq {
    gap: 20px;
    margin-bottom: 60px;
  }
}
.dlist_faq > dt {
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1.5;
  padding: 20px 40px;
  background-color: #3A3A3A;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .dlist_faq > dt {
    font-size: 1.125em;
    padding: 10px 20px;
  }
}
.dlist_faq > dd {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 min(3vw, 45px);
}
@media screen and (max-width: 768px) {
  .dlist_faq > dd {
    gap: 30px;
    padding: 0;
  }
}
.dlist_faq__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .dlist_faq__item {
    gap: 10px;
  }
}
.dlist_faq__item dt, .dlist_faq__item dd {
  display: flex;
  align-items: baseline;
  position: relative;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .dlist_faq__item dt, .dlist_faq__item dd {
    gap: 15px;
  }
}
.dlist_faq__item dt::before, .dlist_faq__item dd::before {
  content: "Q.";
  display: block;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  width: 60px;
  aspect-ratio: 1/1;
  background-color: #C1A47B;
  color: #fff;
  flex-shrink: 0;
  padding: 10px 0 0 5px;
}
@media screen and (max-width: 768px) {
  .dlist_faq__item dt::before, .dlist_faq__item dd::before {
    width: 40px;
    padding: 8px 0 0 5px;
    font-size: 20px;
  }
}
.dlist_faq__item dt {
  font-size: 1.5em;
  border-bottom: 1px solid #C1A47B;
}
@media screen and (max-width: 768px) {
  .dlist_faq__item dt {
    font-size: 1em;
  }
}
.dlist_faq__item dt p {
  line-height: 1.5;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .dlist_faq__item dt p {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .dlist_faq__item dd {
    align-items: flex-start;
    font-size: 0.875em;
    line-height: 1.75;
  }
}
.dlist_faq__item dd::before {
  content: "A.";
}
@media screen and (max-width: 768px) {
  .dlist_faq__item .answer {
    padding-top: 10px;
  }
}

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

.table_cmn_01 {
  width: 100%;
  border-collapse: separate;
  text-align: left;
  font-size: 1.125em;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .table_cmn_01 {
    display: block;
    width: 100%;
    font-size: 0.875em;
    margin-bottom: 60px;
  }
  .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 {
  vertical-align: top;
  border-bottom: 1px solid #B9B9B9;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .table_cmn_01 th,
  .table_cmn_01 td {
    padding: 0 0 15px;
    line-height: 1.75;
  }
}
.table_cmn_01 th {
  width: 166px;
}
@media screen and (max-width: 768px) {
  .table_cmn_01 th {
    width: 100%;
    border-bottom: none;
    padding: 15px 0 5px;
  }
}

.btn_cmn_01 {
  display: block;
  position: relative;
  width: 300px;
  max-width: 100%;
  line-height: 58px;
  border: 1px solid #1F3A36;
  background-color: #1F3A36;
  text-align: center;
  color: #fff;
  font-size: 0.9375em;
  margin: 0 auto 25px;
}
.btn_cmn_01::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 12/9;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
.btn_cmn_01:hover {
  background-color: #fff;
  color: #1F3A36;
}
.btn_cmn_01:hover::after {
  background-color: #1F3A36;
}
.btn_cmn_01:last-child {
  margin-bottom: 0;
}
.btn_cmn_01.left {
  margin-inline: 0;
}
.btn_cmn_01.lg {
  width: 420px;
}
.btn_cmn_01.wht {
  background-color: #fff;
  border: none;
  color: #3A3A3A;
}
.btn_cmn_01.wht::after {
  background-color: #3A3A3A;
}
.btn_cmn_01.wht:hover {
  background-color: #3A3A3A;
  color: #fff;
}
.btn_cmn_01.wht:hover::after {
  background-color: #fff;
}
.btn_cmn_01.line {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn_cmn_01.line:hover {
  background-color: #fff;
  color: #1F3A36;
}
.btn_cmn_01.line:hover::after {
  background-color: #1F3A36;
}
.btn_cmn_01.line::after {
  width: 32px;
  aspect-ratio: 32/30;
  mask-image: url(../images/ico_line.svg);
  background-color: #fff;
}
.btn_cmn_01.bk {
  background-color: #3A3A3A;
  border: none;
  line-height: 45px;
}
.btn_cmn_01.bk:hover {
  background-color: #1F3A36;
  color: #fff;
}
.btn_cmn_01.bk:hover::after {
  background-color: #fff;
}
.btn_cmn_01.brn {
  background-color: #C1A47B;
  color: #fff;
  border-color: #C1A47B;
}
.btn_cmn_01.brn:hover {
  background-color: #fff;
  color: #C1A47B;
}
.btn_cmn_01.brn:hover::after {
  background-color: #C1A47B;
}

.btn_more {
  display: block;
  position: relative;
  width: 168px;
  line-height: 100px;
  font-size: 1.125em;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .btn_more {
    width: 110px;
    font-size: 0.875em;
    line-height: 55px;
  }
}
.btn_more:hover {
  color: #1F3A36;
  text-decoration: underline;
}
.btn_more:hover::after {
  background-color: #1F3A36;
  right: -5px;
}
.btn_more::after {
  content: "";
  position: absolute;
  width: 96px;
  aspect-ratio: 96/100;
  mask: url(../images/ico_arrow_circle_lg.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .btn_more::after {
    width: 53px;
    top: 54%;
  }
}
.btn_more.sm {
  width: 139px;
  line-height: 80px;
  font-size: 0.875em;
}
@media screen and (max-width: 768px) {
  .btn_more.sm {
    width: 110px;
    line-height: 55px;
  }
}
.btn_more.sm::after {
  width: 80px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .btn_more.sm::after {
    width: 55px;
  }
}

.btn_submit {
  display: block;
  position: relative;
  width: 320px;
  max-width: 100%;
  line-height: 80px;
  border-radius: 40px;
  text-align: center;
  background-color: #1F3A36;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: 0.5s;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .btn_submit {
    width: 280px;
    line-height: 50px;
  }
}
.btn_submit:hover {
  filter: drop-shadow(0 10px 10px rgba(58, 58, 58, 0.5));
  transform: translateY(-3px);
}
.btn_submit:disabled {
  background-color: #A3A3A3;
}
.btn_submit:disabled:hover {
  filter: none;
  transform: none;
}
.btn_submit::after {
  content: "";
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #fff;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.btn_lp {
  display: block;
  position: relative;
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  background-color: #F2EEE8;
  text-align: center;
  font-size: 2em;
  border-radius: 10px;
  padding: 32px 0;
}
@media screen and (max-width: 768px) {
  .btn_lp {
    padding: 15px 0;
    font-size: 0.875em;
  }
}
.btn_lp:hover {
  box-shadow: 0 10px 15px rgba(58, 58, 58, 0.5);
  transform: translateY(-3px);
}
.btn_lp::after {
  content: "";
  position: absolute;
  width: 14px;
  aspect-ratio: 14/11;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.archive_cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 970px;
  max-width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .archive_cat {
    gap: 5px;
    justify-content: flex-start;
  }
}
.archive_cat a {
  display: block;
  font-size: 0.9375em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  padding: 10px 20px;
  background-color: #F2EEE8;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .archive_cat a {
    font-size: 0.875em;
    padding: 5px 10px;
  }
}
.archive_cat a:hover, .archive_cat a.current {
  background-color: #1F3A36;
  color: #fff;
}

.archive_years,
.archive_tag {
  display: grid;
  grid-template-columns: 192px 1fr;
  background-color: #F7F7F7;
  width: 1110px;
  max-width: 100%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .archive_years,
  .archive_tag {
    grid-template-columns: 1fr;
  }
}
.archive_years:last-child,
.archive_tag:last-child {
  margin-bottom: 0;
}
.archive_years dt,
.archive_tag dt {
  background-color: #3A3A3A;
  color: #fff;
  font-size: 1.125em;
  font-family: "Playfair Display", serif;
  text-align: center;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .archive_years dt,
  .archive_tag dt {
    font-size: 1em;
    padding: 5px 0;
  }
}
.archive_years dd,
.archive_tag dd {
  position: relative;
  padding: 10px 25px;
}
@media screen and (max-width: 768px) {
  .archive_years dd,
  .archive_tag dd {
    padding: 10px 15px;
  }
}
.archive_years dd ul,
.archive_tag dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 1em;
  font-size: 0.9375em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .archive_years dd ul,
  .archive_tag dd ul {
    font-size: 0.875em;
    gap: 0.5em;
    line-height: 1.5;
  }
}
.archive_years dd a:hover,
.archive_tag dd a:hover {
  text-decoration: underline;
  color: #1F3A36;
}

.archive_tag__toggle {
  position: absolute;
  width: 31px;
  height: auto;
  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: #B9B9B9;
  right: 12px;
  top: 9px;
  cursor: pointer;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .archive_tag__toggle {
    top: 6px;
  }
}
.archive_tag__toggle:checked {
  background: linear-gradient(#fff 0 0) center/45% 1px no-repeat;
  background-color: #B9B9B9;
}
.archive_tag__toggle:checked + .archive_tag__toggle_area {
  max-height: none;
}
.archive_tag__toggle_area {
  max-height: 2em;
  overflow: hidden;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .archive_tag__toggle_area {
    padding-right: 40px;
  }
}

.archive_keyword_search_form {
  position: relative;
  width: 790px;
  max-width: 100%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .archive_keyword_search_form {
    margin-bottom: 30px;
  }
}
.archive_keyword_search_form input[type=text] {
  display: block;
  width: 100%;
  height: 67px;
  padding: 0 70px 0 20px;
  border: 1px solid #3A3A3A;
  font-family: "Noto Sans JP", sans-serif;
  background-color: transparent;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .archive_keyword_search_form input[type=text] {
    height: 40px;
    padding: 0 60px 0 15px;
    font-size: 0.875em;
  }
}
.archive_keyword_search_form button {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_search.svg) no-repeat center/contain;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .archive_keyword_search_form button {
    right: 5px;
  }
}

.archive_reference_search_form {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .archive_reference_search_form {
    margin-bottom: 40px;
  }
}
.archive_reference_search_form:last-child {
  margin-bottom: 0;
}
.archive_reference_search_form button {
  display: block;
  position: relative;
  width: 500px;
  max-width: 100%;
  line-height: 65px;
  border: 1px solid #3A3A3A;
  background-color: #3A3A3A;
  text-align: center;
  font-size: 0.9375em;
  color: #fff;
  font-family: "Noto Serif", serif;
  border-radius: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .archive_reference_search_form button {
    line-height: 50px;
  }
}
.archive_reference_search_form button::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_search.svg) no-repeat center/contain;
  background-color: #fff;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .archive_reference_search_form button::after {
    right: 10px;
  }
}

.reference_search {
  display: grid;
  grid-template-columns: 235px 1fr;
  background-color: #F7F7F7;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .reference_search {
    grid-template-columns: 1fr;
  }
}
.reference_search:last-child {
  margin-bottom: 0;
}
.reference_search dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3A3A3A;
  color: #fff;
  font-size: 1.125em;
  font-family: "Playfair Display", serif;
  text-align: center;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .reference_search dt {
    font-size: 1em;
    padding: 5px 0;
  }
}
.reference_search dd {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .reference_search dd {
    padding: 15px;
    gap: 2px 10px;
  }
}
.reference_search dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
}
@media screen and (max-width: 768px) {
  .reference_search dd ul {
    gap: 5px 10px;
  }
}
.reference_search dd ul[hidden] {
  display: none;
}
.reference_search dd ul input {
  display: none;
}
.reference_search dd ul input:checked + span::after {
  opacity: 1;
}
.reference_search dd ul span {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .reference_search dd ul span {
    font-size: 0.8125em;
    gap: 3px;
  }
}
.reference_search dd ul span::before {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  border: 1px solid #B9B9B9;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .reference_search dd ul span::before {
    width: 20px;
  }
}
.reference_search dd ul span::after {
  content: "";
  position: absolute;
  width: 23px;
  aspect-ratio: 23/17;
  background: url(../images/ico_check.svg) no-repeat center/contain;
  left: 3px;
  top: 5px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .reference_search dd ul span::after {
    width: 17px;
  }
}

.add_ttl {
  display: block;
  font-size: 1.5em;
  line-height: 1.5;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .add_ttl {
    font-size: 1.25em;
    margin-top: 30px;
  }
}
.add_ttl:first-child {
  margin-top: 0;
}

.post_content {
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .post_content {
    font-size: 0.875em;
  }
}
.post_content p {
  margin-top: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .post_content p {
    margin-top: 15px;
  }
}
.post_content p:first-child {
  margin-top: 0;
}
.post_content img {
  display: block;
  margin-top: 20px;
}
.post_content img:first-child {
  margin-top: 0;
}
.post_content .add_link {
  padding-bottom: 6px;
  background: linear-gradient(to bottom, transparent calc(100% - 1px), #3A3A3A calc(100% - 1px));
}
.post_content .add_link:hover {
  opacity: 0.7;
}
.post_content .table_parent {
  margin-top: 20px;
}
.post_content .table_parent:first-child {
  margin-top: 0;
}
.post_content table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .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 #1F3A36;
}
@media screen and (max-width: 768px) {
  .post_content table td {
    font-size: 0.875em;
    padding: 10px 15px;
  }
}
.post_content table td:first-child {
  background-color: #A3EBD9;
  font-weight: 700;
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------------------------------------------------------------------- */
.bg_parallax {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .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%;
  object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* wp-pagenavi
---------------------------------------------------------------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    justify-content: flex-start;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: grid;
  place-content: center;
  width: 45px;
  aspect-ratio: 1/1;
  background-color: #B9B9B9;
  color: #1F3A36;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 35px;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  background-color: #C1A47B;
}
.wp-pagenavi a.extend, .wp-pagenavi a.first, .wp-pagenavi a.last,
.wp-pagenavi span.extend,
.wp-pagenavi span.first,
.wp-pagenavi span.last {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  color: #1F3A36;
}
.wp-pagenavi a.extend::after, .wp-pagenavi a.first::after, .wp-pagenavi a.last::after,
.wp-pagenavi span.extend::after,
.wp-pagenavi span.first::after,
.wp-pagenavi span.last::after {
  content: none;
}

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

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

/* パンくず
---------------------------------------------------------------------------------------------------------------------- */
#list_breadcrumb {
  background-color: #3A3A3A;
  font-size: 0.9375em;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  #list_breadcrumb {
    font-size: 0.75em;
    overflow-x: scroll;
    padding: 10px 0;
  }
}
#list_breadcrumb .inner_lg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #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_lg a, #list_breadcrumb .inner_lg span {
  color: #fff;
}
#list_breadcrumb .inner_lg a.home, #list_breadcrumb .inner_lg span.home {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 7px;
}
#list_breadcrumb .inner_lg a.home::before, #list_breadcrumb .inner_lg span.home::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../images/ico_home.svg) no-repeat center/contain;
}

/* swiper-common
---------------------------------------------------------------------------------------------------------------------- */
.swiper-button {
  width: 54px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow.svg) no-repeat center/12px auto;
  background-color: #fff;
  filter: drop-shadow(0 0 1px rgba(58, 58, 58, 0.5));
  border-radius: 50%;
  margin: 0;
  top: calc(50% - 35px);
}
@media screen and (max-width: 768px) {
  .swiper-button {
    width: 40px;
  }
}
.swiper-button::after {
  content: none;
}
.swiper-button-prev {
  transform: rotate(180deg);
  left: -50px;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: calc(var(--sideW) * -1);
  }
}
.swiper-button-next {
  right: -50px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: calc(var(--sideW) * -1);
  }
}
.swiper-button.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  position: static;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .swiper-pagination {
    gap: 10px;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 78px;
  height: 3px;
  background-color: #F2EEE8;
  border-radius: 0;
  margin: 0 !important;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
  }
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1F3A36;
}

/* その他
---------------------------------------------------------------------------------------------------------------------- */
.catch {
  display: block;
  font-size: 1.75em;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  color: #1F3A36;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .catch {
    font-size: 1.25em;
    margin-bottom: 30px;
  }
}
.catch.left {
  text-align: left;
}
.catch.lg {
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  .catch.lg {
    font-size: 1.5em;
  }
}

.catch_02 {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.4;
  color: #C1A47B;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .catch_02 {
    font-size: 1.125em;
  }
}

.lead {
  text-align: center;
  font-size: 0.9375em;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .lead.sp_center {
    text-align: center;
  }
}
.lead.wht {
  color: #fff;
}
.lead.lg {
  font-size: 1.125em;
}
@media screen and (max-width: 768px) {
  .lead.lg {
    font-size: 1em;
  }
}
.lead.lg small {
  display: block;
  font-size: 0.77em;
}

/* アーカイブのページネーション
---------------------------------------------------------------------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #3A3A3A;
  border-bottom: 1px solid #3A3A3A;
  padding: 30px 0 20px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 768px) {
  .list_pagination {
    padding: 15px 0;
    gap: 15px;
    justify-content: center;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination li {
  width: calc(50% - 50px);
}
@media screen and (max-width: 768px) {
  .list_pagination li {
    width: 100%;
  }
}
.list_pagination li.prev a, .list_pagination li.next a {
  display: inline-block;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 65px;
}
@media screen and (max-width: 768px) {
  .list_pagination li.prev a, .list_pagination li.next a {
    padding: 0 45px;
    font-size: 0.875em;
  }
}
.list_pagination li.prev a::before, .list_pagination li.next a::before {
  content: "";
  position: absolute;
  width: 45px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  background-color: #3A3A3A;
  top: calc(50% - 22.5px);
}
@media screen and (max-width: 768px) {
  .list_pagination li.prev a::before, .list_pagination li.next a::before {
    width: 30px;
    top: calc(50% - 15px);
  }
}
.list_pagination li.prev a:hover, .list_pagination li.next a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .list_pagination li.prev {
    order: 1;
  }
}
.list_pagination li.prev a::before {
  transform: rotate(180deg);
  left: 0;
}
.list_pagination li.next {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .list_pagination li.next {
    order: 2;
  }
}
.list_pagination li.next a {
  text-align: left;
}
.list_pagination li.next a::before {
  right: 0;
}
.list_pagination li.list {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .list_pagination li.list {
    order: 3;
  }
}
.list_pagination li.list a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .list_pagination li.list a {
    font-size: 0.875em;
  }
}
.list_pagination li.list a::before {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, #3A3A3A 1px, transparent 1px, transparent calc(100% - 1px), #3A3A3A 1px);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .list_pagination li.list a::before {
    width: 50px;
    height: 12px;
    margin-bottom: 5px;
  }
}

/* フォームパーツ
---------------------------------------------------------------------------------------------------------------------- */
.dlist_form_contact {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
  margin-bottom: var(--space);
}
@media screen and (max-width: 768px) {
  .dlist_form_contact {
    gap: 20px 0;
  }
}
.dlist_form_contact .item {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .item {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #3A3A3A;
  }
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .item:last-child {
    border-bottom: 0 none;
    padding-bottom: 0;
  }
}
.dlist_form_contact .item strong {
  text-align: center;
  font-size: 1.375em;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .item strong {
    font-size: 1.125em;
  }
}
.dlist_form_contact .tel {
  border-right: 1px solid #3A3A3A;
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .tel {
    border-right: 0 none;
  }
}
.dlist_form_contact .tel a {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-size: 3.5em;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Playfair Display", serif;
  line-height: 0.9;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .tel a {
    font-size: 2.1em;
  }
}
.dlist_form_contact .tel a::before {
  content: "";
  display: block;
  width: 71px;
  aspect-ratio: 71/41;
  background: url(../images/ico_freedial.svg) no-repeat center/contain;
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .tel a::before {
    width: 49px;
  }
}
.dlist_form_contact .tel p {
  line-height: 1.5;
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .tel p {
    font-size: 0.8125em;
  }
}
.dlist_form_contact .line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 13px;
}
.dlist_form_contact .line strong {
  width: 100%;
}
.dlist_form_contact .line .icon {
  display: flex;
  align-items: center;
  gap: 9px;
}
.dlist_form_contact .line .icon li:first-child {
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  width: 46px;
  aspect-ratio: 46/44;
  mask: url(../images/ico_line.svg) no-repeat center/contain;
  background-color: #04C765;
}
.dlist_form_contact .line p {
  text-align: left;
  font-size: 0.875em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .line p {
    width: 100%;
    font-size: 0.8125em;
  }
}
.dlist_form_contact .line p a {
  text-decoration: underline;
}
.dlist_form_contact .line p a:hover {
  text-decoration: none;
}
.dlist_form_contact .reserve {
  width: 100%;
}
.dlist_form_contact .reserve a {
  display: block;
  position: relative;
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: #1F3A36;
  border-radius: 10px;
  padding: 22px 0;
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .reserve a {
    padding: 15px 0;
    font-size: 0.875em;
  }
}
.dlist_form_contact .reserve a:hover {
  box-shadow: 0 10px 15px rgba(58, 58, 58, 0.5);
  transform: translateY(-3px);
}
.dlist_form_contact .reserve a::after {
  content: "";
  position: absolute;
  width: 14px;
  aspect-ratio: 14/11;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.dlist_form_contact .reserve a span {
  display: block;
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  .dlist_form_contact .reserve a span {
    font-size: 1.625em;
  }
}

.contact_wrap .ttl_top_02 {
  margin-bottom: 55px;
  padding-bottom: 30px;
  border-bottom: 1px solid #B9B9B9;
}
@media screen and (max-width: 768px) {
  .contact_wrap .ttl_top_02 {
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
}
.contact_wrap .ttl_top_02::before {
  line-height: 1;
}
.contact_wrap__in {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 45px;
}
.contact_wrap details {
  margin-bottom: 35px;
}
.contact_wrap details[open] summary::after {
  transform: rotate(-90deg);
}
.contact_wrap details summary {
  position: relative;
  font-size: 1.25em;
  line-height: 1.5;
  padding: 18px 0;
  background-color: #1F3A36;
  color: #fff;
  list-style: none;
  cursor: pointer;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact_wrap details summary {
    font-size: 1em;
    padding: 12px 0;
  }
}
.contact_wrap details summary::-webkit-details-marker {
  display: none;
}
.contact_wrap details summary::after {
  content: "";
  position: absolute;
  width: 14px;
  aspect-ratio: 14/11;
  mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 22px;
  top: calc(50% - 5.5px);
  transform: rotate(90deg);
}
.contact_wrap details .dlist_form {
  margin-top: 35px;
}
.contact_wrap details .dlist_form .item > dt {
  border-bottom: 1px solid #3A3A3A;
  padding-bottom: 8px;
}
.contact_wrap details .dlist_form dd .wpcf7-radio,
.contact_wrap details .dlist_form dd .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.contact_wrap details .dlist_form dd .wpcf7-radio .wpcf7-list-item,
.contact_wrap details .dlist_form dd .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}

.dlist_form {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .dlist_form {
    gap: 25px;
    margin-bottom: 30px;
  }
}
.dlist_form:last-child {
  margin-bottom: 0;
}
.dlist_form .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .dlist_form .item {
    gap: 10px;
  }
}
.dlist_form dt {
  font-size: 1.125em;
  line-height: 1.5;
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  color: #ED0000;
  font-size: 0.75em;
  font-weight: 500;
}
.dlist_form dd .zip2 {
  margin-top: 20px;
}
.dlist_form dd .price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.dlist_form dd .price .wpcf7-form-control-wrap {
  width: 200px;
}
.dlist_form dd [data-name=any-06] .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
@media screen and (max-width: 768px) {
  .dlist_form dd [data-name=any-06] .wpcf7-checkbox {
    gap: 8px 15px;
  }
}
.dlist_form dd [data-name=any-06] .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.dlist_form dd [data-name=any-06] .has-free-text {
  display: flex;
  align-items: center;
  gap: 10px 25px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .dlist_form dd [data-name=any-06] .has-free-text {
    gap: 8px 15px;
  }
}
.dlist_form dd [data-name=any-06] .has-free-text label {
  flex-shrink: 0;
}

.dlist_form__child {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.dlist_form__child .group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .dlist_form__child .group {
    font-size: 0.8125em;
    gap: 0 10px;
  }
}
.dlist_form__child .group input.any-01-date {
  position: relative;
  width: 310px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .dlist_form__child .group input.any-01-date {
    width: auto;
    padding-right: 15px;
  }
}
.dlist_form__child .group input.any-01-year {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .dlist_form__child .group input.any-01-year {
    width: 120px;
  }
}
.dlist_form__child .group dd {
  display: flex;
  align-items: center;
  gap: 15px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  line-height: 1.5;
  border: 1px solid #3A3A3A;
  color: #3A3A3A;
  text-align: left;
}
@media screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  select,
  textarea {
    font-size: 1.6rem;
    padding: 10px 13px;
  }
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ADADAD;
}

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

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

.wpcf7-form-control-wrap:has(#zip, #zip2) {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  align-items: center;
  margin-bottom: 15px;
}
.wpcf7-form-control-wrap:has(#zip, #zip2)::before {
  content: "〒";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap:has(#zip, #zip2)::before {
    left: 10px;
  }
}
.wpcf7-form-control-wrap:has(#zip, #zip2)::after {
  content: "※郵便番号を入力すると、自動で住所が入力されます";
  display: block;
  font-size: 0.875em;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap:has(#zip, #zip2)::after {
    content: none;
  }
}

#zip, #zip2 {
  width: 310px;
  padding: 20px 0 20px 55px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #zip, #zip2 {
    width: 200px;
    padding: 10px 0 10px 40px;
  }
}

.contact_privacy_wrap {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact_privacy_wrap {
    margin-bottom: 25px;
  }
}
.contact_privacy_wrap strong {
  display: block;
  font-size: 1.125em;
  font-weight: 400;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .contact_privacy_wrap strong {
    font-size: 1em;
  }
}
.contact_privacy_wrap p {
  font-size: 0.9375em;
}
@media screen and (max-width: 768px) {
  .contact_privacy_wrap p {
    font-size: 0.875em;
  }
}
.contact_privacy_wrap p a {
  text-decoration: underline;
}
.contact_privacy_wrap p a:hover {
  text-decoration: none;
}

.wpcf7-checkbox,
.wpcf7-radio,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 12px;
}
@media screen and (max-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item,
  .wpcf7-radio .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item {
    break-inside: avoid;
    margin-bottom: 0;
  }
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-radio .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-radio .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-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 0.875em;
    gap: 5px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  border: 1px solid #3A3A3A;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
    width: 20px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 23px;
  aspect-ratio: 23/17;
  background: url(../images/ico_check.svg) no-repeat center/contain;
  left: 3px;
  top: 6px;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    width: 17px;
  }
}

[data-name=doui] {
  display: block;
  margin-bottom: 50px;
}
[data-name=doui] .wpcf7-acceptance {
  display: flex;
  justify-content: center;
  text-align: center;
}
[data-name=doui] .wpcf7-acceptance .wpcf7-list-item {
  padding: 0;
}
@media screen and (max-width: 768px) {
  [data-name=doui] .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 1em;
  }
}
[data-name=doui] .wpcf7-acceptance a {
  text-decoration: underline;
  color: #1F3A36;
}
[data-name=doui] .wpcf7-acceptance a:hover {
  text-decoration: none;
}

.dlist_policy_01 {
  counter-reset: num;
}
.dlist_policy_01:last-child {
  margin-bottom: 0;
}
.dlist_policy_01 > dt {
  counter-increment: num;
  font-size: 1.75em;
  font-weight: 500;
  color: #1F3A36;
  line-height: 1.5;
  padding-bottom: 15px;
  border-bottom: 1px solid #B9B9B9;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .dlist_policy_01 > dt {
    font-size: 1.125em;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}
.dlist_policy_01 > dt::before {
  content: counter(num) ". ";
  display: inline-block;
}
.dlist_policy_01 > dd {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .dlist_policy_01 > dd {
    margin-bottom: 40px;
    font-size: 0.875em;
  }
}
.dlist_policy_01 > dd:last-child {
  margin-bottom: 0;
}

.dlist_policy_02 {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .dlist_policy_02 {
    margin-top: 15px;
  }
}
.dlist_policy_02 dt::before {
  content: "●";
}

.dlist_policy_03 {
  margin: 25px 0;
}
@media screen and (max-width: 768px) {
  .dlist_policy_03 {
    margin: 15px 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

/* wpデフォルトクラス
---------------------------------------------------------------------------------------------------------------------- */
.wp-block-image img,
.entry-content img {
  max-width: 100%;
  height: auto;
}

.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

.aligncenter {
  display: block;
  margin: 0 auto 1.5em;
}

.alignnone {
  margin: 0 0 1.5em;
}

@media screen and (max-width: 768px) {
  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin: 0 auto 1.5em;
  }
}