@charset "UTF-8";
/*-----------------------------------------
    Color
-----------------------------------------*/
/*-----------------------------------------
    font-family
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jacques+Francois&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap)");
/*-----------------------------------------
    Reset
-----------------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/*-----------------------------------------
    font-size
-----------------------------------------*/
/*-----------------------------------------
    Width
-----------------------------------------*/
/*-----------------------------------------
    Height
-----------------------------------------*/
/*-----------------------------------------
    z-index
-----------------------------------------*/
/*-----------------------------------------
    Mixin
-----------------------------------------*/
/*-----------------------------------------
    スマホでhover無効化
-----------------------------------------*/
* {
  line-height: 1.8;
  scroll-behavior: smooth;
}

/*** フェードインzアニメーション  ***/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*** スローズームアニメーション ***/
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/*** 連続ズームアニメーション ***/
@keyframes continuousZoom {
  0% {
    transform: scale(1);
  }
  95% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.1);
  }
}
body {
  background-color: #FCFCFC;
  animation: fadeIn 3s forwards;
  font-family: "Noto Serif JP", serif;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h2 {
  font-weight: 400;
  line-height: 1.4;
  font-family: "Jacques Francois", serif;
}

h3 {
  color: #231815;
  font-weight: 500;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
}

p {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  font-weight: 400;
}

span {
  font-weight: 400;
}

li {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
}

button {
  font-weight: 400;
  letter-spacing: 0.1rem;
}

dt {
  font-weight: 400;
}

.pc-br {
  display: none;
}
@media screen and (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 480px) {
  .sp {
    display: none;
  }
}

.contents-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: opacity 2s, visibility 2s, transform 1.5s ease;
}
.contents-hidden.fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.contents-hidden_out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s, visibility 1s;
  will-change: opacity, visibility;
}
.contents-hidden_out.fadein {
  opacity: 1;
  visibility: visible;
}

.contents-hidden_blur {
  opacity: 0;
  visibility: hidden;
  -ms-filter: blur(10px);
  filter: blur(10px);
  transition: opacity 1.5s, visibility 1.5s, filter 2s;
}
.contents-hidden_blur.fadein {
  opacity: 1;
  visibility: visible;
  -ms-filter: blur(0);
  filter: blur(0);
}

