@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=ZCOOL+XiaoWei&family=Zen+Antique+Soft&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/***************************

foundation/base.scss

***************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: #111111;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

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

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

*:has(> wbr) {
  white-space: pre-wrap;
  word-break: keep-all;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 107px;
  background: transparent;
}

.header__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header__logo {
  width: 253px;
  height: 107px;
  background: #fff;
  border-radius: 0 0 44px 0;
}
.header__logo a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 24px 0 0 43px;
}
.header__logo img {
  width: 155.374px;
}

.gnav {
  line-height: 1.6;
  margin: 0 0 10px auto;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 44px;
}

.header__nav__item {
  flex: 0 0 auto;
}
.header__nav__item a {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
}

.header-toggleContents {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9988;
  width: 100%;
  height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  color: #222;
  background: rgba(255, 255, 255, 0.97);
  transition: opacity 0.5s, visibility 0.5s;
  visibility: hidden;
  opacity: 0;
  padding: 140px 24px 50px;
}
.header:has(input[name=toggle]:checked) + .header-toggleContents {
  opacity: 1;
  visibility: visible;
}

.header-toggleContents__nav {
  display: block;
}

.header-toggleContents__list {
  max-width: 320px;
  margin: 0 auto;
}
.header-toggleContents__list li {
  border-bottom: 1px solid rgba(77, 139, 114, 0.24);
}
.header-toggleContents__list a {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.6;
}

/* toggle button */
.header__toggleBtn {
  display: block;
  width: 95px;
  height: 95px;
  overflow: hidden;
  cursor: pointer;
  background: #4d8b72;
  border-bottom-left-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  align-self: flex-start;
}

.header__toggleBtn__bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 26px;
  height: 2px;
  background-color: #fff;
  outline: 1px solid transparent;
  transition: background-color 0.3s, transform 0.3s;
  margin: 11px 0;
}
.header__toggleBtn__bar:before, .header__toggleBtn__bar:after {
  position: absolute;
  left: 0;
  display: block;
  width: 26px;
  height: 2px;
  content: "";
  background-color: #fff;
  outline: 1px solid transparent;
  transition: transform 0.3s;
}
.header__toggleBtn__bar:before {
  top: 9px;
}
.header__toggleBtn__bar:after {
  top: -9px;
}
input[name=toggle]:checked + .header__toggleBtn__bar {
  background-color: transparent;
}
input[name=toggle]:checked + .header__toggleBtn__bar:before {
  transform: translateY(-9px) rotate(-45deg);
}
input[name=toggle]:checked + .header__toggleBtn__bar:after {
  transform: translateY(9px) rotate(45deg);
}

.header__toggleBtn__text {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

input[name=toggle] {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    height: 65px;
  }
  .header__logo {
    width: 147px;
    height: 68px;
    border-radius: 0 0 25px 0;
  }
  .header__logo a {
    padding: 13px 0 0 23px;
  }
  .header__logo img {
    width: 98.742px;
  }
  .gnav {
    display: none;
  }
  .header-toggleContents {
    padding-top: 100px;
  }
  .header__toggleBtn {
    width: 64px;
    height: 65px;
    gap: 5px;
  }
  .header__toggleBtn::before {
    top: -149px;
    right: -152px;
    width: 216px;
    height: 213px;
  }
  .header__toggleBtn__bar {
    width: 19px;
  }
  .header__toggleBtn__bar:before, .header__toggleBtn__bar:after {
    width: 19px;
  }
  .header__toggleBtn__bar:before {
    top: 7px;
  }
  .header__toggleBtn__bar:after {
    top: -7px;
  }
  input[name=toggle]:checked + .header__toggleBtn__bar:before {
    transform: translateY(-7px) rotate(-45deg);
  }
  input[name=toggle]:checked + .header__toggleBtn__bar:after {
    transform: translateY(7px) rotate(45deg);
  }
  .header__toggleBtn__text {
    top: 48px;
    left: 19px;
    font-size: 9px;
  }
}
/***************************

layout/_footer.scss

***************************/
.footer {
  position: relative;
  z-index: 1;
  padding: 57px 75px 28px;
  background: #fff;
  color: #222;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer__info {
  flex: 0 0 auto;
}

