@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;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #0296bd;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "游ゴシック体", "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  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 {
  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 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;
}

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

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

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #0296bd;
}

/************************************************************************
* layout
************************************************************************/
body {
  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;
  min-height: 100vh;
  min-height: 100dvh;
}

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: opacity .3s;
  transition: opacity .3s;
}

a:not([class]) {
  color: #00b8e8;
  text-decoration: underline;
}

a[href^="tel:"] {
  text-decoration: underline;
}

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: #0296bd;
  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: 15px;
  font-size: .9375rem;
  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 #0296bd;
  border-bottom: .25em solid #0296bd;
  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: 15px;
  font-size: .9375rem;
}

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: 80px;
}

/************************************************************************
* 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("../img/common/icon-slider-arrow.svg");
}

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

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

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border: 1px solid #0064AE;
  border-radius: 50%;
  background-color: #fff;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
  margin-left: .625rem;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0064AE;
}

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

.swiper[dir=rtl] .swiper-button-next {
  background-image: url("../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: #0296bd;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #0296bd;
}

#toc_container .toc_list li::before {
  display: none;
  color: #0296bd;
}

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

#toc_container .toc_list a {
  color: #0296bd;
}

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

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

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

.l-header.is-fixed {
  top: 0;
}

.l-page {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.l-section {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.l-section.l-section--bg {
  background-color: #f8f8f8;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #0296bd;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #0296bd;
}

/************************************************************************
* 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: #0296bd;
  background-color: #0296bd;
  color: #fff;
}

.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(1.4659685864, 109.9476439791, 138.5340314136);
  background-color: #0296bd;
  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: #0296bd;
}

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

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #0296bd;
  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-highlight {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff395), to(#fff395));
  background-image: linear-gradient(90deg, #fff395, #fff395);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% .625rem;
  padding-bottom: 3px;
  padding-bottom: .1875rem;
}

.c-images {
  gap: 10px;
  gap: .625rem;
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 10px;
  margin-top: .625rem;
}

.c-images__item {
  border-radius: .9375rem;
  min-width: calc(50% - .625rem);
  overflow: hidden;
}

.c-totop {
  display: block;
  position: fixed;
  right: 10px;
  right: .625rem;
  bottom: 38px;
  bottom: 2.375rem;
  visibility: hidden;
  opacity: 0;
  z-index: 20;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  border-radius: 50%;
  background-color: #65a7ce;
  background-color: rgba(34, 34, 34, .9);
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
}

.c-totop::before {
  aspect-ratio: 16/13;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../img/common/totop.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  width: 1rem;
  content: "";
}

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

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

.p-404__body {
  text-align: center;
}

.p-404__foot {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-about__features {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 500px;
}

.p-about__feature {
  position: relative;
  padding: 0 5px 24px 5px;
  padding: 0 .3125rem 1.5rem .3125rem;
  text-align: center;
}

.p-about__feature::after {
  aspect-ratio: 1;
  inset: 0;
  display: block;
  position: absolute;
  opacity: .2;
  z-index: -1;
  margin: auto;
  background-image: radial-gradient(circle, #ffe200 0%, #ffe200 50%, transparent 70.7%);
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  content: "";
}

.p-about__featureHeader {
  margin-inline: auto;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Jost", sans-serif;
}

.p-about__featureLabel {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-about__featureNumber {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 1;
}

.p-about__featureTitle {
  margin-top: 12.5px;
  margin-top: .78125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.p-about__image img {
  aspect-ratio: 350/216;
  border-radius: .9375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-about__imageCaption {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 13px;
  font-size: .8125rem;
  text-align: center;
}

.p-campaign__img img {
  aspect-ratio: 390/166;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-contactBox {
  border: 1px solid #cbeaf2;
  border-radius: .5rem;
  padding: 15px 17px;
  padding: .9375rem 1.0625rem;
}

.p-contactBox__title {
  position: relative;
  border-bottom: 2px solid #cbeaf2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-contactBox__organization {
  margin-top: 14px;
  margin-top: .875rem;
  font-weight: 700;
}

.p-cta {
  position: fixed;
  bottom: 25px;
  bottom: 1.5625rem;
  left: 10px;
  left: .625rem;
  opacity: 1;
  z-index: 19;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
  padding-right: 90px;
  padding-right: 5.625rem;
  width: calc(100% - .625rem);
  text-align: center;
}

.p-cta__link {
  margin-inline: auto;
  display: block;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  border-radius: .625rem;
  background-color: #06c755;
  padding: 18px 14px;
  padding: 1.125rem .875rem;
  max-width: 300px;
}

.p-cta__text {
  margin-inline: auto;
  display: block;
  position: relative;
  padding: 8px 0 8px 54px;
  padding: .5rem 0 .5rem 3.375rem;
  height: 100%;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.p-cta__text::before {
  aspect-ratio: 43/40;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/line.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 43px;
  width: 2.6875rem;
  content: "";
}

.p-doctor__content {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
}

.p-doctor__img img {
  aspect-ratio: 350/216;
  border-radius: .9375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-doctor__descriptionComment {
  margin-top: 10px;
  margin-top: .625rem;
  text-align: right;
}

.p-drawer {
  z-index: 40;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .1);
  border-radius: 50%;
  background-color: rgba(0, 165, 191, .9);
  padding: 15px;
  padding: .9375rem;
  height: 60px;
  height: 3.75rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

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

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

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

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-.375rem) rotate(-45deg);
  transform: translateY(-.375rem) 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, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  -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: calc(var(--header-height, 80px) + .625rem);
  padding-bottom: var(--header-height, 80px);
  width: 100%;
  max-width: 768px;
  height: 100%;
  overflow: auto;
  color: #0296bd;
}

.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-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__nav {
  border-top: 1px solid #cbeaf2;
}

.p-drawer__navItem {
  position: relative;
  border-bottom: 1px solid #cbeaf2;
}

.p-drawer__navItem::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/icon-arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  width: .5625rem;
  height: 14px;
  height: .875rem;
  content: "";
}

.p-drawer__navLink {
  display: block;
  padding-top: .94em;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: .94em;
  padding-left: 15px;
  padding-left: .9375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

.p-drawer__footer {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.4615384615;
  text-align: center;
}

.p-drawer__footerLink {
  display: block;
  color: #00b8e8;
  text-decoration: underline;
}

.p-drawer__footerCopyright {
  display: block;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-faq h2,
.p-faq h3,
.p-faq h4,
.p-faq h5,
.p-faq h6 {
  margin-top: 2em;
  color: #0296bd;
}

.p-faq p {
  color: #0296bd;
}

.p-faq h1 {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.44;
}

.p-faq h2 {
  margin-bottom: 10px;
  margin-bottom: .625rem;
  border-bottom: 2px solid #cbeaf2;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-faq .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-faq .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  content: "ー";
}

.p-faq ul {
  margin-top: 20px;
  margin-top: 1.25rem;
  list-style: none;
}

.p-faq ul li {
  position: relative;
  padding-left: 1em;
  color: #0296bd;
}

.p-faq ul li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.p-faq table {
  border: none;
  width: 100%;
}

.p-faq table th,
.p-faq table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-faq table th {
  border-right: 1px solid #000;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-faq p + p {
  margin-top: 1em;
}

.p-faq__item {
  border-top: 1px solid;
}

.p-faq__item:last-child {
  border-bottom: 1px solid;
}

.p-faq__question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: color .3s;
  transition: color .3s;
  text-align: left;
}

.p-faq__question-button {
  aspect-ratio: 1;
  position: absolute;
  top: 18px;
  top: 1.125rem;
  right: 8px;
  right: .5rem;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  border: 2px solid;
  border: .125rem solid;
  border-radius: .25rem;
  width: 24px;
  width: 1.5rem;
}

.p-faq__question-button::before,
.p-faq__question-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: background .3s, -webkit-transform .3s;
  transition: background .3s, -webkit-transform .3s;
  transition: transform .3s, background .3s;
  transition: transform .3s, background .3s, -webkit-transform .3s;
  border-radius: 100vh;
  background: #0296bd;
  width: 12px;
  width: .75rem;
  height: 2px;
  height: .125rem;
  content: "";
}

.p-faq__question-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__question.is-opened .p-faq__question-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-faq__question,
.p-faq__answer {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-left: 8px;
  padding-left: .5rem;
  width: 100%;
}

.p-faq__answer {
  display: none;
}

.p-faq__answerFlex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-faq__question-label,
.p-faq__answer-label {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30px;
  width: 1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-faq__question-label {
  color: #0296bd;
}

.p-faq__question-text {
  padding-right: 48px;
  padding-right: 3rem;
}

.p-faq__answer {
  position: relative;
}

.p-faq__answer::after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#0296bd), color-stop(.25rem, #0296bd), color-stop(.25rem, transparent), color-stop(.25rem, transparent));
  background-image: linear-gradient(to right, #0296bd, #0296bd .25rem, transparent .25rem, transparent .25rem);
  background-repeat: repeat-x;
  background-size: .5rem 1px;
  width: 100%;
  height: 10px;
  content: "";
}

.p-footer {
  background-color: #f8f8f8;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  text-align: center;
}

.p-footer__bannerList {
  gap: 20px;
  gap: 1.25rem;
  margin-inline: auto;
  display: grid;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  max-width: 300px;
  max-width: 18.75rem;
}

.p-footer__bannerLink {
  -webkit-transition: border .3s;
  transition: border .3s;
  border: 2px solid transparent;
}

.p-footer__link {
  gap: 10px;
  gap: .625rem;
  display: grid;
  font-size: 13px;
  font-size: .8125rem;
}

.p-fv {
  position: relative;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-fv__swiper {
  width: 100%;
  height: 100%;
}

.p-fv__item {
  width: 100%;
  height: 100%;
}

.p-fv__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-fv__item img {
  aspect-ratio: 390/575;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__pagination {
  position: absolute;
  bottom: 15px;
  bottom: .9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.p-header {
  padding-bottom: 10px;
  padding-bottom: .625rem;
  height: 80px;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
  padding-left: .625rem;
  height: 100%;
}

.p-header__inner.l-container {
  padding-right: 0;
}

.p-header__logo {
  z-index: 41;
  margin-left: auto;
  border-bottom-left-radius: 30px;
  border-bottom-left-radius: 1.875rem;
  background-color: rgba(2, 150, 189, .9);
  width: 130px;
  width: 8.125rem;
  height: 32px;
  height: 2rem;
}

.p-header__logo a {
  padding-right: 10px;
  padding-right: .625rem;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  display: block;
  margin-left: auto;
  width: 70%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-header__drawer {
  padding-top: 10px;
  padding-top: .625rem;
}

.p-page h1 {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.44;
  text-align: center;
}

.p-page .p-page__title {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

.p-page .p-page__topic {
  position: relative;
  padding-top: 10px;
  padding-top: .625rem;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4545454545;
}

.p-page .p-page__topic::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #0296bd;
  width: 50px;
  width: 3.125rem;
  height: 2px;
  content: "";
}

.p-page__images {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
}

.p-page__image img {
  aspect-ratio: 350/216;
  border-radius: .9375rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-page__imageCaption {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1.5;
  text-align: center;
}

.p-page__listItem {
  position: relative;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  padding-left: 35px;
  padding-left: 2.1875rem;
  line-height: 2;
}

.p-page__listItem + .p-page__listItem {
  padding-top: 10px;
  padding-top: .625rem;
}

.p-page__listItem::before {
  aspect-ratio: 1;
  display: inline-block;
  position: absolute;
  left: 0;
  background-image: url(../img/common/icon-check.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  width: 1.875rem;
  content: "";
}

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

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

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

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

.p-pageAbout__contentsList {
  gap: 10px;
  gap: .625rem;
  display: grid;
}

.p-pageAbout__contentsDescription {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1.5;
}

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

.p-pageFlow__list {
  gap: 30px 10px;
  gap: 1.875rem .625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-pageFlow__listItem {
  position: relative;
}

.p-pageFlow__listNumber {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 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;
  border: 2px solid;
  border-radius: 50%;
  background-color: #fff;
  width: 30px;
  width: 1.875rem;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1;
}

.p-pageFlow__image img {
  aspect-ratio: 170/145;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-pageFlow__contentsTitle {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-pageFlow__contentsDescription {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.5;
}

.p-pageFlow__contentsNote {
  margin-top: 4px;
  margin-top: .25rem;
  font-size: 13px;
  font-size: .8125rem;
}

.p-pageKeiseikai__contents {
  gap: 10px;
  gap: .625rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
}

.p-pageKeiseikai__contentsItem {
  border: 3px solid #cbeaf2;
  border-radius: .9375rem;
  padding: 16px 8px 14px;
  padding: 1rem .5rem .875rem;
}

.p-pageKeiseikai__icon {
  margin-inline: auto;
  width: 71.4285714286%;
}

.p-pageKeiseikai__text {
  margin-top: 14px;
  margin-top: .875rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.5;
}

.p-pageKeiseikai__image {
  margin-inline: auto;
  margin-top: 22px;
  margin-top: 1.375rem;
  max-width: 600px;
}

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

.p-pageLocations__contents {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-pageLocations__contentsItem {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-template-columns: 1.6fr 1.8fr;
}

.p-pageLocations__image {
  position: relative;
  border-radius: .625rem .625rem 0 .625rem;
  overflow: hidden;
}

.p-pageLocations__image::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  background-image: url(../img/common/icon_link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  width: 24px;
  width: 1.5rem;
  content: "";
}

.p-pageLocations__image img {
  aspect-ratio: 160/106;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-pageLocations__name {
  font-weight: 700;
  line-height: 1.3;
}

.p-pageLocations__address {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.3928571429;
}

.p-pageLocations__phone {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.3928571429;
}

.p-pageLocations__phone::before {
  aspect-ratio: 1;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-right: .3125rem;
  background-image: url(../img/common/icon_phone.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 1lh;
  content: "";
}

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

.p-pagePrivacy__contents h2,
.p-pagePrivacy__contents h3,
.p-pagePrivacy__contents h4,
.p-pagePrivacy__contents h5,
.p-pagePrivacy__contents h6 {
  margin-top: 2em;
  color: #0296bd;
}

.p-pagePrivacy__contents p {
  color: #0296bd;
}

.p-pagePrivacy__contents h1 {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.44;
}

.p-pagePrivacy__contents h2 {
  margin-bottom: 10px;
  margin-bottom: .625rem;
  border-bottom: 2px solid #cbeaf2;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-pagePrivacy__contents .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-pagePrivacy__contents .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  content: "ー";
}

.p-pagePrivacy__contents ul {
  margin-top: 20px;
  margin-top: 1.25rem;
  list-style: none;
}

.p-pagePrivacy__contents ul li {
  position: relative;
  padding-left: 1em;
  color: #0296bd;
}

.p-pagePrivacy__contents ul li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.p-pagePrivacy__contents table {
  border: none;
  width: 100%;
}

.p-pagePrivacy__contents table th,
.p-pagePrivacy__contents table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-pagePrivacy__contents table th {
  border-right: 1px solid #000;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-pagePrivacy__contents p + p {
  margin-top: 1em;
}

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

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #0296bd;
  width: 2em;
  height: 2em;
  color: #0296bd;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #0296bd;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.p-price__description {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

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

.p-price__notes {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 13px;
  font-size: .8125rem;
}

.p-scanner__content {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
}

.p-scanner__img img {
  aspect-ratio: 350/216;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-scanner__description {
  gap: 1em;
  display: grid;
}

.p-scanner__descriptionText p + p {
  margin-top: 1em;
}

.p-scanner__descriptionLinkText {
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1.7307692308;
}

.p-sectionTitle {
  gap: 5px;
  gap: .3125rem;
  display: grid;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  color: #0296bd;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.44;
  text-align: center;
}

.p-sectionTitle__min {
  font-size: 15px;
  font-size: .9375rem;
}

.p-tab__nav {
  gap: 5px;
  gap: .3125rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 95.7142857143%;
  max-width: 345px;
  max-width: 21.5625rem;
}

.p-tab__btn {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  border: 2px solid;
  border-radius: 1.125rem 1.125rem 0 0;
  background-color: #fff;
  padding: 12px;
  padding: .75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-tab__btn.is-active {
  border-bottom: 2px solid #fff;
}

.p-tab__content {
  border-top: 2px solid;
}

.p-tab__panel {
  display: none;
}

.p-tab__panel.is-active {
  display: block;
}

.p-tab__item {
  border-bottom: 1px dotted;
  padding: 10px 0;
  padding: .625rem 0;
}

.p-tab__title {
  position: relative;
  padding: 3px 0;
  padding: .1875rem 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-tab__number {
  position: relative;
  margin-right: 5px;
  margin-right: .3125rem;
  padding: 0 .5625em;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1;
}

.p-tab__number::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid;
  border-radius: 50%;
  width: 30px;
  width: 1.875rem;
  content: "";
}

.p-tab__titleText {
  line-height: 1.875;
}

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

.p-table {
  margin-right: auto;
  margin-left: auto;
  border-bottom: 1px solid #0296bd;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

.p-table th,
.p-table td {
  padding: 10px 5px;
  padding: .625rem .3125rem;
  min-height: 55px;
  min-height: 3.4375rem;
}

.p-table thead th {
  text-align: left;
}

.p-table tbody th,
.p-table tbody td {
  border-top: 1px solid #0296bd;
}

.p-table tbody th {
  background-color: #cbeaf2;
  text-align: left;
}

.p-table tbody td {
  background-color: #fff;
}

.p-table__number {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.125;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/************************************************************************
* 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-overflowHidden {
  overflow: hidden !important;
}

.u-textOrange {
  color: #fa8700;
}

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

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

  html {
    font-size: 1.6vw;
  }

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

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

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1060px;
  }

  .l-container.l-container--narrow {
    max-width: 660px;
  }

  .l-container.l-container--medium {
    max-width: 860px;
  }

  .l-container.l-container--wide {
    max-width: 1920px;
  }

  .l-page {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .l-section {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .c-images {
    gap: 20px;
    gap: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .c-images__item {
    border-radius: 1.25rem;
  }

  .c-totop {
    right: 40px;
    right: 2.5rem;
  }

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

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

  .p-about__features {
    max-width: 100%;
  }

  .p-about__featureLabel {
    font-size: 25px;
    font-size: 1.5625rem;
  }

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

  .p-about__featureTitle {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

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

  .p-about__image img {
    aspect-ratio: 600/370;
    border-radius: 1.25rem;
  }

  .p-about__imageCaption {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-campaign {
    padding: 100px 0;
    padding: 6.25rem 0;
  }

  .p-campaign__container {
    margin-inline: auto;
    padding: 0 30px;
    max-width: 860px;
  }

  .p-campaign__img {
    -webkit-transition: border .3s;
    transition: border .3s;
    border: 2px solid transparent;
  }

  .p-campaign__img:hover {
    border: 2px solid #fa8700;
  }

  .p-campaign__img img {
    aspect-ratio: 800/166;
  }

  .p-contactBox {
    border-radius: 1.25rem;
  }

  .p-contactBox__address {
    gap: 10px;
    gap: .625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-cta {
    right: 30px;
    right: 1.875rem;
    bottom: 100px;
    bottom: 6.25rem;
    left: inherit;
    padding-right: 0;
    width: 70px;
    width: 4.375rem;
    height: 250px;
    height: 15.625rem;
  }

  .p-cta:hover, .p-cta:focus {
    -webkit-transform: translateY(.3125rem);
    transform: translateY(.3125rem);
  }

  .p-cta__link {
    padding: 0;
    padding: 8px 12px 16px 12px;
    padding: .5rem .75rem 1rem .75rem;
    width: 70px;
    width: 4.375rem;
    height: 100%;
  }

  .p-cta__text {
    display: inline-block;
    top: 16px;
    top: 1rem;
    padding: 40px 12px 16px 12px;
    padding: 2.5rem .75rem 1rem .75rem;
    font-size: 16px;
    font-size: 1rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .p-cta__text::before {
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
  }

  .p-doctor__content {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 4fr 3.6fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-doctor__img img {
    aspect-ratio: 400/247;
    border-radius: 1.25rem;
  }

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

  .p-faq h2,
  .p-faq h3,
  .p-faq h4,
  .p-faq h5,
  .p-faq h6 {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

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

  .p-faq h2 {
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-faq table th,
  .p-faq table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-faq table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-faq__question-button {
    top: 50%;
    right: 16px;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-faq__question,
  .p-faq__answer {
    padding-top: 21px;
    padding-top: 1.3125rem;
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
    padding-left: 16px;
    padding-left: 1rem;
  }

  .p-footer {
    padding: 60px 0;
    padding: 3.75rem 0;
  }

  .p-footer__bannerList {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    max-width: 100%;
  }

  .p-footer__bannerLink:hover {
    border: 2px solid #0296bd;
  }

  .p-footer__link {
    gap: 20px;
    gap: 1.25rem;
  }

  .p-fv {
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
  }

  .p-fv__item img {
    aspect-ratio: 1440/600;
  }

  .p-fv__pagination {
    padding-bottom: 10px;
    padding-bottom: .625rem;
  }

  .p-header__inner {
    padding-left: 30px;
    padding-left: 1.875rem;
  }

  .p-header__logo {
    border-bottom-left-radius: 40px;
    border-bottom-left-radius: 2.5rem;
    width: 174px;
    width: 10.875rem;
    height: 40px;
    height: 2.5rem;
  }

  .p-header__logo a {
    padding-right: 20px;
    padding-right: 1.25rem;
  }

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

  .p-page .p-page__title {
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
  }

  .p-page .p-page__topic {
    padding-top: 20px;
    padding-top: 1.25rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-page__images {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-page__image img {
    aspect-ratio: 480/296;
    border-radius: 1.25rem;
  }

  .p-page__imageCaption {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page__listItem {
    padding-bottom: 15px;
    padding-bottom: .9375rem;
    line-height: 1.875;
  }

  .p-page__listItem + .p-page__listItem {
    padding-top: 15px;
    padding-top: .9375rem;
  }

  .p-page__listItem::before {
    margin-right: 10px;
    margin-right: .625rem;
  }

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

  .p-pageAbout__topic {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-pageAbout__list {
    margin-inline: auto;
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: 500px;
  }

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

  .p-pageAbout__contents {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-pageAbout__contentsList {
    gap: 20px 40px;
    gap: 1.25rem 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-pageAbout__contentsDescription {
    margin-top: 51px;
    margin-top: 3.1875rem;
  }

  .p-pageFeatures__image {
    margin-inline: auto;
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: 600px;
  }

  .p-pageFlow__list {
    gap: 90px 40px;
    gap: 5.625rem 2.5rem;
    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: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-pageFlow__listItem {
    width: calc((100% - 5rem) / 3);
  }

  .p-pageFlow__listNumber {
    width: 40px;
    width: 2.5rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

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

  .p-pageFlow__contentsDescription {
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
  }

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

  .p-pageKeiseikai__contents {
    gap: 23px;
    gap: 1.4375rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .p-pageKeiseikai__contentsItem {
    padding: 25px 13px 15px;
    padding: 1.5625rem .8125rem .9375rem;
  }

  .p-pageKeiseikai__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-pageLocations__contents {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-pageLocations__contentsItem:has(.p-pageLocations__infoLink:hover) .p-pageLocations__image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-pageLocations__image::after {
    width: 30px;
    width: 1.875rem;
  }

  .p-pageLocations__image:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

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

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

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

  .p-pagePrivacy__contents h2,
  .p-pagePrivacy__contents h3,
  .p-pagePrivacy__contents h4,
  .p-pagePrivacy__contents h5,
  .p-pagePrivacy__contents h6 {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

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

  .p-pagePrivacy__contents h2 {
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-pagePrivacy__contents table th,
  .p-pagePrivacy__contents table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-pagePrivacy__contents table th {
    width: 153px;
    width: 9.5625rem;
  }

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

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

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

  .p-scanner__content {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 3.6fr 4fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-scanner__img img {
    aspect-ratio: 400/247;
  }

  .p-scanner__img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .p-sectionTitle {
    padding-bottom: 51px;
    padding-bottom: 3.1875rem;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.45;
  }

  .p-sectionTitle__min {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-tab__nav {
    margin: 0;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-tab__item {
    padding: 20px 0;
    padding: 1.25rem 0;
  }

  .p-tab__title {
    padding: 1.5px 0;
    padding: .09375rem 0;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-tab__number {
    margin-right: 10px;
    margin-right: .625rem;
  }

  .p-tab__description {
    margin-top: 13px;
    margin-top: .8125rem;
  }

  .p-table th,
  .p-table td {
    padding: 15px 15px 15px 10px;
    padding: .9375rem .9375rem .9375rem .625rem;
    width: 33.3333333333%;
  }

  .p-table__number {
    line-height: 1.2;
  }
}

@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 (min-width: 1000px) {

  html {
    font-size: 16px;
  }
}

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

  .u-onlyPc {
    display: block;
  }

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

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

  .l-header {
    position: -webkit-sticky;
    position: sticky;
  }

  .p-header {
    background-color: #fff;
    padding-bottom: 0;
    height: auto;
  }

  .p-header__nav {
    display: block;
  }

  .p-header__nav ul {
    gap: 0 30px;
    gap: 0 1.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
  }

  .p-header__nav li > a {
    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;
    padding: 30px 0;
    padding: 1.875rem 0;
    height: 100%;
    font-size: 15px;
    font-size: .9375rem;
    font-weight: 700;
  }

  .p-header__nav li > a:hover span {
    background-size: 100% 1px;
  }

  .p-header__nav li > a span {
    display: inline;
    -webkit-transition: background-size .3s;
    transition: background-size .3s;
    background-image: -webkit-gradient(linear, left top, right top, from(#0296bd), to(#0296bd));
    background-image: linear-gradient(90deg, #0296bd, #0296bd);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    padding-bottom: 3px;
    padding-bottom: .1875rem;
  }

  .p-header__nav li > a.is-active span {
    background-size: 100% 1px;
  }

  .p-header__drawer {
    display: none;
  }
}

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

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 390px) {

  html {
    font-size: 4.1025641026vw;
  }
}
/*# sourceMappingURL=map/style.css.map */