@charset "UTF-8";
/**
 * Fluid font size
 * 
 * 画面幅に応じてフォントサイズを滑らかに変化させる関数。
 * clamp() を使って「最小〜最大」の範囲内で可変する。
 *
 * @param {number} $min - 最小フォントサイズ（rem換算前の数値）
 * @param {number} $max - 最大フォントサイズ（rem換算前の数値）
 * @param {number} $min-vw - 可変開始のビューポート幅（px）※デフォルト: 320
 * @param {number} $max-vw - 可変終了のビューポート幅（px）※デフォルト: 1280
 *
 * @example
 * h1 {
 *   font-size: fz(2.4, 4.0);
 * }
 * → 320pxで2.4rem、1280pxで4.0rem、その間は滑らかに変化
 * max=デザイン値 min=80〜90%
 */
/**
 * px -> rem 変換関数
 *
 * 単一値、スペース区切り、カンマ区切りに対応
 *
 * @example
 * padding: rem(30);
 * padding: rem(26 30);
 * margin: rem(10 20 30 40);
 */
/**
 * Fluid spacing（余白用）
 *
 * 画面幅に応じて padding / margin / gap を滑らかに変化させる関数。
 * clamp() を使って最小〜最大の範囲に収める。
 *
 * @param {number} $min - 最小サイズ（rem換算前の数値）
 * @param {number} $max - 最大サイズ（rem換算前の数値）
 * @param {number} $min-vw - 可変開始のビューポート幅（px）※デフォルト: 320
 * @param {number} $max-vw - 可変終了のビューポート幅（px）※デフォルト: 1280
 *
 * @example
 * padding: sp(1.6, 4.0);
 * → 小画面では1.6rem、大画面では4.0rem、間は滑らかに変化
 *
 * @example
 * padding: sp(2, 4) sp(3, 6);
 * → 上下と左右で別々にfluid指定
 * padding: [上下] [左右];
 * rem指定。16px = 1rem
 *
 * @note
 * - フォントサイズではなく「余白」に使う
 * - セクション余白など広い領域におすすめ
 */
/**
* 1プロパティのホバーアニメーション
*例）
*.button {
* @include hover-transition(background-color, #333, #555);
*}
**/
/*
メディアクエリ用ミックスイン
@include mq()        { ... } // md max（デフォ）
@include mq(lg)      { ... } // lg max
@include mq(md, min) { ... } // md以上
*/
/* modern-normalize v2系ベース */
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

body {
  margin: 0;
  color: #000;
}

hr {
  height: 0;
  color: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

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

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
}

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

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

img,
picture {
  display: block;
}

