@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: #404040;
  font-family: kozuka-gothic-pro, 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: #404040;
}

/************************************************************************
* 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-pro, sans-serif;
  font-size: clamp(12px, 8.16px + 1.026vw, 14px);
  font-size: clamp(.75rem, .51rem + 1.026vw, .875rem);
  letter-spacing: .1em;
}

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: #404040;
  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 #1d2088;
  border-bottom: .25em solid #1d2088;
  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: #1d2088;
}

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

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

#toc_container .toc_list li::before {
  display: none;
  color: #1d2088;
}

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

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

.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: 40px 50px;
  padding-block: 2.5rem 3.125rem;
  margin-top: 100px;
  margin-top: 6.25rem;
}

.c-box-head {
  display: block;
  color: #fff;
  font-size: clamp(14px, 9.952px + 1.081vw, 16px);
  font-size: clamp(.875rem, .622rem + 1.081vw, 1rem);
  font-weight: bold;
  text-align: center;
}

.c-box-head::after {
  display: block;
  margin-top: 3px;
  margin-top: .1875rem;
  background: url('../img/bg_line.webp') no-repeat center center/100% 100%;
  width: 100%;
  height: 10px;
  height: .625rem;
  content: '';
}

.c-box-head--blue {
  color: #1d2088;
  letter-spacing: .1em;
}

.c-box-head--pink {
  color: #e40075;
  letter-spacing: .1em;
}

.c-box-head--blue::after {
  background: url('../img/bg_line-blue.webp') no-repeat center center/100% 100%;
}

.c-box-head--pink::after {
  background: url('../img/bg_line-pink.webp') no-repeat center center/100% 100%;
}

/************************************************************************
* 基本形
************************************************************************/
.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: #1d2088;
  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: #1d2088;
}

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

.c-btn--white {
  background-color: #fff;
  color: #1d2088;
}

.c-btn--blue {
  border-color: #1d2088;
  background-color: #fff;
  color: #1d2088;
}

.c-btn--blue:hover, .c-btn--blue:focus-visible {
  border-color: #1d2088;
  background-color: #1d2088;
  color: #fff;
}

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

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

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

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

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

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

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #1d2088;
  background-color: #1d2088;
  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(20.0363636364, 22.1090909091, 93.9636363636);
  background-color: #1d2088;
  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: #1d2088;
}

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

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #1d2088;
  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-section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1d2088;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}

.c-section-title--pink {
  color: #e40075;
}

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

.c-section-title-en {
  padding-inline: 60px;
  padding-inline: 3.75rem;
  position: relative;
  margin-top: 10px;
  margin-top: .625rem;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: capitalize;
}

.c-section-title-en::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: -60px;
  left: -3.75rem;
  background-color: #fff;
  width: 60px;
  width: 3.75rem;
  height: 100%;
  content: '';
}

.c-section-title-en--yellow {
  background-color: #fff100;
}

.c-section-title-en--yellow::before {
  background-color: #fff100;
}

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

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

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

.c-table__desc {
  border-bottom: 1px solid #404040;
  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: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #5dc2d0;
  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;
}

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

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

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

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

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

