@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crafty+Girls&display=swap");
/*
    A (more) Modern CSS Reset
    https://piccalil.li/blog/a-more-modern-css-reset/
    @since 25/02/05
    @update t-ooishi
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  line-height: 1.5;
  min-height: 100dvh;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

a {
  word-break: break-all;
  text-decoration: none;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 2.5ex;
}

* {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.g-font-large {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0;
  color: #312102;
  line-height: 1em;
}
@media screen and (max-width: 960px) {
  .g-font-large {
    line-height: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .g-font-large {
    font-size: 24px;
  }
}

.g-font-middle {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  color: #312102;
}
@media screen and (max-width: 767px) {
  .g-font-middle {
    font-size: 18px;
  }
}

.g-font-middle2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #312102;
}
@media screen and (max-width: 767px) {
  .g-font-middle2 {
    font-size: 16px;
  }
}

.g-font-small {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: #312102;
}
@media screen and (max-width: 767px) {
  .g-font-small {
    font-size: 14px;
  }
}

.g-font-xsmall {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #312102;
}
@media screen and (max-width: 767px) {
  .g-font-xsmall {
    font-size: 12px;
  }
}

.-white {
  color: #F8F4EF;
}

:root {
  --breadcrumb-color: #312102;
  --header-height: 113px; /* ヘッダー - 高さ */
  --header-top: 2.4rem; /* ヘッダー - 上余白 */
  --inline-guideline: clamp(80px, 10vw, 160px); /* コンテンツガイド */
  --contents-spacer: 70px; /* コンテンツ間隔 */
  --contents-spacer-l: 120px; /* コンテンツ間隔大 */
}
@media screen and (width <= 959px) {
  :root {
    --header-height: 60px; /* ヘッダー - 高さ */
  }
}
@media screen and (width <= 767px) {
  :root {
    --header-top: 0px; /* ヘッダー - 上余白 */
    --inline-guideline: clamp(10px, 4vw, 80px); /* コンテンツガイド */
    --contents-spacer: 50px; /* コンテンツ間隔 */
    --contents-spacer-l: 70px; /* コンテンツ間隔大 */
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  color: #312102;
  min-height: 100vh;
  background-color: #E3DBCF;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/common/bg-body.png);
  background-size: auto;
  background-position: center;
  opacity: 0.2; /* ← ここで薄さ調整 */
  z-index: -1;
}
@media screen and (width <= 767px) {
  body {
    font-size: 1.4rem;
  }
}

img,
svg {
  vertical-align: bottom;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), -webkit-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: 90px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #fff;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.js-scroll-fade-up-trr {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: var(--header-height, 0);
  background: rgba(248, 244, 239, 0.9);
  height: 100vh;
  width: 305px;
  right: 0;
  -webkit-transform: translateX(305px);
          transform: translateX(305px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-header a {
  visibility: hidden;
}
.l-header.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-header.open a {
  visibility: visible;
}
.l-header.closing {
  -webkit-transform: translateX(305px);
          transform: translateX(305px);
}
@media screen and (width <= 767px) {
  .l-header {
    padding: 0;
    width: 250px;
    background: rgba(248, 244, 239, 0.9);
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
  }
  .l-header.closing {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
  }
}
.l-header .l-footer__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.l-header .c-btn-sub {
  height: 34px;
  font-size: 16px;
  width: 176px;
  margin: 100px auto 35px;
}
.l-header__contact-head {
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(104, 134, 64, 0.35);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.l-header__contact-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.l-header__contact-form img {
  margin-top: 5px;
}
.l-header__contact-form-head {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}
.l-header__contact-form-head.-tell {
  color: #312102;
  pointer-events: none;
}
@media (any-hover: none) {
  .l-header__contact-form-head.-tell {
    pointer-events: auto;
  }
}
.l-header__contact-form-text {
  font-size: 12px;
  line-height: 1.4em;
  margin-top: 5px;
}
.l-header__contact .c-btn-main {
  width: 247px;
  padding: 0;
  padding-left: 105px;
  font-size: 16px;
  margin: 0 auto;
  line-height: 1.5em;
  height: 65px;
  margin-top: 15px;
}
@media screen and (width <= 767px) {
  .l-header__contact .c-btn-main {
    width: 100%;
    padding-left: 80px;
    height: 60px;
    font-size: 15px;
    line-height: 1.4em;
  }
}
.l-header__contact .c-btn-main:before {
  position: absolute;
  content: "";
  width: 37px;
  height: 23px;
  -webkit-mask-image: url(../images/common/mail.svg);
          mask-image: url(../images/common/mail.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  background-color: #F8F4EF;
  mask-size: 100%;
  left: 49px;
}
@media screen and (width <= 767px) {
  .l-header__contact .c-btn-main:before {
    left: 30px;
  }
}
.l-header__contact .c-btn-sub.form {
  margin: 20px auto 0;
  width: 247px;
  height: 65px;
  margin-top: 15px;
  line-height: 1.5em;
}
@media screen and (width <= 767px) {
  .l-header__contact .c-btn-sub.form {
    width: 100%;
    height: 60px;
    font-size: 15px;
    line-height: 1.4em;
  }
}
.l-header__inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 40px 20px;
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.l-header__inner.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-header__inner::-webkit-scrollbar {
  display: none;
}
@media screen and (width <= 767px) {
  .l-header__inner {
    padding: 25px 20px;
  }
}
.l-header__main {
  grid-column: 1;
  height: 100%;
  pointer-events: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo {
  display: block;
  margin: 0 auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 43px;
}
@media screen and (width <= 959px) {
  .l-header__logo {
    height: 36px;
  }
}
.l-header__logo-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.l-header__logo-link > img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__logo-tag {
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #312102;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (width <= 767px) {
  .l-header__logo-tag {
    font-size: 1.2rem;
  }
}
.l-header__sub {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column: 3;
  height: 100%;
  pointer-events: auto;
}
.l-header__menu-btn {
  aspect-ratio: 1;
  position: relative;
  display: none;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto;
  width: var(--header-height, 0);
  background-color: #5B842D;
  border: none;
  padding: 0;
}
@media screen and (width <= 959px) {
  .l-header__menu-btn {
    display: grid;
  }
}
.l-header__menu-btn:focus-visible {
  border: transparent 2px solid;
  outline: none;
}
.l-header__menu-btn.-circle {
  width: 45px;
  border-radius: 50%;
}
.l-header__menu-btn-symbol {
  position: relative;
  width: 50%;
  height: 35.5%;
}
.l-header__menu-btn-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  translate: 0 -50%;
  border-bottom: 2px solid #F8F4EF;
}
.l-header__menu-btn-bar.-top {
  top: 0;
}
.l-header__menu-btn.is-active .l-header__menu-btn-bar.-top {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.l-header__menu-btn-bar.-middle {
  top: 50%;
}
.l-header__menu-btn.is-active .l-header__menu-btn-bar.-middle {
  opacity: 0;
}
.l-header__menu-btn-bar.-bottom {
  top: 100%;
}
.l-header__menu-btn.is-active .l-header__menu-btn-bar.-bottom {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: -45deg;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.svg {
  pointer-events: auto;
  margin: 100px auto;
  display: block;
  position: relative;
  width: 140px;
  height: 222.5px;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-155px, 0) scale(0.6);
          transform: translate(-155px, 0) scale(0.6);
  margin: 0;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  z-index: 1;
  opacity: 1;
}
.svg:focus-visible {
  outline: 2px solid #000; /* お好きな色に変更可能 */
}
@media screen and (width <= 767px) {
  .svg {
    -webkit-transform: translate(-120px, -50px) scale(0.4);
            transform: translate(-120px, -50px) scale(0.4);
  }
}
.svg button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.svg .g-font-middle2 {
  font-size: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.svg #target1 {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  width: 100%;
  height: auto;
}
.svg #target2 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-49%, 47px);
          transform: translate(-49%, 47px);
  z-index: 1;
  width: 53px;
  height: auto;
}
.svg #target3 {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 80px);
          transform: translate(-50%, 80px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: 50% 29%;
          transform-origin: 50% 29%;
  /* transform: translate(-50%, 95px) rotate(90deg); */
  width: 90px;
  height: auto;
}
.svg #target4 {
  top: 72px;
  position: absolute;
  width: 100%;
  height: auto;
}
.svg.open {
  z-index: 1;
  opacity: 1;
}
.svg.open #target1 {
  -webkit-animation: top 0.5s linear;
          animation: top 0.5s linear;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.svg.open #target2 {
  -webkit-animation: bottom 0.5s linear;
          animation: bottom 0.5s linear;
  -webkit-transform: translate(-50%, 82px);
          transform: translate(-50%, 82px);
}
.svg.open #target3 {
  -webkit-animation: spin 0.5s linear;
          animation: spin 0.5s linear;
  -webkit-transform: translate(-50%, 115px) rotate(90deg);
          transform: translate(-50%, 115px) rotate(90deg);
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, 80px);
            transform: translate(-50%, 80px);
  }
  20% {
    -webkit-transform: translate(-50%, 80px) rotate(45deg);
            transform: translate(-50%, 80px) rotate(45deg);
  }
  30% {
    -webkit-transform: translate(-50%, 80px) rotate(90deg);
            transform: translate(-50%, 80px) rotate(90deg);
  }
  45% {
    -webkit-transform: translate(-50%, 80px) rotate(90deg);
            transform: translate(-50%, 80px) rotate(90deg); /* 停止しているように見せる */
  }
  60% {
    -webkit-transform: translate(-50%, 115px) rotate(90deg);
            transform: translate(-50%, 115px) rotate(90deg);
  }
  100% {
    -webkit-transform: translate(-50%, 115px) rotate(90deg);
            transform: translate(-50%, 115px) rotate(90deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, 80px);
            transform: translate(-50%, 80px);
  }
  20% {
    -webkit-transform: translate(-50%, 80px) rotate(45deg);
            transform: translate(-50%, 80px) rotate(45deg);
  }
  30% {
    -webkit-transform: translate(-50%, 80px) rotate(90deg);
            transform: translate(-50%, 80px) rotate(90deg);
  }
  45% {
    -webkit-transform: translate(-50%, 80px) rotate(90deg);
            transform: translate(-50%, 80px) rotate(90deg); /* 停止しているように見せる */
  }
  60% {
    -webkit-transform: translate(-50%, 115px) rotate(90deg);
            transform: translate(-50%, 115px) rotate(90deg);
  }
  100% {
    -webkit-transform: translate(-50%, 115px) rotate(90deg);
            transform: translate(-50%, 115px) rotate(90deg);
  }
}
@-webkit-keyframes bottom {
  0% {
    -webkit-transform: translate(-50%, 47px);
            transform: translate(-50%, 47px);
  }
  45% {
    -webkit-transform: translate(-50%, 47px);
            transform: translate(-50%, 47px);
  }
  60% {
    -webkit-transform: translate(-50%, 82px);
            transform: translate(-50%, 82px);
  }
  100% {
    -webkit-transform: translate(-50%, 82px);
            transform: translate(-50%, 82px);
  }
}
@keyframes bottom {
  0% {
    -webkit-transform: translate(-50%, 47px);
            transform: translate(-50%, 47px);
  }
  45% {
    -webkit-transform: translate(-50%, 47px);
            transform: translate(-50%, 47px);
  }
  60% {
    -webkit-transform: translate(-50%, 82px);
            transform: translate(-50%, 82px);
  }
  100% {
    -webkit-transform: translate(-50%, 82px);
            transform: translate(-50%, 82px);
  }
}
@-webkit-keyframes top {
  0% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  75% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  85% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes top {
  0% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  75% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  85% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.svg.closing {
  z-index: 1;
  opacity: 1;
}
.svg.closing #target1 {
  -webkit-animation: top-reverse 0.5s linear forwards;
          animation: top-reverse 0.5s linear forwards;
}
.svg.closing #target2 {
  -webkit-animation: bottom-reverse 0.5s linear forwards;
          animation: bottom-reverse 0.5s linear forwards;
}
.svg.closing #target3 {
  -webkit-animation: spin-reverse 0.5s linear forwards;
          animation: spin-reverse 0.5s linear forwards;
}
@-webkit-keyframes top-reverse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  15% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  25% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}
@keyframes top-reverse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  15% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  25% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}
@-webkit-keyframes bottom-reverse {
  0% {
    -webkit-transform: translate(-50%, 82px);
            transform: translate(-50%, 82px);
  }
  35% {
    -webkit-transform: translate(-50%, 82px);
            transform: translate(-50%, 82px);
  }
  55% {
    -webkit-transform: translate(-50%, 47px);
            transform: translate(-50%, 47px);
  }
  100% {
    -webkit-transform: translate(-50%, 47px);
            transform: translate(-50%, 47px);
  }
}
@keyframes bottom-reverse {
  0% {
    -webkit-transform: translate(-50%, 82px);
            transform: translate(-50%, 82px);
  }
  35% {
    -webkit-transform: translate(-50%, 82px);
            transform: translate(-50%, 82px);
  }
  55% {
    -webkit-transform: translate(-50%, 47px);
            transform: translate(-50%, 47px);
  }
  100% {
    -webkit-transform: translate(-50%, 47px);
            transform: translate(-50%, 47px);
  }
}
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: translate(-50%, 115px) rotate(90deg);
            transform: translate(-50%, 115px) rotate(90deg);
  }
  35% {
    -webkit-transform: translate(-50%, 115px) rotate(90deg);
            transform: translate(-50%, 115px) rotate(90deg);
  }
  55% {
    -webkit-transform: translate(-50%, 80px) rotate(90deg);
            transform: translate(-50%, 80px) rotate(90deg);
  }
  70% {
    -webkit-transform: translate(-50%, 80px) rotate(90deg);
            transform: translate(-50%, 80px) rotate(90deg);
  }
  80% {
    -webkit-transform: translate(-50%, 80px) rotate(45deg);
            transform: translate(-50%, 80px) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, 80px) rotate(0deg);
            transform: translate(-50%, 80px) rotate(0deg);
  }
}
@keyframes spin-reverse {
  0% {
    -webkit-transform: translate(-50%, 115px) rotate(90deg);
            transform: translate(-50%, 115px) rotate(90deg);
  }
  35% {
    -webkit-transform: translate(-50%, 115px) rotate(90deg);
            transform: translate(-50%, 115px) rotate(90deg);
  }
  55% {
    -webkit-transform: translate(-50%, 80px) rotate(90deg);
            transform: translate(-50%, 80px) rotate(90deg);
  }
  70% {
    -webkit-transform: translate(-50%, 80px) rotate(90deg);
            transform: translate(-50%, 80px) rotate(90deg);
  }
  80% {
    -webkit-transform: translate(-50%, 80px) rotate(45deg);
            transform: translate(-50%, 80px) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, 80px) rotate(0deg);
            transform: translate(-50%, 80px) rotate(0deg);
  }
}
.svg:hover .g-font-middle2 {
  font-weight: bold;
}