.hide {
  transition: all 0.3s ease;
  transform: translateY(-100%); /* 上に消えるようにする */
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-up-trigger {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.8s, transform 0.8s ease-out;
}
.fade-up-trigger.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-group .fade-up-trigger:nth-child(1) {
  transition-delay: 0.2s;
}
.fade-up-group .fade-up-trigger:nth-child(2) {
  transition-delay: 0.4s;
}
.fade-up-group .fade-up-trigger:nth-child(3) {
  transition-delay: 0.6s;
}
.fade-up-group .fade-up-trigger:nth-child(4) {
  transition-delay: 0.8s;
}
.fade-up-group .fade-up-trigger:nth-child(5) {
  transition-delay: 1s;
}
.fade-up-group .fade-up-trigger:nth-child(6) {
  transition-delay: 1.2s;
}
.fade-up-group .fade-up-trigger:nth-child(7) {
  transition-delay: 1.4s;
}
.fade-up-group .fade-up-trigger:nth-child(8) {
  transition-delay: 1.6s;
}
.fade-up-group .fade-up-trigger:nth-child(9) {
  transition-delay: 1.8s;
}
.fade-up-group .fade-up-trigger:nth-child(10) {
  transition-delay: 2s;
}

.fade-up {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.3s;
}
.fade-in.fade-in-delay {
  animation-delay: 0.8s;
}
.fade-in.fade-in-fast {
  animation: fadeIn 0.4s ease forwards;
  animation-delay: 0.1s;
}

/* ===============================================
# header
=============================================== */
.header.header-black .header__logo .logo-black,
.header.page-header-black .header__logo .logo-black {
  position: relative;
  opacity: 1;
  top: 0;
  left: 0;
}
.header.header-black .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup,
.header.page-header-black .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup {
  color: #231815;
  transition: 0.3s;
}
.header.header-black .header-nav__wrapper .header-nav__list .header-nav__list-child,
.header.page-header-black .header-nav__wrapper .header-nav__list .header-nav__list-child {
  color: #231815;
  transition: 0.3s;
}
.header.header-black .header-nav__wrapper .header-nav__list .dli-chevron-down,
.header.page-header-black .header-nav__wrapper .header-nav__list .dli-chevron-down {
  color: #231815;
  transition: 0.3s;
}
.header.header-black .header-nav__wrapper .openbtn span:nth-of-type(1),
.header.page-header-black .header-nav__wrapper .openbtn span:nth-of-type(1) {
  background: #231815;
}
.header.header-black .header-nav__wrapper .openbtn span:nth-of-type(2),
.header.page-header-black .header-nav__wrapper .openbtn span:nth-of-type(2) {
  background: #231815;
}
.header.header-black .header-nav__wrapper .openbtn span:nth-of-type(3),
.header.page-header-black .header-nav__wrapper .openbtn span:nth-of-type(3) {
  background: #231815;
}
.header.header-black .header-nav__wrapper .openbtn.active span,
.header.page-header-black .header-nav__wrapper .openbtn.active span {
  background-color: #FEFEFE;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
  height: 6rem;
}
.header .header__logo {
  margin-right: 2rem;
  position: relative;
  width: 12rem;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .header .header__logo {
    width: 18rem;
    height: 4rem;
  }
}
.header .header__logo .logo-white {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  opacity: 1;
  width: 100%;
}
.header .header__logo .logo-white.hide {
  opacity: 0;
}
.header .header__logo .logo-black {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}
.header .header__logo .logo-black.active {
  opacity: 1;
}
.header .header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-nav__wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header .header-nav__wrapper .header-nav__lists {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header .header-nav__wrapper .header-nav__lists {
    display: flex;
    gap: 2rem;
  }
}
.header .header-nav__wrapper .header-nav__list {
  position: relative;
  transition: all 0.3s;
  display: flex;
  color: #FCFCFC;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup {
  color: #FEFEFE;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child {
  cursor: pointer;
  font-size: 0.875rem;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child:not(.header-nav__list--dropdown .header .header-nav__wrapper .header-nav__list .header-nav__list-child) {
  overflow: hidden;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span {
  display: inline-block;
  transition: all 0.3s ease;
  font-size: clamp(0.75rem, -0.5rem + 2vw, 1rem);
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span:first-child {
  transform: translateY(0);
  opacity: 1;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span:last-child {
  position: absolute;
  transform: translateY(100%);
  opacity: 0;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span.dli-chevron-down {
  margin-left: 0.5rem;
  opacity: 1;
  transform: translateY(0);
  position: static;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child:hover span:first-child {
    transform: translateY(-100%);
    opacity: 0;
  }
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child:hover span:last-child {
    transform: translateY(0);
    opacity: 1;
  }
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.8rem;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup:hover + .header-nav-dropdown__lists {
    visibility: visible;
    opacity: 1;
  }
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child--dropdown {
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child--dropdown:hover .header-nav-dropdown__lists {
    visibility: visible;
    opacity: 1;
  }
}
.header .header-nav__wrapper .openbtn {
  position: relative;
  cursor: pointer;
  width: 4rem;
  height: 4.625rem;
  z-index: 1900;
  transform: scale(0.75);
}
@media screen and (min-width: 1024px) {
  .header .header-nav__wrapper .openbtn {
    transform: scale(1);
  }
}
.header .header-nav__wrapper .openbtn span {
  display: inline-block;
  transition: all 0.3s; /*アニメーションの設定*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 0.1rem;
  background: #FCFCFC;
  width: 100%;
}
.header .header-nav__wrapper .openbtn span:nth-of-type(1) {
  top: 1.6rem;
}
.header .header-nav__wrapper .openbtn span:nth-of-type(2) {
  top: 2.3rem;
  width: 2.5rem;
  left: auto;
  right: -1.25rem;
}
.header .header-nav__wrapper .openbtn span:nth-of-type(3) {
  top: 3rem;
}
.header .header-nav__wrapper .openbtn.active span {
  background-color: #FEFEFE;
}
.header .header-nav__wrapper .openbtn.active span:nth-of-type(1) {
  top: 2.3rem;
  transform: translate(-50%, 0) rotate(15deg);
}
.header .header-nav__wrapper .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .header-nav__wrapper .openbtn.active span:nth-of-type(3) {
  top: 2.3rem;
  transform: translate(-50%, 0) rotate(-15deg);
}
.header .header-nav__wrapper .header-nav-dropdown__lists {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 3rem;
  right: -50%;
  background-color: #FCFCFC;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  min-width: 28rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav-dropdown__lists:hover {
    visibility: visible;
    opacity: 1;
  }
}
.header .header-nav__wrapper .header-nav-dropdown__list {
  width: 12rem;
}
.header .header-nav__wrapper .header-nav-dropdown__list a {
  display: block;
  text-decoration: none;
  color: #231815;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-info {
  padding-top: 0.5rem;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-info .dropdown-title {
  font-weight: 600;
  line-height: 1.4;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-info .dropdown-slug {
  display: block;
  font-size: 0.75rem;
  color: #ADADAD;
}
.header .header-nav__wrapper .dli-chevron-down {
  transition: transform 0.3s ease;
}
.header .header-nav__wrapper .header__sns-link {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header .header-nav__wrapper .header__sns-link svg {
  width: 20px;
  height: 20px;
  fill: #FCFCFC;
}
.header .header-nav__wrapper .header__sns-link svg path {
  fill: #FCFCFC;
}
.header .header-black {
  background-color: #231815;
}
.header .header-g-nav {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: -640px;
  max-width: 640px;
  height: 100vh;
  opacity: 0;
  display: flex;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
.header .header-g-nav.panelactive {
  opacity: 1;
  right: 0;
  pointer-events: auto;
  transition: 0.3s ease-in-out;
}
.header .header-g-nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in;
  z-index: -1;
}
.header .header-g-nav.panelactive::before {
  opacity: 1;
  pointer-events: auto;
}
.header .header-g-nav .header-g-nav-list {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100vh;
  background-color: #FAFAFA;
  overflow: auto;
  -ms-overflow-scrolling: touch;
}
.header .header-g-nav li.header-g-nav-list_sns {
  display: flex;
}
.header .header-g-nav .header-g-nav-list ul {
  background-color: #FAFAFA;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  padding: 0 20px 60px;
}
.header .header-g-nav__lists {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  color: #FCFCFC;
}
.header .header-g-nav__lists .header-g-nav__list {
  display: flex;
}
.header .header-g-nav__lists .header-g-nav__list img {
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-g-nav__lists .header-g-nav__list svg {
  fill: #231815;
  width: 1.5rem;
  transition: fill 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-g-nav__lists .header-g-nav__list svg:hover {
    opacity: 0.7;
  }
}
.header .menu__wrapper {
  background-color: #231815;
  width: 100vw;
  padding: 7.5rem 4%;
  overflow-y: scroll;
}
@media screen and (min-width: 1024px) {
  .header .menu__wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 7.5rem 6vw;
    max-width: 640px;
  }
}
.header .menu__wrapper .menu__inner-request {
  width: 100%;
  padding-bottom: 3rem;
}
.header .menu__wrapper .menu__inner-request ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .header .menu__wrapper .menu__inner-request ul {
    justify-content: start;
  }
}
.header .menu__wrapper .menu__inner-request .menu__item-request {
  width: 100%;
  max-width: 20rem;
}
@media screen and (min-width: 768px) {
  .header .menu__wrapper .menu__inner-request .menu__item-request {
    max-width: 20rem;
  }
}
.header .menu__wrapper .menu__inner-request .menu__item-request .contact {
  background-color: #8F0B09;
}
.header .menu__wrapper .menu__inner-request .menu__item-request .consultation {
  background-color: #231815;
}
.header .menu__wrapper .menu__inner-request .menu__item-request a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 2.5rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu__wrapper .menu__inner-request .menu__item-request a:hover {
    opacity: 0.8;
  }
}
.header .menu__wrapper .menu__inner-request .menu__item-request a svg {
  width: 1.25rem;
  height: auto;
  color: #FCFCFC;
}
.header .menu__wrapper .menu__inner-request .menu__item-request a p {
  color: #FCFCFC;
  font-size: 0.875rem;
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu__wrapper .menu__inner-request .menu__item-request a:hover .arrow-right.initial {
    transform: translateX(200%);
  }
  .header .menu__wrapper .menu__inner-request .menu__item-request a:hover .arrow-right.hover {
    transform: translateX(0);
  }
}
.header .menu__wrapper .menu__inner {
  width: 100%;
}
.header .menu__wrapper .menu__inner .menu__item {
  padding: 1.25rem 0.5rem;
  border-bottom: 0.025rem solid #544e4e;
}
.header .menu__wrapper .menu__inner .menu__item a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu__wrapper .menu__inner .menu__item a:hover {
    opacity: 0.7;
  }
}
.header .menu__wrapper .menu__inner .menu__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #FCFCFC;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-text p {
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-text span {
  font-size: 0.75rem;
  color: #C1C1C1;
  font-family: "Jacques Francois", serif;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-children {
  margin-top: 0.5rem;
  padding-left: 0;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-children .menu__item-child {
  position: relative;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-children .menu__item-child a {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  padding: 0.25rem 0;
  color: #FCFCFC;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-children .menu__item-child::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.03rem;
  vertical-align: middle;
  background-color: #FEFEFE;
  margin-right: 0.5rem;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-children .menu__item-child a {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  width: auto;
  display: inline;
}

.color-change-hover a {
  transition: color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .color-change-hover a:hover {
    color: #4e423e;
  }
  .color-change-hover a:hover svg {
    color: #4e423e;
  }
}
.color-change-hover svg {
  transition: color 0.2s ease-in-out;
}

.opacity-hover a {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .opacity-hover a:hover {
    opacity: 0.6;
  }
}

.img-hover .item-title {
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .img-hover:hover .item-title {
    color: #4e423e;
  }
  .img-hover:hover .thumbnail::after {
    opacity: 0.3;
  }
  .img-hover:hover .thumbnail img {
    transform: scale(1.05);
  }
}
.img-hover .thumbnail {
  aspect-ratio: 4/3;
  background-color: #FEFEFE;
  overflow: hidden;
  position: relative;
}
.img-hover .thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.img-hover .thumbnail img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #FCFCFC;
  line-height: 1;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.65rem;
  border: 0.1rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.underline {
  border-bottom: 0.8px solid #231815;
}

.icon-wrap {
  position: absolute;
  right: 3rem;
  top: 45%;
  transform: translateY(-50%);
  width: 1.5rem;
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.icon:before,
.icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #231815;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 0.1rem;
  transform: translate(-50%, -50%);
}

/* そのうち1本を縦にする */
.icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* プラスアイコンクリック後、マイナスにする */
.icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.eachTextAnime span {
  opacity: 0; /* 初期状態で透明 */
  visibility: hidden; /* 完全に非表示 */
  display: inline-block; /* 必須: アニメーション時に要素が崩れないように */
}

.eachTextAnime.appeartext span {
  visibility: visible; /* 表示可能に */
  animation: text_anime_on 1s ease-out forwards; /* アニメーション適用 */
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dots {
  background-image: radial-gradient(circle at center, #8F0B09 15%, transparent 15%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.4em; /* 縦方向の位置調整 */
}

.accent-color {
  color: #8F0B09;
  font-weight: 600;
  font-size: 110%;
}

.accent-circle {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding: 0.1rem 1rem 0.2rem;
  border-radius: 2.5rem;
  background-color: #231815;
  color: #FCFCFC;
  letter-spacing: 0.1rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

/* ===============================================
# top-view
=============================================== */
@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  49% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.top-view__wrapper {
  overflow: hidden;
  top: 0;
  z-index: -1000;
  width: 100%;
  height: calc(100vh - 90px);
  position: relative;
}
@media screen and (min-width: 480px) {
  .top-view__wrapper {
    height: 100vh;
  }
}
.top-view__wrapper .first-view__slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-view__wrapper .first-view__slide_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: -1000;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-name: slideAnime;
  animation-timing-function: ease;
}
.top-view__wrapper .first-view__slide_item:nth-child(2) {
  animation-delay: 5s;
}
.top-view__wrapper .first-view__slide_item:nth-child(3) {
  animation-delay: 10s;
}
.top-view__wrapper .top-view__inner {
  position: absolute;
  bottom: 8%;
  left: 4%;
  color: #FEFEFE;
  letter-spacing: 5px;
  z-index: 1000;
}
.top-view__wrapper .top-view__inner h1 {
  font-size: clamp(1.5rem, 0.75rem + 2.4vw, 2.25rem);
  line-height: 1.6;
  white-space: nowrap;
}
.top-view__wrapper .top-view__inner .top-view__item-title {
  font-size: clamp(2rem, -0.5rem + 8vw, 4.5rem);
  letter-spacing: -0.1rem;
}
@media screen and (min-width: 768px) {
  .top-view__wrapper .top-view__inner .top-view__item-title {
    letter-spacing: 0;
  }
}
.top-view__wrapper .top-view__inner .top-view__item-cp {
  color: #FCFCFC;
  letter-spacing: 0.15rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  margin-top: clamp(1.5rem, 1rem + 1.6vw, 2rem);
  line-height: 2;
  position: relative;
}
.top-view__wrapper .top-view_hidden {
  opacity: 0; /* 非表示 */
  visibility: hidden; /* レイアウトから除外 */
  transition: opacity 0.5s ease, visibility 0.5s ease; /* スムーズなフェードイン */
}
.top-view__wrapper .top-view_visible {
  opacity: 1; /* 表示 */
  visibility: visible; /* レイアウトに含む */
}

.first-view__slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.first-view__slide .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.first-view__slide .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
  animation: continuousZoom 16s infinite;
}
.first-view__slide .swiper-slide.swiper-slide-active img {
  animation: continuousZoom 16s infinite;
}
.first-view__slide .swiper-slide:not(.swiper-slide-active) img {
  animation-play-state: paused;
  transform: scale(1);
}
.first-view__slide .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(73, 73, 70, 0.5);
  mix-blend-mode: darken;
}
.first-view__slide .swiper-pagination {
  display: none;
}

/* ===============================================
# 汎用で使うスタイル
=============================================== */
.item-title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  margin-top: 1rem;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 1024px) {
  .item-title {
    margin-top: 1.5rem;
  }
}

.section-title .section-cp {
  display: block;
  color: #ADADAD;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  font-weight: 400;
}
.section-title .section-line {
  display: block;
  color: #ADADAD;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  font-weight: 400;
  position: relative;
  padding-left: 2.5rem;
}
.section-title .section-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 1px;
  background-color: #ADADAD;
}
.section-title h2 {
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
  font-weight: 500;
  line-height: 1.4;
}

.section-title-concept h2 {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  line-height: 1.7;
}

/* ===============================================
# ボタンのデザイン
=============================================== */
.fixed-button {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.fixed-button__item {
  width: clamp(4rem, 1.5rem + 4vw, 5rem);
  height: clamp(4rem, 1.5rem + 4vw, 5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (hover: hover) and (pointer: fine) {
  .fixed-button__item:hover {
    opacity: 0.7;
  }
}
.fixed-button__item:first-child {
  background-color: #4e423e;
}
.fixed-button__item:last-child {
  background-color: #231815;
}
.fixed-button__item img {
  width: clamp(1.5rem, 0.25rem + 2vw, 2rem);
  height: clamp(1.5rem, 0.25rem + 2vw, 2rem);
  -o-object-fit: contain;
     object-fit: contain;
}

.black-button {
  position: relative;
  display: flex;
  color: #FCFCFC;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: clamp(2.5rem, 0.5rem + 6.4vw, 4.5rem);
  width: 100%;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .black-button:hover .black-button-l {
    background-color: rgb(66.875, 45.8571428571, 40.125);
  }
  .black-button:hover .black-button-r {
    background-color: rgb(66.875, 45.8571428571, 40.125);
  }
  .black-button:hover .black-button-r::after {
    right: 35%;
  }
}
.black-button-l {
  background-color: #231815;
  padding: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  max-width: clamp(12.5rem, 8.75rem + 12vw, 16.25rem);
  width: 100%;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
}
.black-button-l::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  .black-button-l::before:hover {
    left: 100%;
  }
}
.black-button-r {
  position: relative;
  background-color: #231815;
  padding: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  max-width: clamp(3.125rem, 1.875rem + 4vw, 4.375rem);
  width: 100%;
  border-left: 0.05rem solid #FCFCFC;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.black-button-r::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 38%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.4rem;
  height: 0.4rem;
  border-top: 0.1rem solid #FCFCFC;
  border-right: 0.1rem solid #FCFCFC;
  transition: all 0.3s ease;
}
@media screen and (min-width: 480px) {
  .black-button-r::after {
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.15rem solid #FCFCFC;
    border-right: 0.15rem solid #FCFCFC;
  }
}

.section-title h2 .char:nth-child(1) {
  transition-delay: 0.08s;
}

.section-title h2 .char:nth-child(2) {
  transition-delay: 0.16s;
}

.section-title h2 .char:nth-child(3) {
  transition-delay: 0.24s;
}

.section-title h2 .char:nth-child(4) {
  transition-delay: 0.32s;
}

.section-title h2 .char:nth-child(5) {
  transition-delay: 0.4s;
}

.section-title h2 .char:nth-child(6) {
  transition-delay: 0.48s;
}

.section-title h2 .char:nth-child(7) {
  transition-delay: 0.56s;
}

.section-title h2 .char:nth-child(8) {
  transition-delay: 0.64s;
}

.section-title h2 .char:nth-child(9) {
  transition-delay: 0.72s;
}

.section-title h2 .char:nth-child(10) {
  transition-delay: 0.8s;
}

.section-title h2 .char:nth-child(11) {
  transition-delay: 0.88s;
}

.section-title h2 .char:nth-child(12) {
  transition-delay: 0.96s;
}

.section-title h2 .char:nth-child(13) {
  transition-delay: 1.04s;
}

.section-title h2 .char:nth-child(14) {
  transition-delay: 1.12s;
}

.section-title h2 .char:nth-child(15) {
  transition-delay: 1.2s;
}

.section-title h2 .char:nth-child(16) {
  transition-delay: 1.28s;
}

.section-title h2 .char:nth-child(17) {
  transition-delay: 1.36s;
}

.section-title h2 .char:nth-child(18) {
  transition-delay: 1.44s;
}

.section-title h2 .char:nth-child(19) {
  transition-delay: 1.52s;
}

.section-title h2 .char:nth-child(20) {
  transition-delay: 1.6s;
}

.category {
  display: inline-block;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  padding: 0.2rem 1rem;
  border: 0.08rem solid #ADADAD;
  border-radius: 2rem;
}

@media screen and (min-width: 1024px) {
  .sp-img {
    display: none;
  }
}

.pc-img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc-img {
    display: block;
  }
}

.section__inner {
  max-width: 87.5rem;
  margin: auto;
  z-index: 0;
  position: relative;
}

/* ===============================================
# renovation
=============================================== */
.page-renovation .section__wrapper,
.page-reform .section__wrapper {
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}

.renovation_catch {
  position: relative;
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
@media screen and (min-width: 768px) {
  .renovation_catch {
    margin-bottom: 20rem;
  }
}
.renovation_catch .section__wrapper {
  padding: 0 4%;
}
.renovation_catch .renovation_catch-img {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .renovation_catch .renovation_catch-img {
    height: 31.25rem;
  }
}
.renovation_catch .renovation_catch-text {
  background-color: #fff;
  padding: 2rem 1.5rem;
  max-width: 50rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .renovation_catch .renovation_catch-text {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    padding: 3.75rem;
    width: calc(100% - 4rem);
  }
}
@media screen and (min-width: 1024px) {
  .renovation_catch .renovation_catch-text {
    width: 50rem;
  }
}
.renovation_catch .renovation_catch-text .title {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
}
.renovation_catch .renovation_catch-text p {
  margin-top: 2rem;
  line-height: 2;
}

.renovation-point {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.renovation-point .section__wrapper {
  padding: 0 4%;
}
.renovation-point .renovation-point__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 2rem;
  justify-content: center;
  margin-top: clamp(3rem, 2rem + 3vw, 4rem);
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .renovation-point .renovation-point__lists {
    flex-wrap: nowrap;
  }
}
.renovation-point .renovation-point__lists .renovation-point__list {
  position: relative;
  width: 100%;
  max-width: 20rem;
  background-color: #fff;
  border: 1px solid #4e423e;
  padding-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .renovation-point .renovation-point__lists .renovation-point__list {
    max-width: 24rem;
  }
}
.renovation-point .renovation-point__lists .renovation-point__list::after {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 1rem solid #231815;
  z-index: 1;
}
.renovation-point .renovation-point__lists .renovation-point__list .no {
  z-index: 3;
  display: block;
  text-align: center;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  font-weight: 500;
}
.renovation-point .renovation-point__lists .renovation-point__list .title {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #231815;
  color: #FCFCFC;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  font-weight: 600;
  padding: 0 1rem 0.8rem;
  white-space: nowrap;
  z-index: 3;
  line-height: 1.4;
  width: 180px;
  border-top: none;
}
.renovation-point .renovation-point__lists .renovation-point__list .text {
  color: #231815;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 1.5rem 2.5rem;
  font-weight: 500;
  text-align: center;
}
.renovation-point .renovation-point__lists2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 1.5rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .renovation-point .renovation-point__lists2 {
    gap: 2.5rem 4rem;
  }
}
.renovation-point .renovation-point__lists2 .renovation-point__list2 {
  width: 100%;
}
@media screen and (min-width: 480px) {
  .renovation-point .renovation-point__lists2 .renovation-point__list2 {
    width: calc(50% - 0.75rem);
  }
}
@media screen and (min-width: 1024px) {
  .renovation-point .renovation-point__lists2 .renovation-point__list2 {
    width: calc(33.333% - 2.67rem);
  }
}
.renovation-point .renovation-point__lists2 .renovation-point__list2 .renovation-point__img {
  margin-bottom: 1.5rem;
}
.renovation-point .renovation-point__lists2 .renovation-point__list2 .renovation-point__img img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.renovation-point .renovation-point__lists2 .renovation-point__list2 .title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  font-weight: 600;
  color: #231815;
  line-height: 1.4;
  text-align: center;
}
.renovation-point .renovation-point__lists2 .renovation-point__list2 .text {
  margin-top: 1rem;
  text-align: left;
}

.renovation-spec .section__wrapper {
  padding: 0 4%;
}
.renovation-spec .text {
  text-align: center;
}
.renovation-spec .spec-img {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.5rem 1.25rem;
  padding: 4rem 0;
}
.renovation-spec .spec-img img {
  aspect-ratio: 3/2;
}
.renovation-spec .spec-img li {
  width: calc(50% - 0.63rem);
}
@media screen and (min-width: 1024px) {
  .renovation-spec .spec-img li {
    width: calc(25% - 0.94rem);
  }
}
.renovation-spec .spec-img li p {
  padding-top: 1rem;
  text-align: center;
}

.spec-icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1rem;
}
@media screen and (min-width: 480px) {
  .spec-icon {
    gap: 2rem 0.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .spec-icon {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .spec-icon {
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem 0.5rem;
  }
}
.spec-icon .spec-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.spec-icon .spec-icon img {
  width: 100%;
  height: auto;
  max-width: 120px;
}
.spec-icon .spec-icon p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  margin: 0;
  line-height: 1.4;
}

.spec-list2 h2 {
  text-align: center;
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  text-decoration: underline;
}
.spec-list2 ul {
  margin-top: 2.5rem;
}

/* ===============================================
# concept
=============================================== */
#concept {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  position: relative;
}
#concept .concept__item {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
#concept .concept__item-text {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 2.2;
}
@media screen and (min-width: 1024px) {
  #concept .concept__item {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: clamp(0rem, -6.25rem + 10vw, 2.5rem);
  }
}
#concept .concept__item-l {
  padding-right: 20%;
}
@media screen and (min-width: 1024px) {
  #concept .concept__item-l {
    flex: 0 1 40%;
    padding: 0;
    padding-bottom: 5rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#concept .concept__item-l img {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 1024px) {
  #concept .concept__item-l img {
    aspect-ratio: auto;
  }
}
#concept .concept__item-c {
  margin-left: 4%;
  margin-right: 4%;
}
@media screen and (min-width: 1024px) {
  #concept .concept__item-c {
    margin: 0 4rem;
    max-width: clamp(18.75rem, 3.125rem + 25vw, 25rem);
    width: 100%;
  }
}
#concept .concept__item-r {
  padding-left: 20%;
}
@media screen and (min-width: 1024px) {
  #concept .concept__item-r {
    flex: 0 1 20%;
    padding: 0;
    align-self: flex-end;
  }
}
#concept .concept__item-r img {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 1024px) {
  #concept .concept__item-r img {
    aspect-ratio: 3/5;
  }
}
#concept .section__inner {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  max-width: 87.5rem;
  margin: 0 auto;
  gap: 2.5rem 0;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  #concept .section__inner {
    flex-direction: row;
    padding-left: 4%;
    padding-right: 4%;
  }
}
#concept .concept__image-left {
  width: 100%;
}
#concept .concept__image-left img {
  aspect-ratio: 3/2;
}
@media screen and (min-width: 1024px) {
  #concept .concept__image-left {
    width: 35%;
  }
  #concept .concept__image-left img {
    aspect-ratio: auto;
  }
}
#concept .concept__content {
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1024px) {
  #concept .concept__content {
    width: 40%;
  }
}
#concept .concept__content .concept__title {
  color: #F3F0ED;
  letter-spacing: 0.1rem;
  font-weight: 500;
}
#concept .concept__content .concept__catch {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  margin-top: 0.5rem;
  line-height: 1.8;
}
#concept .concept__content .concept__description {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  margin-top: 2rem;
  line-height: 2.2;
}
#concept .concept__image-right {
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #concept .concept__image-right {
    width: 25%;
    padding: 0;
    height: 45vw;
  }
}
#concept .concept__image-right .image-top {
  max-width: 45vw;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  #concept .concept__image-right .image-top {
    position: absolute;
    top: -2.5rem;
    right: 4%;
    max-width: 15vw;
  }
}
#concept .concept__image-right .image-bottom {
  max-width: 60vw;
  margin-right: auto;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1024px) {
  #concept .concept__image-right .image-bottom {
    position: absolute;
    bottom: -2.5rem;
    right: 8%;
    max-width: 20vw;
  }
}
#concept .button-more {
  margin: 2.5rem auto 0 0;
  padding-left: 0;
}
#concept .contents-hidden_out {
  transition-delay: 0.5s;
}