@font-face {
  font-family: "SerpentineICG";
  src: url("../fonts/Serpentine_icg.woff2") format("woff2"), url("../fonts/Serpentine_icg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: clamp(1.1rem, 1.0066666667rem + 0.0291666667vw, 1.38rem);
  font-weight: bold;
}

main {
  overflow: hidden;
}

h1 {
  font-size: clamp(2.4rem, 1.8666666667rem + 0.1666666667vw, 4rem);
  line-height: 1.2;
  font-weight: bold;
}

h2 {
  font-size: clamp(2rem, 1.6rem + 0.125vw, 3.2rem);
  line-height: 1.3;
  font-weight: bold;
}

h3 {
  font-size: clamp(2.1rem, 1.9233333333rem + 0.0552083333vw, 2.63rem);
  line-height: 1.3;
  font-weight: bold;
}

h4 {
  font-size: clamp(1.6rem, 1.4666666667rem + 0.0416666667vw, 2rem);
  line-height: 1.6;
  font-weight: bold;
}

p {
  font-size: clamp(1.1rem, 1.0066666667rem + 0.0291666667vw, 1.38rem);
  line-height: 1.7;
  font-weight: bold;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*=================================
layout
=================================*/
.l-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}
.l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 50px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #000;
}
@media (max-width: 768px) {
  .l-header-inner {
    padding: 0 10px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .l-header-inner h1 img {
    width: 30px;
    height: auto;
  }
}

.l-container {
  width: min(100%, 1080px);
  margin-inline: auto;
}
@media (max-width: 1280px) {
  .l-container {
    padding-inline: 20px;
  }
}

section {
  padding-top: clamp(4.38rem, 3.7566666667rem + 0.1947916667vw, 6.25rem);
  padding-bottom: clamp(4.38rem, 3.7566666667rem + 0.1947916667vw, 6.25rem);
}

footer {
  padding: 40px 0 100px;
  background: #8c8981;
}
footer a {
  transition: 0.3s;
}
footer a:hover {
  opacity: 0.7;
}
footer .footer__inner {
  max-width: 830px;
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
@media (max-width: 768px) {
  footer .footer__inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
}
footer .footer__inner .company__info {
  width: min(300px, 100%);
}
footer .footer__inner .company__info .company__name {
  font-family: Corporate-Logo-Medium-ver3;
  font-weight: 600;
  font-size: 23px;
  line-height: 27.34px;
  text-align: left;
  color: #fff;
}
footer .footer__inner .company__info .company__name span {
  font-size: 16px;
}
footer .footer__inner .company__info .tel {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 31px;
  line-height: 1.5;
  margin-top: 10px;
  text-align: left;
  color: #fff;
  display: block;
}
footer .footer__inner .company__info .w__txt {
  font-weight: normal;
  font-size: 16px;
  line-height: 19.2px;
  margin-top: 10px;
  text-align: left;
  color: #fff;
}
footer .footer__inner .h_line {
  width: 1px;
  height: 141px;
  background: #fff;
}
@media (max-width: 768px) {
  footer .footer__inner .h_line {
    width: 80%;
    height: 1px;
  }
}
footer .footer__inner .content__menu {
  width: min(430px, 100%);
}
footer .footer__inner .content__menu.small {
  width: auto;
}
footer .footer__inner .content__menu .lbl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21.6px;
  padding-left: 20px;
  text-align: left;
  color: #fff;
}
footer .footer__inner .content__menu ul {
  height: 140px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  footer .footer__inner .content__menu ul {
    height: auto;
    gap: 10px;
  }
}
footer .footer__inner .content__menu ul li {
  margin: 7px 20px;
}
footer .footer__inner .content__menu ul li a {
  font-weight: normal;
  font-size: 14px;
  line-height: 16.8px;
  text-align: left;
  color: #fff;
}
footer .footer__inner .content__menu ul li a.child {
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

.copyright {
  font-weight: normal;
  font-size: 12px;
  line-height: 14.4px;
  margin-top: 14px;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .copyright {
    text-align: center;
  }
}

/*=================================
object
=================================*/
/*component*/
.c-grid-container {
  display: grid;
  grid-template-rows: 53% 18% 29%;
  grid-template-columns: 31% 1fr;
}
@media (max-width: 768px) {
  .c-grid-container {
    grid-template-rows: auto 18% auto;
  }
}
.c-grid-item.--item1 {
  grid-row: 1/2;
  grid-column: 1/2;
}
.c-grid-item.--item2 {
  grid-row: 2/4;
  grid-column: 1/2;
}
.c-grid-item.--item3 {
  grid-row: 1/3;
  grid-column: 2/3;
}
.c-grid-item.--item4 {
  grid-row: 3/4;
  grid-column: 2/3;
}

.c-gnavi {
  display: flex;
}
.c-gnavi ul {
  display: flex;
}
.c-gnavi ul li a {
  color: #fff;
}

.l-header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ハンバーガー */
.c-hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1003;
}
.c-hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}
.c-hamburger.is-open span {
  background: #000;
}
.c-hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ナビ */
.c-gnavi ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.c-gnavi a {
  text-decoration: none;
  color: #000;
}

/* =====================
   スマホ
===================== */
@media screen and (max-width: 768px) {
  .c-hamburger {
    display: block;
  }
  .c-gnavi {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    padding-top: 100px;
    transition: 0.3s;
    z-index: 1002;
  }
  .c-gnavi ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    width: 100%;
  }
  .c-gnavi li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
  }
  .c-gnavi li a {
    color: #000 !important;
  }
  .c-gnavi.is-open {
    right: 0;
  }
}
.c-main-title {
  text-align: center;
  font-size: clamp(2.1rem, 1.9233333333rem + 0.0552083333vw, 2.63rem);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-inline: auto;
  margin-bottom: clamp(4rem, 3.6666666667rem + 0.1041666667vw, 5rem);
  color: #886e5a;
}
@media (max-width: 768px) {
  .c-main-title {
    font-size: 5vw;
  }
}
.c-main-title::before {
  content: "";
  display: block;
  width: 100px;
  height: 28px;
  background: url("../images/common/title_gap02.webp") no-repeat center/cover;
  font-size: 0px;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .c-main-title::before {
    width: 25%;
    aspect-ratio: 199/57;
    height: auto;
  }
}
.c-main-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 28px;
  background: url("../images/common/title_gap02.webp") no-repeat center/cover;
  font-size: 0px;
}
@media (max-width: 768px) {
  .c-main-title::after {
    width: 25%;
    aspect-ratio: 199/57;
    height: auto;
  }
}
.c-main-title.--white {
  color: #fff;
}
.c-main-title.--white::before {
  background: url("../images/common/lp_about_title.webp") no-repeat center/cover;
  transform: rotate(180deg);
}
.c-main-title.--white::after {
  background: url("../images/common/lp_about_title.webp") no-repeat center/cover;
}

