@charset "UTF-8";
/*-----------------------------------------
    Color
-----------------------------------------*/
/*-----------------------------------------
    font-family
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..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.7;
  font-family: "gill-sans-nova", "Noto Sans JP", sans-serif;
}

/*** フェードインzアニメーション  ***/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  background-color: #FDFCFB;
  animation: fadeIn 3s forwards;
}

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

h2 {
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  color: #373329;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
}

p {
  letter-spacing: 0.05rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  font-weight: 400;
}

span {
  font-weight: 400;
}

li {
  font-weight: 400;
  letter-spacing: 0.05rem;
  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 (max-width: 767px) {
  .pc-br {
    display: block;
  }
}

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

.contents-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4rem);
  transition: opacity 1s, visibility 1s, transform 1s 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(2rem);
  animation: fadeInUp 0.7s ease-out forwards;
  animation-delay: 0.3s;
}

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

/* ===============================================
# header
=============================================== */
.header.header-black .header__logo path,
.header.page-header-black .header__logo path {
  fill: #373329;
}
.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: #373329;
  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: #373329;
  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: #373329;
  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: #373329;
}
.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: #373329;
}
.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: #373329;
}

.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 svg {
  width: auto;
  height: 2rem;
  vertical-align: middle;
}
.header .header__logo svg path {
  fill: #F9F7F3;
  transition: fill 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .header .header__logo svg {
    height: 2.5rem;
  }
}
.header .header-nav__wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header .header-nav__wrapper .header-nav__lists {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header .header-nav__wrapper .header-nav__lists {
    display: flex;
  }
}
.header .header-nav__wrapper .header-nav__list {
  position: relative;
  transition: all 0.3s;
  display: flex;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup {
  color: #F9F7F3;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  cursor: pointer;
  width: 7.6rem;
  color: #F9F7F3;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span {
  display: inline-block;
  transition: transform 0.3s ease;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span:first-child {
  transform: translateY(0);
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span:last-child {
  position: absolute;
  transform: translateY(100%);
}
.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;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child:hover span:first-child {
    transform: translateY(-100%);
  }
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child:hover span:last-child {
    transform: translateY(0);
  }
}
.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.07rem;
  background: #F9F7F3;
  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;
}
.header .header-nav__wrapper .openbtn span:nth-of-type(3) {
  top: 3rem;
}
.header .header-nav__wrapper .openbtn.active span {
  background-color: #373329;
}
.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: 2rem;
  right: -75%;
  background-color: #FDFCFB;
  padding: 2rem 4%;
  display: flex;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .header .header-nav__wrapper .header-nav-dropdown__lists {
    padding: 2.5rem 2rem;
  }
}
@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;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav-dropdown__list:hover {
    opacity: 0.7;
  }
}
.header .header-nav__wrapper .header-nav-dropdown__list a {
  display: block;
  text-decoration: none;
  color: #373329;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-thumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.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-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-info .dropdown-slug {
  display: block;
  font-size: 0.625rem;
  color: #9B8362;
  margin-top: 0.25rem;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav-dropdown__list:hover .dropdown-thumbnail img {
    transform: scale(1.05);
  }
}
.header .header-nav__wrapper .dli-chevron-down {
  transition: transform 0.3s ease;
}
.header .header-black {
  background-color: #373329;
}
.header .header-g-nav {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  display: flex;
  pointer-events: none;
  transition: 0.3s ease-in;
}
.header .header-g-nav.panelactive {
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s ease-in;
}
.header .header-g-nav .header-g-nav-img {
  width: 0;
  height: 100vh;
}
@media screen and (min-width: 1024px) {
  .header .header-g-nav .header-g-nav-img {
    width: 40vw;
  }
}
.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 .menu__wrapper {
  background-color: #F9F7F3;
  width: 100%;
  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;
    width: 60vw;
  }
}
.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: #9F8A53;
}
.header .menu__wrapper .menu__inner-request .menu__item-request .consultation {
  background-color: #373329;
}
.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: #F9F7F3;
}
.header .menu__wrapper .menu__inner-request .menu__item-request a p {
  color: #F9F7F3;
  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.05rem solid #BDB6AC;
}
.header .menu__wrapper .menu__inner .menu__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu__wrapper .menu__inner .menu__item a:hover {
    color: #856623;
  }
  .header .menu__wrapper .menu__inner .menu__item a:hover .arrow-right.initial {
    transform: translateX(200%);
  }
  .header .menu__wrapper .menu__inner .menu__item a:hover .arrow-right.hover {
    transform: translateX(0);
  }
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-text p {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-text span {
  font-size: 0.75rem;
  color: #919086;
}
.header .menu__wrapper .menu__inner .menu__item .menu__child-item {
  margin-top: 0.5rem;
}
.header .menu__wrapper .menu__inner .menu__item .menu__child-item::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.1rem;
  vertical-align: middle;
  background-color: #373329;
  margin-right: 0.5rem;
}
.header .menu__wrapper .menu__inner .menu__item .menu__child-item 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: #856623;
  }
  .color-change-hover a:hover svg {
    color: #856623;
  }
}
.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: #856623;
  }
  .img-hover:hover .thumbnail img {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
.img-hover .thumbnail {
  aspect-ratio: 4/3;
  background-color: #F9F7F3;
  overflow: hidden;
}
.img-hover .thumbnail img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #F9F7F3;
  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 {
  text-decoration: underline;
}

.icon-wrap {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
}

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

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

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

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

.request-btn {
  display: none;
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 3.75rem;
}
@media screen and (min-width: 1024px) {
  .request-btn {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.request-btn .request-btn__wrapper {
  border-radius: 2.5rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.request-btn .request-btn__wrapper.contact {
  background-color: #9F8A53;
}
.request-btn .request-btn__wrapper.consultation {
  background-color: #373329;
}
@media (hover: hover) and (pointer: fine) {
  .request-btn .request-btn__wrapper:hover {
    opacity: 0.8;
  }
}
.request-btn .request-btn__inner {
  padding: 1.5rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.request-btn .request-btn__inner svg {
  width: 1rem;
  height: auto;
  color: #F9F7F3;
}
.request-btn .request-btn__inner p {
  color: #F9F7F3;
  font-size: 0.875rem;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  letter-spacing: 0.05em;
  line-height: 1;
}

.request-btn-sp {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  transition: opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.request-btn-sp.is-show {
  opacity: 1;
  pointer-events: all;
}
@media screen and (min-width: 1024px) {
  .request-btn-sp.is-show {
    display: none;
  }
}
.request-btn-sp a {
  flex: 1;
}
.request-btn-sp svg {
  width: 1rem;
  color: #F9F7F3;
}
.request-btn-sp .request-btn__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 4rem;
  background-color: #373329;
  color: #F9F7F3;
  z-index: 1000;
  border-right: 0.025rem solid #F9F7F3;
  transition: opacity 0.3s ease;
}
.request-btn-sp .request-btn__wrapper:last-child {
  border-right: 0;
}
.request-btn-sp .request-btn__wrapper.contact {
  background-color: #9F8A53;
}
.request-btn-sp .request-btn__wrapper.consultation {
  background-color: #373329;
}
.request-btn-sp .request-btn__wrapper.tel {
  background-color: #919086;
}
@media (hover: hover) and (pointer: fine) {
  .request-btn-sp .request-btn__wrapper:hover {
    opacity: 0.8;
  }
}
.request-btn-sp .request-btn__wrapper .request-btn__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* ===============================================
# 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: 100vh;
  position: relative;
}
.top-view__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(73, 73, 70, 0.5);
  mix-blend-mode: darken;
}
.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: 0;
  left: 4%;
  color: #F9F7F3;
  transform: translateY(-45%);
  letter-spacing: 5px;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .top-view__wrapper .top-view__inner {
    left: 3.125rem;
  }
}
.top-view__wrapper .top-view__inner h1 {
  padding-bottom: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  font-size: clamp(1.5rem, 0.75rem + 2.4vw, 2.25rem);
  line-height: 1.6;
}
.top-view__wrapper .top-view__inner .top-view__item hr {
  width: clamp(2.5rem, 1rem + 4.8vw, 4rem);
}
.top-view__wrapper .top-view__inner .top-view__item p {
  color: #F9F7F3;
  letter-spacing: 0.15rem;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding-top: clamp(1.5rem, 1rem + 1.6vw, 2rem);
  line-height: 2;
}
.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; /* レイアウトに含む */
}
.top-view__wrapper .eachTextAnime span {
  opacity: 0; /* 初期状態で透明 */
  visibility: hidden; /* 完全に非表示 */
  display: inline-block; /* 必須: アニメーション時に要素が崩れないように */
}
.top-view__wrapper .eachTextAnime.appeartext span {
  visibility: visible; /* 表示可能に */
  animation: text_anime_on 1s ease-out forwards; /* アニメーション適用 */
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-view__wrapper .top-view-news__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .top-view__wrapper .top-view-news__inner {
    bottom: 2rem;
    width: 50%;
    right: 3rem;
    left: auto;
    border-radius: 2.5rem;
    overflow: hidden;
  }
}
.top-view__wrapper .top-view-news__inner .top-view-news__label {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-view__wrapper .top-view-news__inner .top-view-news__label {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #919086;
    padding: 0.75rem 1.5rem;
  }
  .top-view__wrapper .top-view-news__inner .top-view-news__label span {
    color: #F9F7F3;
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
  }
}
.top-view__wrapper .top-view-news__inner .top-view-news__content {
  background-color: #F9F7F3;
  flex-grow: 1;
}
.top-view__wrapper .top-view-news__inner .top-view-news__content a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1rem;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-view__wrapper .top-view-news__inner .top-view-news__content a:hover {
    background-color: rgba(55, 51, 41, 0.03);
  }
}
.top-view__wrapper .top-view-news__inner .top-view-news__content .date {
  font-size: 0.75rem;
  white-space: nowrap;
  letter-spacing: 0.05rem;
}
.top-view__wrapper .top-view-news__inner .top-view-news__content h3 {
  font-size: 0.875rem;
  color: #373329;
  padding: 0;
}

