@charset "UTF-8";


body {
  font-family: "Noto Sans JP", "源ノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6875;
  color: #231815;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  body {
    font-size: 1.3rem;
    line-height: 2;
  }
}

/*!
 * ress.css • v1.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
/**
 * 1. All browsers without overlaying scrollbars
 * 2. iOS 8+

 * 1. すべてのブラウザで、スクロールバーのオーバーレイを無し。
 * 2. iOS 8+
 */
html {
  overflow-y: scroll; /* 1 */
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* 2 */
}

*,
::before,
::after {
  box-sizing: inherit;
}

/**
 * 1. Inherit text-decoration and vertical align to ::before and ::after pseudo elements

 * 1. 「::before」と「::after」に、「text-decoration」と「vertical-align」を継承。
 */
::before,
::after {
  vertical-align: inherit;
  text-decoration: inherit; /* 1 */
}

/**
 * 1. Set `background-repeat: no-repeat` to all elements
 * 2. Reset `padding` and `margin` of all elements

 * 1. すべての要素に、「background-repeat: no-repeat;」を指定。
 * 2. すべての要素に、「padding」と「margin」をリセット。
 */
* {
  margin: 0;
  padding: 0; /* 2 */
  background-repeat: no-repeat; /* 1 */
}

/* # =================================================================
   # General elements
   # ================================================================= */
/**
 * Add the correct display in iOS 4-7.

 * iOS 4-7に、正しいdisplayを設定。
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * 1. Show the overflow in Edge and IE

 * 1. EdgeとIEに、「overflow: visible;」を定義。
 */
hr {
  overflow: visible; /* 1 */
}

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox
 * Correct `block` display not defined for `main` in IE 11

 * IE8/9に、displayプロパティを定義。
 * IE10/11とFirefoxのdetail要素とsummary要素に、displayプロパティを定義。
 * IE11のmain要素に、displayプロパティを定義。
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Set font-size to 80% in `small` elements

 * 1. small要素に、フォントサイズ「80%」を定義。
 */
small {
  font-size: 90%; /* 1 */
}

/**
 * 1. Add the correct display in IE

 * 1. IEに、displayプロパティを定義。
 */
[hidden],
template {
  display: none; /* 1 */
}

/**
 * 1. Add a bordered underline effect in all browsers
 * 2. Remove text decoration in Firefox 40+

 * 1. すべてのブラウザに、点線を定義。
 * 2. Firefox40+に、テキストの装飾を削除。
 */
abbr[title] {
  border-bottom: 1px dotted; /* 1 */
  text-decoration: none; /* 2 */
}

/**
 * 1. Remove the gray background on active links in IE 10
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+

 * 1. IE10に、アクティブリンクのグレーの背景を削除。
 * 2. iOS8+とSafari8+に、リンクの下線のギャップを削除。
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the outline when hovering in all browsers

 * 1. すべてのブラウザに、ホバー時のアウトラインを削除。
 */
a:active,
a:hover {
  outline-width: 0; /* 1 */
}

/**
 * 1. Specify the font family of code elements

 * 1. コード要素に、フォントファミリーを指定。
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* 1 */
}

/**
 * 1. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+

 * 1. Edge12+, Safari6.2+, Chrome18+に、「bold」を適用。
 */
b {
  font-weight: 700;
}

strong {
  display: inline;
  font-size: 120%;
  font-weight: 700; /* 1 */
  font-style: normal;
  color: #db0000;
}

em {
  font-size: 120%;
  font-weight: 700; /* 1 */
  font-style: normal;
}

/**
 * 1. Address styling not present in Safari and Chrome

 * 1. SafariとChromeに、定義。
 */
dfn {
  font-style: italic; /* 1 */
}

/**
 * Address styling not present in IE 8/9

 * 1. IE8/9に、定義。
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * https://gist.github.com/unruthless/413930
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
/**
 * 1. Firefox 36+

 * 1. Firefox 36+
 */
[type=number] {
  width: auto; /* 1 */
}

/**
 * 1. Safari 8+

 * 1. Safari 8+
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
}

/**
 * 1. Safari 8

 * 1. Safari 8
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* 1 */
}

/**
 * 1. Internet Explorer 11+
 * 2. Specify textarea resizability

 * 1. Internet Explorer 11+
 * 2. textarea要素に、垂直方向のリサイズを指定。
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
  -webkit-appearance: none;
}

/**
 * 1. Specify font inheritance of form elements

 * 1. フォーム要素に、フォントの継承を指定。
 */
/**
 * 1. Restore the font weight unset by the previous rule.

 * 1. 前の指定により、フォントのウェイトを再定義。
 */
optgroup {
  font-weight: bold; /* 1 */
}

/**
 * 1. Address `overflow` set to `hidden` in IE 8/9/10/11

 * 1. IE8/9/10/11に、overflow時にhiddenを設定。
 */
button {
  overflow: visible; /* 1 */
}

/**
 * Remove inner padding and border in Firefox 4+

 * Firefox4+に、内側のpaddingとborderを削除。
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: 0;
}

/**
 * Replace focus style removed in the border reset above

 * 1. フォーカス時のスタイルを定義。
 */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: none;
}

