@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
}

button {
  margin: 0px;
  padding: 0px;
}

img {
  width: 100%;
}

.body {
  width: 100%;
  height: 100vh;
  font-family: "Noto Serif JP", serif;
  color: #3A3A3A;
}
.body__bg {
  background-image: url(./img/body_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
}
.body__container {
  position: relative;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .body__container {
    padding: 0 2%;
  }
}
@media screen and (max-width: 900px) {
  .body__container {
    padding: 0;
    max-width: 640px;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.inner {
  padding-inline: 24px;
}
@media screen and (max-width: 900px) {
  .inner {
    padding-inline: 3%;
  }
}
.container {
  max-width: 384px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .container {
    max-width: 100%;
  }
}

/* header */
.header {
  position: fixed;
  width: 460px;
  top: 53%;
  transform: translateY(-50%);
  padding: 64px 0 60px;
  margin-left: 108px;
}
@media screen and (max-width: 1280px) {
  .header {
  margin-left: 60px;
}
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 0;
    margin-left: 0;
    width: 43vw;
    top: 42%;
  }
}
@media screen and (max-width: 900px) {
  .header {
    display: none;
  }
}
.header__container {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .header__container {
    padding: 0 2%;
  }
}
@media screen and (max-width: 640px) {
  .header__container {
    padding: 0 4%;
  }
}
.header__logo {
  width: 382px;
  margin-bottom: 80px;
  margin-inline: auto;
}
.header__logo img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    margin-top: 6%;
  }
}
.header__nav {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 61px;
  color: #fff;
}
.header__nav li {
  position: relative;
  width: 50%;
  padding-bottom: 19px;
}
.header__nav li:nth-child(odd) {
  width: 190px;
  margin-right: 48px;
}
.header__nav li:nth-child(even) {
  width: 140px;
}
.header__nav li.is-current a {
  color: #fff;
	opacity: 1;
}
.header__nav li.is-current a::before {
  content: "";
  background-image: url(./img/arrow-right-hover.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 7px;
  height: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.header__nav li a {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 8px;transition: .3s;
	white-space: nowrap;
  color: #fff;
	opacity: 0.7;
}

@media (any-hover: hover) {
  .header__nav li a:hover {
    opacity: .5;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    padding-bottom: 2%;
  }
  .header__nav li::after {
    width: 90px;
  }
  .header__nav li a {
    font-size: 1.6rem;
  }
  .header__nav li:nth-child(odd) {
    width: 180px;
    margin-right: 24px;
  }
  .header__nav li:nth-child(even) {
    width: 130px;
  }
}
.header__nav-sp-list {
  width: 175px;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-40%, -40%);
  color: #524427;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  position: relative;
}
.header__nav-sp-list > li {
  width: 100%;
  margin-bottom: 0;
  text-transform: uppercase;
}
.header__nav-sp-list > li a {
  display: block;
  position: relative;
}
.header__cta {
	/*
  background-image: url(./img/about_pic02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
  height: 237px;
	*/
  max-width: 460px;
}
.header__cta a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
.header__cta a::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(154, 115, 61, 0.6),
    rgba(197, 183, 162, 0.6)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
}
.header__cta__header {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 24px 9px 9px 0;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header__cta__header {
    font-size: 1.4rem;
  }
  .header__cta a {
    padding-inline: 3%;
  }
}