.l-footer {
  padding-top: 75px;
  position: relative;
}
.l-footer a:hover {
  opacity: 0.7;
}
.l-footer__contact {
  border-radius: 50px;
  background: #cc8f3f;
  padding: 6% 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
  gap: 5%;
}
@media screen and (width <= 1350px) {
  .l-footer__contact {
    padding: 3%;
  }
}
@media screen and (width <= 1250px) {
  .l-footer__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__contact {
    padding: 36px 19px;
    border-radius: 35px;
  }
}
.l-footer__contact:before {
  width: 105%;
  height: 105%;
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  background-image: url(../images/faq/bg-note.png);
  opacity: 0.3;
  background-size: cover;
  background-position: center;
}
.l-footer__contact-left {
  max-width: 360px;
  min-width: 360px;
  width: 100%;
  position: relative;
}
@media screen and (width <= 1250px) {
  .l-footer__contact-left {
    max-width: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (width <= 767px) {
  .l-footer__contact-left {
    min-width: unset;
  }
}
.l-footer__contact-left .g-font-large.-white {
  line-height: 1.15em;
}
.l-footer__contact-left-text {
  margin: 36px 0 40px;
  font-size: 18px;
  font-weight: 500;
  color: #F8F4EF;
}
@media screen and (width <= 767px) {
  .l-footer__contact-left-text {
    font-size: 14px;
    margin: 24px 0 30px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__contact-left .c-btn-sub {
    margin: 0 auto;
  }
}
.l-footer__contact-left-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (width <= 767px) {
  .l-footer__contact-left-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.l-footer__contact-left-link .c-btn-sub {
  width: 49%;
}
@media screen and (width <= 767px) {
  .l-footer__contact-left-link .c-btn-sub {
    width: 100%;
    max-width: 277px;
  }
}
.l-footer__contact-left-link .c-btn-sub:hover {
  opacity: 1;
}
.l-footer__contact-right {
  position: relative;
  max-width: 720px;
  width: 100%;
  min-width: 667px;
}
@media screen and (width <= 767px) {
  .l-footer__contact-right {
    min-width: unset;
  }
}
.l-footer__contact-right .c-btn-main {
  line-height: 1.25em;
}
.l-footer__contact-right .c-btn-main .sp {
  display: none;
}
@media screen and (max-width: 325px) {
  .l-footer__contact-right .c-btn-main .sp {
    display: unset;
  }
}
.l-footer__contact-form {
  background: #F8F4EF;
  border-radius: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 34px 53px 34px 27px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1350px) {
  .l-footer__contact-form {
    padding: 34px 25px 34px 20px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__contact-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 17px 12px 25px;
    gap: 20px;
  }
}
.l-footer__contact-form.-tell {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 35.5px;
  margin-bottom: 0;
}
@media screen and (width <= 767px) {
  .l-footer__contact-form.-tell {
    gap: 20px;
  }
}
.l-footer__contact-form-head {
  font-size: 30px;
  color: #312102;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (width <= 767px) {
  .l-footer__contact-form-head {
    font-size: 20px;
    gap: 10px;
  }
}
.l-footer__contact-form-head:before {
  position: relative;
  content: "";
  width: 74px;
  height: 74px;
  background-image: url("../images/common/icon_mail.svg");
}
@media screen and (width <= 767px) {
  .l-footer__contact-form-head:before {
    width: 51px;
    height: 51px;
    background-size: cover;
  }
}
.l-footer__contact-form-head.-tell {
  font-size: 35px;
  pointer-events: none;
}
@media (any-hover: none) {
  .l-footer__contact-form-head.-tell {
    pointer-events: auto;
  }
}
@media screen and (width <= 767px) {
  .l-footer__contact-form-head.-tell {
    font-size: 22px;
  }
}
.l-footer__contact-form-head.-tell:before {
  background-image: url("../images/common/icon_tell.svg");
}
.l-footer__contact-form-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
}
@media screen and (width <= 767px) {
  .l-footer__contact-form-text {
    font-size: 16px;
  }
}
.l-footer__contact-form-text span {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .l-footer__contact-form-text span {
    font-size: 14px;
  }
}
.l-footer__logo-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
@media screen and (width <= 767px) {
  .l-footer__logo-link {
    width: 176px;
  }
}
.l-footer__main {
  margin-top: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (width <= 767px) {
  .l-footer__main {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__main-left {
  position: relative;
}
.l-footer__main-left-text {
  font-size: 16px;
  font-weight: 500;
  margin: 16px 0 60px;
}
@media screen and (width <= 767px) {
  .l-footer__main-left-text {
    margin: 12px 0 48px;
    font-size: 14px;
  }
}
.l-footer__main-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
}
@media screen and (width <= 1250px) {
  .l-footer__main-right {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    gap: 45px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__main-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 1250px) {
  .l-footer__banner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__banner {
    display: none;
  }
}
.l-footer__banner-sp {
  display: none;
}
@media screen and (width <= 767px) {
  .l-footer__banner-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .l-footer__banner-sp a:nth-child(2) {
    width: 100%;
    max-width: 325px;
  }
  .l-footer__banner-sp a:nth-child(2) img {
    width: 100%;
  }
}
.l-footer__banner a {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.l-footer__banner a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  border-radius: 15px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-footer__banner a img {
  height: 59px;
}
.l-footer__banner a:hover {
  opacity: 1;
}
.l-footer__banner a:hover:before {
  opacity: 0.2;
  z-index: 1;
}
.l-footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 44px;
}
@media screen and (width <= 1250px) {
  .l-footer__sns {
    gap: 20px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 36px;
    margin-bottom: 36px;
  }
}
.l-footer__link {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__link-item {
  margin-bottom: 20px;
}
.l-footer__link-item:last-child {
  margin-bottom: 0;
}
@media screen and (width <= 767px) {
  .l-footer__link-item {
    margin-bottom: 20px;
  }
}
.l-footer__link-item a {
  font-size: 18px;
  font-weight: 500;
}
.l-footer__link-item a:hover {
  opacity: 0.7;
}
@media screen and (width <= 767px) {
  .l-footer__link-item a {
    font-size: 18px;
  }
}
.l-footer__other {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 767px) {
  .l-footer__other {
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-footer__other a {
  display: block;
  color: #2B2D2C;
  font-size: 14px;
  margin-bottom: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer__other a.-ex {
  padding-right: 23px;
  position: relative;
}
.l-footer__other a.-ex:before {
  content: "";
  position: absolute;
  right: 0;
  width: 14px;
  height: 14px;
  background-image: url(../images/common/ex.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer__copyright {
  font-size: 12px;
  text-align: center;
  padding: 96px 0 30px;
}
@media screen and (width <= 767px) {
  .l-footer__copyright {
    font-size: 10px;
    padding: 10px 0 15px;
  }
}
.l-footer__used-net {
  position: absolute;
  bottom: 90px;
  right: 5%;
}
@media screen and (width <= 767px) {
  .l-footer__used-net {
    position: relative;
    bottom: 0;
    right: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin: 20px auto 0;
  }
}

.l-glb-menu {
  position: fixed;
  z-index: 9990;
  top: 0px;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
  height: 100dvh;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  translate: 100% 0;
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
}
.l-glb-menu.is-active {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}
.l-glb-menu__wrapper {
  overflow: clip;
  width: min(800px, 100%);
  min-height: 100%;
  padding-block: calc(var(--header-height, 0) + var(--header-after, 0)) 56px;
  -ms-overflow-style: none;
}
.l-glb-menu__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (width <= 767px) {
  .l-glb-menu__wrapper {
    padding-inline: var(--inline-outer-size, 0);
    -webkit-padding-after: 24px;
            padding-block-end: 24px;
  }
}
.l-main {
  position: relative;
  width: 100%;
  padding-bottom: var(--footer-before, 0);
}

.l-section-main {
  max-width: 1320px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (width <= 767px) {
  .l-section-main {
    width: 84%;
  }
}

.scroll-animate {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.scroll-animate.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-page-head {
  background-color: #F8F4EF;
  position: relative;
  overflow: clip;
  padding-inline: var(--inline-outer-size, 0);
  position: relative;
  height: 290px;
  border-radius: 0 0 268px 0;
}
@media screen and (width <= 767px) {
  .l-page-head {
    height: auto;
    border-radius: 0 0 50px 0;
    padding: 35px 0 25px;
  }
}
.l-page-head:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/bg-page-head.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: center;
}
@media screen and (width <= 1600px) {
  .l-page-head:before {
    background-size: cover;
  }
}
.l-page-head__inner {
  position: relative;
}
.l-page-head__title {
  padding-top: 85px;
  padding-right: 80px;
}
@media screen and (width <= 767px) {
  .l-page-head__title {
    padding-top: 15px;
    padding-right: 50px;
  }
}
.l-page-head__title > .ja {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (width <= 767px) {
  .l-page-head__title > .ja {
    font-size: 30px;
  }
}

.l-section {
  width: 100%;
  padding-inline: var(--inline-outer-size, 0);
}
.l-section__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.l-single {
  width: 90%;
  margin: 150px auto 0;
  overflow: hidden;
}
@media screen and (width <= 959px) {
  .l-single {
    margin: 50px auto 0;
  }
}
.l-single__head {
  max-width: 960px;
  margin: 0 auto;
}
.l-single__title {
  background: #F8F4EF;
  padding: 25px 30px 25px 35px;
  position: relative;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.75em;
  margin-bottom: 30px;
}
@media screen and (width <= 767px) {
  .l-single__title {
    font-size: 20px;
    padding: 15px 20px 15px 25px;
  }
}
.l-single__title:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: #D3A05E;
  left: 0;
  top: 0;
}
.l-single__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid #D3A05E;
  margin-bottom: 60px;
}
.l-single__category {
  font-size: 14px;
  font-weight: 500;
  background: #D3A05E;
  color: #F8F4EF;
  border-radius: 50px;
  padding: 1px 20px;
}
.l-single__date {
  font-weight: 500;
}
.l-single__content {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: var(--contents-spacer-l, 0);
}
.l-single__content__thumbnail img {
  margin: 0 auto 25px;
}
.l-single__content img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto 50px;
  border-radius: 10px;
  height: auto;
}
.l-single__content a {
  color: #0051ff;
}
.l-single__content a:hover {
  opacity: 0.7;
}
.l-single__content .c-btn-main {
  color: #F8F4EF;
}
.l-single__content h3.wp-block-heading {
  background: #F8F4EF;
  padding: 8px 25px 8px 30px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #312102 !important;
  font-weight: 500;
  width: 100%;
  display: block;
}
.l-single__content h3.wp-block-heading:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: #D3A05E;
  left: 0;
  top: 0;
}
.l-single__content h3 span {
  background: #F8F4EF;
  padding: 8px 25px 8px 30px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #312102 !important;
  font-weight: 500;
  width: 100%;
  display: block;
}
.l-single__content h3 span:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: #D3A05E;
  left: 0;
  top: 0;
}
.l-single__content h3 strong {
  color: #312102 !important;
  font-weight: 500;
}
.l-single__content p {
  font-weight: 500;
  margin-bottom: 20px;
}
.l-single__content .c-btn-main {
  margin: 50px auto 0;
}
.l-single__new {
  margin-bottom: 0;
}
.l-single .c-card__article-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-single .c-card__article-content .c-card__article-thumbnail {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #D1815F;
  overflow: hidden;
  border-radius: 20px;
}
.l-single .c-card__article-content .c-card__article-thumbnail img {
  width: 100%;
}
.l-single .c-card__article-content .c-card__article-textarea {
  width: 100%;
}

.l-form {
  margin-top: 90px;
}
.l-form .c-btn-main {
  margin: 50px auto 0;
}
.l-form__step {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}
.l-form__explanation {
  max-width: 450px;
  margin: 50px auto 0;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
}
.l-form__body {
  max-width: 725px;
  margin: 70px auto 0;
}
.l-form-input__field {
  margin-top: 42px;
}
.l-form-input__field:first-child {
  margin-top: 0;
}
.l-form-input__field.-sub {
  margin-top: 20px;
  border-top: 1px solid rgba(49, 33, 2, 0.25);
}
.l-form-input__field.-sub .c-form-label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
}
.l-form-input__field.-sub .l-form-input__field-lbl {
  margin-bottom: 10px;
}
.l-form-input__field-lbl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9.6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 25px;
}

.c-form-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  counter-reset: cnt 0;
}
@media screen and (width <= 767px) {
  .c-form-step {
    gap: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-form-step__item {
  padding-top: 105px;
  position: relative;
  width: 100px;
  text-align: center;
  color: rgba(49, 33, 2, 0.3);
  counter-increment: cnt;
}
@media screen and (width <= 767px) {
  .c-form-step__item {
    padding-top: 65px;
    width: 60px;
  }
}
.c-form-step__item::before {
  position: absolute;
  top: 0;
  font-size: 33px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: rgba(211, 160, 94, 0.3);
  aspect-ratio: 1;
  width: 100px;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  content: counter(cnt, decimal-leading);
  border-radius: 50%;
  background-color: #F8F4EF;
  grid-area: number;
}
@media screen and (width <= 767px) {
  .c-form-step__item::before {
    font-size: 23px;
    width: 60px;
  }
}
.c-form-step__item::after {
  width: 40px;
  height: 0;
  position: absolute;
  content: "";
  border-top: 1px solid #D3A05E;
  right: -40px;
  top: 50px;
}
@media screen and (width <= 767px) {
  .c-form-step__item::after {
    width: 30px;
    right: -30px;
    top: 30px;
  }
}
.c-form-step__item.active {
  color: #312102;
}
.c-form-step__item.active::before {
  color: #F8F4EF;
  background-color: #D3A05E;
}
.c-form-step__item:last-child::after {
  display: none;
}

.c-form-tag {
  font-size: 16px;
  font-weight: 500;
  padding: 3px 15px;
  background: rgba(49, 33, 2, 0.25);
  color: #F8F4EF;
  border-radius: 5px;
}
.c-form-tag.-req {
  background: #D3A05E;
  color: #F8F4EF;
}
.c-form-label {
  font-size: 18px;
  font-weight: 500;
}
.c-form-field-accept, .c-form-field-checkbox, .c-form-field-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 8px 72px;
}
@media screen and (width <= 767px) {
  .c-form-field-accept, .c-form-field-checkbox, .c-form-field-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-form-field-accept__item, .c-form-field-checkbox__item, .c-form-field-radio__item {
  display: grid;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(2, auto);
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.c-form-field-accept__item-input, .c-form-field-checkbox__item-input, .c-form-field-radio__item-input {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #D3A05E;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.c-form-field-accept__item-input:hover, .c-form-field-checkbox__item-input:hover, .c-form-field-radio__item-input:hover {
  border-color: #D3A05E;
  outline: 1px solid #D3A05E;
}
.c-form-field-accept__item-input::before, .c-form-field-checkbox__item-input::before, .c-form-field-radio__item-input::before {
  aspect-ratio: 1.3;
  position: absolute;
  inset: 50%;
  display: block;
  width: 60%;
  content: none;
  translate: -10% -45%;
  rotate: -45deg;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  border-bottom: 3.5px solid #D3A05E;
  border-left: 3.5px solid #D3A05E;
}
.c-form-field-accept__item-input:checked::before, .c-form-field-checkbox__item-input:checked::before, .c-form-field-radio__item-input:checked::before {
  content: "";
}
.c-form-field-accept__item-label, .c-form-field-checkbox__item-label, .c-form-field-radio__item-label {
  font-weight: 500;
  line-height: 1.75em;
  cursor: pointer;
}
.c-form-field-accept, .c-form-field-file, .c-form-field-checkbox, .c-form-field-radio, .c-form-field-select2, .c-form-field-select, .c-form-field-textarea, .c-form-field-text {
  font-weight: 500;
  line-height: 1.75em;
  color: #222222;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
.c-form-field-file__wrp, .c-form-field-select2__input, .c-form-field-select__input, .c-form-field-textarea__input, .c-form-field-text__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  -webkit-font-smoothing: antialiased;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  padding: 0.5em 1.25em;
  border: none;
  border: 1px solid #F8F4EF;
  outline-offset: 0;
  background-color: #ffffff;
  border-radius: 10px;
}
.c-form-field-file__wrp:hover, .c-form-field-select2__input:hover, .c-form-field-select__input:hover, .c-form-field-textarea__input:hover, .c-form-field-text__input:hover {
  border-color: #D3A05E;
  outline: 1px solid #D3A05E;
}
.c-form-field-radio__item-input {
  border-radius: 50px;
}
.c-form-field-radio__item-input::before {
  position: absolute;
  width: 60%;
  height: 60%;
  background: #D3A05E;
  border-radius: 50px;
  content: none;
  translate: -50% -50%;
  rotate: none;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  border-bottom: none;
  border-left: none;
}
.c-form-field-radio__item-input:checked::before {
  content: "";
}
.c-form-field-file__input {
  display: none;
}
.c-form-field-file-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  background: #F8F4EF;
  border-radius: 10px;
  width: 100%;
  height: 50px;
  padding: 0.5em calc(25px + 1.25em) 0.5em 0.5em;
  position: relative;
}
@media screen and (width <= 767px) {
  .c-form-field-file-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    gap: 5px;
  }
}
.c-form-field-file-wrapper-btn {
  height: 40px;
  padding: 0px 23px;
  border-radius: 5px;
  background: #D3A05E;
  color: #F8F4EF;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.c-form-field-file-wrapper-btn:before {
  position: relative;
  content: url("../images/icon/file.svg");
  top: 5px;
}
.c-form-field-file-wrapper-text {
  font-size: 16px;
  font-weight: 500;
}
.c-form-field-file-wrapper-remove {
  display: none;
  position: absolute;
  content: url("../images/icon/batu.svg");
  cursor: pointer;
  right: 1.25em;
}

.p-contact-form_submit button {
  display: none;
}
.p-contact-form_submit .c-btn-main {
  cursor: pointer;
}

.l-form-input__field .error {
  display: none;
  color: #FF0000;
  font-weight: 500;
}
.l-form-input__field.error .error {
  display: block;
}
.l-form-input__field .p-postal-code {
  width: 200px;
}
.l-form-input__field .c-form-field-select {
  width: 200px;
  position: relative;
  cursor: pointer;
}
.l-form-input__field .c-form-field-select:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  background-color: #C3BCB0;
  mask-size: 100%;
  right: 17px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 18px;
  z-index: 1;
}
.l-form-input__field .c-form-field-select select {
  cursor: pointer;
}
.l-form-input__field .ms-choice {
  border: none;
}
.l-form-input__field .ms-choice span {
  padding: 0.5em 1.25em;
  width: 100%;
  height: 100%;
  line-height: 1.75em;
  top: 2px;
}
.l-form-input__field .ms-choice .icon-caret {
  display: none;
}
.l-form-input__field .ms-choice > span.placeholder {
  color: #000;
}

.-confirm .p-contact-form_input {
  margin-bottom: 30px;
}
.-confirm .p-contact-form_input .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.-confirm .p-contact-form_input .answer {
  background: #D9CFC0;
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  min-height: 48px;
  overflow-wrap: break-word;
}
.-confirm .p-contact-button_box input {
  display: none;
}
.-confirm .p-contact-button_box .c-btn-main {
  cursor: pointer;
}
.-confirm .p-contact-button_box .c-btn__back {
  color: #312102;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #D3A05E;
  position: relative;
  padding-right: 2em;
  display: block;
  margin-top: 40px;
  width: 150px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: right;
  font-weight: 500;
  margin: 25px auto 0;
  padding-right: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  text-align: center;
}
.-confirm .p-contact-button_box .c-btn__back:hover {
  opacity: 0.7;
}
.-confirm .p-contact-button_box .c-btn__back:before {
  position: absolute;
  content: "";
  width: 7.5px;
  height: 15px;
  -webkit-mask-image: url(../images/common/service-link.svg);
          mask-image: url(../images/common/service-link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D3A05E;
  left: 0;
  top: 1px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.-limit {
  padding-top: 25px;
}
.-limit .c-form-field-checkbox {
  width: auto;
  gap: 7px;
}
.-limit .c-form-field-text, .-limit .c-form-field-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 7px;
  width: auto;
}
.-limit input, .-limit select {
  width: 94px;
}
.-limit .c-form-field-select:before {
  right: 38px;
}

.inquiry-p {
  display: none;
}

.inquiry-o {
  display: none;
}

.user-b {
  display: none;
}

.user-c {
  display: none;
}

.l-form-privacy {
  margin-top: 80px;
}
.l-form-privacy-message {
  margin-top: 15px;
  background: #F8F4EF;
  border-radius: 20px;
  padding: 25px 50px;
  height: 170px;
  overflow-y: scroll;
}
@media screen and (width <= 959px) {
  .l-form-privacy-message {
    padding: 25px;
  }
}

.l-form-privacy-message {
  overflow-y: scroll;
  scrollbar-width: thin; /* Firefox用 */
  scrollbar-color: #D3A05E transparent; /* Firefox用: スクロールバーとトラック */
  /* 内側に入れる工夫（paddingでスペース確保） */
  padding-right: 10px;
}

/* Chrome, Edge, Safari用 */
.l-form-privacy-message::-webkit-scrollbar {
  width: 8px; /* スクロールバーの太さ */
}

.l-form-privacy-message::-webkit-scrollbar-thumb {
  background-color: #999; /* スクロールバーの色 */
  border-radius: 4px;
}

.l-form-privacy-message::-webkit-scrollbar-track {
  background-color: transparent; /* トラックの背景色 */
}

.l-form-privacy-message::-webkit-scrollbar-button {
  display: none;
  height: 0;
}

.-privacy .c-form-field-checkbox {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.-privacy .error {
  text-align: center;
}

.c-form-field-checkbox__item-label a {
  text-decoration: underline;
}

.l-form-input__download {
  text-decoration: underline;
  color: #312102;
}
.l-form-input__download:hover {
  opacity: 0.7;
}

.p-interview__handwrite-1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto -20px;
}

.p-interview__handwrite-2 {
  margin: 0 auto 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-archive {
  margin-top: 150px;
}
@media screen and (width <= 767px) {
  .l-archive {
    margin-top: 50px;
  }
}
.l-archive__head .g-font-middle {
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.75em;
}
@media screen and (width <= 767px) {
  .l-archive__head .g-font-middle {
    text-align: left;
  }
}
.l-archive__head .g-font-small {
  max-width: 984px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.l-archive__category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1120px;
  margin: 0 auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 75px;
}
@media screen and (width <= 767px) {
  .l-archive__category {
    gap: 5px 35px;
    margin-top: 35px;
  }
}
.l-archive__category a {
  font-size: 24px;
  font-weight: 500;
  padding-left: 22px;
  position: relative;
  opacity: 0.3;
  color: #312102;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (width <= 767px) {
  .l-archive__category a {
    font-size: 18px;
    padding-left: 17px;
  }
}
.l-archive__category a:hover {
  opacity: 1;
}
.l-archive__category a.active {
  opacity: 1;
}
.l-archive__category a.active:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  left: 0;
  background: #D3A05E;
  top: 50%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}
@media screen and (width <= 767px) {
  .l-archive__category a.active:before {
    width: 10px;
    height: 10px;
  }
}
.l-archive__category-line {
  border-top: 1px solid #312102;
  margin: 18px 0 0;
  padding: 0;
}
.l-archive__list {
  margin-top: 72.5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 32px 40px;
  max-width: 1320px;
  width: 100%;
}
@media screen and (width <= 767px) {
  .l-archive__list {
    margin-top: 35px;
    gap: 20px;
  }
}
.l-archive .c-card__article-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-archive .c-card__article-content .c-card__article-thumbnail {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #D1815F;
  overflow: hidden;
  border-radius: 20px;
}
.l-archive .c-card__article-content .c-card__article-thumbnail img {
  width: 100%;
}
.l-archive .c-card__article-content .c-card__article-textarea {
  width: 100%;
}

.c-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
  gap: 2px;
}
.c-breadcrumb__item {
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75em;
  color: var(--breadcrumb-color, #5B842D);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.c-breadcrumb__item > a {
  text-decoration: none;
}
.c-breadcrumb__item::after {
  display: inline-block;
  content: "ー";
}
.c-breadcrumb__item:last-of-type {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-flex: unset;
  -webkit-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -webkit-box-orient: vertical;
  text-decoration: none;
  -webkit-line-clamp: 1;
}
.c-breadcrumb__item:last-of-type::after {
  display: none;
}

.c-btn-main {
  width: 293px;
  height: 64px;
  background: #3C6C11;
  color: #F8F4EF;
  padding: 0 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .c-btn-main {
    width: 100%;
    max-width: 293px;
    height: 57px;
    font-size: 16px;
  }
}
.c-btn-main:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  background-color: #F8F4EF;
  mask-size: 100%;
  right: 26px;
}
.c-btn-main:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #3C6C11;
  border-radius: 50px;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
}
.c-btn-main:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
@media screen and (width <= 959px) {
  .c-btn-main:hover:after {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.c-btn-sub {
  width: 277px;
  height: 64px;
  background: #F8F4EF;
  color: #D3A05E;
  padding: 0 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .c-btn-sub {
    width: 100%;
    max-width: 277px;
    height: 57px;
    font-size: 16px;
    padding: 0 33px;
  }
}
.c-btn-sub:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  background-color: #D3A05E;
  right: 26px;
}
.c-btn-sub:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #F8F4EF;
  border-radius: 50px;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  border: 1px solid #D3A05E;
}
.c-btn-sub:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
@media screen and (width <= 959px) {
  .c-btn-sub:hover:after {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.c-btn__sns-x {
  display: block;
}
.c-btn__sns-x span {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/common/x.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.c-btn__sns-x:hover {
  opacity: 0.7;
}
.c-btn__sns-instagram {
  display: block;
}
.c-btn__sns-instagram span {
  display: block;
  width: 43px;
  height: 43px;
  background-image: url(../images/common/instagram.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.c-btn__sns-instagram:hover {
  opacity: 0.7;
}
.c-btn__sns-youtube {
  display: block;
}
.c-btn__sns-youtube span {
  display: block;
  width: 54px;
  height: 38px;
  background-image: url(../images/common/youtube.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.c-btn__sns-youtube:hover {
  opacity: 0.7;
}

.c-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 75px auto 0;
}
@media screen and (width <= 767px) {
  .c-pagination {
    gap: 10px;
    margin-top: 35px;
  }
}
.c-pagination__page {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #D3A05E;
  color: #D3A05E;
  background: #F8F4EF;
  border-radius: 50px;
}
@media screen and (width <= 767px) {
  .c-pagination__page {
    width: 35px;
    height: 35px;
  }
}
.c-pagination__page--now {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #D3A05E;
  background: #D3A05E;
  color: #F8F4EF;
  border-radius: 50px;
}
@media screen and (width <= 767px) {
  .c-pagination__page--now {
    width: 35px;
    height: 35px;
  }
}
.c-pagination__page--dot {
  color: #D3A05E;
  letter-spacing: 0;
  font-size: 35px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 767px) {
  .c-pagination__page--dot {
    font-size: 24px;
  }
}

.c-card__article {
  width: calc((100% - 80px) / 3);
  background: #F8F4EF;
  border-radius: 32px;
}
@media screen and (width <= 959px) {
  .c-card__article {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (width <= 767px) {
  .c-card__article {
    width: 100%;
  }
}
.c-card__article-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media screen and (width <= 767px) {
  .c-card__article-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.c-card__article-link {
  padding: 24px;
  display: block;
  width: 100%;
}
@media screen and (width <= 767px) {
  .c-card__article-link {
    padding: 20px;
  }
}
.c-card__article-thumbnail {
  width: 35%;
  overflow: hidden;
}
@media screen and (width <= 767px) {
  .c-card__article-thumbnail {
    width: 100%;
  }
}
.c-card__article-thumbnail img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: auto;
}
.c-card__article-textarea {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 60%;
}
.c-card__article-textarea.-full {
  width: 100%;
}
@media screen and (width <= 767px) {
  .c-card__article-textarea {
    width: 100%;
  }
}
.c-card__article-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 17px;
}
@media screen and (width <= 767px) {
  .c-card__article-info {
    margin-bottom: 15px;
  }
}
.c-card__article-date {
  color: #2B2D2C;
  font-size: 14px;
  opacity: 0.55;
  font-weight: 500;
}
.c-card__article-category {
  font-size: 14px;
  font-weight: 500;
  color: #D1815F;
  border: 1px solid;
  border-radius: 50px;
  padding: 1px 20px;
  background: #F8F4EF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-card__article-title {
  font-size: 20px;
  font-weight: 500;
  color: #312102;
  line-height: 1.75em;
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.5em;
  word-break: break-all;
}
@media screen and (width <= 767px) {
  .c-card__article-title {
    font-size: 18px;
  }
}
.c-card__article-btn {
  display: block;
  width: 64px;
  height: 64px;
  border: 1px solid #D1815F;
  border-radius: 50px;
  position: relative;
  margin: 20px 0 0 auto;
}
@media screen and (width <= 767px) {
  .c-card__article-btn {
    width: 40px;
    height: 40px;
    margin-top: 15px;
  }
}
.c-card__article-btn:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  background-color: #D3A05E;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-card__article:hover .c-card__article-thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-card__article:hover .c-card__article-textarea {
  opacity: 0.7;
}

.slider__scrollbar {
  width: 90%;
  margin: 26px auto 0;
  height: 100%;
  position: relative;
  display: none;
}
@media screen and (width <= 959px) {
  .slider__scrollbar {
    display: block;
  }
}

.slider__scrollbar::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #D3A05E;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.55;
}

.slider__btn {
  aspect-ratio: 1/1;
  background-color: #F8F4EF;
  border: 9px solid #3C6C11;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0);
  box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0);
  cursor: pointer;
  width: 26px !important;
}

.swiper-slide {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (width <= 767px) {
  .swiper-slide {
    gap: 15px 12.5px;
    padding: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

/* 青色の進捗バー */
.slider__progress {
  height: 1px; /* バーの太さ */
  background-color: #D3A05E; /* 青色 */
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0%; /* 初期状態（スライドの位置に応じて変わる） */
  -webkit-transition: width 0.8s ease-out;
  transition: width 0.8s ease-out;
}

/* ボタンの親要素（スクロールバーの下に配置） */
.slider__buttons {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; /* ボタンを中央に配置 */
  gap: 140px; /* ボタン間の間隔 */
  margin-top: 10px; /* スクロールバーとの間隔 */
  display: none;
}
@media screen and (width <= 959px) {
  .slider__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* ボタンのデザイン */
.slider__prev, .slider__next {
  cursor: pointer;
}

.home .l-main {
  overflow: hidden;
}

.p-front__fv {
  height: 100vh;
  max-height: 1000px;
  min-height: 680px;
  position: relative;
}
@media screen and (width <= 959px) {
  .p-front__fv {
    overflow: hidden;
    min-height: 720px;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv {
    min-height: 650px;
  }
}
.p-front__fv-logo {
  display: block;
  position: absolute;
  left: 0;
  z-index: 1;
  margin: 25px 0 0 25px;
  position: fixed;
  z-index: 2;
}
@media screen and (width <= 767px) {
  .p-front__fv-logo {
    width: 158px;
    margin: 12px 0 0 7px;
  }
}
@media screen and (width <= 959px) {
  .p-front__fv-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-front__fv-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width <= 959px) {
  .p-front__fv-copy {
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 40px;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv-copy {
    z-index: 1;
    width: 140px;
    height: auto;
    margin-top: 95px;
  }
}
@media screen and (max-width: 376px) {
  .p-front__fv-copy {
    width: 105px;
    margin-top: 110px;
  }
}
.p-front__fv-img {
  position: absolute;
}
.p-front__fv-img img {
  border-radius: 10px;
}
.p-front__fv-img:before {
  position: absolute;
  aspect-ratio: 290/210;
  content: "";
  background-image: url("../images/front/fv-ac.svg");
  background-size: contain;
  z-index: -1;
  opacity: 0.8;
  width: 291px;
}
@media screen and (width <= 959px) {
  .p-front__fv-img:before {
    width: 220px;
    opacity: 0.5;
  }
}
.p-front__fv-img.-img1 {
  width: 332px;
  top: -45px;
  left: calc(50% - 332px - 120px);
}
@media screen and (width <= 959px) {
  .p-front__fv-img.-img1 {
    top: -35px;
    left: unset;
    right: -30px;
    width: 270px;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv-img.-img1 {
    width: 200px;
    top: -25px;
  }
}
.p-front__fv-img.-img1:before {
  left: -135px;
  bottom: -135px;
}
@media screen and (width <= 959px) {
  .p-front__fv-img.-img1:before {
    left: -45px;
    bottom: -70px;
  }
}
.p-front__fv-img.-img1 img {
  aspect-ratio: 332/188;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front__fv-img.-img2 {
  width: 400px;
  top: -95px;
  left: calc(50% + 150px);
}
@media screen and (width <= 959px) {
  .p-front__fv-img.-img2 {
    top: 80px;
    left: -150px;
    width: 290px;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv-img.-img2 {
    width: 185px;
    left: -110px;
  }
}
.p-front__fv-img.-img2:before {
  right: -135px;
  bottom: -100px;
}
@media screen and (width <= 959px) {
  .p-front__fv-img.-img2:before {
    display: none;
  }
}
.p-front__fv-img.-img2 img {
  aspect-ratio: 400/227;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front__fv-img.-img3 {
  width: 500px;
  bottom: 100px;
  left: calc(50% - 800px);
}
@media screen and (width <= 959px) {
  .p-front__fv-img.-img3 {
    width: 360px;
    bottom: 150px;
    left: -140px;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv-img.-img3 {
    width: 200px;
    bottom: 215px;
    left: -75px;
  }
}
.p-front__fv-img.-img3:before {
  right: -100px;
  top: -50px;
}
@media screen and (width <= 959px) {
  .p-front__fv-img.-img3:before {
    right: -50px;
    top: -80px;
  }
}
.p-front__fv-img.-img3 img {
  aspect-ratio: 500/283;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front__fv-img.-img4 {
  width: 363px;
  bottom: 250px;
  left: calc(50% + 250px);
}
@media screen and (width <= 959px) {
  .p-front__fv-img.-img4 {
    width: 260px;
    bottom: 100px;
    left: unset;
    right: -40px;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv-img.-img4 {
    width: 165px;
    bottom: 135px;
    right: -35px;
  }
}
.p-front__fv-img.-img4:before {
  left: -100px;
  bottom: -150px;
}
@media screen and (width <= 959px) {
  .p-front__fv-img.-img4:before {
    display: none;
  }
}
.p-front__fv-img.-img4 img {
  aspect-ratio: 364/243;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front__fv-achievements {
  background: #F8F4EF;
  width: 260px;
  padding: 25px 0 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: calc(50% + 350px);
  bottom: 40px;
  border-radius: 14px;
}
@media screen and (max-width: 1300px) {
  .p-front__fv-achievements {
    left: unset;
    right: 5%;
  }
}
@media screen and (width <= 959px) {
  .p-front__fv-achievements {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    -webkit-transform: unset;
            transform: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    padding: 16px 20px;
    margin-top: 0;
    gap: 15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 95%;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv-achievements {
    padding: 16px 20px 25px;
    margin-bottom: 55px;
  }
}
@media screen and (width <= 959px) {
  .p-front__fv-achievements img {
    width: 150px;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv-achievements img {
    width: 125px;
  }
}
.p-front__fv-achievements-text {
  font-size: 15px;
  margin-top: 15px;
}
@media screen and (width <= 959px) {
  .p-front__fv-achievements-text {
    margin: 0;
    font-weight: 500;
  }
}
@media screen and (width <= 767px) {
  .p-front__fv-achievements-text {
    font-size: 14px;
  }
  .p-front__fv-achievements-text br {
    display: none;
  }
}
.p-front__fv-achievements .c-btn-main {
  position: absolute;
  width: 180px;
  height: 41px;
  bottom: -20px;
  font-size: 15px;
}
@media screen and (width <= 959px) {
  .p-front__fv-achievements .c-btn-main {
    right: 0;
  }
}

.p-front__about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: var(--contents-spacer-l, 0);
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (width <= 959px) {
  .p-front__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-front__about-img {
  width: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  aspect-ratio: 800/453;
  height: auto;
}
@media screen and (width <= 959px) {
  .p-front__about-img {
    width: 80%;
  }
}
@media screen and (width <= 767px) {
  .p-front__about-img {
    width: 100%;
  }
}
.p-front__about-img img {
  max-width: none;
  width: 50vw;
  border-radius: 20px;
  position: absolute;
  right: 0;
  aspect-ratio: 800/453;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (width <= 959px) {
  .p-front__about-img img {
    width: 100%;
  }
}
.p-front__about-textarea {
  margin-left: 90px;
  margin-top: clamp(40px, 5vw, 120px);
}
@media screen and (max-width: 1250px) {
  .p-front__about-textarea {
    margin-left: 50px;
  }
}
@media screen and (width <= 959px) {
  .p-front__about-textarea {
    margin: 30px 0 0;
  }
}
.p-front__about-textarea .g-font-middle2 {
  margin-bottom: 25px;
  line-height: 2.4em;
}
@media screen and (max-width: 1250px) {
  .p-front__about-textarea .g-font-middle2 {
    line-height: 1.75em;
  }
}
.p-front__about-textarea .g-font-middle2 span {
  position: relative;
  white-space: nowrap;
}
.p-front__about-textarea .g-font-middle2 span:before {
  position: absolute;
  content: url("../images/front/underline.svg");
  bottom: -17px;
  left: 9px;
}
@media screen and (width <= 767px) {
  .p-front__about-textarea .g-font-middle2 span:before {
    position: absolute;
    content: url(../images/front/underline.svg);
    bottom: -12px;
    left: -14px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.p-front__about-textarea .c-btn-main {
  margin-top: 45px;
}
@media screen and (width <= 959px) {
  .p-front__about-textarea .c-btn-main {
    margin: 30px auto 0;
  }
}
.p-front__about-bg {
  position: absolute;
  right: -375px;
  bottom: -350px;
  opacity: 0.2;
  z-index: -1;
}
@media screen and (width <= 959px) {
  .p-front__about-bg {
    display: none;
  }
}

.p-front__service {
  position: relative;
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-front__service-bg {
  position: absolute;
  top: -365px;
  left: -305px;
  opacity: 0.2;
  z-index: -1;
}
@media screen and (width <= 959px) {
  .p-front__service-bg {
    display: none;
  }
}
.p-front__service-menu {
  margin-bottom: 60px;
}
.p-front__service-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 0;
}
@media screen and (max-width: 1380px) {
  .p-front__service-tabs {
    gap: 30px;
  }
}
@media screen and (width <= 959px) {
  .p-front__service-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}
.p-front__service-tab {
  padding: 30px 45px;
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 100px;
  width: calc((100% - 80px) / 3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  text-align: center;
  position: relative;
  cursor: pointer;
  text-decoration: underline;
}
@media screen and (max-width: 1380px) {
  .p-front__service-tab {
    padding: 20px 30px;
    width: calc((100% - 60px) / 3);
    gap: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1150px) {
  .p-front__service-tab {
    padding: 0px 20px;
    font-size: 16px;
  }
}
@media screen and (width <= 959px) {
  .p-front__service-tab {
    max-width: 315px;
    width: 100%;
    gap: 30px;
    padding: 0 20px;
    height: 80px;
  }
}
@media screen and (width <= 767px) {
  .p-front__service-tab {
    font-size: 14px;
    gap: 15px;
  }
}
.p-front__service-tab:before {
  position: relative;
  content: url("../images/front/service-tab1.svg");
}
@media screen and (max-width: 1380px) {
  .p-front__service-tab:before {
    width: 75px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media screen and (max-width: 1380px) {
  .p-front__service-tab:before {
    width: 60px;
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
  }
}
@media screen and (width <= 959px) {
  .p-front__service-tab:before {
    width: 72px;
    -webkit-transform: scale(0.56);
            transform: scale(0.56);
  }
}
.p-front__service-tab:nth-child(2):before {
  content: url("../images/front/service-tab2.svg");
}
@media screen and (width <= 959px) {
  .p-front__service-tab:nth-child(2):before {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
  }
}
.p-front__service-tab:nth-child(3):before {
  content: url("../images/front/service-tab3.svg");
}
.p-front__service-tab:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 26px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D3A05E;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (width <= 959px) {
  .p-front__service-tab:after {
    display: none;
  }
}
.p-front__service-tab:nth-child(3):after {
  display: block;
}
.p-front__service-tab:hover:after {
  bottom: -41px;
}
.p-front__service-content {
  border-radius: 50px;
  background: #cc8f3f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 80px;
  gap: 60px;
}
@media screen and (max-width: 1300px) {
  .p-front__service-content {
    padding: 40px;
    gap: 40px;
  }
}
@media screen and (width <= 959px) {
  .p-front__service-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (width <= 767px) {
  .p-front__service-content {
    padding: 30px 20px;
    border-radius: 28px;
  }
}
.p-front__service-content:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-image: url(../images/faq/bg-note.png);
  background-size: cover;
  opacity: 0.3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-front__service-textarea {
  position: relative;
}
.p-front__service-textarea .g-font-large {
  color: #F8F4EF;
}
.p-front__service-textarea .g-font-middle {
  margin: 50px 0 30px;
  color: #F8F4EF;
}
@media screen and (width <= 767px) {
  .p-front__service-textarea .g-font-middle {
    margin: 40px 0 30px;
  }
}
@media screen and (width <= 767px) {
  .p-front__service-textarea .p-front__service-link {
    margin-top: 30px;
  }
}
.p-front__service-link {
  color: #F8F4EF;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid;
  position: relative;
  padding-right: 2em;
  display: block;
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front__service-link:hover {
  opacity: 0.7;
}
.p-front__service-link:before {
  position: absolute;
  content: "";
  width: 7.5px;
  height: 15px;
  -webkit-mask-image: url(../images/common/service-link.svg);
          mask-image: url(../images/common/service-link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  right: 0;
  top: 8px;
}
.p-front__service-slide {
  width: 57.5%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 959px) {
  .p-front__service-slide {
    width: 100%;
  }
}
.p-front__service-slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (width <= 959px) {
  .p-front__service-slide-img {
    position: relative;
  }
}
.p-front__service-slide-img-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.p-front__service-slide-img-box.active {
  opacity: 1;
}
@media screen and (width <= 959px) {
  .p-front__service-slide-img-box:first-child {
    position: relative;
    aspect-ratio: 500/515;
    height: auto;
  }
}
.p-front__service-slide-content {
  background: #E3DBCF;
  position: absolute;
  width: 80%;
  left: 40px;
  bottom: 30px;
  z-index: 1;
  border-radius: 10px;
  padding: 40px 60px 35px 40px;
}
@media screen and (max-width: 1300px) {
  .p-front__service-slide-content {
    padding: 30px 60px 30px 40px;
  }
}
@media screen and (width <= 767px) {
  .p-front__service-slide-content {
    position: relative;
    width: 100%;
    padding: 20px 15px 45px;
    bottom: unset;
    left: unset;
  }
}
.p-front__service-slide-content .next-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid #D3915E;
  border-radius: 50%;
  background: #F8F4EF;
  top: 50%;
  right: -36px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front__service-slide-content .next-btn:hover {
  opacity: 0.7;
}
@media screen and (width <= 767px) {
  .p-front__service-slide-content .next-btn {
    width: 54px;
    height: 54px;
    right: 15px;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    bottom: -27px;
  }
}
.p-front__service-slide-content .next-btn:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 26px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D3A05E;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width <= 767px) {
  .p-front__service-slide-content .next-btn:after {
    width: 10px;
    height: 19px;
    left: 55%;
  }
}
.p-front__service-slide-content .prev-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid #D3915E;
  border-radius: 50%;
  background: #F8F4EF;
  top: 50%;
  left: -36px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front__service-slide-content .prev-btn:hover {
  opacity: 0.7;
}
@media screen and (width <= 767px) {
  .p-front__service-slide-content .prev-btn {
    width: 54px;
    height: 54px;
    left: 15px;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    bottom: -27px;
  }
}
.p-front__service-slide-content .prev-btn:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 26px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D3A05E;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
@media screen and (width <= 767px) {
  .p-front__service-slide-content .prev-btn:after {
    width: 10px;
    height: 19px;
    left: 55%;
  }
}
.p-front__service-slide-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 17px;
}
@media screen and (width <= 767px) {
  .p-front__service-slide-head {
    gap: 20px;
  }
}
.p-front__service-slide-head p {
  border: 1px solid #D3915E;
  border-radius: 50%;
  width: 105px;
  aspect-ratio: 1;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #D3915E;
  font-size: 47px;
  background: #F8F4EF;
  font-family: "Crafty Girls", cursive;
  line-height: 1.75em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 1300px) {
  .p-front__service-slide-head p {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 65px;
    height: auto;
    font-size: 35px;
  }
}
@media screen and (width <= 767px) {
  .p-front__service-slide-head p {
    font-size: 33px;
  }
}
.p-front__service-slide-head h3 {
  font-size: 24px;
  line-height: 1.75em;
}
@media screen and (width <= 767px) {
  .p-front__service-slide-head h3 {
    font-size: 16px;
  }
}
.p-front__service-slide-img-s {
  position: absolute;
  top: 0;
  border-radius: 28px;
  width: 26%;
}
@media screen and (width <= 767px) {
  .p-front__service-slide-img-s {
    z-index: 1;
    width: 45%;
    left: 0;
    top: 40vw;
  }
}
.p-front__service-slide-img-l {
  position: absolute;
  top: 0;
  border-radius: 28px;
  width: 66%;
  right: 0;
}
@media screen and (width <= 767px) {
  .p-front__service-slide-img-l {
    position: relative;
    width: 85%;
    margin-left: auto;
  }
}
.p-front__service-swiper {
  width: 100%;
}
.p-front__service-swiper .swiper-slide {
  position: relative;
  aspect-ratio: 680/580;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .p-front__service-swiper .swiper-slide {
    aspect-ratio: 680/740;
  }
}
@media screen and (width <= 959px) {
  .p-front__service-swiper .swiper-slide {
    aspect-ratio: 680/600;
  }
}
@media screen and (width <= 767px) {
  .p-front__service-swiper .swiper-slide {
    aspect-ratio: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 18vw;
    padding: 0;
  }
}
@media screen and (width <= 767px) {
  .p-front__service .swiper-wrapper {
    padding-bottom: 30px;
  }
}
.p-front__service .swiper-pagination {
  bottom: 0 !important;
}
.p-front__service .swiper-pagination-bullet {
  background: #F8F4EF;
  opacity: 0.4;
  margin: 0 11px;
}
.p-front__service .swiper-pagination-bullet-active {
  background: #F8F4EF;
  opacity: 1;
}

.p-front__faq {
  position: relative;
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-front__faq-bg {
  position: absolute;
  top: -490px;
  right: -370px;
  z-index: -1;
  opacity: 0.2;
}
@media screen and (width <= 959px) {
  .p-front__faq-bg {
    display: none;
  }
}
.p-front__faq .g-font-large {
  line-height: 1.5em;
}

.p-front__faq-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.p-front__faq-wrap .p-faq__clients {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scrollLoop 20s linear infinite;
          animation: scrollLoop 20s linear infinite;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  padding: 0;
  background: none;
  border: none;
}
@media screen and (width <= 767px) {
  .p-front__faq-wrap .p-faq__clients-logo {
    max-width: 300px;
  }
}

/* アニメーションの定義 */
@-webkit-keyframes scrollLoop {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scrollLoop {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-front__interview {
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-front__interview .g-font-large {
  line-height: 1.75em;
}
.p-front__interview .c-card__article-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-front__interview .c-card__article-thumbnail {
  width: 100%;
  border-radius: 22px;
}
.p-front__interview .c-card__article-thumbnail img {
  width: 100%;
}
.p-front__interview .c-card__article-textarea {
  width: 100%;
}
.p-front__interview .c-btn-main {
  margin: 70px 0 0 auto;
}
@media screen and (width <= 959px) {
  .p-front__interview .c-btn-main {
    margin: 40px auto 0;
  }
}
@media screen and (width <= 959px) {
  .p-front__interview .l-archive__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 0;
  }
}
.p-front__interview .c-card__article {
  width: calc((100% - 80px) / 3);
}

.p-front__topics {
  margin-bottom: var(--contents-spacer-l, 0);
  position: relative;
}
.p-front__topics-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8%;
  margin-top: 50px;
}
@media screen and (width <= 959px) {
  .p-front__topics-inner {
    gap: 30px;
  }
}
@media screen and (width <= 767px) {
  .p-front__topics-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}
.p-front__topics-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-front__topics-tab {
  cursor: pointer;
}
.p-front__topics-tab a {
  display: block;
  pointer-events: none;
  border-radius: 50px;
  border: 1px solid #3C6C11;
  background: #FFFFFF;
  padding: 10px 30px;
  cursor: pointer;
  margin-bottom: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
}
@media screen and (width <= 767px) {
  .p-front__topics-tab a {
    margin-bottom: 13px;
    padding: 8px 27px;
    font-size: 16px;
  }
}
.p-front__topics-tab:last-child a {
  margin-bottom: 0;
}
.p-front__topics-tab:hover a {
  background: #F0F5EC;
  color: #C3B69E;
}
.p-front__topics-tab.active a {
  background: #3C6C11;
  color: #fff;
}
.p-front__topics-item {
  display: none;
}
.p-front__topics-item.active {
  display: block;
}
.p-front__topics-item .c-btn-main {
  margin: 40px 0 0 auto;
}
@media screen and (width <= 767px) {
  .p-front__topics-item .c-btn-main {
    margin: 30px auto 0;
  }
}
.p-front__topics-item .l-archive__list {
  margin-top: 0;
}
@media screen and (width <= 959px) {
  .p-front__topics-item .l-archive__list {
    gap: 12px;
  }
}
.p-front__topics-item .c-card__article {
  width: calc((100% - 40px) / 2);
}
@media screen and (width <= 959px) {
  .p-front__topics-item .c-card__article {
    width: calc((100% - 12px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-front__topics-item .c-card__article {
    width: 100%;
  }
}
.p-front__topics-item .c-card__article-textarea {
  width: 100%;
}
.p-front__topics-bg {
  position: absolute;
  left: -282px;
  bottom: 9px;
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotateY(180deg) scale(0.8);
          transform: rotateY(180deg) scale(0.8);
}
@media screen and (width <= 959px) {
  .p-front__topics-bg {
    display: none;
  }
}

.p-front__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 959px) {
  .p-front__link {
    gap: 35px;
  }
}
@media screen and (width <= 767px) {
  .p-front__link {
    display: none;
  }
}
.p-front__link a {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.p-front__link a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-front__link a img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-front__link a:hover:before {
  opacity: 0.2;
  z-index: 1;
}

.p-front__media {
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-front__media .g-font-large {
  text-align: center;
  margin-bottom: 50px;
}
.p-front__media #sb_instagram #sbi_load .sbi_load_btn {
  background: none;
  padding: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin: 0;
  cursor: pointer;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: none;
}
.p-front__media #sb_instagram #sbi_load .sbi_load_btn .sbi_btn_text {
  width: 293px;
  height: 64px;
  background: #F8F4EF;
  color: #D3A05E;
  padding: 0 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  opacity: 1 !important;
}
@media screen and (width <= 767px) {
  .p-front__media #sb_instagram #sbi_load .sbi_load_btn .sbi_btn_text {
    width: 277px;
    max-width: 293px;
    height: 57px;
    font-size: 16px;
    padding: 0 33px;
  }
}
.p-front__media #sb_instagram #sbi_load .sbi_load_btn .sbi_btn_text:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #F8F4EF;
  border-radius: 50px;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  border: 1px solid #D3A05E;
}
.p-front__media #sb_instagram #sbi_load .sbi_load_btn .sbi_btn_text:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.p-front__media #sb_instagram #sbi_load .sbi_load_btn .sbi_loader {
  position: absolute;
  margin-top: -11px;
  background-color: #D3A05E !important;
  opacity: 1;
  z-index: 5;
  left: unset;
  right: 25px;
}
.p-front__media #sb_instagram #sbi_load .sbi_follow_btn {
  margin-left: 0;
}
.p-front__media #sb_instagram .sbi_follow_btn a {
  margin: 0;
  width: 293px;
  height: 64px;
  background: #3C6C11;
  color: #F8F4EF;
  padding: 0 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .p-front__media #sb_instagram .sbi_follow_btn a {
    width: 277px;
    max-width: 293px;
    height: 57px;
    font-size: 16px;
  }
}
.p-front__media #sb_instagram .sbi_follow_btn a svg {
  display: none;
}
.p-front__media #sb_instagram .sbi_follow_btn a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  background-color: #F8F4EF;
  mask-size: 100%;
  right: 26px;
}
.p-front__media #sb_instagram .sbi_follow_btn a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #3C6C11;
  border-radius: 50px;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
}
.p-front__media #sb_instagram .sbi_follow_btn a:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.p-front__media #sbi_load {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (width <= 767px) {
  .p-front__media #sbi_load {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}

.sb_instagram_header {
  display: none;
}

@media screen and (width <= 959px) {
  .p-front__interview .c-card__article {
    width: 85%;
  }
  .p-front__interview {
    width: 100%;
  }
  .p-front__interview .g-font-large {
    width: 84%;
    margin: 0 auto;
  }
}
#sb_instagram .sbi_photo img {
  border-radius: 15px;
}

@media screen and (width <= 767px) {
  .p-front__faq .p-faq__clients-logo img {
    height: 75px;
  }
}
.p-staff__head {
  margin: 150px auto 70px;
  font-size: 18px;
  font-weight: 500;
  max-width: 960px;
}
@media screen and (width <= 767px) {
  .p-staff__head {
    margin: 60px auto 40px;
  }
}

.p-staff__list .c-card__article-category {
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid;
  padding: 0;
}
.p-staff__list-item {
  margin-bottom: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px 8%;
}
.p-staff__list-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (width <= 767px) {
  .p-staff__list-item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-staff__list-item:last-child {
  margin-bottom: 0;
}
@media screen and (width <= 767px) {
  .p-staff__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 60px;
  }
}
.p-staff__list-name {
  margin: 15px 0 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
}
.p-staff__list-name span {
  font-size: 18px;
}
.p-staff__list-category {
  margin-top: 30px;
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 14px;
  padding: 25px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-staff__list-category {
    margin-top: 15px;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-staff__list-category:before {
  position: absolute;
  content: "";
  width: 0;
  height: 80%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 1px solid #312102;
  left: 135px;
  opacity: 0.2;
}
@media screen and (width <= 767px) {
  .p-staff__list-category:before {
    opacity: 0;
  }
}
.p-staff__list-category-head {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: #312102;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-staff__list-category-text {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-staff__list-category-text .g-font-small {
  position: relative;
  padding-left: 1em;
}
.p-staff__list-category-text .g-font-small:before {
  position: absolute;
  content: "・";
  left: 0;
}
.p-staff__list-img {
  width: 315px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (width <= 959px) {
  .p-staff__list-img {
    margin: 0 auto;
    height: auto;
    aspect-ratio: auto;
  }
}

.p-faq__main {
  margin-top: 150px;
  margin-bottom: var(--contents-spacer-l, 0);
}
@media screen and (width <= 767px) {
  .p-faq__main {
    margin-top: 50px;
  }
}
.p-faq__main-cannot {
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 17px;
  padding: 25px 35px 30px;
  margin-bottom: 20px;
}
@media screen and (width <= 767px) {
  .p-faq__main-cannot {
    padding: 25px 20px;
  }
}
.p-faq__main-cannot-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media screen and (width <= 959px) {
  .p-faq__main-cannot-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media screen and (width <= 767px) {
  .p-faq__main-cannot-title {
    gap: 15px;
  }
}
.p-faq__main-cannot-title-main {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .p-faq__main-cannot-title-main {
    font-size: 20px;
  }
}
.p-faq__main-cannot-title .g-font-small {
  line-height: 1.5em;
}
.p-faq__main-cannot-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (width <= 959px) {
  .p-faq__main-cannot-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-faq__main-cannot-item-title {
  color: #FFFFFF;
  background: #D3A05E;
  border-radius: 50px;
  padding: 2px 20px;
  margin-bottom: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media screen and (width <= 767px) {
  .p-faq__main-cannot-item-title {
    padding: 2px 30px;
    min-width: unset;
  }
}
.p-faq__main-equipment {
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 17px;
  margin-bottom: var(--contents-spacer-l, 0);
  position: relative;
  z-index: 1;
}
.p-faq__main-equipment .g-font-middle {
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #D3A05E;
  line-height: 1.75em;
}
.p-faq__main-equipment-list {
  padding: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 20px;
  margin: 0;
  list-style: none;
  padding-top: 45px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-faq__main-equipment-list {
    padding: 45px 20px 45px;
  }
}
.p-faq__main-equipment-list-item {
  width: calc((100% - 60px) / 4);
  position: relative;
}
@media screen and (width <= 959px) {
  .p-faq__main-equipment-list-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-faq__main-equipment-list-item {
    width: 100%;
  }
}
.p-faq__main-equipment-list-item .g-font-middle2 {
  background: #E3DBCF;
  border-radius: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 10px 20px;
  text-decoration: underline;
}
.p-faq__main-equipment-list-item .g-font-small {
  display: none;
  position: absolute;
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 9px;
  padding: 21px 24px;
  width: 80%;
  right: 0;
  top: calc(100% + 8px);
  z-index: 1;
}
.p-faq__main-equipment-list-item .g-font-small:before {
  position: absolute;
  content: url(../images/faq/triangle.svg);
  top: -23px;
  right: 56px;
}
.p-faq__main-equipment-list-item .g-font-small:after {
  position: absolute;
  content: "";
  width: 22px;
  height: 20px;
  background: #F8F4EF;
  top: 0px;
  right: 57px;
}
.p-faq__main-equipment-list-item:hover .g-font-small {
  display: block;
}
.p-faq__main-equipment-note {
  position: absolute;
  left: 30px;
  top: 10px;
  font-size: 14px;
  text-align: right;
}
.p-faq__main-equipment-note.sp {
  display: none;
}
@media (any-hover: none) {
  .p-faq__main-equipment-note.sp {
    display: block;
    left: 25px;
    top: 10px;
  }
}
@media (any-hover: none) {
  .p-faq__main-equipment-note.pc {
    display: none;
  }
}
.p-faq__main-note {
  padding: 40px 28px 28px;
  background: #D3A05E;
  position: relative;
  border-radius: 46px;
  overflow: hidden;
}
@media screen and (width <= 767px) {
  .p-faq__main-note {
    border-radius: 25px;
    padding: 30px 25px 28px;
  }
}
.p-faq__main-note:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-image: url("../images/faq/bg-note.png");
  background-size: cover;
  opacity: 0.3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-faq__main-note .g-font-large {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 35px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (width <= 767px) {
  .p-faq__main-note .g-font-large {
    gap: 0;
    margin-bottom: 20px;
  }
}
.p-faq__main-note .g-font-large:before {
  position: relative;
  content: url("../images/faq/exclamation.svg");
  top: 3px;
}
@media screen and (width <= 767px) {
  .p-faq__main-note .g-font-large:before {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
.p-faq__main-note-text {
  padding: 40px 10%;
  background: #F8F4EF;
  border-radius: 36px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-faq__main-note-text {
    padding: 25px 20px;
    border-radius: 23px;
  }
}
.p-faq__main-note-biko {
  margin-top: 20px;
  color: #D3A05E;
}
@media screen and (width <= 767px) {
  .p-faq__main-note-biko {
    font-size: 14px;
  }
}
.p-faq__sub {
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-faq__sub .g-font-large {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (width <= 767px) {
  .p-faq__sub .g-font-large {
    line-height: 1.5em;
    margin-bottom: 20px;
  }
}
.p-faq__sub .g-font-large span {
  display: block;
  line-height: 1em;
  margin-top: 16px;
}
@media screen and (width <= 767px) {
  .p-faq__sub .g-font-large span {
    margin-top: 0;
  }
}
.p-faq__clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid #D3A05E;
  padding: 40px 5%;
  border-radius: 17px;
}
@media screen and (width <= 767px) {
  .p-faq__clients {
    gap: 24px;
    padding: 25px 20px;
  }
}
.p-faq__clients-logo img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (width <= 767px) {
  .p-faq__clients-logo img {
    height: 35px;
  }
}
.p-faq__industry {
  background: #fff;
  border: 1px solid #D3A05E;
  border-radius: 17px;
  padding: 40px 10%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 25px 48px;
}
@media screen and (width <= 767px) {
  .p-faq__industry {
    gap: 24px;
    padding: 25px 20px;
  }
}
.p-faq__other {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 70px 10%;
}
.p-faq__other-item {
  width: 44.5%;
}
@media screen and (width <= 767px) {
  .p-faq__other-item {
    width: 100%;
  }
}
.p-faq__other-link {
  margin-top: 25px;
  width: 100%;
  aspect-ratio: 463/257;
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-faq__other-link figure {
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-faq__other-link img {
  max-width: 100%;
}
.p-faq__other-link .c-btn-main {
  bottom: -32px;
  right: -20px;
  position: absolute;
}
.p-faq__other .g-font-large {
  text-align: center;
}

.p-purchase__handwrite {
  margin: 35px 0 35px;
}
@media screen and (width <= 767px) {
  .p-purchase__handwrite {
    margin: 20px 0 20px;
  }
}

.p-purchase__fv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 130px;
  margin-bottom: var(--contents-spacer-l, 0);
  gap: 65px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 767px) {
  .p-purchase__fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    margin-top: 65px;
  }
}
.p-purchase__fv-textarea {
  width: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 767px) {
  .p-purchase__fv-textarea {
    width: 100%;
  }
}
.p-purchase__fv-textarea .g-font-large {
  margin: 15px 0 0;
}
@media screen and (width <= 767px) {
  .p-purchase__fv-img {
    width: 100%;
  }
}
.p-purchase__fv-img img {
  width: calc(50vw - 75px);
  max-width: none;
  border-radius: 20px;
}
@media screen and (width <= 767px) {
  .p-purchase__fv-img img {
    width: 100%;
  }
}

.p-purchase__business {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1250px) {
  .p-purchase__business {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
@media screen and (max-width: 1250px) {
  .p-purchase__business .g-font-large {
    margin-bottom: 20px;
  }
}
.p-purchase__business-item {
  width: 50%;
}
@media screen and (max-width: 1250px) {
  .p-purchase__business-item {
    width: 100%;
    max-width: 800px;
  }
}
.p-purchase__business .p-faq__clients {
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 17px;
  padding: 24px 15% 70px;
  gap: 18px 46px;
  position: relative;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
@media screen and (width <= 767px) {
  .p-purchase__business .p-faq__clients {
    border-radius: 14px;
    padding: 24px 10% 70px;
  }
}
.p-purchase__business .p-faq__industry {
  padding-bottom: 80px;
  position: relative;
  background: #F8F4EF;
}
@media screen and (width <= 767px) {
  .p-purchase__business .p-faq__industry {
    border-radius: 14px;
    padding: 24px 10% 70px;
  }
}
.p-purchase__business-more {
  position: absolute;
  bottom: 22px;
  padding-right: 24px;
  cursor: pointer;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: none;
  border: none;
}
.p-purchase__business-more:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
  mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  background-color: #D3A05E;
  right: 0;
  top: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-purchase__business-more:hover:before {
  right: -5px;
}
.p-purchase__business .p-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-purchase__business .p-popup__content {
  z-index: 1000;
  display: block;
  position: absolute;
  max-width: 1080px;
  width: 90%;
  height: 85%;
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 17px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width <= 959px) {
  .p-purchase__business .p-popup__content {
    width: 84%;
  }
}
.p-purchase__business .p-popup__content-inner {
  height: 100%;
  padding: 80px 50px;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.p-purchase__business .p-popup__content-inner::-webkit-scrollbar {
  display: none;
}
@media screen and (width <= 767px) {
  .p-purchase__business .p-popup__content-inner {
    padding: 40px 25px;
  }
}
.p-purchase__business .p-popup__content .p-popup__clients {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .p-purchase__business .p-popup__content .p-popup__clients {
    gap: 25px;
  }
}
.p-purchase__business .p-popup__content .p-popup__clients .p-faq__clients-logo {
  width: calc((100% - 120px) / 4);
}
@media screen and (width <= 767px) {
  .p-purchase__business .p-popup__content .p-popup__clients .p-faq__clients-logo {
    width: calc((100% - 25px) / 2);
  }
}
.p-purchase__business .p-popup__close {
  position: absolute;
  top: -29px;
  right: -29px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
}
@media screen and (width <= 767px) {
  .p-purchase__business .p-popup__close {
    top: -20px;
    right: -20px;
  }
  .p-purchase__business .p-popup__close img {
    width: 40px;
  }
}
.p-purchase__business .p-popup__logos img {
  width: 100px;
  margin: 10px;
}
.p-purchase__business .p-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #000;
  opacity: 0.3;
}

.p-purchase__item {
  margin-bottom: var(--contents-spacer-l, 0);
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 17px;
}
.p-purchase__item .g-font-middle {
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #D3A05E;
  line-height: 1.75em;
}
.p-purchase__item-content {
  padding: 50px 60px 60px;
}
@media screen and (width <= 767px) {
  .p-purchase__item-content {
    padding: 25px 30px 30px;
  }
}
.p-purchase__item-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px 5%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 35px;
}
@media screen and (width <= 767px) {
  .p-purchase__item-list {
    gap: 20px;
  }
}
.p-purchase__item-item {
  width: 30%;
}
@media screen and (width <= 959px) {
  .p-purchase__item-item {
    width: 47.5%;
  }
}
@media screen and (width <= 767px) {
  .p-purchase__item-item {
    width: 100%;
  }
}
.p-purchase__item-item .g-font-middle2 {
  text-align: center;
  margin-top: 10px;
}
.p-purchase__item-img {
  border-radius: 10px;
  overflow: hidden;
}
.p-purchase__item-guide {
  border: 1px solid #D3A05E;
  padding: 45px 70px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
}
@media screen and (width <= 959px) {
  .p-purchase__item-guide {
    padding: 40px 35px;
    gap: 25px;
  }
}
@media screen and (width <= 767px) {
  .p-purchase__item-guide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 20px;
  }
}
.p-purchase__item-guide:before {
  position: absolute;
  content: "";
  background-image: url(../images/purchase/guide.svg);
  opacity: 0.15;
  width: 120%;
  height: 120%;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-position: center;
}
@media screen and (width <= 767px) {
  .p-purchase__item-guide:before {
    width: 200%;
    height: 120%;
    top: 50%;
    left: 65%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-position: center;
    background-size: cover;
  }
}
.p-purchase__item-guide .g-font-middle2 {
  width: 380px;
}
@media screen and (width <= 959px) {
  .p-purchase__item-guide .g-font-middle2 {
    font-size: 18px;
    width: auto;
    max-width: 380px;
  }
}
@media screen and (width <= 959px) {
  .p-purchase__item-guide .c-btn-sub {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 228px;
  }
}

.p-purchase__feature .g-font-large {
  text-align: center;
  margin-bottom: 35px;
}
.p-purchase__feature-list {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .p-purchase__feature-list {
    gap: 40px;
  }
}
.p-purchase__feature-item {
  overflow: hidden;
  border-radius: 9px;
  background: #F8F4EF;
  width: calc((100% - 120px) / 3);
}
@media screen and (width <= 959px) {
  .p-purchase__feature-item {
    width: calc((100% - 60px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-purchase__feature-item {
    width: 100%;
  }
}
.p-purchase__feature-img {
  aspect-ratio: 1;
}
.p-purchase__feature-textarea {
  padding: 20px 30px;
}
.p-purchase__feature-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
}
.p-purchase__feature-text {
  margin-top: 16px;
}
.p-purchase__feature-note {
  margin-top: 6px;
  color: #5F651E;
}
.p-purchase__feature-notes {
  width: 100%;
  padding-bottom: 36px;
  margin-bottom: var(--contents-spacer-l, 0);
  position: relative;
}
@media screen and (width <= 767px) {
  .p-purchase__feature-notes {
    padding-bottom: 20px;
  }
}
.p-purchase__feature-notes:after {
  position: absolute;
  content: "";
  background-image: url("../images/purchase/feature-arrow.svg");
  width: 100%;
  bottom: -55px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-purchase__feature-notes .g-font-small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.p-purchase__trouble {
  border-radius: 50px;
  background: #D3A05E;
  position: relative;
  overflow: hidden;
  padding: 40px 160px 70px;
  margin-bottom: var(--contents-spacer-l, 0);
}
@media screen and (max-width: 1300px) {
  .p-purchase__trouble {
    padding: 40px 80px;
  }
}
@media screen and (width <= 959px) {
  .p-purchase__trouble {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 40px;
  }
}
@media screen and (width <= 767px) {
  .p-purchase__trouble {
    padding: 30px 20px 50px;
    border-radius: 28px;
  }
}
.p-purchase__trouble:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-image: url(../images/faq/bg-note.png);
  background-size: cover;
  opacity: 0.3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-purchase__trouble .g-font-middle {
  position: relative;
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (width <= 959px) {
  .p-purchase__trouble .g-font-middle {
    font-size: 28px;
  }
}
@media screen and (width <= 767px) {
  .p-purchase__trouble .g-font-middle {
    width: 90%;
    font-size: 18px;
    line-height: 1.5em;
  }
}
.p-purchase__trouble .g-font-middle:before {
  position: absolute;
  content: url("../images/purchase/trouble-left.svg");
  left: -35px;
}
@media screen and (width <= 767px) {
  .p-purchase__trouble .g-font-middle:before {
    left: -25px;
    top: 3px;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
.p-purchase__trouble .g-font-middle:after {
  position: absolute;
  content: url("../images/purchase/trouble-right.svg");
  right: -35px;
}
@media screen and (width <= 767px) {
  .p-purchase__trouble .g-font-middle:after {
    right: -25px;
    top: 3px;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
.p-purchase__trouble-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 50px 20px;
  position: relative;
}
.p-purchase__trouble-text {
  background: #F8F4EF;
  padding: 1em;
  border-radius: 15px;
  height: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 40px) / 3);
  position: relative;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1250px) {
  .p-purchase__trouble-text {
    font-size: 16px;
    line-height: 1.5em;
  }
}
@media screen and (width <= 959px) {
  .p-purchase__trouble-text {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-purchase__trouble-text {
    width: 100%;
  }
}
.p-purchase__trouble-text:before {
  position: absolute;
  content: url("../images/purchase/trouble-hukidasi.svg");
  left: 30px;
  bottom: -30px;
}

.p-purchase__flow {
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-purchase__flow .g-font-large {
  text-align: center;
  margin-bottom: 60px;
}
.p-purchase__flow-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1250px) {
  .p-purchase__flow-list {
    gap: 40px;
  }
}
@media screen and (width <= 959px) {
  .p-purchase__flow-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 60px;
  }
}
.p-purchase__flow-item {
  width: calc((100% - 240px) / 5);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .p-purchase__flow-item {
    width: calc((100% - 160px) / 5);
  }
}
@media screen and (width <= 959px) {
  .p-purchase__flow-item {
    width: calc((100% - 150px) / 3);
  }
}
@media screen and (width <= 767px) {
  .p-purchase__flow-item {
    width: 100%;
  }
}
.p-purchase__flow-item:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 60px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  background-color: #D3A05E;
  top: 40px;
  right: -47px;
}
@media screen and (width <= 767px) {
  .p-purchase__flow-item:before {
    width: 20px;
    height: 40px;
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
    top: unset;
    bottom: -61px;
    left: 47%;
    right: unset;
  }
}
.p-purchase__flow-item:last-child:before {
  display: none;
}
.p-purchase__flow-img {
  position: relative;
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-purchase__flow-img span {
  position: absolute;
  color: #D3A05E;
  font-size: 36px;
  top: -25px;
  left: calc(50% + 25px);
}
.p-purchase__flow .g-font-middle2 {
  margin: 13px 0 15px;
  text-align: center;
}
@media screen and (max-width: 1250px) {
  .p-purchase__flow .g-font-middle2 {
    font-size: 18px;
  }
}
@media screen and (width <= 767px) {
  .p-purchase__flow .g-font-small {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-purchase__faq {
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-purchase__faq .g-font-large {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (width <= 767px) {
  .p-purchase__faq .g-font-large {
    margin-bottom: 30px;
  }
}
.p-purchase__faq-item {
  margin-bottom: 16px;
  padding-bottom: 25px;
  border-bottom: 1px solid hsla(40, 92%, 10%, 0.2);
}
.p-purchase__faq-item .g-font-middle2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 17.5px;
}
.p-purchase__faq-item .g-font-middle2 span {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #3C6C11;
  font-size: 24px;
  top: -5px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-purchase__faq-item .g-font-middle2 span:before {
  position: absolute;
  content: "";
  border: 1px solid #D3A05E;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F8F4EF;
  z-index: -1;
  top: 1px;
}
@media screen and (width <= 767px) {
  .p-purchase__faq-item .g-font-middle2 span {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: -3px;
  }
  .p-purchase__faq-item .g-font-middle2 span:before {
    width: 40px;
    height: 40px;
    top: 2px;
  }
}
.p-purchase__faq-item .g-font-middle2.-question {
  cursor: pointer;
  padding-right: 40px;
}
.p-purchase__faq-item .g-font-middle2.-question::before, .p-purchase__faq-item .g-font-middle2.-question::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 1px;
  background-color: #312102;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 1s;
  transition: 1s;
}
.p-purchase__faq-item .g-font-middle2.-question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.p-purchase__faq-item .g-font-middle2.-question.show::before {
  opacity: 0;
}
.p-purchase__faq-item .g-font-middle2.-question.show::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.p-purchase__faq-item .g-font-middle2.-answer {
  padding-top: 30px;
  display: none;
}
@media screen and (width <= 767px) {
  .p-purchase__faq-item .g-font-middle2.-answer {
    padding-top: 20px;
  }
}
.p-purchase__faq-item .g-font-middle2.-answer p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 17.5px;
}
.p-purchase__faq-item .g-font-middle2.-answer span {
  color: #D3A05E;
}
.p-purchase__faq-item .g-font-middle2.-answer a {
  display: contents;
  color: #4572ff;
}

.p-about__fv {
  margin-top: 150px;
}
@media screen and (width <= 767px) {
  .p-about__fv {
    margin-top: 50px;
  }
}
.p-about__fv .g-font-large {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 64px;
}
@media screen and (width <= 767px) {
  .p-about__fv .g-font-large {
    margin-bottom: 35px;
  }
}
.p-about__fv-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
@media screen and (width <= 767px) {
  .p-about__fv-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
    margin-bottom: 50px;
  }
}
.p-about__fv-list:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (width <= 767px) {
  .p-about__fv-list:nth-child(2n+1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about__fv-img {
  width: 46%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (width <= 767px) {
  .p-about__fv-img {
    width: 100%;
  }
}
.p-about__fv-textarea {
  width: 51%;
}
@media screen and (width <= 767px) {
  .p-about__fv-textarea {
    width: 100%;
  }
}
.p-about__fv .g-font-middle {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-about__fv .g-font-middle span {
  font-size: 70px;
  color: #D3A05E;
  position: absolute;
  right: -44px;
  top: -38px;
  z-index: -1;
  font-family: "Crafty Girls", cursive;
}
@media screen and (width <= 959px) {
  .p-about__fv .g-font-middle span {
    right: -20px;
  }
}
@media screen and (width <= 767px) {
  .p-about__fv .g-font-middle span {
    top: -28px;
    font-size: 50px;
  }
}
.p-about__fv .g-font-small {
  margin: 20px 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 959px) {
  .p-about__fv .g-font-small {
    margin-bottom: 0;
  }
}
.p-about__fv .g-font-small.-note {
  margin: 0;
  color: #D1815F;
}
@media screen and (width <= 959px) {
  .p-about__fv .g-font-small.-note br {
    display: none;
  }
}

.p-about__video {
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-about__video .g-font-large {
  text-align: center;
}
.p-about__video-iframe {
  margin-top: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 767px) {
  .p-about__video iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}

.p-about__staff {
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-radius: 17px;
  padding: 0 0 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: var(--contents-spacer-l, 0);
}
@media screen and (width <= 959px) {
  .p-about__staff {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 40px;
    position: relative;
  }
}
@media screen and (width <= 767px) {
  .p-about__staff {
    padding: 0 20px;
  }
}
.p-about__staff-textarea {
  width: 50%;
  padding: 20px 0;
}
@media screen and (width <= 959px) {
  .p-about__staff-textarea {
    width: 100%;
    padding-bottom: 105px;
  }
}
@media screen and (width <= 767px) {
  .p-about__staff-textarea {
    padding-bottom: 0;
  }
}
.p-about__staff-textarea .g-font-small {
  margin: 20px 0 30px;
}
.p-about__staff-img {
  width: 50%;
  aspect-ratio: 368/200;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-about__staff-img {
    aspect-ratio: 368/295;
  }
}
@media screen and (width <= 959px) {
  .p-about__staff-img {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 45%;
    aspect-ratio: auto;
  }
}
@media screen and (width <= 767px) {
  .p-about__staff-img {
    position: relative;
    margin-left: auto;
    right: unset;
    width: 100%;
  }
}
.p-about__staff-img img {
  max-width: none;
  position: absolute;
  height: 120%;
  bottom: 0%;
}
@media screen and (max-width: 1200px) {
  .p-about__staff-img img {
    height: 80%;
  }
}
@media screen and (width <= 959px) {
  .p-about__staff-img img {
    max-width: 100%;
    position: relative;
    height: auto;
    top: unset;
  }
}
@media screen and (width <= 767px) {
  .p-about__staff .c-btn-main {
    margin: 0 auto;
  }
}

.p-about__achievements {
  margin-bottom: var(--contents-spacer-l, 0);
  border-radius: 46px;
  background: #cf8525;
  padding: 40px 75px 60px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .p-about__achievements {
    padding: 40px 40px 60px;
  }
}
@media screen and (width <= 767px) {
  .p-about__achievements {
    padding: 20px 20px 30px;
    border-radius: 25px;
  }
}
.p-about__achievements:before {
  width: 105%;
  height: 105%;
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  background-image: url(../images/faq/bg-note.png);
  opacity: 0.3;
  background-size: cover;
  background-position: center;
}
.p-about__achievements .g-font-large {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-about__achievements .g-font-large {
    margin-bottom: 25px;
  }
}
.p-about__achievements-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  gap: 40px 50px;
}
@media screen and (max-width: 1100px) {
  .p-about__achievements-list {
    gap: 40px 40px;
  }
}
@media screen and (width <= 767px) {
  .p-about__achievements-list {
    gap: 20px;
  }
}
.p-about__achievements-item {
  width: calc((100% - 50px) / 2);
  background: #F8F4EF;
  border-radius: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}
@media screen and (width <= 767px) {
  .p-about__achievements-item {
    width: 100%;
  }
}
@media screen and (width <= 959px) {
  .p-about__achievements-img {
    height: 120px;
    max-width: none;
  }
}
@media screen and (width <= 390px) {
  .p-about__achievements-img {
    height: 105px;
  }
}
@media screen and (width <= 370px) {
  .p-about__achievements-img {
    height: 85px;
  }
}

.p-about__sustainability {
  margin-bottom: var(--contents-spacer-l, 0);
}
.p-about__sustainability .g-font-large {
  text-align: center;
  word-break: keep-all;
}
.p-about__sustainability > .g-font-small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 40px;
}
.p-about__sustainability-logo {
  background: #FFFFFF;
  border-radius: 21px;
  padding: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (width <= 767px) {
  .p-about__sustainability-logo {
    padding: 20px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
}
@media screen and (width <= 767px) {
  .p-about__sustainability-logo-img {
    width: calc((100% - 40px) / 3);
  }
}
.p-about__sustainability-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 80px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .p-about__sustainability-list {
    gap: 50px 40px;
  }
}
@media screen and (width <= 959px) {
  .p-about__sustainability-list {
    gap: 30px 50px;
  }
}
@media screen and (width <= 767px) {
  .p-about__sustainability-list {
    margin-top: 30px;
    gap: 30px;
  }
}
.p-about__sustainability-item {
  width: calc((100% - 160px) / 3);
}
@media screen and (max-width: 1200px) {
  .p-about__sustainability-item {
    width: calc((100% - 80px) / 3);
  }
}
@media screen and (width <= 959px) {
  .p-about__sustainability-item {
    width: calc((100% - 50px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-about__sustainability-item {
    width: 100%;
  }
}
.p-about__sustainability-item-img {
  border-radius: 21px;
  overflow: hidden;
}
.p-about__sustainability-item-head {
  margin: 20px 0 10px;
}

.p-about__network .g-font-large {
  text-align: center;
}
@media screen and (width <= 959px) {
  .p-about__network .g-font-large {
    word-break: keep-all;
    overflow-wrap: anywhere;
    width: 100%;
  }
}
.p-about__network > .g-font-small {
  width: 100%;
  max-width: 760px;
  margin: 40px auto 60px;
}
@media screen and (width <= 767px) {
  .p-about__network > .g-font-small {
    margin: 25px auto 30px;
  }
}
.p-about__network-img {
  background: #F8F4EF;
  border-radius: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
}
@media screen and (width <= 767px) {
  .p-about__network-img {
    padding: 20px;
    overflow: scroll;
    overflow-x: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (width <= 767px) {
  .p-about__network-img img {
    width: 175vw;
    height: auto;
    max-width: none;
    left: 0;
    position: relative;
  }
}

.scroll-hint-icon {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
}

.p-no-page .g-font-small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 150px auto 50px;
}
@media screen and (width <= 767px) {
  .p-no-page .g-font-small {
    margin-top: 50px;
  }
}
.p-no-page__btn {
  margin: 0 auto;
}
.p-no-page__btn .c-btn-main {
  margin: 0 auto;
}

.simpleBlock {
  margin-top: 90px;
}

.txt_c {
  line-height: 1.75em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.txtWrap h3 {
  line-height: 1.75em;
  margin-top: 20px;
}

.orderWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 60px;
}
.orderWrap .orderWrap {
  margin-top: 20px;
}
.orderWrap dt {
  width: 35%;
  background: #D3A05E;
  border: 1px solid #D3A05E;
  border-bottom: 1px solid #F8F4EF;
  color: #fff;
  padding: 15px 20px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (width <= 959px) {
  .orderWrap dt {
    width: 100%;
  }
}
.orderWrap dd {
  width: 65%;
  background: #F8F4EF;
  border: 1px solid #D3A05E;
  border-bottom: 1px solid #F8F4EF;
  padding: 15px 20px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (width <= 959px) {
  .orderWrap dd {
    width: 100%;
  }
}
.orderWrap dd:last-child {
  border-bottom: 1px solid #D3A05E;
}
.orderWrap a:hover {
  opacity: 0.7;
}
.orderWrap .orderWrap {
  margin-bottom: 15px;
}

.rightTxtBlock {
  text-align: right;
  margin-top: 20px;
}

.privacy-policy table {
  margin-top: 25px;
  width: 100%;
}
.privacy-policy tr:first-child th {
  background: #D3A05E;
  border: 1px solid #D3A05E;
  border-bottom: 1px solid #F8F4EF;
  color: #fff;
  padding: 15px 20px;
  font-weight: 500;
  font-size: 16px;
}
.privacy-policy td {
  background: #F8F4EF;
  padding: 15px 20px;
  font-weight: 500;
  font-size: 16px;
}

.simpleBlock {
  width: 90%;
  margin: 50px auto;
}

.-submit .p-no-page__inner {
  margin-top: 150px;
}
.-submit h2 {
  text-align: center;
  margin: 105px auto 40px;
}
.-submit.p-no-page .g-font-small {
  margin-top: 0;
}

@media screen and (width > 767px) {
  .u-dn-md-min {
    display: none;
  }
}

@media screen and (width <= 767px) {
  .u-dn-md-max {
    display: none;
  }
}

.u-cf::after {
  display: block;
  clear: both;
  content: "";
}/*# sourceMappingURL=style.css.map */