.page-concept_catch {
  display: flex;
  justify-content: center;
  gap: 2rem 4rem;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .page-concept_catch {
    flex-direction: row;
  }
}
.page-concept_catch .title {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
}
@media screen and (min-width: 1024px) {
  .page-concept_catch .title {
    flex: 0 0 25rem;
  }
}
.page-concept_catch .text {
  line-height: 2.2;
}
@media screen and (min-width: 1024px) {
  .page-concept_catch .text {
    flex: 1;
  }
}

.page-concept_catch-img {
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  height: 400px;
}
.page-concept_catch-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
@media screen and (min-width: 1024px) {
  .page-concept_catch-img {
    height: auto;
  }
  .page-concept_catch-img img {
    -o-object-position: right center;
       object-position: right center;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.point {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.1rem;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  border-radius: 2rem;
  color: #ADADAD;
}

.page-concept__point {
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.page-concept__point__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(3rem, -4.5rem + 12vw, 6rem);
  flex-direction: column;
}
.page-concept__point__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 1.5rem 3.5rem;
}
@media screen and (min-width: 1024px) {
  .page-concept__point__item {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .page-concept__point__item:nth-child(2) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .page-concept__point__item.reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .page-concept__point__item-left {
    flex: 1;
  }
}
.page-concept__point__item-left .title {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  margin-top: 0.5rem;
}
.page-concept__point__item-left .text {
  line-height: 2;
  margin-top: 1.5rem;
}
.page-concept__point__item-right {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-concept__point__item-right {
    width: 50%;
  }
}

.page-concept .page-lineup-price {
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  background-color: #F3F0ED;
}
.page-concept .page-lineup-price .page-lineup__inner {
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}

/* ===============================================
# parallax
=============================================== */
.parallax__content {
  overflow: hidden;
  height: 50vw;
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
@media screen and (min-width: 1024px) {
  .parallax__content {
    height: 35vw;
  }
}
.parallax__content img {
  width: 100%;
  height: 50vw;
}
@media screen and (min-width: 1024px) {
  .parallax__content img {
    height: auto;
  }
}

/* ===============================================
# works
=============================================== */
.works {
  position: relative;
  overflow-x: hidden;
  background-color: #F3F0ED;
}
.works.inview::before {
  width: 100%;
}
.works .section__wrapper {
  margin: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
}
.works .category {
  margin-top: 1rem;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding: 0.2rem 1rem;
}
.works .black-button {
  justify-content: end;
}

.works__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: clamp(2.5rem, 0.5rem + 6.4vw, 4.5rem);
}
@media screen and (min-width: 480px) {
  .works__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .works__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem 1.5rem;
  }
}

.works__item {
  width: 100%;
}
.works__item .thumbnail {
  aspect-ratio: 4/3;
}
.works__item .works__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  gap: 0 0.5rem;
}
.works__item .works__info p {
  color: #F3F0ED;
}