.p-p-access__text {
  padding-block: 7px;
  padding-block: .4375rem;
  display: grid;
  place-items: center;
  margin-top: 15px;
  margin-top: .9375rem;
  background-color: #fff;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-article__body h2 {
  background-color: #404040;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #404040;
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

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

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

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

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

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

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

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

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

.p-article__body table th {
  border-right: 1px solid #404040;
  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-article__body * + * {
  margin-top: 25px;
}

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

.p-article__body .wp-block-spacer, .p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #1d2088;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__body a:not([class]) {
  color: #1d2088;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #404040;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F8F8F8;
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #808080;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

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

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #1d2088;
  width: 2em;
  height: 2em;
  color: #1d2088;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

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

.post-page-numbers.current {
  background-color: #1d2088;
  color: #fff;
}

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

/************************************************************************
* p-charm
************************************************************************/
.p-charm {
  padding-block: 40px;
  padding-block: 2.5rem;
  position: relative;
  z-index: 0;
  margin-top: 50px;
  margin-top: 3.125rem;
}

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

.p-charm__lists {
  gap: 40px;
  gap: 2.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;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-charm__list a {
  gap: 10px;
  gap: .625rem;
  padding-inline: 2.6666666667vw;
  padding-block: 10px;
  padding-block: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
}

.p-charm__list--no-link a::after {
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  place-items: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: rgba(64, 64, 64, .75);
  width: calc(100% - 1.25rem);
  height: calc(100% - 1.25rem);
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  content: '現在は募集しておりません';
}

.p-charm__list:nth-child(even) a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-charm__list-text {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #1d2088;
  font-weight: 700;
}

.p-charm__list-label {
  display: inline-grid;
  place-items: center;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  background-color: #1d2088;
  min-width: 33.0666666667vw;
  height: 5.6vw;
  color: #fff100;
  font-size: 3.4666666667vw;
}

.p-charm__list-title {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 4.8vw;
  letter-spacing: .16em;
  line-height: 1.3;
}

.p-charm__list-title-large {
  display: block;
  margin-bottom: 5px;
  margin-bottom: .3125rem;
  font-size: 6.9333333333vw;
  line-height: 1.0769230769;
}

.p-charm__list-img {
  margin-block: -25px;
  margin-block: -1.5625rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 45.3333333333vw;
}

.p-charm__list:nth-child(odd) .p-charm__list-img {
  margin-right: -3.2vw;
}

.p-charm__list:nth-child(even) .p-charm__list-img {
  margin-left: -3.2vw;
}

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

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

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

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

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

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

.p-contact-form__input input[type=text],
.p-contact-form__input input[type=email],
.p-contact-form__input input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px 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: 2px 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: 2px 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: 2px 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: 2px 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: 2px solid #BFBFBF;
  border-radius: 0;
  background-color: #fff;
  padding: 3px 10px;
  color: #404040;
  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;
  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: #404040;
  width: 300px;
  width: 18.75rem;
  height: 50px;
  height: 3.125rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: .2em;
}

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

.p-contact-thanks__title {
  margin-inline: auto;
}

.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: 40px 100px;
  padding-block: 2.5rem 6.25rem;
  position: relative;
  z-index: 0;
  font-weight: 500;
}

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

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

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

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

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

.p-curriculum--dh::before {
  background-color: #fceaf2;
}

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

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

.p-curriculum__text {
  margin-top: 10px;
  margin-top: .625rem;
  background-color: #fff;
  padding: 10px;
  padding: .625rem;
  font-weight: 500;
}

.p-curriculum__block {
  margin-top: 10px;
  margin-top: .625rem;
  font-weight: 500;
}

.p-curriculum__heading {
  background-color: #808080;
  padding: 10px;
  padding: .625rem;
  color: #fff;
  text-align: center;
}

.p-curriculum__heading--pink {
  background-color: #e40075;
}

.p-curriculum__heading + .p-curriculum__text {
  margin-top: 0;
}

.p-curriculum__lists {
  background-color: #fff;
  padding: 10px 10px 15px;
  padding: .625rem .625rem .9375rem;
}

.p-curriculum__list::before {
  display: inline-block;
  width: 1em;
  content: '・';
}

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

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

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

.p-dh__system-body {
  margin-top: 10px;
  margin-top: .625rem;
  background-color: #fff;
  padding: 10px;
  padding: .625rem;
  font-weight: 500;
}

.p-dh__system-text + .p-dh__system-text {
  margin-top: 16px;
  margin-top: 1rem;
}

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

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  background-color: #1d2088;
  padding-top: 4px;
  width: 60px;
  height: 60px;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-drawer__logo {
  margin-inline: auto;
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
}

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

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

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

.p-footer {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
  text-align: center;
}

.p-footer__logo {
  margin-inline: auto;
  width: 100%;
  max-width: 230px;
  max-width: 14.375rem;
}

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

.p-footer__address {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #000;
}

.p-footer__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-footer__tel a {
  display: inline-block;
  color: #1d2088;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
}

.p-footer__tel::before {
  margin-right: 10px;
  margin-right: .625rem;
  background: url(../img/common/icon_phone.webp) no-repeat center center/contain;
  width: 24px;
  width: 1.5rem;
  height: 17px;
  height: 1.0625rem;
  content: '';
}

.p-footer__hour {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-footer__table {
  border-collapse: collapse;
  width: 100%;
}

.p-footer__table th,
.p-footer__table td {
  vertical-align: middle;
  padding: 5px;
  padding: .3125rem;
  color: #5f5f5f;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-weight: 700;
  text-align: center;
}

.p-footer__table th {
  border: 1px solid #5dc2d0;
  background-color: #5dc2d0;
  color: #fff;
  font-size: clamp(10px, 6.16px + 1.026vw, 12px);
  font-size: clamp(.625rem, .385rem + 1.026vw, .75rem);
}

.p-footer__table td {
  border: 1px solid #5dc2d0;
  min-width: 40px;
  min-width: 2.5rem;
  font-size: clamp(10px, 6.16px + 1.026vw, 12px);
  font-size: clamp(.625rem, .385rem + 1.026vw, .75rem);
}

.p-footer__table td:first-child {
  padding: 5px;
  padding: .3125rem;
  white-space: nowrap;
}

.p-footer__table td:not(:first-child) {
  min-width: unset;
}

.p-footer__table tr:nth-child(n+2) td:nth-child(n+2) {
  color: #5dc2d0;
}

.p-footer__table-head th:not(:last-child) {
  border-right: 1px solid #fff;
}

.p-footer__table td span {
  display: inline-block;
}

.p-footer__text {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #000;
  text-align: left;
}

.p-footer__copy {
  margin-top: 60px;
  margin-top: 3.75rem;
  color: #000;
}

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

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

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

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

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

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

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

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

.p-header {
  height: 0;
}

.p-header__logo {
  display: none;
}

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

.p-header__nav {
  display: none;
}

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

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

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

.p-identity {
  padding-block: 40px 30px;
  padding-block: 2.5rem 1.875rem;
  position: relative;
  z-index: 0;
  margin-top: 140px;
  margin-top: 8.75rem;
}

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

.p-identity__img {
  margin-inline: calc(50% - 50cqi);
  margin-top: 10px;
  margin-top: .625rem;
}

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

.p-identity__img:last-child {
  margin-top: 30px;
  margin-top: 1.875rem;
}

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

.p-identity__list {
  padding-inline: 2.6666666667vw;
  padding-block: 10px;
  padding-block: .625rem;
  position: relative;
  background-color: #fff;
  min-height: 180px;
  min-height: 11.25rem;
}

.p-identity__list-number {
  position: absolute;
  top: -20px;
  top: -1.25rem;
  right: 0;
  color: #fff100;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.p-identity__list-title {
  color: #1d2088;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
}

.p-identity__list-text {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: clamp(12px, 7.952px + 1.081vw, 14px);
  font-size: clamp(.75rem, .497rem + 1.081vw, .875rem);
  font-weight: 500;
  line-height: 1.5;
}

.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 {
  aspect-ratio: 375/450;
  position: relative;
  background: url(../img/mv_top.webp) no-repeat center center/contain;
  width: 100%;
  height: 100%;
}

.p-top .p-mv {
  background: url(../img/mv_top.webp) no-repeat center center/contain;
}

.p-dr .p-mv {
  background: url(../img/mv_dr.webp) no-repeat center center/contain;
}

.p-dh .p-mv {
  background: url(../img/mv_dh.webp) no-repeat center center/contain;
}

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

.p-dr .p-mv__title-body {
  top: 41%;
}

.p-dh .p-mv__title-body {
  top: 41%;
}

.p-mv__title {
  display: inline-block;
  background-color: #fff;
  padding-right: 5px;
  padding-right: .3125rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  color: #1d2088;
  font-size: 6.9333333333vw;
  font-weight: 700;
}

.p-mv__title--pink {
  color: #eb6d8e;
}

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

.p-mv__logo {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  margin-top: -90px;
  margin-top: -5.625rem;
  width: 100%;
  max-width: 230px;
  max-width: 14.375rem;
}

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

.p-mv__logo-text {
  display: block;
  margin-top: 5px;
  margin-top: .3125rem;
  color: #1d2088;
  font-weight: 500;
  letter-spacing: .6em;
  text-align: center;
}

.p-mv__address {
  margin-top: 10px;
  margin-top: .625rem;
  color: #000;
  text-align: center;
}

.p-mv__btn {
  margin-top: 2em;
  text-align: center;
}

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

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

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

.p-number__item--holiday {
  grid-area: holiday;
  background-color: #1d2088;
  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-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #1d2088;
  width: 2em;
  height: 2em;
  color: #1d2088;
  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: #1d2088;
  color: #fff;
}

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

/************************************************************************
* p-pc-background
************************************************************************/
.p-pc-background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -2;
  background-image: url(../img/common/bg.svg);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  width: 100%;
  height: auto;
}

/************************************************************************
* p-point
************************************************************************/
.p-point {
  margin-top: 100px;
  margin-top: 6.25rem;
  background-color: #1d2088;
  padding: clamp(15.008px, 5.392px + 2.564vw, 20px) 0 clamp(20px, 4.608px + 4.103vw, 28px);
  padding: clamp(.938rem, .337rem + 2.564vw, 1.25rem) 0 clamp(1.25rem, .288rem + 4.103vw, 1.75rem);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.p-point__title {
  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;
  font-size: 3.7333333333vw;
  text-transform: uppercase;
}

.p-point__title::before {
  display: inline-block;
  -webkit-transform: rotate(-23deg);
  transform: rotate(-23deg);
  margin-right: 7px;
  margin-right: .4375rem;
  background-color: #fff;
  width: 1px;
  width: .0625rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.p-point__title::after {
  display: inline-block;
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
  margin-left: 2px;
  margin-left: .125rem;
  background-color: #fff;
  width: 1px;
  width: .0625rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

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

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

.p-point__text {
  font-size: clamp(26px, 17.888px + 2.162vw, 30px);
  font-size: clamp(1.625rem, 1.118rem + 2.162vw, 1.875rem);
}

.p-point__amount {
  color: #fff100;
  font-size: clamp(26px, 17.888px + 2.162vw, 30px);
  font-size: clamp(1.625rem, 1.118rem + 2.162vw, 1.875rem);
  line-height: 1;
}

.p-point__amount-large {
  font-size: clamp(44px, 31.84px + 3.243vw, 50px);
  font-size: clamp(2.75rem, 1.99rem + 3.243vw, 3.125rem);
}

.p-point__amount-full {
  color: #fff100;
  font-size: 40px;
  font-size: 2.5rem;
}

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

.p-point__notes {
  margin-top: 25px;
  margin-top: 1.5625rem;
  border: 1px solid #fff;
  padding: 10px;
  padding: .625rem;
  font-weight: 500;
  text-align: left;
}

.p-point__note-item {
  padding-left: 1em;
  text-indent: -1em;
}

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

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

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

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

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

.p-tour__text {
  margin-top: 4vw;
  font-size: clamp(12px, 7.952px + 1.081vw, 14px);
  font-size: clamp(.75rem, .497rem + 1.081vw, .875rem);
  font-weight: 500;
}

.p-tour__img {
  margin-inline: calc(50% - 50cqi);
  margin-top: 30px;
  margin-top: 1.875rem;
}

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

.p-tour__box {
  margin-top: 10px;
  margin-top: .625rem;
  background-color: #fff;
  padding: clamp(10px, 2.304px + 2.051vw, 14px);
  padding: clamp(.625rem, .144rem + 2.051vw, .875rem);
}

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

.p-tour__lists {
  color: #1d2088;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: clamp(16px, 12.16px + 1.026vw, 18px);
  font-size: clamp(1rem, .76rem + 1.026vw, 1.125rem);
  font-weight: 700;
}

.p-tour__list {
  padding-left: 1em;
  text-indent: -1em;
}

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

.p-tour__note {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #1d2088;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.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: 14px;
    font-size: .875rem;
  }

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

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

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }

  .p-charm__list a {
    padding-inline: 15px;
    padding-inline: .9375rem;
  }

  .p-charm__list-label {
    min-width: 180px;
    min-width: 11.25rem;
    height: 30px;
    height: 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-charm__list-title {
    font-size: 26px;
    font-size: 1.625rem;
    letter-spacing: .2em;
  }

  .p-charm__list-title-large {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-charm__list-img {
    width: 258px;
    width: 16.125rem;
  }

  .p-charm__list:nth-child(odd) .p-charm__list-img {
    margin-right: -18px;
    margin-right: -1.125rem;
  }

  .p-charm__list:nth-child(even) .p-charm__list-img {
    margin-left: -18px;
    margin-left: -1.125rem;
  }

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

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

  .p-footer__table th {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-footer__table td {
    font-size: 12px;
    font-size: .75rem;
  }

  .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-identity__img {
    margin-right: -30px;
    margin-left: -30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-identity__list {
    padding-inline: 15px;
    padding-inline: .9375rem;
  }

  .p-identity__list-text {
    font-size: 14px;
    font-size: .875rem;
  }

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

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

  .p-mv__logo {
    margin-top: -105px;
    margin-top: -6.5625rem;
    max-width: 265px;
    max-width: 16.5625rem;
  }

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

  .p-point__text {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-point__amount {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-point__amount-large {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .p-tour__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-tour__img {
    margin-right: -30px;
    margin-left: -30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-tour__box {
    padding: 14px;
    padding: .875rem;
  }

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

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

  .p-article__title {
    font-size: 24px;
  }

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

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

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

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

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

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

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

  .u-onlyPc {
    display: block;
  }

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

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

  .p-header__logo {
    margin-inline: auto;
    display: block;
    width: 100%;
    max-width: 200px;
    max-width: 12.5rem;
  }

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

  .p-header__drawer {
    display: none;
  }
}

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

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

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

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

  .p-number__value-large {
    font-size: 48px;
    font-size: 3rem;
  }
}
/*# sourceMappingURL=map/style.css.map */