.footer__logo {
  width: 121px;
  margin: 0 0 22px;
}
.footer__logo a {
  display: block;
}

.footer__address {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.9;
}
.footer__address a {
  color: #4d8b72;
  text-decoration: underline;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 80px;
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 18px;
}

.footer__navList {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 55px;
}
.footer__navList a {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  white-space: nowrap;
}

.footer__copyright {
  display: block;
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 56px 24px 68px;
    text-align: center;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    width: 169px;
    margin: 0 auto 26px;
  }
  .footer__address {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 2;
  }
  .footer__right {
    align-items: center;
    gap: 45px;
    padding-top: 39px;
  }
  .footer__navList {
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }
  .footer__navList a {
    font-size: 16px;
    line-height: 1;
  }
  .footer__copyright {
    position: relative;
    width: 100%;
    padding-top: 36px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
  }
  .footer__copyright:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: #e5e5e5;
  }
}
@media screen and (max-width: 550px) {
  .footer {
    padding-right: 24px;
    padding-left: 24px;
  }
  .footer__address {
    font-size: 14px;
  }
}
/***************************

layout/_slick.scss

***************************/
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick/slick.eot");
  src: url("../fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick/slick.woff") format("woff"), url("../fonts/slick/slick.ttf") format("truetype"), url("../fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url("../img/common/btn-prev.png") no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url("../img/common/btn-next.png") no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date {
    font-size: 1rem;
  }
  .slick-archive__title {
    font-size: 1.2rem;
  }
  .slick-archive__label {
    font-size: 1rem;
  }
}
/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin: 20px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #1f1f1f;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 3.5;
}

.wp-pagenavi span.current {
  color: #fff;
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .extend + .larger {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .wp-pagenavi a, .wp-pagenavi span {
    width: 2.5em;
  }
}
.pager {
  margin: 20px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #1f1f1f;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}
/***************************

layout/_breadcrumbs.scss

***************************/
.breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}
.breadcrumbs a {
  color: #fff;
  display: block;
}

.breadcrumbs__item {
  position: relative;
}
.breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}
.breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}
.breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

/***************************

layout/_page-title.scss

***************************/
/***************************

object/component/_heading.scss

***************************/
/***************************

object/component/_box.scss

***************************/
.container {
  max-width: 1310px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 1090px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/***************************

object/component/_button.scss

***************************/
/***************************

object/component/_form.scss

***************************/
[type=text],
[type=email],
[type=tel],
select,
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 1.3rem;
  padding: 12px 15px;
  border-radius: 3px;
  font-family: inherit;
}
@media screen and (min-width: 451px) {
  [type=text],
  [type=email],
  [type=tel],
  select,
  textarea {
    font-size: 1.6rem;
  }
}
[type=text]:focus-visible,
[type=email]:focus-visible,
[type=tel]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-color: #4d8b72;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #4d8b72 50%), linear-gradient(135deg, #4d8b72 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

*::placeholder {
  color: #ddd;
  font-size: 1.5rem;
  font-weight: 500;
}

.wpcf7-list-item {
  padding: 10px 0;
  display: inline-block;
  margin-left: 0 !important;
}

.wpcf7-list-item input[type=radio],
.wpcf7-list-item input[type=checkbox] {
  display: none;
}

.wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 25px;
  cursor: pointer;
  margin-right: 30px;
  line-height: 1.4;
  font-size: 1.5rem;
  display: inline-block;
}

.wpcf7-list-item .wpcf7-list-item-label::after,
.wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transition: all 0.3s;
}

.wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  border-radius: 50%;
}

.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 4px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: #3351BF;
  opacity: 0;
  transform: scale(0);
  z-index: 1;
  border-radius: 50%;
}

.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 4px;
  top: 1px;
  width: 7px;
  height: 11px;
  border-bottom: 4px solid #3351BF;
  border-right: 4px solid #3351BF;
  opacity: 0;
  transform: scale(0) rotate(45deg);
  z-index: 1;
}