/* article */
.article {
  padding-block: 0 27px;
  width: 480px;
  max-width: 640px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
  overflow: hidden;
}
.article__inner {
  background: #fff;
  overflow: hidden;
}
.article__menu {
  position: relative;
  z-index: -1;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .article__inner {
    border: none;
  }
  .article__menu {
    position: fixed;
    top: 0;
    left: 0;
  }
}
.article.active .article__nav-sp {
  display: block;
  transition: 1s;
}
@media screen and (max-width: 640px) {
  .article.active .article__nav-sp {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .article {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-block: 56px 0;
  }
}
@media screen and (max-width: 640px) {
  .article {
    width: 100%;
  }
}
.article__header {
  position: relative;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 900px) {
  .article__header {
    width: 100%;
  }
}
.article__container {
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 30px;
  height: 80px;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .article__container {
    padding: 4%;
  }
}
@media screen and (max-width: 900px) {
  .article__container {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    background-color: #fff;
  }
  .article.active .article__container {
    background-color: #fff;
  }
}
.article__logo-sp {
  display: none;
  position: relative;
  z-index: 3;
  width: 224px;
}
.article__logo-sp img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 900px) {
  .article__logo-sp {
    display: block;
  }
}
.article__nav-sp {
  z-index: 1;
  height: 100vh;
  width: 100%;
  line-height: 3;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(to bottom, #F3F3EC, #FFF9EC);
  display: none;
  transition: 1s;
  overflow: hidden;
}
.article .ham-menu {
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 999;
  display: none;
}
.article .ham-menu.active .ham-menu__close {
  display: block;
  color: #524427;
}
.article .ham-menu.active .ham-menu__menu {
  display: none;
}
.article .ham-menu.active span:nth-child(1) {
  width: 35px;
  transform: rotate(-45deg);
  top: 50%;
}
.article .ham-menu.active span:nth-child(2) {
  display: none;
}
.article .ham-menu.active span:nth-child(3) {
  width: 35px;
  transform: rotate(45deg);
  top: 50%;
}
.article .ham-menu__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.article .ham-menu__wrapper span {
  display: inline-block;
  position: absolute;
  height: 1px;
  width: 100%;
  transition: .3s;
}
.article .ham-menu__wrapper span:nth-child(1) {
  width: 100%;
  top: 0;
  height: 1px;
  background-color: #00561F;
}
.article .ham-menu__wrapper span:nth-child(2) {
  width: 100%;
  top: 12px;
  height: 1px;
  background-color: #00561F;
}
.article .ham-menu__wrapper span:nth-child(3) {
  width: 100%;
  bottom: 0;
  height: 1px;
  background-color: #00561F;
}
@media screen and (max-width: 900px) {
  .article .ham-menu {
    display: block;
  }
}

/* sp-banner */
.banner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 900px) {
  .banner.show {
    opacity: 1;
    visibility: visible;
  }
  .banner {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    gap: 8px;
    width: 100%;
    max-width: 640px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .banner__item-link {
    display: block;
  }
  .banner__item.--first .banner__item-link {
    aspect-ratio: 108 / 70;
  }
  .banner__item.--second .banner__item-link {
    aspect-ratio: 259 / 70;
  }
}

/* 共通のテキスト設定 */
.section__title {
  display: block;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #D2D2D2;
  text-transform: uppercase;
  text-align: center;
}
.section__lead {
  margin-block: 20px 15px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
.section__lead.--center {
  text-align: center;
}
.section__lead.--head {
  margin-bottom: 28px;
}
.section__txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.813;
}
@media(max-width: 1024px) {
  .section__title {
    margin-bottom: 3%;
    font-size: 2rem;
  }
  .section__lead {
    margin-block: 3% 2%;
    font-size: 1.8rem;
  }
  .section__lead.--head {
    margin-bottom: 5%;
  }
  .section__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .section__title {
    font-size: 1.8rem;
  }
  .section__lead {
    font-size: 1.6rem;
  }
}

/* fv */
.fv {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 64px;
}
.fv::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 224px;
  height: 224px;
  background-color: #00561F;
  border-radius: 224px;
  z-index: 0;
}
.fv__limited {
  display: inline-block;
  margin-block: 10px 57px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.fv__limited strong {
  font-size: 2.4rem;
  margin-inline: 3px;
}
.fv__title {
  margin-bottom: 23px;
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: 700;
}
.fv__title span {
  display: block;
  margin-bottom: 24px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.fv__title strong {
	font-size: calc(48/40*1em);
  color: #00561F;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.fv__lead {
  margin-bottom: 40px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.688;
  letter-spacing: -0.019em;
}
.fv__lead-span {
  font-weight: 700px;
  border-bottom: solid 1px #524427;
  font-weight: 700;
}
.fv__slide {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 5px;
  overflow: hidden;
}
.fv__scroll {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.fv__title-br {
  display: none;
}
@media(max-width: 1024px) {
  .fv {
    margin-bottom: 5%;
  }
  .fv__limited {
    margin-block: 4% 11%;
    font-size: 1.4rem;
  }
  .fv__limited strong {
    font-size: 2rem;
  }
  .fv__title {
    margin-bottom: 5%;
    font-size: 3.6rem;
  }
  .fv__title span {
    margin-bottom: 3%;
  }
  .fv__lead {
    font-size: 1.4rem;
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 640px) {
  .fv__limited strong {
    font-size: 1.8rem;
  }
  .fv__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 345px) {
  .fv__limited {
    margin-top: 9%;
  }
  .fv__title-br {
    display: block;
  }
}

/* message */
.message {
  position: relative;
}
.message::before {
  content: "";
  background-image: url(./img/message_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
  position: absolute;
  top: -105px;
  right: -40px;
  z-index: 0;
}
.message__text {
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .message__text {
    margin-bottom: 4%;
  }
}

/* question */
.question {
  padding-top: 80px;
  position: relative;
}
.question::before {
  content: "";
  background-image: url(./img/question_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 227px;
  height: 227px;
  position: absolute;
  top: -38px;
  left: 14px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .question {
    padding-top: 15%;
  }
}
@media screen and (max-width: 360px) {
  .question {
    padding-top: 19%;
  }
}
.question__container {
  position: relative;
  z-index: 1;
}
.question__box {
  background-color: #F2F2F2;
  width: 100%;
}
.question__header {
  display: flex;
  cursor: pointer;
  background-color: #fff;
}
.question__btn {
  width: 33.3333333333%;
  padding: 5px;
  background-color: #F2F2F2;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  color: #727171;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .question__btn {
    padding: 4% 2%;
  }
}
.question__btn-txt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}
.question__btn-txt > span {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .question__btn-txt {
    font-size: 1.2rem;
  }
  .question__btn-txt > span {
    font-size: 1.4rem;
  }
}
.question__btn.active {
  background: #3A3A3A;
  opacity: 1;
}
.question__btn.active .question__btn-txt {
  color: #fff;
}
.question__btn.active .question__btn-txt > span {
  color: #fff;
}
.question__btn:not(.active) {
  border: solid 1px #fff;
  border-top: none;
}
.question__cnt {
  position: relative;
  padding: 32px 24px;
}
.question__cnt-lead {
  margin-block: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .question__cnt {
    padding: 4% 3%;
  }
  .question__cnt-lead {
    margin-block: 2%;
  }
}
.question__cnt-item {
  list-style-type: disc;
  list-style-position: inside;
}
.question__cnt-img {
  background-color: #3A3A3A;
  width: 100%;
  border-radius: 5px;
  /* overflow: hidden; */
  position: relative;

}
.question__cnt-img img {
  display: block;
}

/* answer */
.answer {
  padding-block: 90px 65px;
  
}
@media screen and (max-width: 1024px) {
  .answer {
    padding-block: 15% 10%;
  }
}
@media screen and (max-width: 360px) {
  .answer {
    padding-top: 18%;
  }
}
.answer02 {
  padding-block: 90px 65px;
  background: #353535;
  color: #fff;
  
}
@media screen and (max-width: 1024px) {
  .answer02 {
    padding-block: 15% 10%;
  }
}
@media screen and (max-width: 640px) {
  .answer02 {
    padding-top: 25%;
  }
}
.answer__lead {
  letter-spacing: 0.02em;
}
.answer__img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.answer__img::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 162px;
  height: 162px;
  background-color: #524427;
  border-radius: 162px;
  z-index: 0;
}
.answer__img span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .answer__img span {
    font-size: 1.4rem;
  }
}
.answer__item {
  margin-bottom: 65px;
}
.answer__items li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .answer__item {
    margin-bottom: 6%;
  }
  .answer__items li:last-child {
    margin-bottom: 0;
  }
}
.answer__bottom-container {
  padding: 0 24px;
  border-radius: 5px;
}
.answer__bottom-wrap {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 36px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .answer__bottom-container {
    padding: 0 3%;
  }
  .answer__bottom-wrap {
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 450px) {
  .answer__bottom-wrap {
    margin-bottom: 15%;
  }
}
.answer__bottom-wrap::before,
.answer__bottom-wrap::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 40px;
  height: 104px;
  position: absolute;
  bottom: -10px;
}
.answer__bottom-wrap::before {
  background-image: url(./img/answer_bottom_left.png);
  left: 0;
}
.answer__bottom-wrap::after {
  background-image: url(./img/answer_bottom_right.png);
  right: 0;
}
.answer__bottom-sub {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .answer__bottom-sub {
    font-size: 1.4rem;
  }
}
.answer__bottom-sub::before {  
  content: "";
  background-image: url(./img/answer_bottom.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 35px;
  height: 24px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.answer__bottom-title {
  display: block;
  padding-inline: 64px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.answer__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -40px;
}
@media screen and (max-width: 1024px) {
  .answer__bottom-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 900px) {
  .answer__btn {
    max-width: 400px;
    margin-inline: auto;
  }
}
.answer__btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
  text-align: center;
  width: 139px;
  height: 139px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: #00561F;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
    opacity: 0.7;
}
.answer__btn-circle-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-22px);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 450px) {
  .answer__btn-circle {
    width: 110px;
    height: 110px;
  }
}
.answer__btn-circle::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.answer__btn-circle.--first::before {
  background-image: url(./img/answer-slide1.svg);
  width: 71px;
  aspect-ratio: 71 / 78;
  top: -24px;
}
.answer__btn-circle.--second::before {
  background-image: url(./img/answer-slide2.svg);
  width: 66px;
  aspect-ratio: 66 / 72;
  top: -34px;
}
.answer__btn-circle.--third::before {
  background-image: url(./img/answer-slide3.svg);
  width: 85px;
  aspect-ratio: 85 / 73;
  top: -27px;
}
@media screen and (max-width: 450px) {
  .answer__btn-circle.--first::before {
    width: 61px;
  }
  .answer__btn-circle.--second::before {
    width: 56px;
  }
  .answer__btn-circle.--third::before {
    width: 75px;
  }
}
.answer__btn-circle span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .answer__btn-circle span {
    font-size: 1.4rem;
  }
}
.answer__btn-circle.--main {
  width: 200px;
  height: 200px;
}
@media (any-hover: hover) {
  .answer__btn-circle:not(.active):hover {
    opacity: 0.7;
  }
}
.answer__btn-circle.active {
  background-color: #00561F;
    opacity: 1;
}
.answer__btn-circle.active {
  color: #fff;
}
.answer__slider {
  width: 100%;
  max-width: 398px;
  padding-inline: 12px;
  margin: 0 auto;
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .answer__slider {
    margin-top: 5%;
  }
}
@media screen and (max-width: 900px) {
  .answer__slider {
    max-width: 100%;
  }
}
.answer__slider-lead {
  letter-spacing: 0.02em;
}
.answer__slider-item{
  position: relative;
}
.answer__slider__btn {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .answer__slider__btn {
    top: 55%;
  }
}
@media screen and (max-width: 900px) {
  .answer__slider__btn {
    top: 67%;
  }
}
@media screen and (max-width: 640px) {
  .answer__slider__btn {
    top: 55%;
  }
}
@media screen and (max-width: 450px) {
  .answer__slider__btn {
    top: 44%;
  }
}
.slick-prev-point,
.slick-next-point {
  cursor: pointer;
}
.answer__slider-item img {
  border-radius: 5px;
}