/* ===============================================
# 汎用で使うスタイル
=============================================== */
.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 {
  padding-left: 4%;
  padding-right: 4%;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .section-title {
    margin-bottom: 3rem;
  }
}
.section-title h2 {
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
  letter-spacing: 0.1em;
  overflow: hidden;
}
.section-title h2 .char {
  font-weight: 500;
  display: inline-block;
  transform: translateY(100%);
  opacity: 1;
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.section-title h2.animate .char {
  transform: translateY(0);
}
.section-title h2 .section-cp {
  display: block;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  margin-top: 0.5rem;
  color: #919086;
  letter-spacing: 0.05em;
}

.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 #919086;
  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;
  }
}

/* ===============================================
# event
=============================================== */
.event .section__wrapper {
  position: relative;
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
@media screen and (max-width: 767px) {
  .event .section__wrapper {
    padding-bottom: 3.5rem;
  }
}

.event__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
  padding-left: 4%;
  padding-right: 4%;
}

.event__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .event__item {
    width: calc(50% - 0.75rem);
  }
}
@media screen and (min-width: 1024px) {
  .event__item {
    width: calc(33.33% - 1rem);
  }
}
.event__item.event-ended .thumbnail .overlay {
  opacity: 1;
}
.event__item .thumbnail {
  aspect-ratio: 4/3;
  position: relative;
}
.event__item .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: #F9F7F3;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  opacity: 0;
}
.event__item .thumbnail img {
  -o-object-position: top;
     object-position: top;
}

.event__info {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  line-height: 1.2;
  gap: 0.75rem 0;
  font-weight: 500;
  letter-spacing: 0.1rem;
  padding-top: 1rem;
}
.event__info dt {
  width: 2.5rem;
  border: 1px solid #856623;
  color: #856623;
  border-radius: 2.5rem;
  padding: 0.1rem;
  text-align: center;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .event__info dt {
    width: 3.2rem;
    padding: 0.1rem 0.5rem;
  }
}
.event__info dd {
  width: calc(100% - 3.2rem);
  padding-left: 0.5rem;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
}

.contact-btn {
  min-width: 80%;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  background-color: #F9F7F3;
  color: #373329;
  border-radius: 40px;
  padding: 1rem;
  margin-top: 2rem;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .contact-btn {
    min-width: 18.75rem;
    margin-top: 2.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-btn:hover {
    background-color: #373329;
    color: #F9F7F3;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  }
}

#event-form .section__wrapper,
#contact-form .section__wrapper {
  padding-left: 0;
  padding-right: 0;
}

#event-form {
  margin-top: 2.5rem;
}

/* ===============================================
# concept
=============================================== */
.concept {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  position: relative;
}
.concept .m-mark {
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
  max-width: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .concept .m-mark {
    max-width: 30rem;
  }
}
@media screen and (min-width: 1024px) {
  .concept .m-mark {
    max-width: 30vw;
  }
}
.concept .section__inner {
  display: flex;
  justify-content: space-between;
  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: #9B8362;
  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 {
  text-align: center;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 15rem;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .page-concept_catch {
    padding-bottom: 25rem;
  }
}
.page-concept_catch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url("img/page-concept-catch-img.jpg");
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  pointer-events: none;
}
.page-concept_catch .title {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
}
.page-concept_catch .text {
  padding-top: 2.5rem;
  line-height: 2.2;
}
.page-concept_catch-img {
  position: absolute;
  bottom: 0;
  z-index: -1;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-concept__point {
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.page-concept__point .point-title {
  text-align: center;
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  line-height: 0.5;
}
.page-concept__point .point-title span {
  font-size: 150%;
  padding: 0.25rem;
}
.page-concept__point .point {
  display: inline-block;
  border: solid 0.08rem #373329;
  padding: 0.2rem 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  border-radius: 2rem;
}
.page-concept__point__inner {
  margin-top: 2.5rem;
  padding-left: 4%;
  padding-right: 4%;
}
.page-concept__point__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1.5rem 3.5rem;
}
@media screen and (min-width: 1024px) {
  .page-concept__point__item {
    flex-direction: row;
  }
}
@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: 1rem;
}
@media screen and (min-width: 1024px) {
  .page-concept__point__item-right {
    width: 50%;
  }
}