.wpcf7-list-item input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

/***************************

object/object/project/_home.scss

***************************/
.top-mv {
  height: 200vh;
  padding-top: 120vh;
  position: relative;
  z-index: 1;
}
.top-mv:before {
  content: "";
  width: 100%;
  height: 100vh;
  background: url(../img/top/main_image.jpg) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
.top-mv:after {
  content: "";
  width: 100%;
  height: calc(100% + 500px);
  background: #3D3128;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s ease;
}
.top-mv.is-after-show:after {
  opacity: 0.5;
}

.top-mv__text {
  font-family: "Zen Antique Soft", serif;
  color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
  position: relative;
  z-index: 5;
}

.top-mv__copy {
  font-family: "ZCOOL XiaoWei", sans-seri;
  font-size: 9rem;
}

.top-story {
  background: url(../img/top/green_bg_top.svg) no-repeat top/100% 12.6vw, linear-gradient(to bottom, transparent 12.4vw, #4D8B72 12.4vw);
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.top-story__title {
  text-align: center;
  color: #fff;
  font-family: "Yesteryear", cursive;
  font-size: 4.4rem;
  padding-bottom: 90px;
  background: url(../img/top/story_arrow.svg) no-repeat bottom;
}

.top-story__label {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: min(120px, 20vw);
}

/* ─── 1. 本のスクロールセクション ─── */
.book-scroll-section {
  height: 800vh;
  position: relative;
  background-color: #4D8B72;
  width: 100%;
  max-width: 1920px; /* ここを追加（他のエリアの最大幅に合わせてください） */
  margin: 0 auto;
  overflow: clip;
}

/* ─── 2. 本のベース（影固定とテクスチャのレイヤー管理） ─── */
.book-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; /* 垂直方向中央へ */
  overflow: hidden;
  width: 100%;
}

.book-base {
  --base-w: 1500px;
  --base-h: 880px;
  width: min(95vw, 153.4090909091vh);
  aspect-ratio: 1500/880;
  position: relative;
  perspective: 3000px;
  background-image: url("../img/top/book-back.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ★質感テクスチャ（既存のまま） */
.book-base::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 0;
  left: 25px;
  right: 25px;
  z-index: 100;
  pointer-events: none;
  background-image: none;
  background-size: cover;
  opacity: 0.6;
  mix-blend-mode: multiply;
  clip-path: polygon(0% 5%, 5% 3.5%, 10% 2%, 15% 1%, 20% 0.3%, 25% 0%, 30% 0.3%, 35% 1%, 40% 2%, 46% 3.5%, 50% 5.5%, 54% 3.5%, 60% 2%, 65% 1%, 70% 0.3%, 75% 0%, 80% 0.3%, 85% 1%, 90% 2%, 95% 3.5%, 100% 5%, 100% 95%, 95% 93.5%, 90% 92%, 85% 91%, 80% 90.3%, 75% 90%, 70% 90.3%, 65% 91%, 60% 92%, 54% 93.5%, 50% 95.5%, 46% 93.5%, 40% 92%, 35% 91%, 30% 90.3%, 25% 90%, 20% 90.3%, 15% 91%, 10% 92%, 5% 93.5%, 0% 95%) !important;
}

/* ─── 4. 左側・右側・ページ共通設定 ─── */
.book-page {
  position: absolute;
  top: 15px;
  bottom: 0;
  left: 25px;
  right: 25px;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  clip-path: polygon(0% 5%, 5% 3.5%, 10% 2%, 15% 1%, 20% 0.3%, 25% 0%, 30% 0.3%, 35% 1%, 40% 2%, 46% 3.5%, 50% 5.5%, 54% 3.5%, 60% 2%, 65% 1%, 70% 0.3%, 75% 0%, 80% 0.3%, 85% 1%, 90% 2%, 95% 3.5%, 100% 5%, 100% 95%, 95% 93.5%, 90% 92%, 85% 91%, 80% 90.3%, 75% 90%, 70% 90.3%, 65% 91%, 60% 92%, 54% 93.5%, 50% 95.5%, 46% 93.5%, 40% 92%, 35% 91%, 30% 90.3%, 25% 90%, 20% 90.3%, 15% 91%, 10% 92%, 5% 93.5%, 0% 95%) !important;
}

.page-left, .page-right-box {
  width: 50% !important;
  height: 100% !important;
  position: relative;
}

.page-left img, .page-right-box img,
.page-right-box picture {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.page-left img, .page-right-box img {
  object-fit: cover !important;
}

.page-right-box {
  transform-style: preserve-3d;
  transform-origin: left center;
  will-change: transform;
  backface-visibility: hidden;
}

.page-right-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; /* 右ページの左端（＝中央） */
  width: 50px; /* 影の幅 */
  z-index: 99; /* ページ内の画像より前面に */
  pointer-events: none;
  background: linear-gradient(to right, rgba(135, 108, 80, 0.2) 0%, transparent 100%);
}

.page-right-box img {
  z-index: 1;
}

.page-front, .page-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  box-shadow: none !important;
}

.page-front {
  z-index: 2;
}

.page-back {
  transform: rotateY(180deg);
  z-index: 1;
}

.top-greeting {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 160px 0 120px;
  background: url(../img/top/greeting_bg.png) no-repeat right top;
  background-color: #fff;
}

.top-greeting__inner {
  position: relative;
  z-index: 1;
  color: #222;
}

.top-greeting__label {
  color: #4D8B72;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 17px;
}

.top-greeting__title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 58px;
}

.top-greeting__body {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
}
.top-greeting__body p {
  margin-bottom: 24px;
}
.top-greeting__body p:last-child {
  margin-bottom: 0;
}

.top-greeting__signature {
  margin-top: 28px;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.65;
}
.top-greeting__signature p:last-child {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}
.top-greeting__signature span {
  display: inline-block;
  margin-right: 17px;
  font-size: 16px;
  font-weight: 700;
}

.top-company {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F6F6F6;
  padding: 80px 0 115px;
}

.top-company__inner {
  position: relative;
  width: min(100%, 1530px);
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.top-company__image {
  position: relative;
  z-index: 1;
  margin: 0;
}
.top-company__image img {
  position: relative;
  z-index: 1;
  border-radius: 12px min(330px, 15vw) 12px min(330px, 15vw);
}
.top-company__image:before, .top-company__image:after {
  content: "";
  position: absolute;
}
.top-company__image:before {
  left: max(-35%, -209px);
  bottom: 20px;
  z-index: 0;
  width: min(63%, 394px);
  aspect-ratio: 394/387;
  background: url(../img/top/company_deco01.png) no-repeat center/contain;
}
.top-company__image:after {
  left: max(-10%, -62px);
  bottom: max(-10%, -63px);
  z-index: 2;
  width: min(35%, 261px);
  aspect-ratio: 261/256;
  background: url(../img/top/company_deco02.png) no-repeat center/contain;
}

.top-company__content {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.top-company__label {
  width: 100%;
  color: #4D8B72;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}

.top-company__title {
  width: 100%;
  color: #222;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 60px;
}

.top-company__list {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.top-company__row {
  display: grid;
  grid-template-columns: 192px minmax(0, 1fr);
  gap: 0;
  margin-bottom: 21px;
}
.top-company__row:last-child {
  margin-bottom: 0;
}
.top-company__row dt,
.top-company__row dd {
  margin: 0;
}

.top-contact {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to top, #fff 184px, #F6F6F6 184px);
  margin: 0 auto;
  padding: 118px 0 380px;
}
.top-contact:after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 185px;
  background: #F6F6F6;
  clip-path: ellipse(63% 100% at 50% 0%);
  pointer-events: none;
}

.top-contact__inner {
  position: relative;
  width: min(100%, 1920px);
  min-height: 900px;
  margin: 0 auto;
  padding-top: 118px;
}

.top-contact__panel {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  width: calc(100% - 30px);
  margin: 0 auto;
  background: #fff;
  text-align: center;
  padding: 90px 20px 80px;
}
.top-contact__panel:before {
  content: "";
  display: block;
  width: 1px;
  height: 84px;
  margin: 0 auto;
  background: #4D8B72;
  position: absolute;
  left: 0;
  right: 0;
  top: -35px;
}

.top-contact__label {
  color: #4D8B72;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 16px;
}

.top-contact__title {
  color: #222;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 41px;
}

.top-contact__text {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
  margin-bottom: 60px;
}

.top-contact__button {
  max-width: 370px;
  width: 100%;
  height: 87px;
  margin: 0 auto;
}
.top-contact__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #4D8B72;
  border-radius: 3px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
}

.top-contact__image {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
}
.top-contact__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-contact__image--tree {
  left: 0;
  top: 195px;
  width: 243px;
  height: 239px;
  border-radius: 0 120px 120px 0;
}

.top-contact__image--house {
  left: calc(50% - 750px);
  top: 426px;
  width: 370px;
  height: 364px;
  border-radius: 150px 6px 150px 6px;
}

.top-contact__image--sofa {
  right: calc(50% - 796px);
  top: 86px;
  width: 243px;
  height: 239px;
  border-radius: 6px 120px 6px 120px;
}

.top-contact__image--flower {
  right: 0;
  top: 206px;
  width: 101px;
  height: 210px;
  border-radius: 210px 0 0 210px;
}

.top-contact__image--work {
  right: calc(50% - 883px);
  top: 432px;
  width: 483px;
  height: 298px;
  border-radius: 150px;
}

/* ─── レスポンシブ ─── */
@media screen and (max-width: 1100px) {
  .top-contact {
    padding: 60px 15px 195px;
  }
  .top-contact__image--work {
    right: -30px;
    top: 0;
    width: 173px;
    height: auto;
    border-radius: 150px;
  }
  .top-contact__image--house {
    left: 14px;
    top: auto;
    bottom: 85px;
    width: 154px;
    height: auto;
    border-radius: 60px 6px 60px 6px;
  }
  .top-contact__image--tree,
  .top-contact__image--flower,
  .top-contact__image--sofa {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__text {
    width: calc(100% - 48px);
    max-width: 330px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.35;
  }
  .top-mv__copy {
    margin-bottom: 20px;
    font-size: 5rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }
  .book-base {
    /* スマホは少し余白を多めに取らないと「窮屈」に見えやすいです */
    width: 188vw;
    transform: translateX(-50%);
    aspect-ratio: 660/500;
  }
  .book-sticky-container {
    width: 200vw;
  }
  .page-right-box picture {
    display: block;
    background: #fff;
  }
  .page-right-box img {
    object-fit: contain !important;
    object-position: top 26% left 50%;
  }
  .top-story__label__large {
    font-size: 2.4rem;
    line-height: 3.6rem;
    display: block;
    margin-top: 10px;
  }
  .top-greeting {
    padding: 80px 0 80px;
    background-size: 120px auto;
  }
  .top-greeting__label {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .top-greeting__title {
    font-size: 30px;
    margin-bottom: 34px;
  }
  .top-greeting__body {
    font-size: 15px;
    line-height: 1.75;
  }
  .top-greeting__body br {
    display: none;
  }
  .top-greeting__signature {
    margin-top: 28px;
    font-size: 14px;
  }
  .top-greeting__signature p:last-child {
    font-size: 20px;
  }
  .top-greeting__signature span {
    margin-right: 12px;
    font-size: 14px;
  }
  .top-company {
    padding: 58px 0 72px;
  }
  .top-company__inner {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0 24px;
  }
  .top-company__inner:before {
    left: -120px;
    top: 225px;
    width: 260px;
    height: 255px;
  }
  .top-company__inner:after {
    left: 18px;
    top: 348px;
    width: 155px;
    height: 152px;
  }
  .top-company__image {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 661px);
    height: auto;
    aspect-ratio: 661/649;
    margin: 36px auto 32px;
    border-radius: 0 46% 8px 0;
  }
  .top-company__content {
    display: block;
  }
  .top-company__label {
    position: static;
    font-size: 15px;
    margin-bottom: 12px;
  }
  .top-company__title {
    position: static;
    font-size: 30px;
    margin-bottom: 40px;
  }
  .top-company__list {
    position: static;
    width: auto;
    font-size: 14px;
    line-height: 1.7;
  }
  .top-company__row {
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 18px;
  }
  .top-contact__inner {
    min-height: 760px;
    padding-top: 0;
  }
  .top-contact__inner:after {
    height: 110px;
  }
  .top-contact__panel {
    width: calc(100% - 30px);
    height: 422px;
    margin: 0 auto;
    padding-top: 57px;
  }
  .top-contact__panel:before {
    height: 48px;
    top: -24px;
  }
  .top-contact__line {
    height: 49px;
    margin: -82px auto 52px;
  }
  .top-contact__label {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .top-contact__title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  .top-contact__text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 57px;
  }
  .top-contact__button {
    width: min(100%, 314px);
    height: 81px;
  }
  .top-contact__button a {
    gap: 74px;
    font-size: 19px;
  }
}
@media screen and (max-width: 450px) {
  .top-greeting__body {
    font-size: 14px;
  }
  .top-greeting__signature {
    text-align: left;
  }
  .top-greeting__signature span {
    display: block;
    margin-right: 0;
  }
  .top-company__inner {
    padding: 0 18px;
  }
  .top-company__list {
    font-size: 14px;
  }
  .top-contact__image--tree,
  .top-contact__image--flower,
  .top-contact__image--sofa {
    display: none;
  }
}
/***************************

object/object/project/_home.scss

***************************/
/***************************

object/object/project/_home.scss

***************************/
.faq01__dl {
  border-bottom: 1px dotted #bbb;
  margin: 0;
  padding: 0 50px 0px 0;
  position: relative;
}

.faq01__dl:nth-of-type(1) {
  border-top: 1px dotted #bbb;
}

.faq01__dl:after,
.faq01__dl:before {
  content: "";
  width: 1px;
  height: 15px;
  border-bottom: 1px solid #BABABA;
  border-right: 1px solid #BABABA;
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}

.faq01__dl:before,
.faq01__dl.is-open:after {
  transform: rotate(90deg);
}

.faq01__dl__dt {
  position: relative;
  padding: 25px 0 25px 60px;
  font-size: 20px;
  font-weight: bold;
}

.faq01__dl__dt:before {
  content: "Q.";
  font-family: "Jost", sans-serif;
  color: #BD9F64;
  font-size: 24px;
  font-weight: 500;
  width: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 0;
  top: calc(50% - 26px);
}

.faq01__dl__dd {
  position: relative;
  padding: 10px 0 30px 60px;
  font-size: 16px;
}

.faq01__dl__dd:before {
  content: "A.";
  font-family: "Jost", sans-serif;
  color: #BABABA;
  font-size: 24px;
  font-weight: 500;
  width: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}

/***************************

object/object/project/_contact.scss

***************************/
.subpage-title {
  padding: 180px 0 120px;
  background: url(../img/top/main_image.jpg) no-repeat center;
  text-align: center;
  position: relative;
}
.subpage-title__label {
  margin: 0 0 12px;
  color: #4d8b72;
  font-family: "ZCOOL XiaoWei", serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}
.subpage-title h1 {
  margin: 0;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.subpage-title .container {
  position: relative;
  z-index: 2;
}
.subpage-title:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #3D3128;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.contact {
  padding: 78px 0 110px;
  background: #fff;
}
.contact .container {
  max-width: 1040px;
}

.contact__lead {
  margin: 0 auto 42px;
  text-align: center;
}
.contact__lead p {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
}
.contact__lead p + p {
  margin-top: 4px;
}

.contact__phone {
  margin: 0 0 58px;
  padding: 34px 40px;
  border: 1px solid rgba(77, 139, 114, 0.28);
  background: #f8fbf8;
  text-align: center;
}

.contact__phoneLabel {
  margin: 0 0 8px;
  color: #4d8b72;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact__phoneNumber {
  margin: 0;
}
.contact__phoneNumber a {
  color: #222;
  font-family: "ZCOOL XiaoWei", serif;
  font-size: 4.2rem;
  line-height: 1.2;
}

.contact__phoneNote {
  margin: 10px 0 0;
  color: #666;
  font-size: 1.4rem;
  line-height: 1.7;
}

.contact-form {
  border-top: 1px solid #d8e2dc;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid #d8e2dc;
}

.contact-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-form__head label {
  color: #222;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.contact-form__head span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 2px;
  background: #4d8b72;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.contact-form__body {
  min-width: 0;
}
.contact-form__body input,
.contact-form__body select,
.contact-form__body textarea {
  min-height: 52px;
  border-color: #ccd9d1;
  font-size: 1.6rem;
}
.contact-form__body textarea {
  min-height: 210px;
  resize: vertical;
}

.contact-form__zip {
  max-width: 200px;
}

.contact-form__privacy {
  margin: 42px 0 0;
  padding: 30px 34px;
  background: #f5f7f5;
  overflow-y: scroll;
  height: 400px;
}
.contact-form__privacy h2 {
  margin: 0 0 12px;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.contact-form__privacy p {
  margin: 0;
  color: #555;
  font-size: 1.5rem;
  line-height: 1.9;
}

.contact-form__privacyText {
  color: #555;
  font-size: 1.5rem;
  line-height: 1.9;
}
.contact-form__privacyText section {
  margin-top: 24px;
}
.contact-form__privacyText h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.contact-form__privacyText ol {
  margin: 8px 0 0 1.4em;
  padding: 0;
}
.contact-form__privacyText ol ol {
  margin-top: 6px;
}
.contact-form__privacyText li {
  margin: 4px 0 0;
}

.contact-form__agree {
  margin: 28px 0 0;
  text-align: center;
}
.contact-form__agree label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.contact-form__agree input {
  width: 18px;
  height: 18px;
  accent-color: #4d8b72;
}

.contact-form__submit {
  margin: 36px 0 0;
  text-align: center;
}
.contact-form__submit button {
  min-width: 280px;
  padding: 18px 38px;
  border: 0;
  border-radius: 999px;
  background: #4d8b72;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  transition: opacity 0.3s;
}
.contact-form__submit button:hover {
  opacity: 0.78;
}

@media screen and (max-width: 768px) {
  .subpage-title {
    padding: 138px 0 54px;
  }
  .subpage-title h1 {
    font-size: 3.2rem;
  }
  .contact {
    padding: 56px 0 82px;
  }
  .contact__lead {
    text-align: left;
  }
  .contact__lead p {
    font-size: 1.5rem;
  }
  .contact__phone {
    padding: 28px 22px;
  }
  .contact__phoneNumber a {
    font-size: 3.2rem;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }
  .contact-form__head {
    justify-content: flex-start;
    padding-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .subpage-title {
    padding: 120px 0 46px;
  }
  .subpage-title__label {
    font-size: 1.8rem;
  }
  .subpage-title h1 {
    font-size: 2.8rem;
  }
  .contact__phoneNumber a {
    font-size: 2.8rem;
  }
  .contact-form__privacy {
    padding: 22px 18px;
  }
  .contact-form__submit button {
    width: 100%;
    min-width: 0;
  }
}
/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--underline {
  text-decoration: underline;
}

.link--underline:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }
  .t-left_pc {
    text-align: left;
  }
  .t-right_pc {
    text-align: right;
  }
}
.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--white {
  color: #fff;
}

.fc--black {
  color: #111111;
}

.fc--red {
  color: red;
}

.txtdeco-none {
  text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.f-antique {
  font-family: "Zen Antique Soft", serif;
}

.f-zcool {
  font-family: "ZCOOL XiaoWei", sans-serif;
}

.f-yesteryear {
  font-family: "Yesteryear", cursive;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}/*# sourceMappingURL=style.css.map */