@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: #2a2a2a;
  font-family: '游ゴシック体', '游ゴシック', 'Yu Gothic', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', 'Meiryo', 'MS Pゴシック', 'MS PGothic', 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-staggerCards > * {
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  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 {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #2a2a2a;
}

/************************************************************************
* 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: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

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: #2a2a2a;
  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 #24afc8;
  border-bottom: .25em solid #24afc8;
  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('../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-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: #24afc8;
}

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

#toc_container .toc_list li {
  color: #2a2a2a;
}

#toc_container .toc_list li::before {
  display: none;
  color: #24afc8;
}

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

#toc_container .toc_list a {
  color: #2a2a2a;
}

.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;
  background-color: #fff;
  width: 100%;
}

.l-header.is-fixed {
  -webkit-box-shadow: 0 .1875rem .375rem rgba(0, 0, 0, .1);
  box-shadow: 0 .1875rem .375rem rgba(0, 0, 0, .1);
}

.c-accordion {
  gap: 12px;
  gap: .75rem;
  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;
  width: 100%;
  max-width: 640px;
  max-width: 40rem;
}

.c-accordion__item {
  border: 1px solid #daedf3;
  border-radius: .5rem;
  background-color: #fff;
  overflow: hidden;
}

.c-accordion__heading {
  margin: 0;
}

.c-accordion__trigger {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  cursor: pointer;
  border: none;
  background: none;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
  width: 100%;
  color: #2a2a2a;
  font: inherit;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  text-align: left;
}

.c-accordion__trigger::after {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  color: #24afc8;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  content: '+';
}

.c-accordion__trigger:hover, .c-accordion__trigger:focus-visible {
  outline: none;
  background-color: #e6f7fb;
}

.c-accordion__trigger[aria-expanded=true]::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows .3s ease;
  transition: grid-template-rows .3s ease;
  transition: grid-template-rows .3s ease, -ms-grid-rows .3s ease;
}

.c-accordion__item.is-open .c-accordion__panel {
  grid-template-rows: 1fr;
}

.c-accordion__panelInner {
  overflow: hidden;
}

.c-accordion__body {
  margin: 0;
  padding: 4px 20px 16px;
  padding: .25rem 1.25rem 1rem;
  color: #5a5a5a;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.c-accordion__item.is-open .c-accordion__trigger {
  background-color: #e6f7fb;
}

/************************************************************************
* 基本形
************************************************************************/
.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: #24afc8;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  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: #24afc8;
}

/************************************************************************
* 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: #24afc8;
  background-color: #24afc8;
  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(28.2203389831, 137.1822033898, 156.7796610169);
  background-color: #24afc8;
  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: #24afc8;
}

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

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #24afc8;
  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-cardList {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  width: 100%;
  list-style: none;
}

.c-card {
  gap: 12px;
  gap: .75rem;
  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-shadow: 0 .125rem .5rem rgba(0, 0, 0, .04);
  box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .04);
  border: 1px solid #daedf3;
  border-radius: .5rem;
  background-color: #fff;
  padding: 24px;
  padding: 1.5rem;
}

.c-card__label {
  margin: 0;
  color: #24afc8;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.c-card__title {
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-card__text {
  margin: 0;
  color: #5a5a5a;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.c-modal {
  inset: 0;
  display: none;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  padding: 1.25rem;
}

.c-modal.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-modal__overlay {
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, .5);
}

.c-modal__dialog {
  gap: 16px;
  gap: 1rem;
  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;
  -webkit-box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15);
  box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15);
  border-radius: .5rem;
  background-color: #fff;
  padding: 24px;
  padding: 1.5rem;
  width: 100%;
  max-width: 480px;
  max-width: 30rem;
  max-height: calc(100vh - 2.5rem);
}

.c-modal__header {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-modal__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.c-modal__close {
  display: grid;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  place-items: center;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: #f4fafc;
  padding: 0;
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  color: #2a2a2a;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.c-modal__close:hover, .c-modal__close:focus-visible {
  outline: none;
  background-color: #daedf3;
}

.c-modal__body {
  overflow-y: auto;
  color: #5a5a5a;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.c-modal__footer {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.c-totop {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  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);
  border-radius: .5rem;
  background-color: #ff751f;
  padding: 12px 10px;
  padding: .75rem .625rem;
  min-width: 64px;
  min-width: 4rem;
  color: #fff;
  text-decoration: none;
}

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

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
  color: #fff;
  text-decoration: none;
}

.c-totop__arrow {
  display: block;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 14px;
  width: .875rem;
  height: 14px;
  height: .875rem;
}

.c-totop__text {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.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: #000;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #000;
  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: #000;
  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 #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body 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-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: #24afc8;
  font-weight: 700;
}

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

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

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: rgba(255, 255, 255, .5);
  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: #b2b2b2;
  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 #24afc8;
  width: 2em;
  height: 2em;
  color: #24afc8;
  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: #24afc8;
  color: #fff;
}

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

/************************************************************************
* コンポーネント集ページ
************************************************************************/
.p-componentsPage {
  background-color: #f4fafc;
}