/* cta */
.cta {
	/*
  background-image: url(./img/about_pic02.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
	*/
}
.cta.--detail {
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.cta a {
  padding-top: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.cta a::before,
.cta.--detail::before {
  position: absolute;
  inset: 0; /* 上下左右0で全体をカバー */
  background: linear-gradient(
    to bottom,
    rgba(154, 115, 61, 0.6),
    rgba(197, 183, 162, 0.6)
  );
  backdrop-filter: blur(10px); /* 背景のぼかし効果！ */
  -webkit-backdrop-filter: blur(10px); /* Safari対応 */
  z-index: 0;
}
.cta__title {
  width: 100%;
  padding-block: 10px;
  background-color: #553D1C;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.cta__container {
  padding-inline: 34px;
  padding-bottom: 24px;
  position: relative;
  z-index: 2;
}
.cta__content-wrap {
  position: relative;
  max-width: 412px;
  margin-inline: auto;
}

@media screen and (max-width: 1024px) {
  .cta a {
    padding-top: 15%;
  }
  .cta__container {
    padding-inline: 5%;
    padding-bottom: 3%;
  }
}
@media screen and (max-width: 640px) {
  .cta__content-wrap {
    max-width: 350px;
  }
}
@media screen and (max-width: 450px) {
  .cta__content-wrap {
    padding-left: 2%;
  }
}
@media screen and (max-width: 1024px) {
  .cta__title {
    padding: 3% 0;
    font-size: 1.4rem;
  }
}
.cta__content-btn {
  max-width: 272px;
  margin: 0 auto;
  margin-top: 10px;
  text-align: center;padding: 6px 10px 6px 0;
  border-radius: 5px;
  border: 1px solid #00561F;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #524427;
  position: relative;
}
.cta__content-btn::after {
  content: "";
  width: 24px;
  height: 24px;
  transition: 0.4s;
  background-image: url(./img/arrow_next_c.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .header__cta a:hover .cta__content-btn,
  .cta a:hover .cta__content-btn {
    color: #00561F;
    border: solid 1px #00561F;
  }
}
@media screen and (max-width: 1024px) {
  .cta__content-btn {
    padding: 4% 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .cta__content-btn {
    max-width: 80%;
    padding: 2% 0;
    font-size: 1.6rem;
  }
  .cta__content-btn::after {
    width: 18px;
    height: 18px;
    right: 13px;
  }
  .cta__content-btn {
    margin-top: 2%;
  }
}

/* works */
.works {
  position: relative;
  padding-top: 80px;
  margin-bottom: 24px;
}
.works::before {
  content: "";
  background-image: url(./img/works_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 270px;
  height: 166px;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 0;
}
.works__items {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .works {
    padding-top: 15%;
    margin-bottom: 3%;
  }
  .works__items {
    margin-top: 4%;
  }
}
@media screen and (max-width: 360px) {
  .works {
    padding-top: 18%;
  }
}
.works__item {
  border-top: solid 1px #D2D2D2;
  border-bottom: solid 1px #D2D2D2;
}
.works__item:nth-child(2) {
  border-top: none;
}
.works__item-lead {
  display: block;
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #3A3A3A;
  position: relative;
}
@media(max-width: 1024px) {
  .works__item-lead {
    font-size: 1.6rem;
    padding-block: 2%;
  }
}
@media(max-width: 640px) {
  .works__item-lead {
    font-size: 1.4rem;
  }
}
@media(max-width: 440px) {
  .works__item-lead {
    padding-right: 8%;
  }
}
.works__item-lead::after {
  content: "";
  background-image: url(./img/arrow-updown.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media(max-width: 640px) {
  .works__item-lead::after {
    width: 12px;
  }
}
.works__item.is-open .works__item-lead::after {
  background-image: url(./img/arrow.svg);
}
/* 初期は閉じる／is-open で開く（ゆっくり開くように変更） */
.works__item-body {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
/* 開いたとき */
.works__item.is-open .works__item-body {
  max-height: 500px; /* 予想される高さより大きめにしておく */
  opacity: 1;
}
.js-works-toggle { cursor: pointer; }
.works__cnt {
  position: relative;
}
.works__item.is-open .works__cnt {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .works__items {
    margin-top: 5%;
  }
  .works__cnt {
    margin-bottom: 5%;
  }
}
.works__slide-arrow {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.main__slide li {
  cursor: pointer;
}
.main__slide li img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.thumbnail__slide {
  display: flex;
  margin-top: 8px;
}
.thumbnail__slide li {
  width: calc(25% - 3px) !important;
  cursor: pointer;
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  .thumbnail__slide {
    margin-top: 3%;
  }
  .thumbnail__slide li {
    width: calc(23%) !important;
    margin-right: 2%;
  }
}
.thumbnail__slide li img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.thumbnail__slide li:nth-of-type(4), .thumbnail__slide li:nth-of-type(8) {
  margin-right: 0;
}
.thumbnail__slide .slick-track {
  transform: unset !important;
  width: 100% !important;
}

/* voice */
.voice {
  padding-top: 80px;
  margin-bottom: 24px;
  position: relative;
}
@media(max-width: 1024px) {
  .voice {
    padding-top: 15%;
    margin-bottom: 3%;
  }
}
@media(max-width: 360px) {
  .voice {
    padding-top: 18%;
  }
}
.voice::before {
  content: "";
  background-image: url(./img/voice_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 227px;
  height: 227px;
  position: absolute;
  top: -98px;
  left: 0;
  z-index: 0;
}
.voice__item {
  border-bottom: solid 1px #D2D2D2;
}
.voice__item:nth-child(1) {
  border-top: solid 1px #D2D2D2;
}
.voice__item.is-open {
  padding-bottom: 40px;
}
@media(max-width: 1024px) {
  .voice__item.is-open {
    padding-bottom: 4%;
  }
}
.voice__item-lead {
  padding-block: 15px;
  padding-right: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
}
@media(max-width: 1024px) {
  .voice__item-lead {
    padding-block: 4%;
    font-size: 1.4rem;
  }
}
.voice__item-lead::after {
  content: "";
  background-image: url(./img/arrow-updown.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media(max-width: 640px) {
  .voice__item-lead::after {
    width: 12px;
  }
}
.voice__item.is-open .voice__item-lead::after {
  background-image: url(./img/arrow.svg);
}
/* 開いたとき（縦棒が横に回転して消える） */
.voice__item.is-open .voice__item-lead::before {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.voice__item-body img {
  padding-block: 4px 24px;
}
@media(max-width: 1024px) {
  .voice__item-body img {
    padding-block: 2% 4%;
  }
}
/* 初期は閉じる／is-open で開く（ゆっくり開くように変更） */
.voice__item-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
/* 開いたとき */
.voice__item.is-open .voice__item-body {
  max-height: 500px; /* 予想される高さより大きめにしておく */
  opacity: 1;
}
/* おまけ：見出しをクリック可能に */
.js-voice-toggle { cursor: pointer; }

/* staff */
.staff {
  padding-top: 80px;
  margin-bottom: 24px;
}
.staff__items {
  margin-top: 15px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.staff__item {
  display: flex;
  gap: 24px;
}
.staff__item:nth-of-type(n + 2) {
  display: none;
}
.staff__item:not(:last-child) {
  margin-bottom: 24px;
}
.staff__items.is-open .staff__item {
  display: flex;
}
.staff__img {
  max-width: 134px;
  width: 45%;
}
.staff__wrap {
  max-width: 215px;
  width: 55%;
}
.staff__name,
.staff__sub {
  display: block;
}
.staff__name {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #3A3A3A;
}
.staff__sub {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #00561F;
}
.staff__txt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.857;
  color: #333;
}
.staff__btn {
  max-width: 272px;
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  text-align: center;
}
.staff__btn-link {
  display: inline-block;
  width: 100%;
  padding: 6px 10px 6px 0;
  border-radius: 100px;
  border: 1px solid #3A3A3A;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #3A3A3A;
  transition: 0.4s;
  position: relative;
}
.staff__btn-link::after {
  content: "";
  width: 24px;
  height: 24px;
  transition: 0.4s;
  background-image: url(./img/arrow_down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.staff__items.is-open .staff__btn-link::after {
  transform: translateY(-50%) scaleY(-1);
}
@media (any-hover: hover) {
  .staff__btn-link:hover {
    color: #00561F;
    border: solid 1px #3A3A3A;
  }
}
@media screen and (max-width: 1024px) {
  .staff {
    padding-top: 15%;
    margin-top: 2%;
    margin-bottom: 3%;
  }
  .staff__item:not(:last-child) {
    margin-bottom: 5%;
  }
  .staff__item {
    gap: 3%;
  }
  .staff__name {
    font-size: 1.8rem;
  }
  .staff__btn-link {
    padding: 4% 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .staff__name {
    font-size: 1.6rem;
  }
  .staff__btn-link {
    max-width: 80%;
    margin-top: 2%;
    padding: 2% 0;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 360px) {
  .staff {
    padding-top: 18%;
  }
}

/* access */
.access {
  position: relative;
  padding-bottom: 40px;
  padding-top: 80px;
  background: #FAFAFA;
}
@media screen and (max-width: 1024px) {
  .access {
    padding-top: 15%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 360px) {
  .access {
    padding-top: 18%;
  }
}
.access__item {
  padding-inline: 16px;
  border-top: solid 1px #D2D2D2;
  border-bottom: solid 1px #D2D2D2;
  background-color: #fff;
}
.access__item:not(:nth-child(3)) {
margin-bottom: 16px;
}
.access__item.is-open {
  padding-bottom: 40px;
}
@media(max-width: 1024px) {
  .access__item:not(:nth-child(3)) {
    margin-bottom: 2%;
    }
  .access__item.is-open {
    padding-bottom: 4%;
  }
}
.access__item-lead {
  padding-block: 15px;
  padding-right: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
}
@media(max-width: 1024px) {
  .access__item-lead {
    padding-block: 4%;
    font-size: 1.4rem;
  }
}
.access__item-lead::after {
  background-image: url(./img/arrow-updown.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media(max-width: 640px) {
  .access__item-lead::after {
    width: 12px;
  }
}
.access__item.is-open .access__item-lead::after {
  background-image: url(./img/arrow.svg);
}
/* 開いたとき（縦棒が横に回転して消える） */
.access__item.is-open .access__item-lead::before {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
/* 初期は閉じる／is-open で開く（ゆっくり開くように変更） */
.access__item-body {
	/*
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
	*/
}
/* 開いたとき */
.access__item.is-open .access__item-body {
  max-height: 1000px; /* 予想される高さより大きめにしておく */
  opacity: 1;
}
/* おまけ：見出しをクリック可能に */
.js-access-toggle { cursor: pointer; }
.access__content {
  overflow: hidden;
}
.access__content iframe {
  width: 100%;
  aspect-ratio: 352 / 205;
  border-radius: 5px;
  height: auto;
  overflow: hidden;
}
.access__content--info {
  margin-block: 24px;
}
.access__content--info li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.813;
}
@media screen and (max-width: 1024px) {
  .access__content {
    margin-top: 6%;
  }
  .access__content--info {
    margin-block: 6%;
  }
  .access__content--info li {
    font-size: 1.4rem;
  }
}

/* flow */
.flow {
  margin-block: 80px;
}
.flow__container {
  max-width: 398px;
}
.flow__slider {
  width: 100%;
  max-width: 800px;
  padding-inline: 19px;
  margin: 0 auto;
  position: relative;
}
.flow__slider__btn {
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .flow__slider__btn {
    top: 55%;
  }
}
@media screen and (max-width: 640px) {
  .flow__slider__btn {
    top: 53%;
  }
}
@media screen and (max-width: 420px) {
  .flow__slider__btn {
    top: 41%;
  }
}
.flow__slider-item {
  text-align: center;
}
.flow__slider-img img {
  width: 100%;
  height: auto;
  display: block;
}
.flow__num {
  display: block;
  margin-block: 18px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.flow__lead {
  margin-bottom: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .flow {
    margin-block: 15%;
    padding-inline: 5%;
  }
  .flow__slider {
    padding-inline: 2%;
  }
  .flow__num {
    margin-block: 3%;
    font-size: 2rem;
  }
  .flow__lead {
    margin-bottom: 3%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 360px) {
  .flow {
    margin-top: 18%;
  }
}

/* cta02 */
.cta02__content {
  padding-inline: 10px;
  margin-top: 24px;
  padding-bottom: 15px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .cta02__content--txt {
    padding-inline: 2%;
    margin-top: 3%;
  }
}
.cta02__content--txt {
  padding: 5px 10px 10px;
  background-color: #fff;
}
.cta02__content--txt__box {
  width: 100%;
  height: 149px;
  overflow-y: scroll;
  padding: 10px 15px 10px 5px;
}
.cta02__content--txt__box::-webkit-scrollbar {
  width: 6px;
  margin-right: 10px;
}
.cta02__content--txt__box::-webkit-scrollbar-thumb {
  background-color: #c6b593;
  border-radius: 10px;
  margin-right: 10px;
}
.cta02__content--txt__box::-webkit-scrollbar-track {
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .cta02__content--txt {
    padding: 1%;
  }
  .cta02__content--txt__box {
    padding: 2% 2% 2% 1%;
  }
  .cta02__content--txt__box::-webkit-scrollbar {
    margin-right: 1%;
  }
  .cta02__content--txt__box::-webkit-scrollbar-thumb {
    margin-right: 1%;
  }
}
@media screen and (max-width: 640px) {
  .cta02__content--txt__box {
    max-width: 100%;
    padding: 2% 4%;
  }
}
.cta02__content--txt {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.cta02__content--items {
  padding-left: 15px;
}
.cta02__content--item {
  list-style-type: disc;
}
@media screen and (max-width: 1024px) {
  .cta02__content--items {
    padding-left: 3%;
  }
}

/* about */
.about {
  padding-top: 80px;
  padding-inline: 24px;
}
@media screen and (max-width: 1024px) {
  .about {
    padding-top: 15%;
    padding-inline: 3%;
  }
}
@media screen and (max-width: 360px) {
  .about {
    padding-top: 18%;
  }
}
.about__box {
  background-color: #F2F2F2;
  width: 100%;
}
.about__header {
  display: flex;
  cursor: pointer;
  background-color: #fff;
}
.about__btn {
  width: 33.3333333333%;
  padding-block: 16px;
  background-color: #F2F2F2;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  color: #3A3A3A;
  position: relative;
}
.about__btn-txt {
  font-size: 1.4rem;
  line-height: 1.357;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.about__btn.active {
  background: #3A3A3A;
  opacity: 1;
}
.about__btn.active .about__btn-txt {
  color: #fff;
}
.about__btn:not(.active) {
  border: solid 1px #fff;
  border-top: none;
}
@media screen and (max-width: 1024px) {
  .about__btn {
    padding: 4% 2%;
  }
}
.about__cnt {
  position: relative;
  padding: 32px 24px;
}
.about__cnt-lead {
  margin-block: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .about__cnt {
    padding: 4% 3%;
    font-size: 2rem;
  }
  .about__cnt-lead {
    margin-block: 2%;
  }
}
.about__cnt-item {
  list-style-type: disc;
  list-style-position: inside;
}
.about__cnt-img {
  width: 100%;
}
.about__cnt-img img {
  display: block;
}

/* company */
.company {
  padding: 80px 24px 64px;
}
@media screen and (max-width: 1024px) {
  .company {
    padding: 15% 3% 6%;
  }
}
@media screen and (max-width: 360px) {
  .company {
    padding-top: 18%;
  }
}
.company__content {
  overflow: hidden;
}
.company__table {
  width: 100%;
}
.company__table tbody {
  width: 100%;
}
.company__table tbody tr {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #D2D2D2;
  padding-block: 16px;
}
.company__table tbody tr th {
  position: relative;
}
.company__table tbody tr th::before {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #D2D2D2;
  position: absolute;
  top: 4px;
  right: 0;
}
.company__table tbody tr th,
.company__table tbody tr td {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.429;
}
.company__table tbody tr td span {
  font-weight: 500;
}
.company__table tbody tr td small {
 font-size: 0.875em;
}
.company__table tbody tr th {
  width: 111px;
}
.company__table tbody tr td {
  width: calc(100% - 111px );
  padding-left: 20px;
}
.company__table tbody tr:first-child {
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .company__table tbody tr {
    padding: 2%;
  }
  .company__table tbody tr td {
    padding-left: 2%;
  }
}
@media screen and (max-width: 640px) {
  .company__table tbody tr th {
    width: 90px;
  }
  .company__table tbody tr td {
    width: calc(100% - 90px );
  }
}

/* footer */
.footer {
  padding-block: 32px 24px;
}
.footer__logo {
  width: 237px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-block: 4% 3%;
  }
  .footer__logo {
    margin: 0 auto 3%;
  }
}
/* @media screen and (max-width: 900px) {
  .footer {
    margin-bottom: 70px;
  }
} */
.footer__copy {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #000;
}


/* contact */
.contact {
  padding-block: 80px 64px;
  background-color: #EEEEEE;
}
@media screen and (max-width: 1024px) {
  .contact {
    padding-block: 15% 8%;
  }
}
@media screen and (max-width: 360px) {
  .contact {
    padding-top: 18%;
  }
}
/* ************************************************************************************ */
/* ************************************************************************************ */
/* ************************************************************************************ */
/* フォーム部分 */
.contact__form {
  max-width: 900px;
  margin: auto;
  /* width:90%; */
}
.contact__form ul.form-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 80px;
}
.contact__form ul.form-tab button {
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: calc(50% - 24px);
  font-size: 24px;
  padding: 30px 0;
  cursor: pointer !important;
}

.form-content {
  width: 100%;
}
.form-content > div {
  width: 100%;
}
.form-content > div > form {
  width: 100%;
}

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

form ul {
  display: block;
  margin-bottom: 20px;
  margin-top: 40px;
}

.item-notice {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 13px;
  line-height: 1.5;
  font-size: 14px !important;
}
.item-notice strong {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}
.item-notice p {
  font-size: 14px;
}

form ul li:last-of-type {
  width: 100%;
}
form ul .item-name {
  color: #2C2928;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}
form ul .item-name span.item-req {
  color: #fff;
  background: #00561F;
  border-radius: 21px;
  text-align: center;
  padding: 6px 28px;
  font-size: 14px;
}
form ul .item-name span.item-any {
  color: #fff;
  background: #C0BBB5;
  border-radius: 21px;
  text-align: center;
  padding: 6px 28px;
  font-size: 14px;
}
form ul .item-name span.item-noreq {
  color: #3A3A3A;
  background: #D2D2D2;
  border-radius: 21px;
  text-align: center;
  padding: 6px 28px;
  font-size: 14px;
}
form ul li:last-of-type .item-form {
  width: 100%;
  display: block;
}
form ul li:last-of-type .item-form span {
  width: 100%;
  display: block;
  display: flex;
}
form ul li:last-of-type input {
  width: 100%;
  display: block;
}
form ul li:last-of-type textarea {
  width: 100%;
  display: block;
  resize: vertical;
  height: 140px;
}
form ul li:last-of-type input,
form ul li:last-of-type textarea {
  background-color: #FFF;
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
}

.section-form__check1 {
  text-align: center;
  font-size: 14px;
}

.contact__form ul.form-tab button.active {
  color: #186a68;
  border-top: 1px solid #186a68;
  border-bottom: 1px solid #186a68;
}

.submit_btn {
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
  border-radius: 100px;
  border: none;
  margin: auto;
  /* border: 1px solid #216724; */
  position: relative;
}
.submit_btn:hover {
  /* border: 1px solid rgba(108, 142, 120, 0.5); */
}

.section-form__check {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}
.section-form__check span {
  background: none;
}

form [type=submit] {
  background: #00561F;
  display: block;
  width: 100%;
  color: #FFF;
  text-align: center;
  border: none;
  padding: 16px;
  margin: auto;
  margin-top: 0px;
  position: relative;
  font-size: 18px;
  opacity: 1;
  transition: 0.3s;
}
form [type=submit]:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.submit_btn:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 6px;
  top: 50%;
  transform: translateY(-48%);
  right: 24px;
  background-size: cover !important;
  background-position: center center !important;
}

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

li.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
  display: flex;
  justify-content: space-between;
}
li.item-form.itemform_add_search span {
  width: calc(100% - 140px);
}
li.item-form.itemform_add_search button {
  width: 120px;
  background: #216724;
  border: none;
  color: #fff;
}

.form-caption {
  margin-bottom: 120px;
}
.form-caption p {
  font-size: 16px;
  text-align: center;
}

.section-form-privacy__cnt {
  height: 180px;
  overflow-y: scroll;
  padding: 18px;
  background-color: #FFF;
  margin-bottom: 32px;
}
.section-form-privacy__cnt h3 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  margin-top: 32px;
}
.section-form-privacy__cnt h3:first-of-type {
  margin-top: 0;
}
.section-form-privacy__cnt p {
  font-size: 14px;
}

.formError {
  z-index: 20 !important;
}

.xdsoft_datetimepicker {
  z-index: 21 !important;
}

@media screen and (max-width: 640px) {
  form ul {
    /* margin-bottom:32px; */
    margin-top: 5%;
    margin-bottom: 3%;
    flex-wrap: wrap;
  }
  form ul li:first-of-type, form ul li:last-of-type {
    width: 100%;
  }
  form ul li:first-of-type {
    margin-bottom: 16px;
  }
  .contact__form ul.form-tab::after {
    display: none;
  }
  .contact__form ul.form-tab button {
    width: calc(50% - 8px);
    font-size: 18px;
    padding: 16px 0;
  }
  form ul li:last-of-type input,
  form ul li:last-of-type textarea {
    font-size: 14px;
  }
  form [type=submit] {
    font-size: 18px;
  }
  .form-caption {
    margin-bottom: 32px;
  }
  .form-caption p {
    font-size: 14px;
    text-align: left;
  }
  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }
  .item-notice,
  li.item-form.itemform_add_search span {
    width: 100%;
  }
  .section-form__check {
    margin-bottom: 5%;
  }
}
.wpcf7-form-control {
  background-color: #fff;
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  width: 100%;
}
.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  align-items: center;
}
.wpcf7-form-control.wpcf7-radio label input {
  width: 24px;
  height: 24px;
}
.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: calc(100% - 36px);
}

.form-caption p,
form * {
  color: #3a3a3a;
}

.wpcf7-not-valid-tip {
  /*   display: none !important; */
}

.contact__form .privacy-policy-scroll {
  background: #FFF;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.contact__form .privacy-policy-scroll p {
  font-size: 1.4rem;
  line-height: 1.71;
  color: #2C2928;
}
.contact__form .privacy-policy-scroll p a {
  color: #5839FF;
}

.form__notice {
  font-size: 1.4rem;
  margin-top: 16px;
  line-height: 1.6;
}

.privacy-policy-scroll {
  background: #FFF;
  padding: 20px 16px;
  max-height: 200px;
  height: 100%;
  margin-top: 24px;
  overflow: hidden scroll;
}
.privacy-policy-scroll::-webkit-scrollbar {
  width: 8px;
}
.privacy-policy-scroll::-webkit-scrollbar-thumb {
  background: #A7A7A7;
  border-radius: 10px;
}
.privacy-policy-scroll::-webkit-scrollbar-track {
  background: #FFF;
}
.privacy-policy-scroll .simplebar-track {
  width: 0.3rem;
}
.privacy-policy-scroll .simplebar-scrollbar {
  width: 0.3rem;
}
.privacy-policy-scroll .simplebar-scrollbar::before {
  width: 0.3rem;
  background-color: #fff;
  opacity: 1;
}
.privacy-policy-scroll p {
  font-size: 1.4rem;
  line-height: 1.71;
}

@media (max-width: 640px) {
  .form__notice {
    font-size: 1.2rem;
    margin-top: 2%;
  }
}
.item-form.itemform_add_search {
  display: flex !important;
  gap: 16px;
}
.item-form.itemform_add_search .wpcf7-form-control-wrap {
  width: calc(100% - 96px);
}
.item-form.itemform_add_search button.wpcf7c-elm-step1 {
  width: 80px;
  background: #00561F;
  color: #FFF;
  font-size: 1.2rem;
  text-align: center;
}

span.wpcf7-form-control.wpcf7-radio {
  background: unset;
}

.privacy-box {
  background: #FFF;
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px 26px;
  box-sizing: border-box;
}
.privacy-box h3 {
  color: #111111;
  font-size: 1.6rem;
  line-height: 1.71;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2%;
}
.privacy-box p {
  color: #111111;
  font-size: 1.4rem;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
.privacy-box p:not(:last-of-type) {
  margin-bottom: 4%;
}

@media (max-width: 1024px) {
  .privacy-box {
    padding: 2% 2% 3%;
  }
}
@media (max-width: 640px) {
  .privacy-box {
    padding: 4% 4% 5%;
  }
}
.section-form__check1,
.section-form__check2 {
  padding: 24px;
  text-align: center;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  background: none;
}
span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item-label {
  font-size: 1.4rem;
  color: #3A3A3A;
  line-height: 1;
}
span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wpcf7-form-control-wrap[data-name=radio-plan] span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control.wpcf7-radio label input[type=radio] {
  width: 18px;
  height: 18px;
  border: 1px solid #111111;
  /* 枠線の色 */
  border-radius: 50%;
  /* 丸くする */
  /* 背景色 */
  -moz-appearance: none;
  appearance: none;
  /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none;
  /* Safari対応 */
  outline: none;
  /* フォーカス時の枠線を消す */
  cursor: pointer;
  /* ポインタを変更 */
}
.wpcf7-form-control.wpcf7-radio label input[type=radio]:checked {
  background-color: #000000 !important;
  /* チェック時の背景色 */
  box-shadow: inset 0 0 0 4px #FFFFFF;
  /* 中央に白い丸を作る */
}
.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: 100%;
}

/* チェック時のスタイル */
.wpcf7-list-item {
  margin: 0;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.wpcf7-list-item input[type=radio] {
  width: auto !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.section-form__check1 .wpcf7-list-item,
.section-form__check2 .wpcf7-list-item {
  justify-content: center;
}
/*# sourceMappingURL=page-client.css.map */

/* 250311 */
form ul li:last-of-type .item-form span.people-label {
    font-size: 1.6rem;
    padding: 6px 0;
}

/* 251113 */
form * {
}
form ul .item-name {
  color: #524427;
}
form ul .item-name span.item-req {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 32px;
  padding: 0;
  border-radius: 30px;
  background: #00561F;
  color: #FFF;
}
form ul .item-name span.item-noreq {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 32px;
  padding: 0;
  border-radius: 30px;
  background: #D2D2D2;
  color: #3a3a3a;
}
form .reserve-notice {
  color: #524427;
  margin-top: 18px;
  font-size: 1.4rem;
}
form .form__notice {
  color: #524427;
}
form .item-form.itemform_add_search button.wpcf7c-elm-step1 {
  color: #FFF;
}
form [type=submit] {
  color: #FFF;
}

.privacy-box * {
  color: #524427!important;
}

/* 20260116 */
.section__ul-li{
  position: relative;
  padding-left: 1em;
}
.section__ul-li::before{
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;          
}

.question__arrow{
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  background-size: contain;
  cursor: pointer;
  z-index: 5;

}

/* 左右それぞれ別画像 */
.question__arrow--prev{
  left: -10px;
  background-image: url("./img/question-arrow-left.png");
}

.question__arrow--next{
  right: -10px;
  background-image: url("./img/question-arrow-right.png");
}

.access__text{
  padding-bottom: 2em;
}