.page-concept__point2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .page-concept__point2 {
    margin-top: 4.5rem;
  }
}
.page-concept__point2 .point-img {
  aspect-ratio: 3/2;
}
@media screen and (min-width: 1024px) {
  .page-concept__point2__item {
    flex: 1;
  }
}
.page-concept__point2__item .title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  margin-top: 1rem;
  line-height: 1.5;
}
.page-concept__point2__item .text {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  margin-top: 0.5rem;
}

.page-concept__point__slide {
  overflow: hidden;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .page-concept__point__slide {
    margin-top: 4.5rem;
  }
}
.page-concept__point__slide .slide-track {
  display: flex;
  width: 170rem;
  animation: loop-slide 50s linear infinite;
}
@media screen and (min-width: 1024px) {
  .page-concept__point__slide .slide-track {
    width: 270rem;
  }
}
.page-concept__point__slide .slide {
  display: flex;
}
.page-concept__point__slide .slide__content {
  flex: 0 0 15rem;
  margin: 0 0.5rem;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 1024px) {
  .page-concept__point__slide .slide__content {
    flex: 0 0 25rem;
  }
}
.page-concept__point__slide .slide__content img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  display: block;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-85rem);
    @media screen and (min-width: 1024px) {
      .page-concept__point__slide {
        transform: translateX(-135rem);
      }
    }
  }
}

.page-concept__point3 {
  margin-top: 3.5rem;
}
@media screen and (min-width: 1024px) {
  .page-concept__point3 {
    margin-top: 4.5rem;
  }
}
.page-concept__point3 .page-section__inner {
  padding-bottom: 0;
}
.page-concept__point3 .text {
  margin-top: 1.5rem;
}

/* ===============================================
# works
=============================================== */
.works {
  position: relative;
}
.works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 50%;
  background-color: #F2EFE7;
  z-index: 0;
  transition: width 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.works.inview::before {
  width: 100%;
}
.works .section__wrapper {
  position: relative;
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.works .section__inner .section-title {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .works .section__inner .section-title {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.works .section__inner .section-title .button-more {
  margin: 0;
}
.works .category {
  margin-top: 1rem;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding: 0.2rem 1rem;
}
.works .works-slider {
  position: relative;
  margin-top: 2rem;
}
.works .works-slider__container {
  margin-left: 4%;
  width: 96%;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .works .works-slider__container {
    margin-left: 15vw;
    width: calc(100% - 15vw);
  }
}
.works .works-slider .swiper {
  overflow: hidden;
  padding-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .works .works-slider .swiper {
    padding-bottom: 5rem;
  }
}
.works .works-slider .swiper-wrapper {
  display: flex;
}
.works .works-slider .swiper-slide {
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.works .works-slider .swiper-scrollbar {
  left: 0;
  width: 89vw;
  height: 0.4rem;
  background: rgba(55, 51, 41, 0.1);
}
@media screen and (min-width: 1024px) {
  .works .works-slider .swiper-scrollbar {
    width: 38vw;
  }
}
.works .works-slider .swiper-scrollbar .swiper-scrollbar-drag {
  background: rgba(98, 92, 85, 0.5);
}
.works .swiper-button-prev,
.works .swiper-button-next {
  display: flex;
  width: 4rem;
  height: 2.5rem;
  background: #F9F7F3;
  border: 1px solid #e3e1dd;
  border-radius: 2.5rem;
  top: -5rem;
  z-index: 10;
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .works .swiper-button-prev,
  .works .swiper-button-next {
    width: 4.5rem;
    height: 3rem;
  }
}
.works .swiper-button-prev::after,
.works .swiper-button-next::after {
  display: none;
}
.works .swiper-button-prev .arrow-right,
.works .swiper-button-next .arrow-right {
  position: relative;
  width: 1.125rem;
  height: 1px;
  background-color: #373329;
  margin: auto;
}
.works .swiper-button-prev .arrow-right::after,
.works .swiper-button-next .arrow-right::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #373329;
  border-right: 1px solid #373329;
  transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .works .swiper-button-prev:hover,
  .works .swiper-button-next:hover {
    background: #373329;
  }
  .works .swiper-button-prev:hover .arrow-right,
  .works .swiper-button-next:hover .arrow-right {
    background-color: #F9F7F3;
  }
  .works .swiper-button-prev:hover .arrow-right::after,
  .works .swiper-button-next:hover .arrow-right::after {
    border-color: #F9F7F3;
  }
}
.works .swiper-button-prev {
  left: auto;
  right: 6rem;
}
.works .swiper-button-prev .arrow-right {
  transform: rotate(180deg);
}
@media screen and (min-width: 1024px) {
  .works .swiper-button-prev {
    right: 10.5rem;
  }
}
.works .swiper-button-next {
  right: 1rem;
}
@media screen and (min-width: 1024px) {
  .works .swiper-button-next {
    right: 5rem;
  }
}
.works .button-more {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .works .button-more {
    margin-top: -2.5rem;
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: flex;
  width: 4rem;
  height: 2.5rem;
  background: #F9F7F3;
  border: 1px solid #e3e1dd;
  border-radius: 2.5rem;
  top: -5rem;
  z-index: 10;
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 4.5rem;
    height: 3rem;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev .arrow-right,
.swiper-button-next .arrow-right {
  position: relative;
  width: 1.125rem;
  height: 1px;
  background-color: #373329;
  margin: auto;
}
.swiper-button-prev .arrow-right::after,
.swiper-button-next .arrow-right::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #373329;
  border-right: 1px solid #373329;
  transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #373329;
  }
  .swiper-button-prev:hover .arrow-right,
  .swiper-button-next:hover .arrow-right {
    background-color: #F9F7F3;
  }
  .swiper-button-prev:hover .arrow-right::after,
  .swiper-button-next:hover .arrow-right::after {
    border-color: #F9F7F3;
  }
}

.swiper-button-prev {
  left: auto;
  right: 6rem;
}
.swiper-button-prev .arrow-right {
  transform: rotate(180deg);
}
@media screen and (min-width: 1024px) {
  .swiper-button-prev {
    right: 10.5rem;
  }
}

.swiper-button-next {
  right: 1rem;
}
@media screen and (min-width: 1024px) {
  .swiper-button-next {
    right: 5rem;
  }
}

.works__info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: #9B8362;
  padding-top: 0.5rem;
}

.consultation-banner .section__wrapper {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.consultation-banner .section__inner {
  max-width: 75rem;
  position: relative;
}
.consultation-banner .banner__inner {
  padding-left: 4%;
  padding-right: 4%;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .consultation-banner:hover .arrow-animation .arrow-right.initial {
    transform: translateX(200%);
  }
  .consultation-banner:hover .arrow-animation .arrow-right.hover {
    transform: translateX(0);
  }
}
.consultation-banner .arrow-animation {
  position: absolute;
  bottom: 8%;
  right: 8%;
  background-color: #FDFCFB;
}

/* ===============================================
# lineup
=============================================== */
.lineup {
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  background-color: #F2EFE7;
}
@media screen and (min-width: 1024px) {
  .lineup .lineup__container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
  }
}
.lineup .lineup__inner {
  width: 100%;
  padding: 0 4%;
}
@media screen and (min-width: 1024px) {
  .lineup .lineup__inner {
    width: 60%;
  }
}
.lineup .lineup__item {
  border-bottom: 0.05rem solid #BDB6AC;
  position: relative;
}
.lineup .lineup__item-link {
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .lineup .lineup__item-link {
    padding: 3vw 1rem;
    gap: 1.5rem;
  }
}
.lineup .lineup__item .thumbnail {
  width: 4.5rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .lineup .lineup__item .thumbnail {
    display: none;
  }
}
.lineup .lineup__item-info {
  flex-grow: 1;
}
.lineup .lineup__item-info .item-title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  padding: 0;
  margin-top: 0;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .lineup .lineup__item-info .item-title {
    font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  }
}
.lineup .lineup__item-info .item-slug {
  color: #919086;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  letter-spacing: 0.1rem;
}
@media (hover: hover) and (pointer: fine) {
  .lineup .lineup__item:hover .item-title-animation {
    text-shadow: 0 0 0 #373329, 0 4em 0 #373329; /* 2つの影の位置を上方向に1.5emずつずらす */
  }
  .lineup .lineup__item:hover .arrow-right.initial {
    transform: translateX(200%);
  }
  .lineup .lineup__item:hover .arrow-right.hover {
    transform: translateX(0);
  }
}

.item-title-animation {
  overflow: hidden; /* 1つ目の影を隠す */
  color: transparent; /* テキスト本体は透明にする */
  /*
   影の設定
   1つ目：Y方向の位置にマイナスに設定してテキスト本体の上に配置、ぼかしなし
   2つ目：位置はテキスト本体と同じ、ぼかしなし
  */
  text-shadow: 0 -4em 0 #373329, 0 0 0 #373329;
  transition: text-shadow 0.5s;
}

.arrow-animation {
  background-color: #F9F7F3;
  width: 3rem;
  height: 2rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.arrow-animation .arrow-wrapper {
  position: relative;
  width: 1.125rem;
  height: 1px;
}
.arrow-animation .arrow-right {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #373329;
  transition: transform 0.4s cubic-bezier(0.92, -0.01, 0.26, 0.98);
}
.arrow-animation .arrow-right::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #373329;
  border-right: 1px solid #373329;
  transform: translateY(-50%) rotate(45deg);
}
.arrow-animation .arrow-right.initial {
  transform: translateX(0);
}
.arrow-animation .arrow-right.hover {
  transform: translateX(-200%);
}

.lineup__image {
  position: relative;
  display: none;
}
@media screen and (min-width: 1024px) {
  .lineup__image {
    display: block;
    width: 40%;
  }
  .lineup__image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 0;
  }
  .lineup__image-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  .lineup__image-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/5;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* ===============================================
# page-lineup
=============================================== */
.page-lineup__content {
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(1rem, 0.5rem + 1.6vw, 1.5rem) 2.5rem;
}
@media screen and (min-width: 1024px) {
  .page-lineup__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-top: 5rem;
  }
}
.page-lineup__content-left {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-lineup__content-left {
    width: 45%;
  }
}
.page-lineup__content-left .title {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  font-weight: 500;
  line-height: 1.8;
}
.page-lineup__content-left .text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
}
.page-lineup__content-right {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-lineup__content-right {
    width: 55%;
  }
}
.page-lineup__content-right img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.lineup-title {
  text-align: center;
  width: 100%;
  margin-bottom: clamp(1.5rem, 0rem + 4.8vw, 3rem);
  grid-column: 1/-1;
}
.lineup-title h2 {
  display: inline-block;
  position: relative;
}
.lineup-title h2::before {
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
}
.lineup-title h2::after {
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
}
.lineup-title .title-en {
  display: block;
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding-top: 0.5rem;
}
.lineup-title .title-jp {
  display: inline-block;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #856623;
  margin-top: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  border: 1px solid #856623;
  position: relative;
  background-color: #F9F7F3;
}