/* ===============================================
# price
=============================================== */
.page-lineup-price .section__wrapper {
  margin: 0 4%;
}
.page-lineup-price .page-lineup__inner {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.page-lineup-price .plan {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: clamp(2.5rem, 0.5rem + 6.4vw, 4.5rem) auto 4rem;
}
.page-lineup-price .plan .chart {
  width: 100%;
  color: #231815;
  text-align: center;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .page-lineup-price .plan .chart {
    width: calc(50% - 0.63rem);
  }
}
.page-lineup-price .plan .chart thead {
  background-color: #4e423e;
  color: #FCFCFC;
}
.page-lineup-price .plan .chart th {
  padding: 1rem 0;
  width: 40%;
  text-align: center;
}
.page-lineup-price .plan .chart td {
  border-left: 0.1rem solid #FCFCFC;
  padding: 1rem 0;
  width: 60%;
}
.page-lineup-price .plan .chart tbody tr {
  background-color: #ebeaea;
}
.page-lineup-price .plan .chart tbody tr:nth-child(even) {
  background-color: #F4F4F4;
}
.page-lineup-price .item2 {
  text-align: left;
  color: #231815;
}
.page-lineup-price .item2 li {
  position: relative;
  padding-left: 1.5em;
  padding-top: 0.25rem;
}
.page-lineup-price .item2 li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0.25rem;
  font-weight: bold;
}
.page-lineup-price .item3 {
  text-align: left;
  margin-top: clamp(2.5rem, 0.5rem + 6.4vw, 4.5rem);
  color: #231815;
  padding: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
  background-color: #F3F0ED;
}
.page-lineup-price .item3 ul li {
  position: relative;
  padding-left: 1.5em;
  padding-top: 0.25rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
}
.page-lineup-price .item3 ul li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0.25rem;
  font-weight: bold;
  line-height: 1.7;
}
.page-lineup-price .spec {
  display: flex;
  gap: 2rem 1rem;
  flex-wrap: wrap;
  margin-top: clamp(2.5rem, 0.5rem + 6.4vw, 4.5rem);
}
.page-lineup-price .spec li {
  width: calc(50% - 0.5rem);
}
@media screen and (min-width: 768px) {
  .page-lineup-price .spec li {
    width: calc(25% - 0.75rem);
  }
}
.page-lineup-price .spec li img {
  width: 100%;
  height: auto;
}
.page-lineup-price .spec li p {
  padding-top: 0.5rem;
  text-align: center;
  display: block;
  line-height: 1.6;
  min-height: 2.4em;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
}
.page-lineup-price .page-lineup-plan {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 1.25rem;
  margin: auto;
  letter-spacing: 0.1rem;
}
.page-lineup-price .page-lineup-plan .chart {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-lineup-price .page-lineup-plan .chart {
    width: calc(50% - 1rem);
  }
}
.page-lineup-price .page-lineup-plan .chart thead {
  background-color: #231815;
}
.page-lineup-price .page-lineup-plan .chart th {
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 40%;
  text-align: center;
  border-bottom: 0.05rem solid #F4F4F4;
  font-weight: 500;
}
.page-lineup-price .page-lineup-plan .chart td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 60%;
  text-align: center;
  border-bottom: 0.05rem solid #F4F4F4;
  font-weight: 500;
}
.page-lineup-price .spec-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 1rem;
}
.page-lineup-price .spec-img li {
  width: calc(50% - 0.5rem);
}
@media screen and (min-width: 1024px) {
  .page-lineup-price .spec-img li {
    width: calc(25% - 0.75rem);
  }
}
.page-lineup-price .spec-img li p {
  padding-top: 1rem;
  text-align: center;
}
.page-lineup-price .spec-list ul {
  display: grid;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding-top: 4rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 1024px) {
  .page-lineup-price .spec-list ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.page-lineup-price .spec-list ul li {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #4e423e;
  padding: 4%;
}
.page-lineup-price .spec-list2 {
  padding-top: 3rem;
}
.page-lineup-price .black-button {
  justify-content: center;
}
.page-lineup-price .lineup-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .page-lineup-price .lineup-cards {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-lineup-price .lineup-card {
    flex: 1;
  }
}
.page-lineup-price .lineup-card__thumbnail {
  aspect-ratio: 3/2;
}
.page-lineup-price .lineup-card__info {
  padding-top: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  text-align: center;
}
.page-lineup-price .lineup-card__title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  font-weight: 600;
  color: #231815;
}
.page-lineup-price .lineup-card__slug {
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  color: #ADADAD;
  font-weight: 400;
  letter-spacing: 0.05rem;
}