.c-rightfix {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1001;
}
@media (max-width: 768px) {
  .c-rightfix {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
.c-rightfix a {
  background: #886e5a;
  color: #fff;
  font-size: 1.375rem;
  border-radius: 17px 0px 0px 17px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(2.55rem, 1.9833333333rem + 0.1770833333vw, 4.25rem);
  writing-mode: vertical-rl;
  border: 2px solid #886e5a;
  transition: all 0.25s ease;
  letter-spacing: 0.075em;
}
.c-rightfix a:hover {
  background: #fff;
  color: #886e5a;
}
@media (max-width: 768px) {
  .c-rightfix a {
    width: 100%;
    writing-mode: horizontal-tb;
    padding: 20px;
    border-radius: 0;
  }
}

/*project*/
.section-contact {
  width: 100%;
  height: auto;
  padding: 6.75rem 0;
  background: url("../images/common/contact_bg.png");
  background-size: cover;
  background-position: center;
}
.section-contact .t__lbl {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: clamp(2rem, 1.6rem + 0.125vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  margin-top: 0;
}
.section-contact .contact__items {
  display: flex;
  justify-content: center;
  margin-top: 4.1875rem;
  align-items: center;
}
@media (max-width: 768px) {
  .section-contact .contact__items {
    flex-direction: column;
    gap: 60px;
  }
}
.section-contact .contact__items .c__item {
  width: min(24rem, 90%);
  height: 6.875rem;
  margin: 0 0.5625rem;
  padding-top: 0.75rem;
  border-radius: 0.5rem;
  background: #896f5a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}
.section-contact .contact__items .c__item:hover {
  opacity: 0.7;
}
.section-contact .contact__items .c__item.tel {
  background: #cfbdaa;
}
.section-contact .contact__items .c__item.tel .c__lbl {
  background: url("../images/common/c__bg.png");
  background-size: 100% 100%;
}
.section-contact .contact__items .c__item .c__lbl {
  width: 15.125rem;
  height: 4.09875rem;
  background: url("../images/common/c__bg.png");
  background-size: 100% 100%;
  padding-top: 0.75rem;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  margin: 0;
}
.section-contact .contact__items .c__item .c__lbl span {
  font-weight: normal;
  font-size: clamp(1.1rem, 1.0066666667rem + 0.0291666667vw, 1.38rem);
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: left;
  color: #333;
}
.section-contact .contact__items .c__item .icon {
  width: 2.5rem;
  margin-right: 0.75rem;
  display: flex;
}
.section-contact .contact__items .c__item .lbl__content .lbl {
  font-weight: bold;
  font-size: clamp(1.6rem, 1.4666666667rem + 0.0416666667vw, 2rem);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .section-contact .contact__items .c__item .lbl__content .lbl {
    font-size: 20px;
  }
}
.section-contact .contact__items .c__item .lbl__content .gap__txt {
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .section-contact .contact__items .c__item .lbl__content .gap__txt {
    font-size: 10px;
  }
}

.p-top-about {
  background: url("../images/top/bg01.png") no-repeat right center/cover;
}
.p-top-about--box {
  display: flex;
  gap: clamp(2.5rem, 2.29rem + 0.065625vw, 3.13rem);
  background: #fff;
  padding-inline: clamp(4.5rem, 4.1233333333rem + 0.1177083333vw, 5.63rem);
  padding-block: clamp(2.5rem, 2.29rem + 0.065625vw, 3.13rem);
}
@media (max-width: 768px) {
  .p-top-about--box {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.p-top-about--box-img {
  width: min(359px, 100%);
  margin-inline: auto;
}
.p-top-about--box-text {
  flex: 1;
}
.p-top-about--box-text h3 {
  color: #886e5a;
  margin-bottom: 1em;
  margin-top: 0;
  font-size: 28px;
}
.p-top-about--box-text p {
  font-size: 22px;
}
.p-top-problem {
  background: #f4f2ee;
}
.p-top-problem--box {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .p-top-problem--box {
    flex-direction: column;
    gap: 20px;
  }
}
.p-top-problem--box li {
  flex: 1;
}
.p-top-problem--box-img {
  margin-inline: auto;
  width: min(150px, 100%);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-problem--box-text h3 {
  color: #886e5a;
  font-size: 26px;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
}
.p-top-problem--box-text p {
  font-size: 18px;
  font-weight: normal;
}
.p-top-bg-box.separate {
  overflow: hidden;
  height: 30vw;
}
.p-top-bg-box.separate img {
  aspect-ratio: 2880/1441;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-linkarea {
  background: url("../images/top/img03.png") no-repeat center/cover;
}
.p-top-linkarea.c-link-area ul {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .p-top-linkarea.c-link-area ul {
    flex-direction: column;
    gap: 20px;
  }
}
.p-top-linkarea.c-link-area ul li {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  height: 320px;
  border-radius: 36px;
  padding: 30px;
}
.p-top-linkarea.c-link-area ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p-top-linkarea.c-link-area ul li h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.p-top-linkarea.c-link-area ul li p {
  font-size: 22px;
}
.p-top-calousel ul {
  display: flex;
}
.p-top-calousel ul li {
  width: 380px;
}

.p-mv {
  background-image: url("../images/top/mv-bg.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-mv-inner {
  position: relative;
}
.p-mv .c-grid-item.--item1 {
  position: relative;
}
.p-mv .c-grid-item.--item1 .text-shi {
  position: absolute;
  top: 45%;
  left: 20%;
}
.p-mv .c-grid-item.--item1 .text-shi img {
  width: 7vw;
  height: 7vw;
}
.p-mv .c-grid-item.--item1 .text-kai {
  position: absolute;
  top: 52%;
  left: 50%;
}
.p-mv .c-grid-item.--item1 .text-kai img {
  width: 7vw;
  height: 7vw;
}
.p-mv .c-grid-item.--item2 img, .p-mv .c-grid-item.--item3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv .c-grid-item.--item4 {
  padding: 3%;
}
.p-mv .c-grid-item.--item4 p {
  margin: 0;
  font-size: 1.4375rem;
}
@media (max-width: 768px) {
  .p-mv .c-grid-item.--item4 p {
    font-size: 0.625rem;
    margin-top: 0;
  }
}
.p-mv .c-grid-item.--item4 p.strong {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-mv .c-grid-item.--item4 p.strong {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
}
.p-mv.--payout {
  background: url("../images/payouts/mv-bg.png") no-repeat center/cover;
  height: 748px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-mv.--payout {
    height: 40vh;
  }
}
.p-mv.--payout h1 {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: clamp(3.3rem, 3.0233333333rem + 0.0864583333vw, 4.13rem);
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-mv.--payout h1 {
    font-size: 7vw;
  }
}
.p-mv.--payout h1 span {
  font-size: clamp(4rem, 3.6666666667rem + 0.1041666667vw, 5rem);
}
@media (max-width: 768px) {
  .p-mv.--payout h1 span {
    font-size: 14vw;
  }
}
.p-mv.--noimg {
  height: 200px;
  background: #886e5a;
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  justify-content: flex-start;
}

.p-mv {
  position: relative;
  overflow: hidden;
}

.p-mv-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.p-mv-inner {
  position: relative;
  z-index: 1;
}

.p-payout-problem {
  padding: 0;
}
.p-payout-problem h2 {
  margin-top: 0;
}
.p-payout-problem .problem-contents {
  background: #cfbdaa;
  padding-top: clamp(4.35rem, 3.9866666667rem + 0.1135416667vw, 5.44rem);
}
.p-payout-problem_baloon:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-payout-problem_baloon:not(:last-child) {
    margin-bottom: 20px;
  }
}
.p-payout-problem_baloon p {
  background: #fff;
  border-radius: 100vh;
  color: #886e5a;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 22px 56px;
  font-size: clamp(1.4rem, 1.2833333333rem + 0.0364583333vw, 1.75rem);
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-payout-problem_baloon p {
    font-size: 4vw;
    padding: 10px 20px;
  }
}
.p-payout-problem_baloon:nth-child(1) p {
  font-size: clamp(1.6rem, 1.4666666667rem + 0.0416666667vw, 2rem);
}
@media (max-width: 768px) {
  .p-payout-problem_baloon:nth-child(1) p {
    font-size: 4vw;
  }
}
.p-payout-problem_baloon:nth-child(odd) {
  -moz-text-align-last: left;
       text-align-last: left;
}
.p-payout-problem_baloon:nth-child(odd) p {
  margin-right: auto;
  margin-left: 0;
}
.p-payout-problem_baloon:nth-child(even) {
  text-align: right;
}
.p-payout-problem_baloon:nth-child(even) p {
  margin-left: auto;
  margin-right: 0;
}
.p-payout-problem .bloon-bottom {
  position: relative;
  top: -180px;
  z-index: -1;
  margin-bottom: -180px;
}
.p-payout-problem .bloon-bottom .baloon {
  background: #cfbdaa;
  border-bottom-left-radius: 1000px 400px;
  border-bottom-right-radius: 1000px 400px;
  height: 400px;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
  position: relative;
}
@media (max-width: 768px) {
  .p-payout-problem .bloon-bottom .baloon {
    border-bottom-left-radius: 100% 100%;
    border-bottom-right-radius: 100% 100%;
    height: 30vh;
    margin-left: -200px;
    margin-right: -200px;
  }
}
.p-payout-problem .bloon-bottom .baloon::after {
  content: "";
  display: block;
  width: 204px;
  height: 107px;
  background: url("../images/payouts/hukidashi.svg") no-repeat;
  position: absolute;
  bottom: 0;
  left: 60%;
}
@media (max-width: 768px) {
  .p-payout-problem .bloon-bottom .baloon::after {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-payout-problem .bloon-bottom .ill {
  text-align: right;
  padding-right: 50px;
}
@media (max-width: 768px) {
  .p-payout-problem .bloon-bottom .ill {
    padding-right: 10px;
  }
}
.p-payout-problem .bloon-bottom .ill img {
  margin-left: auto;
}
.p-payout-solution {
  background: #886e5a;
  padding-top: clamp(2.1rem, 1.9233333333rem + 0.0552083333vw, 2.63rem);
  padding-bottom: clamp(2.1rem, 1.9233333333rem + 0.0552083333vw, 2.63rem);
}
.p-payout-solution .ill2 {
  text-align: center;
}
.p-payout-solution .ill2 img {
  margin: 0 auto 50px;
}
.p-payout-solution h2 {
  color: #fff;
  margin-top: 0;
  font-size: clamp(3.15rem, 2.8866666667rem + 0.0822916667vw, 3.94rem);
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media (max-width: 768px) {
  .p-payout-solution h2 {
    font-size: 34px;
  }
}
.p-payout-solution h2 span {
  font-size: clamp(1.9rem, 1.74rem + 0.05vw, 2.38rem);
  font-family: "Noto Sans JP", sans-serif;
  display: block;
}
@media (max-width: 768px) {
  .p-payout-solution h2 span {
    font-size: 20px;
  }
}
.p-payout-solution p {
  font-size: clamp(1.3rem, 0.8566666667rem + 0.1385416667vw, 2.63rem);
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.92;
}
@media (max-width: 768px) {
  .p-payout-solution p {
    font-size: 18px;
  }
}
.p-payout-product-item {
  display: flex;
  gap: clamp(2.1rem, 1.9233333333rem + 0.0552083333vw, 2.63rem);
}
@media (max-width: 768px) {
  .p-payout-product-item {
    flex-direction: column;
  }
}
.p-payout-product-item .item-text {
  flex: 1;
}
.p-payout-product-item .item-text .tag {
  background: #886e5a;
  border-radius: 100vh;
  color: #fff;
  font-size: clamp(0.9rem, 0.8233333333rem + 0.0239583333vw, 1.13rem);
  margin-bottom: 7px;
  padding: 3px 10px;
}
.p-payout-product-item .item-text h3 {
  display: flex;
  align-items: baseline;
  font-size: clamp(1.1rem, 1.0066666667rem + 0.0291666667vw, 1.38rem);
  gap: 16px;
}
.p-payout-product-item .item-text p {
  font-size: clamp(1.1rem, 1.0066666667rem + 0.0291666667vw, 1.38rem);
  line-height: 1.45;
}
.p-payout-merit {
  background: #cfbdaa;
}
.p-payout-merit-item {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 768px) {
  .p-payout-merit-item {
    gap: 30px;
  }
}
.p-payout-merit-item li {
  background: #fff;
  border-radius: 26px;
  position: relative;
  padding: clamp(2rem, 1.8333333333rem + 0.0520833333vw, 2.5rem);
  width: calc((100% - 50px) / 2);
}
.p-payout-merit-item li h3 {
  font-family: "Noto Serif JP", serif;
  color: #886e5a;
  font-size: clamp(1.6rem, 1.4666666667rem + 0.0416666667vw, 2rem);
}
.p-payout-merit-item li p {
  font-size: clamp(1.1rem, 1.0066666667rem + 0.0291666667vw, 1.38rem);
}
@media (max-width: 768px) {
  .p-payout-merit-item li {
    width: 100%;
  }
}
.p-payout-merit-item li .num {
  position: absolute;
  top: -25px;
  left: 10px;
  font-size: clamp(3rem, 2.3333333333rem + 0.2083333333vw, 5rem);
  color: #886e5a;
  font-family: "Noto Serif JP", serif;
}
.p-payout-recommend {
  background: #f4f2ec;
}
.p-payout-recommend-item {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .p-payout-recommend-item {
    flex-direction: column;
    gap: 20px;
  }
}
.p-payout-recommend-item-text {
  flex: 1;
}
.p-payout-recommend-item-text ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 2px dashed #886e5a;
}
.p-payout-recommend-item-text ul li::before {
  content: "";
  display: block;
  width: 28px;
  height: 37px;
  background: url("../images/payouts/check.svg") no-repeat;
}
.p-payout-case {
  background: url("../images/payouts/case_bg.png") no-repeat center/cover;
}
.p-payout-case-item {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-payout-case-item {
    flex-direction: column;
  }
}
.p-payout-case-item li {
  flex: 1;
  background: #fff;
}
.p-payout-case-item li p {
  font-size: clamp(0.8rem, 0.7333333333rem + 0.0208333333vw, 1rem);
  font-weight: normal;
  text-align: center;
}

.section-flow {
  background: #8E8275;
  padding: 100px 0;
}
.section-flow .content__inner {
  max-width: 1180px;
  width: 95%;
  margin: auto;
}
.section-flow .content__inner .t__lbl {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
  margin-top: 35px;
  text-align: left;
  color: #fefefe;
}
.section-flow .content__inner .flow__items {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .section-flow .content__inner .flow__items {
    flex-direction: column;
  }
}
.section-flow .content__inner .flow__items .f__item {
  width: 220px;
}
.section-flow .content__inner .flow__items .f__item .lbl__content {
  height: 52px;
  display: flex;
  align-items: center;
}
.section-flow .content__inner .flow__items .f__item .lbl__content .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-size: 24px;
  line-height: 28.8px;
  margin-right: 11px;
  text-align: left;
  color: #fff;
  flex-shrink: 0;
}
.section-flow .content__inner .flow__items .f__item .lbl__content .lbl {
  font-size: 20px;
  line-height: 24px;
}
.section-flow .content__inner .flow__items .f__item .lbl__content .lbl span {
  font-size: 16px;
}
.section-flow .content__inner .flow__items .f__item .image__wrapper {
  margin-top: 4px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.section-flow .content__inner .flow__items .f__item .c__txt {
  font-size: 16px;
  line-height: 28px;
  margin-top: 14px;
}
.section-flow .content__inner .flow__items .arrow {
  width: 10.68px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .section-flow .content__inner .flow__items .arrow {
    transform: rotate(90deg);
  }
}
.section-flow .content__inner .link__pos {
  margin-top: 46px;
}

.faq__wrapper {
  padding: 150px 0;
  text-align: center;
  background: url("../images/payouts/case_bg.png");
  background-size: cover;
}
.faq__wrapper .content__inner {
  max-width: 1250px;
  width: 95%;
  margin: auto;
}
.faq__wrapper .faq__items {
  max-width: 1140px;
  width: 95%;
  margin: auto;
  margin-top: 60px;
}
.faq__wrapper .faq__items .f__item {
  width: 100%;
  margin-bottom: 60px;
  padding: 20px;
  background: #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__wrapper .faq__items .f__item {
    margin-bottom: 20px;
  }
}
.faq__wrapper .faq__items .f__item {
  /* ===== 新規追加 ===== */
}
.faq__wrapper .faq__items .f__item .t__title {
  padding: 0 15px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .faq__wrapper .faq__items .f__item .t__title {
    padding-left: 0;
  }
}
.faq__wrapper .faq__items .f__item .t__title p {
  margin: 0;
}
.faq__wrapper .faq__items .f__item .t__title.open:after {
  opacity: 0;
}
.faq__wrapper .faq__items .f__item .t__title:before {
  content: "";
  width: 34px;
  height: 4px;
  background: #896F5A;
  position: absolute;
  right: 50px;
  top: 28px;
}
@media (max-width: 768px) {
  .faq__wrapper .faq__items .f__item .t__title:before {
    right: 5px;
    height: 2px;
    width: 20px;
  }
}
.faq__wrapper .faq__items .f__item .t__title:after {
  content: "";
  width: 4px;
  height: 34px;
  background: #896F5A;
  position: absolute;
  right: 65px;
  top: 14px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .faq__wrapper .faq__items .f__item .t__title:after {
    right: 14px;
    width: 2px;
    height: 20px;
    top: 20px;
  }
}
.faq__wrapper .faq__items .f__item .t__title .q__txt {
  font-family: "Noto Serif JP", serif;
  font-size: 42.52px;
  margin-right: 30px;
  color: #896f5a;
}
@media (max-width: 768px) {
  .faq__wrapper .faq__items .f__item .t__title .q__txt {
    font-size: 20px;
    margin-right: 10px;
  }
}
.faq__wrapper .faq__items .f__item .t__title .q__lbl {
  font-size: 20px;
  line-height: 51.03px;
  color: #896f5a;
}
@media (max-width: 768px) {
  .faq__wrapper .faq__items .f__item .t__title .q__lbl {
    font-size: 16px;
    line-height: 1.4;
    color: #896f5a;
    padding-right: 20px;
  }
}
.faq__wrapper .faq__items .f__item {
  /* ===== 新規回答 ===== */
}
.faq__wrapper .faq__items .f__item .a__txt {
  font-size: 19.46px;
  line-height: 38.92px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #8e8275;
  display: none;
  text-align: left;
}
@media (max-width: 768px) {
  .faq__wrapper .faq__items .f__item .a__txt {
    font-size: 16px;
    line-height: 1.4;
  }
}
.faq__wrapper .faq__items .f__item .a__txt span {
  font-family: "Noto Serif JP", serif;
  font-size: 42.52px;
  color: #896f5a;
  margin-right: 30px;
  float: left;
  padding-left: 15px;
}
.faq__wrapper .faq__items .f__item .a__txt::after {
  content: "";
  display: block;
  clear: both;
}

.contact__wrapper {
  padding: 100px 0;
}
.contact__wrapper .detail__txt {
  font-weight: 600;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: #896f5a;
}
@media (max-width: 768px) {
  .contact__wrapper .detail__txt {
    font-size: 16px;
  }
  .contact__wrapper .detail__txt br {
    display: none;
  }
}
.contact__wrapper .contact__form {
  max-width: 1180px;
  width: 95%;
  margin: auto;
  margin-top: 140px;
}
.contact__wrapper .contact__form table {
  width: 100%;
  border-collapse: collapse;
}
.contact__wrapper .contact__form table tr {
  display: flex;
  align-items: center;
}
.contact__wrapper .contact__form table tr:last-child {
  align-items: flex-start;
}
.contact__wrapper .contact__form table tr td {
  width: 100%;
  font-weight: normal;
  font-size: 19.93px;
  line-height: 34.87px;
  padding: 35px 0;
  text-align: left;
  color: #896f5a;
}
@media (max-width: 768px) {
  .contact__wrapper .contact__form table tr td {
    font-size: 16px;
    padding: 1em 0;
  }
}
.contact__wrapper .contact__form table tr td .check__items {
  display: flex;
  flex-wrap: wrap;
}
.contact__wrapper .contact__form table tr td label {
  width: auto;
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px 0;
}
.contact__wrapper .contact__form table tr td label input[type=checkbox] {
  display: none;
}
.contact__wrapper .contact__form table tr td label input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.contact__wrapper .contact__form table tr td label span {
  padding-left: 55px;
  position: relative;
}
.contact__wrapper .contact__form table tr td label span:before {
  content: "";
  width: 40px;
  height: 40px;
  background: #f5f2ed;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact__wrapper .contact__form table tr td label span:after {
  content: "";
  width: 10px;
  height: 20px;
  border-right: 1px solid #896F5A;
  border-bottom: 1px solid #896F5A;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  transition: 0.3s;
  opacity: 0;
}
.contact__wrapper .contact__form table tr td input[type=text],
.contact__wrapper .contact__form table tr td input[type=email] {
  width: 100%;
  height: 58.71px;
  background: #f5f2ed;
  font-size: 17px;
  color: #896f5a;
  padding-left: 15px;
  border: 0;
  outline: 0;
}
.contact__wrapper .contact__form table tr td textarea {
  width: 100%;
  height: 290px;
  background: #f5f2ed;
  font-size: 17px;
  line-height: 1.6;
  color: #896f5a;
  padding: 15px;
  border: 0;
  outline: 0;
}
.contact__wrapper .contact__form table tr td:first-child {
  width: 420px;
  display: flex;
  align-items: center;
}
.contact__wrapper .contact__form table tr td:first-child .required {
  font-weight: 600;
  font-size: 14.94px;
  line-height: 1;
  text-align: left;
  color: #fff;
  border-radius: 14px;
  padding: 6px 12px;
  margin-left: 20px;
  background: #896f5a;
}
@media (max-width: 768px) {
  .contact__wrapper .contact__form table,
  .contact__wrapper .contact__form table tr,
  .contact__wrapper .contact__form table th,
  .contact__wrapper .contact__form table td,
  .contact__wrapper .contact__form table thead,
  .contact__wrapper .contact__form table tbody {
    display: block;
    width: 100% !important;
    text-align: left;
  }
}
.contact__wrapper .contact__form .link__pos {
  display: flex;
  justify-content: center;
  margin-top: 150px;
}
.contact__wrapper .contact__form .link__pos button {
  border: 0;
  cursor: pointer;
}
.contact__wrapper .contact__form .link__btn {
  width: 320px;
  height: 72px;
  border-radius: 34.5px;
  background: #896f5a;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
}
.contact__wrapper .contact__form .link__btn::after {
  content: "";
  width: 20px;
  height: 12px;
  background: url("../images/payouts/arrow_w.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.p-case-items .l-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.p-case-item {
  width: calc(50% - 25px);
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .p-case-item {
    width: 100%;
  }
}
.p-case-item a {
  transition: all 0.25s ease;
}
.p-case-item a:hover {
  opacity: 0.7;
}
.p-case-item__content {
  padding: 10px 30px 30px;
}
.p-case-item__img {
  aspect-ratio: 515/343;
  overflow: hidden;
}
.p-case-item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: 100%;
}
.p-case-item__title {
  font-size: 28px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #886e5a;
}
.p-case-item__txt {
  font-size: 18px;
  font-weight: 500;
  color: #886e5a;
}

.case__wrapper .c__item__header .content__text h2 {
  font-size: 32px;
  color: #886e5a;
  font-family: "Noto Serif JP", serif;
}
.case__wrapper .c__item__header .content__text p {
  font-size: 22px;
}
.case__wrapper .c__item__header .image {
  max-width: 100%;
  margin: 0;
}
.case__wrapper .c__item__header .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case__wrapper .c__item__box {
  padding-top: 60px;
}
.case__wrapper .c__box h4 {
  font-size: 32px;
  border-bottom: 1px solid #886e5a;
  color: #886e5a;
}
.case__wrapper .c__text {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .case__wrapper .c__text {
    flex-direction: column;
  }
}
.case__wrapper .c__text .t__text {
  font-size: 18px;
  line-height: 1.72;
  flex: 1;
}
.case__wrapper .c__text .f__img {
  width: min(420px, 100%);
  margin: 0;
}
.case__wrapper .info__box {
  padding-top: 90px;
  margin-top: 90px;
  border-top: 2px solid #886e5a;
}
.case__wrapper .info__box .lbl__inner {
  font-size: 32px;
  color: #886e5a;
  font-family: "Noto Serif JP", serif;
}
.case__wrapper .info__box .txt__inner {
  font-size: 18px;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.p-company-table table {
  border-collapse: collapse;
}
.p-company-table table tr th {
  border-bottom: 2px solid #cccccc;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 30px;
  width: 180px;
}
.p-company-table table tr td {
  border-bottom: 2px solid #cccccc;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 30px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-company-table table,
  .p-company-table table tr,
  .p-company-table table th,
  .p-company-table table td,
  .p-company-table table thead,
  .p-company-table table tbody {
    display: block;
    width: 100% !important;
    text-align: left;
  }
}
.p-company-info h3 {
  text-align: center;
  border-bottom: 2px solid #cccccc;
  margin-top: 60px;
  padding-bottom: 1em;
}
.p-company-info .d-flex {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .p-company-info .d-flex {
    flex-direction: column;
  }
}
.p-company-info .d-flex .flex-item p {
  font-size: 22px;
  line-height: 1.8;
}

/*utility*/
.font-orange {
  color: #886e5a !important;
}

.font-bold {
  font-weight: bold !important;
}

.font-size {
  font-size: var(--font-size) !important;
}

.font-serif {
  font-family: "Noto Serif JP", serif !important;
}

.u-font-serif {
  font-family: "Noto Serif JP", serif !important;
}

.u-font-yellow {
  color: #886e5a !important;
}

.u-text-end {
  text-align: right !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-text-under {
  text-decoration: underline !important;
}

.u-text-blue {
  color: #0000ff;
}/*# sourceMappingURL=style.css.map */