.page-lineup-point {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
  background-color: #F2EFE7;
}
.page-lineup-point__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 0rem + 4.8vw, 3rem) clamp(1rem, -1rem + 6.4vw, 3rem);
}
@media screen and (min-width: 1024px) {
  .page-lineup-point__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-lineup-point__item .img-wrapper {
  margin-bottom: 1rem;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.page-lineup-point__item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.page-lineup-point__item .title {
  line-height: 1.6;
}
.page-lineup-point__item .text {
  margin-top: 0.5rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  line-height: 1.8;
}

/* ===============================================
# news
=============================================== */
.news {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  background-color: #FDFCFB;
}

.news__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1024px) {
  .news__inner {
    gap: 2.5rem 1.5rem;
  }
}

.news__item {
  width: 100%;
  border-bottom: 0.05rem solid #BDB6AC;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .news__item {
    width: calc(50% - 0.75rem);
  }
}
.news__item-content {
  width: 100%;
}
.news__item-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 1024px) {
  .news__item-link {
    gap: 1.5rem;
  }
}
.news__item .thumbnail {
  width: 6.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .news__item .thumbnail {
    width: 10rem;
  }
}
.news__item-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.news__item .item-title {
  margin-top: 0.5rem;
}

.date {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #9B8362;
  letter-spacing: 0.05rem;
}