.price-cp {
  text-align: center;
  font-weight: 500;
}
.price-cp h3 {
  display: inline-block;
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  margin-top: 2rem;
}
.price-cp p {
  margin-top: clamp(1rem, 0rem + 3.2vw, 2rem);
}

.lineup-gallery {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  /* dotsを四角くカスタマイズするCSS */
}
.lineup-gallery .section-title {
  text-align: center;
}
.lineup-gallery .slide-items {
  position: relative;
  margin: auto;
  margin-top: 2rem;
}
.lineup-gallery .slide-item img {
  height: auto;
  opacity: 0.3;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
  width: 100%;
  aspect-ratio: 4/3;
}
.lineup-gallery .slick-center img {
  opacity: 1;
  transform: scale(1);
}
.lineup-gallery .slick-dots {
  bottom: -2.5rem;
  text-align: right;
  right: 9%;
}
@media screen and (min-width: 1024px) {
  .lineup-gallery .slick-dots {
    right: 17%;
  }
}
.lineup-gallery .slick-dots li {
  margin: 0 0.1rem;
}
.lineup-gallery .slick-dots li button {
  width: 20px;
  height: 5px;
  border-radius: 0;
}
@media screen and (min-width: 1024px) {
  .lineup-gallery .slick-dots li {
    margin: 0 0.25rem;
  }
}
.lineup-gallery .slick-dots li::before {
  content: " ";
  width: 20px;
  height: 5px;
  border-radius: 0;
  background-color: #aaa;
}
.lineup-gallery .slick-dots li.slick-active button:before {
  background-color: #231815;
  border-radius: 50%;
}
.lineup-gallery .dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.lineup-gallery .dots-wrap li {
  width: 22px;
  height: 6px;
  margin: 0 0.4rem;
  background-color: #ccc;
  cursor: pointer;
}
.lineup-gallery .dots-wrap li:hover,
.lineup-gallery .dots-wrap li.slick-active {
  background-color: #231815;
}
.lineup-gallery .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.lineup-gallery .custom-arrow {
  position: absolute;
  width: 2rem;
  height: 1.7rem;
  background-size: cover;
  z-index: 500;
  border: 0;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lineup-gallery .custom-arrow:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1024px) {
  .lineup-gallery .custom-arrow {
    width: 3.5rem;
    height: 3rem;
  }
}
.lineup-gallery .next-arrow {
  background-image: url("img/next.png");
  right: 10%;
}
@media screen and (min-width: 1024px) {
  .lineup-gallery .next-arrow {
    right: 18%;
  }
}
.lineup-gallery .prev-arrow {
  background-image: url("img/prev.png");
  left: 10%;
}
@media screen and (min-width: 1024px) {
  .lineup-gallery .prev-arrow {
    left: 18%;
  }
}

.price-plan {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2.5rem;
  justify-content: center;
  padding-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .price-plan {
    gap: 3rem 4rem;
  }
}
.price-plan__wrapper {
  margin-top: clamp(2.5rem, 0.5rem + 6.4vw, 4.5rem);
}
.price-plan .pentagon {
  position: relative;
  width: 110px;
  height: 75px;
  border-left: 0.1rem solid #231815;
  border-right: 0.1rem solid #231815;
  border-bottom: 0.1rem solid #231815;
  margin: auto;
}
.price-plan .pentagon::before {
  content: "";
  width: 74px;
  height: 0.1rem;
  background-color: #231815;
  position: absolute;
  top: -3px;
  left: -10px;
  transform: rotate(-30deg);
  transform-origin: top left;
}
.price-plan .pentagon::after {
  content: "";
  width: 74px;
  height: 0.1rem;
  background-color: #231815;
  position: absolute;
  top: -3px;
  right: -10px;
  transform: rotate(30deg);
  transform-origin: top right;
}
.price-plan .pentagon .price-plan__cp {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.price-plan .pentagon .price-plan__cp p {
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  font-weight: 600;
}
.price-plan .price-plan__text {
  padding-top: 1rem;
  text-align: center;
}
.price-plan .price-plan__text p {
  display: flex;
  align-items: end;
  gap: 0.25rem;
  justify-content: center;
  font-weight: 600;
}
.price-plan .price-text {
  display: block;
  font-size: 280%;
  line-height: 1.2;
}

/* ===============================================
# about-us
=============================================== */
.about-us {
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.about-us .section__wrapper {
  margin: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
}
@media screen and (min-width: 768px) {
  .about-us .section__wrapper {
    margin: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 0 clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 5rem;
  }
}

.about-us__item {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem 5rem;
}
@media screen and (min-width: 768px) {
  .about-us__item {
    flex-direction: row;
    align-items: center;
  }
}
.about-us__item .text {
  margin-top: clamp(2rem, -0.5rem + 8vw, 4.5rem);
}

.about-us__item-l .title {
  margin-top: 2.5rem;
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .about-us__item-l {
    flex: 1;
  }
}

.page-about-us .about-us__item .text {
  margin-top: 2.5rem;
}
.page-about-us .president-name {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}
.page-about-us .president-name p {
  margin-right: clamp(2.5rem, 1.75rem + 2.4vw, 3.25rem);
}
.page-about-us .president-name h4 {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
}

@media screen and (min-width: 768px) {
  .about-us__item-r {
    flex: 0 0 45%;
    max-width: 680px;
  }
}
.about-us__item-r img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-info .company-info__item {
  display: flex;
  flex-direction: column;
  gap: 2.5rem 5rem;
}
@media screen and (min-width: 768px) {
  .company-info .company-info__item {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .company-info .company-info__item .section-title {
    flex: 0 0 30%;
  }
}
@media screen and (min-width: 768px) {
  .company-info .company-info__item .company__item {
    flex: 1;
  }
}

.price-concept {
  background-color: #F3F0ED;
}
.price-concept .concept .section__wrapper {
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
}
.price-concept .price-concept__inner {
  padding: 0 4% clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
@media screen and (min-width: 1024px) {
  .price-concept .price-concept__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.price-concept .price-concept__inner h2 {
  font-size: clamp(1rem, 0.5rem + 1.6vw, 1.5rem); /* 16px ~ 24px */
  font-weight: 500;
  padding-bottom: clamp(0.625rem, -0.25rem + 2.8vw, 1.5rem);
}
.price-concept .price-concept__item,
.price-concept .price-concept__item-t {
  display: flex;
  align-items: center;
  gap: 2rem 0;
}
.price-concept .price-concept__item img,
.price-concept .price-concept__item-t img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .price-concept .price-concept__item img,
  .price-concept .price-concept__item-t img {
    width: 50%;
  }
}
.price-concept .price-concept__item {
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .price-concept .price-concept__item {
    flex-direction: row-reverse;
  }
}
.price-concept .price-concept__item-t {
  padding: clamp(3.75rem, 1.25rem + 8vw, 6.25rem) 0;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .price-concept .price-concept__item-t {
    flex-direction: row-reverse;
  }
}
.price-concept .price-concept__item-l {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .price-concept .price-concept__item-l {
    width: 50%;
    padding: 0 90px;
  }
}
.price-concept .gallery {
  padding: clamp(3.75rem, 2.5rem + 4vw, 5rem) clamp(1.25rem, -2.5rem + 12vw, 5rem);
}
.price-concept .house-of {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0 10%;
  padding: 4%;
  border: 1px solid #231815;
}
.price-concept .house-of p {
  color: #191919;
}
.price-concept .house-of img {
  width: 200px;
}

/* ===============================================
# contact
=============================================== */
.contact {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 0;
  position: relative;
  background-image: url("img/contact-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.contact .section__wrapper {
  margin: 0 4%;
  position: relative;
  z-index: 1;
}
.contact .section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #FCFCFC;
}
.contact .section-title .section-cp {
  color: #FCFCFC;
}
.contact .contact__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contact .contact__item {
    gap: 3rem;
  }
}
.contact .contact__item-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FCFCFC;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  height: clamp(8rem, 6rem + 6.4vw, 10rem);
  border-radius: 0.25rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact .contact__item-tel:hover {
    opacity: 0.7;
  }
}
.contact .contact__item-tel .tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #231815;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 480px) {
  .contact .contact__item-tel .tel {
    font-size: 2.5rem;
  }
}
.contact .contact__item-tel .tel .tel-icon {
  display: flex;
  align-items: center;
}
.contact .contact__item-tel .tel .tel-icon img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 480px) {
  .contact .contact__item-tel .tel .tel-icon img {
    width: 2rem;
    height: 2rem;
  }
}
.contact .contact__item-tel .tel-text {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  letter-spacing: 0.1rem;
}
.contact .black-button {
  max-width: 500px;
  margin-top: 0;
}
.contact .black-button-l {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0.25rem;
  max-width: 100%;
  height: clamp(8rem, 6rem + 6.4vw, 10rem);
  font-size: 1.25rem;
}
@media screen and (min-width: 480px) {
  .contact .black-button-l {
    font-size: 1.5rem;
  }
}
.contact .black-button-r {
  width: 120px;
  max-width: clamp(5rem, 2.5rem + 8vw, 7.5rem);
}
.contact .black-button-r::after {
  right: 42%;
}
@media (hover: hover) and (pointer: fine) {
  .contact .black-button-r::after:hover {
    right: 40%;
  }
}
.contact .black-button .mail-icon {
  display: flex;
  align-items: center;
}
.contact .black-button .mail-icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.page-contact .page-section__wrapper {
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}