*:focus {
  outline: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4
 * 2. Correct the inability to style clickable types in iOS

 * 1. Android4に、ネイティブのaudio要素とvideo要素のコントロールのバグを防ぐ。
 * 2. iOSに、クリッカブルなbutton要素のtypeのスタイルを修正。
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * 1. Firefox 40+, Internet Explorer 11-

 * 1. Firefox 40+, Internet Explorer 11-
 */
button,
select {
  text-transform: none; /* 1 */
}

/**
 * Remove the default button styling in all browsers

 * すべてのブラウザにおいて、デフォルトのボタンのスタイルを削除。
 */
/**
 * Style select like a standard input
 * 1. Firefox 36+
 * 2. Chrome 41+

 * 標準的なinput要素のスタイルを選択。
 * 1. Firefox 36+
 * 2. Chrome 41+
 */
/**
 * 1. Internet Explorer 11+

 * 1. Internet Explorer 11+
 */
select::-ms-expand {
  display: none; /* 1 */
}

/**
 * 1. Internet Explorer 11+

 * 1. Internet Explorer 11+
 */
select::-ms-value {
  color: currentColor; /* 1 */
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11
 * 2. Correct the color inheritance from `fieldset` elements in IE
 * 3. Correct the text wrapping in Edge and IE
 * 4. Correct the text wrapping in Edge and IE
 * 5. Correct the text wrapping in Edge and IE

 * 1. IE 8/9/10/11に、カラーの継承を定義。
 * 2. IEに、fieldset要素からカラーを継承するように定義。
 * 3. EdgeとIEに、テキストのラッピングを修正。
 * 4. EdgeとIEに、テキストのラッピングを修正。
 * 5. EdgeとIEに、テキストのラッピングを修正。
 */
legend {
  display: table; /* 3 */
  max-width: 100%; /* 4 */
  border: 0; /* 1*/
  color: inherit; /* 2 */
  white-space: normal; /* 5 */
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari
 * 2. Change font properties to `inherit` in Chrome and Safari

 * 1. iOSとSafariに、クリッカブルなtypeのスタイルを修正。
 * 2. ChromeとSafariに、フォントプロパティの継承を変更。
 */
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button; /* 1 */
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari

 * Chrome, Edge, Safariに、テキストのスタイルを修正。
 */
::-webkit-input-placeholder {
  color: #aba9a6;
  letter-spacing: 0.14em;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari
 * 2. Correct the outline style in Safari

 * 1. ChromeとSafariに、アピアランスを修正。
 * 2. Safariに、アウトラインを修正。
 */
[type=search] {
  outline-offset: -2px; /* 2 */
  -webkit-appearance: textfield; /* 1 */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10

 * 1. IE8/9/10に、a要素の中にある時にボーダーを削除。
 */
img {
  max-width: 100%;
  height: auto;
  border-style: none; /* 1 */
  vertical-align: bottom;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera

 * 1. Chrome, Firefox, Operaに、正しいvertical-alignを与える。
 */
progress {
  vertical-align: baseline;
}

/**
 * 1. Internet Explorer 11-

 * 1. Internet Explorer 11-
 */
svg:not(:root) {
  overflow: hidden; /* 1 */
}

/**
 * 1. Internet Explorer 11+, Windows Phone 8.1+

 * 1. Internet Explorer 11+, Windows Phone 8.1+
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
}

/* # =================================================================
   # Acessibility
   # ================================================================= */
/**
 * Hide content from screens but not screenreaders

 * コンテンツを隠す時は、スクリーンリーダーからでなく、スクリーンから。
 */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/**
 * Specify the progress cursor of updating elements

 * アップデート中の要素のプログレスのカーソルを指定。
 */
/* */
[aria-busy=true] {
  cursor: progress;
}

/**
 * Specify the pointer cursor of trigger elements

 * トリガー要素のポインターのカーソルを指定。
 */
[aria-controls] {
  cursor: pointer;
}

/**
 * Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements

 * 使用不可、編集不可の要素のスタイルが無いカーソルを指定。
 */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/**
 * Specify text selection background color and omit drop shadow

 * テキスト選択時の背景色を指定し、ドロップシャドウを削除。
 */
/**
 * 1. Required when declaring ::selection

 * 1. 「::selection」を使用する時に必要。
 */
::-moz-selection {
  background-color: #ffeff0; /* 1 */
  text-shadow: none;
}

/**
 * 1. Required when declaring ::selection

 * 1. 「::selection」を使用する時に必要。
 */
::-moz-selection {
  background-color: #ffeff0; /* 1 */
  text-shadow: none;
}
::selection {
  background-color: #ffeff0; /* 1 */
  text-shadow: none;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
}

/*=================================
  common
=================================*/
body {
  position: relative;
  background: #fff;
  word-break: break-word;
}

/**
* 1. hタグ、ul・liタグ、aタグの定義
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

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

a {
  color: #CBBA6F;
}

address {
  font-style: normal;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    common
  =================================*/
  html, body {
    min-width: 320px;
  }
}
@keyframes show02 {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes vibrate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes vibrate02 {
  0% {
    transform: rotate(0deg) scale(1.2);
  }
  5% {
    transform: rotate(15deg) scale(1.2);
  }
  10% {
    transform: rotate(-15deg) scale(1.2);
  }
  15% {
    transform: rotate(15deg) scale(1.2);
  }
  20% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes burger-show {
  0% {
    right: -50%;
  }
  100% {
    right: 0%;
  }
}
@keyframes header-show {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
a:hover {
  outline: none;
}
a:active {
  outline: none;
}
a:focus {
  outline: none;
}

@media screen and (min-width: 768px) {
  /* =================================
    hover
  ================================= */
  a {
    transition-timing-function: ease-out;
    transition-duration: 0.3s;
    transition-property: all;
  }
  a:hover {
    opacity: 0.8;
  }
  .widelink {
    cursor: pointer;
    transition-timing-function: ease-out;
    transition-duration: 0.3s;
    transition-property: all;
  }
  .widelink .widelink__cover {
    position: relative;
    overflow: hidden;
  }
  .widelink .widelink__cover::before {
    position: absolute;
    z-index: 6;
    top: 45%;
    left: 50%;
    width: 55%;
    padding: 10px 0;
    border: 1px solid #fff;
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    letter-spacing: 0.06em;
    content: "詳しく見る";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity, top;
    transform: translate(-50%, -50%);
  }
  .widelink .widelink__cover::after {
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, 0.5);
    color: white;
    content: "";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity;
  }
  .widelink:hover a {
    text-decoration: none;
  }
  .widelink:hover .widelink__cover::before {
    top: 50%;
    opacity: 1;
  }
  .widelink:hover .widelink__cover::after {
    opacity: 1;
  }
  .hoverBg .widelink__cover::before {
    content: none;
  }
  .hoverBg .widelink__cover::after {
    content: none;
  }
  .hoverBg:hover {
    background: #FCF8DE;
  }
}
/* =================================
  cta
================================= */
.c-cta {
  padding: 70px 2.5%;
  background: #fff;
}
.c-cta.gray {
  background: #F6F6F6;
}
.c-cta__body--text {
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-optical-sizing: auto;
}
.c-cta__body--text .num {
  font-size: 3.4rem;
  color: #95853E;
}
.c-cta__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 30px;
}
.c-cta__contactTel--num {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: #231815;
  text-decoration: none;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}
.c-cta__contactTel--num::before {
  position: absolute;
  top: 10px;
  left: -42px;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #231815;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_phone.svg);
          mask-image: url(../img/icon/icon_phone.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.c-cta__contactTel--text {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: #231815;
  text-align: center;
  letter-spacing: 0.11em;
}
.c-cta__contactTel--ruby {
  display: block;
  width: 100%;
  font-size: 1.85rem;
  color: #231815;
  text-align: right;
  letter-spacing: 0.14em;
}
.c-cta__contactBtn {
  display: flex;
  gap: 0 15px;
}
.c-cta__contactBtn--mail {
  display: block;
  padding: 29px 27px;
  background: #EA616F;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .c-cta__contactBtn--mail:hover {
    background: rgb(219, 82, 96);
  }
}
.c-cta__contactBtn--line {
  display: block;
  padding: 29px 46px;
  background: #06c755;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .c-cta__contactBtn--line:hover {
    background: rgb(6, 199, 85);
  }
}
.c-cta__contactBtn--lineEm {
  display: block;
  margin-bottom: 0.3em;
  font-size: 1.9rem;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /* =================================
    cta
  ================================= */
  .c-cta {
    padding: 40px 6.4102564103% 46px;
  }
  .c-cta__body--text {
    margin-bottom: 33px;
    font-size: 2rem;
    line-height: 1.375;
  }
  .c-cta__body--text .num {
    font-size: 3.2rem;
  }
  .c-cta__body--text .lg {
    font-size: 2.4rem;
  }
  .c-cta__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
  }
  .c-cta__contactTel {
    width: 100%;
    padding: 16px 0;
    background: #CBBA6F;
    text-align: center;
  }
  .c-cta__contactTel--num {
    font-size: 3.8rem;
    color: #fff;
  }
  .c-cta__contactTel--num::before {
    width: 26px;
    height: 26px;
    margin-right: 7px;
    background-color: #fff;
  }
  .c-cta__contactTel--text {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
  }
  .c-cta__contactTel--ruby {
    margin-left: -2.5em;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.1em;
  }
  .c-cta__contactBtn {
    width: 100%;
    gap: 0 19px;
  }
  .c-cta__contactBtn--mail {
    width: 100%;
    padding: 15px 0;
  }
  .c-cta__contactBtn--mail::before {
    display: inline-block;
    display: block;
    width: 37px;
    height: 27px;
    margin: 0 auto 5px;
    background-color: #fff;
    content: "";
    -webkit-mask-image: url(../img/icon/icon_mail.svg);
            mask-image: url(../img/icon/icon_mail.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .c-cta__contactBtn--line {
    width: 100%;
    padding: 15px 0;
  }
  .c-cta__contactBtn--line::before {
    display: inline-block;
    display: block;
    width: 37px;
    height: 37px;
    margin: 0 auto 5px;
    background-color: #fff;
    content: "";
    -webkit-mask-image: url(../img/icon/icon_line02.svg);
            mask-image: url(../img/icon/icon_line02.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
/*=================================
  button
=================================*/
.c-button-wrapper {
  display: flex;
  justify-content: center;
  gap: 0 30px;
}

.c-button-primary--lg {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 5px;
  padding: 26px 43px;
  border: 2px solid #8B7A2E;
  background: #8B7A2E;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-button-primary--lg:hover {
    background: #fff;
    color: #9A8839;
  }
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    button
  =================================*/
  .c-button-wrapper > * + * {
    margin-top: 16px;
  }
  .c-button-primary--lg {
    width: 85%;
    margin: 60px auto 5px;
    padding: 20px 17px;
    font-size: 1.8rem;
    text-align: center;
  }
}
/*=================================
  link
=================================*/
.c-link-wrapper {
  display: flex;
  justify-content: center;
  gap: 0 30px;
}

.c-link--blank {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #231815;
}
.c-link--blank[target=_blank]::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background-color: #231815;
  vertical-align: text-bottom;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_blank.svg);
          mask-image: url(../img/icon/icon_blank.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-link--arrow {
  font-size: 2rem;
  font-weight: 700;
  color: #231815;
  text-decoration: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .c-link--arrow:hover {
    color: #CBBA6F;
    opacity: 1;
  }
}
.c-link--arrow::before {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background: url(../img/icon/icon_arrow.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

.c-link--dot {
  font-size: 1.8rem;
  font-weight: 700;
  color: #231815;
  text-decoration: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .c-link--dot:hover {
    color: #CBBA6F;
    opacity: 1;
  }
}
.c-link--dot::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: url(../img/icon/icon_circle.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    link
  =================================*/
  .c-button-wrapper > * + * {
    margin-top: 16px;
  }
  .c-link--blank {
    font-size: 1.3rem;
    line-height: 2.2153;
  }
  .c-link--blank[target=_blank]::before {
    width: 20px;
    height: 20px;
  }
  .c-link--arrow {
    font-size: 1.5rem;
  }
  .c-link--arrow::before {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  .c-link--dot {
    font-size: 1.5rem;
  }
  .c-link--dot::before {
    margin-right: 6px;
  }
}
/*=================================
  title
=================================*/
.c-title--primary {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 25px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4375;
  text-align: center;
}
.c-title--primary::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 80px;
  height: 5px;
  background: #CBBA6F;
  content: "";
  transform: translateX(-50%);
}

.c-title--secondary {
  margin-bottom: 60px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #231815;
  text-align: center;
}

.c-title--secondary-sub {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  color: #231815;
  text-align: center;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    title
  =================================*/
  .c-title--primary {
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 2rem;
    line-height: 1.5;
  }
  .c-title--primary::after {
    width: 40px;
  }
  .c-title--secondary {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .c-title--secondary-sub {
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
/*=================================
  head
=================================*/
.c-head-page {
  margin: 0 0 80px;
  padding: 0 40px;
  background: url(../img/bg_pagetitle_pc.png) no-repeat center center;
  background-size: cover;
}
.c-head-page__inner {
  max-width: 1220px;
  min-height: 236px;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}
.c-head-page--subtitle {
  display: block;
  margin-top: 10px;
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2666666;
  color: #fff;
  letter-spacing: 0.05em;
}
.c-head-page--title {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: #fff;
  font-optical-sizing: auto;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    head
  =================================*/
  .c-head-page {
    margin: 0 0 25px;
    padding: 0 3.8461538462%;
    background: url(../img/bg_pagetitle_sp.png) no-repeat center center;
    background-size: cover;
  }
  .c-head-page__inner {
    min-height: 200px;
    padding: 67px 0;
  }
  .c-head-page--subtitle {
    font-size: 1.4rem;
    line-height: 1.2666666;
  }
  .c-head-page--title {
    font-size: 3.2rem;
    line-height: 1.1875;
  }
}
/*=================================
  lead
=================================*/
.c-lead {
  padding: 0 40px;
}
.c-lead__inner {
  max-width: 1210px;
  margin: 60px auto;
  text-align: center;
}
.c-lead--text {
  font-size: 1.6rem;
  line-height: 1.8;
}
.c-lead--text + .c-lead--text {
  margin-top: 2em;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    lead
  =================================*/
  .c-lead {
    padding: 0 5.1282051282%;
  }
  .c-lead__inner {
    margin: 40px auto;
  }
  .c-lead--text {
    font-size: 1.3rem;
  }
}
/*=================================
  c-breadcrumb
=================================*/
.c-breadcrumb {
  max-width: 1220px;
  margin: 40px auto;
  padding: 27px 34px;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.c-breadcrumb--item {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
  color: #231815;
}
.c-breadcrumb--item:not(:first-child) {
  margin-left: 12px;
}
.c-breadcrumb--item:not(:first-child)::before {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin-right: 12px;
  background: url(../img/icon/icon_breadcrumb.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.c-breadcrumb--item span {
  font-size: 1.3rem;
  line-height: 1;
}
.c-breadcrumb--item a {
  font-size: 1.3rem;
  line-height: 1;
  color: #231815;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb--item a:hover {
    color: #CBBA6F;
    opacity: 1;
  }
}

.c-head-page + .c-breadcrumb { /*タイトルと隣接している場合の配置指定*/
  margin-top: -120px;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    c-breadcrumb
  =================================*/
  .c-breadcrumb {
    max-width: 92.3076923077%;
    margin: 20px auto;
    padding: 12px 8px;
  }
  .c-breadcrumb--item {
    font-size: 1.1rem;
  }
  .c-breadcrumb--item:not(:first-child) {
    margin-left: 7px;
  }
  .c-breadcrumb--item:not(:first-child)::before {
    width: 6px;
    height: 10px;
    margin-right: 7px;
  }
  .c-breadcrumb--item span {
    font-size: 1.1rem;
  }
  .c-breadcrumb--item a {
    font-size: 1.1rem;
  }
  .c-head-page + .c-breadcrumb { /*タイトルと隣接している場合の配置指定*/
    margin-top: -50px;
  }
}
/*=================================
  js-tab
=================================*/
.js-tab-menu__item.is-active {
  pointer-events: none;
}
.js-tab-target__item {
  display: none;
}
.js-tab-target__item.is-show {
  display: block !important;
}

/*=================================
  pagination
=================================*/
.pagination {
  margin: 80px auto 0;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 10px;
}
.pagination .nav-links .page-numbers:not(.next):not(.prev):not(.dots):not(.current) {
  display: inline-block;
  width: 40px;
  border: 1px solid #CBBA6F;
  border-radius: 3px;
  background: #fff;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 38px;
  color: #CBBA6F;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .pagination .nav-links .page-numbers:not(.next):not(.prev):not(.dots):not(.current):hover {
    background: #CBBA6F;
    color: #fff;
    opacity: 1;
  }
}
.pagination .nav-links .page-numbers.current {
  display: inline-block;
  width: 40px;
  border: 1px solid #CBBA6F;
  border-radius: 3px;
  background: #CBBA6F;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 38px;
  color: #fff;
  text-align: center;
}
.pagination .nav-links .page-numbers.dots {
  width: 40px;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}
.pagination .nav-links .page-numbers.next {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  border-radius: 50px;
  background: #fff;
}
.pagination .nav-links .page-numbers.next::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #CBBA6F;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
  -webkit-mask-image: url(../img/icon/icon_pagination_next.svg);
          mask-image: url(../img/icon/icon_pagination_next.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 768px) {
  .pagination .nav-links .page-numbers.next:hover {
    background: #CBBA6F;
    opacity: 1;
  }
  .pagination .nav-links .page-numbers.next:hover::after {
    background-color: #fff;
  }
}
.pagination .nav-links .page-numbers.prev {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50px;
  background: #fff;
}
.pagination .nav-links .page-numbers.prev::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #CBBA6F;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
  transform: rotate(180deg);
  -webkit-mask-image: url(../img/icon/icon_pagination_next.svg);
          mask-image: url(../img/icon/icon_pagination_next.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 768px) {
  .pagination .nav-links .page-numbers.prev:hover {
    background: #CBBA6F;
    opacity: 1;
  }
  .pagination .nav-links .page-numbers.prev:hover::after {
    background-color: #fff;
  }
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    pagination
  =================================*/
  .pagination {
    margin: 40px auto 0;
  }
  .pagination .nav-links .page-numbers:not(.next):not(.prev):not(.dots):not(.current) {
    width: 30px;
    font-size: 1.6rem;
    line-height: 28px;
  }
  .pagination .nav-links .page-numbers.current {
    width: 30px;
    font-size: 1.6rem;
    line-height: 28px;
  }
  .pagination .nav-links .page-numbers.dots {
    width: 30px;
    font-size: 1.6rem;
    line-height: 30px;
  }
  .pagination .nav-links .page-numbers.next {
    width: 30px;
    height: 30px;
    margin-left: 0;
  }
  .pagination .nav-links .page-numbers.next::after {
    width: 30px;
    height: 30px;
  }
  .pagination .nav-links .page-numbers.prev {
    width: 30px;
    height: 30px;
    margin-right: 0;
  }
  .pagination .nav-links .page-numbers.prev::after {
    width: 30px;
    height: 30px;
  }
}
/* =================================
  service
================================= */
.c-service {
  padding: 128px 2.5% 155px;
  background: #fff;
}
.c-service__inner {
  position: relative;
  max-width: 1210px;
  margin: 0 auto;
  padding: 114px clamp(25px, 3.8888888889vw, 56px) 94px;
  border: 5px solid #CBBA6F;
  outline: 3px solid #CBBA6F;
  outline-offset: -11px;
  background: #FDFCF6;
}
.c-service__inner::before {
  position: absolute;
  top: -40px;
  left: 50%;
  display: inline-block;
  width: 80px;
  height: 94px;
  background: url(../img/home/deco_service.svg) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateX(-50%);
}
.c-service-head {
  max-width: 828px;
  margin: 0 auto 60px;
}
.c-service-head__titleWrap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-optical-sizing: auto;
}
.c-service-head__title {
  font-size: clamp(3.6rem, 3.1944444444vw, 4.6rem);
  font-weight: 500;
}
.c-service-head__ruby {
  display: block;
  margin-top: 20px;
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}
.c-service-head__text {
  margin-top: 40px;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  line-height: 1.66666;
}
.c-service__plan {
  display: flex;
  flex-direction: column;
  padding-left: calc(46.1% + clamp(30px, 4.1666666667vw, 60px));
  background: url(../img/home/bg_service.jpg) no-repeat left top;
  background-size: 46.1% auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  gap: 46px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-service__plan {
    padding-left: calc(35% + 2.0833333333vw);
    background-size: 35% auto;
  }
}
.c-service__plan--title {
  display: flex;
  margin-bottom: 20px;
  padding: 6px 10px;
  font-size: 2.6rem;
  font-weight: 400;
  color: #FAFAFA;
  letter-spacing: 0.3em;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2.7777777778vw, 40px);
}
.c-service__plan--title::before {
  display: inline-block;
  width: 25px;
  height: 34px;
  background: url(../img/home/deco_title_feather.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.c-service__plan--title::after {
  display: inline-block;
  width: 25px;
  height: 34px;
  background: url(../img/home/deco_title_feather.svg) no-repeat center center;
  background-size: contain;
  content: "";
  transform: rotateY(180deg);
}
.c-service__plan--title.green {
  background: #7EC04C;
}
.c-service__plan--title.pink {
  background: #EC6E89;
}
.c-service__plan--title.blue {
  background: #00A6BA;
}
.c-service__plan--body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-service__plan--denial {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
}
.c-service__plan--denialTax {
  font-size: 1.4rem;
}
.c-service__plan--denial::after {
  position: absolute;
  top: 55%;
  left: 48%;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #231815;
  content: "";
  transform: translate(-50%, -50%);
}
.c-service__plan--price {
  display: flex;
  font-size: clamp(2rem, 2.7083333333vw, 3.9rem);
  line-height: 1.190476;
  justify-content: center;
  align-items: center;
}
.c-service__plan--priceYen {
  font-size: clamp(1.2rem, 1.25vw, 1.8rem);
  line-height: 1;
}
.c-service__plan--priceTax {
  margin-left: 5px;
  font-size: 1.2rem;
  line-height: 2;
  align-self: flex-end;
}
.c-service__plan--after {
  position: relative;
  display: flex;
  font-size: clamp(3.8rem, 3.5416666667vw, 5.1rem);
  line-height: 1;
  align-items: flex-end;
}
.c-service__plan--after::before {
  display: inline-block;
  display: inline-block;
  width: 20.8px;
  height: 24px;
  margin: 0 15px 0 10px;
  background: #CBBA6F;
  content: "";
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  align-self: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-service__plan--after::before {
    margin: 0 5px 0 5px;
  }
}
.c-service__plan--afterYen {
  font-size: clamp(2rem, 1.8055555556vw, 2.6rem);
}
.c-service__planNote {
  font-family: "Noto Sans JP", "源ノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #666362;
  text-align: right;
}
.c-service__other {
  margin-top: 60px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.c-service__other--title {
  margin-bottom: 30px;
  font-size: 2.8rem;
  color: #AD9942;
  text-align: center;
  letter-spacing: 0.29em;
}
.c-service__other--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 20px;
}
.c-service__other--item {
  font-size: 2.4rem;
}
.c-service__other--item + .c-service__other--item::before {
  margin-right: 20px;
  content: "／";
}
.c-service__entry {
  display: flex;
  margin-top: 40px;
  padding: 20px 26px;
  border-top: 1px solid #CBBA6F;
  border-bottom: 1px solid #CBBA6F;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.c-service__entryTitle {
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.c-service__entryContact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 20px;
}
.c-service__entryContactTel--num {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: #231815;
  text-decoration: none;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}
.c-service__entryContactTel--num::before {
  position: absolute;
  top: 10px;
  left: -42px;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background-color: #231815;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_phone.svg);
          mask-image: url(../img/icon/icon_phone.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.c-service__entryContactTel--text {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  color: #231815;
  text-align: center;
  letter-spacing: 0.11em;
}
.c-service__entryContactTel--ruby {
  display: block;
  width: 100%;
  font-size: 1.75rem;
  color: #231815;
  text-align: right;
  letter-spacing: 0.14em;
}
.c-service__entryContactBtn {
  display: flex;
  gap: 0 20px;
}
.c-service__entryContactBtn--mail {
  display: block;
  padding: 27px 21px;
  background: #EA616F;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .c-service__entryContactBtn--mail:hover {
    background: rgb(219, 82, 96);
  }
}
.c-service__entryContactBtn--line {
  display: block;
  padding: 27px 40px;
  background: #06c755;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .c-service__entryContactBtn--line:hover {
    background: rgb(6, 199, 85);
  }
}
.c-service__entryContactBtn--lineEm {
  display: block;
  margin-bottom: 0.3em;
  font-size: 1.9rem;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /* =================================
    service
  ================================= */
  .c-service {
    padding: 55px 3.8461538462% 50px;
  }
  .c-service__inner {
    padding: 54px 5.1282051282%;
    border: 2px solid #CBBA6F;
    outline: 1px solid #CBBA6F;
    outline-offset: -7px;
  }
  .c-service__inner::before {
    top: -34px;
    width: 57px;
    height: 68px;
  }
  .c-service-head {
    max-width: initial;
    margin: 0 auto 40px;
  }
  .c-service-head__title {
    font-size: 3rem;
  }
  .c-service-head__ruby {
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .c-service-head__text {
    margin-top: 26px;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .c-service__plan {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    background: none;
    gap: 30px;
  }
  .c-service__plan--title {
    margin-bottom: 20px;
    padding: 0 10px;
    font-size: 2.2rem;
    gap: 12px;
  }
  .c-service__plan--title::before {
    width: 16px;
    height: 22px;
  }
  .c-service__plan--title::after {
    width: 16px;
    height: 22px;
  }
  .c-service__plan--denial {
    font-size: 1.4rem;
  }
  .c-service__plan--denialTax {
    font-size: 1.4rem;
  }
  .c-service__plan--price {
    font-size: 2.1rem;
  }
  .c-service__plan--priceYen {
    font-size: 1.2rem;
    line-height: 1;
  }
  .c-service__plan--priceTax {
    margin-left: 0px;
    font-size: 1rem;
  }
  .c-service__plan--after {
    font-size: 3rem;
  }
  .c-service__plan--after::before {
    width: 13px;
    height: 15px;
    margin: 0 5px 0 0;
  }
  .c-service__plan--afterYen {
    font-size: 1.5rem;
  }
  .c-service__planNote {
    font-size: 1.3rem;
    text-align: left;
  }
  .c-service__other {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 2px solid #CBBA6F;
    border-bottom: 2px solid #CBBA6F;
  }
  .c-service__other--title {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
  .c-service__other--list {
    gap: 15px;
  }
  .c-service__other--item {
    font-size: 1.8rem;
    line-height: 1.22222;
  }
  .c-service__other--item + .c-service__other--item::before {
    content: none;
  }
  .c-service__entry {
    margin-top: 46px;
    padding: 0;
    border: none;
    gap: 40px;
  }
  .c-service__entryTitle {
    font-size: 2.6rem;
  }
  .c-service__entryContact {
    gap: 18px 17px;
  }
  .c-service__entryContactTel {
    width: 100%;
    padding: 15px 5px;
    background: #CBBA6F;
    text-align: center;
  }
  .c-service__entryContactTel--num {
    font-size: 3.6rem;
    color: #fff;
  }
  .c-service__entryContactTel--num::before {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    background-color: #fff;
  }
  .c-service__entryContactTel--text {
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
  }
  .c-service__entryContactTel--ruby {
    margin-left: -3.8em;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.1em;
  }
  .c-service__entryContactBtn {
    display: flex;
    width: 100%;
    gap: 0 20px;
  }
  .c-service__entryContactBtn--mail {
    width: 100%;
    padding: 13px 0;
    font-size: 1.7rem;
  }
  .c-service__entryContactBtn--mail::before {
    display: inline-block;
    display: block;
    width: 37px;
    height: 27px;
    margin: 0 auto 5px;
    background-color: #fff;
    content: "";
    -webkit-mask-image: url(../img/icon/icon_mail.svg);
            mask-image: url(../img/icon/icon_mail.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .c-service__entryContactBtn--line {
    width: 100%;
    padding: 13px 0;
    font-size: 1.7rem;
  }
  .c-service__entryContactBtn--line::before {
    display: inline-block;
    display: block;
    width: 37px;
    height: 37px;
    margin: 0 auto 5px;
    background-color: #fff;
    content: "";
    -webkit-mask-image: url(../img/icon/icon_line02.svg);
            mask-image: url(../img/icon/icon_line02.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .c-service__entryContactQr {
    margin: 0;
  }
}
/*=================================
  home
=================================*/
.p-home {
  /* メインビジュアル */
}
.p-home-head {
  margin-bottom: 130px;
  padding: 0 2.5%;
}
.p-home-head__body {
  display: flex;
  max-width: 1210px;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 60px;
}
.p-home-head__titleWrap {
  text-align: center;
}
.p-home-head__title {
  font-size: 3.6rem;
  font-weight: 400;
}
.p-home-head__ruby {
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}
.p-home-head__text {
  font-size: 1.6rem;
  line-height: 1.6875;
}
.p-home-fv {
  background: url(../img/home/bg_fv_pc.jpg) no-repeat center top;
  background-size: cover;
}
.p-home-fv__plan {
  position: relative;
  min-height: clamp(460px, 43.6111111111vw, 628px);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  color: #715d4b;
  font-optical-sizing: auto;
}
.p-home-fv__planName {
  font-size: clamp(1.6rem, 2.2222222222vw, 3.2rem);
  font-weight: 400;
}
.p-home-fv__planPrice {
  display: flex;
  font-size: clamp(2.4rem, 3.3333333333vw, 4.8rem);
  line-height: 1.208333;
  align-items: center;
}
.p-home-fv__planPrice--kaiin {
  display: inline-block;
  width: 2.8em;
  font-size: clamp(0.75rem, 1.0416666667vw, 1.5rem);
  line-height: 1.2;
  color: #715d4b;
}
.p-home-fv__planPrice--yen {
  display: block;
  font-size: clamp(1.2rem, 1.6666666667vw, 2.4rem);
  line-height: 1;
  color: #715d4b;
}
.p-home-fv__planPrice--tax {
  font-size: 1.2rem;
  color: #715d4b;
  text-align: center;
}
.p-home-fv__plan .p-home-fv__plan--01 {
  position: absolute;
  z-index: 0;
  top: clamp(40%, 13.4027777778vw, 193px);
  left: clamp(2%, 8.3333333333vw, 120px);
  text-align: center;
}
.p-home-fv__plan .p-home-fv__plan--01::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(160px, 19.4444444444vw, 280px);
  height: clamp(160px, 19.4444444444vw, 280px);
  border-radius: 50%;
  background: rgba(236, 110, 137, 0.1);
  content: "";
  transform: translate(-50%, -50%);
  filter: blur(37.6px);
}
.p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planName {
  font-size: clamp(2.2rem, 2.6388888889vw, 3.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: #d96b82;
}
.p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planPrice {
  font-size: clamp(3.2rem, 5.1388888889vw, 7.4rem);
  line-height: 1.196453;
  color: #d96b82;
}
.p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planPrice--kaiin {
  font-size: clamp(1.2rem, 1.3888888889vw, 2rem);
}
.p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planPrice--yen {
  font-size: clamp(2rem, 2.7777777778vw, 4rem);
}
.p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planPrice--tax {
  font-size: clamp(0.9rem, 1.1111111111vw, 1.6rem);
}
.p-home-fv__plan--02 {
  position: absolute;
  z-index: 0;
  top: clamp(26.4968%, 9.375vw, 135px);
  right: clamp(14%, 14.1666666667vw, 204px);
  text-align: center;
}
.p-home-fv__plan--02::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(84px, 11.6666666667vw, 168px);
  height: clamp(84px, 11.6666666667vw, 168px);
  border-radius: 50%;
  background: rgba(126, 192, 76, 0.1);
  content: "";
  transform: translate(-50%, -50%);
  filter: blur(25px);
}
.p-home-fv__plan--02 .p-home-fv__planName {
  color: #6fa943;
}
.p-home-fv__plan--02 .p-home-fv__planPrice {
  color: #6fa943;
}
.p-home-fv__plan--03 {
  position: absolute;
  z-index: 0;
  right: clamp(9%, 9.3055555556vw, 134px);
  bottom: clamp(11.7834%, 5.1388888889vw, 74px);
  text-align: center;
}
.p-home-fv__plan--03::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(91px, 12.6388888889vw, 182px);
  height: clamp(91px, 12.6388888889vw, 182px);
  border-radius: 50%;
  background: rgba(0, 166, 186, 0.1);
  content: "";
  transform: translate(-50%, -50%);
  filter: blur(25px);
}
.p-home-fv__plan--03 .p-home-fv__planName {
  color: #0093a3;
}
.p-home-fv__plan--03 .p-home-fv__planPrice {
  color: #0093a3;
}
.p-home-fv__button {
  margin-bottom: clamp(2%, 5vw, 72px);
  margin-left: clamp(2.5%, 21.1805555556vw, 305px);
}
.p-home-fv__button--link {
  display: inline-block;
  padding: 23px 23px;
  border: 2px solid #FAFAFA;
  font-size: 1.8rem;
  color: #FAFAFA;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-home-fv__button--link:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #231815;
  }
}
.p-home-fv__catch {
  padding: 0 clamp(2.5%, 7.6388888889vw, 110px);
  background: rgba(255, 255, 255, 0.9);
}
.p-home-fv__catchInner {
  max-width: 1222px;
  margin: 0 auto;
  padding: 55px 0 55px 0;
  background: url(../img/home/img_fv_pc.png) no-repeat right bottom;
  background-size: clamp(180px, 16.6666666667vw, 240px) auto;
}
.p-home-fv__catchCopy {
  margin-bottom: 40px;
  font-family: "Hina Mincho", serif;
  font-size: clamp(2.4rem, 1.9444444444vw, 2.8rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.444;
  text-align: center;
}
.p-home-fv__catchCopy--br {
  display: block;
}
.p-home-fv__catchCopy--equal {
  transform: rotate(90deg);
}
.p-home-fv__catchCopy--em {
  font-size: clamp(3.6rem, 3.75vw, 5.4rem);
  color: #95853E;
}
.p-home-fv__catchTextWrap {
  display: flex;
  padding-right: clamp(150px, 12.5vw, 180px);
  gap: clamp(20px, 3.4722222222vw, 50px);
}
.p-home-fv__catchText {
  width: 50%;
  padding-left: 30px;
  border-left: 4px solid #CBBA6F;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.p-home-fv__catchText--md {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 1.5277777778vw, 2.2rem);
  line-height: 1.590909;
}
.p-home-fv__catchText--sm {
  font-size: clamp(1.6rem, 1.0416666667vw, 1.5rem);
  line-height: 1.8;
}
.p-home-plan {
  padding: 130px clamp(30px, 4.1666666667vw, 60px) 92px;
  background: url(../img/home/bg_plan_pc.jpg) no-repeat center top;
  background-size: cover;
}
.p-home-plan .p-home-head__body {
  justify-content: center;
}
.p-home-plan__wrap {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 2fr;
  gap: 5px;
}
.p-home-plan__wrap--group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.p-home-plan__item {
  padding: clamp(30px, 4.1666666667vw, 60px) clamp(5px, 0.6944444444vw, 10px) clamp(5px, 0.6944444444vw, 10px);
  background: #fff;
}
.p-home-plan__itemBlue .p-home-plan__list {
  background: #eff4fe;
}
.p-home-plan__itemPink .p-home-plan__list {
  background: #fef0ef;
}
.p-home-plan__itemTitle {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(25px, 3.4722222222vw, 50px);
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  text-align: center;
  font-optical-sizing: auto;
}
.p-home-plan__itemTitle::after {
  display: block;
  width: 50px;
  height: 3px;
  margin: 0 auto;
  margin-top: 10px;
  content: "";
}
.p-home-plan__item--col1 {
  border: 2px solid #a1c7ff;
}
.p-home-plan__item--col1 .p-home-plan__itemTitle::after {
  background: #a1c7ff;
}
.p-home-plan__item--col2 {
  border: 2px solid #ff968d;
}
.p-home-plan__item--col2 .p-home-plan__itemTitle::after {
  background: #ff968d;
}
.p-home-plan__list {
  padding-bottom: 20px;
}
.p-home-plan__head {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: 22.9166666667vw;
  padding: clamp(36px, 4.375vw, 63px) 1%;
  background: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.p-home-plan__head--overview {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(25px, 3.4722222222vw, 50px);
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  font-optical-sizing: auto;
}
.p-home-plan__head--name {
  position: relative;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.8rem, 2.6388888889vw, 3.8rem);
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}
.p-home-plan__head--name.green {
  color: #6fa943;
}
.p-home-plan__head--name.pink {
  color: #d96b82;
}
.p-home-plan__head--name.blue {
  color: #0093a3;
}
.p-home-plan__head--button {
  position: relative;
  z-index: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(25px, 3.4722222222vw, 50px) auto 0;
  padding: 15px 35px;
  border: 1px solid #231815;
  background: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  color: #231815;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-home-plan__head--button:hover {
    background: rgb(255, 255, 255);
    color: #231815;
  }
}
.p-home-plan__head--img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-plan__label {
  display: flex;
  margin: 30px auto;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.p-home-plan__labelItem {
  display: inline-block;
  padding: 5px 8px;
  background: #E3E3E3;
  font-size: 1.4rem;
  color: #9F9F9F;
}
.p-home-plan__labelItem.green {
  background: #7EC04C;
  color: #FAFAFA;
}
.p-home-plan__labelItem.pink {
  background: #EC6E89;
  color: #FAFAFA;
}
.p-home-plan__labelItem.blue {
  background: #00A6BA;
  color: #FAFAFA;
}
.p-home-plan__foot {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-optical-sizing: auto;
}
.p-home-plan__foot--denial {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2rem;
}
.p-home-plan__foot--denialTax {
  font-size: 1.4rem;
}
.p-home-plan__foot--denial::after {
  position: absolute;
  top: 55%;
  left: 48%;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #231815;
  content: "";
  transform: translate(-50%, -50%);
}
.p-home-plan__foot--price {
  display: flex;
  font-size: clamp(2.1rem, 2.9166666667vw, 4.2rem);
  line-height: 1.190476;
  justify-content: center;
  align-items: center;
}
.p-home-plan__foot--priceKaiin {
  display: inline-block;
  width: 2.8em;
  font-size: clamp(0.8rem, 1.1111111111vw, 1.6rem);
  line-height: 1.2;
}
.p-home-plan__foot--priceYen {
  font-size: clamp(1.2rem, 1.3888888889vw, 2rem);
  line-height: 1;
}
.p-home-plan__foot--priceTax {
  margin-left: 5px;
  font-size: 1.6rem;
  line-height: 2;
  align-self: flex-end;
}
.p-home-plan__foot--count {
  margin-top: 20px;
  font-size: 1.8rem;
}
.p-home-plan__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 130px auto 97px;
  padding: 28px 55px;
  background: #EA616F;
  font-size: 2rem;
  color: #FAFAFA;
  text-decoration: none;
}
.p-home-plan__notes {
  box-sizing: content-box;
  max-width: 1210px;
  margin: 97px auto 0;
  padding: 0 2.5%;
}
.p-home-plan__notes--list {
  padding-left: 1em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.818181;
  color: #7A7A7A;
  text-indent: -1em;
  font-optical-sizing: auto;
}
.p-home-flow {
  padding: 130px 2.5% 92px;
  background-image: url(../img/home/bg_flow_top_pc.png), url(../img/home/bg_flow_bottom_pc.png);
  background-repeat: no-repeat, no-repeat;
  background-position: right 6.6666666667vw top, left bottom;
  background-size: auto, 100% auto;
}
.p-home-flow__wrap {
  max-width: 1210px;
  margin: 0 auto;
  padding: clamp(25px, 5.5555555556vw, 80px);
  background: #EEEEE7;
}
.p-home-flow__list {
  counter-reset: flowNum;
}
@media screen and (min-width: 768px) {
  .p-home-flow__list {
    display: block;
  }
}
.p-home-flow__listItem {
  position: relative;
  width: initial;
}
.p-home-flow__listItem:not(:first-child) {
  margin-top: 40px;
}
.p-home-flow__listItem--body {
  display: grid;
  padding: clamp(20px, 2.9166666667vw, 42px) 2.5% clamp(15px, 2.3611111111vw, 34px);
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-optical-sizing: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
}
.p-home-flow__listItem--content {
  margin: 0 20px;
  order: 1;
}
.p-home-flow__listItem--imgBefore {
  display: block;
  margin: 0 auto;
  order: 0;
}
.p-home-flow__listItem--imgAfter {
  display: block;
  margin: 0 auto;
  order: 2;
}
.p-home-flow__listItem--title {
  margin-bottom: 20px;
  font-size: clamp(2rem, 2.2222222222vw, 3.2rem);
  font-weight: 400;
}
.p-home-flow__listItem--text {
  font-size: clamp(1.4rem, 1.0416666667vw, 1.5rem);
  font-weight: 400;
  line-height: 1.8;
}
.p-home-flow__listItem::before {
  position: absolute;
  top: -0.5em;
  left: 50%;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 6.4rem;
  font-weight: 500;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  color: #CBBA6F;
  content: "0" counter(flowNum);
  counter-increment: flowNum;
  transform: translateX(-50%);
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-home-flow__listItem::before {
    font-size: clamp(3.2rem, 4.4444444444vw, 6.4rem);
  }
}
.p-home-flow .swiper-button-prev,
.p-home-flow .swiper-button-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home-flow .swiper {
    overflow: visible;
  }
  .p-home-flow .swiper-pagination {
    display: none;
  }
}
.p-home-option {
  padding: 130px 2.5%;
  background: url(../img/home/bg_option_pc.jpg) no-repeat center top/cover;
}
.p-home-option__wrap {
  display: grid;
  max-width: 1210px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.p-home-option__item {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.p-home-option__item--box {
  position: relative;
  padding: 44px 40px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-home-option__item--box:hover .p-home-option__item--imgBox img {
    opacity: 0.8;
    transform: scale(1.1);
  }
  .p-home-option__item--box:hover .p-home-option__item--button {
    background: rgba(255, 255, 255, 0.8);
    color: #231815;
    opacity: 1;
  }
}
.p-home-option__item--caption {
  display: block;
  margin-bottom: 50px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.p-home-option__item--heading {
  margin-bottom: 10px;
  font-size: 4rem;
  font-weight: 400;
}
.p-home-option__item--price {
  font-size: 4rem;
  line-height: 1.2;
}
.p-home-option__item--yen {
  font-size: 2rem;
}
.p-home-option__item--button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 50px;
  padding: 13px 38px;
  border: 1px solid #fff;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}
.p-home-option__item--textBox {
  position: relative;
  z-index: 1;
}
.p-home-option__item--imgBox {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.p-home-option__item--imgBox::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(21, 14, 12, 0.1), rgb(22, 15, 13));
  content: "";
  opacity: 0.8;
}
.p-home-option__item--img {
  width: 100%;
  height: 100%;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-option__item--desc {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6875;
}
.p-home-option__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 130px auto 5px;
  padding: 26px 43px;
  border: 2px solid #8B7A2E;
  background: #fff;
  font-size: 2rem;
  font-weight: 500;
  color: #9A8839;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-home-option__button:hover {
    background: #8B7A2E;
    color: #fff;
  }
}
.p-home-faq {
  padding: 130px 2.5%;
  background: #fff;
}
.p-home-faq__wrap {
  display: flex;
  flex-direction: column;
  max-width: 1210px;
  margin: 0 auto;
  gap: 30px;
}
.p-home-faq__item {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.p-home-faq__item--q {
  position: relative;
  padding: 25px 80px 25px 105px;
  background: #BCBCBC;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
.p-home-faq__item--q::before {
  position: absolute;
  top: 25px;
  left: 50px;
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  font-weight: 400;
  font-weight: 600;
  font-style: normal;
  content: "Q";
}
.p-home-faq__item--q::after {
  position: absolute;
  top: 38px;
  right: 56px;
  display: inline-block;
  width: 15px;
  height: 22px;
  background: url(../img/icon/icon_arrow_accordion.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.p-home-faq__item--a {
  display: none;
  padding: 38px 100px;
  border: 1px solid transparent;
  border-top: none;
  background: #F7F7F7;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8125;
}
.p-home-faq__item.open .p-home-faq__item--q {
  background: #BFB486;
}
.p-home-faq__item.open .p-home-faq__item--a {
  border-color: #9F9463;
}
.p-home-kyokaBnr {
  padding: 90px 2.5%;
  background: url(../img/home/kyokabnr_bg_pc.png) no-repeat center center;
  background-size: cover;
}
.p-home-kyokaBnr__body {
  max-width: 1020px;
  margin: 0 auto;
  padding: 49px 0 43px;
  background: url(../img/home/kyokabnr_img01.png) no-repeat left 82px center, url(../img/home/kyokabnr_img02.png) no-repeat right 93px center rgba(255, 255, 255, 0.8);
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-home-kyokaBnr__body {
    background: rgba(255, 255, 255, 0.8);
  }
}
.p-home-kyokaBnr__subTitle {
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6875;
  letter-spacing: 0.3em;
  font-optical-sizing: auto;
}
.p-home-kyokaBnr__subTitle::before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 auto 10px;
  background: url(../img/home/kyokabnr_icon.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.p-home-kyokaBnr__title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 1.444444;
  color: #B776BC;
  font-optical-sizing: auto;
}
.p-home-kyokaBnr__enTitle {
  display: block;
  margin: 10px 0;
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-home-kyokaBnr__button {
  display: inline-block;
  padding: 17px 41px;
  background: #B776BC;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FAFAFA;
  text-decoration: none;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    home
  =================================*/
  .p-home {
    /* メインビジュアル */
  }
  .p-home-head {
    margin-bottom: 60px;
    padding: 0 4.1025641026%;
  }
  .p-home-head__body {
    display: block;
  }
  .p-home-head__titleWrap {
    margin-bottom: 20px;
    text-align: left;
  }
  .p-home-head__title {
    font-size: 3rem;
  }
  .p-home-fv {
    background: none;
  }
  .p-home-fv__kv {
    padding: 50vh 0 40px;
    background: url(../img/home/bg_fv_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .p-home-fv__plan {
    display: flex;
    min-height: initial;
    color: #fff;
    flex-wrap: wrap;
    justify-content: center;
    gap: 87px 16px;
  }
  .p-home-fv__planName {
    font-size: 2rem;
  }
  .p-home-fv__planPrice {
    font-size: 3.1rem;
    line-height: 1.19354;
    justify-content: center;
  }
  .p-home-fv__planPrice--kaiin {
    width: 2.8em;
    font-size: 1rem;
    line-height: 1.2222;
    color: #fff;
  }
  .p-home-fv__planPrice--yen {
    font-size: 1.5rem;
    color: #fff;
  }
  .p-home-fv__planPrice--tax {
    font-size: 0.8rem;
    color: #fff;
  }
  .p-home-fv__plan .p-home-fv__plan--01 {
    position: relative;
    z-index: 0;
    top: initial;
    left: initial;
    width: 100%;
  }
  .p-home-fv__plan .p-home-fv__plan--01::after {
    width: 172px;
    height: 172px;
    background: #EC6E89;
    filter: blur(20.2323px);
  }
  .p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planName {
    font-size: 2.7rem;
    color: #fff;
  }
  .p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planPrice {
    font-size: 5rem;
    color: #fff;
  }
  .p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planPrice--kaiin {
    font-size: 1.3rem;
  }
  .p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planPrice--yen {
    font-size: 2.8rem;
  }
  .p-home-fv__plan .p-home-fv__plan--01 .p-home-fv__planPrice--tax {
    font-size: 1rem;
  }
  .p-home-fv__plan--02 {
    position: relative;
    z-index: 0;
    top: initial;
    right: initial;
  }
  .p-home-fv__plan--02::after {
    width: 111px;
    height: 111px;
    background: #7EC04C;
    filter: blur(16.2198px);
  }
  .p-home-fv__plan--02 .p-home-fv__planName {
    color: #fff;
  }
  .p-home-fv__plan--02 .p-home-fv__planPrice {
    color: #fff;
  }
  .p-home-fv__plan--03 {
    position: relative;
    z-index: 0;
    right: initial;
    bottom: initial;
  }
  .p-home-fv__plan--03::after {
    width: 111px;
    height: 111px;
    background: #00A6BA;
    filter: blur(16.2198px);
  }
  .p-home-fv__plan--03 .p-home-fv__planName {
    color: #fff;
  }
  .p-home-fv__plan--03 .p-home-fv__planPrice {
    color: #fff;
  }
  .p-home-fv__button {
    margin: 40px auto 0;
    text-align: center;
  }
  .p-home-fv__button--link {
    padding: 15px 19px;
  }
  .p-home-fv__catch {
    padding: 40px 0;
    background: #F7F7F7;
  }
  .p-home-fv__catchInner {
    max-width: initial;
    padding: 0;
    background: none;
  }
  .p-home-fv__catchCopy {
    margin-bottom: 30px;
    padding: 0 17.9487179487% 0 1.2820512821%;
    background: url(../img/home/img_fv_sp.png) no-repeat right bottom;
    background-size: 30% auto;
    font-size: 2.3rem;
    line-height: 1.46153;
  }
  .p-home-fv__catchCopy--em {
    margin: 17px 0;
    font-size: 3.6rem;
  }
  .p-home-fv__catchTextWrap {
    padding: 0 6.9230769231%;
    flex-wrap: wrap;
    gap: 40px;
  }
  .p-home-fv__catchText {
    width: 100%;
    padding-left: 5.1282051282%;
    border-left: 3px solid #CBBA6F;
  }
  .p-home-fv__catchText--md {
    margin-bottom: 16px;
    font-size: 1.8;
    line-height: 1.444444;
  }
  .p-home-fv__catchText--sm {
    font-size: 1.6rem;
    line-height: 1.375;
  }
  .p-home-plan {
    padding: 60px 3.8461538462%;
    background: url(../img/home/bg_plan_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .p-home-plan .p-home-head__titleWrap {
    text-align: center;
  }
  .p-home-plan__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .p-home-plan__wrap--group {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .p-home-plan__item {
    width: 100%;
    padding: 50px 1.2820512821% 1.2820512821%;
  }
  .p-home-plan__itemTitle {
    margin: 0 auto 30px;
    font-size: 2.6rem;
  }
  .p-home-plan__itemTitle::after {
    height: 2px;
    margin-top: 12px;
  }
  .p-home-plan__list {
    width: 100%;
  }
  .p-home-plan__head {
    min-height: 68.7179487179vw;
    padding: 45px 1% 41px;
  }
  .p-home-plan__head--overview {
    margin-bottom: 30px;
  }
  .p-home-plan__head--name {
    font-size: 3.6rem;
  }
  .p-home-plan__head--name::after {
    width: 32.0512820513vw;
    height: 32.0512820513vw;
  }
  .p-home-plan__head--button {
    margin: 30px auto 0;
    padding: 12px 30px;
  }
  .p-home-plan__label {
    margin: 20px auto;
  }
  .p-home-plan__labelItem {
    padding: 3px 8px;
  }
  .p-home-plan__foot--price {
    font-size: 4.2rem;
  }
  .p-home-plan__foot--priceKaiin {
    width: 2.5em;
    margin-right: 0.25em;
    font-size: 1.6rem;
  }
  .p-home-plan__foot--priceYen {
    font-size: 2rem;
  }
  .p-home-plan__foot--priceTax {
    margin-left: 0;
    font-size: 1.6rem;
  }
  .p-home-plan__button {
    margin: 60px auto;
    padding: 22px 26px;
    font-size: 1.8rem;
  }
  .p-home-plan__notes {
    margin: 60px auto 0;
    padding: 0 5.8974358974%;
  }
  .p-home-flow {
    padding: 60px 0 94px;
    background-image: url(../img/home/bg_flow_top_sp.png), url(../img/home/bg_flow_bottom_sp.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right top, left bottom;
    background-size: auto, 100% auto;
  }
  .p-home-flow__wrap {
    max-width: initial;
    padding: 35px 3.8461538462% 35px 3.8461538462%;
  }
  .p-home-flow__listItem {
    height: initial;
  }
  .p-home-flow__listItem:not(:first-child) {
    margin-top: 15px;
  }
  .p-home-flow__listItem--body {
    height: calc(100% - 125px);
    padding: 25px 5.1282051282% 25px;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
  }
  .p-home-flow__listItem--content {
    margin: 0 0 20px;
    order: 0;
  }
  .p-home-flow__listItem--imgBefore {
    display: block;
    margin: 0 auto;
    order: 1;
  }
  .p-home-flow__listItem--imgAfter {
    display: none;
  }
  .p-home-flow__listItem--title {
    position: relative;
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .p-home-flow__listItem--title::before {
    display: block;
    margin-bottom: 15px;
    font-family: "Roboto", sans-serif;
    font-size: 4.8rem;
    font-weight: 500;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    color: #CBBA6F;
    text-align: center;
    content: "0" counter(flowNum);
    counter-increment: flowNum;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
  }
  .p-home-flow__listItem--text {
    font-size: 1.4rem;
    line-height: 1.92857;
  }
  .p-home-flow__listItem::before {
    position: static;
    margin-bottom: 15px;
    font-size: 4.8rem;
    content: none;
    transform: translateX(0);
  }
  .p-home-flow .swiper {
    padding-right: 8.7179487179%; /* スライダー右の余白 */
  }
  .p-home-flow .swiper-pagination {
    top: initial;
    bottom: 0;
    left: -10px;
  }
  .p-home-flow .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: #fff;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    opacity: 1;
  }
  .p-home-flow .swiper-pagination-bullet-active {
    background: #CBBA6F;
  }
  .p-home-option {
    padding: 60px 3.8461538462%;
    background: url(../img/home/bg_option_sp.jpg) no-repeat center top/cover;
  }
  .p-home-option__wrap {
    display: block;
  }
  .p-home-option__item {
    margin-top: 40px;
  }
  .p-home-option__item--box {
    padding: 45px 5.1282051282%;
  }
  .p-home-option__item--caption {
    margin-bottom: 30px;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .p-home-option__item--heading {
    font-size: 3.6rem;
    font-weight: 500;
  }
  .p-home-option__item--price {
    font-size: 3.6rem;
    line-height: 1.19444;
  }
  .p-home-option__item--button {
    margin-top: 30px;
    padding: 17px 43px;
    font-size: 1.6rem;
  }
  .p-home-option__button {
    margin: 60px auto 5px;
    padding: 20px 17px;
    font-size: 1.8rem;
  }
  .p-home-faq {
    padding: 60px 3.8461538462%;
  }
  .p-home-faq__wrap {
    gap: 20px;
  }
  .p-home-faq__item--q {
    padding: 15px 52px 15px 43px;
    font-size: 1.8rem;
  }
  .p-home-faq__item--q::before {
    top: 15px;
    left: 20px;
    font-size: 2.4rem;
  }
  .p-home-faq__item--q::after {
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
  }
  .p-home-faq__item--a {
    padding: 30px 4.1025641026% 30px 7.6923076923%;
    background: #F7F7F7;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8125;
  }
  .p-home-kyokaBnr {
    padding: 60px 3.8461538462%;
    background: url(../img/home/kyokabnr_bg_sp.png) no-repeat center center;
    background-size: cover;
  }
  .p-home-kyokaBnr__body {
    padding: 43px 0;
    background: rgba(255, 255, 255, 0.8);
  }
  .p-home-kyokaBnr__subTitle {
    margin-bottom: 20px;
    font-size: 1.7rem;
    line-height: 1.58823;
  }
  .p-home-kyokaBnr__subTitle::before {
    width: 32px;
    height: 32px;
    margin: 0 auto 20px;
  }
  .p-home-kyokaBnr__title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    line-height: 1.194444;
  }
  .p-home-kyokaBnr__enTitle {
    margin: 20px 0;
  }
  .p-home-kyokaBnr__button {
    padding: 17px 27px;
  }
}
/*=================================
  plan
=================================*/
.p-plan {
  margin: 70px 0 0;
}
.p-plan__head {
  display: flex;
  margin-bottom: 45px;
  padding: 30px 50px;
  align-items: center;
  justify-content: space-between;
}
.p-plan__headTitle {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2083333;
  color: #FAFAFA;
}
.p-plan__headLabel {
  display: flex;
  gap: 6px;
}
.p-plan__headLabelItem {
  padding: 8px 13px;
  background: #FAFAFA;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.p-plan__body {
  display: flex;
  flex-direction: row-reverse;
  margin: 45px 0 60px;
  justify-content: flex-end;
}
.p-plan__bodyFigure {
  max-width: 100%;
  flex-shrink: 0;
}
.p-plan__bodyContent {
  margin-right: 56px;
}
.p-plan__bodyTitle {
  margin-bottom: 20px;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.2083333;
}
.p-plan__bodyText {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6875;
}
.p-plan__spec {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.p-plan__specList {
  display: flex;
  align-items: center;
}
.p-plan__specList--price .p-plan__spec Desc {
  font-size: clamp(1.8rem, 1.6666666667vw, 2.4rem);
}
.p-plan__specList--priceMember .p-plan__specTerm {
  color: #FAFAFA;
}
.p-plan__specList--priceMember .p-plan__specDesc {
  font-size: clamp(3.4rem, 3.8194444444vw, 5.5rem);
}
.p-plan__specList--priceMember .p-plan__specUnit {
  font-size: clamp(1.8rem, 1.6666666667vw, 2.4rem);
}
.p-plan__specTerm {
  box-sizing: content-box;
  width: 2em;
  margin-right: 30px;
  padding: 12px 19px;
  background: #EEEEE7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  line-height: 1.4375;
  text-align: center;
  font-optical-sizing: auto;
  flex-shrink: 0;
}
.p-plan__specDesc {
  font-size: clamp(1.8rem, 1.6666666667vw, 2.4rem);
  font-weight: 500;
}
.p-plan__specUnit {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
}
.p-plan__recommend {
  margin: 50px 0 0;
  padding: 33px 37px 45px;
  background: #FAFAFA;
}
.p-plan__recommendLead {
  margin-bottom: 50px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2083333;
  color: #928447;
}
.p-plan__recommendGrid3col {
  display: flex;
  padding: 0 45px;
  gap: 45px 76px;
}
.p-plan__recommendItem {
  max-width: 275px;
  text-align: center;
}
.p-plan__recommendFigure {
  display: block;
  margin-bottom: 25px;
}
.p-plan__recommendImg {
  width: auto;
  max-width: 100%;
  height: auto;
}
.p-plan__recommendText {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6875;
  text-align: left;
}
.p-plan--blue .p-plan__head {
  background: url(../img/plan_headBg01_pc.png) no-repeat center center;
  background-size: cover;
}
.p-plan--blue .p-plan__headLabelItem {
  color: #00A6BA;
}
.p-plan--blue .p-plan__bodyTitle {
  color: #00A6BA;
}
.p-plan--blue .p-plan__specList--priceMember .p-plan__specTerm {
  background: #00A6BA;
}
.p-plan--blue .p-plan__specList--priceMember .p-plan__specDesc {
  color: #00A6BA;
}
.p-plan--pink .p-plan__head {
  background: url(../img/plan_headBg02_pc.png) no-repeat center center;
  background-size: cover;
}
.p-plan--pink .p-plan__headLabelItem {
  color: #EA616F;
}
.p-plan--pink .p-plan__bodyTitle {
  color: #EA616F;
}
.p-plan--pink .p-plan__specList--priceMember .p-plan__specTerm {
  background: #EA616F;
}
.p-plan--pink .p-plan__specList--priceMember .p-plan__specDesc {
  color: #EA616F;
}
.p-plan--green .p-plan__head {
  background: url(../img/plan_headBg03_pc.png) no-repeat center center;
  background-size: cover;
}
.p-plan--green .p-plan__headLabelItem {
  color: #7EC04C;
}
.p-plan--green .p-plan__bodyTitle {
  color: #7EC04C;
}
.p-plan--green .p-plan__specList--priceMember .p-plan__specTerm {
  background: #7EC04C;
}
.p-plan--green .p-plan__specList--priceMember .p-plan__specDesc {
  color: #7EC04C;
}
.p-planNote {
  margin-top: 45px;
}
.p-planNote__item {
  padding-left: 1em;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.818181;
  color: #7A7A7A;
  text-indent: -1em;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    plan
  =================================*/
  .p-plan {
    margin: 40px 0 0;
    padding: 0 3.8461538462%;
  }
  .p-plan__head {
    display: block;
    overflow: hidden;
    width: 117.4358974359%;
    margin-bottom: 40px;
    margin-left: -8.7179487179%;
    padding: 48px 3.8461538462%;
    text-align: center;
  }
  .p-plan__headTitle {
    margin-bottom: 30px;
    font-size: 4.4rem;
  }
  .p-plan__headLabel {
    justify-content: center;
  }
  .p-plan__headLabelItem {
    padding: 5px 13px;
  }
  .p-plan__body {
    display: block;
    margin: 40px 0;
  }
  .p-plan__bodyFigure {
    display: block;
    margin-bottom: 40px;
    text-align: center;
  }
  .p-plan__bodyContent {
    margin-right: 0;
  }
  .p-plan__bodyTitle {
    font-size: 2.8rem;
    line-height: 1.214285;
  }
  .p-plan__spec {
    flex-direction: column;
    gap: 10px;
  }
  .p-plan__specList--price .p-plan__spec Desc {
    font-size: 3.2rem;
  }
  .p-plan__specList--priceMember .p-plan__specDesc {
    font-size: 4rem;
    line-height: 1.2;
  }
  .p-plan__specList--priceMember .p-plan__specUnit {
    font-size: 2rem;
  }
  .p-plan__specTerm {
    width: 2em;
    margin-right: 20px;
    padding: 5px 11px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
  .p-plan__specDesc {
    font-size: 3rem;
  }
  .p-plan__specUnit {
    font-size: 2rem;
  }
  .p-plan__recommend {
    margin: 40px 0 0;
    padding: 40px 23px;
  }
  .p-plan__recommendLead {
    margin-bottom: 30px;
    font-size: 2.2rem;
    line-height: 1.181818;
  }
  .p-plan__recommendGrid3col {
    flex-direction: column;
    padding: 0;
    gap: 45px;
  }
  .p-plan__recommendItem {
    max-width: initial;
  }
  .p-plan__recommendFigure {
    margin-bottom: 20px;
  }
  .p-plan__recommendImg {
    width: revert-layer;
    max-width: 80%;
  }
  .p-plan--blue .p-plan__head {
    background: url(../img/plan_headBg01_sp.png) no-repeat center center;
    background-size: cover;
  }
  .p-plan--pink .p-plan__head {
    background: url(../img/plan_headBg02_sp.png) no-repeat center center;
    background-size: cover;
  }
  .p-plan--green .p-plan__head {
    background: url(../img/plan_headBg03_sp.png) no-repeat center center;
    background-size: cover;
  }
  .p-planNote {
    margin-top: 30px;
  }
  .p-planNote__item {
    font-size: 1.2rem;
  }
}
/*=================================
  form
=================================*/
.p-form__step {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 36px auto 63px;
  background: #EDEDED;
  counter-reset: stepNum;
  justify-content: center;
}
.p-form__stepItem {
  position: relative;
  padding: 16px clamp(30px, 7.2916666667vw, 105px);
  border-top: 3px solid #EDEDED;
  border-bottom: 3px solid #EDEDED;
  background: #fff;
}
.p-form__stepItem::before {
  position: absolute;
  z-index: 10;
  top: -2px;
  right: -20px;
  border-width: 33px 0 33px 23px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  content: "";
}
.p-form__stepItem::after {
  position: absolute;
  z-index: 5;
  top: -4px;
  right: -24px;
  border-width: 35px 0 35px 24px;
  border-style: solid;
  border-color: transparent transparent transparent #EDEDED;
  content: "";
}
.p-form__stepItemText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  color: #6B6B6B;
  font-optical-sizing: auto;
}
.p-form__stepItemText::before {
  margin-right: 10px;
  content: "0" counter(stepNum);
  counter-increment: stepNum;
}
.p-form__stepItem--current {
  border-color: #CBBA6F;
  background: #CBBA6F;
}
.p-form__stepItem--current::before {
  border-color: transparent transparent transparent #CBBA6F;
}
.p-form__stepItem--current::after {
  border-color: transparent transparent transparent #CBBA6F;
}
.p-form__stepItem--current .p-form__stepItemText {
  color: #FAFAFA;
}
.p-form__stepItem:first-child:not(.p-form__stepItem--current) {
  border-left: 3px solid #EDEDED;
}
.p-form__stepItem:last-child:not(.p-form__stepItem--current) {
  border-right: 3px solid #EDEDED;
}
.p-form__stepItem:last-child:before, .p-form__stepItem:last-child:last-child:after {
  display: none;
}
.p-form__contaier {
  padding: 50px;
  background: #FAFAFA;
}
.p-form__body {
  padding: 30px 40px 50px;
  background: #fff;
}
.p-form__row {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E1E1E1;
  justify-content: space-between;
  align-items: flex-start;
}
.p-form__row--line {
  display: block;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.p-form__row--1col {
  border: none;
}
.p-form__row--hanakago {
  align-items: center;
}
.p-form__row--detail {
  display: flex;
}
.p-form__label {
  display: flex;
  width: 272px;
  margin-top: 12px;
  padding: 0 0 17px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
  align-items: center;
}
.p-form__label--line {
  margin-bottom: 30px;
  padding-bottom: 17px;
  border-bottom: 1px solid #231815;
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
}
.p-form__label--band {
  margin: 30px 0;
  padding: 12px 14px;
  background: #B776BC;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.181818;
  color: #fff;
}
.p-form__label--detail {
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.p-form__required, .p-form__any {
  display: inline-block;
  margin-left: auto;
  padding: 3px 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  color: #FAFAFA;
  font-optical-sizing: auto;
}
.p-form__required {
  background: #EA616F;
}
.p-form__any {
  background: #C3C3C3;
}
.p-form__inputArea {
  width: calc(100% - 272px);
  padding: 0 24px 0 34px;
  font-size: 2rem;
  align-self: center;
}
.p-form__inputArea--line {
  display: flex;
  width: calc(100% - 222px);
  margin-left: auto;
  padding: 0px 24px 0px 0;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-form__inputArea--line .p-form__required, .p-form__inputArea--line .p-form__any {
  margin-right: 34px;
  flex-shrink: 0;
}
.p-form__inputArea--hanakago {
  display: flex;
  width: calc(100% - 272px);
  padding: 0 24px 0 34px;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-form__inputArea--hanakago {
    flex-wrap: wrap;
  }
}
.p-form__inputArea--detail {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.p-form__inputArea--radio label {
  display: inline-flex;
  margin-top: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-optical-sizing: auto;
}
.p-form__inputArea--radio label:not(:last-of-type) {
  margin-right: 34px;
}
.p-form__input, .p-form__textarea {
  width: 100%;
  padding: 14px 22px;
  border: 1px solid #EDEDED;
  border-radius: 2px;
  background: #FAFAFA;
  font-size: 2.2rem;
  font-weight: 400;
}
.p-form__input--line, .p-form__textarea--line {
  width: calc(100% - 84px);
  max-width: 600px;
  padding: 14px 22px;
  border: 1px solid #EDEDED;
  border-radius: 2px;
  background: #FAFAFA;
  font-size: 2.2rem;
  font-weight: 400;
}
.p-form__radioItem {
  display: inline-flex;
  margin-top: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-optical-sizing: auto;
}
.p-form__radioItem:not(:last-of-type) {
  margin-right: 34px;
}
.p-form__radio {
  position: relative;
  width: 26px;
  height: 26px;
  border: 2px solid #ea616f;
  border-radius: 9999px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-form__radio:checked::after {
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border-radius: 9999px;
  background-color: #ea616f;
  content: "";
  inset: 0;
}
.p-form__select {
  padding: 12px 40px 12px 15px;
  border: 1px solid #EDEDED;
  border-radius: 2px;
  background: url(../img/icon/icon_arrow_select.svg) no-repeat right 10px center #FAFAFA;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.p-form__schedule {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-form__scheduleText {
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
}
.p-form__hanakagoPrice {
  display: flex;
  width: 274px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  align-items: flex-end;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-form__hanakagoPrice {
    width: 100%;
  }
}
.p-form__hanakagoPriceNum {
  margin-left: auto;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-form__hanakagoPriceNum {
    margin-left: 100px;
  }
}
.p-form__hanakagoPriceYen {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.p-form__hanakagoAmount {
  margin-left: auto;
  font-size: 2.2rem;
  font-weight: 500;
}
.p-form__hanakagoSelect {
  padding: 12px 40px 12px 15px;
  border: 1px solid #EDEDED;
  border-radius: 2px;
  background: url(../img/icon/icon_arrow_select.svg) no-repeat right 10px center #FAFAFA;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.p-form__houmeifudaBody {
  display: flex;
  justify-content: center;
}
.p-form__houmeifudaFigure {
  width: min(300px, 20.8333333333vw);
  height: min(300px, 20.8333333333vw);
}
.p-form__houmeifudaImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-form__houmeifudaTextBody {
  display: flex;
  width: min(300px, 20.8333333333vw);
  height: min(300px, 20.8333333333vw);
  background: #B776BC;
  justify-content: center;
}
.p-form__houmeifudaText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.3888888889vw, 2rem);
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #fff;
  font-optical-sizing: auto;
  align-self: center;
}
.p-form__houmeifudaNote {
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4375;
  color: #EA616F;
  text-align: center;
  font-optical-sizing: auto;
}
.p-form__detail {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  justify-content: center;
  gap: 10px;
}
.p-form__detailItem {
  font-size: 2.2rem;
  line-height: 1;
}
.p-form__detailItem--total {
  font-size: 2.8rem;
  color: #EA616F;
}
.p-form__detailNum {
  border: none;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  text-align: right;
  font-optical-sizing: auto;
}
.p-form__detailNum--total {
  font-size: 3.6rem;
  color: #EA616F;
}
.p-form__detailYen {
  margin-left: 0.5em;
  font-size: 2.2rem;
}
.p-form__detailYen--total {
  margin-left: 0.4em;
  font-size: 2.2rem;
  color: #EA616F;
}
.p-form__inputNote {
  display: block;
  margin: 16px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4375;
  font-optical-sizing: auto;
}
.p-form__inputNote--line {
  display: block;
  margin: 16px 0 0 84px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4375;
  font-optical-sizing: auto;
}
.p-form input::-moz-placeholder, .p-form textAREA::-moz-placeholder {
  color: #B3B3B3;
}
.p-form input::placeholder, .p-form textAREA::placeholder {
  color: #B3B3B3;
}
.p-form__note {
  margin: 45px 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.214285;
  color: #7A7A7A;
}
.p-form__note--hanakago {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px 0;
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.214285;
  color: #7A7A7A;
}
.p-form__noteBox {
  margin-top: 60px;
  padding: 42px 53px;
  border: 3px solid #EA616F;
}
.p-form__noteBoxText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  line-height: 1.454545;
  color: #EA616F;
  font-optical-sizing: auto;
}
.p-form__attention {
  margin: 50px 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  line-height: 1.454545;
  text-align: center;
  font-optical-sizing: auto;
}
.p-form__conf {
  margin: 30px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-optical-sizing: auto;
}
.p-form__confText {
  margin: 30px 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4375;
}
.p-form__confText a {
  color: #231815;
}
.p-form__btnWrap {
  margin: 30px 0;
}
.p-form__back {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  font-size: 1.5rem;
  font-weight: 400;
  color: #7A7A7A;
}
.p-form__back input {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  font-weight: 400;
  color: #7A7A7A;
  cursor: pointer;
}
.p-form__proceed {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
}
.p-form__proceed input {
  padding: 30px 115px;
  border: none;
  background: #CBBA6F;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.p-form__complete h1, .p-form__complete h2, .p-form__complete h3, .p-form__complete h4, .p-form__complete h5, .p-form__complete h6 {
  clear: both;
}
.p-form__complete p {
  padding: clamp(30px, 5.5555555556vw, 80px);
  background: #FAFAFA;
  font-size: 120%;
  line-height: 2;
}
.p-form__complete p + p {
  margin-top: 40px;
}
.p-form__complete h1, .p-form__complete h1.wp-block-heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-form__complete h2, .p-form__complete h2.wp-block-heading {
  margin: 60px 0 40px;
  padding: 21px 28px;
  border-left: 5px solid #CBBA6F;
  background: #FAFAFA;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1875;
}
.p-form__complete h3, .p-form__complete h3.wp-block-heading {
  margin: 98px 0 54px;
  padding: 20px 27px;
  border: 1px solid #CBBA6F;
  background: #FBFBFB;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.214285;
}
.p-form__complete h4, .p-form__complete h4.wp-block-heading {
  margin: 60px 0 30px;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.5;
}
.p-form__complete img, .p-form__complete .wp-block-image {
  display: block;
  margin: 40px auto;
  text-align: center;
}
.p-form__complete picture:not([class]) {
  display: block;
  text-align: center;
}
.p-form__complete ul:not([class]) {
  margin: 40px 0;
}
.p-form__complete ul:not([class]) li {
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
  line-height: 1.8;
}
.p-form__complete ul:not([class]) li::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #CBBA6F;
  content: "";
  filter: blur(1.5px);
}
.p-form__complete ol:not([class]) {
  margin: 40px 0;
}
.p-form__complete ol:not([class]) li {
  margin-left: 1.25em;
  list-style: decimal;
  font-size: 1.8rem;
  line-height: 1.8;
}
.p-form__complete table:not([class]), .p-form__complete .wp-block-table table {
  position: relative;
  width: 100%;
  margin: 60px auto;
  background: #fff;
  border-spacing: 0;
  border-collapse: collapse;
}
.p-form__complete table:not([class]) th, .p-form__complete table:not([class]) td, .p-form__complete .wp-block-table table th, .p-form__complete .wp-block-table table td {
  padding: 32px 0;
  border-top: 1px solid #CBBA6F;
  border-bottom: 1px solid #CBBA6F;
  text-align: left;
  vertical-align: top;
  vertical-align: middle;
}
.p-form__complete table:not([class]) th, .p-form__complete .wp-block-table table th {
  max-width: 227px;
  padding: 33px 53px;
  background: #FAFAFA;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.44444;
  text-align: center;
}
.p-form__complete table:not([class]) td, .p-form__complete .wp-block-table table td {
  padding: 33px 53px;
  font-size: 1.8rem;
  line-height: 1.44444;
}
.p-form__complete table:not([class]) .num, .p-form__complete .wp-block-table table .num {
  font-size: 155%;
}
.p-form__complete iframe {
  max-width: 100%;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  .p-form__complete p {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .p-form__complete p + p {
    margin-top: 30px;
  }
  .p-form__complete h1, .p-form__complete h1.wp-block-heading {
    font-size: 2rem;
  }
  .p-form__complete h2, .p-form__complete h2.wp-block-heading {
    margin: 40px 0 20px;
    padding: 18px 18px;
    font-size: 2.4rem;
    line-height: 1.2083333;
  }
  .p-form__complete h3, .p-form__complete h3.wp-block-heading {
    margin: 45px 0 25px;
    padding: 22px 3.8461538462%;
    font-size: 2.2rem;
    line-height: 1.181818;
  }
  .p-form__complete h4, .p-form__complete h4.wp-block-heading {
    margin: 20px 0 30px;
    font-size: 2rem;
    line-height: 1.35;
  }
  .p-form__complete img, .p-form__complete .wp-block-image {
    margin: 30px auto;
  }
  .p-form__complete ul:not([class]) {
    margin: 30px 0;
  }
  .p-form__complete ul:not([class]) li {
    margin-left: 2rem;
    font-size: 1.5rem;
  }
  .p-form__complete ol:not([class]) {
    margin: 30px 0;
  }
  .p-form__complete ol:not([class]) li {
    margin-left: 1.5rem;
    font-size: 1.5rem;
  }
  .p-form__complete table:not([class]), .p-form__complete .wp-block-table table {
    margin: 30px auto;
  }
  .p-form__complete table:not([class]) th, .p-form__complete table:not([class]) td, .p-form__complete .wp-block-table table th, .p-form__complete .wp-block-table table td {
    padding: 19px 0;
  }
  .p-form__complete table:not([class]) th, .p-form__complete .wp-block-table table th {
    width: 96px;
    padding-right: 5px;
    font-size: 1.3rem;
    line-height: 1.46153;
  }
  .p-form__complete table:not([class]) td, .p-form__complete .wp-block-table table td {
    width: calc(100% - 96px);
    padding-left: 5px;
    font-size: 1.5rem;
    line-height: 1.46153;
  }
}
.p-form .mw_wp_form_preview .p-form__schedule {
  justify-content: flex-start;
}
.p-form .mw_wp_form_preview .p-form__houmeifudaNote {
  display: none;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    form
  =================================*/
  .p-form__step {
    margin: 20px auto 40px;
  }
  .p-form__stepItem {
    padding: 11px 15px 11px 35px;
  }
  .p-form__stepItem::before {
    top: -2px;
    right: -20px;
    border-width: 28px 0 28px 23px;
  }
  .p-form__stepItem::after {
    top: -4px;
    right: -24px;
    border-width: 30px 0 30px 24px;
  }
  .p-form__stepItemText {
    font-size: 1.6rem;
  }
  .p-form__stepItemText::before {
    margin-right: 0;
    content: none;
  }
  .p-form__stepItem:first-child {
    padding-left: 20px;
  }
  .p-form__stepItem:last-child {
    padding-right: 20px;
  }
  .p-form__contaier {
    width: 107.6923076923%;
    margin-left: -3.8461538462%;
    padding: 17px 3.8461538462%;
  }
  .p-form__body {
    padding: 0 3.8461538462% 40px;
    background: #fff;
  }
  .p-form__row {
    display: block;
    padding: 20px 0;
    border-width: 2px;
  }
  .p-form__row--line {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .p-form__label {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-size: 1.8rem;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .p-form__label--line {
    margin-bottom: 0;
    padding-bottom: 15px;
    font-size: 2rem;
  }
  .p-form__label--band {
    margin: 20px 0;
    padding: 11px 7px;
    font-size: 1.8rem;
    line-height: 1.222222;
  }
  .p-form__label--detail {
    margin-bottom: 0;
    justify-content: flex-start;
  }
  .p-form__required, .p-form__any {
    margin-left: initial;
    padding: 0px 7px;
    font-size: 1.1rem;
  }
  .p-form__inputArea {
    width: 100%;
    padding: 0;
    font-size: 1.8rem;
  }
  .p-form__inputArea--line {
    width: 100%;
    padding: 0;
  }
  .p-form__inputArea--line .p-form__required, .p-form__inputArea--line .p-form__any {
    margin-right: 0;
  }
  .p-form__inputArea--hanakago {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  .p-form__inputArea--houmeifuda {
    margin-top: 20px;
  }
  .p-form__inputArea--detail {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
  }
  .p-form__inputArea--radio label {
    margin-top: 10px;
    -moz-column-gap: 9px;
         column-gap: 9px;
  }
  .p-form__inputArea--radio label:not(:last-of-type) {
    margin-right: 30px;
  }
  .p-form__input, .p-form__textarea {
    padding: 17px 22px;
    font-size: 1.8rem;
  }
  .p-form__input--line, .p-form__textarea--line {
    width: 100%;
    padding: 17px 22px;
    font-size: 1.8rem;
  }
  .p-form__radioItem {
    margin-top: 10px;
    -moz-column-gap: 9px;
         column-gap: 9px;
  }
  .p-form__radioItem:not(:last-of-type) {
    margin-right: 30px;
  }
  .p-form__select {
    padding: 13px 20px 13px 14px;
    background: url(../img/icon/icon_arrow_select.svg) no-repeat right 8px center #FAFAFA;
    background-size: 8px auto;
  }
  .p-form__schedule {
    display: block;
  }
  .p-form__scheduleText {
    font-size: 1.8rem;
  }
  .p-form__hanakagoPrice {
    width: 100%;
    font-size: 2rem;
  }
  .p-form__hanakagoPriceNum {
    font-size: 2.4rem;
  }
  .p-form__hanakagoPriceYen {
    font-size: 1.6rem;
  }
  .p-form__hanakagoAmount {
    font-size: 2rem;
  }
  .p-form__hanakagoSelect {
    padding: 14px 33px 14px 53px;
    font-size: 2rem;
  }
  .p-form__houmeifuda {
    margin-top: 20px;
  }
  .p-form__houmeifudaFigure {
    width: min(165px, 42.3076923077vw);
    height: min(165px, 42.3076923077vw);
  }
  .p-form__houmeifudaTextBody {
    width: min(165px, 42.3076923077vw);
    height: min(165px, 42.3076923077vw);
  }
  .p-form__houmeifudaText {
    font-size: 1.3rem;
  }
  .p-form__houmeifudaNote {
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 1.428571;
  }
  .p-form__detail {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .p-form__detailItem {
    font-size: 2rem;
  }
  .p-form__detailItem--total {
    font-size: 2.4rem;
  }
  .p-form__detailNum {
    width: 6em;
    font-size: 2.4rem;
  }
  .p-form__detailNum--total {
    font-size: 3.2rem;
  }
  .p-form__detailYen {
    margin-left: 0.5em;
  }
  .p-form__detailYen--total {
    margin-left: 0.4em;
  }
  .p-form__inputNote {
    font-size: 1.4rem;
  }
  .p-form__inputNote--line {
    font-size: 1.4rem;
  }
  .p-form__note {
    margin: 20px 0;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.23076;
  }
  .p-form__note--hanakago {
    width: 100%;
    margin: 20px 0;
    margin-left: initial;
  }
  .p-form__noteBox {
    margin-top: 20px;
    padding: 20px 23px;
    border: 2px solid #EA616F;
  }
  .p-form__noteBoxText {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
  .p-form__attention {
    margin: 30px 0 0;
    font-size: 1.6rem;
    line-height: 1.4375;
  }
  .p-form__conf {
    margin: 40px 0;
  }
  .p-form__confText {
    margin: 20px 0;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
  .p-form__btnWrap {
    margin: 30px 0;
  }
  .p-form__back {
    font-size: 1.4rem;
  }
  .p-form__back input {
    font-size: 1.4rem;
  }
  .p-form__proceed {
    width: 90%;
  }
  .p-form__proceed input {
    width: 100%;
    padding: 24px 0;
    font-size: 1.8rem;
  }
}
/*=================================
  parts
=================================*/
.p-parts-card2col {
  display: flex;
  margin: 60px 0;
  flex-wrap: wrap;
  gap: 40px;
}
.p-parts-card2col__item {
  width: calc((100% - 40px) / 2);
}
.p-parts-card2col__title {
  padding: 18px 23px;
  background: #CBBA6F;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
}
.p-parts-card2col__text {
  margin-top: 30px;
}
.p-parts-card2col__img {
  display: block;
  width: 100%;
}
.p-parts-cardList {
  display: flex;
  margin: 60px 0 86px;
  flex-wrap: wrap;
  gap: 40px;
}
.p-parts-cardList__item {
  width: calc((100% - 40px) / 2);
  list-style: none;
  counter-increment: cardListNum;
}
.p-parts-cardList__item:nth-child(n+10) .p-parts-cardList__title::before {
  content: counter(cardListNum);
}
.p-parts-cardList__title {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  padding: 21px 23px 21px 70px;
  border: 1px solid #CBBA6F;
  background: #EEEEE7;
  font-size: 2.2rem;
  font-weight: 400;
}
.p-parts-cardList__title::before {
  position: absolute;
  top: 9px;
  left: 10px;
  display: inline-block;
  width: 50px;
  background: #CBBA6F;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  line-height: 50px;
  color: #fff;
  text-align: center;
  content: "0" counter(cardListNum);
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}
.p-parts-cardList__body {
  display: flex;
  margin-top: 30px;
  padding: 0 20px;
  align-items: flex-start;
  gap: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-parts-cardList__body {
    flex-direction: column;
  }
}
.p-parts-cardList__text {
  max-width: 270px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-parts-cardList__text {
    max-width: initial;
  }
}
.p-parts-cardList__figure {
  margin: 0 auto;
  flex-shrink: 0;
}
.p-parts-cardList__img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.p-parts-cardList__list {
  margin-left: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-parts-cardList__list {
    margin-left: 0;
  }
}
.p-parts-cardList__listItem {
  position: relative;
  padding-left: 22px;
  font-size: 1.6rem;
  line-height: 1.875;
}
.p-parts-cardList__listItem::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #CBBA6F;
  content: "";
}
.p-parts-cardList__listItemNote {
  display: inline-block;
  font-size: 1.3rem;
}
.p-parts-img2col {
  display: flex;
  margin: 66px 0 57px;
  gap: 40px;
}
.p-parts-img2col__figure {
  display: block;
}
.p-parts-descBox {
  margin: 66px 0;
  padding: 30px;
}
.p-parts-descBox__title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.35;
}
.p-parts-descBox__title::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #CBBA6F;
  content: "";
  filter: blur(1.5px);
}
.p-parts-descBox__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6875;
}
.p-parts-descBox--border {
  border: 1px solid #CBBA6F;
}
.p-parts-flowBox {
  display: flex;
  margin: 40px 0;
  padding: 53px 45px;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.p-parts-flowBox__body {
  width: 320px;
}
.p-parts-flowBox__title {
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.214285;
}
.p-parts-flowBox__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6875;
}
.p-parts-flowBox__figure {
  max-width: 100%;
  flex-shrink: 0;
}
.p-parts-flowBox__img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.p-parts-flowBox--blue {
  background: #EFFDFF;
}
.p-parts-flowBox--blue .p-parts-flowBox__title {
  color: #00A6BA;
}
.p-parts-flowBox--pink {
  background: #FFF6F8;
}
.p-parts-flowBox--pink .p-parts-flowBox__title {
  color: #EC6E89;
}
.p-parts-flowBox--green {
  background: #F0FBE7;
}
.p-parts-flowBox--green .p-parts-flowBox__title {
  color: #7EC04C;
}
.p-parts-3points {
  display: flex;
  gap: clamp(20px, 3.4722222222vw, 50px);
}
.p-parts-3points__item {
  width: calc((100% - clamp(20px, 3.4722222222vw, 50px)) / 3);
}
.p-parts-job {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.p-parts-job__item {
  width: 200px;
}
.p-parts-job__itemTitle {
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}
.p-parts-job__itemText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-parts-job__itemFigure {
  display: block;
  margin-bottom: 22px;
}
.p-parts-job__itemImg {
  width: 100%;
}
.p-parts-kyoka {
  display: flex;
  margin: 70px 0 80px;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-end;
}
.p-parts-kyoka__item {
  text-align: center;
}
.p-parts-kyoka__figure {
  display: block;
  margin-bottom: 30px;
}
.p-parts-kyoka__price {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1875;
}
.p-parts-kyoka__priceTax {
  font-size: 2rem;
}
.p-parts-kyoka__priceNote {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
}
.p-parts-upgradeBox {
  display: flex;
  margin: 57px 0 66px;
  justify-content: space-between;
}
.p-parts-upgradeBox__target {
  margin-bottom: 18px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.125;
}
.p-parts-upgradeBox__catch {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #B776BC;
}
.p-parts-upgradeBox__priceArea {
  display: flex;
  flex-direction: column;
  padding: 5px 27px;
  background: #F7F0FC;
  color: #B776BC;
  justify-content: center;
}
.p-parts-upgradeBox__priceLabel {
  display: block;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.125;
}
.p-parts-upgradeBox__priceNum {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}
.p-parts-upgradeBox__priceTax {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.125;
}
.p-parts-recommend {
  margin: 57px 0 66px;
}
.p-parts-recommend__title {
  margin-bottom: 23px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.35;
}
.p-parts-recommend__listItem {
  position: relative;
  margin-left: 1.8em;
  padding-left: 25px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.9444444;
}
.p-parts-recommend__listItem::before {
  position: absolute;
  top: 11px;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #CBBA6F;
  content: "";
}
.p-parts-othersOption {
  margin: 60px 0;
}
.p-parts-othersOption__item {
  display: flex;
  margin: 50px 0;
  gap: 40px;
}
.p-parts-othersOption__figure {
  flex-shrink: 0;
}
.p-parts-othersOption__title {
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #EA616F;
}
.p-parts-othersOption__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6875;
}
.p-parts-othersOption__price {
  margin-top: 20px;
  font-size: 2.4rem;
  line-height: 1.125;
}
.p-parts-othersOption__priceNum {
  font-size: 3.2rem;
  font-weight: 500;
}
.p-parts-othersOption__priceTax {
  font-size: 2.4rem;
  line-height: 1.125;
}
.p-parts-textLink {
  display: none;
}
.p-parts-spBreakTable {
  position: relative;
  width: 100%;
  margin: 60px auto;
  background: #fff;
  border-spacing: 0;
  border-collapse: collapse;
}
.p-parts-spBreakTable__title, .p-parts-spBreakTable__price, .p-parts-spBreakTable__text {
  padding: 32px 0;
  border-top: 1px solid #CBBA6F;
  border-bottom: 1px solid #CBBA6F;
  text-align: left;
  vertical-align: top;
  vertical-align: middle;
}
.p-parts-spBreakTable__title {
  max-width: 227px;
  padding: 33px 53px;
  background: #FAFAFA;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.44444;
  text-align: center;
}
.p-parts-spBreakTable__price {
  padding: 33px 30px;
  font-size: 1.8rem;
  line-height: 1.44444;
}
.p-parts-spBreakTable__priceNum {
  font-size: 155%;
}
.p-parts-spBreakTable__text {
  padding: 33px 30px;
  font-size: 1.8rem;
  line-height: 1.44444;
}
.p-parts-detailedTable {
  position: relative;
  width: 100%;
  margin: 60px auto;
  background: #fff;
  border-spacing: 0;
  border-collapse: collapse;
}
.p-parts-detailedTable thead th {
  padding: 17px 15px;
  background: #CBBA6F;
  text-align: center;
}
.p-parts-detailedTable th, .p-parts-detailedTable td {
  padding: 22px 25px;
  border: 1px solid #CBBA6F;
  vertical-align: top;
  vertical-align: middle;
}
.p-parts-detailedTable th {
  background: #EEEEE7;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
  text-align: left;
}
.p-parts-detailedTable td {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44444;
  text-align: center;
}
.p-parts-detailedTable .num {
  font-size: 110%;
}
.p-parts-altarTable {
  width: 100%;
  margin: 24px 0 100px;
  border-collapse: collapse;
}
.p-parts-altarTable__label {
  padding: 38px 15px;
  text-align: center;
}
.p-parts-altarTable__data {
  padding: 8px 15px;
  text-align: center;
  vertical-align: middle;
}
.p-parts-altarTable__data--name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.p-parts-altarTable__data--thumb {
  max-width: 220px;
}
.p-parts-altarTable__data--color {
  max-width: 230px;
}
.p-parts-altarTable__data--nameNote {
  display: block;
  font-size: 1.1rem;
}
.p-parts-altarTable__img {
  width: 200px;
}
.p-parts-altarTable__row:nth-child(2n+1) .p-parts-altarTable__data {
  background: #FAFAFA;
}
.p-parts-altarTable__row--mauve {
  border-left: 5px solid #B19DCA;
}
.p-parts-altarTable__row--mauve .p-parts-altarTable__colorTitle {
  background: #B19DCA;
}
.p-parts-altarTable__row--mauve .p-parts-altarTable__data {
  background: rgba(177, 157, 202, 0.3) !important;
}
.p-parts-altarTable__row--blue {
  border-left: 5px solid #29A7E1;
}
.p-parts-altarTable__row--blue .p-parts-altarTable__colorTitle {
  background: #29A7E1;
}
.p-parts-altarTable__row--blue .p-parts-altarTable__data {
  background: rgba(41, 167, 225, 0.3) !important;
}
.p-parts-altarTable__row--orange {
  border-left: 5px solid #F4A457;
}
.p-parts-altarTable__row--orange .p-parts-altarTable__colorTitle {
  background: #F4A457;
}
.p-parts-altarTable__row--orange .p-parts-altarTable__data {
  background: rgba(244, 164, 87, 0.3) !important;
}
.p-parts-altarTable__row--pink {
  border-left: 5px solid #EE86A7;
}
.p-parts-altarTable__row--pink .p-parts-altarTable__colorTitle {
  background: #EE86A7;
}
.p-parts-altarTable__row--pink .p-parts-altarTable__data {
  background: rgba(238, 134, 167, 0.3) !important;
}
.p-parts-altarTable__row--purple {
  border-left: 5px solid #D88DC9;
}
.p-parts-altarTable__row--purple .p-parts-altarTable__colorTitle {
  background: #D88DC9;
}
.p-parts-altarTable__row--purple .p-parts-altarTable__data {
  background: rgba(216, 141, 201, 0.3) !important;
}
.p-parts-altarTable__row--basic {
  border-left: 5px solid #CBCBCB;
}
.p-parts-altarTable__row--basic .p-parts-altarTable__colorTitle {
  background: #CBCBCB;
}
.p-parts-altarTable__row--basic .p-parts-altarTable__data {
  background: rgba(203, 203, 203, 0.3) !important;
}
.p-parts-altarTable__colorTitle {
  margin-bottom: 10px;
  padding: 5px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-weight: 500;
  font-style: normal;
  line-height: 1.466666;
  color: #fff;
  font-optical-sizing: auto;
}
.p-parts-altarTable__priceBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.p-parts-altarTable__priceLabel {
  padding: 3px 9px;
  border: 1px solid #7C6761;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.46666;
}
.p-parts-altarTable__priceNum {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
}
.p-parts-altarTable__priceTax {
  display: block;
  font-size: 1.3rem;
}
.p-parts-altarTable__note {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    parts
  =================================*/
  .p-parts {
    /* テーブルスクロール用ラッパー */
  }
  .p-parts-card2col {
    flex-direction: column;
    margin: 20px 0;
    gap: 20px;
  }
  .p-parts-card2col__item {
    width: 100%;
  }
  .p-parts-card2col__title {
    padding: 16px 3.8461538462%;
    font-size: 2.4rem;
  }
  .p-parts-card2col__text {
    margin-top: 20px;
  }
  .p-parts-cardList {
    flex-direction: column;
    margin: 20px 0;
    gap: 20px;
  }
  .p-parts-cardList__item {
    width: 100%;
  }
  .p-parts-cardList__title {
    padding: 20px 3.8461538462% 20px 70px;
    font-size: 2rem;
  }
  .p-parts-cardList__title::before {
    top: 7px;
    left: 7px;
    font-size: 2rem;
  }
  .p-parts-cardList__body {
    flex-direction: column;
    margin-top: 30px;
    padding: 0 3.8461538462%;
    gap: 20px;
  }
  .p-parts-cardList__text {
    max-width: initial;
  }
  .p-parts-cardList__img {
    width: revert-layer;
  }
  .p-parts-cardList__list {
    margin-left: 0;
  }
  .p-parts-cardList__listItem {
    padding-left: 22px;
  }
  .p-parts-cardList__listItem::before {
    width: 14px;
    height: 14px;
  }
  .p-parts-img2col {
    flex-direction: column;
    margin: 40px 0;
    gap: 20px;
  }
  .p-parts-descBox {
    margin: 40px 0;
    padding: 34px 5.1282051282%;
  }
  .p-parts-descBox__title {
    margin-bottom: 18px;
    padding-left: 20px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .p-parts-flowBox {
    margin: 30px 0;
    padding: 40px 3.8461538462%;
  }
  .p-parts-flowBox__body {
    width: initial;
  }
  .p-parts-flowBox__title {
    font-size: 2.6rem;
  }
  .p-parts-3points {
    flex-direction: column;
    gap: 20px;
  }
  .p-parts-3points__item {
    width: 100%;
    text-align: center;
  }
  .p-parts-job {
    margin: 20px 0 26px;
    gap: 20px 24px;
    justify-content: flex-start;
  }
  .p-parts-job__item {
    width: calc((100% - 24px) / 2);
  }
  .p-parts-job__itemTitle {
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
  .p-parts-job__itemText {
    font-size: 1.5rem;
    line-height: 1.54;
  }
  .p-parts-job__itemFigure {
    margin-bottom: 17px;
  }
  .p-parts-kyoka {
    margin: 27px 0 40px;
    gap: 24px 14px;
    justify-content: flex-start;
  }
  .p-parts-kyoka__item {
    width: calc((100% - 14px) / 2);
  }
  .p-parts-kyoka__figure {
    margin-bottom: 20px;
  }
  .p-parts-kyoka__price {
    font-size: 2.4rem;
    line-height: 1.20833333;
  }
  .p-parts-kyoka__priceTax {
    font-size: 1.4rem;
  }
  .p-parts-kyoka__priceNote {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .p-parts-upgradeBox {
    flex-direction: column;
    margin: 40px 0;
    gap: 20px;
  }
  .p-parts-upgradeBox__target {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.35;
  }
  .p-parts-upgradeBox__catch {
    font-size: 3.2rem;
    line-height: 1.1875;
  }
  .p-parts-upgradeBox__priceArea {
    padding: 27px 24px;
  }
  .p-parts-upgradeBox__priceLabel {
    margin-bottom: 18px;
    font-size: 2.1rem;
    line-height: 1.126826;
  }
  .p-parts-upgradeBox__priceNum {
    font-size: 3.5rem;
  }
  .p-parts-upgradeBox__priceTax {
    font-size: 2.1rem;
    line-height: 1.126826;
  }
  .p-parts-recommend {
    margin: 40px 0;
  }
  .p-parts-recommend__title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .p-parts-recommend__listItem {
    margin-left: 1em;
    padding-left: 20px;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .p-parts-recommend__listItem::before {
    top: 7px;
    width: 14px;
    height: 14px;
  }
  .p-parts-othersOption {
    margin: 27px 0 53px;
  }
  .p-parts-othersOption__item {
    flex-direction: column;
    margin: 40px 0;
    gap: 20px;
  }
  .p-parts-othersOption__figure {
    text-align: center;
  }
  .p-parts-othersOption__title {
    margin-bottom: 12px;
    font-size: 2.4rem;
    line-height: 1.125;
  }
  .p-parts-othersOption__price {
    margin-top: 12px;
    font-size: 2rem;
    line-height: 1.35;
  }
  .p-parts-othersOption__priceNum {
    font-size: 3.2rem;
  }
  .p-parts-othersOption__priceTax {
    font-size: 2rem;
    line-height: 1.35;
  }
  .p-parts-textLink {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
    font-size: 1.6rem;
    font-weight: 500;
    color: #EA616F;
  }
  .p-parts-scrollX {
    overflow-x: auto;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .p-parts-scrollX::-webkit-scrollbar {
    height: 8px;
  }
  .p-parts-scrollX::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #ccc;
  }
  .p-parts-spBreakTable {
    display: block;
    width: 100%;
    margin: 20px auto 45px;
    border-bottom: 1px solid #CBBA6F;
  }
  .p-parts-spBreakTable__body, .p-parts-spBreakTable__row, .p-parts-spBreakTable__title, .p-parts-spBreakTable__price, .p-parts-spBreakTable__text {
    display: block;
    width: 100%;
  }
  .p-parts-spBreakTable__title, .p-parts-spBreakTable__price, .p-parts-spBreakTable__text {
    width: 100%;
    padding: 20px 0;
    border-top: none;
    border-bottom: none;
    text-align: center;
  }
  .p-parts-spBreakTable__title {
    max-width: initial;
    padding: 22px 3.8461538462%;
    border-top: 1px solid #CBBA6F;
    font-size: 2.4rem;
    line-height: 1.2083333;
  }
  .p-parts-spBreakTable__price {
    padding: 20px 3.8461538462% 10px;
    font-size: 2rem;
    line-height: 1.214285;
  }
  .p-parts-spBreakTable__priceNum {
    font-size: 2.8rem;
  }
  .p-parts-spBreakTable__text {
    padding: 10px 3.8461538462% 20px;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .p-parts-detailedTable {
    min-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    white-space: nowrap;
  }
  .p-parts-detailedTable thead th {
    padding: 12px 10px;
  }
  .p-parts-detailedTable th, .p-parts-detailedTable td {
    padding: 12px 15px;
  }
  .p-parts-detailedTable th {
    font-size: 1.8rem;
  }
  .p-parts-detailedTable td {
    font-size: 1.8rem;
  }
  .p-parts-altarTable {
    width: 100%;
    min-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    white-space: nowrap;
  }
  .p-parts-altarTable__label {
    padding: 20px 10px;
  }
  .p-parts-altarTable__data {
    padding: 8px 10px;
  }
  .p-parts-altarTable__data--name {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .p-parts-altarTable__data--thumb {
    min-width: 200px;
    max-width: 240px;
  }
  .p-parts-altarTable__data--color {
    min-width: 240px;
  }
  .p-parts-altarTable__data--diff {
    min-width: 200px;
    max-width: initial;
    white-space: normal;
  }
  .p-parts-altarTable__img {
    width: 200px;
    height: auto;
  }
  .p-parts-altarTable__priceBox {
    gap: 12px;
  }
  .p-parts-altarTable__priceLabel {
    padding: 1px 4px;
    font-size: 1.3rem;
  }
}
/*=================================
  align
=================================*/
.u-text--left {
  text-align: left;
}

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

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

/*=================================
  invisible
=================================*/
.u-invisible--sp {
  display: none !important;
}

/*=================================
  float
=================================*/
.u-float--left {
  float: left;
}

.float--right {
  float: right;
}

/*=================================
  clearfix
=================================*/
.u-clearfix:after {
  display: block;
  clear: both;
  content: " ";
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
    invisible
  =================================*/
  .u-invisible--sp {
    display: inline-block !important;
  }
  .u-invisible--pc {
    display: none !important;
  }
}
/* =================================
  header
================================= */
.noScroll {
  overflow: hidden;
}

/*メインメニュー*/
.l-header {
  position: relative;
  z-index: 999;
  width: 100%;
  padding: 30px 120px 30px 110px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px); /* ぼかし */
  /*バーガーボタン設定*/
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header {
    padding: 30px clamp(30px, 4.1666666667vw, 60px) 30px clamp(20px, 3.4722222222vw, 50px);
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
.l-header__logo {
  line-height: 1;
}
.l-header__logo--link {
  display: block;
}
.l-header__logo--img {
  display: inline-block;
  width: 295px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__logo--img {
    width: clamp(120px, 20.4861111111vw, 295px);
  }
}
.l-header__logo--static {
  display: none;
}
.l-header__logo-fixed {
  display: block;
}
.l-header__contact {
  display: flex;
  justify-content: flex-end;
  gap: 0 15px;
}
.l-header__contactTel--num {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 3.4rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: #231815;
  text-decoration: none;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}
.l-header__contactTel--num::before {
  position: absolute;
  top: 20px;
  left: -30px;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #231815;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_phone.svg);
          mask-image: url(../img/icon/icon_phone.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.l-header__contactTel--ruby {
  display: block;
  width: 100%;
  margin-bottom: 0.2em;
  font-size: 1.25rem;
  color: #231815;
  text-align: right;
  letter-spacing: 0.14em;
}
.l-header__contactTel--text {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  color: #231815;
  text-align: center;
  letter-spacing: 0.14em;
}
.l-header__contactBtn {
  display: flex;
  gap: 0 15px;
}
.l-header__contactBtn--mail {
  display: block;
  padding: 20px 26px;
  background: rgb(219, 82, 96);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .l-header__contactBtn--mail:hover {
    background: rgba(219, 82, 96, 0.9);
  }
}
.l-header__contactBtn--line {
  display: block;
  padding: 20px 29px;
  background: rgb(6, 199, 85);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .l-header__contactBtn--line:hover {
    background: rgba(6, 199, 85, 0.9);
  }
}
.l-header__contactBtn--lineEm {
  display: block;
  margin-bottom: 0.3em;
  font-size: 1.5rem;
}
.l-header__burgerNav {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  margin: auto;
  background: #EEEEE7;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-out, visibility 0.2s ease-out;
  transform: scale(0.9);
}
.l-header__burgerNavInner {
  overflow-y: auto;
  height: 100vh;
}
.l-header__burgerNavHead {
  display: flex;
  padding: 25px clamp(100px, 11.4583333333vw, 165px) 50px;
  align-items: center;
  justify-content: space-between;
}
.l-header__burgerNavLogo {
  width: 294px;
}
.l-header__burgerNavContact {
  display: flex;
  gap: 0 15px;
}
.l-header__burgerNavContactTel--num {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 3.4rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: #95853E;
  text-decoration: none;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}
.l-header__burgerNavContactTel--num::before {
  position: absolute;
  top: 20px;
  left: -30px;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #95853E;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_phone.svg);
          mask-image: url(../img/icon/icon_phone.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.l-header__burgerNavContactTel--text {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1;
  color: #95853E;
  text-align: center;
  letter-spacing: 0.14em;
}
.l-header__burgerNavContactTel--ruby {
  display: block;
  width: 100%;
  margin-bottom: 0.2em;
  font-size: 1.25rem;
  color: #95853E;
  text-align: right;
  letter-spacing: 0.14em;
}
.l-header__burgerNavContactBtn {
  display: flex;
  gap: 0 15px;
}
.l-header__burgerNavContactBtn--mail {
  display: block;
  padding: 18px 25px;
  background: #DB5260;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .l-header__burgerNavContactBtn--mail:hover {
    background: rgba(219, 82, 96, 0.9);
  }
}
.l-header__burgerNavContactBtn--line {
  display: block;
  padding: 18px 23px;
  background: #06C755;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
}
@media screen and (min-width: 768px) {
  .l-header__burgerNavContactBtn--line:hover {
    background: rgba(6, 199, 85, 0.9);
  }
}
.l-header__burgerNavContactBtn--lineEm {
  display: block;
  margin-bottom: 0.3em;
  font-size: 1.5rem;
}
.l-header__burgerNavPlan {
  margin: 40px 0;
  padding: 0 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.l-header__burgerNavPlanList {
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
  justify-content: center;
  gap: 40px;
}
.l-header__burgerNavPlanListItem {
  padding: 20px 20px 33px;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header__burgerNavPlanListItem:hover {
    opacity: 0.8;
  }
}
.l-header__burgerNavPlanListItem--green .l-header__burgerNavPlanTitle {
  color: #7EC04C;
}
.l-header__burgerNavPlanListItem--pink .l-header__burgerNavPlanTitle {
  color: #EC6E89;
}
.l-header__burgerNavPlanListItem--blue .l-header__burgerNavPlanTitle {
  color: #00A6BA;
}
.l-header__burgerNavPlanFigure {
  display: block;
  margin-bottom: 33px;
}
.l-header__burgerNavPlanImg {
  width: 100%;
}
.l-header__burgerNavPlanCatch {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1875;
}
.l-header__burgerNavPlanTitle {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.1875;
  text-decoration: none;
}
.l-header__burgerNavPlanSpec {
  display: flex;
  margin-top: 15px;
  justify-content: center;
  gap: 7px;
}
.l-header__burgerNavPlanSpecTerm {
  width: 2em;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1666666;
  align-self: center;
}
.l-header__burgerNavPlanSpecPrice {
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.193548;
}
.l-header__burgerNavPlanSpecUnit {
  font-size: 1.5rem;
}
.l-header__burgerNavPlanSpecTax {
  font-size: 1.2rem;
}
.l-header__burgerNavListWrap {
  margin: 40px 0 80px;
  padding: 0 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
.l-header__burgerNavListInner {
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
  padding: 60px 48px;
  background: #fff;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px;
}
.l-header__burgerNavListItem a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.125;
  color: #231815;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-header__burgerNavListItem a:hover {
    text-decoration: underline;
  }
}
.l-header__burgerNavList--home {
  width: 100%;
}
.l-header__burgerNav.show {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.l-header__burgerNav.hide {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
}
.l-header__cover {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100vh;
  background: rgba(238, 238, 231, 0.82);
  content: "";
  opacity: 0;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-property: all;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.l-header__cover.show {
  width: 100%;
  opacity: 1;
}
.l-header__cover.hide {
  width: 0;
  opacity: 0;
}
.l-header__burger-button {
  position: absolute;
  z-index: 9999;
  top: 32px;
  right: 70px;
  width: 50px;
  height: 50px;
  background: url(../img/burger_open_black.svg) no-repeat center center;
  background-size: 30px auto;
  cursor: pointer;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  /*クリック後、バツボタンになる*/
  transition-property: background;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__burger-button {
    right: 0;
  }
}
.l-header__burger-button.is-open {
  position: fixed;
  top: 32px;
  right: clamp(20px, 6.9444444444vw, 100px);
  width: 50px;
  height: 50px;
  background: url(../img/burger_close.svg) no-repeat center center !important;
  background-size: contain;
}
.l-header__burger-button.is-fixedNav {
  position: fixed;
}

.l-header-pc {
  background: #CBBA6F;
}
.l-header-pc__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.l-header-pc__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 5.5555555556vw, 80px);
}
.l-header-pc__link {
  position: relative;
  display: block;
  padding: 28px 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.4375;
  color: #FAFAFA;
  text-decoration: none;
  font-optical-sizing: auto;
}
.l-header-pc__link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 0;
  height: 3px;
  background: #fff;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .l-header-pc__link:hover::after {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .home .l-header {
    position: absolute;
    animation: show 1s ease-in forwards;
  }
  .home .l-header:not(.js-fixed-nav) {
    background: transparent;
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px); /* ぼかし */
  }
  .home .l-header:not(.js-fixed-nav) .l-header__logo--static {
    display: block;
  }
  .home .l-header:not(.js-fixed-nav) .l-header__logo--fixed {
    display: none;
  }
  .l-header.js-fixed-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    animation: header-show 0.5s ease-in;
  }
}
@media screen and (min-width: 0) and (max-width: 768px) {
  /* =================================
    header
  ================================= */
  .home .l-header {
    position: absolute;
    animation: show 1s ease-in forwards;
  }
  .home .l-header:not(.js-fixed-nav) {
    background: transparent;
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px); /* ぼかし */
  }
  .home .l-header:not(.js-fixed-nav) .l-header__logo--static {
    display: block;
  }
  .home .l-header:not(.js-fixed-nav) .l-header__logo--fixed {
    display: none;
  }
  .home .l-header:not(.js-fixed-nav) .l-header__contactTel--num {
    color: #FAFAFA;
  }
  .home .l-header:not(.js-fixed-nav) .l-header__contactTel--num::before {
    background-color: #FAFAFA;
  }
  .home .l-header:not(.js-fixed-nav) .l-header__contactTel--text {
    color: #FAFAFA;
  }
  .home .l-header:not(.js-fixed-nav) .l-header__contactBtn--mail {
    background: rgba(219, 82, 96, 0.7);
  }
  .home .l-header:not(.js-fixed-nav) .l-header__contactBtn--line {
    background: rgba(6, 199, 85, 0.7);
  }
  .l-header {
    width: 100%;
    padding: 18px 75px 18px 3.8461538462%;
    /*バーガーボタン設定*/
  }
  .l-header.js-fixed-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    animation: header-show 0.5s ease-in;
  }
  .l-header__inner {
    flex-wrap: nowrap;
    gap: 2.5641025641%;
  }
  .l-header__logo--img {
    width: 230px;
  }
  .l-header__contact {
    gap: 0;
  }
  .l-header__contactTel--num {
    width: 60px;
    height: 100%;
    padding: 10px 2px 9px;
    background: #CBBA6F;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
  }
  .l-header__contactTel--num::before {
    position: static;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto 5px;
    background-color: #fff;
    text-align: center;
    -webkit-mask-image: url(../img/icon/icon_phone.svg);
            mask-image: url(../img/icon/icon_phone.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .l-header__contactTel--text, .l-header__contactTel--ruby {
    display: none;
  }
  .l-header__contactBtn {
    gap: 0;
  }
  .l-header__contactBtn--mail {
    width: 60px;
    padding: 10px 2px 9px;
    background: rgb(219, 82, 96);
    font-size: 1.2rem;
  }
  .l-header__contactBtn--line {
    width: 60px;
    padding: 10px 2px 9px;
    background: rgb(6, 199, 85);
    font-size: 1.2rem;
  }
  .l-header__contactBtn--line::before {
    display: inline-block;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto 5px;
    background-color: #fff;
    content: "";
    -webkit-mask-image: url(../img/icon/icon_line02.svg);
            mask-image: url(../img/icon/icon_line02.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .l-header__burgerNavHead {
    display: block;
    padding: 15px 3.8461538462%;
  }
  .l-header__burgerNavLogo {
    display: block;
    width: 230px;
  }
  .l-header__burgerNavContact {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
  }
  .l-header__burgerNavContactTel {
    width: 100%;
    padding: 16px 0;
    background: #CBBA6F;
    text-align: center;
  }
  .l-header__burgerNavContactTel--num {
    font-size: 3.8rem;
    color: #fff;
  }
  .l-header__burgerNavContactTel--num::before {
    width: 26px;
    height: 26px;
    margin-right: 7px;
    background-color: #fff;
  }
  .l-header__burgerNavContactTel--text {
    margin-top: 3px;
    font-size: 1.1rem;
    color: #fff;
  }
  .l-header__burgerNavContactBtn {
    width: 100%;
    gap: 10px;
  }
  .l-header__burgerNavContactBtn--mail {
    width: 100%;
    padding: 18px 3.8461538462%;
    font-size: 1.8rem;
  }
  .l-header__burgerNavContactBtn--line {
    width: 100%;
    padding: 18px 3.8461538462%;
    font-size: 1.8rem;
  }
  .l-header__burgerNavPlan {
    margin: 15px 0;
    padding: 0 3.8461538462%;
  }
  .l-header__burgerNavPlanList {
    flex-direction: column;
    gap: 15px;
  }
  .l-header__burgerNavPlanListItem {
    position: relative;
    display: flex;
    padding: 15px 3.8461538462%;
    text-align: left;
    flex-wrap: wrap;
  }
  .l-header__burgerNavPlanListItem--green::after {
    position: absolute;
    top: 50%;
    right: 3.8461538462%;
    display: inline-block;
    width: 9px;
    height: 15px;
    background-color: #7EC04C;
    content: "";
    transform: translateY(-50%);
    -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
            mask-image: url(../img/icon/icon_arrow_right.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .l-header__burgerNavPlanListItem--pink::after {
    position: absolute;
    top: 50%;
    right: 3.8461538462%;
    display: inline-block;
    width: 9px;
    height: 15px;
    background-color: #EC6E89;
    content: "";
    transform: translateY(-50%);
    -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
            mask-image: url(../img/icon/icon_arrow_right.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .l-header__burgerNavPlanListItem--blue::after {
    position: absolute;
    top: 50%;
    right: 3.8461538462%;
    display: inline-block;
    width: 9px;
    height: 15px;
    background-color: #00A6BA;
    content: "";
    transform: translateY(-50%);
    -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
            mask-image: url(../img/icon/icon_arrow_right.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .l-header__burgerNavPlanFigure {
    position: absolute;
    top: 15px;
    left: 3.8461538462%;
    width: 115px;
    margin: 0;
  }
  .l-header__burgerNavPlanImg {
    width: 100px;
  }
  .l-header__burgerNavPlanCatch {
    margin-bottom: 10px;
    padding-left: 115px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .l-header__burgerNavPlanTitle {
    padding-left: 115px;
    font-size: 2.4rem;
    line-height: 1.208333;
  }
  .l-header__burgerNavPlanSpec {
    margin-top: 14px;
    padding-left: 115px;
    gap: 4px;
  }
  .l-header__burgerNavPlanSpecTerm {
    font-size: 0.9rem;
    line-height: 1.229508;
  }
  .l-header__burgerNavPlanSpecPrice {
    font-size: 2.6rem;
    line-height: 1.21046;
  }
  .l-header__burgerNavPlanSpecUnit {
    font-size: 1.2rem;
  }
  .l-header__burgerNavPlanSpecTax {
    font-size: 0.9rem;
  }
  .l-header__burgerNavListWrap {
    margin: 15px 0 40px;
    padding: 0 3.8461538462%;
  }
  .l-header__burgerNavListInner {
    display: block;
    padding: 0;
    background: transparent;
  }
  .l-header__burgerNavListItem a {
    display: block;
    width: 100%;
    padding: 25px 3.8461538462%;
    background: url(../img/icon/icon_arrow_right.svg) no-repeat center right 3.8461538462% #fff;
    line-height: 1.2;
  }
  .l-header__burgerNavList--home {
    width: 100%;
  }
  .l-header__burgerNavList--main {
    margin-top: 15px;
  }
  .l-header__burgerNavList--main .l-header__burgerNavListItem a {
    padding: 15px 3.8461538462%;
    background: transparent;
  }
  .l-header__burgerNavList:not(.l-header__burgerNavList--main):not(.l-header__burgerNavList--home) .l-header__burgerNavListItem a {
    border-top: 1px solid #EEEEE7;
  }
  .l-header__burgerNav.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .l-header__burgerNav.hide {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
  }
  .l-header__cover {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100vh;
    background: rgba(238, 238, 231, 0.82);
    content: "";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.3s;
    transition-property: all;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .l-header__cover.show {
    width: 100%;
    opacity: 1;
  }
  .l-header__cover.hide {
    width: 0;
    opacity: 0;
  }
  .l-header__burger-button {
    z-index: 9999;
    top: 18px;
    right: 5px;
    width: 60px;
    height: 60px;
    background: url(../img/burger_open_white.svg) no-repeat center center #CBBA6F;
    background-size: 30px auto;
    cursor: pointer;
    /*クリック後、バツボタンになる*/
  }
  .l-header__burger-button.is-open {
    top: 8px;
    right: 5px;
    width: 60px;
    height: 60px;
  }
  .l-header-pc {
    display: none;
  }
}
/*=================================
footer
=================================*/
.l-footer {
  padding-bottom: 9.1666666667vw;
  background: url(../img/bg_footer_pc.jpg) no-repeat center top;
  background-size: cover;
}
.l-footer__body {
  padding: 70px 2.5% 46px;
  background: rgba(250, 250, 250, 0.9);
}
.l-footer__bodyInner {
  display: flex;
  max-width: 1210px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
}
.l-footer__info--logo img {
  width: 310px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__info--logo img {
    width: clamp(282px, 21.5277777778vw, 310px);
  }
}
.l-footer__info--address {
  margin-top: 10px;
  margin-left: 60px;
}
.l-footer__info--tel {
  font-size: 1.6rem;
  font-weight: 400;
  color: #231815;
  text-decoration: none;
}
.l-footer__info--sns {
  display: flex;
  margin-top: 15px;
  margin-left: 60px;
  align-items: center;
  gap: 10px;
}
.l-footer__info--snsLink img {
  width: 28px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__nav {
  display: flex;
  margin-left: 60px;
  flex-wrap: wrap;
  gap: 0 65px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__nav {
    gap: 0 clamp(25px, 4.5138888889vw, 65px);
  }
}
.l-footer__menu--head {
  margin-bottom: 13px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.944444;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__menu--head {
    font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  }
}
.l-footer__menu--item a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.666666;
  color: #231815;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-footer__menu--item a:hover {
    text-decoration: underline;
  }
}
.l-footer__other {
  width: 100%;
  margin-top: 57px;
}
.l-footer__other--copy {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.428571;
  text-align: center;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /*=================================
  footer
  =================================*/
  .l-footer {
    padding-bottom: 40px;
    background: url(../img/bg_footer_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .l-footer__body {
    padding: 60px 7.6923076923% 35px;
  }
  .l-footer__bodyInner {
    gap: 20px 0;
  }
  .l-footer__info--logo img {
    width: 285px;
  }
  .l-footer__info--address {
    margin: 20px 0 0;
    font-size: 1.8rem;
  }
  .l-footer__info--tel {
    font-size: 1.8rem;
  }
  .l-footer__info--sns {
    margin: 20px 0 0;
    gap: 16px;
  }
  .l-footer__info--snsLink img {
    width: 45px;
  }
  .l-footer__nav {
    margin-left: 0;
    gap: 0;
  }
  .l-footer__menu--head {
    font-size: 1.6rem;
  }
  .l-footer__menu--item a {
    font-size: 1.6rem;
    line-height: 3.125;
  }
  .l-footer__other {
    margin-top: 33px;
  }
  .l-footer__other--copy {
    font-size: 1.6rem;
    line-height: 2.125;
  }
}
.l-main .c-cta:last-child {
  margin: 70px 0 100px;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  .l-main .c-cta:last-child {
    margin: 50px 0;
  }
}
/* =================================
  l-article
================================= */
.l-article > h1, .l-article > h2, .l-article > h3, .l-article > h4, .l-article > h5, .l-article > h6 {
  clear: both;
}
.l-article > p {
  font-size: 1.8rem;
  line-height: 1.5;
}
.l-article > p + p {
  margin-top: 40px;
}
.l-article > h1, .l-article h1.wp-block-heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
.l-article > h2, .l-article h2.wp-block-heading {
  margin: 60px 0 40px;
  padding: 21px 28px;
  border-left: 5px solid #CBBA6F;
  background: #FAFAFA;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1875;
}
.l-article > h3, .l-article h3.wp-block-heading {
  margin: 98px 0 54px;
  padding: 20px 27px;
  border: 1px solid #CBBA6F;
  background: #FBFBFB;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.214285;
}
.l-article > h4, .l-article h4.wp-block-heading {
  margin: 60px 0 30px;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.5;
}
.l-article > img, .l-article .wp-block-image {
  display: block;
  margin: 40px auto;
  text-align: center;
}
.l-article > picture:not([class]) {
  display: block;
  text-align: center;
}
.l-article > ul:not([class]) {
  margin: 40px 0;
}
.l-article > ul:not([class]) li {
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
  line-height: 1.8;
}
.l-article > ul:not([class]) li::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #CBBA6F;
  content: "";
  filter: blur(1.5px);
}
.l-article > ol:not([class]) {
  margin: 40px 0;
}
.l-article > ol:not([class]) li {
  margin-left: 1.25em;
  list-style: decimal;
  font-size: 1.8rem;
  line-height: 1.8;
}
.l-article > table:not([class]), .l-article .wp-block-table table {
  position: relative;
  width: 100%;
  margin: 60px auto;
  background: #fff;
  border-spacing: 0;
  border-collapse: collapse;
}
.l-article > table:not([class]) th, .l-article > table:not([class]) td, .l-article .wp-block-table table th, .l-article .wp-block-table table td {
  padding: 32px 0;
  border-top: 1px solid #CBBA6F;
  border-bottom: 1px solid #CBBA6F;
  text-align: left;
  vertical-align: top;
  vertical-align: middle;
}
.l-article > table:not([class]) th, .l-article .wp-block-table table th {
  max-width: 227px;
  padding: 33px 53px;
  background: #FAFAFA;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.44444;
  text-align: center;
}
.l-article > table:not([class]) td, .l-article .wp-block-table table td {
  padding: 33px 53px;
  font-size: 1.8rem;
  line-height: 1.44444;
}
.l-article > table:not([class]) .num, .l-article .wp-block-table table .num {
  font-size: 155%;
}
.l-article > iframe {
  max-width: 100%;
}
@media screen and (min-width: 0) and (max-width: 768px) {
  .l-article > p {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .l-article > p + p {
    margin-top: 30px;
  }
  .l-article > h1, .l-article h1.wp-block-heading {
    font-size: 2rem;
  }
  .l-article > h2, .l-article h2.wp-block-heading {
    margin: 40px 0 20px;
    padding: 18px 18px;
    font-size: 2.4rem;
    line-height: 1.2083333;
  }
  .l-article > h3, .l-article h3.wp-block-heading {
    margin: 45px 0 25px;
    padding: 22px 3.8461538462%;
    font-size: 2.2rem;
    line-height: 1.181818;
  }
  .l-article > h4, .l-article h4.wp-block-heading {
    margin: 20px 0 30px;
    font-size: 2rem;
    line-height: 1.35;
  }
  .l-article > img, .l-article .wp-block-image {
    margin: 30px auto;
  }
  .l-article > ul:not([class]) {
    margin: 30px 0;
  }
  .l-article > ul:not([class]) li {
    margin-left: 2rem;
    font-size: 1.5rem;
  }
  .l-article > ol:not([class]) {
    margin: 30px 0;
  }
  .l-article > ol:not([class]) li {
    margin-left: 1.5rem;
    font-size: 1.5rem;
  }
  .l-article > table:not([class]), .l-article .wp-block-table table {
    margin: 30px auto;
  }
  .l-article > table:not([class]) th, .l-article > table:not([class]) td, .l-article .wp-block-table table th, .l-article .wp-block-table table td {
    padding: 19px 0;
  }
  .l-article > table:not([class]) th, .l-article .wp-block-table table th {
    width: 96px;
    padding-right: 5px;
    font-size: 1.3rem;
    line-height: 1.46153;
  }
  .l-article > table:not([class]) td, .l-article .wp-block-table table td {
    width: calc(100% - 96px);
    padding-left: 5px;
    font-size: 1.5rem;
    line-height: 1.46153;
  }
}
.l-article > h1:first-child, .l-article > h2:first-child, .l-article > h3:first-child, .l-article > h4:first-child, .l-article > h5:first-child, .l-article > h6:first-child {
  margin-top: 40px;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /* =================================
    l-article
  ================================= */
  .l-article > h1, .l-article > h2, .l-article > h3, .l-article > h4, .l-article > h5, .l-article > h6 {
    clear: both;
  }
  .l-article > p {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .l-article > p + p {
    margin-top: 40px;
  }
  .l-article > h1, .l-article h1.wp-block-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .l-article > h2, .l-article h2.wp-block-heading {
    margin: 60px 0 40px;
    padding: 21px 28px;
    border-left: 5px solid #CBBA6F;
    background: #FAFAFA;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1875;
  }
  .l-article > h3, .l-article h3.wp-block-heading {
    margin: 98px 0 54px;
    padding: 20px 27px;
    border: 1px solid #CBBA6F;
    background: #FBFBFB;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.214285;
  }
  .l-article > h4, .l-article h4.wp-block-heading {
    margin: 60px 0 30px;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .l-article > img, .l-article .wp-block-image {
    display: block;
    margin: 40px auto;
    text-align: center;
  }
  .l-article > picture:not([class]) {
    display: block;
    text-align: center;
  }
  .l-article > ul:not([class]) {
    margin: 40px 0;
  }
  .l-article > ul:not([class]) li {
    position: relative;
    padding-left: 20px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .l-article > ul:not([class]) li::before {
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background: #CBBA6F;
    content: "";
    filter: blur(1.5px);
  }
  .l-article > ol:not([class]) {
    margin: 40px 0;
  }
  .l-article > ol:not([class]) li {
    margin-left: 1.25em;
    list-style: decimal;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .l-article > table:not([class]), .l-article .wp-block-table table {
    position: relative;
    width: 100%;
    margin: 60px auto;
    background: #fff;
    border-spacing: 0;
    border-collapse: collapse;
  }
  .l-article > table:not([class]) th, .l-article > table:not([class]) td, .l-article .wp-block-table table th, .l-article .wp-block-table table td {
    padding: 32px 0;
    border-top: 1px solid #CBBA6F;
    border-bottom: 1px solid #CBBA6F;
    text-align: left;
    vertical-align: top;
    vertical-align: middle;
  }
  .l-article > table:not([class]) th, .l-article .wp-block-table table th {
    max-width: 227px;
    padding: 33px 53px;
    background: #FAFAFA;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.44444;
    text-align: center;
  }
  .l-article > table:not([class]) td, .l-article .wp-block-table table td {
    padding: 33px 53px;
    font-size: 1.8rem;
    line-height: 1.44444;
  }
  .l-article > table:not([class]) .num, .l-article .wp-block-table table .num {
    font-size: 155%;
  }
  .l-article > iframe {
    max-width: 100%;
  }
}
@media screen and (min-width: 0) and (max-width: 768px) and (min-width: 0) and (max-width: 768px) {
  .l-article > p {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .l-article > p + p {
    margin-top: 30px;
  }
  .l-article > h1, .l-article h1.wp-block-heading {
    font-size: 2rem;
  }
  .l-article > h2, .l-article h2.wp-block-heading {
    margin: 40px 0 20px;
    padding: 18px 18px;
    font-size: 2.4rem;
    line-height: 1.2083333;
  }
  .l-article > h3, .l-article h3.wp-block-heading {
    margin: 45px 0 25px;
    padding: 22px 3.8461538462%;
    font-size: 2.2rem;
    line-height: 1.181818;
  }
  .l-article > h4, .l-article h4.wp-block-heading {
    margin: 20px 0 30px;
    font-size: 2rem;
    line-height: 1.35;
  }
  .l-article > img, .l-article .wp-block-image {
    margin: 30px auto;
  }
  .l-article > ul:not([class]) {
    margin: 30px 0;
  }
  .l-article > ul:not([class]) li {
    margin-left: 2rem;
    font-size: 1.5rem;
  }
  .l-article > ol:not([class]) {
    margin: 30px 0;
  }
  .l-article > ol:not([class]) li {
    margin-left: 1.5rem;
    font-size: 1.5rem;
  }
  .l-article > table:not([class]), .l-article .wp-block-table table {
    margin: 30px auto;
  }
  .l-article > table:not([class]) th, .l-article > table:not([class]) td, .l-article .wp-block-table table th, .l-article .wp-block-table table td {
    padding: 19px 0;
  }
  .l-article > table:not([class]) th, .l-article .wp-block-table table th {
    width: 96px;
    padding-right: 5px;
    font-size: 1.3rem;
    line-height: 1.46153;
  }
  .l-article > table:not([class]) td, .l-article .wp-block-table table td {
    width: calc(100% - 96px);
    padding-left: 5px;
    font-size: 1.5rem;
    line-height: 1.46153;
  }
}
@media screen and (min-width: 0) and (max-width: 768px) {
  .l-article > h1:first-child, .l-article > h2:first-child, .l-article > h3:first-child, .l-article > h4:first-child, .l-article > h5:first-child, .l-article > h6:first-child {
    margin-top: 20px;
  }
}
/* =================================
  l-body
================================= */
.l-body {
  margin-bottom: 115px;
  padding: 0 2.5%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  color: #231815;
  font-optical-sizing: auto;
}
.l-body__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.l-body__inner--form {
  max-width: 1110px;
  margin: 0 auto;
}
.l-body--form {
  margin-bottom: 115px;
  padding: 0 2.5%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  color: #231815;
  font-optical-sizing: auto;
}

@media screen and (min-width: 0) and (max-width: 768px) {
  /* =================================
    l-body
  ================================= */
  .l-body {
    margin-bottom: 50px;
    padding: 0 3.8461538462%;
  }
  .l-body--form {
    margin-bottom: 50px;
    padding: 0 3.8461538462%;
  }
}
/*# sourceMappingURL=maps/style.css.map */