/* ===============================================
# 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 #373329;
  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: #373329;
    color: #F9F7F3;
  }
  .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: #F9F7F3;
  background-color: #373329;
  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: #F9F7F3;
  width: 0.55rem;
  height: 0.4763139721rem;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: all 0.2s ease-in-out;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .button-with-arrow .arrow-right {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.button-with-arrow .arrow-bottom {
  position: absolute;
  top: 50%;
  right: 2rem;
  background-color: #F9F7F3;
  width: 0.6rem;
  height: 0.4763139721rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: all 0.2s ease-in-out;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .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;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  border: solid 0.07rem #373329;
  color: #373329;
  transition: all 0.3s ease;
  font-size: 1.125rem;
}
@media (hover: hover) and (pointer: fine) {
  .pagination .pagination-links .page-numbers:hover {
    background: #373329;
    color: #F9F7F3;
  }
  .pagination .pagination-links .page-numbers:hover .pagination-arrow {
    background-color: #F9F7F3;
  }
  .pagination .pagination-links .page-numbers:hover .pagination-arrow::after {
    border-color: #F9F7F3;
  }
}
.pagination .pagination-links .current {
  background: #373329;
  color: #F9F7F3;
  pointer-events: none;
}
.pagination .pagination-arrow {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1px;
  background-color: #373329;
  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 #373329;
  border-right: 1px solid #373329;
  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 .event__inner {
  padding-left: 0;
  padding-right: 0;
}
.archive .works__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
}
.archive .works__item {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .archive .works__item {
    width: calc(50% - 0.75rem);
  }
}
.archive .works__item .thumbnail {
  aspect-ratio: 4/3;
  position: relative;
}
.archive .works__item .category {
  margin-top: 1rem;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding: 0.2rem 1rem;
}
.archive .news__inner {
  padding-left: 0;
  padding-right: 0;
}
.archive .news__item {
  border-bottom: 0.05rem solid #BDB6AC;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .archive .news__item {
    width: 100%;
  }
}
.archive .news__item-link {
  padding-left: 1rem;
  padding-right: 1rem;
}

.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: #F2EFE7;
  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: #F9F7F3;
}
.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: #F9F7F3;
  border: 0.05rem solid #BDB6AC;
  border-radius: 2.5rem;
  top: 45%;
}
@media screen and (max-width: 767px) {
  .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: #373329;
}
@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: #373329;
  }
  .page-lineup-works .lineup-works-slider .swiper-button-prev:hover::after,
  .page-lineup-works .lineup-works-slider .swiper-button-next:hover::after {
    color: #F9F7F3;
  }
}
.page-lineup-works .single-date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-lineup-works .single-date svg {
  color: #856623;
  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: #9F8A53;
  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;
  }
}

.works-slider-thumb {
  width: 100%;
}
.works-slider-thumb .swiper-wrapper {
  justify-content: center;
}
.works-slider-thumb .swiper-slide {
  max-width: 7.5rem;
  aspect-ratio: 1/1;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .works-slider-thumb .swiper-slide {
    aspect-ratio: 3/2;
  }
}
.works-slider-thumb .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.works-slider-thumb .swiper-slide-thumb-active {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .works-slider-thumb .swiper-slide:hover {
    opacity: 1;
  }
}

.page-lineup-flow {
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
  background-color: #F2EFE7;
}
.page-lineup-flow .flow__items {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  flex-direction: column;
  margin-top: 5rem;
  padding-left: 2.5rem;
  padding-right: 2rem;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow__items {
    gap: 1.5rem;
    flex-direction: row;
    justify-content: center;
    overflow-x: visible;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.page-lineup-flow .flow__item {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0.5rem 1rem;
  background-color: #F8F8F8;
  gap: 0.5rem;
  position: relative;
  height: 5rem;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow__item {
    flex-direction: column;
    width: 5rem;
    height: 32rem;
    gap: 1rem;
    padding: clamp(1rem, 0.5rem + 1.6vw, 1.5rem) 1.5rem;
  }
}
.page-lineup-flow .flow__item:first-child::before {
  content: "無料";
  position: absolute;
  top: 0;
  left: -2.5rem;
  background-color: #373329;
  color: #F9F7F3;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 0.25rem;
  font-weight: 500;
  z-index: 1;
  writing-mode: vertical-rl;
  width: auto;
  height: 11.5rem;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow__item:first-child::before {
    top: -3.5rem;
    left: 0;
    width: 11.5rem;
    height: auto;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    -webkit-text-orientation: mixed;
    padding: 0.25rem 1rem;
  }
}
.page-lineup-flow .flow__item:not(:first-child)::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 1.5rem;
  background-color: #9F8A53;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow__item:not(:first-child)::after {
    bottom: 50%;
    left: -1.5rem;
    width: 1.5rem;
    height: 1px;
  }
}
.page-lineup-flow .flow__item .flow-number {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  letter-spacing: 0.1em;
  color: #856623;
}
.page-lineup-flow .flow__item .flow-title {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow__item .flow-title {
    writing-mode: vertical-rl;
  }
}
.page-lineup-flow .flow__item .flow-text {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #919086;
  line-height: 1.6;
}
.page-lineup-flow .flow__item .flow-icon {
  width: 2rem;
  height: 2rem;
  border: 0.05rem solid #BDB6AC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow__item .flow-icon {
    writing-mode: vertical-rl;
    width: 3rem;
    height: 3rem;
  }
}
.page-lineup-flow .flow__item .flow-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow__item .flow-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.page-lineup-flow .flow-period {
  position: absolute;
  bottom: 0;
  right: 0.5rem;
  background-color: #9B8362;
  color: #9B8362;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 1px;
  height: 50.5rem;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow-period {
    width: 50.5rem;
    height: 1px;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.page-lineup-flow .flow-period::before, .page-lineup-flow .flow-period::after {
  content: "";
  position: absolute;
}
.page-lineup-flow .flow-period::before {
  bottom: 0;
  left: 50%;
  height: 1px;
  transform: translateY(-50%);
  background-color: #F9F7F3;
  width: 1px;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow-period::before {
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.page-lineup-flow .flow-period::after {
  right: -0.5rem;
  bottom: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid #9B8362;
  border-bottom: 1px solid #9B8362;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow-period::after {
    border-top: 1px solid #9B8362;
    border-right: 1px solid #9B8362;
    border-bottom: none;
    right: 0;
    bottom: -0.5rem;
    transform: translateY(-50%) rotate(45deg);
  }
}
.page-lineup-flow .flow-period span {
  position: absolute;
  background-color: #F9F7F3;
  bottom: 50%;
  transform: translateY(50%);
  right: -1rem;
  color: #9B8362;
  padding: 2rem 0.25rem;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  border: 0.05rem solid #9B8362;
  white-space: nowrap;
  letter-spacing: 0.1rem;
  writing-mode: vertical-lr;
  text-orientation: upright;
  -webkit-text-orientation: upright;
}
@media screen and (min-width: 1024px) {
  .page-lineup-flow .flow-period span {
    bottom: -1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 0.25rem 2rem;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    -webkit-text-orientation: mixed;
  }
}

.lineup-reform .page-lineup-flow .flow__items {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  flex-direction: column;
  margin-top: 5rem;
  padding-left: 2.5rem;
  padding-right: 2rem;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow__items {
    gap: 3rem;
    flex-direction: row;
    justify-content: center;
    overflow-x: visible;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.lineup-reform .page-lineup-flow .flow__item {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0.5rem 1rem;
  background-color: #F8F8F8;
  gap: 0.5rem;
  position: relative;
  height: 5rem;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow__item {
    flex-direction: column;
    width: 6.5rem;
    height: 32rem;
    gap: 1rem;
    padding: clamp(1rem, 0.5rem + 1.6vw, 1.5rem) 1.5rem;
  }
}
.lineup-reform .page-lineup-flow .flow__item:first-child::before {
  content: "無料";
  position: absolute;
  top: 0;
  left: -2.5rem;
  background-color: #373329;
  color: #F9F7F3;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 0.25rem;
  font-weight: 500;
  z-index: 1;
  writing-mode: vertical-rl;
  width: auto;
  height: 11.5rem;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow__item:first-child::before {
    top: -3.5rem;
    left: 0;
    width: 16rem;
    height: auto;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    -webkit-text-orientation: mixed;
    padding: 0.25rem 1rem;
  }
}
.lineup-reform .page-lineup-flow .flow__item:not(:first-child)::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 1.5rem;
  background-color: #9F8A53;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow__item:not(:first-child)::after {
    bottom: 50%;
    left: -3rem;
    width: 3rem;
    height: 1px;
  }
}
.lineup-reform .page-lineup-flow .flow__item .flow-number {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  letter-spacing: 0.1em;
  color: #856623;
}
.lineup-reform .page-lineup-flow .flow__item .flow-title {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow__item .flow-title {
    writing-mode: vertical-rl;
  }
}
.lineup-reform .page-lineup-flow .flow__item .flow-text {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #919086;
  line-height: 1.6;
}
.lineup-reform .page-lineup-flow .flow__item .flow-icon {
  width: 2rem;
  height: 2rem;
  border: 0.05rem solid #BDB6AC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow__item .flow-icon {
    writing-mode: vertical-rl;
    width: 3rem;
    height: 3rem;
  }
}
.lineup-reform .page-lineup-flow .flow__item .flow-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow__item .flow-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.lineup-reform .page-lineup-flow .flow-period {
  position: absolute;
  bottom: 0;
  right: 0.5rem;
  background-color: #9B8362;
  color: #9B8362;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 1px;
  height: 37.5rem;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow-period {
    width: 54rem;
    height: 1px;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lineup-reform .page-lineup-flow .flow-period::before, .lineup-reform .page-lineup-flow .flow-period::after {
  content: "";
  position: absolute;
}
.lineup-reform .page-lineup-flow .flow-period::before {
  bottom: 0;
  left: 50%;
  height: 1px;
  transform: translateY(-50%);
  background-color: #F9F7F3;
  width: 1px;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow-period::before {
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.lineup-reform .page-lineup-flow .flow-period::after {
  right: -0.5rem;
  bottom: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid #9B8362;
  border-bottom: 1px solid #9B8362;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow-period::after {
    border-top: 1px solid #9B8362;
    border-right: 1px solid #9B8362;
    border-bottom: none;
    right: 0;
    bottom: -0.5rem;
    transform: translateY(-50%) rotate(45deg);
  }
}
.lineup-reform .page-lineup-flow .flow-period span {
  position: absolute;
  background-color: #F9F7F3;
  bottom: 50%;
  transform: translateY(50%);
  right: -1rem;
  color: #9B8362;
  padding: 2rem 0.25rem;
  border-radius: 2rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  border: 0.05rem solid #9B8362;
  white-space: nowrap;
  letter-spacing: 0.1rem;
  writing-mode: vertical-lr;
  text-orientation: upright;
  -webkit-text-orientation: upright;
}
@media screen and (min-width: 1024px) {
  .lineup-reform .page-lineup-flow .flow-period span {
    bottom: -1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 0.25rem 2rem;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    -webkit-text-orientation: mixed;
  }
}

.page-lineup-faq {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4% 0;
}
.page-lineup-faq .faq__item {
  margin-bottom: clamp(1.25rem, 0.5rem + 2.4vw, 2rem);
}
.page-lineup-faq .faq__item .faq__question {
  display: flex;
  align-items: center;
  padding: clamp(1rem, 0.5rem + 1.6vw, 1.5rem) 1.5rem;
  cursor: pointer;
  position: relative;
  background-color: #F2EFE7;
}
.page-lineup-faq .faq__item .faq__question .question-label {
  width: 2rem;
  height: 2rem;
  background-color: #373329;
  color: #F9F7F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.page-lineup-faq .faq__item .faq__question .question-text {
  flex-grow: 1;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  padding-right: 3rem;
  font-weight: 500;
}
.page-lineup-faq .faq__item .faq__question .toggle-icon {
  position: absolute;
  right: 1.5rem;
  width: 1rem;
  height: 1rem;
}
.page-lineup-faq .faq__item .faq__question .toggle-icon::before, .page-lineup-faq .faq__item .faq__question .toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #373329;
  transition: transform 0.3s ease;
}
.page-lineup-faq .faq__item .faq__question .toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.1rem;
  transform: translateY(-50%);
}
.page-lineup-faq .faq__item .faq__question .toggle-icon::after {
  top: 0;
  left: 50%;
  width: 0.1rem;
  height: 100%;
  transform: translateX(-50%);
}
.page-lineup-faq .faq__item .faq__question.is-open .toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.page-lineup-faq .faq__item .faq__answer {
  display: none;
  padding: 1.5rem;
  border: 0.1rem solid #F2EFE7;
}
.page-lineup-faq .faq__item .faq__answer p {
  line-height: 1.8;
}

/* ===============================================
# page
=============================================== */
.page-section__wrapper {
  padding-top: 6rem;
  color: #373329;
}

