@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: #231815;
  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: #231815;
}

/************************************************************************
* 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: #231815;
  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 #00b3c4;
  border-bottom: .25em solid #00b3c4;
  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: #00b3c4;
}

/* 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: #00b3c4;
  font-weight: 700;
}

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

#toc_container .toc_list li::before {
  display: none;
  color: #00b3c4;
}

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

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

.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: #00b3c4;
  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: #00b3c4;
}

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

.c-btn--go-back {
  border-color: #00b3c4;
  background-color: #fff;
  color: #00b3c4;
  font-weight: 500;
}

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

.c-btn--white {
  background-color: #fff;
  color: #00b3c4;
}

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

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

/************************************************************************
* 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: #00b3c4;
  background-color: #00b3c4;
  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(0, 132.4234693878, 145);
  background-color: #00b3c4;
  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: #00b3c4;
}

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

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #00b3c4;
  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 {
  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-subtitle - セクションサブタイトル
************************************************************************/
.c-section-subtitle {
  font-family: 'heisei-mincho-std', serif;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  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;
  line-height: 1.3888888889;
}

/************************************************************************
* c-section-title - セクションタイトル
************************************************************************/
.c-section-title {
  position: relative;
  font-weight: 500;
  text-align: center;
}

.c-section-title::before {
  aspect-ratio: 670/12;
  display: block;
  margin-bottom: clamp(12px, 6.16px + 1.538vw, 14px);
  margin-bottom: clamp(.75rem, .385rem + 1.538vw, .875rem);
  background-image: url('../img/common/bg_dot.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: auto;
  content: '';
}

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

.c-section-title-en {
  margin-top: 8px;
  margin-top: .5rem;
}

.c-section-title-en img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-section-title-en img[src*=title_policy] {
  max-width: clamp(34px, 9.07vw, 52px);
  max-width: clamp(2.125rem, 9.07vw, 3.25rem);
}

.c-section-title-en img[src*=title_life] {
  max-width: clamp(18px, 4.8vw, 27px);
  max-width: clamp(1.125rem, 4.8vw, 1.6875rem);
}

.c-section-title-en img[src*=title_looks] {
  max-width: clamp(28px, 7.47vw, 43px);
  max-width: clamp(1.75rem, 7.47vw, 2.6875rem);
}

.c-section-title-en img[src*=title_period] {
  max-width: clamp(36px, 9.6vw, 55px);
  max-width: clamp(2.25rem, 9.6vw, 3.4375rem);
}

.c-section-title-en img[src*=title_price] {
  max-width: clamp(27px, 7.2vw, 41px);
  max-width: clamp(1.6875rem, 7.2vw, 2.5625rem);
}

.c-section-title-en img[src*=title_doctor] {
  max-width: clamp(33px, 8.8vw, 50px);
  max-width: clamp(2.0625rem, 8.8vw, 3.125rem);
}

.c-section-title-en img[src*=title_access] {
  max-width: clamp(35px, 9.33vw, 53px);
  max-width: clamp(2.1875rem, 9.33vw, 3.3125rem);
}

.c-section-title-en img[src*=title_contact] {
  max-width: clamp(38px, 10.13vw, 58px);
  max-width: clamp(2.375rem, 10.13vw, 3.625rem);
}

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

.c-table th,
.c-table td {
  border-bottom: 1px solid #231815;
  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 #231815;
  padding: 7px 10px;
  padding: .4375rem .625rem;
  padding-right: 16px;
  padding-right: 1rem;
  color: #c7e8fa;
  font-weight: bold;
}

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

.c-table__desc {
  border-bottom: 1px solid #231815;
  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;
  cursor: pointer;
  -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-image: url('../img/common/bg_gotop.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  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 #fff;
  border-right: 3px solid #fff;
  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;
}

.c-totop__link {
  display: block;
  width: 100%;
  height: 100%;
}

/************************************************************************
* p-access - 当院へのアクセス
************************************************************************/
.p-access {
  padding-block: 50px;
  padding-block: 3.125rem;
}

.p-access__inner {
  text-align: center;
}

.p-access__address {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-access__img {
  margin-top: 10px;
  margin-top: .625rem;
}

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

.p-access__map {
  margin-top: 10px;
  margin-top: .625rem;
}

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

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

.p-access__info-title {
  margin-inline: auto;
  display: inline-block;
  display: grid;
  position: relative;
  place-items: center;
  z-index: 1;
  width: min(210px, 80%);
  width: min(13.125rem, 80%);
  height: 30px;
  height: 1.875rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-access__info-content {
  margin-top: -17px;
  margin-top: -1.0625rem;
  padding: 12px;
  padding: .75rem;
}

.p-access__info-item:nth-child(1) .p-access__info-title {
  background-image: url('../img/common/bg_access-head_blue.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-access__info-item:nth-child(1) .p-access__info-content {
  background-image: url('../img/common/bg_access_blue.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-access__info-item:nth-child(2) .p-access__info-title {
  background-image: url('../img/common/bg_access-head_pink.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-access__info-item:nth-child(2) .p-access__info-content {
  background-image: url('../img/common/bg_access_pink.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-access__info-item:nth-child(3) .p-access__info-title {
  background-image: url('../img/common/bg_access-head_orange.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-access__info-item:nth-child(3) .p-access__info-content {
  background-image: url('../img/common/bg_access_orange.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-access__info-list {
  background-color: #fff;
  padding: 15px 20px;
  padding: .9375rem 1.25rem;
}

.p-access__info-list li::before {
  content: '・';
}

.p-access__info-list li + li {
  margin-top: 5px;
  margin-top: .3125rem;
}

/************************************************************************
* p-action-button - アクションボタン（固定ボタン・フッター内ボタン統一スタイル）
************************************************************************/
.p-action-buttons {
  margin-inline: -5.3333333333vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-action-buttons.p-action-buttons--fixed {
  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-action-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: 100%;
  height: clamp(40px, 20.768px + 5.128vw, 50px);
  height: clamp(2.5rem, 1.298rem + 5.128vw, 3.125rem);
  color: #fff;
  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-action-buttons--fixed .p-action-button {
  cursor: pointer; /* 固定ボタンで確実にポインターにする */
  width: 50%;
  height: inherit;
}

.p-action-button--tel {
  background-color: #f39800;
}

.p-action-button--web {
  background-color: #8fc31f;
}

/************************************************************************
* p-anchor-nav - アンカーナビゲーション
************************************************************************/
.p-anchor-nav {
  padding-block: clamp(20px, 12.304px + 2.051vw, 24px) clamp(50px, 30.768px + 5.128vw, 60px);
  padding-block: clamp(1.25rem, .769rem + 2.051vw, 1.5rem) clamp(3.125rem, 1.923rem + 5.128vw, 3.75rem);
  background-color: #c7e8fa;
}

.p-anchor-nav__list {
  gap: clamp(10px, 6.16px + 1.026vw, 12px);
  gap: clamp(.625rem, .385rem + 1.026vw, .75rem);
  display: grid;
}

.p-anchor-nav__item {
  position: relative;
}

.p-anchor-nav__item a {
  display: block;
  position: relative;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background-color: #fff;
  padding: 10px;
  padding: .625rem;
  height: clamp(60px, 36.928px + 6.154vw, 72px);
  height: clamp(3.75rem, 2.308rem + 6.154vw, 4.5rem);
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

.p-anchor-nav__item a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  border-width: 0 0 clamp(20px, 12.304px + 2.051vw, 24px) clamp(20px, 12.304px + 2.051vw, 24px);
  border-width: 0 0 clamp(1.25rem, .769rem + 2.051vw, 1.5rem) clamp(1.25rem, .769rem + 2.051vw, 1.5rem);
  border-style: solid;
  border-color: transparent transparent #00b3c4 transparent;
  width: 0;
  height: 0;
  content: '';
}

.p-anchor-nav__item-label {
  display: block;
  color: #6bb9cb;
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(15px, 9.232px + 1.538vw, 18px);
  font-size: clamp(.9375rem, .577rem + 1.538vw, 1.125rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}

.p-anchor-nav__item-text {
  display: block;
  margin-top: clamp(4px, 1.536px + .641vw, 6px);
  margin-top: clamp(.25rem, .096rem + .641vw, .375rem);
  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;
  letter-spacing: .25em;
  line-height: 1;
}

/************************************************************************
* 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 {
  text-align: left;
}

.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: #231815;
  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: #231815;
  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 {
  gap: 50px;
  gap: 3.125rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.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 - 無料相談
************************************************************************/
.p-contact {
  padding-block: 50px;
  padding-block: 3.125rem;
  background-color: #c7e8fa;
}

.p-contact__inner {
  text-align: center;
}

.p-contact__dots img {
  width: 100%;
  height: auto;
}

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

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

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

/************************************************************************
* p-doctor - 経験豊富なドクター陣
************************************************************************/
.p-doctor {
  position: relative;
}

.p-doctor.l-section {
  padding-block: 50px 100px;
  padding-block: 3.125rem 6.25rem;
}

.p-doctor::before {
  position: absolute;
  top: 20px;
  top: 1.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: #c7e8fa;
  content: '';
}

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

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

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

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

.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: #00b3c4;
  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-en img {
  display: block;
  width: 100%;
  height: auto;
}

.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__content-title {
  font-weight: 500;
}

.p-doctor__content-item-indent {
  display: block;
  padding-left: 3.5em;
}

.p-doctor__certification {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.p-doctor__certification-label {
  display: inline-block;
  background-color: #eb6d8e;
  width: 100%;
  color: #fff;
  font-size: clamp(13.008px, 3.392px + 2.564vw, 16px);
  font-size: clamp(.813rem, .212rem + 2.564vw, 1rem);
  font-weight: 500;
}

.p-doctor__certification-text {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-doctor__certification-link {
  display: inline-block;
  -webkit-transition: color .3s;
  transition: color .3s;
  margin-top: clamp(15px, 6.56px + 2.308vw, 20px);
  margin-top: clamp(.9375rem, .41rem + 2.308vw, 1.25rem);
  text-decoration: none;
}

.p-footer-table {
  margin-top: 10px;
  margin-top: .625rem;
  border: solid #fff;
  border-collapse: collapse;
  width: 100%;
}

.p-footer-table thead th {
  border-right: 1px solid #808080;
  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 #808080;
  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: #00b3c4;
}

.p-footer-table tbody td img {
  display: inline-block;
  vertical-align: middle;
  width: 11px;
  width: .6875rem;
  height: 11px;
  height: .6875rem;
}

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

/************************************************************************
* p-footer - フッター
************************************************************************/
.p-footer {
  padding-block: 50px;
  padding-block: 3.125rem;
  letter-spacing: .1em;
  text-align: center;
}

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

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

.p-footer__tel {
  gap: 10px;
  gap: .625rem;
  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);
  color: #00b3c4;
  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;
}

.p-footer__table th {
  border: 1px solid #c7e8fa;
  padding: 8px 5px;
  padding: .5rem .3125rem;
  font-weight: 500;
}

.p-footer__table td {
  border: 1px solid #c7e8fa;
  padding: 8px 5px;
  padding: .5rem .3125rem;
}

.p-footer__table thead th {
  background-color: #fff;
}

.p-footer__table tbody td:first-child {
  text-align: left;
}

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

.p-footer__note-blue-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-right: .3125rem;
  margin-bottom: 2px;
  margin-bottom: .125rem;
  width: 14px;
  width: .875rem;
  height: 14px;
  height: .875rem;
}

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

.p-header {
  margin-inline: auto;
  background-color: #fff;
  padding: 15px 20px 8px;
  padding: .9375rem 1.25rem .5rem;
  max-width: 570px;
  max-width: 35.625rem;
}

.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 a {
  gap: 10px;
  gap: .625rem;
  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;
  text-decoration: none;
}

.p-header__logo-title {
  width: 100%;
  max-width: clamp(300px, 184.64px + 30.77vw, 360px);
  max-width: clamp(18.75rem, 11.54rem + 30.77vw, 22.5rem);
}

.p-header__logo-title img {
  aspect-ratio: 300/35;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__logo-title-sub {
  display: block;
  margin-top: 4px;
  margin-top: .25rem;
  background-color: #00b3c4;
  padding: 4px 12px;
  padding: .25rem .75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: clamp(10px, 6.16px + 1.026vw, 12px);
  font-size: clamp(.625rem, .385rem + 1.026vw, .75rem);
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1;
}

.p-header__nav {
  display: none;
}

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

.p-header__nav-item a {
  display: inline-block;
  -webkit-transition: color .3s;
  transition: color .3s;
  width: 100%;
  color: #231815;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  text-decoration: none;
}

.p-header__nav-item a:hover {
  color: #00b3c4;
}

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

/************************************************************************
* p-lead - リード
************************************************************************/
.p-lead {
  padding-block: 20px 30px;
  padding-block: 1.25rem 1.875rem;
  position: relative;
}

.p-lead__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  background-color: #c7e8fa;
  width: 100%;
  height: 52%;
}

.p-lead__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-lead__dots {
  aspect-ratio: 335/6;
  width: 100%;
  height: auto;
}

.p-lead__dots img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-lead__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #231815;
  line-height: 2;
}

.p-lead__text:first-of-type {
  margin-top: 15px;
  margin-top: .9375rem;
}

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

.p-lead__img img {
  width: 100%;
  height: auto;
}

.p-lead__buttons {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-lead__button {
  padding-block: 15px;
  padding-block: .9375rem;
  padding-inline: 10px;
  padding-inline: .625rem;
  display: grid;
  place-items: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  border-radius: .3125rem;
  text-decoration: none;
}

.p-lead__button:hover {
  opacity: .8;
}

.p-lead__button--tel {
  background-color: #c7e8fa;
  color: #fff;
}

.p-lead__button--web {
  border: 2px solid #c7e8fa;
  background-color: #fff;
  color: #c7e8fa;
}

.p-lead__button-label {
  font-size: 12px;
  font-size: .75rem;
}

.p-lead__button-text {
  margin-top: 3px;
  margin-top: .1875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

/************************************************************************
* p-life - 矯正中の生活
************************************************************************/
.p-life {
  padding-block: 50px;
  padding-block: 3.125rem;
  background-color: #c7e8fa;
}

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

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

.p-life__img {
  position: relative;
}

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

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

.p-life__text {
  margin-top: 15px;
  margin-top: .9375rem;
  letter-spacing: .2em;
}

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

.p-life__list + .p-life__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-life__list li::before {
  content: '・';
}

/************************************************************************
* p-looks - 矯正中の見た目の不安は？
************************************************************************/
.p-looks__inner {
  text-align: center;
}

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

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

.p-looks__img--second img {
  aspect-ratio: 335/320;
}

.p-looks__content {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-looks__text {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-looks__logos {
  gap: 15px;
  gap: .9375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-looks__logos img {
  width: 100%;
  height: auto;
}

.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/cover;
  width: 100%;
  height: 100%;
}

.p-mv__title-body {
  position: absolute;
  top: 50%;
  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-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: #00b3c4;
}

.p-number__item--holiday {
  grid-area: holiday;
  background-color: #00b3c4;
  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-period - 矯正期間はどれくらい？
************************************************************************/
.p-period {
  padding-block: 50px;
  padding-block: 3.125rem;
  background-color: #c7e8fa;
}

.p-period__inner {
  text-align: center;
}

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

.p-period__img:first-child {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

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

.p-period__table {
  border-collapse: collapse;
  width: 100%;
  font-size: clamp(10px, 6.16px + 1.026vw, 12px);
  font-size: clamp(.625rem, .385rem + 1.026vw, .75rem);
  text-align: left;
}

.p-period__table thead th {
  vertical-align: middle;
  border: 1px solid #808080;
  border-right: 1px solid #fff;
  background-color: #00b3c4;
  padding: 5px 4px;
  padding: .3125rem .25rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.p-period__table thead th:last-child {
  border-right: 1px solid #808080;
}

.p-period__table tbody td {
  vertical-align: middle;
  border: 1px solid #808080;
  padding: 5px 4px;
  padding: .3125rem .25rem;
  letter-spacing: .01em;
  text-align: left;
}

.p-period__table tbody tr:nth-child(odd) td {
  background-color: #fff;
}

.p-period__table tbody tr:nth-child(even) td {
  background-color: #f0f0f0;
}

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

.p-period__table--sub tr:nth-child(odd) th,
.p-period__table--sub tr:nth-child(odd) td {
  background-color: #fff;
}

.p-period__table--sub tr:nth-child(even) th,
.p-period__table--sub tr:nth-child(even) td {
  background-color: #f0f0f0;
}

.p-period__table--sub th {
  vertical-align: middle;
  border: 1px solid #808080;
  padding: 5px 4px;
  padding: .3125rem .25rem;
  width: 50%;
  text-align: left;
}

.p-period__table--sub td {
  vertical-align: middle;
  border: 1px solid #808080;
  padding: 5px 4px;
  padding: .3125rem .25rem;
  width: 50%;
  text-align: left;
}

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

.p-period__text {
  margin-top: 1em;
}

/************************************************************************
* p-points - 大切なポイント
************************************************************************/
.p-points {
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-points__item {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.p-points__item:last-child {
  margin-bottom: 0;
}

.p-points__item-number {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #c7e8fa;
  font-family: 'heisei-mincho-std', serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

.p-points__item-text {
  padding-top: 5px;
  padding-top: .3125rem;
}

/************************************************************************
* p-policy - インビザライン矯正とは？
************************************************************************/
.p-policy__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.p-policy__item-img {
  margin-inline: -30px;
  margin-inline: -1.875rem;
}

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

.p-policy__item-content {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-policy__item-title {
  gap: 5px;
  gap: .3125rem;
  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;
  color: #00b3c4;
  font-family: 'heisei-mincho-std', serif;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: clamp(15.008px, 9.232px + 1.538vw, 18px);
  font-size: clamp(.938rem, .577rem + 1.538vw, 1.125rem);
  font-weight: 500;
  letter-spacing: .15em;
}

.p-policy__item:nth-of-type(2) .p-policy__item-title {
  color: #eb6d8e;
}

.p-policy__item:nth-of-type(3) .p-policy__item-title {
  color: #aa569d;
}

.p-policy__item:nth-of-type(4) .p-policy__item-title {
  color: #f39800;
}

.p-policy__item-num {
  font-family: 'heisei-mincho-std', serif;
  font-size: clamp(36px, 22.464px + 3.678vw, 48px);
  font-size: clamp(2.25rem, 1.404rem + 3.678vw, 3rem);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.p-policy__item-title-text {
  display: inline-block;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-policy__item-text {
  margin-top: 15px;
  margin-top: .9375rem;
  letter-spacing: .2em;
}

.p-policy__item-list {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 5px;
  padding-left: .3125rem;
  letter-spacing: .2em;
}

.p-policy__item-list li {
  position: relative;
  padding-left: 15px;
  padding-left: .9375rem;
  color: #00b3c4;
}

.p-policy__item:nth-of-type(2) .p-policy__item-list li {
  color: #eb6d8e;
}

.p-policy__item:nth-of-type(3) .p-policy__item-list li {
  color: #aa569d;
}

.p-policy__item:nth-of-type(4) .p-policy__item-list li {
  color: #f39800;
}

.p-policy__item-list li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-policy__item-list + .p-policy__item-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/************************************************************************
* p-price - 費用はいくら？追加費用は？
************************************************************************/
.p-price {
  text-align: center;
}

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

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

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

.p-price__main-text {
  font-family: 'heisei-mincho-std', serif;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: clamp(26px, 14.304px + 3.077vw, 31px);
  font-size: clamp(1.625rem, .894rem + 3.077vw, 1.9375rem);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
}

.p-price__main-text-large {
  color: #00b3c4;
  font-size: clamp(60px, 33.008px + 7.179vw, 72px);
  font-size: clamp(3.75rem, 2.063rem + 7.179vw, 4.5rem);
  letter-spacing: 0;
}

.p-price__main-note {
  margin-top: 6px;
  margin-top: .375rem;
  color: #eb6d8e;
  font-size: clamp(10px, 6.16px + 1.026vw, 12px);
  font-size: clamp(.625rem, .385rem + 1.026vw, .75rem);
}

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

.p-price__table {
  border-collapse: collapse;
  width: 100%;
  font-size: clamp(10px, 6.16px + 1.026vw, 12px);
  font-size: clamp(.625rem, .385rem + 1.026vw, .75rem);
  text-align: left;
}

.p-price__table thead th {
  vertical-align: middle;
  border: 1px solid #808080;
  border-right: 1px solid #fff;
  background-color: #00b3c4;
  padding: 5px 8px;
  padding: .3125rem .5rem;
  width: 55%;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.p-price__table thead th:last-child {
  border-right: 1px solid #808080;
}

.p-price__table tbody td {
  vertical-align: middle;
  border: 1px solid #808080;
  padding: 5px 4px;
  padding: .3125rem .25rem;
  width: 45%;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  letter-spacing: .1em;
}

.p-price__table tbody tr:nth-child(odd) td {
  background-color: #fff;
}

.p-price__table tbody tr:nth-child(even) td {
  background-color: #f7f7f7;
}

.p-price__table tbody td:last-child {
  text-align: center;
}

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

.p-price__block {
  margin-top: clamp(20px, 12.304px + 2.051vw, 24px);
  margin-top: clamp(1.25rem, .769rem + 2.051vw, 1.5rem);
}

.p-price__block.p-price__block--wide {
  margin-top: clamp(35px, 19.696px + 4.103vw, 40px);
  margin-top: clamp(2.1875rem, 1.231rem + 4.103vw, 2.5rem);
}

.p-price__block-title,
.p-price__block-sub-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;
}

.p-price__block-sub-title {
  margin-top: 6px;
  margin-top: .375rem;
}

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

.p-price__block-items {
  gap: 25px;
  gap: 1.5625rem;
  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;
}

.p-price__block-text {
  margin-top: clamp(6px, 3.696px + .615vw, 7px);
  margin-top: clamp(.375rem, .231rem + .615vw, .4375rem);
  letter-spacing: .16em;
  text-align: left;
}

.p-price__block-img {
  margin-top: clamp(6px, 3.696px + .615vw, 7px);
  margin-top: clamp(.375rem, .231rem + .615vw, .4375rem);
}

.p-price__block-img img {
  width: 100%;
  height: auto;
}

/************************************************************************
* p-privacy - 個人情報保護方針
************************************************************************/
.p-privacy {
  margin-block: 50px;
  margin-block: 3.125rem;
}

.p-privacy__list {
  color: #808080;
  line-height: 1.4;
}

.p-privacy__item::before {
  content: '・';
}

.p-wrapper__right {
  display: none;
}

/************************************************************************
* 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;
  }

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

  .p-action-buttons {
    margin-inline: -30px;
    margin-inline: -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-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;
  }
}

@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;
  }
}

@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) {

  .u-onlyPc {
    display: block;
  }

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

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

  .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-sub {
    font-size: 12px;
    font-size: .75rem;
  }

  .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-footer__tel {
    font-size: 16px;
    font-size: 1rem;
  }

  .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;
  }
}

@media (any-hover: hover) {

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

  .p-anchor-nav__item a:hover {
    opacity: .8;
  }

  .p-doctor__certification-link:hover {
    color: #00b3c4;
  }
}
/*# sourceMappingURL=map/style.css.map */