/* ===============================================
# button design
=============================================== */
.button-more {
  margin: 2.5rem 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 4%;
  padding-right: 4%;
}
.button-more a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 0.05rem solid #231815;
  border-radius: 2.5rem;
  min-width: 12rem;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.1rem;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .button-more a {
    padding: 1rem 2rem;
    min-width: 18rem;
  }
}
.button-more a .button-more__text-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 1.5em;
}
.button-more a .button-more__text {
  position: absolute;
  left: 0;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.92, -0.01, 0.26, 0.98);
}
.button-more a .button-more__text-hover {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.92, -0.01, 0.26, 0.98);
}
@media (hover: hover) and (pointer: fine) {
  .button-more a:hover {
    background-color: #231815;
    color: #FCFCFC;
  }
  .button-more a:hover .button-more__text {
    transform: translateY(-100%);
  }
  .button-more a:hover .button-more__text-hover {
    transform: translateY(0);
  }
  .button-more a:hover .arrow-right.initial {
    transform: translateX(200%);
  }
  .button-more a:hover .arrow-right.hover {
    transform: translateX(0);
  }
}

.button-with-arrow {
  position: relative;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #FCFCFC;
  background-color: #231815;
  border-radius: 2.5rem;
  width: 16rem;
  height: 4rem;
  letter-spacing: 0.1rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  transition: all 0.2s, color 0.2s ease-in-out;
}
@media screen and (min-width: 480px) {
  .button-with-arrow {
    width: 22rem;
  }
}
.button-with-arrow .arrow-right {
  position: absolute;
  top: 50%;
  right: 2rem;
  background-color: #FEFEFE;
  width: 0.55rem;
  height: 0.4763139721rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: all 0.2s ease-in-out;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .button-with-arrow .arrow-right {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.button-with-arrow .arrow-bottom {
  position: absolute;
  top: 50%;
  right: 2rem;
  background-color: #FEFEFE;
  width: 0.6rem;
  height: 0.4763139721rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: all 0.2s ease-in-out;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .button-with-arrow .arrow-bottom {
    width: 0.4rem;
    height: 0.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-with-arrow:hover {
    opacity: 0.8;
  }
}

/* ===============================================
# pagination
=============================================== */
.pagination {
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .pagination-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination .pagination-links .page-numbers {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  border: solid 0.07rem #231815;
  color: #231815;
  transition: all 0.3s ease;
  font-size: 1.125rem;
}
@media (hover: hover) and (pointer: fine) {
  .pagination .pagination-links .page-numbers:hover {
    background: #231815;
    color: #FCFCFC;
  }
  .pagination .pagination-links .page-numbers:hover .pagination-arrow {
    background-color: #FCFCFC;
  }
  .pagination .pagination-links .page-numbers:hover .pagination-arrow::after {
    border-color: #FCFCFC;
  }
}
.pagination .pagination-links .current {
  background: #231815;
  color: #FCFCFC;
  pointer-events: none;
}
.pagination .pagination-arrow {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1px;
  background-color: #231815;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.pagination .pagination-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  transition: all 0.3s ease;
}
.pagination .pagination-arrow.prev::after {
  left: -1px;
  transform: translateY(-50%) rotate(-135deg);
}
.pagination .pagination-arrow.next::after {
  right: -1px;
  transform: translateY(-50%) rotate(45deg);
}

/* ===============================================
# archive
=============================================== */
.archive .page-section__wrapper {
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}

.other-works {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.other-works .page-section__inner {
  padding-bottom: 0;
}
.other-works .works__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
}
.other-works .works__item {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .other-works .works__item {
    width: calc(33.33% - 1rem);
  }
}
.other-works .works__item .thumbnail {
  aspect-ratio: 4/3;
  position: relative;
}
.other-works .works__item .category {
  margin-top: 1rem;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding: 0.2rem 1rem;
}

.page-lineup-works {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4% 0;
}
.page-lineup-works .works-slider__wrapper {
  background-color: #F3F0ED;
  padding: clamp(2.5rem, 1rem + 4.8vw, 4rem) clamp(1rem, -2rem + 9.6vw, 4rem);
}
.page-lineup-works .lineup-works-slider {
  position: relative;
  max-width: 62.5rem;
  margin: auto;
}
.page-lineup-works .lineup-works-slider-main {
  width: 100%;
}
.page-lineup-works .lineup-works-slider-main .swiper-slide .slide-image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #FEFEFE;
}
.page-lineup-works .lineup-works-slider-main .swiper-slide .slide-image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.page-lineup-works .lineup-works-slider .slide-description {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  line-height: 1.6;
}
.page-lineup-works .lineup-works-slider .swiper-button-prev,
.page-lineup-works .lineup-works-slider .swiper-button-next {
  width: 4rem;
  height: 2.5rem;
  background: #FEFEFE;
  border: 0.05rem solid #4e423e;
  border-radius: 2.5rem;
  top: 45%;
}
@media screen and (min-width: 768px) {
  .page-lineup-works .lineup-works-slider .swiper-button-prev,
  .page-lineup-works .lineup-works-slider .swiper-button-next {
    width: 3rem;
    height: 2rem;
  }
}
.page-lineup-works .lineup-works-slider .swiper-button-prev::after,
.page-lineup-works .lineup-works-slider .swiper-button-next::after {
  font-size: 1.5rem;
  color: #231815;
}
@media (hover: hover) and (pointer: fine) {
  .page-lineup-works .lineup-works-slider .swiper-button-prev:hover,
  .page-lineup-works .lineup-works-slider .swiper-button-next:hover {
    background: #231815;
  }
  .page-lineup-works .lineup-works-slider .swiper-button-prev:hover::after,
  .page-lineup-works .lineup-works-slider .swiper-button-next:hover::after {
    color: #FCFCFC;
  }
}
.page-lineup-works .single-date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-lineup-works .single-date svg {
  color: #8F0B09;
  width: 1.5rem;
}
.page-lineup-works .page-lineup-works-data {
  max-width: 62.5rem;
  margin: auto;
  margin-top: clamp(1.5rem, 0rem + 4.8vw, 3rem);
}
.page-lineup-works .page-lineup-works-data .single-date {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-lineup-works .page-lineup-works-data .single-works-place,
.page-lineup-works .page-lineup-works-data .single-voice-family {
  display: flex;
  align-items: center;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
}
.page-lineup-works .page-lineup-works-data .single-works-place svg,
.page-lineup-works .page-lineup-works-data .single-voice-family svg {
  width: 0.875rem;
  fill: #8F0B09;
  margin-right: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .page-lineup-works .single-list dt {
    margin-left: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-lineup-works .single-list dd {
    width: calc(50% - 12rem - 1rem);
    margin-right: 0.5rem;
  }
}

/* ===============================================
# page
=============================================== */
.page-section__wrapper {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4% 0;
  color: #231815;
}

.page-section-title {
  position: relative;
  width: 100%;
  margin: auto;
}
.page-section-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
}
.page-section-title .thumbnail {
  height: 18rem;
}
@media screen and (min-width: 1024px) {
  .page-section-title .thumbnail {
    height: 24rem;
  }
}
.page-section-title .overlay-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #FCFCFC;
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
  text-align: center;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .page-section-title .overlay-text {
    left: 5rem;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
  }
}
.page-section-title .section-cp {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  display: block;
  letter-spacing: 0.2rem;
  position: relative;
}

.page-section__inner {
  padding-left: 4%;
  padding-right: 4%;
}

.bread {
  padding: 1.5rem 4% 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  max-width: 87.5rem;
  margin: auto;
  color: #231815;
  gap: 0.5rem 0;
}
.breadcrumb li + li::before {
  content: "/";
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.breadcrumb li a {
  border-bottom: 0.08rem solid #231815;
}

.page-category {
  margin-bottom: 5rem;
}
.page-category h3 {
  font-size: clamp(1.125rem, 0.5rem + 2vw, 1.75rem);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.05rem solid #4e423e;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #F3F0ED;
}
.page-category .category__tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.page-category .category__tab li a {
  display: inline-block;
  padding: 0.2rem 1rem;
  border: 0.08rem solid #231815;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .page-category .category__tab li a:hover {
    background-color: #231815;
    color: #FCFCFC;
  }
}
.page-category .category__tab li.category__tab-b {
  display: inline-block;
  padding: 0.2rem 1rem;
  background-color: #231815;
  color: #FCFCFC;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}

/* ===============================================
# single
=============================================== */
:where(.wp-block-columns) {
  margin-bottom: 0;
}

.single-section__wrapper {
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
}
.single-section__wrapper .item-title {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-section__wrapper .single-date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.single-section__wrapper .single-date svg {
  color: #8F0B09;
  width: 1.5rem;
}
.single-section__wrapper .contact-btn {
  min-width: 18.75rem;
  border: 0.05rem solid #231815;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.single-section__wrapper .brand-name {
  margin-left: 1rem;
}

.single-section__inner {
  margin: auto;
  padding-left: 4%;
  padding-right: 4%;
}
.single-section__inner .thumbnail {
  position: relative;
}
.single-section__inner .thumbnail img {
  aspect-ratio: 4/3;
}
.single-section__inner .thumbnail .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FCFCFC;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.single-section__inner .event-ended .thumbnail .overlay {
  opacity: 1;
}
.single-section__inner .event-ended .button-with-arrow {
  display: none;
}
.single-section__inner .event-ended #event-form {
  display: none;
}
.single-section__inner #event-form .section__inner {
  padding-left: 0;
  padding-right: 0;
}

.single-section__item {
  max-width: 62.5rem;
  margin: auto;
}

.single-contents__inner .item-title:not(:first-child) {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.single-contents__item h1, .single-contents__item h2, .single-contents__item h3, .single-contents__item h4, .single-contents__item h5, .single-contents__item h6 {
  line-height: 1.7;
  font-weight: 500;
}
.single-contents__item img {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.single-contents__item h2.wp-block-heading {
  display: block;
  position: relative;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  color: #231815;
  font-weight: 600;
}
.single-contents__item h3.wp-block-heading {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  font-weight: 600;
}
.single-contents__item p {
  line-height: 2;
  margin-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.single-contents__item .single-list {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.single-contents__item ul.wp-block-list {
  list-style: disc;
  padding: 1rem;
}
.single-contents__item ol.wp-block-list {
  list-style: auto;
  padding: 1rem;
}

.single-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .single-list {
    font-size: 0.75rem;
  }
}
.single-list dt {
  width: 8rem;
  border-right: none;
  padding: 0.75rem 1.5rem;
  color: #8F0B09;
  border-bottom: 0.05rem solid #ADADAD;
}
@media screen and (min-width: 1024px) {
  .single-list dt {
    width: 12rem;
    padding: 1.5rem;
  }
}
.single-list dd {
  width: calc(100% - 8rem);
  padding: 0.75rem 1.5rem;
  border-bottom: 0.05rem solid #ADADAD;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .single-list dd {
    width: calc(100% - 12rem);
    padding: 1.5rem;
  }
}

.single-event .single-contents__item {
  margin-top: 2.5rem;
}
.single-event .single-contents__item h2.wp-block-heading {
  margin-top: 1.5rem;
}

.event-point {
  border: 0.1rem solid #8F0B09;
  border-radius: 0.25rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.event-point h3 {
  color: #FCFCFC;
  text-align: center;
  background-color: #8F0B09;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.event-point ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 2rem;
}
.event-point ul li {
  position: relative;
  width: 100%;
  border-radius: 0.25rem;
  background-image: repeating-linear-gradient(90deg, #DC915C, #DC915C 5px, transparent 5px, transparent 10px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  padding: 0.5rem;
  font-weight: 600;
}
.event-point ul li::before {
  content: "";
  background: url("img/check.png") no-repeat center center/contain;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: sub;
  margin-right: 0.5rem;
}

.event-map {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.prenext {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  border-top: 0.05rem solid #4e423e;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
}
@media screen and (min-width: 1024px) {
  .prenext {
    flex-direction: row;
  }
}
.prenext .pre {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 2rem 4%;
  border-bottom: 0.05rem solid #4e423e;
  width: 100%;
  height: 7.5rem;
  line-height: 7.5rem;
}
@media screen and (min-width: 1024px) {
  .prenext .pre {
    width: auto;
    padding: 0 3rem;
    border-bottom: none;
  }
}
.prenext .pre a {
  border-bottom: 0.06rem solid #4e423e;
}
.prenext .next {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  text-align: right;
  padding: 2rem 4%;
  height: 7.5rem;
  width: 100%;
  border-top: 0.05rem solid #4e423e;
}
@media screen and (min-width: 1024px) {
  .prenext .next {
    width: auto;
    padding: 0 3rem;
    border-top: none;
  }
}
.prenext .next a {
  border-bottom: 0.06rem solid #4e423e;
}
.prenext .contents-back {
  width: 100%;
  text-align: center;
  padding: 2rem;
  border-left: 0.05rem solid #4e423e;
  border-right: 0.05rem solid #4e423e;
  height: 7.5rem;
}
@media screen and (min-width: 1024px) {
  .prenext .contents-back {
    width: auto;
  }
}
.prenext .contents-back a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}
.prenext .contents-back a img {
  width: 2rem;
  height: 2rem;
}
.prenext .contents-back a span {
  font-size: 0.75rem;
}

.before-photo {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.before-photo .button {
  position: relative;
  background: #F4F4F4;
  color: #231815;
  padding: 1rem 2rem;
  border: 0.07rem solid #231815;
  width: 100%;
  transition: all 0.3s ease;
  text-align: left;
}
.before-photo .button::after {
  content: "+";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .before-photo .button:hover {
    background-color: #231815;
    color: #F4F4F4;
  }
}

/* ===============================================
# company
=============================================== */
.company__item {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  width: 100%;
}
.company__item tr {
  border-bottom: 0.05rem solid #4e423e;
}
.company__item th {
  display: block;
  width: 100%;
  padding: 1rem 1rem 0;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 1024px) {
  .company__item th {
    width: 160px;
    padding: 2rem 1rem;
  }
}
.company__item td {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 1024px) {
  .company__item td {
    display: table-cell;
    padding: 2rem 1rem;
    width: calc(100% - 160px);
  }
}

.company__item-content {
  padding-top: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
}

.map {
  width: 100%;
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.map iframe {
  height: 400px;
}
@media screen and (min-width: 768px) {
  .map iframe {
    height: 600px;
  }
}

/* ===============================================
# footer
=============================================== */
.footer {
  background-color: #231815;
  color: #FCFCFC;
}
.footer .section__wrapper {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
}
.footer .footer-logo__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .footer .footer-logo__inner {
    flex-direction: row;
  }
}
.footer .footer-logo img {
  max-width: 14rem;
  height: auto;
  margin-bottom: 2rem;
}
@media screen and (min-width: 480px) {
  .footer .footer-logo img {
    max-width: 18rem;
  }
}
.footer .footer-company .circle {
  border: 0.08rem solid #231815;
  border-radius: 2.5rem;
  padding: 0.1rem 0.5rem;
  margin-right: 0.875rem;
  display: block;
  width: 5.5rem;
  text-align: center;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
}
.footer .footer-company p .footer-tel {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
}
.footer .footer-company p .footer-tel a {
  font-size: 200%;
  font-weight: 500;
}
.footer .footer-company .footer-hours,
.footer .footer-company .footer-closed {
  margin-top: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer .footer-sns__items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  padding-top: 1.5rem;
}
.footer .footer-sns__items li {
  display: inline-block;
}
.footer .footer-sns__items li img {
  width: 2rem;
  margin-bottom: 0;
}
.footer .g-menu-logo__inner {
  padding: 4rem 0 0;
  flex-direction: column;
}
.footer .g-menu-logo__inner .company-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer .footer-copy__wrapper {
  margin-top: 2.5rem;
}
.footer .footer-copy__wrapper p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
.footer .footer-menu__wrapper {
  display: flex;
  gap: 3rem 5rem;
}
.footer .footer-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .footer-menu__item a {
  color: #FCFCFC;
  text-decoration: none;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
}
.footer .footer-menu__item-child {
  line-height: 2;
  font-size: 0.875rem;
}
.footer .footer-menu__item-child::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.1rem;
  vertical-align: middle;
  top: 0;
  left: 0;
  background-color: #ADADAD;
  margin-right: 0.625rem;
}

/* ===============================================
# form
=============================================== */
.form .form-attention {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
  background-color: #F3F0ED;
}
.form .form-attention p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
.form .form-attention ul {
  padding-left: 1rem;
}
.form .form-attention li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  position: relative;
}
.form .form-attention li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}
.form .p-country-name {
  display: none;
}
.form .CF7_table {
  margin: auto;
}
.form .CF7_table .form-title {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  border-bottom: 0.08rem solid #231815;
  padding-bottom: 0.25rem;
  letter-spacing: 0.15rem;
  margin-bottom: clamp(2.5rem, 2rem + 1.6vw, 3rem);
}
.form .CF7_table .form-main-title {
  font-weight: 600;
  padding: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  letter-spacing: 0.1rem;
  border-top: 0.08rem solid #ADADAD;
  border-bottom: 0.08rem solid #ADADAD;
  text-align: center;
}
.form .CF7_table .form-main-title i {
  margin-right: 0.25rem;
}
.form .CF7_table h3 {
  display: flex;
  align-items: center;
  gap: 0 0.25rem;
  flex-wrap: wrap;
  font-weight: 600;
  color: #231815;
  margin-bottom: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
}
.form .CF7_table .CF7_req {
  color: #aa2626;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
}
.form .CF7_table .form-item {
  padding: 1.5rem 1rem;
  border-bottom: 0.05rem solid #4e423e;
}
@media screen and (min-width: 1024px) {
  .form .CF7_table .form-item {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.form .CF7_table .form-item a {
  margin-left: 0.625rem;
  padding: 6px 15px;
  background-color: #231815;
}
.form .CF7_table .form-item p {
  margin-bottom: 0.625rem;
}
.form .CF7_table .form-item textarea {
  width: 100%;
  height: 16rem;
  resize: vertical;
  border: 0.1rem solid #F4F4F4;
  background-color: #F4F4F4;
  padding: 0.625rem;
}
.form .CF7_table input,
.form .CF7_table select {
  border: 0.1rem solid #F4F4F4;
  background-color: #F4F4F4;
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  position: relative;
}
.form .CF7_table input[name=last_name],
.form .CF7_table input[name=first_name],
.form .CF7_table input[name=last_name_kana],
.form .CF7_table input[name=first_name_kana] {
  width: calc(92vw - 2.5rem);
}
@media screen and (min-width: 768px) {
  .form .CF7_table input[name=last_name],
  .form .CF7_table input[name=first_name],
  .form .CF7_table input[name=last_name_kana],
  .form .CF7_table input[name=first_name_kana] {
    width: 20rem;
  }
}
.form .CF7_table input[name=last_name2],
.form .CF7_table input[name=first_name2],
.form .CF7_table input[name=last_name_kana2],
.form .CF7_table input[name=first_name_kana2],
.form .CF7_table input[name=personal_postal_code] {
  width: 20rem;
}
@media screen and (min-width: 768px) {
  .form .CF7_table input[name=last_name2],
  .form .CF7_table input[name=first_name2],
  .form .CF7_table input[name=last_name_kana2],
  .form .CF7_table input[name=first_name_kana2],
  .form .CF7_table input[name=personal_postal_code] {
    width: 60vw;
  }
}
.form .CF7_table input[type=submit]:disabled {
  background-color: #ddd;
  text-align: center;
}
.form .CF7_table input[type=submit] {
  padding: 1rem;
  width: 250px;
  border: 0;
  background-color: #231815;
  color: #FCFCFC;
}
.form .CF7_table input[type=checkbox] {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  border: 0.08rem solid #231815;
  padding: 0;
  margin-right: 0.25rem;
}
.form .CF7_table input[type=checkbox]:checked {
  border: 0.08rem solid #8F0B09;
  background-color: #8F0B09;
}
.form .CF7_table input[type=checkbox]:checked:before {
  position: absolute;
  top: 0.05rem;
  left: 0.25rem;
  transform: rotate(50deg);
  width: 0.25rem;
  height: 0.5rem;
  border-right: 0.1rem solid #FEFEFE;
  border-bottom: 0.1rem solid #FEFEFE;
  content: "";
}
.form .CF7_table input::-moz-placeholder {
  color: #ADADAD;
}
.form .CF7_table input::placeholder {
  color: #ADADAD;
}
.form .CF7_table span[data-name=date_1],
.form .CF7_table span[data-name=date_2] {
  position: relative;
}
.form .CF7_table span[data-name=date_1] input,
.form .CF7_table span[data-name=date_2] input,
.form .CF7_table span[data-name=date_1] select,
.form .CF7_table span[data-name=date_2] select {
  width: 35rem;
}
@media screen and (min-width: 768px) {
  .form .CF7_table span[data-name=date_1] input,
  .form .CF7_table span[data-name=date_2] input,
  .form .CF7_table span[data-name=date_1] select,
  .form .CF7_table span[data-name=date_2] select {
    width: 100%;
  }
}
.form .CF7_table span[data-name=form_4a] select,
.form .CF7_table span[data-name=form_6a] select {
  width: 20rem;
}
@media screen and (min-width: 768px) {
  .form .CF7_table span[data-name=form_4a] select,
  .form .CF7_table span[data-name=form_6a] select {
    width: 100%;
  }
}
.form .CF7_table .form-item-box1 {
  margin-bottom: 1.5rem;
}
.form .CF7_table .form-item-m {
  display: block;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #231815;
  margin-top: 1rem;
}
.form .form-acceptance .CF7_req {
  margin: 0 0.25rem;
}
.form .form-policy__wrapper .policy__inner {
  padding: 3rem 2.5rem;
}
.form .form-policy__wrapper .poricy-cp {
  padding-bottom: 1.875rem;
}
.form .form-policy__wrapper h2 {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  border-bottom: 0.1rem solid #ADADAD;
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.form .form-policy__wrapper p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
.form .wpcf7-form-control-wrap[data-name=question] {
  width: 100%;
}
.form input[type=date] {
  position: relative;
}
.form input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.CF7_btn {
  text-align: center;
  margin: auto;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.form-item-name-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.form-item-name-flex .form-item-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form-item-name-flex .form-item-input .name {
  width: 2.5rem;
}

.wpcf7-list-item {
  margin: 0 1em 1em 0;
}

span[data-name=form_1a] .wpcf7-list-item label {
  display: flex;
  align-items: center;
  min-width: 25%;
}

span[data-name=form_1a] label,
span[data-name=date] label {
  padding: 0.85rem 1rem !important;
  border-radius: 2px;
  border: 0.1rem solid #F4F4F4;
  background-color: #F4F4F4;
  display: block;
}

span[data-name=way] label {
  padding: 0.85rem 1rem;
  border-radius: 2px;
  border: 0.1rem solid #F4F4F4;
  background-color: #F4F4F4;
  display: block;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #F3F0ED inset;
  -webkit-text-fill-color: #231815 !important;
}

span[data-name=form_1a] label,
span[data-name=date] label {
  display: flex;
}

.CF7_table input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #231815;
  border-radius: 15px;
  background: transparent;
  opacity: 1;
  padding: 0;
  margin-right: 0.25rem;
  position: relative;
}

input[type=radio]:checked {
  background-color: #FEFEFE;
}
input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #8F0B09;
  border-radius: 50%;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: "";
}

.form-acceptance {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}
.form-acceptance .wpcf7-list-item {
  margin: 0;
}

.form-acceptance p {
  text-align: center;
  margin: auto;
}

.form-acceptanc label {
  padding: 0;
  border-radius: 0;
  border: 0;
}

.form-policy__wrapper {
  width: 100%;
  height: 14rem;
  background-color: #F3F0ED;
  overflow: scroll;
  overflow-x: hidden;
  border-radius: 0.2rem;
  margin-top: 3rem;
}

.form-policy__wrapper .contents-policy__item h2 {
  text-align: left;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  padding: 0.5rem 0;
  font-weight: 500;
  background-color: #231815;
  color: #231815;
}

.form-policy__wrapper .contents-policy__item:not(:last-child) {
  padding-bottom: 2.5rem;
}

.recaptcha-text {
  font-size: 0.625rem;
  text-align: center;
  padding-top: 1rem;
}

.recaptcha-text a {
  font-size: 0.625rem;
  text-decoration: underline;
  color: #231815;
}

span[data-name=time1],
span[data-name=time2],
span[data-name=form_4a],
span[data-name=form_6a] {
  width: 10rem;
  position: relative;
}

span[data-name=time1]::after,
span[data-name=time2]::after,
span[data-name=date_1]::after,
span[data-name=date_2]::after,
span[data-name=form_4a]::after,
span[data-name=form_6a]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.1rem solid #231815;
  border-bottom: 0.1rem solid #231815;
  transform: rotate(45deg) translateY(-50%);
}

span[data-name=form_4a]::after,
span[data-name=form_6a]::after {
  top: 0.25rem;
}

.time-select {
  margin-top: 1.5rem;
}
.time-select p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wpcf7-form-control-wrap {
  position: inherit;
}

span[data-name=acceptance] label {
  display: block;
  font-weight: 600;
  padding: 0.625rem;
}

/* ===============================================
# sitemap
=============================================== */
.page-sitemap .section__wrapper {
  margin: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
}

.sitemap__wrapper .sitemap__item {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.08rem solid #d5cdcd;
  color: #231815;
}
.sitemap__wrapper .sitemap__item .sitemap__item-link {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 1rem;
  padding-right: 1rem;
}
.sitemap__wrapper .sitemap__item .sitemap__item-child {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  gap: 1rem 0;
}
.sitemap__wrapper .sitemap__item .sitemap__item-child li:not(:last-child)::after {
  content: "／";
  color: #ADADAD;
  margin: 0px 0.625rem;
}

/* ===============================================
# 404
=============================================== */
.page-error {
  text-align: center;
}
.page-error .page-section__wrapper {
  padding-top: 8rem;
}
.page-error h1 {
  font-size: 6rem;
  color: #4e423e;
  letter-spacing: 0.1rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page-error h1 {
    font-size: 3rem;
  }
}
.page-error p {
  margin-top: 1rem;
}

.button-circle a {
  display: block;
  border: 0.1rem solid #231815;
  border-radius: 2.5rem;
  margin-top: 3rem;
  padding: 1rem 5rem;
  transition: 0.2s ease-in;
}
@media (hover: hover) and (pointer: fine) {
  .button-circle a:hover {
    color: #FCFCFC;
    background-color: #231815;
  }
}
@media screen and (min-width: 768px) {
  .button-circle a {
    width: 65vw;
    padding: 1rem;
  }
}/*# sourceMappingURL=style.css.map */