.page-section-title {
  position: relative;
  width: 100%;
  height: 15rem;
  max-width: 87.5rem;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .page-section-title {
    height: auto;
    height: 24rem;
  }
}
.page-section-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
}
.page-section-title .overlay-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #F9F7F3;
  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;
}

.page-section__inner {
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  max-width: 87.5rem;
  margin: auto;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  color: #373329;
  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 #373329;
}

.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 #BDB6AC;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #9B8362;
}
.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 #373329;
  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: #373329;
    color: #F9F7F3;
  }
}
.page-category .category__tab li.category__tab-b {
  display: inline-block;
  padding: 0.2rem 1rem;
  background-color: #373329;
  color: #F9F7F3;
  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: 6rem;
  color: #373329;
}
.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: #856623;
  width: 1.5rem;
}
.single-section__wrapper .contact-btn {
  min-width: 18.75rem;
  border: 0.05rem solid #373329;
  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: #F9F7F3;
  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;
  padding-left: 1rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  color: #856623;
}
.single-contents__item h2.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.15rem;
  height: 100%;
  background-color: #919086;
}
.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);
}
.single-contents__item p {
  line-height: 2;
  padding-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 (max-width: 767px) {
  .single-list {
    font-size: 0.75rem;
  }
}
.single-list dt {
  width: 8rem;
  border-right: none;
  padding: 0.75rem 1.5rem;
  color: #856623;
  border-bottom: 0.05rem solid #919086;
}
@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 #919086;
  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 #856623;
  border-radius: 0.25rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.event-point h3 {
  color: #F9F7F3;
  text-align: center;
  background-color: #856623;
  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;
  gap: 1rem 3rem;
  max-width: 75rem;
  margin: auto;
  margin: 3.5rem auto 5rem;
}
@media screen and (min-width: 1024px) {
  .prenext {
    flex-direction: row;
    border-top: 0.05rem solid #BDB6AC;
    border-bottom: 0.05rem solid #BDB6AC;
  }
}
@media screen and (max-width: 767px) {
  .prenext {
    font-size: 0.75rem;
  }
}
.prenext .pre,
.prenext .next {
  border-top: 0.05rem solid #BDB6AC;
  border-bottom: 0.05rem solid #BDB6AC;
  padding: 1.5rem 4%;
  height: 4.5rem;
}
@media screen and (min-width: 1024px) {
  .prenext .pre,
  .prenext .next {
    border: 0;
  }
}
.prenext .pre {
  display: flex;
  align-items: center;
  padding: 0;
  width: 100%;
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .prenext .pre {
    width: auto;
    border-bottom: none;
    width: 40vw;
    height: 100px;
  }
}
.prenext .pre a {
  text-decoration: underline;
}
.prenext .next {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .prenext .next {
    width: auto;
    border-top: none;
    width: 40vw;
    height: 7rem;
  }
}
.prenext .next a {
  text-decoration: underline;
}
.prenext .contents-back {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}
@media screen and (min-width: 1024px) {
  .prenext .contents-back {
    width: 30%;
  }
}
.prenext .contents-back a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.prenext .contents-back a span {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
.prenext .contents-back .list-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prenext .contents-back .list-icon {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 0.5rem;
}
.prenext .contents-back .list-icon span {
  display: block;
  width: 1rem;
  height: 1px;
  background-color: currentColor;
}

.single-works .single-section__item {
  max-width: 87.5rem;
}
@media screen and (min-width: 1024px) {
  .single-works .single-section__item {
    display: flex;
    gap: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .single-works .single-section__item .single-left {
    width: 40%;
    position: sticky;
    top: 8rem;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.single-works .single-section__item .single-left .thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
.single-works .single-section__item .single-left .item-title {
  margin-top: 1.5rem;
}
.single-works .single-section__item .single-left .single-date {
  margin-bottom: 1.5rem;
}
.single-works .single-section__item .single-left .single-works-place,
.single-works .single-section__item .single-left .single-voice-family {
  display: flex;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  align-items: center;
}
.single-works .single-section__item .single-left .single-works-place svg,
.single-works .single-section__item .single-left .single-voice-family svg {
  width: 0.875rem;
  fill: #9F8A53;
  margin-right: 0.5rem;
}
.single-works .single-section__item .single-left .works-info {
  margin-top: 1.5rem;
  line-height: 2;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #919086;
}
.single-works .single-section__item .single-left .works-info p {
  margin-bottom: 1rem;
}
.single-works .single-section__item .single-left .works-info p:last-child {
  margin-bottom: 0;
}
.single-works .single-section__item .single-list {
  margin-bottom: 2.5rem;
}
.single-works .single-section__item .single-list dt {
  width: 7rem;
}
@media screen and (min-width: 1024px) {
  .single-works .single-section__item .single-list dt {
    width: 8rem;
  }
}
.single-works .single-section__item .single-list dd {
  width: calc(100% - 7rem);
}
@media screen and (min-width: 1024px) {
  .single-works .single-section__item .single-list dd {
    width: calc(100% - 8rem);
  }
}
@media screen and (min-width: 1024px) {
  .single-works .single-section__item .single-contents__item {
    width: 65%;
  }
}
.single-works .single-contents__item {
  z-index: -1;
}

.before-photo {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.before-photo .button {
  position: relative;
  background: #F8F8F8;
  color: #373329;
  padding: 1rem 2rem;
  border: 0.07rem solid #373329;
  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: #373329;
    color: #F8F8F8;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f4f4f4;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: 1s;
}
@media screen and (min-width: 1024px) {
  .modal-content {
    width: 80%;
  }
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-header h1 {
  margin: 1rem 0;
}

.modal-header {
  display: flex;
  justify-content: end;
  padding-top: 1rem;
}

.modalClose {
  font-size: 2rem;
  padding: 0 1rem;
  line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
  .modalClose:hover {
    cursor: pointer;
  }
}

.modal-body {
  padding: 1rem 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.modal-body .modal-image {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 768px) {
  .modal-body .modal-image {
    width: calc(33% - 0.75rem);
  }
}
.modal-body .modal-image img {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  display: block;
}
.modal-body .modal-caption {
  text-align: center;
  padding-top: 0.25rem;
}

/* ===============================================
# company
=============================================== */
.company__wrapper .company__item {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  width: 100%;
}
.company__wrapper .company__item tr {
  border-bottom: 0.05rem solid #BDB6AC;
}
.company__wrapper .company__item th {
  color: #B39D70;
  display: block;
  width: 100%;
  padding: 1rem 1rem 0;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 1024px) {
  .company__wrapper .company__item th {
    display: table-cell;
    width: 20%;
    padding: 2rem;
  }
}
.company__wrapper .company__item td {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 1024px) {
  .company__wrapper .company__item td {
    display: table-cell;
    padding: 2rem 4rem;
    width: 80%;
  }
}
.company__wrapper .company__item-content {
  padding-top: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
}

.company-map {
  background-color: #F2EFE7;
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
}
.company-map__inner {
  max-width: 87.5rem;
  margin: 0 auto;
}
.company-map__title {
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
  margin-bottom: 2rem;
}
.company-map__title span {
  display: block;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #9B8362;
}
.company-map .map-content {
  background-color: #F8F8F8;
  padding: 1.5rem 1.5rem 2rem;
}
.company-map .map-info {
  margin-top: 1.5em;
}
.company-map .map-info h3 {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  color: #9B8362;
}
.company-map .map-info p {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  margin-top: 0.5rem;
}
.company-map .map-info ul {
  margin-top: 1rem;
}
.company-map .map-info ul li {
  line-height: 1.8;
}

.map {
  width: 100%;
}
.map iframe {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 1024px) {
  .map iframe {
    aspect-ratio: 5/2;
  }
}

/* ===============================================
# footer
=============================================== */
.footer {
  background-color: #F9F7F3;
}
.footer .footer-mv__wrapper {
  position: relative;
  width: 100%;
  height: 20rem;
}
@media screen and (min-width: 1024px) {
  .footer .footer-mv__wrapper {
    height: 26rem;
  }
}
.footer .footer-contact__wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  width: 90%;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  transition: background-color 0.3s ease;
  background-color: #373329;
  height: 200px;
}
@media screen and (min-width: 1024px) {
  .footer .footer-contact__wrapper {
    bottom: 150px;
    height: 300px;
  }
}
.footer .footer-contact__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer-contact__wrapper:hover::before {
    left: 0;
  }
}
.footer .footer-contact__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem 6%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .footer .footer-contact__btn {
    padding: 2rem 4%;
  }
}
.footer .footer-contact__btn .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.footer .footer-contact__btn .section-title h2 {
  color: #F9F7F3;
}
.footer .arrow-animation {
  position: relative;
  width: 3rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .footer .arrow-animation {
    width: 3.5rem;
    height: 2.5rem;
  }
}
.footer .arrow-animation .arrow-right {
  position: absolute;
  width: 1.25rem;
  height: 1px;
  background-color: #373329;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .arrow-animation .arrow-right::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #373329;
  border-right: 1px solid #373329;
  transform: translateY(-50%) rotate(45deg);
}
.footer .arrow-animation .arrow-right.initial {
  transform: translateX(0);
}
.footer .arrow-animation .arrow-right.hover {
  transform: translateX(-250%);
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer-contact__wrapper:hover .arrow-animation .arrow-right.initial {
    transform: translateX(200%);
  }
  .footer .footer-contact__wrapper:hover .arrow-animation .arrow-right.hover {
    transform: translateX(0);
  }
}
.footer .contact-text {
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
}
.footer .contact-text .section-cp {
  display: block;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
}
.footer .section__wrapper {
  padding: calc(7.5rem + 50px) 4% 2.5rem;
}
@media screen and (min-width: 1024px) {
  .footer .section__wrapper {
    padding: calc(7.5rem + 100px) 4% 2.5rem;
  }
}
.footer .footer-menu__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer .footer-menu__wrapper {
    gap: 4rem;
    flex-direction: row;
    margin-bottom: 3rem;
  }
}
.footer .footer-policy__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  gap: 2rem;
  border-top: 0.08rem solid #919086;
}
.footer .footer-policy__wrapper .footer-policy__items {
  display: flex;
  gap: 2rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  margin: 0;
}
.footer .footer-copy__wrapper {
  text-align: center;
  padding: 1.5rem 0 4rem;
}
@media screen and (min-width: 1024px) {
  .footer .footer-copy__wrapper {
    padding-bottom: 0;
  }
}
.footer .footer-copy__wrapper p {
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
}
.footer .footer-menu__item {
  padding-bottom: 0.875rem;
}
.footer .footer-menu__child {
  padding-bottom: 1rem;
}
.footer .footer-menu__item-child {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding-bottom: 0.25rem;
}
.footer .footer-menu__item-child::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.1rem;
  vertical-align: middle;
  background-color: #373329;
  margin-right: 0.5rem;
}
.footer .footer-menu-right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.footer .footer-company-banner {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .footer .footer-company-banner {
    margin-left: auto;
  }
}
.footer .footer-company-banner img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 18.5rem;
}

.arrow-btn-img {
  width: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.g-menu-logo__inner,
.footer-logo__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2.5rem;
  gap: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .g-menu-logo__inner,
  .footer-logo__inner {
    flex-direction: row;
  }
}

.footer-logo img {
  max-width: 14rem;
  height: auto;
  margin-bottom: 2rem;
}
@media screen and (min-width: 480px) {
  .footer-logo img {
    max-width: 18rem;
  }
}

.footer-company .circle {
  border: 0.08rem solid #373329;
  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-company p .footer-tel {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
}
.footer-company p .footer-tel a {
  font-size: 200%;
  font-weight: 500;
}
.footer-company .footer-hours,
.footer-company .footer-closed {
  margin-top: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-sns__items {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  padding-top: 1.5rem;
}
.footer-sns__items li {
  display: inline-block;
}
.footer-sns__items li img {
  width: 2rem;
  margin-bottom: 0;
}

.g-menu-logo__inner {
  padding: 4rem 0 0;
  flex-direction: column;
}
.g-menu-logo__inner .company-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

/* ===============================================
# sitemap
=============================================== */
.sitemap__wrapper .sitemap__item {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.05rem solid #919086;
  color: #373329;
}
.sitemap__wrapper .sitemap__item .sitemap__item-link {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 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: 0.25rem 0;
}
.sitemap__wrapper .sitemap__item .sitemap__item-child li:not(:last-child)::after {
  content: "／";
  color: #919086;
  margin: 0px 0.625rem;
}

/* ===============================================
# privacy policy
=============================================== */
.policy__wrapper .policy__item-cp {
  padding-bottom: 5rem;
  font-weight: 400;
}
.policy__wrapper .policy__item:not(:last-child) {
  padding-bottom: 5rem;
}
.policy__wrapper .policy__item h2 {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  border-bottom: 0.1rem solid #919086;
  padding-bottom: 1rem;
  font-weight: 600;
}
.policy__wrapper .policy__item p {
  padding-top: 2rem;
  font-weight: 400;
}
.policy__wrapper .policy__item a {
  font-weight: 400;
}

/* ===============================================
# form
=============================================== */
.form .form-attention {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1rem;
  border-bottom: 0.05rem solid #BDB6AC;
}
.form .form-attention li {
  list-style: disc;
}
.form .form-attention li p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
.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 #373329;
  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 #919086;
  border-bottom: 0.08rem solid #919086;
  text-align: center;
}
.form .CF7_table .form-main-title i {
  margin-right: 0.25rem;
}
.form .CF7_table .form-inner {
  padding-bottom: 2.5rem;
}
.form .CF7_table h3 {
  display: flex;
  align-items: center;
  gap: 0 0.25rem;
  flex-wrap: wrap;
  font-weight: 500;
  color: #9B8362;
  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 #BDB6AC;
}
@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: #373329;
}
.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 #CFCFC8;
  background-color: #F8F8F8;
  padding: 0.625rem;
}
.form .CF7_table input,
.form .CF7_table select {
  border: 0.1rem solid #CFCFC8;
  background-color: #F8F8F8;
  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 (max-width: 767px) {
  .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: #373329;
  color: #F9F7F3;
}
.form .CF7_table input[type=checkbox] {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  border: 0.08rem solid #373329;
  padding: 0;
  margin-right: 0.25rem;
}
.form .CF7_table input[type=checkbox]:checked {
  border: 0.08rem solid #856623;
  background-color: #856623;
}
.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 #F9F7F3;
  border-bottom: 0.1rem solid #F9F7F3;
  content: "";
}
.form .CF7_table input::-moz-placeholder {
  color: #919086;
}
.form .CF7_table input::placeholder {
  color: #919086;
}
.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 (max-width: 767px) {
  .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 (max-width: 767px) {
  .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: #373329;
  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 #919086;
  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 #CFCFC8;
  background-color: #F8F8F8;
  display: block;
}

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

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

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

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

input[type=radio]:checked {
  background-color: #F9F7F3;
}
input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #856623;
  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: #BDB6AC;
  overflow: scroll;
  overflow-x: hidden;
  border: 0.1rem solid #919086;
  border-radius: 0.2rem;
}

