@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  color: #000;
  font-family: 'kozuka-gothic-pr6n', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #f8f8f8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #f8f8f8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #f8f8f8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'kozuka-gothic-pr6n', sans-serif;
  font-size: clamp(12px, 4.304px + 2.051vw, 16px);
  font-size: clamp(.75rem, .269rem + 2.051vw, 1rem);
  letter-spacing: .12em;
  line-height: 1.6666666667;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a:not([class]):hover {
  opacity: .7;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

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

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

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

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #947f28;
  border-bottom: .25em solid #947f28;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../assets/img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../assets/img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #947f28;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../assets/img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../assets/img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #947f28;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #000;
}

#toc_container .toc_list li::before {
  display: none;
  color: #947f28;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #000;
}

.l-header {
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-inner.l-inner--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-section {
  padding-block: clamp(50px, 19.232px + 8.205vw, 70px);
  padding-block: clamp(3.125rem, 1.202rem + 8.205vw, 4.375rem);
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-inline: 1em;
  display: inline-grid;
  place-items: center;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  margin: 0;
  border: 1px solid transparent;
  border-radius: clamp(1.25rem, .769rem + 2.051vw, 1.5rem);
  background-color: #947f28;
  background-image: none;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  height: clamp(40px, 30.384px + 2.564vw, 45.008px);
  height: clamp(2.5rem, 1.899rem + 2.564vw, 2.813rem);
  color: #fff100;
  font: inherit;
  font-size: clamp(16px, 12.16px + 1.026vw, 18px);
  font-size: clamp(1rem, .76rem + 1.026vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  opacity: 1;
  outline: none;
  border-color: currentColor;
  background-color: #fff100;
  color: #947f28;
}

.c-btn:hover a {
  opacity: 1;
}

.c-btn--go-back {
  border-color: #947f28;
  background-color: #fff;
  color: #947f28;
}

.c-btn--go-back:hover, .c-btn--go-back:focus-visible {
  border-color: #947f28;
  background-color: #947f28;
  color: #fff;
}

.c-btn--white {
  background-color: #fff;
  color: #947f28;
}

.c-btn--pink {
  background-color: #eb6d8e;
}

.c-btn--pink:hover, .c-btn--pink:focus-visible {
  border-color: #e40075;
  background-color: #fff;
  color: #e40075;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #947f28;
  background-color: #947f28;
  color: #fff100;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(107.8510638298, 92.5478723404, 29.1489361702);
  background-color: #947f28;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #947f28;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #947f28;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #947f28;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-list__list {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-family: serif;
  font-weight: 500;
}

.c-list__list + .c-list__list {
  margin-top: 10px;
  margin-top: .625rem;
}

.c-list__list-number {
  color: #947f28;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1;
}

.c-list__list-text {
  font-size: clamp(15.008px, 9.232px + 1.538vw, 18px);
  font-size: clamp(.938rem, .577rem + 1.538vw, 1.125rem);
  letter-spacing: .01em;
  line-height: 1.6666666667;
}

.c-section-title {
  font-weight: 500;
  text-align: center;
}

.c-section-title-ja {
  color: #231815;
  font-family: serif;
  font-size: clamp(20px, 8.464px + 3.077vw, 26px);
  font-size: clamp(1.25rem, .529rem + 3.077vw, 1.625rem);
  letter-spacing: .18em;
}

.c-section-title-en {
  margin-inline: auto;
  display: inline-block;
  display: grid;
  place-items: center;
  margin-top: 5px;
  margin-top: .3125rem;
  background-color: #947f28;
  width: clamp(180px, 64.608px + 30.769vw, 240px);
  width: clamp(11.25rem, 4.038rem + 30.769vw, 15rem);
  height: clamp(20px, 12.304px + 2.051vw, 24px);
  height: clamp(1.25rem, .769rem + 2.051vw, 1.5rem);
  color: #fff;
  font-size: clamp(13.008px, 9.152px + 1.026vw, 15.008px);
  font-size: clamp(.813rem, .572rem + 1.026vw, .938rem);
  line-height: 1;
}

.c-table {
  border: 1px solid #000;
  background-color: #fff;
  width: 100%;
  font-weight: 500;
}

.c-table th,
.c-table td {
  border-bottom: 1px solid #000;
  text-align: left;
}

.c-table__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-table__term {
  border-bottom: 1px solid #000;
  padding: 7px 10px;
  padding: .4375rem .625rem;
  padding-right: 16px;
  padding-right: 1rem;
  color: #5dc2d0;
  font-weight: bold;
}

.c-table__term--pink {
  color: #eb6d8e;
}

.c-table__desc {
  border-bottom: 1px solid #000;
  padding: 7px 10px;
  padding: .4375rem .625rem;
}

.c-table__row:last-child .c-table__desc {
  border-bottom: none;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 50px;
  bottom: 3.125rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: 50%;
  background-color: #947f28;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

/************************************************************************
* p-access
************************************************************************/
.p-access {
  background-color: #cabb89;
  padding-bottom: 65px;
  padding-bottom: 4.0625rem;
}

.p-access__address {
  margin-top: clamp(10px, 0.768px + 2.564vw, 15.008px);
  margin-top: clamp(.625rem, .048rem + 2.564vw, .938rem);
  font-family: 'heisei-mincho-std', serif;
  line-height: 1.0833333333;
  text-align: center;
}

.p-access__imgs {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-access__map iframe {
  aspect-ratio: 325/220;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-access__box {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-access__box:last-of-type {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-access__head {
  display: grid;
  place-items: center;
  background-color: #947f28;
  height: clamp(25.008px, 10.304px + 3.846vw, 35.008px);
  height: clamp(1.563rem, .644rem + 3.846vw, 2.188rem);
  color: #fff;
  font-family: 'heisei-mincho-std', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-access__text {
  margin-top: 5px;
  margin-top: .3125rem;
  text-align: center;
}

/************************************************************************
* p-charm
************************************************************************/
.p-charm {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-charm__inner {
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1200px;
  max-width: 75rem;
}

.p-charm__header {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  text-align: center;
}

.p-charm__lists {
  gap: 15px;
  gap: .9375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-charm__list {
  display: grid;
  place-items: center;
  outline: 2px solid #947f28;
  border: 1px solid #fff;
  background-color: #947f28;
  height: clamp(50px, 30.768px + 5.128vw, 60px);
  height: clamp(3.125rem, 1.923rem + 5.128vw, 3.75rem);
  color: #fff;
  text-align: center;
}

.p-charm__list-text {
  color: #fff;
  font-family: serif;
  font-size: clamp(13.008px, 7.232px + 1.538vw, 16px);
  font-size: clamp(.813rem, .452rem + 1.538vw, 1rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.2307692308;
}

/************************************************************************
* p-choosing
************************************************************************/
.p-choosing {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-choosing__img {
  margin-top: clamp(20px, 0.768px + 5.128vw, 30px);
  margin-top: clamp(1.25rem, .048rem + 5.128vw, 1.875rem);
}

.p-choosing__img:not(:first-of-type) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-choosing__img img {
  aspect-ratio: 335/240;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-choosing__head {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: serif;
  font-size: clamp(18px, 10.304px + 2.051vw, 22px);
  font-size: clamp(1.125rem, .644rem + 2.051vw, 1.375rem);
  font-weight: 500;
  letter-spacing: .2em;
  text-align: center;
}

.p-choosing__text {
  margin-top: 5px;
  margin-top: .3125rem;
  text-align: center;
}

.p-choosing__note {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: clamp(10px, 6.16px + 1.026vw, 12px);
  font-size: clamp(.625rem, .385rem + 1.026vw, .75rem);
  text-align: center;
}

/************************************************************************
* p-contact-form
************************************************************************/
.p-contact-form {
  margin-top: clamp(25.008px, 10.304px + 4.103vw, 35.008px);
  margin-top: clamp(1.563rem, .644rem + 4.103vw, 2.188rem);
}

.p-contact-form__item:nth-child(n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-contact-form__label span {
  margin-left: 5px;
  margin-left: .3125rem;
  color: #e60012;
}

.p-contact-form__input {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-contact-form__input.p-contact-form__input--check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.p-contact-form__input input[type=text],
.p-contact-form__input input[type=email],
.p-contact-form__input input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #bfbfbf;
  border-radius: 0;
  background: #fff;
  padding: 5px 10px;
  padding: .3125rem .625rem;
  width: 100%;
  min-height: 32px;
  min-height: 2rem;
  color: inherit;
  font-family: inherit;
}

.p-contact-form__input textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #bfbfbf;
  border-radius: 0;
  background: #fff;
  padding: 0 6px;
  padding: 0 .375rem;
  padding: 5px 10px;
  padding: .3125rem .625rem;
  width: 100%;
  min-height: 80px;
  min-height: 5rem;
  resize: none;
  color: inherit;
  font-family: inherit;
}

.p-contact-form__input input[type=checkbox] {
  -webkit-box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  margin-top: 5px;
  margin-top: .3125rem;
  box-shadow: none;
  border: 1px solid #bfbfbf;
  border-radius: 0;
  background: #fff;
  padding: 0 6px;
  padding: 0 .375rem;
  width: 15px;
  width: .9375rem;
  height: 15px;
  height: .9375rem;
  color: inherit;
  font-family: inherit;
}

/* ラジオボタンのデフォルトのスタイルを隠す */
.custom-radio {
  display: none;
}

/* カスタムラジオボタンのスタイル */
.custom-radio + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 5px;
  margin-right: .3125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  line-height: 20px;
  line-height: 1.25rem;
}

.custom-radio + label::before {
  position: absolute;
  top: 2px;
  top: .125rem;
  left: 0;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  background-color: #fff;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  content: '';
}

.custom-radio + label::after {
  -webkit-transition: .2s;
  transition: .2s;
  content: '';
}

/* チェックされたときのスタイル */
.custom-radio:checked + label::after {
  position: absolute;
  top: 6px;
  top: .375rem;
  left: 4px;
  left: .25rem;
  border-radius: 50%;
  background: #333;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

/* 標準のチェックボックスを隠す */
.custom-checkbox {
  display: none;
}

/* カスタムチェックボックスのスタイル */
.custom-checkbox + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 23px;
  padding-left: 1.4375rem;
  line-height: 20px;
  line-height: 1.25rem;
}

.custom-checkbox + label::before {
  position: absolute;
  top: 1px;
  top: .0625rem;
  left: 0;
  -webkit-transition: background-color .2s, border-color .2s;
  transition: background-color .2s, border-color .2s;
  border: 1px solid #bfbfbf;
  border-radius: 0;
  background-color: #fff;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  content: '';
}

/* チェックされたときのスタイル */
.custom-checkbox:checked + label::before {
  border-color: #3c414c;

  /* 枠も同色に */
}

.custom-checkbox:checked + label::after {
  position: absolute;
  top: 0;
  left: 3px;
  left: .1875rem;

  /* チェックマーク */
  color: #3c414c;
  font-size: 12px;
  font-size: .75rem;
  content: '✔';
}

.p-contact-form__submit {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
}

.p-contact-form__submit input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #bfbfbf;
  border-radius: 0;
  background-color: #fff;
  padding: 3px 10px;
  color: #000;
  font-family: inherit;
  font-size: clamp(12px, 8.16px + 1.026vw, 14px);
  font-size: clamp(.75rem, .51rem + 1.026vw, .875rem);
  font-weight: 500;
}

/* 初期状態（チェックなし）：ボタン無効風スタイル */
.p-contact-form__submit input[type=submit] {
  opacity: .5;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: not-allowed;
  padding: 8px 16px;
  padding: .5rem 1rem;
  pointer-events: none;
}

/* チェックありのとき：ボタン有効風スタイル */
.p-contact__form:has(#confirm:checked) .p-contact-form__submit input[type=submit] {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.p-contact__go-back .c-button {
  margin-inline: auto;
  display: inline-block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  background-color: #000;
  width: 300px;
  width: 18.75rem;
  height: 50px;
  height: 3.125rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: .2em;
}

/************************************************************************
* p-contact-thanks
************************************************************************/
.p-contact-thanks .p-main {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.p-contact-thanks__title {
  margin-inline: auto;
  font-family: serif;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-contact-thanks__inner {
  gap: 80px;
  gap: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.p-contact-thanks__go-back {
  font-family: serif;
  font-weight: 500;
}

/************************************************************************
* p-contact
************************************************************************/
.p-contact {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-contact__text {
  margin-top: clamp(10px, 0.768px + 2.564vw, 15.008px);
  margin-top: clamp(.625rem, .048rem + 2.564vw, .938rem);
  text-align: center;
}

.p-contact__privacy {
  margin-top: 70px;
  margin-top: 4.375rem;
  color: #808080;
  font-weight: 400;
}

.p-contact__privacy-lists {
  margin-left: 12px;
  margin-left: .75rem;
  line-height: 1.3333333333;
  list-style-type: disc;
}

/************************************************************************
* p-doctor
************************************************************************/
.p-doctor {
  padding-block: 50px 100px;
  padding-block: 3.125rem 6.25rem;
  position: relative;
}

.p-doctor::before {
  position: absolute;
  top: -50px;
  top: -3.125rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-clip-path: polygon(0 105px, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 105px, 100% 0, 100% 100%, 0% 100%);
  background-color: #e5ddc4;
  content: '';
}

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

.p-doctor__body:nth-of-type(n + 1) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-doctor__body:nth-of-type(n + 2) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-doctor__body:nth-of-type(n + 3) {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-doctor__img {
  aspect-ratio: 335/400;
  position: relative;
}

.p-doctor__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-doctor__overlay {
  height: 0;
}

.p-doctor__position {
  display: grid;
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 0;
  place-items: center;
  background-color: #b09c53;
  width: clamp(100px, 23.072px + 20.513vw, 140px);
  width: clamp(6.25rem, 1.442rem + 20.513vw, 8.75rem);
  height: clamp(20px, 4.608px + 4.103vw, 28px);
  height: clamp(1.25rem, .288rem + 4.103vw, 1.75rem);
  color: #fff;
  font-size: clamp(13.008px, 3.392px + 2.564vw, 18px);
  font-size: clamp(.813rem, .212rem + 2.564vw, 1.125rem);
  font-weight: 500;
}

.p-doctor__name-en {
  position: absolute;
  top: 25px;
  top: 1.5625rem;
  right: clamp(16px, 0.608px + 4.103vw, 24px);
  right: clamp(1rem, .038rem + 4.103vw, 1.5rem);
  width: clamp(15.008px, 5.392px + 2.564vw, 20px);
  width: clamp(.938rem, .337rem + 2.564vw, 1.25rem);
}

.p-doctor__name-ja {
  position: absolute;
  position: relative;
  bottom: clamp(55.008px, 6.928px + 12.821vw, 80px);
  bottom: clamp(3.438rem, .433rem + 12.821vw, 5rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(13.008px, 3.392px + 2.564vw, 18px);
  font-size: clamp(.813rem, .212rem + 2.564vw, 1.125rem);
  font-weight: 500;
  text-align: center;
}

.p-doctor__name-ja::before {
  position: absolute;
  top: -10px;
  top: -.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  width: 64vw;
  height: 1px;
  content: '';
}

.p-doctor__content {
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: .025em;
}

.p-doctor__certificates {
  gap: clamp(15.008px, 5.392px + 2.564vw, 20px);
  gap: clamp(.938rem, .337rem + 2.564vw, 1.25rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: clamp(15.008px, -13.84px + 7.692vw, 30px);
  margin-top: clamp(.938rem, -.865rem + 7.692vw, 1.875rem);
}

.p-doctor__certificate {
  width: clamp(100px, -7.696px + 28.718vw, 156px);
  width: clamp(6.25rem, -.481rem + 28.718vw, 9.75rem);
}

.p-doctor__certificate--horizontal {
  width: clamp(147.008px, 6.608px + 37.436vw, 220px);
  width: clamp(9.188rem, .413rem + 37.436vw, 13.75rem);
}

.p-doctor__certificates-horizontals {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  background-color: #947f28;
  padding-top: 4px;
  width: clamp(60px, 43.072px + 4.103vw, 70px);
  width: clamp(3.75rem, 2.692rem + 4.103vw, 4.375rem);
  height: clamp(60px, 43.072px + 4.103vw, 70px);
  height: clamp(3.75rem, 2.692rem + 4.103vw, 4.375rem);
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: block;
  margin-top: 7px;
  min-width: 5em;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 35px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 7px;
  background: #fff;
  width: 100%;
  height: 3px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #fff;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  width: 100%;
  max-width: 400px;
  max-height: 100dvh;
  overflow: auto;
  color: #000;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-inline: 40px;
  padding-inline: 2.5rem;
  width: 100%;
}

.p-drawer__logo img {
  aspect-ratio: 230/148;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-drawer__nav {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-drawer__nav-item + .p-drawer__nav-item {
  margin-top: 25.6px;
  margin-top: 1.6rem;
}

.p-drawer__logo-title {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #231815;
  font-family: 'heisei-mincho-std', serif;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
}

.p-drawer__logo-title span {
  display: block;
  margin-top: 3px;
  margin-top: .1875rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .25em;
}

.p-drawer__logo-title-sub {
  margin-top: 1px;
  margin-top: .0625rem;
  color: #947f28;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.p-fixed-buttons {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
  width: 100%;
  max-width: 570px;
  max-width: 35.625rem;
  height: clamp(40px, 20.768px + 5.128vw, 50px);
  height: clamp(2.5rem, 1.298rem + 5.128vw, 3.125rem);
}

.p-fixed-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: color .3s;
  transition: color .3s;
  cursor: pointer;
  width: 50%;
  height: inherit;
  color: #231815;
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(14px, 8.16px + 1.538vw, 16px);
  font-size: clamp(.875rem, .51rem + 1.538vw, 1rem);
  font-weight: 500;
  line-height: 1.0714285714;
}

.p-fixed-buttons__phone {
  background-color: #b09c53;
  padding-top: 3px;
  padding-top: .1875rem;
  text-decoration: none;
}

.p-fixed-buttons__phone-number {
  gap: 2px;
  gap: .125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-fixed-buttons__phone-number::before {
  display: inline-block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-top: -2px;
  margin-top: -.125rem;
  background: url(../img/common/icon_phone.svg) no-repeat center center/contain;
  width: 13px;
  width: .8125rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-fixed-buttons__consultation {
  background-color: #947f28;
}

/************************************************************************
* p-flow
************************************************************************/
.p-flow {
  padding-block: 50px;
  padding-block: 3.125rem;
  background-color: #cabb89;
}

.p-flow__steps {
  margin-top: clamp(20px, 0.768px + 5.128vw, 30px);
  margin-top: clamp(1.25rem, .048rem + 5.128vw, 1.875rem);
}

.p-flow__step-title {
  position: relative;
  margin-top: clamp(5.008px, -4.608px + 2.564vw, 10px);
  margin-top: clamp(.313rem, -.288rem + 2.564vw, .625rem);
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(18px, 10.304px + 2.051vw, 22px);
  font-size: clamp(1.125rem, .644rem + 2.051vw, 1.375rem);
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.6;
  text-align: center;
}

.p-flow__step-title::after {
  display: block;
  margin-top: -5px;
  margin-top: -.3125rem;
  color: #947f28;
  font-size: clamp(20px, 12.304px + 2.051vw, 24px);
  font-size: clamp(1.25rem, .769rem + 2.051vw, 1.5rem);
  content: '▼';
}

.p-flow__step:last-child .p-flow__step-title::after {
  display: none;
}

.p-footer-table {
  border: solid #cabb89;
  border-collapse: collapse;
  width: 100%;
}

.p-footer-table thead th {
  border-right: 1px solid #231815;
  color: #231815;
  font-size: clamp(12px, 8.16px + 1.026vw, 14px);
  font-size: clamp(.75rem, .51rem + 1.026vw, .875rem);
  font-weight: 400;
}

.p-footer-table tbody th,
.p-footer-table tbody td {
  border: 1px solid #231815;
  padding: 0 3px;
  padding: 0 .1875rem;
  font-size: clamp(12px, 8.16px + 1.026vw, 14px);
  font-size: clamp(.75rem, .51rem + 1.026vw, .875rem);
  font-weight: 400;
  text-align: center;
}

.p-footer-table tbody td {
  color: #231815;
}

.p-footer {
  background-color: #cabb89;
  padding-top: clamp(50px, 19.232px + 8.205vw, 70px);
  padding-top: clamp(3.125rem, 1.202rem + 8.205vw, 4.375rem);
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  color: #231815;
  text-align: center;
}

.p-footer__logo {
  font-family: 'heisei-mincho-std', serif;
}

.p-footer__logo-title {
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1;
}

.p-footer__logo-title span {
  display: block;
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: clamp(25.008px, 19.232px + 1.538vw, 28px);
  font-size: clamp(1.563rem, 1.202rem + 1.538vw, 1.75rem);
  letter-spacing: .2em;
}

.p-footer__logo-title-sub {
  margin-top: clamp(1.008px, -2.304px + .87vw, 5.008px);
  margin-top: clamp(.063rem, -.144rem + .87vw, .313rem);
  color: #947f28;
  font-size: clamp(10px, 2.304px + 2.051vw, 14px);
  font-size: clamp(.625rem, .144rem + 2.051vw, .875rem);
  letter-spacing: .1em;
  line-height: 1;
}

.p-footer__address {
  margin-top: 10px;
  margin-top: .625rem;
  font-family: 'heisei-mincho-std', serif;
  line-height: 1.0833333333;
}

.p-footer__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: clamp(5.008px, -4.608px + 2.564vw, 10px);
  margin-top: clamp(.313rem, -.288rem + 2.564vw, .625rem);
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(20px, 12.304px + 2.051vw, 24px);
  font-size: clamp(1.25rem, .769rem + 2.051vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4375;
}

.p-footer__tel a {
  display: inline-block;
  position: relative;
}

.p-footer__tel a::before {
  margin-inline: 10px 3px;
  margin-inline: .625rem .1875rem;
  display: inline-block;
  background: url(../img/common/icon_phone.webp) no-repeat center center/contain;
  width: 17px;
  width: 1.0625rem;
  height: 14px;
  height: .875rem;
  content: '';
}

.p-footer__care-time-table {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-footer__text {
  margin-top: 10px;
  margin-top: .625rem;
  text-align: left;
}

.p-footer__link-lists {
  margin-inline: -5.3333333333vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-footer__link-list {
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(14px, 8.16px + 1.538vw, 16px);
  font-size: clamp(.875rem, .51rem + 1.538vw, 1rem);
  font-weight: 500;
}

.p-footer__link-list:nth-child(1) {
  background-color: #b09c53;
}

.p-footer__link-list:nth-child(2) {
  background-color: #947f28;
}

.p-footer__link-list a {
  display: block;
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(40px, 20.768px + 5.128vw, 50px);
  height: clamp(2.5rem, 1.298rem + 5.128vw, 3.125rem);
}

.p-footer__copy {
  line-height: 4;
}

.p-hamburger-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #fff;
  padding-top: 12px;
  width: 50px;
  height: 50px;
}

.p-hamburger-btn .line {
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #000;
  width: 25px;
  height: 1px;
}

.p-hamburger-btn .text {
  display: block;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 3px;
  color: #000;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.p-hamburger-btn .line:nth-child(2) {
  margin-top: 6px;
  margin-bottom: 6px;
}

.p-hamburger-btn.open {
  border-radius: 50%;
}

.p-hamburger-btn.open .line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.p-hamburger-btn.open .line:nth-child(2) {
  display: none;
}

.p-hamburger-btn.open .line:nth-child(3) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.p-header {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  padding: 0 24px;
  padding: 0 1.5rem;
  max-width: 570px;
  height: clamp(60px, 43.072px + 4.103vw, 70px);
  height: clamp(3.75rem, 2.692rem + 4.103vw, 4.375rem);
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.p-header__logo-title {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #231815;
  font-family: 'heisei-mincho-std', serif;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
}

.p-header__logo-title span {
  display: block;
  margin-top: 3px;
  margin-top: .1875rem;
  font-size: clamp(20px, 12.304px + 2.051vw, 24px);
  font-size: clamp(1.25rem, .769rem + 2.051vw, 1.5rem);
  letter-spacing: .25em;
}

.p-header__logo-title-sub {
  margin-top: 1px;
  margin-top: .0625rem;
  color: #947f28;
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(10px, 2.304px + 2.051vw, 14px);
  font-size: clamp(.625rem, .144rem + 2.051vw, .875rem);
  font-weight: 500;
  letter-spacing: .1em;
}

.p-header__nav {
  display: none;
}

.p-header__nav-list {
  text-align: center;
}

.p-header__nav-item a {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.p-header__nav-item:nth-child(n+2) {
  margin-top: 25.6px;
  margin-top: 1.6rem;
}

/************************************************************************
* p-lead
************************************************************************/
.p-lead {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-lead__text {
  position: relative;
  z-index: 1;
  margin-top: 35px;
  margin-top: 2.1875rem;
  text-align: center;
}

.p-lead__img {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-lead__img img {
  aspect-ratio: 375/220;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-main {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  max-width: 570px;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/************************************************************************
* p-mv
************************************************************************/
.p-mv__wrap {
  aspect-ratio: 375/450;
  position: relative;
  background: url(../img/mv.webp) no-repeat center center/contain;
  width: 100%;
  height: 100%;
}

.p-mv__title-body {
  position: absolute;
  top: 51.4%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-mv__title {
  display: inline-block;
  background-color: #fff;
  padding-right: 5px;
  padding-right: .3125rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  color: #231815;
  font-family: 'heisei-mincho-std', serif;
  font-size: 6.9333333333vw;
  font-weight: 500;
}

.p-mv__title + .p-mv__title {
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-mv__feature {
  margin-inline: auto;
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  z-index: 1;
  margin-top: -8vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-mv__feature-item {
  width: 100%;
  max-width: 24vw;
}

.p-mv__feature-item img {
  aspect-ratio: 90/97;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-mv__note {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: clamp(10px, 6.16px + 1.026vw, 12px);
  font-size: clamp(.625rem, .385rem + 1.026vw, .75rem);
  text-align: center;
}

/************************************************************************
* p-number
************************************************************************/
.p-number {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-number__items {
  gap: 10px 15px;
  gap: .625rem .9375rem;
  display: grid;
  grid-template-areas: 'holiday holiday' 'paid age' 'overtime overtime' 'staff chair' 'visits visits';
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-weight: 700;
}

.p-number__item {
  position: relative;
  border-radius: 1.25rem;
  background-color: #fff;
  padding: 10px;
  padding: .625rem;
  color: #947f28;
}

.p-number__item--holiday {
  grid-area: holiday;
  background-color: #947f28;
  background-image: url('../img/bg_number01.webp');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 11.75rem auto;
  color: #fff100;
}

.p-number__item--paid {
  grid-area: paid;
  background-color: #fff100;
}

.p-number__item--age {
  grid-area: age;
  background-color: #dfdfdf;
}

.p-number__item--overtime {
  grid-area: overtime;
  background-color: #dfdfdf;
  background-image: url('../img/bg_number02.webp');
  background-position: right 15px;
  background-repeat: no-repeat;
  background-size: 9.5rem auto;
}

.p-number__item--staff {
  grid-area: staff;
  background-color: #dfdfdf;
}

.p-number__item--chair {
  grid-area: chair;
  background-color: #dfdfdf;
}

.p-number__item--visits {
  grid-area: visits;
  background-color: #fff100;
  background-image: url('../img/bg_number03.webp');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 10.625rem auto;
}

.p-number__label {
  font-size: 24px;
  font-size: 1.5rem;
}

.p-number__note {
  margin-bottom: 8px;
  font-size: 14px;
  font-size: .875rem;
}

.p-number__value {
  font-size: 26px;
  font-size: 1.625rem;
}

.p-number__item--holiday .p-number__value,
.p-number__item--visits .p-number__value {
  margin-top: -20px;
  margin-top: -1.25rem;
}

.p-number__value-large {
  display: inline-block;
  margin-right: -5px;
  margin-right: -.3125rem;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 900;
}

/************************************************************************
* p-pc-background
************************************************************************/

/************************************************************************
* p-price
************************************************************************/
.p-price {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-price__price {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: 'heisei-mincho-std', serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.p-price__price-number {
  color: #947f28;
  font-size: 60px;
  font-size: 3.75rem;
  letter-spacing: 0;
}

.p-price__text {
  margin-top: 10px;
  margin-top: .625rem;
  font-family: 'heisei-mincho-std', serif;
  line-height: 1.4166666667;
  text-align: center;
}

.p-price__table {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-price__table-inner {
  border: 1px solid #947f28;
  border-collapse: collapse;
  width: 100%;
  color: #615f5e;
  font-size: clamp(10px, 2.304px + 2.051vw, 14px);
  font-size: clamp(.625rem, .144rem + 2.051vw, .875rem);
  letter-spacing: .1em;
}

.p-price__table-header {
  background-color: #cabb89;
}

.p-price__table-header th {
  border: 1px solid #947f28;
  padding: 3px;
  padding: .1875rem;
  text-align: left;
}

.p-price__table-category-header {
  width: 20px;
  width: 1.25rem;
}

.p-price__table-category {
  width: 175px;
  width: 10.9375rem;
}

.p-price__table-price {
  width: 140px;
  width: 8.75rem;
}

.p-price__table-category-label {
  vertical-align: middle;
  border: 1px solid #947f28;
  padding: 3px;
  padding: .1875rem;
  width: 20px;
  width: 1.25rem;
  line-height: 1;
  text-align: center;
  text-orientation: upright;

  /* Firefox対応 */
}
@supports (-moz-appearance: none) {

  .p-price__table-category-label {
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
}

.p-price__table-category-label span {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
}

.p-price__table-row {
  border-bottom: 1px solid #947f28;
}

.p-price__table-row:nth-child(even) {
  background-color: #f0f0f0;
}

.p-price__table-item {
  border-right: 1px solid #947f28;
  padding: 3px;
  padding: .1875rem;
  text-align: left;
}

.p-price__table-cost {
  padding: 3px;
  padding: .1875rem;
}

.p-price__payment {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-price__payment-title {
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(18px, 10.304px + 2.051vw, 22px);
  font-size: clamp(1.125rem, .644rem + 2.051vw, 1.375rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-align: center;
}

.p-price__payment-img:first-of-type {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-price__payment-img:not(:first-of-type) {
  margin-top: clamp(30px, 8.208px + 5.128vw, 40px);
  margin-top: clamp(1.875rem, .513rem + 5.128vw, 2.5rem);
}

.p-price__payment-subtitle {
  margin-top: 5px;
  margin-top: .3125rem;
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(18px, 10.304px + 2.051vw, 22px);
  font-size: clamp(1.125rem, .644rem + 2.051vw, 1.375rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-align: center;
}

.p-price__payment-text {
  margin-top: 5px;
  margin-top: .3125rem;
}

/************************************************************************
* p-requirements
************************************************************************/
.p-requirements {
  position: relative;
  z-index: 0;
}

.p-requirements::before {
  inset: 0;
  display: block;
  position: absolute;
  z-index: -1;
  -webkit-clip-path: polygon(0 105px, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 105px, 100% 0, 100% 100%, 0% 100%);
  background-color: #dfdfdf;
  width: 100%;
  height: 100%;
  content: '';
}

.p-requirements__table {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/************************************************************************
* p-solution
************************************************************************/
.p-solution {
  background-color: #cabb89;
}

.p-solution__img {
  margin-top: clamp(20px, 0.768px + 5.128vw, 30px);
  margin-top: clamp(1.25rem, .048rem + 5.128vw, 1.875rem);
}

.p-solution__img img {
  aspect-ratio: 335/240;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-solution__img:nth-of-type(3) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-solution__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-solution__sub-title {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-family: serif;
  font-size: clamp(18px, 10.304px + 2.051vw, 22px);
  font-size: clamp(1.125rem, .644rem + 2.051vw, 1.375rem);
  font-weight: 500;
  text-align: center;
}

.p-solution__lists {
  margin-inline: auto;
  width: 100%;
  max-width: clamp(300px, 184.608px + 30.769vw, 360px);
  max-width: clamp(18.75rem, 11.538rem + 30.769vw, 22.5rem);
}

.p-solution__list-title {
  position: relative;
  margin-top: 10px;
  margin-top: .625rem;
  font-family: serif;
  font-size: clamp(18px, 10.304px + 2.051vw, 22px);
  font-size: clamp(1.125rem, .644rem + 2.051vw, 1.375rem);
  font-weight: 500;
  text-align: center;
}

.p-solution__list-title::after {
  display: block;
  margin-top: -5px;
  margin-top: -.3125rem;
  color: #947f28;
  font-size: 20px;
  font-size: 1.25rem;
  content: '▼';
}

/************************************************************************
* p-system
************************************************************************/
.p-system {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-system__head {
  margin-inline: auto;
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: 100%;
  max-width: 282px;
  max-width: 17.625rem;
}

.p-system__head img {
  aspect-ratio: 282/100;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-system__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-system__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-system__item-img {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-system__item-img img {
  aspect-ratio: 335/220;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-system__item-title {
  margin-top: 10px;
  margin-top: .625rem;
  color: #947f28;
  font-family: serif;
  font-size: clamp(20px, 12.304px + 2.051vw, 24px);
  font-size: clamp(1.25rem, .769rem + 2.051vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.p-system__item-text {
  margin-top: 5px;
  margin-top: .3125rem;
  text-align: center;
}

/************************************************************************
* p-voice
************************************************************************/
.p-voice {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 50px 0;
  padding: 3.125rem 0;
}

.p-voice::before {
  position: absolute;
  top: -60px;
  top: -3.75rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-clip-path: polygon(0 70px, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 70px, 100% 0, 100% 100%, 0% 100%);
  background-color: #e5ddc4;
  content: '';
}

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

.p-voice__card {
  margin-top: 45px;
  margin-top: 2.8125rem;
  background-color: #fff;
  padding: 15px;
  padding: .9375rem;
}

.p-voice__card:first-of-type {
  margin-top: clamp(20px, 0.768px + 5.128vw, 30px);
  margin-top: clamp(1.25rem, .048rem + 5.128vw, 1.875rem);
}

.p-voice__card-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-voice__card-stars {
  color: #fd0;
}

.p-wrapper__right {
  display: none;
}

/************************************************************************
* p-worries
************************************************************************/
.p-worries {
  position: relative;
}

.p-worries::before {
  position: absolute;
  top: clamp(-370px, -260px + -110px * (100vw - 375px) / 195px, -260px);
  top: clamp(-23.125rem, -16.25rem + -6.875rem * (100vw - 23.4375rem) / 12.1875rem, -16.25rem);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-clip-path: polygon(0 105px, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 105px, 100% 0, 100% 100%, 0% 100%);
  background-color: #e5ddc4;
  content: '';
}

.p-worries__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1200px;
  max-width: 75rem;
}

.p-worries__img {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-worries__img--first {
  margin-inline: -20px;
  margin-inline: -1.25rem;
}

.p-worries__lists {
  margin-inline: auto;
  margin-top: 10px;
  margin-top: .625rem;
  width: 100%;
  max-width: clamp(320px, 166.16px + 41.026vw, 400px);
  max-width: clamp(20rem, 10.385rem + 41.026vw, 25rem);
}

.p-worries__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-sr-only {
  clip: rect(0, 0, 0, 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.u-mt50 {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.u-mt100 {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 570px) {

  body {
    font-size: 16px;
    font-size: 1rem;
  }

  .l-inner {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1120px;
  }

  .l-inner.l-inner--narrow {
    max-width: 908px;
  }

  .l-inner.l-inner--wide {
    max-width: 1332px;
  }

  .l-section {
    padding-block: 70px;
    padding-block: 4.375rem;
  }

  .c-btn {
    height: 45px;
    height: 2.8125rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-access__address {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-access__head {
    height: 35px;
    height: 2.1875rem;
  }

  .p-choosing__img {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-contact-form {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }

  .custom-checkbox:checked + label::after {
    left: 4px;
    left: .25rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-contact-form__submit input[type=submit] {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-contact__text {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-doctor__name-ja::before {
    width: 370px;
    width: 23.125rem;
  }

  .p-main {
    width: 570px;
    width: 35.625rem;
    max-width: 100%;
  }

  .p-mv__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-mv__feature {
    margin-top: -45px;
    margin-top: -2.8125rem;
  }

  .p-mv__feature-item {
    max-width: 137px;
    max-width: 8.5625rem;
  }

  .p-solution__img {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-worries::before {
    top: -370px;
    top: -23.125rem;
  }

  .p-worries__img--first {
    margin-inline: -30px;
    margin-inline: -1.875rem;
  }
}

@media screen and (min-width: 768px) {

  :root {
    --header-height: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .c-totop {
    right: calc(50% - 23.4375rem);
  }

  .p-contact-form__input textarea {
    min-height: 160px;
    min-height: 10rem;
  }

  .p-contact__go-back .c-button {
    position: relative;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-footer-table {
    margin-inline: auto;
  }

  .p-footer__link-lists {
    margin-inline: -30px;
    margin-inline: -1.875rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .p-hamburger-btn {
    display: none;
  }

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media screen and (min-width: 1440px) {

  .p-drawer__logo {
    margin-inline: auto;
    width: 100%;
  }

  .p-header {
    display: grid;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    padding: 32px 0;
    padding: 2rem 0;
    width: calc(100% - 28.5rem);
    height: 100vh;
  }

  .p-header__inner {
    display: block;
  }

  .p-header__logo {
    margin-inline: auto;
    width: 100%;
  }

  .p-header__logo-title {
    line-height: 1.2;
    text-align: center;
  }

  .p-header__nav {
    display: block;
    margin-top: 64px;
    margin-top: 4rem;
    padding-left: 16px;
    padding-left: 1rem;
  }

  .p-header__drawer {
    display: none;
  }

  .p-wrapper {
    margin-inline: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    max-width: 1500px;
  }

  .p-wrapper__right {
    display: block;
    display: grid;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    place-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    opacity: 0;
    margin-top: 0;
    padding: 0;
    width: calc(100% - 285px);
    height: 100vh;
  }
}

@media screen and (max-width: 767px) {

  .u-hidden--sp {
    display: none !important;
  }
}

@media screen and (max-width: 569px) {

  .u-onlySp {
    display: block;
  }
}

@media screen and (max-width: 374px) {

  .c-list__list-number {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .c-list__list-text {
    font-size: 13px;
    font-size: .8125rem;
    letter-spacing: 0;
  }

  .c-section-title-ja {
    letter-spacing: 0;
  }

  .p-charm__list-text {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-choosing__head {
    letter-spacing: 0;
  }

  .p-choosing__text {
    letter-spacing: 0;
  }

  .p-doctor__certificates {
    gap: clamp(10px, -19.632px + 9.259vw, 15.008px);
    gap: clamp(.625rem, -1.227rem + 9.259vw, .938rem);
  }

  .p-doctor__certificate {
    width: clamp(85.008px, -3.888px + 27.778vw, 100px);
    width: clamp(5.313rem, -.243rem + 27.778vw, 6.25rem);
  }

  .p-doctor__certificate--horizontal {
    width: clamp(130px, 29.264px + 31.481vw, 147.008px);
    width: clamp(8.125rem, 1.829rem + 31.481vw, 9.188rem);
  }

  .p-drawer__logo-title span {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .15em;
  }

  .p-drawer__logo-title-sub {
    font-size: 8px;
    font-size: .5rem;
  }

  .p-footer__logo-title span {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .p-footer__tel {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-header__logo-title span {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .1em;
  }

  .p-header__logo-title-sub {
    font-size: 8px;
    font-size: .5rem;
  }

  .p-number__label {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-number__value {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-number__value-large {
    font-size: 48px;
    font-size: 3rem;
  }

  .p-price__text {
    letter-spacing: 0;
  }

  .p-price__table-item {
    letter-spacing: 0;
  }

  .p-price__table-cost {
    letter-spacing: 0;
  }

  .p-system__text {
    letter-spacing: 0;
  }

  .p-system__item-title {
    letter-spacing: 0;
  }
}

@media (any-hover: hover) {

  .p-fixed-button:hover {
    color: rgba(255, 255, 255, .8);
  }

  .p-fixed-buttons__phone:hover .p-fixed-buttons__phone-number::before {
    opacity: .8;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .p-footer__link-list a:hover {
    color: rgba(255, 255, 255, .8);
  }
}
/*# sourceMappingURL=map/style.css.map */