.p-componentsHeader {
  background-color: #1c1c1c;
  padding: 16px 0;
  padding: 1rem 0;
  color: #fff;
}

.p-componentsHeader__inner {
  gap: 8px 24px;
  gap: .5rem 1.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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-componentsHeader__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-componentsHeader__desc {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-size: .8125rem;
}

.p-componentsHeader__links a {
  color: #ffde59;
  font-size: 14px;
  font-size: .875rem;
  text-decoration: underline;
}

.p-components {
  gap: 32px;
  gap: 2rem;
  margin-inline: auto;
  display: grid;
  padding: 32px 20px 80px;
  padding: 2rem 1.25rem 5rem;
  max-width: 1200px;
  max-width: 75rem;
}

.p-components__nav {
  border: 1px solid #daedf3;
  border-radius: .5rem;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
}

.p-components__navTitle {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.p-components__navList {
  gap: 8px;
  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;
}

.p-components__navList a {
  display: block;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  border-radius: .25rem;
  padding: 8px 12px;
  padding: .5rem .75rem;
  color: #2a2a2a;
  font-size: 14px;
  font-size: .875rem;
  text-decoration: none;
}

.p-components__navList a:hover, .p-components__navList a:focus-visible {
  background-color: #e6f7fb;
}

.p-components__main {
  gap: 48px;
  gap: 3rem;
  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-width: 0;
}

.p-components__intro {
  border: 1px solid #daedf3;
  border-radius: .5rem;
  background-color: #fff;
  padding: 24px;
  padding: 1.5rem;
}

.p-components__heading {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}

.p-components__lead {
  color: #5a5a5a;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.8;
}

.p-components__section {
  gap: 16px;
  gap: 1rem;
  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;
  border: 1px solid #daedf3;
  border-radius: .5rem;
  background-color: #fff;
  padding: 24px;
  padding: 1.5rem;
}

.p-components__sectionTitle {
  border-bottom: 2px solid #24afc8;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-components__sectionDesc {
  color: #5a5a5a;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7;
}

.p-components__sectionDesc code {
  border-radius: .25rem;
  background-color: #f4fafc;
  padding: 2px 6px;
  padding: .125rem .375rem;
  font-size: 13px;
  font-size: .8125rem;
}

.p-components__preview {
  border: 1px dashed #daedf3;
  border-radius: .5rem;
  background-color: #f4fafc;
  padding: 24px;
  padding: 1.5rem;
}

.p-components__previewInner {
  gap: 16px;
  gap: 1rem;
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-components__previewInner--stack {
  display: block;
  width: 100%;
}

.p-components__previewGroup {
  gap: 12px;
  gap: .75rem;
  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;
  width: 100%;
}

.p-components__previewLabel {
  margin: 0;
  color: #909090;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-components__previewNote {
  margin: 0;
  color: #5a5a5a;
  font-size: 14px;
  font-size: .875rem;
}

.p-components__source {
  gap: 8px;
  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;
}

.p-components__sourceLabel {
  color: #909090;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
}

.p-components__code {
  border-radius: .375rem;
  background-color: #1c1c1c;
  padding: 16px;
  padding: 1rem;
  overflow-x: auto;
  color: #e8e8e8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  gap: 6px;
  gap: .375rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -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: 41;
  cursor: pointer;
  padding: 12px 8px;
  padding: .75rem .5rem;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #2a2a2a;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__label {
  color: #2a2a2a;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #2a2a2a;
  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(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) 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: 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: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #2a2a2a;
  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-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
}

.p-footer {
  background-color: #1c1c1c;
  padding-top: 44px;
  padding-top: 2.75rem;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  text-align: left;
}

.p-footer__lead {
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, .82);
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-footer__nav {
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
}

.p-footer__navList {
  gap: 12px 28px;
  gap: .75rem 1.75rem;
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-footer__navLink {
  -webkit-transition: color .3s;
  transition: color .3s;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-decoration: none;
}

.p-footer__navLink:hover {
  color: #fff;
  text-decoration: none;
}

.p-footer__copy {
  color: rgba(255, 255, 255, .5);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  background-color: #fff;
  padding-top: var(--header-height, 60px);
  overflow: hidden;
}

.p-fv__main {
  position: relative;
}

.p-fv__media {
  display: block;
  width: 100%;
}

.p-fv__img {
  display: block;
  vertical-align: top;
  width: 100%;
  height: auto;
}

.p-header {
  position: relative;
  background-color: #fff;
  padding-top: 8px;
  padding-top: .5rem;
  padding-bottom: 8px;
  padding-bottom: .5rem;
}

.p-header__inner {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 41;
  line-height: 1;
}

.p-header__logo a {
  display: block;
}

.p-header__logo img {
  display: block;
  width: 168px;
  width: 10.5rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-header__navList {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__navLink {
  -webkit-transition: color .3s;
  transition: color .3s;
  color: rgba(42, 42, 42, .85);
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.p-header__navLink:hover {
  color: #24afc8;
  text-decoration: none;
}

.p-header__cta {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  border-radius: 6.1875rem;
  background-color: #24afc8;
  padding: 8px 22px;
  padding: .5rem 1.375rem;
  min-height: 40px;
  min-height: 2.5rem;
  color: #fff;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.p-header__cta:hover {
  opacity: .85;
  color: #fff;
  text-decoration: none;
}

.p-header__cta--drawer {
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
}

.p-header__drawer {
  margin-left: auto;
}

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

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

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

/************************************************************************
* p-top 共通
************************************************************************/
.p-topSection {
  position: relative;
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}

.p-topSection__head {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  text-align: left;
}

.p-topSection__label {
  display: inline-block;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  border-radius: 6.1875rem;
  background-color: #e6f7fb;
  padding: 6px 18px;
  padding: .375rem 1.125rem;
  color: #24afc8;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.p-topSection__title {
  color: #2a2a2a;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.p-topSection__lead {
  margin-top: 12px;
  margin-top: .75rem;
  color: #5a5a5a;
  font-size: 21px;
  font-size: 1.3125rem;
}

.p-topWave {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 52px;
  height: 3.25rem;
  pointer-events: none;
}

.p-topWave--down {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 52' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 13c240 26 480 39 720 39s480-13 720-39v39H0z'/%3E%3C/svg%3E");
}

.p-topWave--white {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 52' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 13c240 26 480 39 720 39s480-13 720-39v39H0z'/%3E%3C/svg%3E");
}

.p-topWave--light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 52' preserveAspectRatio='none'%3E%3Cpath fill='%23f4fafc' d='M0 13c240 26 480 39 720 39s480-13 720-39v39H0z'/%3E%3C/svg%3E");
}

.p-topWave--primary {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 52' preserveAspectRatio='none'%3E%3Cpath fill='%2324afc8' d='M0 33c240-26 480-39 720-39s480 13 720 39v19H0z'/%3E%3C/svg%3E");
}

/************************************************************************
* service
************************************************************************/
.p-service {
  background-color: #f4fafc;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.p-serviceGuide {
  margin-bottom: 56px;
  margin-bottom: 3.5rem;
}

.p-serviceGuide__head {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-align: left;
}

.p-serviceGuide__title {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  color: #2a2a2a;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.p-serviceGuide__lead {
  color: #5a5a5a;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-serviceGuide__list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
}

.p-serviceGuide__card {
  -webkit-box-shadow: 0 .125rem 1.125rem rgba(0, 0, 0, .07);
  box-shadow: 0 .125rem 1.125rem rgba(0, 0, 0, .07);
  border-radius: 1.375rem;
  background-color: #fff;
  padding: 28px 24px 32px;
  padding: 1.75rem 1.5rem 2rem;
}

.p-serviceGuide__icon {
  display: block;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
}

.p-serviceGuide__type {
  margin-bottom: 8px;
  margin-bottom: .5rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: left;
}

.p-serviceGuide__card--primary .p-serviceGuide__type {
  color: #24afc8;
}

.p-serviceGuide__card--orange .p-serviceGuide__type {
  color: #ff751f;
}

.p-serviceGuide__cardTitle {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  color: #2a2a2a;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.p-serviceGuide__card--primary .p-serviceGuide__em {
  color: #24afc8;
}

.p-serviceGuide__card--orange .p-serviceGuide__em {
  color: #ff751f;
}

.p-serviceGuide__cardLead {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #daedf3;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  color: #5a5a5a;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.p-serviceGuide__listLabel {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  color: #909090;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.p-serviceGuide__features {
  gap: 10px;
  gap: .625rem;
  display: grid;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-serviceGuide__features li {
  position: relative;
  padding-left: 22px;
  padding-left: 1.375rem;
  color: #5a5a5a;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.p-serviceGuide__features li::before {
  position: absolute;
  top: 9px;
  top: .5625rem;
  left: 0;
  border-radius: 50%;
  background-color: #24afc8;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-serviceGuide__card--orange .p-serviceGuide__features li::before {
  background-color: #ff751f;
}

.p-serviceGuide__match {
  border-radius: .75rem;
  background-color: #f4fafc;
  padding: 14px 16px;
  padding: .875rem 1rem;
  color: #2a2a2a;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}

.p-service__listHead {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-align: left;
}

.p-service__listTitle {
  margin-bottom: 8px;
  margin-bottom: .5rem;
  color: #2a2a2a;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.p-service__listLead {
  color: #5a5a5a;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7;
}

.p-service__list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
}

.p-service__card {
  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-shadow: 0 .125rem .6875rem rgba(0, 0, 0, .07);
  box-shadow: 0 .125rem .6875rem rgba(0, 0, 0, .07);
  border-radius: 1.375rem;
  background-color: #fff;
  padding: 28px;
  padding: 1.75rem;
  height: 100%;
}

.p-service__cardIcon {
  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-bottom: 16px;
  margin-bottom: 1rem;
}

.p-service__cardIcon img {
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-service__cardHead {
  gap: 12px;
  gap: .75rem;
  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-bottom: 18px;
  margin-bottom: 1.125rem;
}

.p-service__num {
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}

.p-service__num--primary {
  color: #24afc8;
}

.p-service__num--orange {
  color: #ff751f;
}

.p-service__num--red {
  color: #c53e27;
}

.p-service__num--green {
  color: #4d894a;
}

.p-service__tag {
  display: inline-block;
  border-radius: 6.1875rem;
  padding: 4px 12px;
  padding: .25rem .75rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.p-service__tag--primary {
  background-color: rgba(36, 175, 200, .1);
  color: #24afc8;
}

.p-service__tag--orange {
  background-color: rgba(255, 117, 31, .1);
  color: #ff751f;
}

.p-service__tag--red {
  background-color: rgba(197, 62, 39, .1);
  color: #c53e27;
}

.p-service__tag--green {
  background-color: rgba(77, 137, 74, .1);
  color: #4d894a;
}

.p-service__cardTitle {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
}

.p-service__cardText {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  color: #5a5a5a;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.9;
}

.p-service__price {
  gap: 8px;
  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-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid #daedf3;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.p-service__priceRow {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-service__priceLabel {
  color: #909090;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-service__priceValue {
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 700;
}

.p-service__priceValue--primary {
  color: #24afc8;
}

.p-service__priceValue--orange {
  color: #ff751f;
}

.p-service__priceValue--red {
  color: #c53e27;
}

.p-service__priceValue--green {
  color: #4d894a;
}

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

.p-service__priceNote {
  margin: 0;
  color: #909090;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.p-service__note {
  margin-top: 32px;
  margin-top: 2rem;
  color: #5a5a5a;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

/************************************************************************
* reason
************************************************************************/
.p-reason {
  background-color: #fff;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
}

.p-reason__list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
}

.p-reason__card {
  border-radius: 1.5rem;
  background-color: #f4fafc;
  padding: 44px 28px 32px;
  padding: 2.75rem 1.75rem 2rem;
  text-align: left;
}

.p-reason__icon {
  display: block;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  font-size: 69px;
  font-size: 4.3125rem;
  line-height: 1;
  text-align: center;
}

.p-reason__cardTitle {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 700;
  text-align: center;
}

.p-reason__cardTitle--primary {
  color: #24afc8;
}

.p-reason__cardTitle--orange {
  color: #ff751f;
}

.p-reason__cardTitle--green {
  color: #4d894a;
}

.p-reason__cardText {
  color: #5a5a5a;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.95;
  text-align: left;
}

/************************************************************************
* works
************************************************************************/
.p-works {
  background-color: #fff;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
}

.p-works__list {
  gap: 24px;
  gap: 1.5rem;
  display: grid;
}

.p-works__card {
  -webkit-box-shadow: 0 .125rem 1.375rem rgba(0, 0, 0, .07);
  box-shadow: 0 .125rem 1.375rem rgba(0, 0, 0, .07);
  border-radius: 1.375rem;
  background-color: #fff;
  overflow: hidden;
}

.p-works__thumb {
  position: relative;
  background-color: rgba(36, 175, 200, .07);
  min-height: 148px;
  min-height: 9.25rem;
  overflow: hidden;
}

.p-works__thumb--primary {
  background-color: rgba(36, 175, 200, .07);
}

.p-works__thumb--orange {
  background-color: rgba(255, 117, 31, .07);
}

.p-works__thumb--red {
  background-color: rgba(197, 62, 39, .07);
}

.p-works__thumb:has(.p-works__thumbPreview) {
  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-works__thumbMedia {
  display: block;
}

.p-works__thumbImg {
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.p-works__thumb--primary .p-works__thumbImg {
  aspect-ratio: auto;
  height: auto;
  -o-object-fit: unset;
  object-fit: unset;
  -o-object-position: unset;
  object-position: unset;
}

.p-works__thumbBadge {
  position: absolute;
  top: 16px;
  top: 1rem;
  left: 16px;
  left: 1rem;
  z-index: 1;
  border-radius: 6.1875rem;
  background-color: #24afc8;
  padding: 4px 13px;
  padding: .25rem .8125rem;
  color: #fff;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.p-works__thumb--orange .p-works__thumbBadge {
  background-color: #ff751f;
}

.p-works__thumb--red .p-works__thumbBadge {
  background-color: #c53e27;
}

.p-works__thumbPreview {
  color: #24afc8;
  font-family: 'Roboto Mono', monospace;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-works__thumb--orange .p-works__thumbPreview {
  color: #ff751f;
}

.p-works__thumb--red .p-works__thumbPreview {
  color: #c53e27;
}

.p-works__body {
  padding: 24px;
  padding: 1.5rem;
}

.p-works__cardTitle {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
}

.p-works__cardText {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #5a5a5a;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.85;
}

.p-works__tags {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-works__tags li {
  border-radius: 6.1875rem;
  background-color: #f4fafc;
  padding: 4px 11px;
  padding: .25rem .6875rem;
  color: #909090;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
}

/************************************************************************
* about
************************************************************************/
.p-about {
  background-color: #f4fafc;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
}

.p-about__inner {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
}

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

.p-about__avatar {
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
  width: 164px;
  width: 10.25rem;
}

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

.p-about__name {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
}

.p-about__nameSub {
  margin-top: 4px;
  margin-top: .25rem;
  color: #909090;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-about__title {
  margin: 16px 0;
  margin: 1rem 0;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-about__text {
  margin-bottom: 12px;
  margin-bottom: .75rem;
  color: #5a5a5a;
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 2.1;
}

.p-about__text strong {
  color: #2a2a2a;
  font-weight: 700;
}

.p-about__text--lead {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #2a2a2a;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}

.p-about__tags {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-about__tags li {
  border: 1px solid #daedf3;
  border-radius: 6.1875rem;
  background-color: #fff;
  padding: 10px 22px;
  padding: .625rem 1.375rem;
  color: #24afc8;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
}

/************************************************************************
* flow
************************************************************************/
.p-flow {
  background-color: #fff;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
}

.p-flow__list {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-flow__item {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1.125rem;
  background-color: #f4fafc;
  padding: 24px;
  padding: 1.5rem;
}

.p-flow__num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 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-radius: 50%;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  color: #fff;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
}

.p-flow__num--primary {
  background-color: #24afc8;
}

.p-flow__num--green {
  background-color: #4d894a;
}

.p-flow__num--orange {
  background-color: #ff751f;
}

.p-flow__num--yellow {
  background-color: #ffde59;
  color: #333;
}

.p-flow__num--red {
  background-color: #c53e27;
}

.p-flow__title {
  margin-bottom: 8px;
  margin-bottom: .5rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-flow__text {
  color: #5a5a5a;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.85;
}

.p-flow__message {
  margin-top: 32px;
  margin-top: 2rem;
  border-radius: 1.125rem;
  background-color: #e6f7fb;
  padding: 24px;
  padding: 1.5rem;
  text-align: left;
}

.p-flow__messageTitle {
  margin-bottom: 8px;
  margin-bottom: .5rem;
  color: #24afc8;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

.p-flow__messageText {
  color: #5a5a5a;
  font-size: 20px;
  font-size: 1.25rem;
}

/************************************************************************
* contact
************************************************************************/
.p-contact {
  background-color: #24afc8;
  padding-top: 88px;
  padding-top: 5.5rem;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
  text-align: left;
}

.p-contact__title {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-contact__lead {
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, .82);
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2;
}

.p-contact__form {
  margin: 0 auto;
  border-radius: 1.25rem;
  background-color: #fff;
  padding: 28px 20px;
  padding: 1.75rem 1.25rem;
  max-width: 720px;
  max-width: 45rem;
  text-align: left;
}

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

.p-contact__formGrid {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-contact__field--full {
  grid-column: 1/-1;
}

.p-contact__label {
  display: block;
  margin-bottom: 8px;
  margin-bottom: .5rem;
  color: #2a2a2a;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-contact__required {
  color: #c53e27;
  font-size: 16px;
  font-size: 1rem;
}

.p-contact__optional {
  color: #909090;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 400;
}

.p-contact__input,
.p-contact__textarea,
.p-contact__select {
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  border: 1px solid #daedf3;
  border-radius: .5rem;
  background-color: #f4fafc;
  padding: 14px 16px;
  padding: .875rem 1rem;
  width: 100%;
  color: #2a2a2a;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.p-contact__input:focus,
.p-contact__textarea:focus,
.p-contact__select:focus {
  outline: none;
  border-color: #24afc8;
  background-color: #fff;
}

.p-contact__input::-webkit-input-placeholder,
.p-contact__textarea::-webkit-input-placeholder,
.p-contact__select::-webkit-input-placeholder {
  color: #909090;
}

.p-contact__input::-moz-placeholder,
.p-contact__textarea::-moz-placeholder,
.p-contact__select::-moz-placeholder {
  color: #909090;
}

.p-contact__input::-ms-input-placeholder,
.p-contact__textarea::-ms-input-placeholder,
.p-contact__select::-ms-input-placeholder {
  color: #909090;
}

.p-contact__input::placeholder,
.p-contact__textarea::placeholder,
.p-contact__select::placeholder {
  color: #909090;
}

.p-contact__textarea {
  min-height: 160px;
  min-height: 10rem;
  resize: vertical;
}

.p-contact__selectWrap {
  position: relative;
}

.p-contact__selectWrap::after {
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-70%) rotate(45deg);
  transform: translateY(-70%) rotate(45deg);
  border-right: 2px solid #909090;
  border-bottom: 2px solid #909090;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  pointer-events: none;
  content: '';
}

.p-contact__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  padding-right: 2.5rem;
}

.p-contact__privacy {
  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: 24px;
  margin-top: 1.5rem;
}

.p-contact__checkboxLabel {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
}

.p-contact__checkbox {
  accent-color: #24afc8;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 4px;
  margin-top: .25rem;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-contact__checkboxText {
  color: #5a5a5a;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.p-contact__checkboxText a {
  color: #24afc8;
  text-decoration: underline;
}

.p-contact__checkboxText a:hover {
  text-decoration: none;
}

.p-contact__submitWrap {
  margin-top: 28px;
  margin-top: 1.75rem;
  text-align: left;
}

.p-contact__submitNote {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #5a5a5a;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.p-contact__submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: pointer;
  -webkit-box-shadow: 0 .375rem .875rem rgba(0, 0, 0, .12);
  box-shadow: 0 .375rem .875rem rgba(0, 0, 0, .12);
  border: none;
  border-radius: 6.1875rem;
  background-color: #24afc8;
  padding: 14px 48px;
  padding: .875rem 3rem;
  min-width: 240px;
  min-width: 15rem;
  min-height: 60px;
  min-height: 3.75rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-contact__submit:hover {
  opacity: .9;
}

.p-contact__submit:disabled {
  opacity: 1;
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #b2b2b2;
}

/************************************************************************
* thanks / privacy
************************************************************************/
.p-thanks,
.p-privacy {
  background-color: #f4fafc;
}

.p-thanks__section,
.p-privacy__section {
  padding-top: calc(var(--header-height, 5rem) + 3rem);
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
}

.p-thanks__section {
  text-align: left;
}

.p-thanks__icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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-bottom: 24px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background-color: #e6f7fb;
  width: 72px;
  width: 4.5rem;
  height: 72px;
  height: 4.5rem;
  color: #24afc8;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
}

.p-thanks__title {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #2a2a2a;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-thanks__lead {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #5a5a5a;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
}

.p-thanks__note {
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
  color: #909090;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.p-thanks__btn,
.p-privacy__back {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  border-radius: 6.1875rem;
  background-color: #24afc8;
  padding: 12px 40px;
  padding: .75rem 2.5rem;
  min-height: 56px;
  min-height: 3.5rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.p-thanks__btn:hover,
.p-privacy__back:hover {
  opacity: .9;
  color: #fff;
  text-decoration: none;
}

.p-privacy__title {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  color: #2a2a2a;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.p-privacy__body {
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
  -webkit-box-shadow: 0 .25rem 1.25rem rgba(0, 0, 0, .04);
  box-shadow: 0 .25rem 1.25rem rgba(0, 0, 0, .04);
  border-radius: 1rem;
  background-color: #fff;
  padding: 32px 24px;
  padding: 2rem 1.5rem;
  max-width: 760px;
  max-width: 47.5rem;
  color: #5a5a5a;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}

.p-privacy__body h2 {
  margin: 32px 0 12px;
  margin: 2rem 0 .75rem;
  color: #2a2a2a;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-privacy__body a {
  color: #24afc8;
}

.p-privacy__date {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #909090;
  font-size: 16px;
  font-size: 1rem;
}

.p-privacy__back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

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

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

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

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

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

  html {
    font-size: 1.5094339623vw;
    font-size: calc(var(--vw-unitless) / 1060 * 100%);
  }

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

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

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

  .l-container.l-container--lp {
    max-width: 1260px;
  }

  .c-cardList {
    grid-template-columns: repeat(3, 1fr);
  }

  .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-components {
    padding-inline: 40px;
    padding-inline: 2.5rem;
    grid-template-columns: 13.75rem 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .p-components__nav {
    position: -webkit-sticky;
    position: sticky;
    top: 24px;
    top: 1.5rem;
  }

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

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

  .p-footer__navList {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-header__logo img {
    width: 200px;
    width: 12.5rem;
  }

  .p-topSection {
    padding-top: 88px;
    padding-top: 5.5rem;
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
  }

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

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

  .p-topSection__lead {
    font-size: 23px;
    font-size: 1.4375rem;
  }

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

  .p-serviceGuide__title {
    font-size: 28px;
    font-size: 1.75rem;
  }

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

  .p-serviceGuide__list {
    gap: 28px;
    gap: 1.75rem;
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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

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

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

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

  .p-service__listTitle {
    font-size: 28px;
    font-size: 1.75rem;
  }

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

  .p-service__list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .p-reason__list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .p-works__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-about__inner {
    gap: 56px;
    gap: 3.5rem;
    grid-template-columns: 21.25rem 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .p-flow__list {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .p-contact__title {
    font-size: 60px;
    font-size: 3.75rem;
  }

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

  .p-contact__form {
    padding: 40px 36px;
    padding: 2.5rem 2.25rem;
  }

  .p-contact__formGrid {
    gap: 24px;
    gap: 1.5rem;
  }

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

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

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

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

  .p-privacy__body {
    padding: 40px 36px;
    padding: 2.5rem 2.25rem;
  }
}

@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-header__nav {
    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-left: auto;
  }

  .p-header__drawer {
    display: none;
  }

  .u-onlyPc {
    display: block;
  }

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

@media (min-width: 1060px) {

  html {
    font-size: 100%;
  }
}

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

  .p-fv {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

  .p-contact__submit {
    margin-inline: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-thanks__btn,
  .p-privacy__back {
    margin-inline: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

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

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .c-accordion__panel,
  .c-accordion__trigger::after {
    -webkit-transition: none;
    transition: none;
  }
}
/*# sourceMappingURL=map/style.css.map */