.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: #BDB6AC;
  color: #373329;
}

.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: #373329;
}

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 #373329;
  border-bottom: 0.1rem solid #373329;
  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;
}

/* ===============================================
# thanks
=============================================== */
.thanks__wrapper {
  text-align: center;
}
.thanks__wrapper .section-title {
  flex-direction: column;
  gap: 1rem;
}
.thanks__wrapper .section-title h3 {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  color: #919086;
}
.thanks__wrapper .section-title span {
  position: relative;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  letter-spacing: 0.2rem;
  color: #919086;
}
.thanks__wrapper .section-title span::before, .thanks__wrapper .section-title span::after {
  content: "";
  position: absolute;
  width: 0.05rem;
  height: 100%;
  top: 0;
  background-color: #919086;
}
.thanks__wrapper .section-title span::before {
  left: -1.5rem;
  transform: translate(-50%) rotate(-15deg);
}
.thanks__wrapper .section-title span::after {
  right: -1.5rem;
  transform: translate(-50%) rotate(15deg);
}

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

.button-circle a {
  display: block;
  border: 0.1rem solid #373329;
  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: #F9F7F3;
    background-color: #373329;
  }
}
@media screen and (max-width: 767px) {
  .button-circle a {
    width: 65vw;
    padding: 1rem;
  }
}/*# sourceMappingURL=style.css.map */