@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: #000;
  font-family: 'Noto Sans JP', 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 {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #000;
}

/************************************************************************
* 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: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

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

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

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

summary {

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

summary::-webkit-details-marker {

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

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

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

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

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 #0C4A6E;
  border-bottom: .25em solid #0C4A6E;
  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: #0C4A6E;
}

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

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

#toc_container .toc_list li::before {
  display: none;
  color: #0C4A6E;
}

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

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

.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: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

.l-agency-confirm {
  margin: 60px auto 100px;
  margin: 3.75rem auto 6.25rem;
  max-width: 1000px;
  max-width: 62.5rem;
}

.l-agency-thanks {
  margin: 60px auto 100px;
  margin: 3.75rem auto 6.25rem;
  max-width: 1000px;
  max-width: 62.5rem;
}

.l-catalog {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  max-width: 1000px;
  max-width: 62.5rem;
}

.l-contact {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  max-width: 1000px;
  max-width: 62.5rem;
}

.l-contact-consultation {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-contact-consultation-form {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-contact-inquiry {
  margin-top: 85px;
  margin-top: 5.3125rem;
}

.l-contact-confirm {
  margin: 60px auto 100px;
  margin: 3.75rem auto 6.25rem;
  max-width: 1000px;
  max-width: 62.5rem;
}

.l-contact-line {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

.l-contact-thanks {
  margin: 60px auto 100px;
  margin: 3.75rem auto 6.25rem;
  max-width: 1000px;
  max-width: 62.5rem;
}

.l-faq {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  max-width: 1000px;
  max-width: 62.5rem;
}

.l-faq-filter {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.l-faq-contents {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

.l-kit {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}

.l-kit-bitooku {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-kit-options {
  margin-top: 85px;
  margin-top: 5.3125rem;
}

.l-kit-contact-banner {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-kit-link {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.l-kit-detail {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-kit-detail-drawings {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-kit-detail-price {
  margin-top: 100px;
  margin-top: 6.25rem;
  padding: 85px 0 0;
  padding: 5.3125rem 0 0;
}

.l-kit-detail-specifications {
  padding: 85px 0 100px;
  padding: 5.3125rem 0 6.25rem;
}

.l-kit-detail-delivery {
  padding: 85px 0 100px;
  padding: 5.3125rem 0 6.25rem;
}

.l-kit-detail-link {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.l-news-pagination {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

.l-news {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}

.l-news-category {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-news-contents {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-news-detail {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-right: auto;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
  margin-left: auto;
  padding: 0 10px;
  padding: 0 .625rem;
  width: 100%;
  max-width: 1288px;
  max-width: 80.5rem;
}

.l-news-detail-main__contact {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-news-detail-main__map {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-news-detail-main__nav {
  margin-top: 100px;
  margin-top: 6.25rem;
}

/************************************************************************
* 基本形
************************************************************************/
.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: prop;
  transition-property: prop;
  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: #0C4A6E;
  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: #0C4A6E;
}

/************************************************************************
* 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: #0C4A6E;
  background-color: #0C4A6E;
  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(6.9836065574, 43.0655737705, 64.0163934426);
  background-color: #0C4A6E;
  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: #0C4A6E;
}

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

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #0C4A6E;
  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-contact-float {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  pointer-events: none;
}

.c-contact-float.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.c-contact-float__inner {
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(253, 249, 240, .8);
  width: 100%;
  height: 100px;
  height: 6.25rem;
}

.c-contact-float__link {
  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;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 .1875rem 0 #c39300;
  box-shadow: 0 .1875rem 0 #c39300;
  border-radius: 62.4375rem;
  background-color: #d9b034;
  padding-top: 12px;
  padding-top: .75rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  width: 330px;
  width: 20.625rem;
  min-height: 61px;
  min-height: 3.8125rem;
  color: #fff;
  text-decoration: none;
}

.c-contact-float__link:hover {
  opacity: .7;
}

.c-contact-float__text {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.c-contact-float__icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.c-contact-float__icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #fff;
  border-top: .125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: .125rem solid #fff;
  width: 7px;
  width: .4375rem;
  height: 7px;
  height: .4375rem;
  content: '';
}

.c-contact-float__mascot {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  margin-left: -44px;
  margin-left: -2.75rem;
  width: 65px;
  width: 4.0625rem;
  line-height: 0;
}

.c-contact-float__mascot img {
  display: block;
  -webkit-animation: c-header-pc-mascot-click 2s ease-in-out infinite;
  animation: c-header-pc-mascot-click 2s ease-in-out infinite;
  width: 65px;
  width: 4.0625rem;
  height: 49px;
  height: 3.0625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-contact-intro {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1rem 1rem 0 0;
  background-color: #f3f7f6;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  min-height: 267px;
  min-height: 16.6875rem;
}

.c-contact-intro .c-section-title {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.c-contact-intro__steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1;
  grid-row: 2;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 10.625rem;
  -moz-column-gap: 10.625rem;
  column-gap: 10.625rem;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.c-contact-intro__step {
  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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 80px;
  min-width: 5rem;
}

.c-contact-intro__step:not(:last-child)::after {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: calc(50% + 1.25rem);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  background-color: #919191;
  width: calc(100% - 2.5rem + 10.625rem);
  height: 1px;
  height: .0625rem;
  pointer-events: none;
  content: '';
}

.c-contact-intro__step-num {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  border-radius: 50%;
  background-color: #919191;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.c-contact-intro__step--current .c-contact-intro__step-num {
  background-color: #333;
}

.c-contact-intro__step-label {
  margin-top: 6px;
  margin-top: .375rem;
  color: #919191;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-contact-intro__step--current .c-contact-intro__step-label {
  color: #333;
  font-weight: 700;
}

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

.c-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding-top: 19px;
  padding-top: 1.1875rem;
  padding-right: 17.5px;
  padding-right: 1.09375rem;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
  padding-left: 17.5px;
  padding-left: 1.09375rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

.c-drawer__icon::after {
  display: none;
}

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

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

.c-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background-color: #000;
  width: 100%;
  height: 3px;
}

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

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

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

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

.c-drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 39;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  background-color: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
}

.c-drawer__bg.is-opened {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.c-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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #000;
  text-align: center;
}

.c-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: .375rem 0 1.5625rem rgba(0, 0, 0, .16);
  box-shadow: .375rem 0 1.5625rem rgba(0, 0, 0, .16);
}

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

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

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

.c-drawer__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.c-drawer__nav-item + .c-drawer__nav-item {
  margin-top: .5em;
}

.c-drawer__nav-link {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
}

.c-drawer__content--bitokk {
  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;
  padding-top: 0;
  padding-bottom: 0;
  width: calc(100% - 3.125rem);
  max-width: 350px;
  max-width: 21.875rem;
  text-align: left;
}

.c-drawer__accent {
  position: absolute;
  top: 0;
  left: 25px;
  left: 1.5625rem;
  z-index: 1;
  background-color: #1abab4;
  width: 25px;
  width: 1.5625rem;
  height: 100%;
}

.c-drawer__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 42px;
  top: 2.625rem;
  right: 20px;
  right: 1.25rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 39px;
  width: 2.4375rem;
  height: 39px;
  height: 2.4375rem;
}

.c-drawer__close-icon {
  display: block;
  position: relative;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

.c-drawer__close-icon::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #1abab4;
  width: 28px;
  width: 1.75rem;
  height: 3px;
  height: .1875rem;
  content: '';
}

.c-drawer__close-icon::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #1abab4;
  width: 28px;
  width: 1.75rem;
  height: 3px;
  height: .1875rem;
  content: '';
}

.c-drawer__inner--bitokk {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 157px;
  padding-top: 9.8125rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  width: 100%;
  min-height: 100%;
}

.c-drawer__content--bitokk .c-drawer__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-drawer__content--bitokk .c-drawer__nav-item {
  border-bottom: 1px solid #676767;
  border-bottom: .0625rem solid #676767;
}

.c-drawer__content--bitokk .c-drawer__nav-item:last-child {
  border-bottom: none;
}

.c-drawer__content--bitokk .c-drawer__nav-item + .c-drawer__nav-item {
  margin-top: 0;
}

.c-drawer__content--bitokk .c-drawer__nav-link {
  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-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-right: 10px;
  padding-right: .625rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-left: 10px;
  padding-left: .625rem;
  min-height: 79px;
  min-height: 4.9375rem;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.33;
  text-decoration: none;
}

.c-drawer__nav-text {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.c-drawer__nav-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.c-drawer__nav-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #333;
  border-top: .125rem solid #333;
  border-right: 2px solid #333;
  border-right: .125rem solid #333;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.c-faq-item__question {
  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-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  cursor: pointer;
  margin: 0;
  border: none;
  background-color: transparent;
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  width: 100%;
  color: #333;
  font: inherit;
  text-align: left;
}

.c-faq-item__illust {
  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: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  width: 86px;
  width: 5.375rem;
  min-width: 86px;
  min-width: 5.375rem;
  height: 86px;
  height: 5.375rem;
  line-height: 0;
}

.c-faq-item__illust img {
  display: block;
  width: auto;
  max-width: 86px;
  max-width: 5.375rem;
  height: auto;
  max-height: 86px;
  max-height: 5.375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-faq-item__mark {
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.c-faq-item__question .c-faq-item__mark {
  border: 1px solid #1abab4;
  border: .0625rem solid #1abab4;
  background-color: #1abab4;
  color: #fff;
}

.c-faq-item__answer-inner .c-faq-item__mark {
  border: 1px solid #1abab4;
  border: .0625rem solid #1abab4;
  background-color: #fff;
  color: #1abab4;
}

.c-faq-item__question-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 1px 0 0;
  margin: .0625rem 0 0;
  min-width: 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
}

.c-faq-item__icon {
  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;
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
  margin-top: 10px;
  margin-top: .625rem;
  margin-left: auto;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.c-faq-item__icon::after {
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #333;
  border-right: .125rem solid #333;
  border-bottom: 2px solid #333;
  border-bottom: .125rem solid #333;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.c-faq-item__question[aria-expanded=true] .c-faq-item__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  -webkit-transition: grid-template-rows .4s ease-in-out, -webkit-clip-path .4s ease-in-out;
  transition: grid-template-rows .4s ease-in-out, -webkit-clip-path .4s ease-in-out;
  transition: grid-template-rows .4s ease-in-out, clip-path .4s ease-in-out;
  transition: grid-template-rows .4s ease-in-out, clip-path .4s ease-in-out, -ms-grid-rows .4s ease-in-out, -webkit-clip-path .4s ease-in-out;
  overflow: hidden;
}

.c-faq-item__answer.is-open {
  grid-template-rows: 1fr;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.c-faq-item__answer-inner {
  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;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  padding-top: 10px;
  padding-top: .625rem;
  padding-right: 0;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  padding-left: 0;
  min-height: 0;
  overflow: hidden;
}

.c-faq-item__answer-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  max-width: 712px;
  max-width: 44.5rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-faq-item__answer-text p {
  margin: 0;
}

.c-faq-item__answer-text p + p {
  margin-top: 8px;
  margin-top: .5rem;
}

.c-flow-step,
.p-home-flow__step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #1abab4;
  width: 100px;
  width: 6.25rem;
  min-height: 100px;
  min-height: 6.25rem;
}

.c-flow-step__label,
.p-home-flow__step-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  color: #fff;
  line-height: 1;
}

.c-flow-step__label-en,
.p-home-flow__step-label-en {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.c-flow-step__num,
.p-home-flow__step-num {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.c-flow-step__icon,
.p-home-flow__step-icon {
  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: 0;
  margin-top: 4px;
  margin-top: .25rem;
  width: 100%;
  line-height: 0;
}

.c-flow-step__icon img,
.p-home-flow__step-icon img {
  display: block;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-footer {
  background-color: #fff;
}

.c-footer__inner {
  display: grid;
  grid-template-rows: auto auto;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.c-footer__wrapper {
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content minmax(0, 21.875rem);
  grid-template-columns: max-content max-content minmax(0, 21.875rem);
  -webkit-column-gap: 10.3125rem;
  -moz-column-gap: 10.3125rem;
  column-gap: 10.3125rem;
}

.c-footer__nav {
  border-left: 2px solid #1abab4;
  border-left: .125rem solid #1abab4;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.c-footer__nav-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.c-footer__nav-title {
  margin: 0;
  color: #1abab4;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-footer__nav-list {
  margin: 0;
  margin-top: 22px;
  margin-top: 1.375rem;
  padding: 0;
  list-style: none;
}

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

.c-footer__nav-link {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  color: #676767;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.c-footer__sns {
  margin-top: 57px;
  margin-top: 3.5625rem;
  border-left: 2px solid #1abab4;
  border-left: .125rem solid #1abab4;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.c-footer__sns-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.c-footer__sns-link {
  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-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  line-height: 1.5;
  text-decoration: none;
}

.c-footer__sns-text {
  color: #676767;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-footer__sns-link img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-footer__sns-item:nth-of-type(1) .c-footer__sns-link img {
  width: 27px;
  width: 1.6875rem;
  height: 27px;
  height: 1.6875rem;
}

.c-footer__sns-item:nth-of-type(2) .c-footer__sns-link img {
  width: 28px;
  width: 1.75rem;
  height: 20px;
  height: 1.25rem;
}

.c-footer__sns-item:nth-of-type(3) .c-footer__sns-link img {
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
}

.c-footer__sns-item--line .c-footer__sns-link img {
  width: 85px;
  width: 5.3125rem;
  height: 26px;
  height: 1.625rem;
}

.c-footer__logo {
  display: block;
  justify-self: center;
  margin-top: 32px;
  margin-top: 2rem;
  line-height: 0;
}

.c-footer__logo img {
  width: 207px;
  width: 12.9375rem;
  height: 64px;
  height: 4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-footer__bottom {
  background-color: #1abab4;
}

.c-footer__bottom .l-container {
  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;
  min-height: 30px;
  min-height: 1.875rem;
}

.c-footer__copy {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.c-footer__nav-link:hover,
.c-footer__sns-link:hover {
  opacity: .7;
}

.c-header-pc {
  background-color: #fff;
}

.c-header-pc__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 7px;
  padding-top: .4375rem;
  min-height: 100px;
  min-height: 6.25rem;
}

.c-header-pc__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  line-height: 0;
}

.c-header-pc__logo a {
  display: block;
  line-height: 0;
}

.c-header-pc__logo img {
  width: 232px;
  width: 14.5rem;
  height: 74px;
  height: 4.625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header-pc__award {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin: 0;
  margin-left: -14px;
  margin-left: -.875rem;
  line-height: 0;
}

.c-header-pc__award img {
  width: 101px;
  width: 6.3125rem;
  height: 101px;
  height: 6.3125rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header-pc__contact {
  row-gap: 4px;
  row-gap: .25rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  -webkit-column-gap: .75rem;
  -moz-column-gap: .75rem;
  column-gap: .75rem;
  margin-left: 24px;
  margin-left: 1.5rem;
}

.c-header-pc__contact-label {
  grid-column: 1;
  grid-row: 1;
  color: #1abab4;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-header-pc__hours {
  grid-column: 2;
  grid-row: 1;
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  align-self: end;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-header-pc__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1/-1;
  grid-row: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .3125rem;
  -moz-column-gap: .3125rem;
  column-gap: .3125rem;
  color: #333;
  font-family: 'League Spartan', sans-serif;
  text-decoration: none;
}

.c-header-pc__tel-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 56px;
  width: 3.5rem;
  height: 32px;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header-pc__tel-number {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-header-pc__cta {
  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;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  margin-left: auto;
  -webkit-box-shadow: 0 .1875rem 0 #c39300;
  box-shadow: 0 .1875rem 0 #c39300;
  border-radius: 2.5rem;
  background-color: #d9b034;
  padding: 15px 24px;
  padding: .9375rem 1.5rem;
  width: 300px;
  width: 18.75rem;
  height: 80px;
  height: 5rem;
  color: #fff;
  text-decoration: none;
}

.c-header-pc__cta-text {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.c-header-pc__cta-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.c-header-pc__cta-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #fff;
  border-top: .125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: .125rem solid #fff;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.c-header-pc__mascot {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
  margin: 0;
  margin-top: 26px;
  margin-top: 1.625rem;
  margin-left: -47px;
  margin-left: -2.9375rem;
  line-height: 0;
}

@-webkit-keyframes c-header-pc-mascot-click {

  0%, 52%, 100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }

  14% {
    -webkit-transform: translate(.3125rem, .4375rem) scale(.9);
    transform: translate(.3125rem, .4375rem) scale(.9);
  }

  28% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
}

@keyframes c-header-pc-mascot-click {

  0%, 52%, 100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }

  14% {
    -webkit-transform: translate(.3125rem, .4375rem) scale(.9);
    transform: translate(.3125rem, .4375rem) scale(.9);
  }

  28% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
}

.c-header-pc__mascot img {
  -webkit-transform-origin: 72% 88%;
  transform-origin: 72% 88%;
  -webkit-animation: c-header-pc-mascot-click 2s ease-in-out infinite;
  animation: c-header-pc-mascot-click 2s ease-in-out infinite;
  width: 87px;
  width: 5.4375rem;
  height: 65px;
  height: 4.0625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header-pc__bottom {
  background-color: #1abab4;
}

.c-header-pc__bottom .l-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  min-height: 50px;
  min-height: 3.125rem;
}

.c-header-pc__nav {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-header-pc__nav-list {
  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-column-gap: 4.8125rem;
  -moz-column-gap: 4.8125rem;
  column-gap: 4.8125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-header-pc__nav-link {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  color: #fff;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.c-header-pc__sns {
  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-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  margin: 0;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.c-header-pc__sns-link {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  line-height: 0;
}

.c-header-pc__sns-item:nth-child(1) .c-header-pc__sns-link img {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header-pc__sns-item:nth-child(2) .c-header-pc__sns-link img {
  width: 67px;
  width: 4.1875rem;
  height: 58px;
  height: 3.625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header-pc__sns-item:nth-child(3) .c-header-pc__sns-link img {
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header-pc__cta:hover,
.c-header-pc__nav-link:hover,
.c-header-pc__sns-link:hover {
  opacity: .7;
}

.c-header-sp {
  display: none;
}

.c-kit-guide-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 .25rem 1rem rgba(0, 0, 0, .1);
  box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .1);
  border-radius: .5rem;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}

.c-kit-guide-card__link {
  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;
  height: 100%;
  color: #333;
  text-decoration: none;
}

.c-kit-guide-card__figure {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 100%;
  line-height: 0;
}

.c-kit-guide-card__figure img {
  aspect-ratio: 300/260;
  border-radius: .5rem .5rem 0 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-kit-guide-card__body {
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  padding-top: 10px;
  padding-top: .625rem;
  padding-right: 15px;
  padding-right: .9375rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 15px;
  padding-left: .9375rem;
  min-height: 270px;
  min-height: 16.875rem;
}

.c-kit-guide-card__title {
  margin: 0;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.43;
}

.c-kit-guide-card__code {
  display: block;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-kit-guide-card__name {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-kit-guide-card__tsubo {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-kit-guide-card__label {
  margin: 0;
  margin-top: 12px;
  margin-top: .75rem;
  color: #b50d0d;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.c-kit-guide-card__price {
  margin: 0;
  color: #b50d0d;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-kit-guide-card__prices {
  margin: 0;
  margin-top: 10px;
  margin-top: .625rem;
  padding: 0;
  list-style: none;
}

.c-kit-guide-card__prices-item {
  margin: 0;
  color: #676767;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-kit-guide-card__soon {
  margin: 0;
  margin-top: 48px;
  margin-top: 3rem;
  width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-kit-guide-card__title--idea {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.45;
}

.c-kit-guide-card__text {
  margin: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-kit-guide-card--idea .c-kit-guide-card__link {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
}

.c-kit-guide-card--idea .c-kit-guide-card__body {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  min-height: 270px;
  min-height: 16.875rem;
}

.c-kit-guide-card--idea .c-kit-guide-card__text {
  margin-top: 12px;
  margin-top: .75rem;
  letter-spacing: -.06em;
}

.c-kit-guide-card--idea .c-kit-guide-card__action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: auto;
  background-color: transparent;
  padding: 0;
  width: 100%;
}

.c-kit-guide-card__btn {
  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-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: 2.5rem;
  background-color: #1abab4;
  padding-top: 12px;
  padding-top: .75rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  min-width: 264px;
  min-width: 16.5rem;
  min-height: 60px;
  min-height: 3.75rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.c-kit-guide-card--idea .c-kit-guide-card__btn {
  -webkit-column-gap: .75rem;
  -moz-column-gap: .75rem;
  column-gap: .75rem;
  margin-top: 16px;
  margin-top: 1rem;
  padding-top: 10px;
  padding-top: .625rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: 48px;
  min-height: 3rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.c-kit-guide-card__btn:hover {
  opacity: .7;
}

.c-kit-guide-card__btn-text {
  display: block;
}

.c-kit-guide-card__btn-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.c-kit-guide-card__btn-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #fff;
  border-top: .125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: .125rem solid #fff;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.c-kit-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #1abab4;
  width: 100%;
  height: 50px;
  height: 3.125rem;
}

.c-kit-link__inner {
  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;
  width: 100%;
}

.c-kit-link__field {
  position: relative;
  width: 430px;
  width: 26.875rem;
}

.c-kit-link__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #676767;
  border: .0625rem solid #676767;
  border-radius: .9375rem;
  background-color: #fff;
  padding-top: 5px;
  padding-top: .3125rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
  padding-left: 16px;
  padding-left: 1rem;
  width: 100%;
  height: 30px;
  height: 1.875rem;
  color: #333;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

.c-kit-link__icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  width: 8px;
  width: .5rem;
  height: 12px;
  height: .75rem;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
}

.c-section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  width: 100%;
}

.c-section-title-en {
  grid-column: 2;
  grid-row: 1;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  justify-self: end;
  margin-top: 7px;
  margin-top: .4375rem;
  color: rgba(26, 186, 180, .3);
  font-family: 'League Spartan', sans-serif;
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.c-section-title-ja {
  grid-column: 1;
  grid-row: 1;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  margin: 0;
  color: #333;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-section-title--stacked {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
}

.c-section-title--stacked .c-section-title-en {
  grid-column: auto;
  grid-row: auto;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: 0;
}

.c-section-title--stacked .c-section-title-ja {
  grid-column: auto;
  grid-row: auto;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: 32px;
  margin-top: 2rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 30px;
  bottom: 1.875rem;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  -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: #1abab4;
  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-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: #0C4A6E;
  font-weight: 700;
}

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

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

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #000;
  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 #0C4A6E;
  width: 2em;
  height: 2em;
  color: #0C4A6E;
  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: #0C4A6E;
  color: #fff;
}

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

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

.p-footer__logo {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-footer__logo img,
.p-footer__logo svg {
  width: 200px;
  width: 12.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__copy {
  padding: 10px 0;
  padding: .625rem 0;
  color: #000;
}

/************************************************************************
* p-fv
************************************************************************/
.p-header {
  background-color: #0C4A6E;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-header__inner {
  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 {
  z-index: 41;
  height: 90%;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

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

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

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

.p-home-about-top__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-top: 54px;
  padding-top: 3.375rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-about-top__intro {
  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;
  -webkit-column-gap: .75rem;
  -moz-column-gap: .75rem;
  column-gap: .75rem;
}

.p-home-about-top__illust {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 252px;
  width: 15.75rem;
  line-height: 0;
}

.p-home-about-top__illust img {
  display: block;
  width: 252px;
  width: 15.75rem;
  height: 247px;
  height: 15.4375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-home-about-top__head {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 0;
}

.p-home-about-top__title {
  margin: 0;
  max-width: 704px;
  max-width: 44rem;
  color: #333;
  font-family: 'Sawarabi Mincho', serif;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-home-about-top__lead {
  margin: 0;
  margin-top: 26px;
  margin-top: 1.625rem;
  max-width: 719px;
  max-width: 44.9375rem;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.42;
}

.p-home-about-top__lead-line {
  display: block;
}

.p-home-about-top__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem;
  margin: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
}

.p-home-about-top__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc((100% - 6.25rem) / 3);
}

.p-home-about-top__card {
  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-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #1abab4;
  border: .0625rem solid #1abab4;
  border-radius: .625rem;
  background-color: #fff;
  padding-top: 37px;
  padding-top: 2.3125rem;
  padding-right: 23px;
  padding-right: 1.4375rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 23px;
  padding-left: 1.4375rem;
  width: 100%;
  height: 100%;
}

.p-home-about-top__card-title {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: 0;
  left: 50%;
  -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-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border-radius: 62.4375rem;
  background-color: #1abab4;
  padding-top: 7px;
  padding-top: .4375rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 7px;
  padding-bottom: .4375rem;
  padding-left: 16px;
  padding-left: 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - 1.25rem);
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-home-about-top__card-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

.p-home-about-middle__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.p-home-about-middle__media {
  margin: 0;
  line-height: 0;
}

.p-home-about-middle__media picture {
  display: block;
  width: 100%;
}

.p-home-about-middle__media img {
  aspect-ratio: 1280/399;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-about-bottom__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  background-color: #e7f9f7;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 81px;
  padding-bottom: 5.0625rem;
  width: 100%;
}

.p-home-about-bottom__panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  padding-top: 27px;
  padding-top: 1.6875rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 1000px;
  width: 62.5rem;
  min-height: 242px;
  min-height: 15.125rem;
}

.p-home-about-bottom__title {
  margin: 0;
  color: #1abab4;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-home-about-bottom__body {
  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-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-home-about-bottom__text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 632px;
  -webkit-flex: 0 0 39.5rem;
  -ms-flex: 0 0 632px;
  -ms-flex: 0 0 39.5rem;
  flex: 0 0 632px;
  flex: 0 0 39.5rem;
  color: #333;
  font-family: 'Sawarabi Mincho', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', 'Noto Serif JP', serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.125;
}

.p-home-about-bottom__text-line {
  display: block;
}

.p-home-about-bottom__illust {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 318px;
  width: 19.875rem;
  line-height: 0;
}

.p-home-about-bottom__illust img {
  display: block;
  width: 318px;
  width: 19.875rem;
  height: 170px;
  height: 10.625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-home-about-bottom__lead {
  margin: 0;
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 902px;
  max-width: 56.375rem;
  color: #676767;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.p-home-about-bottom__lead-accent {
  color: #1abab4;
}

.p-home-about-bottom__action {
  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: 40px;
  margin-top: 2.5rem;
}

.p-home-about-bottom__btn {
  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-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #1abab4;
  border: .125rem solid #1abab4;
  border-radius: 2.5rem;
  background-color: #fff;
  width: 363px;
  width: 22.6875rem;
  min-height: 80px;
  min-height: 5rem;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.p-home-about-bottom__btn:hover {
  opacity: .7;
}

.p-home-about-bottom__btn-text {
  display: block;
}

.p-home-about-bottom__btn-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.p-home-about-bottom__btn-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #1abab4;
  border-top: .125rem solid #1abab4;
  border-right: 2px solid #1abab4;
  border-right: .125rem solid #1abab4;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-home-banners__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 0;
  padding: 6.25rem 0;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-banners__list {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.p-home-banners__item + .p-home-banners__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-home-banners__link {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  width: 100%;
  text-decoration: none;
}

.p-home-banners__link:hover {
  opacity: .7;
}

.p-home-banners__figure {
  margin: 0;
  width: 100%;
}

.p-home-banners__figure picture {
  display: block;
  width: 100%;
}

.p-home-banners__figure img {
  aspect-ratio: 1000/300;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-company {
  background-color: #e7f9f7;
}

.p-home-company__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-company__header .c-section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
}

.p-home-company__body {
  row-gap: 48px;
  row-gap: 3rem;
  display: grid;
  grid-template-columns: 33.125rem 7.5625rem 21.875rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  margin-top: 66px;
  margin-top: 4.125rem;
}

.p-home-company__info {
  row-gap: 41px;
  row-gap: 2.5625rem;
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 9.875rem minmax(0, 1fr);
  align-self: start;
  margin: 0;
}

.p-home-company__term {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.29;
}

.p-home-company__desc {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-home-company__media {
  display: contents;
}

.p-home-company__photo {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
  width: 350px;
  width: 21.875rem;
  line-height: 0;
}

.p-home-company__photo picture {
  display: block;
  width: 100%;
}

.p-home-company__photo img {
  aspect-ratio: 350/233;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-company__banners {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-home-company__banner-item--manga {
  grid-column: 1;
  grid-row: 2;
}

.p-home-company__banner-item--about {
  grid-column: 3;
  grid-row: 2;
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  align-self: end;
}

.p-home-company__banner-link {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  color: inherit;
  text-decoration: none;
}

.p-home-company__banner-link:hover {
  opacity: .7;
}

.p-home-company__banner-lead {
  margin: 0;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.21;
}

.p-home-company__banner-figure {
  margin: 0;
  margin-top: 9px;
  margin-top: .5625rem;
  width: 100%;
  line-height: 0;
}

.p-home-company__banner-item--manga .p-home-company__banner-figure {
  width: 530px;
  width: 33.125rem;
}

.p-home-company__banner-item--about .p-home-company__banner-figure {
  width: 350px;
  width: 21.875rem;
}

.p-home-company__banner-figure picture {
  display: block;
  width: 100%;
}

.p-home-company__banner-item--manga .p-home-company__banner-figure img {
  aspect-ratio: 530/75;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-company__banner-item--about .p-home-company__banner-figure img {
  aspect-ratio: 350/76;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-faq__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 0;
  padding: 6.25rem 0;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-faq__header {
  width: 100%;
}

.p-home-faq__header-body {
  width: 100%;
}

.p-home-faq__header-body .c-section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
}

.p-home-faq__contents {
  margin-top: 72px;
  margin-top: 4.5rem;
  width: 100%;
}

.p-home-faq__contents.p-faq-contents {
  max-width: none;
}

.p-home-faq__contents .p-faq-contents__list {
  margin-top: 0;
  border-top: 1px solid #676767;
  border-top: .0625rem solid #676767;
  border-bottom: 1px solid #676767;
  border-bottom: .0625rem solid #676767;
}

.p-home-faq__contents .p-faq-contents__item + .p-faq-contents__item {
  border-top: 1px solid #676767;
  border-top: .0625rem solid #676767;
}

.p-home-faq__contents .c-faq-item__question {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 68px;
  padding-right: 4.25rem;
}

.p-home-faq__contents .c-faq-item__illust {
  width: 86px;
  width: 5.375rem;
  min-width: 86px;
  min-width: 5.375rem;
  height: 86px;
  height: 5.375rem;
}

.p-home-faq__contents .c-faq-item__illust img {
  max-width: 86px;
  max-width: 5.375rem;
  max-height: 86px;
  max-height: 5.375rem;
}

.p-home-faq__contents .c-faq-item__answer-inner {
  padding-right: 68px;
  padding-right: 4.25rem;
}

.p-home-faq__action {
  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: 60px;
  margin-top: 3.75rem;
}

.p-home-faq__btn {
  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-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #1abab4;
  border: .125rem solid #1abab4;
  border-radius: 2.5rem;
  background-color: #fff;
  width: 363px;
  width: 22.6875rem;
  min-height: 80px;
  min-height: 5rem;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.p-home-faq__btn:hover {
  opacity: .7;
}

.p-home-faq__btn-text {
  display: block;
}

.p-home-faq__btn-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.p-home-faq__btn-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #1abab4;
  border-top: .125rem solid #1abab4;
  border-right: 2px solid #1abab4;
  border-right: .125rem solid #1abab4;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-home-flow {
  background-color: #fdf9f0;
}

.p-home-flow__inner {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 0 0 100px;
  padding: 0 0 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-flow__header {
  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-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  width: 100%;
}

.p-home-flow__illust {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 200px;
  width: 12.5rem;
  line-height: 0;
}

.p-home-flow__illust img {
  display: block;
  width: 200px;
  width: 12.5rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-flow__header-body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  width: 100%;
  min-width: 0;
}

.p-home-flow__header-body .c-section-title {
  display: contents;
}

.p-home-flow__header-body .c-section-title-ja {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: #333;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-home-flow__header-body .c-section-title-en {
  grid-column: 2;
  grid-row: 1;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin: 0;
}

.p-home-flow__lead {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  margin-top: 7px;
  margin-top: .4375rem;
  color: #676767;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-home-flow__lead-line {
  display: block;
}

.p-home-flow__list {
  margin: 0;
  margin-top: 80px;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  list-style: none;
}

.p-home-flow__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-home-flow__card {
  display: grid;
  grid-template-columns: 6.25rem 12.5rem minmax(0, 1fr);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: .625rem;
  background-color: #fff;
  padding-right: 32px;
  padding-right: 2rem;
  width: 100%;
  min-height: 100px;
  min-height: 6.25rem;
  overflow: hidden;
}

.p-home-flow__pill {
  display: contents;
}

.p-home-flow__step {
  grid-column: 1;
  grid-row: 1;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: .625rem 0 0 .625rem;
  padding-top: 0;
  min-height: 100px;
  min-height: 6.25rem;
}

.p-home-flow__step-icon {
  display: none;
}

.p-home-flow__item:not(:last-child)::after {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #1abab4;
  width: 63px;
  width: 3.9375rem;
  height: 41px;
  height: 2.5625rem;
  content: '';
}

.p-home-flow__body {
  display: contents;
}

.p-home-flow__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.33;
  white-space: nowrap;
  word-break: keep-all;
}

.p-home-flow__text {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.44;
}

.p-home-flow__text-line {
  display: block;
}

.p-home-fv-slider {
  position: relative;
  width: 100%;
}

.p-home-fv-slider__viewport {
  aspect-ratio: 1280/753;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  overflow: hidden;
}

.p-home-fv-slider__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-home-fv-slider__item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.p-home-fv-slider__item.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.p-home-fv-slider__slide {
  width: 100%;
  height: 100%;
}

.p-home-fv-slider__media {
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.p-home-fv-slider__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-home-fv-slider__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-fv-slider__controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 56%;
  left: 50%;
  -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-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 7px;
  padding-right: .4375rem;
  padding-left: 7px;
  padding-left: .4375rem;
  width: 100%;
  max-width: calc(100% - 2.5rem);
  height: 47px;
  height: 2.9375rem;
  pointer-events: none;
}

.p-home-fv-slider__prev {
  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;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .65);
  padding: 0;
  width: 47px;
  width: 2.9375rem;
  height: 47px;
  height: 2.9375rem;
  pointer-events: auto;
}

.p-home-fv-slider__next {
  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;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .65);
  padding: 0;
  width: 47px;
  width: 2.9375rem;
  height: 47px;
  height: 2.9375rem;
  pointer-events: auto;
}

.p-home-fv-slider__prev:hover {
  opacity: .8;
}

.p-home-fv-slider__next:hover {
  opacity: .8;
}

.p-home-fv-slider__prev-icon {
  display: block;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: 2px solid #1abab4;
  border-top: .125rem solid #1abab4;
  border-left: 2px solid #1abab4;
  border-left: .125rem solid #1abab4;
  background-color: transparent;
  width: 11px;
  width: .6875rem;
  height: 11px;
  height: .6875rem;
}

.p-home-fv-slider__next-icon {
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #1abab4;
  border-top: .125rem solid #1abab4;
  border-right: 2px solid #1abab4;
  border-right: .125rem solid #1abab4;
  background-color: transparent;
  width: 11px;
  width: .6875rem;
  height: 11px;
  height: .6875rem;
}

.p-home-fv-bottom-slider {
  position: relative;
  width: 100%;
}

.p-home-fv-bottom-slider__viewport {
  aspect-ratio: 1280/200;
  cursor: -webkit-grab;
  cursor: grab;
  width: 100%;
  overflow: hidden;
  -ms-touch-action: pan-y pinch-zoom;
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-home-fv-bottom-slider__viewport.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -ms-touch-action: none;
  touch-action: none;
}

.p-home-fv-bottom-slider__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.p-home-fv-bottom-slider__item {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.p-home-fv-bottom-slider__slide {
  width: 100%;
}

.p-home-fv-bottom-slider__media {
  margin: 0;
  width: 100%;
  line-height: 0;
}

.p-home-fv-bottom-slider__media picture {
  display: block;
  width: 100%;
}

.p-home-fv-bottom-slider__media img {
  aspect-ratio: 1280/200;
  -webkit-user-drag: none;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-home-fv-bottom-slider__controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  -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-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  width: 100%;
  pointer-events: none;
}

.p-home-fv-bottom-slider__prev {
  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;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  pointer-events: auto;
}

.p-home-fv-bottom-slider__next {
  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;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  pointer-events: auto;
}

.p-home-fv-bottom-slider__prev:hover {
  opacity: .75;
}

.p-home-fv-bottom-slider__next:hover {
  opacity: .75;
}

.p-home-fv-bottom-slider__prev-icon {
  display: block;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: 3px solid #fff;
  border-top: .1875rem solid #fff;
  border-left: 3px solid #fff;
  border-left: .1875rem solid #fff;
  width: 14px;
  width: .875rem;
  height: 14px;
  height: .875rem;
}

.p-home-fv-bottom-slider__next-icon {
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 3px solid #fff;
  border-top: .1875rem solid #fff;
  border-right: 3px solid #fff;
  border-right: .1875rem solid #fff;
  width: 14px;
  width: .875rem;
  height: 14px;
  height: .875rem;
}

.p-home-greeting__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.p-home-greeting__media {
  margin: 0;
  width: 100%;
  line-height: 0;
}

.p-home-greeting__media picture {
  display: block;
  width: 100%;
}

.p-home-greeting__media img {
  aspect-ratio: 1280/721;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-guide__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.p-home-guide__media {
  margin: 0;
  width: 100%;
  line-height: 0;
}

.p-home-guide__media picture {
  display: block;
  width: 100%;
}

.p-home-guide__media img {
  aspect-ratio: 1280/414;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-info__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 0;
  padding: 6.25rem 0;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-info__header .c-section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
}

.p-home-info__header .c-section-title-ja {
  margin: 0;
  color: #333;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-home-info__list {
  margin: 0;
  margin-top: 73px;
  margin-top: 4.5625rem;
  border-top: 1px solid #676767;
  border-top: .0625rem solid #676767;
  padding: 0;
  width: 100%;
  list-style: none;
}

.p-home-info__item {
  border-bottom: 1px solid #676767;
  border-bottom: .0625rem solid #676767;
}

.p-home-info__link {
  display: grid;
  grid-template-columns: 11.25rem 9.4375rem 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 68px;
  padding-right: 4.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  min-height: 80px;
  min-height: 5rem;
  color: #333;
  text-decoration: none;
}

.p-home-info__link:hover {
  opacity: .7;
}

.p-home-info__date {
  color: #1abab4;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.p-home-info__category {
  color: #676767;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.11;
}

.p-home-info__title {
  margin: 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.33;
}

.p-home-info__icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.p-home-info__icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #676767;
  border-top: .125rem solid #676767;
  border-right: 2px solid #676767;
  border-right: .125rem solid #676767;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-home-info__action {
  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: 58px;
  margin-top: 3.625rem;
}

.p-home-info__btn {
  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-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #1abab4;
  border: .125rem solid #1abab4;
  border-radius: 2.5rem;
  background-color: #fff;
  width: 363px;
  width: 22.6875rem;
  min-height: 80px;
  min-height: 5rem;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.p-home-info__btn:hover {
  opacity: .7;
}

.p-home-info__btn-text {
  display: block;
}

.p-home-info__btn-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.p-home-info__btn-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #1abab4;
  border-top: .125rem solid #1abab4;
  border-right: 2px solid #1abab4;
  border-right: .125rem solid #1abab4;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-home-lineup {
  background-image: url('../img/home-lineup-bg-pc.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-home-lineup__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-top: 85px;
  padding-top: 5.3125rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-lineup__lead {
  margin: 0;
  max-width: 816px;
  max-width: 51rem;
  color: #676767;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-home-lineup__lead-line {
  display: block;
}

.p-home-lineup__header .c-section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 4px;
  margin-top: .25rem;
  width: 100%;
}

.p-home-lineup__list {
  row-gap: 40px;
  row-gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  margin: 0;
  margin-top: 71px;
  margin-top: 4.4375rem;
  padding: 0;
  width: 100%;
  list-style: none;
}

.p-home-lineup__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}

.p-home-lineup__item .c-kit-guide-card {
  width: 100%;
}

.p-home-lineup__action {
  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: 60px;
  margin-top: 3.75rem;
}

.p-home-lineup__btn {
  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-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #1abab4;
  border: .125rem solid #1abab4;
  border-radius: 2.5rem;
  background-color: #fff;
  width: 363px;
  width: 22.6875rem;
  min-height: 80px;
  min-height: 5rem;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.p-home-lineup__btn:hover {
  opacity: .7;
}

.p-home-lineup__btn-text {
  display: block;
}

.p-home-lineup__btn-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.p-home-lineup__btn-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #1abab4;
  border-top: .125rem solid #1abab4;
  border-right: 2px solid #1abab4;
  border-right: .125rem solid #1abab4;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-home-links__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 0;
  padding: 6.25rem 0;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-links__list {
  row-gap: 25px;
  row-gap: 1.5625rem;
  display: grid;
  grid-template-columns: repeat(3, 19.25rem);
  -webkit-column-gap: 2.375rem;
  -moz-column-gap: 2.375rem;
  column-gap: 2.375rem;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.p-home-links__item {
  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-home-links__link {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  width: 100%;
  line-height: 0;
  text-decoration: none;
}

.p-home-links__link:hover {
  opacity: .7;
}

.p-home-links__figure {
  margin: 0;
  width: 100%;
  line-height: 0;
}

.p-home-links__figure picture {
  display: block;
  width: 100%;
}

.p-home-links__figure img {
  aspect-ratio: 308/193;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-links__wide {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: 100%;
  line-height: 0;
  text-decoration: none;
}

.p-home-links__wide:hover {
  opacity: .7;
}

.p-home-links__wide-figure {
  margin: 0;
  width: 100%;
  line-height: 0;
}

.p-home-links__wide-figure picture {
  display: block;
  width: 100%;
}

.p-home-links__wide-figure img {
  aspect-ratio: 1000/300;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-links__note {
  margin: 0;
  margin-top: 4px;
  margin-top: .25rem;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.28;
}

.p-home-work {
  background-color: #fdf9f0;
  background-image: url('../img/home-work-bg-pc.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-home-work__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-top: 86px;
  padding-top: 5.375rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-home-work__header .c-section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
}

.p-home-work__list {
  row-gap: 13px;
  row-gap: .8125rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: .8125rem;
  -moz-column-gap: .8125rem;
  column-gap: .8125rem;
  margin: 0;
  margin-top: 65px;
  margin-top: 4.0625rem;
  padding: 0;
  width: 100%;
  list-style: none;
}

.p-home-work__item {
  width: 100%;
  min-width: 0;
  height: 100%;
}

.p-home-work__card {
  height: 100%;
}

.p-home-work__card-link {
  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-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 260px;
  min-height: 16.25rem;
  color: #333;
  text-decoration: none;
}

.p-home-work__card-link:hover {
  opacity: .7;
}

.p-home-work__card-figure {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 100%;
}

.p-home-work__card-figure img {
  aspect-ratio: 240/179;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-work__card-body {
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  padding: 12px;
  padding: .75rem;
  width: 100%;
}

.p-home-work__card-code {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-home-work__card-label {
  margin: 0;
  margin-top: 9px;
  margin-top: .5625rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.125;
}

.p-home-work__action {
  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: 60px;
  margin-top: 3.75rem;
  width: 100%;
}

.p-home-work__btn {
  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-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #1abab4;
  border: .125rem solid #1abab4;
  border-radius: 2.5rem;
  background-color: #fff;
  width: 363px;
  width: 22.6875rem;
  min-height: 80px;
  min-height: 5rem;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.p-home-work__btn:hover {
  opacity: .7;
}

.p-home-work__btn-text {
  display: block;
}

.p-home-work__btn-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.p-home-work__btn-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #1abab4;
  border-top: .125rem solid #1abab4;
  border-right: 2px solid #1abab4;
  border-right: .125rem solid #1abab4;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-agency-confirm-content {
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-agency-confirm__intro.c-contact-intro {
  background-color: #fffdf8;
  min-height: 252px;
  min-height: 15.75rem;
}

.p-agency-confirm__body {
  background-color: #fff;
  padding-top: 79px;
  padding-top: 4.9375rem;
  padding-right: 18px;
  padding-right: 1.125rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-left: 19px;
  padding-left: 1.1875rem;
  width: 100%;
}

.p-agency-confirm__body .p-agency-entry__item-head {
  padding-top: 0;
}

.p-agency-thanks-content {
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-agency-thanks__intro.c-contact-intro {
  background-color: #fffdf8;
  min-height: 252px;
  min-height: 15.75rem;
}

.p-agency-thanks__body {
  background-color: #fff;
  padding-top: 79px;
  padding-top: 4.9375rem;
  padding-right: 18px;
  padding-right: 1.125rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-left: 19px;
  padding-left: 1.1875rem;
  width: 100%;
}

.p-agency-thanks__text {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.p-agency-thanks__text p {
  margin: 0;
}

.p-agency-thanks__text p + p {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-agency-program__inner {
  display: grid;
  grid-template-columns: 32rem 27.875rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-agency-program__body {
  grid-column: 1;
  min-width: 0;
}

.p-agency-program__header .c-section-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

.p-agency-program__header .c-section-title-ja {
  margin: 0;
  width: 100%;
}

.p-agency-program__header .c-section-title-en {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-agency-program__catch {
  margin: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-program__text {
  margin-top: 8px;
  margin-top: .5rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-program__text p {
  margin: 0;
}

.p-agency-program__text p + p {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-agency-program__points {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .8125rem;
  -moz-column-gap: .8125rem;
  column-gap: .8125rem;
  margin: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
}

.p-agency-program__point {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #333;
  border: .0625rem solid #333;
  border-radius: 1rem;
  background-color: #f4f4f4;
  padding-top: 8px;
  padding-top: .5rem;
  padding-right: 12px;
  padding-right: .75rem;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 50%;
  min-height: 87px;
  min-height: 5.4375rem;
}

.p-agency-program__point-title {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-program__point-text {
  margin: 0;
  margin-top: 9px;
  margin-top: .5625rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-program__aside {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-width: 0;
}

.p-agency-program__figure {
  position: relative;
  margin-top: 87px;
  margin-top: 5.4375rem;
  line-height: 0;
}

.p-agency-program__figure::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 169px;
  height: 10.5625rem;
  pointer-events: none;
  content: '';
}

.p-agency-program__figure img {
  display: block;
  width: 446px;
  width: 27.875rem;
  height: 298px;
  height: 18.625rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-agency-program__btn {
  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-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  margin-top: 60px;
  margin-top: 3.75rem;
  -webkit-box-shadow: 0 .3125rem 0 #0b928d;
  box-shadow: 0 .3125rem 0 #0b928d;
  border-radius: 2.5rem;
  background-color: #1abab4;
  width: 439px;
  width: 27.4375rem;
  height: 80px;
  height: 5rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.p-agency-program__btn:hover {
  opacity: .7;
}

.p-agency-program__btn-text {
  display: block;
}

.p-agency-program__btn-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.p-agency-program__btn-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #fff;
  border-top: .125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: .125rem solid #fff;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-agency-entry__item-body.p-agency-entry__item-body--license .wpcf7-form-control-wrap {
  display: inline-block;
}

.p-agency-entry__item-body--license span + span {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-agency-features {
  background-color: #f9fbfa;
}

.p-agency-features__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-top: 85px;
  padding-top: 5.3125rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-agency-features__list {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 0;
  list-style: none;
}

.p-agency-features__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 300px;
  -webkit-flex: 0 0 18.75rem;
  -ms-flex: 0 0 300px;
  -ms-flex: 0 0 18.75rem;
  flex: 0 0 300px;
  flex: 0 0 18.75rem;
  min-width: 0;
}

.p-agency-features__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-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  border-radius: .625rem;
  background-color: #fff;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 19px;
  padding-right: 1.1875rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 19px;
  padding-left: 1.1875rem;
  width: 100%;
  height: 100%;
  min-height: 162px;
  min-height: 10.125rem;
}

.p-agency-features__label {
  margin: 0;
  color: #1abab4;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-features__title {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-features__item:first-child .p-agency-features__title {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-agency-features__text {
  margin: 0;
  margin-top: 10px;
  margin-top: .625rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-requirements__inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 85px;
  padding-top: 5.3125rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-agency-requirements__list {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 0;
  list-style: none;
}

.p-agency-requirements__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 466px;
  -webkit-flex: 0 0 29.125rem;
  -ms-flex: 0 0 466px;
  -ms-flex: 0 0 29.125rem;
  flex: 0 0 466px;
  flex: 0 0 29.125rem;
  min-width: 0;
}

.p-agency-requirements__card {
  display: grid;
  grid-template-columns: 6.4375rem 1fr;
  grid-template-rows: auto 1fr;
  -webkit-column-gap: 1.3125rem;
  -moz-column-gap: 1.3125rem;
  column-gap: 1.3125rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  border-radius: .625rem;
  background-color: #fff;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 16px;
  padding-left: 1rem;
  width: 100%;
  height: 100%;
  min-height: 169px;
  min-height: 10.5625rem;
}

.p-agency-requirements__title {
  grid-column: 1/-1;
  margin: 0;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-agency-requirements__icon {
  grid-column: 1;
  grid-row: 2;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin: 0;
  line-height: 0;
}

.p-agency-requirements__icon img {
  display: block;
  width: auto;
  max-width: 103px;
  max-width: 6.4375rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-agency-requirements__text {
  grid-column: 2;
  grid-row: 2;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin: 0;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-onboarding {
  background-color: #f9fbfa;
}

.p-agency-onboarding__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-top: 85px;
  padding-top: 5.3125rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 968px;
  max-width: 60.5rem;
}

.p-agency-onboarding__flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3.4375rem;
  -moz-column-gap: 3.4375rem;
  column-gap: 3.4375rem;
  margin: 0;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 0;
  padding-top: 12px;
  padding-top: .75rem;
  overflow: visible;
  list-style: none;
}

.p-agency-onboarding__flow-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 150px;
  -webkit-flex: 0 0 9.375rem;
  -ms-flex: 0 0 150px;
  -ms-flex: 0 0 9.375rem;
  flex: 0 0 150px;
  flex: 0 0 9.375rem;
  -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;
  width: 150px;
  width: 9.375rem;
  min-width: 0;
  overflow: visible;
}

.p-agency-onboarding__flow-item:not(:last-child)::after {
  position: absolute;
  top: 75px;
  top: 4.6875rem;
  right: -30px;
  right: -1.875rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  border: none;
  border-right: 3px solid #e7dcbb;
  border-right: .1875rem solid #e7dcbb;
  border-bottom: 3px solid #e7dcbb;
  border-bottom: .1875rem solid #e7dcbb;
  background-color: transparent;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  pointer-events: none;
  content: '';
}

.p-agency-onboarding__flow-icon {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  -webkit-box-shadow: 0 .375rem .375rem 0 rgba(0, 0, 0, .18);
  box-shadow: 0 .375rem .375rem 0 rgba(0, 0, 0, .18);
  background-color: #e7dcbb;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-right: 8px;
  padding-right: .5rem;
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
  padding-left: 8px;
  padding-left: .5rem;
  width: 150px;
  width: 9.375rem;
  height: 150px;
  height: 9.375rem;
  overflow: visible;
  line-height: 0;
}

.p-agency-onboarding__flow-num {
  position: absolute;
  top: -14px;
  top: -.875rem;
  right: 8px;
  right: .5rem;
  z-index: 2;
  color: #bae9e9;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.p-agency-onboarding__flow-icon img {
  display: block;
  width: auto;
  max-width: 97px;
  max-width: 6.0625rem;
  height: auto;
  max-height: 97px;
  max-height: 6.0625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-agency-onboarding__flow-title {
  position: absolute;
  right: 8px;
  right: .5rem;
  bottom: 2px;
  bottom: .125rem;
  left: 8px;
  left: .5rem;
  margin: 0;
  padding: 0;
  width: auto;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.p-agency-onboarding__flow-text {
  margin: 0;
  margin-top: 12px;
  margin-top: .75rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-onboarding__area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19.125rem;
  grid-template-rows: auto auto auto auto auto auto;
  -webkit-column-gap: 4.3125rem;
  -moz-column-gap: 4.3125rem;
  column-gap: 4.3125rem;
  margin-top: 61px;
  margin-top: 3.8125rem;
}

.p-agency-onboarding__area-title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: #333;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-onboarding__area-map {
  grid-column: 2;
  grid-row: 1/5;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  margin: 0;
  line-height: 0;
}

.p-agency-onboarding__area-map img {
  display: block;
  width: 306px;
  width: 19.125rem;
  height: 217px;
  height: 13.5625rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-agency-onboarding__area-lead {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-onboarding__area-note {
  grid-column: 1;
  margin: 0;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-onboarding__area-map + .p-agency-onboarding__area-note {
  grid-row: 3;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #b50d0d;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-onboarding__area-map + .p-agency-onboarding__area-note + .p-agency-onboarding__area-note {
  grid-column: 1;
  grid-row: 4;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-onboarding__area-nav {
  grid-column: 1/-1;
  grid-row: 5;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-agency-onboarding__area-nav-list {
  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;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-agency-onboarding__area-nav-item {
  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-agency-onboarding__area-nav-item:not(:last-child)::after {
  margin-right: 20px;
  margin-right: 1.25rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  content: '|';
}

.p-agency-onboarding__area-nav-btn {
  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-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  cursor: pointer;
  margin: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  color: #d9a712;
  font-family: inherit;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-onboarding__area-nav-btn::after {
  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%;
  background-color: #d9a712;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1;
  content: '→';
}

.p-agency-onboarding__area-panels {
  grid-column: 1/-1;
  grid-row: 6;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-agency-onboarding__area-panel {
  scroll-margin-top: var(--header-height, 5rem);
  margin: 0;
}

.p-agency-onboarding__area-panel + .p-agency-onboarding__area-panel {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-agency-onboarding__area-panel-title {
  scroll-margin-top: var(--header-height, 5rem);
  margin: 0;
  color: #333;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-onboarding__area-panel-label {
  margin: 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #b50d0d;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-onboarding__area-panel-contact {
  margin: 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-onboarding__area-panel-contact p {
  margin: 0;
}

.p-agency-onboarding__area-panel-contact p + p {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-agency-onboarding__area-panel-contact a {
  color: inherit;
  text-decoration: underline;
}

.p-agency-entry__inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-agency-entry__contents {
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
}

.p-agency-entry__intro.c-contact-intro {
  background-color: #fffdf8;
  min-height: 256px;
  min-height: 16rem;
}

.p-agency-entry__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #fff;
  padding-top: 44px;
  padding-top: 2.75rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 100%;
}

.p-agency-entry__list {
  margin: 0;
  width: 100%;
}

.p-agency-entry__item {
  display: grid;
  grid-template-columns: 20% minmax(0, 1fr);
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

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

.p-agency-entry__item-head {
  margin: 0;
  padding-top: 10px;
  padding-top: .625rem;
}

.p-agency-entry__item-body {
  margin: 0;
}

.p-agency-entry__label {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-agency-entry__required {
  color: #B50D0D;
  font-weight: 700;
}

.p-agency-entry__input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border: .0625rem solid #ccc;
  border-radius: .3125rem;
  background-color: #fff;
  padding-right: 12px;
  padding-right: .75rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
  max-width: 367px;
  max-width: 22.9375rem;
  height: 40px;
  height: 2.5rem;
  color: #333;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-entry__input::-webkit-input-placeholder {
  color: #919191;
}

.p-agency-entry__input::-moz-placeholder {
  color: #919191;
}

.p-agency-entry__input::-ms-input-placeholder {
  color: #919191;
}

.p-agency-entry__input::placeholder {
  color: #919191;
}

.p-agency-entry__input--error {
  border-color: #B50D0D;
}

.p-agency-entry__error {
  margin: 0;
  margin-top: 8px;
  margin-top: .5rem;
  color: #B50D0D;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-entry__input--wide {
  max-width: 679px;
  max-width: 42.4375rem;
}

.p-agency-entry__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border: .0625rem solid #ccc;
  border-radius: .3125rem;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #919191 50%), linear-gradient(135deg, #919191 50%, transparent 50%);
  background-position: calc(100% - 1.125rem) 50%, calc(100% - .75rem) 50%;
  background-repeat: no-repeat;
  background-size: .375rem .375rem, .375rem .375rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
  max-width: 255px;
  max-width: 15.9375rem;
  height: 40px;
  height: 2.5rem;
  color: #919191;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-entry__select--filled {
  background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%);
  color: #333;
}

.p-agency-entry__textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border: .0625rem solid #ccc;
  border-radius: .3125rem;
  background-color: #fff;
  padding: 12px;
  padding: .75rem;
  width: 100%;
  max-width: 367px;
  max-width: 22.9375rem;
  min-height: 160px;
  min-height: 10rem;
  resize: vertical;
  color: #333;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-entry__textarea--wide {
  max-width: 679px;
  max-width: 42.4375rem;
  min-height: 165px;
  min-height: 10.3125rem;
}

.p-agency-entry__textarea--error {
  border-color: #B50D0D;
}

.p-agency-entry__item-body--license .p-agency-entry__input + .p-agency-entry__input {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-agency-entry__note {
  margin: 0;
  margin-top: 16px;
  margin-top: 1rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-agency-entry__item-body--hope {
  row-gap: 16px;
  row-gap: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.p-agency-entry__item-body--hope .p-agency-entry__input--date {
  max-width: 367px;
  max-width: 22.9375rem;
}

.p-agency-entry__item-body--hope .p-agency-entry__select {
  max-width: 255px;
  max-width: 15.9375rem;
}

.p-agency-entry__submit {
  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: 40px;
  margin-top: 2.5rem;
  width: 100%;
}

.p-agency-entry__submit-btn {
  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 ease;
  transition: opacity .3s ease;
  cursor: pointer;
  margin: 0;
  border: none;
  border-radius: .625rem;
  background-color: #1abab4;
  padding-top: 12px;
  padding-top: .75rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  width: 370px;
  width: 23.125rem;
  min-width: 370px;
  min-width: 23.125rem;
  min-height: 70px;
  min-height: 4.375rem;
  color: #fff;
  font-family: inherit;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-agency-entry__submit-btn:hover {
  opacity: .7;
}

.p-agency-entry__submit-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  background-color: rgba(26, 186, 180, .4);
}

.p-agency-entry__submit-btn:disabled:hover {
  opacity: 1;
}

.p-agency-entry__item--country {
  display: none;
}

.p-catalog__lead {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1875;
}

.p-contact-confirm-content {
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-contact-confirm__body {
  background-color: #fff;
  padding-top: 57px;
  padding-top: 3.5625rem;
  padding-right: 18px;
  padding-right: 1.125rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
  width: 100%;
}

.p-contact-confirm__body .p-contact-inquiry__item-head {
  padding-top: 0;
}

.p-contact-thanks-content {
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-contact-thanks__body {
  background-color: #fff;
  padding-top: 57px;
  padding-top: 3.5625rem;
  padding-right: 18px;
  padding-right: 1.125rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
  width: 100%;
}

.p-contact-thanks__text {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.p-contact-thanks__text p {
  margin: 0;
}

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

.p-contact-banner {
  margin-right: auto;
  margin-left: auto;
  width: 1000px;
  width: 62.5rem;
  height: auto;
}

.p-contact-banner__link {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  width: 100%;
  text-decoration: none;
}

.p-contact-banner__link:hover {
  opacity: .7;
}

.p-contact-banner picture {
  display: block;
  width: 100%;
}

.p-contact-banner img {
  aspect-ratio: 1000/300;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-contact-consultation {
  margin-bottom: 100px;
}

.p-contact-consultation__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 961px;
  max-width: 60.0625rem;
}

.p-contact-consultation__intro {
  display: grid;
  grid-template-columns: 15.9375rem 1fr;
  grid-template-rows: auto auto auto;
}

.p-contact-consultation__intro .c-section-title {
  grid-column: 2;
  grid-row: 1;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
}

.p-contact-consultation__logo {
  grid-column: 1;
  grid-row: 1/3;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  line-height: 0;
}

.p-contact-consultation__logo img {
  width: 255px;
  width: 15.9375rem;
  height: 118px;
  height: 7.375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-contact-consultation__lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1/-1;
  grid-row: 3;
  -webkit-column-gap: 2.4375rem;
  -moz-column-gap: 2.4375rem;
  column-gap: 2.4375rem;
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-contact-consultation__illust {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 0;
}

.p-contact-consultation__illust img {
  width: 458px;
  width: 28.625rem;
  height: 279px;
  height: 17.4375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-contact-consultation__message {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.p-contact-consultation__heading {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contact-consultation__text {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.p-contact-consultation__text p {
  margin: 0;
}

.p-contact-consultation__text p + p {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-contact-consultation__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  background-color: #fff;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 100%;
  max-width: 873px;
  max-width: 54.5625rem;
}

.p-contact-consultation__list {
  margin: 0;
  width: 100%;
}

.p-contact-consultation__item {
  display: grid;
  grid-template-columns: 28% minmax(0, 1fr);
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.p-contact-consultation__item + .p-contact-consultation__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact-consultation__item-head {
  margin: 0;
  background-color: transparent;
  padding-top: 10px;
  padding-top: .625rem;
}

.p-contact-consultation__item:nth-of-type(5) .p-contact-consultation__item-head,
.p-contact-consultation__item:nth-of-type(6) .p-contact-consultation__item-head {
  padding-top: 10px;
  padding-top: .625rem;
}

.p-contact-consultation__item-body {
  margin: 0;
}

.p-contact-consultation__label {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contact-consultation__required {
  color: #c00;
  font-weight: 700;
}

.p-contact-consultation__input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border: .0625rem solid #ccc;
  border-radius: .3125rem;
  background-color: #fff;
  padding-right: 12px;
  padding-right: .75rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
  max-width: 367px;
  max-width: 22.9375rem;
  height: 40px;
  height: 2.5rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-consultation__input::-webkit-input-placeholder {
  color: #919191;
}

.p-contact-consultation__input::-moz-placeholder {
  color: #919191;
}

.p-contact-consultation__input::-ms-input-placeholder {
  color: #919191;
}

.p-contact-consultation__input::placeholder {
  color: #919191;
}

.p-contact-consultation__input--error {
  border-color: #B50D0D;
}

.p-contact-consultation__error {
  margin: 0;
  margin-top: 8px;
  margin-top: .5rem;
  color: #B50D0D;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-consultation__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border: .0625rem solid #ccc;
  border-radius: .3125rem;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #919191 50%), linear-gradient(135deg, #919191 50%, transparent 50%);
  background-position: calc(100% - 1.125rem) 50%, calc(100% - .75rem) 50%;
  background-repeat: no-repeat;
  background-size: .375rem .375rem, .375rem .375rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
  height: 40px;
  height: 2.5rem;
  color: #919191;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-consultation__select--filled {
  background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%);
  color: #333;
}

.p-contact-consultation__item:nth-of-type(4) .p-contact-consultation__select {
  max-width: 255px;
  max-width: 15.9375rem;
}

.p-contact-consultation__item-body--hope {
  row-gap: 16px;
  row-gap: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.p-contact-consultation__item-body--hope .p-contact-consultation__input--date {
  max-width: 367px;
  max-width: 22.9375rem;
}

.p-contact-consultation__item-body--hope .p-contact-consultation__select {
  width: 100%;
  max-width: 255px;
  max-width: 15.9375rem;
}

.p-contact-consultation__submit {
  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-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
  margin-top: 3rem;
  width: 100%;
}

.p-contact-consultation__form .p-contact-consultation__submit-btn {
  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 ease;
  transition: opacity .3s ease;
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-radius: .625rem;
  background-color: #d9b034;
  padding: 0;
  width: 370px;
  width: 23.125rem;
  min-width: 370px;
  min-width: 23.125rem;
  height: 70px;
  height: 4.375rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-contact-consultation__form .p-contact-consultation__submit-btn:hover {
  opacity: .7;
}

.p-contact-consultation__form .p-contact-consultation__submit-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  background-color: #b2b2b2;
}

.p-contact-consultation__form .p-contact-consultation__submit-btn:disabled:hover {
  opacity: 1;
}

.p-contact-inquiry__inner {
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .25);
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-contact-inquiry__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #fff;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 100%;
}

.p-contact-inquiry__list {
  margin: 0;
  width: 100%;
}

.p-contact-inquiry__item {
  display: grid;
  grid-template-columns: 28% minmax(0, 1fr);
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.p-contact-inquiry__item + .p-contact-inquiry__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact-inquiry__item-head {
  margin: 0;
  background-color: transparent;
  padding-top: 10px;
  padding-top: .625rem;
}

.p-contact-inquiry__item-body {
  margin: 0;
}

.p-contact-inquiry__label {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contact-inquiry__required {
  color: #c00;
  font-weight: 700;
}

.p-contact-inquiry__input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border: .0625rem solid #ccc;
  border-radius: .3125rem;
  background-color: #fff;
  padding-right: 12px;
  padding-right: .75rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
  max-width: 367px;
  max-width: 22.9375rem;
  height: 40px;
  height: 2.5rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-inquiry__input::-webkit-input-placeholder {
  color: #919191;
}

.p-contact-inquiry__input::-moz-placeholder {
  color: #919191;
}

.p-contact-inquiry__input::-ms-input-placeholder {
  color: #919191;
}

.p-contact-inquiry__input::placeholder {
  color: #919191;
}

.p-contact-inquiry__input--error {
  border-color: #B50D0D;
}

.p-contact-inquiry__select--error {
  border-color: #B50D0D;
}

.p-contact-inquiry__textarea--error {
  border-color: #B50D0D;
}

.p-contact-inquiry__radio-group--error {
  outline: 1px solid #B50D0D;
  outline: .0625rem solid #B50D0D;
  outline-offset: 4px;
  outline-offset: .25rem;
}

.p-contact-inquiry__error {
  display: block;
  margin: 0;
  margin-top: 8px;
  margin-top: .5rem;
  width: 100%;
  color: #B50D0D;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-inquiry__item-body--age .p-contact-inquiry__error,
.p-contact-inquiry__item-body--family .p-contact-inquiry__error {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.p-contact-inquiry__input--age {
  width: 80px;
  width: 5rem;
  max-width: 100%;
}

.p-contact-inquiry__input--wide,
.p-contact-inquiry__input[autocomplete=street-address],
.p-contact-inquiry__input[name=your_address],
.p-contact-inquiry__input[name=catalog_address],
.p-contact-inquiry__input#inquiry-address,
.p-contact-inquiry__input#inquiry-catalog-address,
.p-contact-inquiry__input.p-street-address {
  max-width: none;
}

.p-contact-inquiry__input--family {
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
}

.p-contact-inquiry__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border: .0625rem solid #ccc;
  border-radius: .3125rem;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #919191 50%), linear-gradient(135deg, #919191 50%, transparent 50%);
  background-position: calc(100% - 1.125rem) 50%, calc(100% - .75rem) 50%;
  background-repeat: no-repeat;
  background-size: .375rem .375rem, .375rem .375rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
  max-width: 255px;
  max-width: 15.9375rem;
  height: 40px;
  height: 2.5rem;
  color: #919191;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-inquiry__select--filled {
  background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%);
  color: #333;
}

.p-contact-inquiry__textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border: .0625rem solid #ccc;
  border-radius: .3125rem;
  background-color: #fff;
  padding: 12px;
  padding: .75rem;
  width: 100%;
  max-width: none;
  min-height: 160px;
  min-height: 10rem;
  resize: vertical;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-inquiry__unit {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-inquiry__item-body--age {
  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-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem;
}

.p-contact-inquiry__item-body--family {
  row-gap: 8px;
  row-gap: .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;
  -webkit-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem;
}

.p-contact-inquiry__radio-group {
  row-gap: 8px;
  row-gap: .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;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  margin: 0;
  border: none;
  padding: 0;
}

.p-contact-inquiry__radio-label {
  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-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem;
}

.p-contact-inquiry__radio {
  accent-color: #333;
  margin: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-contact-inquiry__radio-text {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-inquiry__checkbox-label {
  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;
  -webkit-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem;
}

.p-contact-inquiry__checkbox {
  accent-color: #333;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
  margin-top: .125rem;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-contact-inquiry__checkbox-text {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-inquiry__checkbox-text-note {
  color: #c00;
}

.p-contact-inquiry__item-body--hope {
  row-gap: 16px;
  row-gap: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.p-contact-inquiry__item-body--hope .p-contact-inquiry__input--date {
  max-width: 367px;
  max-width: 22.9375rem;
}

.p-contact-inquiry__item-body--hope .p-contact-inquiry__select {
  width: 100%;
  max-width: 255px;
  max-width: 15.9375rem;
}

.p-contact-inquiry__block {
  width: 100%;
}

.p-contact-inquiry__form > .p-contact-inquiry__block {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contact-inquiry__block .p-contact-inquiry__list {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact-inquiry__block-title {
  margin-right: -40px;
  margin-right: -2.5rem;
  margin-left: -40px;
  margin-left: -2.5rem;
  background-color: #1ABAB4;
  padding-top: 12px;
  padding-top: .75rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-contact-inquiry__block .p-contact-inquiry__select {
  width: 100%;
  max-width: 255px;
  max-width: 15.9375rem;
}

.p-contact-inquiry__submit {
  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-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
  margin-top: 3rem;
  width: 100%;
}

.p-contact-inquiry__submit-btn {
  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 ease;
  transition: opacity .3s ease;
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-radius: .625rem;
  background-color: #d9b034;
  padding: 0;
  width: 370px;
  width: 23.125rem;
  min-width: 370px;
  min-width: 23.125rem;
  height: 70px;
  height: 4.375rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-contact-inquiry__submit-btn:hover {
  opacity: .7;
}

.p-contact-inquiry__submit-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  background-color: #b2b2b2;
}

.p-contact-inquiry__submit-btn:disabled:hover {
  opacity: 1;
}

.p-contact-inquiry__note {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-left: 16px;
  padding-left: 1rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-contact-line__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  border: 5px solid #06c755;
  border: .3125rem solid #06c755;
  border-radius: 1.875rem;
  background-color: #e6f6e3;
  width: 100%;
  max-width: 900px;
  max-width: 56.25rem;
  overflow: hidden;
}

.p-contact-line__head {
  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;
  -webkit-column-gap: 1.0625rem;
  -moz-column-gap: 1.0625rem;
  column-gap: 1.0625rem;
  background-color: #06c755;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  height: 97px;
  height: 6.0625rem;
}

.p-contact-line__head-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 0;
}

.p-contact-line__head-icon img {
  width: 62px;
  width: 3.875rem;
  height: 62px;
  height: 3.875rem;
}

.p-contact-line__head-title {
  margin: 0;
  color: #fff;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-contact-line__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.25rem;
  -moz-column-gap: 2.25rem;
  column-gap: 2.25rem;
  padding-top: 23px;
  padding-top: 1.4375rem;
  padding-right: 23px;
  padding-right: 1.4375rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 44px;
  padding-left: 2.75rem;
}

.p-contact-line__visual {
  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;
  width: 432px;
  width: 27rem;
}

.p-contact-line__illust {
  margin-top: 16px;
  margin-top: 1rem;
  line-height: 0;
}

.p-contact-line__illust img {
  aspect-ratio: 432/191;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-contact-line__visual .p-contact-line__catch:nth-child(1) {
  color: #06c755;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-contact-line__visual .p-contact-line__catch:nth-child(3) {
  margin-top: 16px;
  margin-top: 1rem;
  color: #06c755;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-contact-line__content {
  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;
  min-width: 0;
}

.p-contact-line__text {
  color: #444;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.p-contact-line__text p {
  margin: 0;
}

.p-contact-line__text p + p {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-contact-line__points {
  display: none;
}

.p-contact-line__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: 21px;
  margin-top: 1.3125rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 340px;
  max-width: 21.25rem;
}

.p-contact-line__cta-lead {
  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-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem;
  margin: 0;
  color: #444;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-contact-line__cta-slash {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-contact-line__btn {
  display: inline-block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  margin-top: 8px;
  margin-top: .5rem;
  line-height: 0;
}

.p-contact-line__btn:hover {
  opacity: .7;
}

.p-contact-line__btn img {
  width: 161px;
  width: 10.0625rem;
  height: 50px;
  height: 3.125rem;
}

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

.wpcf7-form-control.wpcf7-radio {
  display: inline-block;
  margin-top: 6px;
  margin-top: .375rem;
}

.p-contact-inquiry__item--country {
  display: none;
}

.p-faq-header__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  min-height: 130px;
  min-height: 8.125rem;
}

.p-faq-header__lead {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875;
}

.p-faq-filter {
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #919191;
  border-top: .0625rem solid #919191;
  border-bottom: 1px solid #919191;
  border-bottom: .0625rem solid #919191;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-faq-filter__search {
  margin: 0;
}

.p-faq-filter__search-field {
  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-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #919191;
  border: .0625rem solid #919191;
  border-radius: 624.9375rem;
  background-color: #fff;
  padding-right: 16px;
  padding-right: 1rem;
  padding-left: 16px;
  padding-left: 1rem;
  width: 520px;
  width: 32.5rem;
  height: 40px;
  height: 2.5rem;
}

.p-faq-filter__search-submit {
  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;
  cursor: pointer;
  margin: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
}

.p-faq-filter__search-icon {
  display: block;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-faq-filter__search-input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  margin-left: 12px;
  margin-left: .75rem;
  border: none;
  background-color: transparent;
  padding: 0;
  min-width: 0;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.p-faq-filter__search-input::-webkit-input-placeholder {
  color: #919191;
}

.p-faq-filter__search-input::-moz-placeholder {
  color: #919191;
}

.p-faq-filter__search-input::-ms-input-placeholder {
  color: #919191;
}

.p-faq-filter__search-input::placeholder {
  color: #919191;
}

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

.p-faq-filter__list {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-faq-filter__btn {
  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;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #1abab4;
  border: .0625rem solid #1abab4;
  border-radius: 624.9375rem;
  background-color: #fff;
  padding: 0;
  width: 150px;
  width: 9.375rem;
  height: 50px;
  height: 3.125rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-faq-filter__btn:hover {
  opacity: .7;
}

.p-faq-contents {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-faq-contents__title {
  margin: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-faq-contents__empty {
  margin: 40px 0 0;
  margin: 2.5rem 0 0;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-faq-contents > .p-faq-contents__category:first-of-type {
  margin-top: 79px;
  margin-top: 4.9375rem;
}

.p-faq-contents > .p-faq-contents__category + .p-faq-contents__category {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-faq-contents__category {
  scroll-margin-top: var(--header-height, 5rem);
}

.p-faq-contents__category.is-faq-filter-hidden,
.p-faq-contents__list.is-faq-filter-hidden,
.p-faq-contents__item.is-faq-filter-hidden {
  display: none;
}

.p-faq-contents__category-title {
  display: inline-block;
  margin: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.6875rem, #D9B034), color-stop(4.6875rem, transparent)) left bottom/4.6875rem .0625rem no-repeat;
  background: linear-gradient(to right, #D9B034 4.6875rem, transparent 4.6875rem) left bottom/4.6875rem .0625rem no-repeat;
  padding-bottom: 11px;
  padding-bottom: .6875rem;
  color: #333;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1875;
}

.p-faq-contents__list {
  margin: 0;
  margin-top: 49px;
  margin-top: 3.0625rem;
  border-top: 1px solid #919191;
  border-top: .0625rem solid #919191;
  border-bottom: 1px solid #919191;
  border-bottom: .0625rem solid #919191;
  padding: 0;
  list-style: none;
}

.p-faq-contents__item + .p-faq-contents__item {
  border-top: 1px solid #919191;
  border-top: .0625rem solid #919191;
}

.p-faq-contents__coming-soon {
  margin: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.p-kit-detail-introduction__inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 968px;
  max-width: 60.5rem;
}

.p-kit-detail-introduction__title {
  margin: 0;
  color: #333;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-kit-detail-introduction__code {
  display: block;
}

.p-kit-detail-introduction__name {
  display: block;
}

.p-kit-detail-introduction__intro {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-kit-detail-introduction__subheading {
  margin: 0;
  color: #333;
  font-family: 'Sawarabi Mincho', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', 'Noto Serif JP', serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-kit-detail-introduction__subheading:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-kit-detail-introduction__text {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-kit-detail-introduction__text p {
  margin: 0;
  color: #333;
  font-family: 'Sawarabi Mincho', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', 'Noto Serif JP', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-kit-detail-introduction__text p + p {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-kit-detail-introduction__price {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-kit-detail-introduction__price-standard {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-detail-introduction__price-omakase {
  margin: 0;
  margin-top: 10px;
  margin-top: .625rem;
  color: #b50d0d;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-kit-detail-introduction__price-amount {
  font-size: 70px;
  font-size: 4.375rem;
  line-height: 1;
}

.p-kit-detail-introduction__gallery {
  margin: 0;
  margin-top: 80px;
  margin-top: 5rem;
  padding: 0;
  list-style: none;
}

.p-kit-detail-introduction__gallery-item + .p-kit-detail-introduction__gallery-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-kit-detail-introduction__feature {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-kit-detail-introduction__figure {
  margin: 0;
  line-height: 0;
}

.p-kit-detail-introduction__figure img {
  aspect-ratio: 968/544;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-kit-detail-introduction__photos {
  margin: 0;
  margin-top: 80px;
  margin-top: 5rem;
  padding: 0;
  list-style: none;
}

.p-kit-detail-introduction__photos-item + .p-kit-detail-introduction__photos-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-kit-detail-drawings__inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1043px;
  max-width: 65.1875rem;
}

.p-kit-detail-drawings__header .c-section-title-ja {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.5;
}

.p-kit-detail-drawings__header .c-section-title-en {
  font-size: 52px;
  font-size: 3.25rem;
  line-height: 1.3;
}

.p-kit-detail-drawings__plans {
  display: grid;
  grid-template-columns: minmax(0, calc(25.625rem + 2.25rem)) minmax(0, 25.625rem);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: calc(65.1875rem - 25.625rem * 2 - 2.25rem);
  -moz-column-gap: calc(65.1875rem - 25.625rem * 2 - 2.25rem);
  column-gap: calc(65.1875rem - 25.625rem * 2 - 2.25rem);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1043px;
  max-width: 65.1875rem;
}

.p-kit-detail-drawings__plan-main {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 0;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 36px;
  padding-left: 2.25rem;
  width: 100%;
  max-width: calc(25.625rem + 2.25rem);
}

.p-kit-detail-drawings__figure {
  cursor: pointer;
  margin: 0;
  line-height: 0;
}

.p-kit-detail-drawings__figure--1f {
  position: relative;
}

.p-kit-detail-drawings__figure--1f img {
  display: block;
  width: 100%;
  max-width: 410px;
  max-width: 25.625rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-kit-detail-drawings__nav {
  position: absolute;
  top: 40px;
  top: 2.5rem;
  right: 0;
  bottom: 40px;
  bottom: 2.5rem;
  left: 36px;
  left: 2.25rem;
  width: calc(100% - 2.25rem);
  max-width: 410px;
  max-width: 25.625rem;
  height: auto;
  pointer-events: none;
}

.p-kit-detail-drawings__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-kit-detail-drawings__nav-item {
  position: absolute;
  pointer-events: auto;
}

.p-kit-detail-drawings__nav-item:nth-child(1) {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}

.p-kit-detail-drawings__nav-item:nth-child(2) {
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}

.p-kit-detail-drawings__nav-item:nth-child(3) {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}

.p-kit-detail-drawings__nav-item:nth-child(4) {
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
}

.p-kit-detail-drawings__nav-btn {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  color: #333;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-kit-detail-drawings__nav-btn--side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
}

.p-kit-detail-drawings__nav-btn-letter {
  line-height: 1.2;
}

.p-kit-detail-drawings__nav-btn-arrow {
  display: block;
  line-height: 1;
}

.p-kit-detail-drawings__nav-btn-label {
  margin-top: 4px;
  margin-top: .25rem;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-kit-detail-drawings__figure--cabin {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 410px;
  max-width: 25.625rem;
}

.p-kit-detail-drawings__figure--cabin img {
  display: block;
  width: 100%;
  max-width: 410px;
  max-width: 25.625rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-kit-detail-drawings__elevations {
  row-gap: 40px;
  row-gap: 2.5rem;
  display: grid;
  grid-template-areas: 'south east' 'north west';
  grid-template-columns: minmax(0, calc(25.625rem + 2.25rem)) minmax(0, 25.625rem);
  -webkit-column-gap: calc(65.1875rem - 25.625rem * 2 - 2.25rem);
  -moz-column-gap: calc(65.1875rem - 25.625rem * 2 - 2.25rem);
  column-gap: calc(65.1875rem - 25.625rem * 2 - 2.25rem);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  width: 100%;
  max-width: 1043px;
  max-width: 65.1875rem;
  list-style: none;
}

.p-kit-detail-drawings__elevations-item--south {
  grid-area: south;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 36px;
  padding-left: 2.25rem;
}

.p-kit-detail-drawings__elevations-item--east {
  grid-area: east;
}

.p-kit-detail-drawings__elevations-item--north {
  grid-area: north;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 36px;
  padding-left: 2.25rem;
}

.p-kit-detail-drawings__elevations-item--west {
  grid-area: west;
}

.p-kit-detail-drawings__elevations-title {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-kit-detail-drawings__elevations-item .p-kit-detail-drawings__figure {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-kit-detail-drawings__elevations-item .p-kit-detail-drawings__figure img {
  aspect-ratio: 410/270;
  display: block;
  width: 410px;
  width: 25.625rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-kit-detail-drawings__model {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1043px;
  max-width: 65.1875rem;
}

.p-kit-detail-drawings__model-title {
  margin: 0;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-kit-detail-drawings__model-list {
  row-gap: 12px;
  row-gap: .75rem;
  display: grid;
  grid-template-columns: repeat(4, -webkit-max-content);
  grid-template-columns: repeat(4, max-content);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
  column-gap: 3.5rem;
  margin: 0;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.p-kit-detail-drawings__model-item {
  margin: 0;
  color: #333;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.p-kit-detail-drawings__model-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.p-kit-detail-drawings__model-item:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
}

.p-kit-detail-drawings__model-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.p-kit-detail-drawings__model-item:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
}

.p-kit-detail-drawings__model-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.p-kit-detail-drawings__model-item:nth-child(7) {
  grid-column: 3;
  grid-row: 2;
}

.p-kit-detail-drawings__model-item:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}

.p-kit-detail-price {
  background-color: #f3f7f6;
  overflow-x: clip;
}

.p-kit-detail-price__inner {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 967px;
  max-width: 60.4375rem;
}

.p-kit-detail-price__header .c-section-title-ja {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.3;
}

.p-kit-detail-price__header .c-section-title-en {
  font-size: 52px;
  font-size: 3.25rem;
  line-height: 1.3;
}

.p-kit-detail-price__lead {
  margin: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-detail-price__table-area {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
}

.p-kit-detail-price__table-wrap {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin-right: calc(50% - 50vw);
  width: calc(50vw + 50%);
  overflow-x: auto;
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.p-kit-detail-price__table-wrap.is-scrollable {
  cursor: -webkit-grab;
  cursor: grab;
}

.p-kit-detail-price__table-wrap.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-kit-detail-price__scroll-hint {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0;
  margin-top: 12px;
  margin-top: .75rem;
  background-color: #f3f7f6;
  padding-top: 12px;
  padding-top: .75rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  width: 100%;
  color: #1abab4;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.p-kit-detail-price__scroll-hint::before {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  content: '→';
}

.p-kit-detail-price__table {
  border-collapse: collapse;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  table-layout: fixed;
}

.p-kit-detail-price__table-corner {
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #bae9e9;
  border: .0625rem solid #bae9e9;
  background-color: #1abab4;
  padding: 8px;
  padding: .5rem;
  width: 186px;
  width: 11.625rem;
  min-width: 186px;
  min-width: 11.625rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-kit-detail-price__table-col {
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #bae9e9;
  border: .0625rem solid #bae9e9;
  background-color: #fff;
  padding: 8px 2px;
  padding: .5rem .125rem;
  width: 150px;
  width: 9.375rem;
  min-width: 150px;
  min-width: 9.375rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.p-kit-detail-price__table-col-head {
  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-column-gap: .25rem;
  -moz-column-gap: .25rem;
  column-gap: .25rem;
}

.p-kit-detail-price__table-zai {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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%;
  background-color: #1abab4;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
}

.p-kit-detail-price__table-rowhead {
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #bae9e9;
  border: .0625rem solid #bae9e9;
  background-color: #1abab4;
  padding: 8px 12px;
  padding: .5rem .75rem;
  width: 186px;
  width: 11.625rem;
  min-width: 186px;
  min-width: 11.625rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.p-kit-detail-price__table-row td {
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #bae9e9;
  border: .0625rem solid #bae9e9;
  background-color: #fff;
  padding: 8px;
  padding: .5rem;
  width: 150px;
  width: 9.375rem;
  min-width: 150px;
  min-width: 9.375rem;
  height: 46px;
  height: 2.875rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-kit-detail-price__mark {
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-kit-detail-price__note {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-kit-detail-price__table-note-spacer {
  vertical-align: top;
  border: none;
  background-color: transparent;
  padding: 0;
}

.p-kit-detail-price__table-note {
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #bae9e9;
  border: .0625rem solid #bae9e9;
  border-top: none;
  background-color: #ececec;
  padding-top: 8px;
  padding-top: .5rem;
  padding-right: 4px;
  padding-right: .25rem;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  padding-left: 4px;
  padding-left: .25rem;
  width: 150px;
  width: 9.375rem;
  min-width: 150px;
  min-width: 9.375rem;
}

.p-kit-detail-price__table-note .p-kit-detail-price__note {
  margin-top: 0;
}

.p-kit-detail-price__featured {
  display: grid;
  grid-template-columns: 11.3125rem 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.4375rem;
  -moz-column-gap: 2.4375rem;
  column-gap: 2.4375rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: .625rem;
  background-color: #1abab4;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 100%;
  min-height: 275px;
  min-height: 17.1875rem;
}

.p-kit-detail-price__featured-icon {
  display: block;
  grid-column: 1;
  grid-row: 1/4;
  width: 181px;
  width: 11.3125rem;
  height: 181px;
  height: 11.3125rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-kit-detail-price__featured-title {
  display: inline-block;
  grid-column: 2;
  grid-row: 1;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  margin: 0;
  background-color: #fff;
  padding-top: 11px;
  padding-top: .6875rem;
  padding-right: 29px;
  padding-right: 1.8125rem;
  padding-bottom: 11px;
  padding-bottom: .6875rem;
  padding-left: 29px;
  padding-left: 1.8125rem;
  color: #1abab4;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-kit-detail-price__featured-lead {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-detail-price__featured-price {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
  margin: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}

.p-kit-detail-price__featured-price-num {
  font-size: 64px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.p-kit-detail-price__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 19.375rem));
  -webkit-column-gap: 1.125rem;
  -moz-column-gap: 1.125rem;
  column-gap: 1.125rem;
  margin: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.p-kit-detail-price__cards-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}

.p-kit-detail-price__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-sizing: border-box;
  box-sizing: border-box;
  border-radius: .625rem;
  background-color: #fff;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 28px;
  padding-right: 1.75rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  width: 100%;
  height: 100%;
}

.p-kit-detail-price__card-head {
  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-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.p-kit-detail-price__card-icon {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 34px;
  width: 2.125rem;
  height: 34px;
  height: 2.125rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-kit-detail-price__card-title {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-kit-detail-price__card-lead {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-detail-price__card-price {
  margin: 0;
  margin-top: auto;
  padding-top: 40px;
  padding-top: 2.5rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: right;
}

.p-kit-detail-price__card-price-num {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
}

.p-kit-detail-price__note-bottom {
  margin: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-detail-price__info {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: calc(50% - 50vw);
  background-color: #1abab4;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 173px;
  padding-left: 10.8125rem;
  width: 100vw;
  min-height: 128px;
  min-height: 8rem;
}

.p-kit-detail-price__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-kit-detail-price__info-item {
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-detail-price__info-item + .p-kit-detail-price__info-item {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-kit-detail-specifications {
  background-color: #f3f7f6;
}

.p-kit-detail-specifications__inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 981px;
  max-width: 61.3125rem;
}

.p-kit-detail-specifications__header .c-section-title-ja {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.3;
}

.p-kit-detail-specifications__header .c-section-title-en {
  font-size: 52px;
  font-size: 3.25rem;
  line-height: 1.3;
}

.p-kit-detail-specifications__standard {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-left: 57px;
  padding-left: 3.5625rem;
}

.p-kit-detail-specifications__section-head {
  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;
  -webkit-column-gap: 1.125rem;
  -moz-column-gap: 1.125rem;
  column-gap: 1.125rem;
}

.p-kit-detail-specifications__section-title {
  margin: 0;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-kit-detail-specifications__section-title-en {
  margin: 0;
  color: #baeae9;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-kit-detail-specifications__list {
  position: relative;
  margin: 0;
  margin-top: 51px;
  margin-top: 3.1875rem;
  margin-left: 63px;
  margin-left: 3.9375rem;
  padding: 0;
  width: 710px;
  width: 44.375rem;
  list-style: none;
}

.p-kit-detail-specifications__standard .p-kit-detail-specifications__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60px;
  left: -3.75rem;
  background-color: transparent;
  background-image: repeating-linear-gradient(to bottom, #1abab4 0, #1abab4 1.25rem, transparent 1.25rem, transparent 2.375rem);
  background-repeat: repeat-y;
  background-size: 100% 2.375rem;
  width: 10px;
  width: .625rem;
  content: '';
}

.p-kit-detail-specifications__list-item + .p-kit-detail-specifications__list-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-kit-detail-specifications__item {
  border-radius: .625rem;
  background-color: #fff;
}

.p-kit-detail-specifications__item-trigger {
  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-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  cursor: pointer;
  margin: 0;
  border: none;
  background-color: transparent;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 43px;
  padding-right: 2.6875rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 100%;
  color: #333;
  font: inherit;
  text-align: left;
}

.p-kit-detail-specifications__item-head {
  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-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  min-width: 0;
}

.p-kit-detail-specifications__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-kit-detail-specifications__item-note {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-detail-specifications__item-icon {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
  width: 47px;
  width: 2.9375rem;
  max-width: none;
  height: 47px;
  height: 2.9375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-kit-detail-specifications__item-trigger[aria-expanded=false] .p-kit-detail-specifications__item-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-kit-detail-specifications__item-body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  -webkit-transition: grid-template-rows .4s ease-in-out, -webkit-clip-path .4s ease-in-out;
  transition: grid-template-rows .4s ease-in-out, -webkit-clip-path .4s ease-in-out;
  transition: grid-template-rows .4s ease-in-out, clip-path .4s ease-in-out;
  transition: grid-template-rows .4s ease-in-out, clip-path .4s ease-in-out, -ms-grid-rows .4s ease-in-out, -webkit-clip-path .4s ease-in-out;
  overflow: hidden;
}

.p-kit-detail-specifications__item-body.is-open {
  grid-template-rows: 1fr;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.p-kit-detail-specifications__item-body-inner {
  padding-top: 0;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 0;
  padding-left: 40px;
  padding-left: 2.5rem;
  min-height: 0;
  overflow: hidden;
}

.p-kit-detail-specifications__item-body.is-open .p-kit-detail-specifications__item-body-inner {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-kit-detail-specifications__item-body[hidden] {
  display: none;
}

.p-kit-detail-specifications__item-text {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-detail-specifications__pro {
  margin-top: 70px;
  margin-top: 4.375rem;
  padding-left: 55px;
  padding-left: 3.4375rem;
}

.p-kit-detail-specifications__pro-badge {
  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;
  -webkit-column-gap: .875rem;
  -moz-column-gap: .875rem;
  column-gap: .875rem;
  margin: 0;
  padding: 0;
  width: 100%;
}

.p-kit-detail-specifications__pro-badge-label {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid #676767;
  border: .0625rem solid #676767;
  border-radius: 62.4375rem;
  background-color: #fff;
  padding-top: 6px;
  padding-top: .375rem;
  padding-right: 28px;
  padding-right: 1.75rem;
  padding-bottom: 6px;
  padding-bottom: .375rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  color: #676767;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-kit-detail-specifications__pro-badge::before,
.p-kit-detail-specifications__pro-badge::after {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #676767;
  max-width: 337px;
  max-width: 21.0625rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-kit-detail-specifications__pro .p-kit-detail-specifications__section-head {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-kit-detail-specifications__pro .p-kit-detail-specifications__list {
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-left: 65px;
  margin-left: 4.0625rem;
}

.p-kit-detail-specifications__pro .p-kit-detail-specifications__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -65px;
  left: -4.0625rem;
  background-color: transparent;
  background-image: repeating-linear-gradient(to bottom, #1abab4 0, #1abab4 1.25rem, transparent 1.25rem, transparent 2.375rem);
  background-repeat: repeat-y;
  background-size: 100% 2.375rem;
  width: 10px;
  width: .625rem;
  content: '';
}

.p-kit-detail-specifications__pro .p-kit-detail-specifications__item-trigger {
  padding-left: 60px;
  padding-left: 3.75rem;
}

.p-kit-detail-specifications__pro .p-kit-detail-specifications__item-body-inner {
  padding-left: 60px;
  padding-left: 3.75rem;
}

.p-kit-detail-delivery__inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1025px;
  max-width: 64.0625rem;
}

.p-kit-detail-delivery__header .c-section-title-ja {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.3;
}

.p-kit-detail-delivery__header .c-section-title-en {
  font-size: 52px;
  font-size: 3.25rem;
  line-height: 1.3;
}

.p-kit-detail-delivery__text {
  margin: 0;
  margin-top: 46px;
  margin-top: 2.875rem;
  width: 100%;
  max-width: 951px;
  max-width: 59.4375rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.p-kit-detail-float {
  display: none;
}

.p-kit-banner {
  margin-right: auto;
  margin-left: auto;
  width: 1000px;
  width: 62.5rem;
  height: auto;
}

.p-kit-banner__link {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  width: 100%;
  text-decoration: none;
}

.p-kit-banner__link:hover {
  opacity: .7;
}

.p-kit-banner picture {
  display: block;
  width: 100%;
}

.p-kit-banner img {
  aspect-ratio: 1000/300;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-kit-contact-banner {
  margin-right: auto;
  margin-left: auto;
  width: 1000px;
  width: 62.5rem;
  height: auto;
}

.p-kit-contact-banner picture {
  display: block;
  width: 100%;
}

.p-kit-contact-banner img {
  aspect-ratio: 1000/300;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-kit-guide {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.p-kit-guide__inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-kit-guide__header .c-section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
}

.p-kit-guide__header .c-section-title-ja {
  margin: 0;
}

.p-kit-guide__header .c-section-title-en {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-kit-guide__list {
  row-gap: 40px;
  row-gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  margin: 0;
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  width: 100%;
  max-width: 649px;
  max-width: 40.5625rem;
  list-style: none;
}

.p-kit-guide__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}

.p-kit-bitooku {
  background-color: #fdf9f0;
}

.p-kit-bitooku__inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 85px;
  padding-top: 5.3125rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  width: 100%;
}

.p-kit-bitooku__lead {
  margin: 0 auto;
  width: 1000px;
  width: 62.5rem;
  color: #676767;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-kit-bitooku__header .c-section-title {
  margin: 15px auto 0;
  margin: .9375rem auto 0;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-kit-bitooku__header .c-section-title-ja {
  margin: 0;
}

.p-kit-bitooku__header .c-section-title-en {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-kit-bitooku__header + .p-kit-bitooku__block .p-kit-bitooku__category {
  margin-top: 68px;
  margin-top: 4.25rem;
}

.p-kit-bitooku__block + .p-kit-bitooku__block .p-kit-bitooku__category {
  margin-top: 82px;
  margin-top: 5.125rem;
}

.p-kit-bitooku__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-kit-bitooku__category {
  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-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  background-color: transparent;
  padding: 0;
  width: 1000px;
  width: 62.5rem;
  max-width: 100%;
  min-height: 70px;
  min-height: 4.375rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-kit-bitooku__category-label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 2.1875rem;
  background-color: #1abab4;
  padding-top: 12px;
  padding-top: .75rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  width: 480px;
  width: 30rem;
  min-height: 70px;
  min-height: 4.375rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-kit-bitooku__category::before,
.p-kit-bitooku__category::after {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  background-color: #1abab4;
  width: auto;
  min-width: 0;
  height: 3px;
  height: .1875rem;
  content: '';
}

.p-kit-bitooku__carousel {
  margin-top: 78px;
  margin-top: 4.875rem;
}

.p-kit-bitooku__viewport {
  -webkit-overflow-scrolling: touch;
  cursor: -webkit-grab;
  cursor: grab;
  width: 100%;
  overflow-x: auto;
  -ms-touch-action: pan-y pinch-zoom;
  touch-action: pan-y pinch-zoom;
}

.p-kit-bitooku__viewport.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -ms-touch-action: none;
  touch-action: none;
}

.p-kit-bitooku__carousel.is-auto-scroll .p-kit-bitooku__viewport {
  scrollbar-width: none;
  overflow-x: hidden;
}

.p-kit-bitooku__carousel.is-auto-scroll .p-kit-bitooku__viewport::-webkit-scrollbar {
  display: none;
}

.p-kit-bitooku__list {
  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;
  -webkit-column-gap: 2.8125rem;
  -moz-column-gap: 2.8125rem;
  column-gap: 2.8125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-kit-bitooku__carousel.is-auto-scroll .p-kit-bitooku__list {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-kit-bitooku__item {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 250px;
  width: 15.625rem;
}

.p-kit-bitooku__figure {
  position: relative;
  cursor: pointer;
  margin: 0;
  width: 100%;
  line-height: 0;
}

.p-kit-bitooku__figure img {
  -webkit-user-drag: none;
  display: block;
  width: 250px;
  width: 15.625rem;
  height: 250px;
  height: 15.625rem;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.p-kit-bitooku__caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  background-color: rgba(255, 255, 255, .8);
  padding-top: 8px;
  padding-top: .5rem;
  padding-right: 12px;
  padding-right: .75rem;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
  min-height: 50px;
  min-height: 3.125rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-kit-bitooku__caption-line {
  display: block;
}

.p-kit-bitooku__detail {
  display: none;
}

.p-kit-bitooku-modal {
  inset: 0;
  display: grid;
  position: fixed;
  place-items: center;
  z-index: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  padding: 1.25rem;
  width: 100%;
  height: 100%;
}

.p-kit-bitooku-modal[hidden] {
  display: none;
}

.p-kit-bitooku-modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  border: none;
  background-color: rgba(0, 0, 0, .6);
  padding: 0;
  width: 100%;
  height: 100%;
}

.p-kit-bitooku-modal__dialog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  grid-area: 1/1;
  -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: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: .5rem;
  background-color: #fff;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(1000px, 100vw - 40px);
  max-width: min(62.5rem, 100vw - 2.5rem);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
}

.p-kit-bitooku-modal__close {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: 8px;
  top: .5rem;
  right: 8px;
  right: .5rem;
  -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;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  color: #676767;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}

.p-kit-bitooku-modal__figure {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  width: 500px;
  width: 31.25rem;
  max-width: 100%;
}

.p-kit-bitooku-modal__media {
  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;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  max-height: 1000px;
  max-height: 62.5rem;
}

.p-kit-bitooku-modal__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 1000px;
  max-height: 62.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-kit-bitooku-modal__caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  margin-top: 16px;
  margin-top: 1rem;
  background-color: #fff;
  padding-top: 8px;
  padding-top: .5rem;
  padding-right: 12px;
  padding-right: .75rem;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  padding-left: 12px;
  padding-left: .75rem;
  width: 100%;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-kit-bitooku-modal__caption .p-kit-bitooku__caption-line {
  display: block;
}

.p-kit-bitooku-modal__text {
  margin: 0;
  margin-top: 12px;
  margin-top: .75rem;
  width: 100%;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-kit-bitooku-modal__text[hidden] {
  display: none;
}

.p-kit-options__inner {
  row-gap: 22px;
  row-gap: 1.375rem;
  display: grid;
  grid-template-columns: 18.875rem 27.3125rem;
  -webkit-column-gap: 14.1875rem;
  -moz-column-gap: 14.1875rem;
  column-gap: 14.1875rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 969px;
  max-width: 60.5625rem;
}

.p-kit-options__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-kit-options__body {
  display: contents;
}

.p-kit-options__content {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.p-kit-options__lead {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-options__list {
  margin: 0;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.p-kit-options__list-item {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-kit-options__photos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: 2;
  grid-row: 1/3;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  -webkit-column-gap: 2.3125rem;
  -moz-column-gap: 2.3125rem;
  column-gap: 2.3125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-kit-options__photos-item {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 200px;
  width: 12.5rem;
}

.p-kit-options__figure {
  margin: 0;
  line-height: 0;
}

.p-kit-options__figure img {
  display: block;
  width: 200px;
  width: 12.5rem;
  height: 200px;
  height: 12.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-news-detail {
  display: grid;
  grid-template-columns: minmax(0, 51.5rem) 15.625rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: .875rem;
  -moz-column-gap: .875rem;
  column-gap: .875rem;
}

.p-news-detail-main {
  width: 100%;
  max-width: 968px;
  max-width: 60.5rem;
}

.p-news-detail-main__inner {
  margin-left: auto;
  width: 100%;
  max-width: 824px;
  max-width: 51.5rem;
}

.p-news-detail-main__body h1,
.p-news-detail-main__body h2,
.p-news-detail-main__body h3,
.p-news-detail-main__body h4,
.p-news-detail-main__body p,
.p-news-detail-main__body figure {
  margin: 0;
}

.p-news-detail-main__body h1 {
  color: #333;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2083333333;
}

.p-news-detail-main__body h1 + p {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-news-detail-main__body span {
  color: #676767;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}

.p-news-detail-main__body span + .p-news-detail-main__body span {
  margin-left: 62px;
  margin-left: 3.875rem;
}

.p-news-detail-main__body figure {
  margin-top: 60px;
  margin-top: 3.75rem;
  line-height: 0;
}

.p-news-detail-main__body figure img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  height: auto;
}

.p-news-detail-main__body h2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 111px;
  margin-top: 6.9375rem;
  background-color: #1abab4;
  padding: 22px 16px;
  padding: 1.375rem 1rem;
  width: 100%;
  min-height: 82px;
  min-height: 5.125rem;
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1875;
}

.p-news-detail-main__body p {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
}

.p-news-detail-main__body h3 {
  position: relative;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
  padding-left: 16px;
  padding-left: 1rem;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2083333333;
}

.p-news-detail-main__body h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #1abab4;
  width: 274px;
  width: 17.125rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-news-detail-main__body h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #baeae9;
  width: 100%;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-news-detail-main__body h4 {
  position: relative;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-left: 16px;
  padding-left: 1rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-news-detail-main__body h4::before {
  position: absolute;
  top: 1px;
  top: .0625rem;
  left: 0;
  -webkit-box-shadow: 0 .6875rem 0 0 #baeae9;
  box-shadow: 0 .6875rem 0 0 #baeae9;
  background-color: #1abab4;
  width: 7px;
  width: .4375rem;
  height: 11px;
  height: .6875rem;
  content: '';
}

.p-news-detail-sidebar {
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
}

.p-news-detail-sidebar__title {
  border-bottom: 1px solid #333;
  border-bottom: .0625rem solid #333;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-news-detail-sidebar__list {
  margin: 0;
  margin-top: 10px;
  margin-top: .625rem;
  padding: 0;
  list-style: none;
}

.p-news-detail-sidebar__item {
  border-bottom: 1px solid #333;
  border-bottom: .0625rem solid #333;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-news-detail-sidebar__item + .p-news-detail-sidebar__item {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-news-detail-sidebar-card__title {
  margin: 0;
}

.p-news-detail-sidebar-card__link {
  display: block;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.p-news-detail-sidebar__item:first-child .p-news-detail-sidebar-card__link {
  line-height: 2.4;
}

.p-news-detail-sidebar-card__meta {
  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: 10px;
  margin-top: .625rem;
}

.p-news-detail-sidebar-card__date {
  color: #676767;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}

.p-news-detail-sidebar-card__category {
  color: #676767;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}

.p-news-detail-sidebar-card__date + .p-news-detail-sidebar-card__category {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.p-news-detail-contact__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  background-image: url('../img/news-detail-contact-bg-pc.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 30px 46px;
  padding: 2.5rem 1.875rem 2.875rem;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  min-height: 424px;
  min-height: 26.5rem;
}

.p-news-detail-contact__title,
.p-news-detail-contact__lead,
.p-news-detail-contact__text p {
  margin: 0;
}

.p-news-detail-contact__title {
  color: #333;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1875;
  text-align: center;
}

.p-news-detail-contact__lead {
  margin-top: 28px;
  margin-top: 1.75rem;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.4;
}

.p-news-detail-contact__text {
  margin-top: 4px;
  margin-top: .25rem;
}

.p-news-detail-contact__text p {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
}

.p-news-detail-contact__text p + p {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-news-detail-contact__warp {
  text-align: center;
}

.p-news-detail-contact__tel {
  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-column-gap: 1.625rem;
  -moz-column-gap: 1.625rem;
  column-gap: 1.625rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 46px;
  margin-top: 2.875rem;
  -webkit-box-shadow: 0 .3125rem 0 #c39300;
  box-shadow: 0 .3125rem 0 #c39300;
  border-radius: 624.9375rem;
  background-color: #d9b034;
  padding: 12px 32px;
  padding: .75rem 2rem;
  width: 500px;
  width: 31.25rem;
  min-height: 60px;
  min-height: 3.75rem;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.p-news-detail-contact__tel-icon {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 56px;
  width: 3.5rem;
  height: 32px;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-news-detail-contact__tel-text {
  line-height: 1.25;
}

.p-news-detail-main__map {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-news-detail-map__inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-news-detail-map__title {
  margin: 0;
  color: #333;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1875;
  text-align: center;
}

.p-news-detail-map__figure {
  margin: 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 0;
}

.p-news-detail-map__iframe {
  display: block;
  margin-right: auto;
  margin-left: auto;
  border: 0;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  height: 296px;
  height: 18.5rem;
}

.p-news-detail-nav__inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 824px;
  max-width: 51.5rem;
}

.p-news-detail-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-news-detail-nav__link {
  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-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  color: #1abab4;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2222222222;
  text-decoration: none;
}

.p-news-detail-nav__icon {
  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%;
  background-color: #1abab4;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

.p-news-detail-nav__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-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 .25rem 0 #606c66;
  box-shadow: 0 .25rem 0 #606c66;
  border-radius: 2.5rem;
  background-color: #1abab4;
  padding: 12px 24px;
  padding: .75rem 1.5rem;
  width: 300px;
  width: 18.75rem;
  min-height: 56px;
  min-height: 3.5rem;
  color: #fff;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.2608695652;
  text-decoration: none;
}

.p-news-detail-nav__back-icon {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
}

.p-news-header__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 968px;
  max-width: 60.5rem;
}

.p-news-category__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-news-category__wrap {
  background-color: #1abab4;
  padding-top: 14px;
  padding-top: .875rem;
  padding-bottom: 14px;
  padding-bottom: .875rem;
  width: 100%;
}

.p-news-category__title {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 968px;
  max-width: 60.5rem;
  color: #fff;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-news-contents {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 968px;
  max-width: 60.5rem;
}

.p-news-contents__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-news-contents__item {
  border-bottom: 1px solid #919191;
  border-bottom: .0625rem solid #919191;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-news-contents__item + .p-news-contents__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-news-card {
  display: grid;
  grid-template-columns: 20.625rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

.p-news-card__figure {
  grid-column: 1;
  grid-row: 1/3;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  margin: 0;
  width: 330px;
  width: 20.625rem;
  line-height: 0;
}

.p-news-card__img {
  display: block;
  width: 330px;
  width: 20.625rem;
  max-width: none;
  height: 220px;
  height: 13.75rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-news-card__body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.p-news-card__title {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-news-card__meta {
  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-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-news-card__date {
  color: #676767;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}

.p-news-card__category {
  color: #676767;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}

.p-news-card__excerpt {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-news-card__more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  grid-column: 2;
  grid-row: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-self: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 43px;
  margin-top: 2.6875rem;
  border: 1px solid #1abab4;
  border: .0625rem solid #1abab4;
  border-radius: 2.5rem;
  background-color: #fff;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 300px;
  width: 18.75rem;
  min-height: 80px;
  min-height: 5rem;
  color: #1abab4;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.p-news-card__more-text {
  line-height: 1.5;
}

.p-news-card__more-icon {
  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;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.p-news-card__more-icon::after {
  display: block;
  -webkit-transform: translateX(-.0625rem) rotate(45deg);
  transform: translateX(-.0625rem) rotate(45deg);
  border-top: 2px solid #1abab4;
  border-top: .125rem solid #1abab4;
  border-right: 2px solid #1abab4;
  border-right: .125rem solid #1abab4;
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-news-pagination {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-news-pagination__list {
  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;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-news-pagination__link {
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #1abab4;
  border: .0625rem solid #1abab4;
  border-radius: 50%;
  background-color: #fff;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #1abab4;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.p-news-pagination__link.is-current {
  background-color: #1abab4;
  color: #fff;
}

.p-news-pagination__icon {
  display: block;
  color: #1abab4;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.p-news-pagination__ellipsis {
  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;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #1abab4;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
}

.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-visible--sp {
  display: none;
}

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

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

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

  .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-footer__logo {
    font-size: 40px;
    font-size: 2.5rem;
  }

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

  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-header__nav ul {
    gap: 46px;
    gap: 2.875rem;
    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__nav li > a {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }

  .p-header__drawer {
    display: none;
  }

  .p-kit-detail-float {
    display: block;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    transition: opacity .3s ease, visibility .3s ease;
    pointer-events: none;
  }

  .js-totop.is-active + .p-kit-detail-float {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .p-kit-detail-float__link {
    display: grid;
    position: fixed;
    top: 166px;
    top: 10.375rem;
    right: 0;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    z-index: 30;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top-left-radius: 15px;
    border-top-left-radius: .9375rem;
    background-color: #d9b034;
    padding-top: 40px;
    padding-top: 2.5rem;
    width: 90px;
    width: 5.625rem;
    height: 370px;
    height: 23.125rem;
    text-decoration: none;
  }

  .p-kit-detail-float__icon {
    display: block;
    grid-column: 1;
    grid-row: 1;
    margin-left: 19px;
    margin-left: 1.1875rem;
    width: 34px;
    width: 2.125rem;
    height: 29px;
    height: 1.8125rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .p-kit-detail-float__ja {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    margin-left: 5px;
    margin-left: .3125rem;
    color: #fff;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .p-kit-detail-float__en {
    grid-column: 2;
    grid-row: 1/3;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
    justify-self: end;
    margin-top: 3px;
    margin-top: .1875rem;
    padding-right: 2px;
    padding-right: .125rem;
    color: rgba(255, 255, 255, .8);
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

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

  .u-onlyPc {
    display: block;
  }

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

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

  .p-home-lineup__list {
    grid-template-columns: repeat(3, minmax(0, 18.75rem));
    -webkit-column-gap: 3.0625rem;
    -moz-column-gap: 3.0625rem;
    column-gap: 3.0625rem;
  }

  .p-kit-guide__list {
    grid-template-columns: repeat(3, 18.75rem);
    -webkit-column-gap: 3.0625rem;
    -moz-column-gap: 3.0625rem;
    column-gap: 3.0625rem;
    max-width: none;
  }
}

@media (min-width: 1060px) {

  html {
    font-size: 16px;
  }
}

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

  .l-agency-confirm {
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
    padding: 0 10px;
    padding: 0 .625rem;
  }

  .l-agency-thanks {
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
    padding: 0 10px;
    padding: 0 .625rem;
  }

  .l-catalog {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding: 0 10px;
    padding: 0 .625rem;
  }

  .l-contact {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding: 0 10px;
    padding: 0 .625rem;
  }

  .l-contact-consultation {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .l-contact-consultation-form {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .l-contact-inquiry {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .l-contact-confirm {
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
    padding: 0 10px;
    padding: 0 .625rem;
  }

  .l-contact-line {
    margin-top: 43px;
    margin-top: 2.6875rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .l-contact-thanks {
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
    padding: 0 10px;
    padding: 0 .625rem;
  }

  .l-faq {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding: 0 10px;
    padding: 0 .625rem;
  }

  .l-faq-filter {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .l-faq-contents {
    margin-bottom: 46px;
    margin-bottom: 2.875rem;
  }

  .l-kit {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .l-kit-bitooku {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .l-kit-options {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .l-kit-contact-banner {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .l-kit-link {
    margin-top: 60px;
    margin-top: 3.75rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .l-kit-detail {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .l-kit-detail-drawings {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .l-kit-detail-price {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding: 50px 0 0;
    padding: 3.125rem 0 0;
  }

  .l-kit-detail-specifications {
    padding: 60px 0 40px;
    padding: 3.75rem 0 2.5rem;
  }

  .l-kit-detail-delivery {
    padding: 60px 0 60px;
    padding: 3.75rem 0 3.75rem;
  }

  .l-kit-detail-link {
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .l-news-pagination {
    margin-top: 60px;
    margin-top: 3.75rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .l-news {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .l-news-category {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .l-news-contents {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .l-news-detail {
    margin-top: 60px;
    margin-top: 3.75rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .l-news-detail-main__contact {
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-right: -10px;
    margin-right: -.625rem;
    margin-left: -10px;
    margin-left: -.625rem;
  }

  .l-news-detail-main__map {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .l-news-detail-main__nav {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .c-contact-float {
    display: block;
  }

  .c-contact-intro {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .c-contact-intro__steps {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-column-gap: 4.125rem;
    -moz-column-gap: 4.125rem;
    column-gap: 4.125rem;
    margin-top: 32px;
    margin-top: 2rem;
  }

  .c-contact-intro__step:not(:last-child)::after {
    width: calc(100% - 2.5rem + 4.125rem);
  }

  .c-contact-intro__step-label {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .c-faq-item__question {
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    padding-top: 23px;
    padding-top: 1.4375rem;
  }

  .c-faq-item__illust {
    width: 30px;
    width: 1.875rem;
    min-width: 30px;
    min-width: 1.875rem;
    height: 34px;
    height: 2.125rem;
  }

  .c-faq-item__illust img {
    max-width: 30px;
    max-width: 1.875rem;
    max-height: 34px;
    max-height: 2.125rem;
  }

  .c-faq-item__mark {
    width: 26px;
    width: 1.625rem;
    height: 26px;
    height: 1.625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-faq-item__question-text {
    margin-top: 4px;
    margin-top: .25rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.2666666667;
  }

  .c-faq-item__icon {
    margin-top: 4px;
    margin-top: .25rem;
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .c-faq-item__icon::after {
    border-right-width: 2px;
    border-right-width: .125rem;
    border-bottom-width: 2px;
    border-bottom-width: .125rem;
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .c-faq-item__answer-inner {
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    padding-top: 10px;
    padding-top: .625rem;
    padding-bottom: 10px;
    padding-bottom: .625rem;
  }

  .c-faq-item__answer-text {
    max-width: none;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.6;
  }

  .c-footer__inner {
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-bottom: 4px;
    padding-bottom: .25rem;
  }

  .c-footer__wrapper {
    row-gap: 42px;
    row-gap: 2.625rem;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    margin: 0 auto;
  }

  .c-footer__nav {
    padding-left: 10px;
    padding-left: .625rem;
  }

  .c-footer__nav:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .c-footer__nav:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .c-footer__nav-wrapper {
    display: contents;
  }

  .c-footer__nav-wrapper .c-footer__nav {
    grid-column: 1;
    grid-row: 2;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }

  .c-footer__nav:nth-of-type(1) .c-footer__nav-title {
    font-size: 16px;
    font-size: 1rem;
  }

  .c-footer__nav:nth-of-type(2) .c-footer__nav-title {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-footer__nav-wrapper .c-footer__nav-title {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-footer__nav:nth-of-type(1) .c-footer__nav-list {
    margin-top: 3px;
    margin-top: .1875rem;
  }

  .c-footer__nav:nth-of-type(2) .c-footer__nav-list {
    margin-top: 7px;
    margin-top: .4375rem;
  }

  .c-footer__nav-wrapper .c-footer__nav-list {
    margin-top: 14px;
    margin-top: .875rem;
  }

  .c-footer__nav-link {
    font-size: 14px;
    font-size: .875rem;
  }

  .c-footer__nav:nth-of-type(1) .c-footer__nav-link {
    white-space: nowrap;
  }

  .c-footer__sns {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    border-left: 2px solid #1abab4;
    border-left: .125rem solid #1abab4;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .c-footer__sns-link {
    -webkit-column-gap: .75rem;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
  }

  .c-footer__sns-text {
    font-size: 14px;
    font-size: .875rem;
  }

  .c-footer__logo {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .c-footer__logo img {
    width: 129px;
    width: 8.0625rem;
    height: 40px;
    height: 2.5rem;
  }

  .c-footer__bottom .l-container {
    min-height: 20px;
    min-height: 1.25rem;
  }

  .c-footer__copy {
    font-size: 14px;
    font-size: .875rem;
  }

  .c-header-pc {
    display: none;
  }

  .c-header-sp {
    display: block;
    background-color: #fff;
  }

  .c-header-sp__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    padding-right: 12px;
    padding-right: .75rem;
    padding-left: 9px;
    padding-left: .5625rem;
    min-height: 71px;
    min-height: 4.4375rem;
  }

  .c-header-sp__logo {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    line-height: 0;
  }

  .c-header-sp__logo a {
    display: block;
    line-height: 0;
  }

  .c-header-sp__logo img {
    width: 143px;
    width: 8.9375rem;
    height: 51px;
    height: 3.1875rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .c-header-sp__award {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    margin-left: -26px;
    margin-left: -1.625rem;
    line-height: 0;
  }

  .c-header-sp__award img {
    width: 68px;
    width: 4.25rem;
    height: 68px;
    height: 4.25rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .c-header-sp__sns {
    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-column-gap: .6875rem;
    -moz-column-gap: .6875rem;
    column-gap: .6875rem;
    margin: 0;
    margin-left: auto;
    padding: 0;
    list-style: none;
  }

  .c-header-sp__sns-link {
    display: block;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    line-height: 0;
  }

  .c-header-sp__sns-item:nth-child(1) .c-header-sp__sns-link img {
    width: 27px;
    width: 1.6875rem;
    height: 27px;
    height: 1.6875rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .c-header-sp__sns-item:nth-child(2) .c-header-sp__sns-link img {
    width: 35px;
    width: 2.1875rem;
    height: 24px;
    height: 1.5rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .c-header-sp__sns-item:nth-child(3) .c-header-sp__sns-link img {
    width: 29px;
    width: 1.8125rem;
    height: 29px;
    height: 1.8125rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .c-header-sp__menu {
    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;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    cursor: pointer;
    margin-left: 8px;
    margin-left: .5rem;
    border: none;
    background-color: #1abab4;
    padding: 0;
    width: 49px;
    width: 3.0625rem;
    height: 49px;
    height: 3.0625rem;
  }

  .c-header-sp__menu img {
    width: 17px;
    width: 1.0625rem;
    height: 17px;
    height: 1.0625rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .c-header-sp__contact-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -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-column-gap: .375rem;
    -moz-column-gap: .375rem;
    column-gap: .375rem;
    background-color: #e7f9f7;
    padding-right: 17px;
    padding-right: 1.0625rem;
    padding-left: 17px;
    padding-left: 1.0625rem;
    min-height: 27px;
    min-height: 1.6875rem;
  }

  .c-header-sp__contact-label {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #1abab4;
    font-size: 12px;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.5;
  }

  .c-header-sp__tel {
    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-column-gap: .25rem;
    -moz-column-gap: .25rem;
    column-gap: .25rem;
    color: #333;
    text-decoration: none;
  }

  .c-header-sp__tel-icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 29px;
    width: 1.8125rem;
    height: 17px;
    height: 1.0625rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .c-header-sp__tel-number {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
  }

  .c-header-sp__hours {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #333;
    font-size: 12px;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.5;
  }

  .c-header-sp__menu:hover,
  .c-header-sp__sns-link:hover {
    opacity: .7;
  }

  .c-kit-guide-card {
    -webkit-box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .1);
    box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .1);
    border-radius: .375rem;
    min-height: 0;
  }

  .c-kit-guide-card__link {
    min-height: 0;
  }

  .c-kit-guide-card__figure img {
    aspect-ratio: 1/1;
    border-radius: .375rem .375rem 0 0;
  }

  .c-kit-guide-card__body {
    padding-top: 12px;
    padding-top: .75rem;
    padding-right: 11px;
    padding-right: .6875rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-left: 11px;
    padding-left: .6875rem;
    min-height: 0;
  }

  .c-kit-guide-card__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.31;
  }

  .c-kit-guide-card__label {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.2;
  }

  .c-kit-guide-card__price {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .c-kit-guide-card__prices {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .c-kit-guide-card__soon {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.2;
  }

  .c-kit-guide-card__code {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.31;
  }

  .c-kit-guide-card__name {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: -.02em;
    line-height: 1.31;
  }

  .c-kit-guide-card__tsubo {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.29;
  }

  .c-kit-guide-card__prices-item {
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.36;
  }

  .c-kit-guide-card__title--idea {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.78;
  }

  .c-kit-guide-card__text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.29;
  }

  .c-kit-guide-card--idea .c-kit-guide-card__body {
    padding-bottom: 16px;
    padding-bottom: 1rem;
    min-height: 180px;
    min-height: 11.25rem;
  }

  .c-kit-guide-card--idea .c-kit-guide-card__text {
    margin-top: 8px;
    margin-top: .5rem;
  }

  .c-kit-guide-card--idea .c-kit-guide-card__action {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: auto;
    padding: 0;
    width: 100%;
  }

  .c-kit-guide-card--idea .c-kit-guide-card__btn {
    -webkit-column-gap: .3125rem;
    -moz-column-gap: .3125rem;
    column-gap: .3125rem;
    margin-top: 12px;
    margin-top: .75rem;
    padding: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 38px;
    min-height: 2.375rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -.02em;
  }

  .c-kit-guide-card__btn {
    -webkit-column-gap: .75rem;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
    padding-top: 7px;
    padding-top: .4375rem;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 7px;
    padding-bottom: .4375rem;
    padding-left: 16px;
    padding-left: 1rem;
    min-width: 164px;
    min-width: 10.25rem;
    min-height: 38px;
    min-height: 2.375rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .c-kit-guide-card__btn-icon {
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .c-kit-guide-card__btn-icon::after {
    border-top-width: 2px;
    border-top-width: .125rem;
    border-right-width: 2px;
    border-right-width: .125rem;
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .c-kit-link {
    height: 57px;
    height: 3.5625rem;
  }

  .c-kit-link__field {
    width: 318px;
    width: 19.875rem;
  }

  .c-kit-link__select {
    color: #000;
  }

  .c-section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }

  .c-section-title-en {
    justify-self: auto;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 10px;
    margin-top: .625rem;
    width: 100%;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
  }

  .c-section-title-ja {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .c-section-title--stacked {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-section-title--stacked .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .c-section-title--stacked .c-section-title-ja {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 0;
    padding-left: 0;
    text-align: center;
  }

  .c-totop {
    bottom: 95px;
    bottom: 5.9375rem;
  }

  .p-home-about-top__inner {
    padding-top: 51px;
    padding-top: 3.1875rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-home-about-top__intro {
    row-gap: 13px;
    row-gap: .8125rem;
    display: grid;
    grid-template-columns: auto auto;
    -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-column-gap: .25rem;
    -moz-column-gap: .25rem;
    column-gap: .25rem;
  }

  .p-home-about-top__illust {
    grid-column: 1;
    grid-row: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: auto;
    width: 89px;
    width: 5.5625rem;
  }

  .p-home-about-top__illust img {
    width: 89px;
    width: 5.5625rem;
    height: 87px;
    height: 5.4375rem;
  }

  .p-home-about-top__head {
    display: contents;
  }

  .p-home-about-top__title {
    grid-column: 2;
    grid-row: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    color: #333;
    font-family: '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', 'Noto Serif JP', serif;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.4;
  }

  .p-home-about-top__lead {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 0;
    max-width: none;
    color: #1abab4;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
  }

  .p-home-about-top__list {
    row-gap: 50px;
    row-gap: 3.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-home-about-top__item {
    width: 100%;
  }

  .p-home-about-top__card {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 13px;
    padding-right: .8125rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-left: 13px;
    padding-left: .8125rem;
  }

  .p-home-about-top__card-title {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 7px;
    padding-top: .4375rem;
    padding-right: 14px;
    padding-right: .875rem;
    padding-bottom: 7px;
    padding-bottom: .4375rem;
    padding-left: 14px;
    padding-left: .875rem;
    width: 212px;
    width: 13.25rem;
    max-width: calc(100% - 1rem);
    min-height: 40px;
    min-height: 2.5rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3;
    white-space: normal;
  }

  .p-home-about-top__card-text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-home-about-middle__inner {
    max-width: none;
    overflow: hidden;
  }

  .p-home-about-middle__media {
    width: 100%;
  }

  .p-home-about-middle__media picture {
    width: 100%;
    max-width: 100%;
  }

  .p-home-about-middle__media img {
    aspect-ratio: 400/231;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .p-home-about-bottom__inner {
    padding-top: 39px;
    padding-top: 2.4375rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
    min-height: 555px;
    min-height: 34.6875rem;
  }

  .p-home-about-bottom__panel {
    padding: 13px 23px 20px 23px;
    padding: .8125rem 1.4375rem 1.25rem 1.4375rem;
    width: 100%;
    max-width: 380px;
    max-width: 23.75rem;
  }

  .p-home-about-bottom__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .p-home-about-bottom__body {
    -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-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    margin-top: 0;
  }

  .p-home-about-bottom__text {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 10px;
    margin-top: .625rem;
    width: 100%;
    max-width: 334px;
    max-width: 20.875rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-home-about-bottom__illust {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 200px;
    width: 12.5rem;
  }

  .p-home-about-bottom__illust img {
    width: 200px;
    width: 12.5rem;
    height: 107px;
    height: 6.6875rem;
  }

  .p-home-about-bottom__lead {
    margin-top: 20px;
    margin-top: 1.25rem;
    max-width: 322px;
    max-width: 20.125rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .p-home-about-bottom__action {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-home-about-bottom__btn {
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-right: 60px;
    padding-right: 3.75rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 60px;
    padding-left: 3.75rem;
    width: 300px;
    width: 18.75rem;
    min-height: 70px;
    min-height: 4.375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-home-about-bottom__btn-icon {
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .p-home-about-bottom__btn-icon::after {
    border-top-width: 2px;
    border-top-width: .125rem;
    border-right-width: 2px;
    border-right-width: .125rem;
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .p-home-banners__inner {
    padding-top: 0;
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

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

  .p-home-banners__figure img {
    aspect-ratio: 380/114;
  }

  .p-home-company__inner {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-home-company__header .c-section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home-company__header .c-section-title-ja {
    width: 100%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
  }

  .p-home-company__header .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
  }

  .p-home-company__body {
    row-gap: 0;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 39px;
    margin-top: 2.4375rem;
  }

  .p-home-company__photo {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 210px;
    width: 13.125rem;
  }

  .p-home-company__photo img {
    aspect-ratio: 210/140;
  }

  .p-home-company__info {
    row-gap: 41px;
    row-gap: 2.5625rem;
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: 5.625rem minmax(0, 1fr);
    margin-top: 43px;
    margin-top: 2.6875rem;
  }

  .p-home-company__term {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.28;
  }

  .p-home-company__desc {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .p-home-company__banner-item--manga {
    grid-column: 1;
    grid-row: 3;
    margin-top: 34px;
    margin-top: 2.125rem;
  }

  .p-home-company__banner-item--about {
    grid-column: 1;
    grid-row: 4;
    margin-top: 23px;
    margin-top: 1.4375rem;
  }

  .p-home-company__banner-lead {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.19;
  }

  .p-home-company__banner-item--manga,
  .p-home-company__banner-item--about {
    justify-self: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 370px;
    width: 23.125rem;
    max-width: 100%;
  }

  .p-home-company__banner-link {
    display: block;
    width: 100%;
  }

  .p-home-company__banner-item--manga .p-home-company__banner-figure,
  .p-home-company__banner-item--about .p-home-company__banner-figure {
    margin-top: 7px;
    margin-top: .4375rem;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    max-width: none;
  }

  .p-home-company__banner-item--manga .p-home-company__banner-figure img,
  .p-home-company__banner-item--about .p-home-company__banner-figure img {
    aspect-ratio: 370/80;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-home-faq__inner {
    padding: 60px 10px;
    padding: 3.75rem .625rem;
    max-width: none;
  }

  .p-home-faq__header-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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home-faq__header-body .c-section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }

  .p-home-faq__header-body .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
  }

  .p-home-faq__header-body .c-section-title-en {
    margin-top: 7px;
    margin-top: .4375rem;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
  }

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

  .p-home-faq__contents .c-faq-item__question {
    padding-top: 16px;
    padding-top: 1rem;
    padding-right: 12px;
    padding-right: .75rem;
  }

  .p-home-faq__contents .c-faq-item__illust {
    width: 30px;
    width: 1.875rem;
    min-width: 30px;
    min-width: 1.875rem;
    height: 34px;
    height: 2.125rem;
  }

  .p-home-faq__contents .c-faq-item__illust img {
    max-width: 30px;
    max-width: 1.875rem;
    max-height: 34px;
    max-height: 2.125rem;
  }

  .p-home-faq__contents .c-faq-item__answer-inner {
    padding-right: 0;
  }

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

  .p-home-faq__btn {
    padding-top: 16px;
    padding-top: 1rem;
    padding-right: 32px;
    padding-right: 2rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-left: 32px;
    padding-left: 2rem;
    width: 100%;
    max-width: 363px;
    max-width: 22.6875rem;
    min-height: 70px;
    min-height: 4.375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-home-faq__btn-icon {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-home-faq__btn-icon::after {
    -webkit-transform: translateX(-.0625rem) rotate(45deg);
    transform: translateX(-.0625rem) rotate(45deg);
    border-top: 2px solid #1abab4;
    border-top: .125rem solid #1abab4;
    border-right: 2px solid #1abab4;
    border-right: .125rem solid #1abab4;
    width: 9px;
    width: .5625rem;
    height: 9px;
    height: .5625rem;
  }

  .p-home-flow__inner {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-left: 10px;
    padding-left: .625rem;
    min-height: 1097px;
    min-height: 68.5625rem;
  }

  .p-home-flow__header {
    row-gap: 11px;
    row-gap: .6875rem;
    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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: .75rem;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
    width: 100%;
  }

  .p-home-flow__illust {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 108px;
    width: 6.75rem;
  }

  .p-home-flow__illust img {
    width: 108px;
    width: 6.75rem;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-home-flow__header-body {
    display: contents;
  }

  .p-home-flow__header-body .c-section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -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;
    width: auto;
  }

  .p-home-flow__header-body .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
  }

  .p-home-flow__header-body .c-section-title-en {
    margin-top: 7px;
    margin-top: .4375rem;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
  }

  .p-home-flow__lead {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: 0;
    width: 100%;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-home-flow__list {
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: none;
  }

  .p-home-flow__item:not(:last-child)::after {
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    margin-top: 16px;
    margin-top: 1rem;
    background-color: #1abab4;
    width: 40px;
    width: 2.5rem;
    height: 26px;
    height: 1.625rem;
  }

  .p-home-flow__item + .p-home-flow__item {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-home-flow__card {
    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-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    width: 100%;
    min-height: 0;
    overflow: visible;
  }

  .p-home-flow__pill {
    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-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 62.4375rem;
    background-color: #1abab4;
    padding-top: 0;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 0;
    padding-left: 16px;
    padding-left: 1rem;
    width: 335px;
    width: 20.9375rem;
    min-height: 69px;
    min-height: 4.3125rem;
  }

  .p-home-flow__step {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -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: 0;
    background-color: transparent;
    padding-top: 0;
    padding-right: 12px;
    padding-right: .75rem;
    padding-bottom: 0;
    padding-left: 0;
    width: auto;
    min-height: 0;
  }

  .p-home-flow__step-icon {
    display: none;
  }

  .p-home-flow__step-label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .25rem;
    -moz-column-gap: .25rem;
    column-gap: .25rem;
    margin: 0;
    color: #fff;
    line-height: 1;
  }

  .p-home-flow__step-label-en {
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }

  .p-home-flow__step-num {
    margin-top: 0;
    color: #fff;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1;
  }

  .p-home-flow__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    margin-left: 12px;
    margin-left: .75rem;
    padding-top: 14px;
    padding-top: .875rem;
    padding-right: 0;
    padding-bottom: 14px;
    padding-bottom: .875rem;
    padding-left: 12px;
    padding-left: .75rem;
    min-width: 0;
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
  }

  .p-home-flow__title::before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    width: 1px;
    width: .0625rem;
    height: 41px;
    height: 2.5625rem;
    content: '';
  }

  .p-home-flow__body {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -35px;
    margin-top: -2.1875rem;
    -webkit-box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .06);
    box-shadow: 0 .125rem .625rem rgba(0, 0, 0, .06);
    border-radius: 1rem;
    background-color: #fff;
    padding-top: 54px;
    padding-top: 3.375rem;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 16px;
    padding-left: 1rem;
    width: 100%;
  }

  .p-home-flow__text {
    color: #333;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.71;
  }

  .p-home-fv-slider__viewport {
    aspect-ratio: 400/300;
    max-width: none;
  }

  .p-home-fv-slider__controls {
    top: 50%;
    padding-right: 4px;
    padding-right: .25rem;
    padding-left: 4px;
    padding-left: .25rem;
    max-width: calc(100% - 1rem);
    height: 36px;
    height: 2.25rem;
  }

  .p-home-fv-slider__prev {
    width: 25px;
    width: 1.5625rem;
    height: 25px;
    height: 1.5625rem;
  }

  .p-home-fv-slider__next {
    width: 25px;
    width: 1.5625rem;
    height: 25px;
    height: 1.5625rem;
  }

  .p-home-fv-slider__prev-icon {
    width: 9px;
    width: .5625rem;
    height: 9px;
    height: .5625rem;
  }

  .p-home-fv-slider__next-icon {
    width: 9px;
    width: .5625rem;
    height: 9px;
    height: .5625rem;
  }

  .p-home-fv-bottom-slider__controls {
    display: none;
  }

  .p-home-fv-bottom-slider__viewport {
    aspect-ratio: 397/80;
  }

  .p-home-fv-bottom-slider__media img {
    aspect-ratio: 397/80;
  }

  .p-home-greeting__inner {
    max-width: none;
  }

  .p-home-greeting__media img {
    aspect-ratio: 400/619;
  }

  .p-home-guide__media img {
    aspect-ratio: 400/285;
  }

  .p-home-info__inner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-home-info__header .c-section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home-info__header .c-section-title-ja {
    width: 100%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
  }

  .p-home-info__header .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
  }

  .p-home-info__list {
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: none;
  }

  .p-home-info__link {
    row-gap: 9px;
    row-gap: .5625rem;
    grid-template-columns: auto auto 1fr auto;
    grid-template-rows: auto auto;
    -webkit-column-gap: .9375rem;
    -moz-column-gap: .9375rem;
    column-gap: .9375rem;
    padding-top: 16px;
    padding-top: 1rem;
    padding-right: 26px;
    padding-right: 1.625rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-left: 4px;
    padding-left: .25rem;
    min-height: 80px;
    min-height: 5rem;
  }

  .p-home-info__date {
    grid-column: 1;
    grid-row: 1;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }

  .p-home-info__category {
    grid-column: 2;
    grid-row: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }

  .p-home-info__title {
    grid-column: 1/4;
    grid-row: 2;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.44;
  }

  .p-home-info__icon {
    grid-column: 4;
    grid-row: 2;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .p-home-info__icon::after {
    border-top-width: 2px;
    border-top-width: .125rem;
    border-right-width: 2px;
    border-right-width: .125rem;
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

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

  .p-home-info__btn {
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-right: 60px;
    padding-right: 3.75rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 60px;
    padding-left: 3.75rem;
    width: 300px;
    width: 18.75rem;
    max-width: 100%;
    min-height: 70px;
    min-height: 4.375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-home-info__btn-icon {
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .p-home-info__btn-icon::after {
    border-top-width: 2px;
    border-top-width: .125rem;
    border-right-width: 2px;
    border-right-width: .125rem;
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .p-home-lineup {
    background-image: url('../img/home-lineup-bg-sp.png');
    background-position: center top;
    background-size: cover;
  }

  .p-home-lineup__inner {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-right: 13px;
    padding-right: .8125rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 13px;
    padding-left: .8125rem;
    max-width: none;
    min-height: 1587px;
    min-height: 99.1875rem;
  }

  .p-home-lineup__lead {
    width: 100%;
    max-width: none;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
  }

  .p-home-lineup__header .c-section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-home-lineup__header .c-section-title-ja {
    width: 100%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-home-lineup__header .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
  }

  .p-home-lineup__list {
    row-gap: 10px;
    row-gap: .625rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
    max-width: none;
  }

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

  .p-home-lineup__btn {
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-right: 60px;
    padding-right: 3.75rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 60px;
    padding-left: 3.75rem;
    width: 300px;
    width: 18.75rem;
    max-width: 100%;
    min-height: 70px;
    min-height: 4.375rem;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .p-home-lineup__btn-icon {
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .p-home-lineup__btn-icon::after {
    border-top-width: 2px;
    border-top-width: .125rem;
    border-right-width: 2px;
    border-right-width: .125rem;
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .p-home-links__inner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-home-links__list {
    row-gap: 20px;
    row-gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: 1.125rem;
    -moz-column-gap: 1.125rem;
    column-gap: 1.125rem;
  }

  .p-home-links__figure img {
    aspect-ratio: 180/113;
  }

  .p-home-links__wide {
    margin-top: 19px;
    margin-top: 1.1875rem;
  }

  .p-home-links__wide-figure img {
    aspect-ratio: 380/114;
  }

  .p-home-links__note {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-home-work {
    background-image: url('../img/home-work-bg-sp.png');
    background-position: center top;
    background-size: cover;
  }

  .p-home-work__inner {
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
    min-height: 772px;
    min-height: 48.25rem;
  }

  .p-home-work__header .c-section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home-work__header .c-section-title-ja {
    width: 100%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-home-work__header .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.58;
    text-align: center;
  }

  .p-home-work__list {
    row-gap: 20px;
    row-gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .p-home-work__item {
    width: 100%;
    min-width: 0;
    height: 100%;
  }

  .p-home-work__card-link {
    min-height: 202px;
    min-height: 12.625rem;
  }

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

  .p-home-work__btn {
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-right: 60px;
    padding-right: 3.75rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 60px;
    padding-left: 3.75rem;
    width: 300px;
    width: 18.75rem;
    max-width: 100%;
    min-height: 70px;
    min-height: 4.375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-home-work__btn-icon {
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .p-home-work__btn-icon::after {
    border-top-width: 2px;
    border-top-width: .125rem;
    border-right-width: 2px;
    border-right-width: .125rem;
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .p-home .c-footer {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-agency-confirm-content {
    max-width: none;
  }

  .p-agency-confirm__intro.c-contact-intro {
    min-height: 288px;
    min-height: 18rem;
  }

  .p-agency-confirm .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-agency-confirm .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    width: 100%;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
  }

  .p-agency-confirm__body {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 18px;
    padding-right: 1.125rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 12px;
    padding-left: .75rem;
  }

  .p-agency-thanks-content {
    max-width: none;
  }

  .p-agency-thanks__intro.c-contact-intro {
    min-height: 288px;
    min-height: 18rem;
  }

  .p-agency-thanks .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-agency-thanks .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    width: 100%;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
  }

  .p-agency-thanks__body {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 18px;
    padding-right: 1.125rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 12px;
    padding-left: .75rem;
  }

  .p-agency-thanks__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .p-agency-thanks__text p + p {
    margin-top: 8px;
    margin-top: .5rem;
  }

  .p-agency-program__inner {
    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;
    padding: 30px 10px 70px;
    padding: 1.875rem .625rem 4.375rem;
    max-width: none;
  }

  .p-agency-program__body {
    min-width: 0;
  }

  .p-agency-program__header .c-section-title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-agency-program__header .c-section-title-ja {
    text-align: center;
  }

  .p-agency-program__header .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
  }

  .p-agency-program__catch {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2;
  }

  .p-agency-program__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.5;
  }

  .p-agency-program__text p + p {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-agency-program__points {
    row-gap: 15px;
    row-gap: .9375rem;
    -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;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-agency-program__point {
    padding-top: 10px;
    padding-top: .625rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-bottom: 10px;
    padding-bottom: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    width: 229px;
    width: 14.3125rem;
  }

  .p-agency-program__point + .p-agency-program__point {
    min-height: 67px;
    min-height: 4.1875rem;
  }

  .p-agency-program__aside {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    max-width: 380px;
    max-width: 23.75rem;
  }

  .p-agency-program__figure {
    margin-top: 38px;
    margin-top: 2.375rem;
    width: 100%;
  }

  .p-agency-program__figure::after {
    height: 125px;
    height: 7.8125rem;
  }

  .p-agency-program__figure img {
    width: 100%;
    height: 254px;
    height: 15.875rem;
  }

  .p-agency-program__btn {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 330px;
    width: 20.625rem;
    min-height: 80px;
    min-height: 5rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-agency-program__btn-icon {
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .p-agency-program__btn-icon::after {
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .p-agency-features__inner {
    margin-right: auto;
    margin-left: auto;
    padding: 60px 10px;
    padding: 3.75rem .625rem;
    max-width: none;
  }

  .p-agency-features .c-section-title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-agency-features .c-section-title-ja {
    text-align: center;
  }

  .p-agency-features .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    text-align: center;
  }

  .p-agency-features__list {
    row-gap: 30px;
    row-gap: 1.875rem;
    -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;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-agency-features__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
    max-width: 300px;
    max-width: 18.75rem;
  }

  .p-agency-features__card {
    width: 100%;
    height: 100%;
  }

  .p-agency-requirements__inner {
    max-width: none;
  }

  .p-agency-requirements .c-section-title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-agency-requirements .c-section-title-ja {
    text-align: center;
  }

  .p-agency-requirements .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    text-align: center;
  }

  .p-agency-requirements__list {
    row-gap: 30px;
    row-gap: 1.875rem;
    -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;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-agency-requirements__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
    max-width: 380px;
    max-width: 23.75rem;
  }

  .p-agency-requirements__card {
    grid-template-columns: 5.9375rem 1fr;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    padding-top: 25px;
    padding-top: 1.5625rem;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 25px;
    padding-bottom: 1.5625rem;
    padding-left: 16px;
    padding-left: 1rem;
    width: 100%;
    height: 100%;
    min-height: 172px;
    min-height: 10.75rem;
  }

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

  .p-agency-requirements__icon img {
    max-width: 95px;
    max-width: 5.9375rem;
  }

  .p-agency-requirements__item + .p-agency-requirements__item .p-agency-requirements__icon img {
    max-width: 84px;
    max-width: 5.25rem;
  }

  .p-agency-onboarding__inner {
    padding: 60px 10px;
    padding: 3.75rem .625rem;
    max-width: none;
  }

  .p-agency-onboarding .c-section-title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-agency-onboarding .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    text-align: center;
  }

  .p-agency-onboarding .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
  }

  .p-agency-onboarding__flow {
    row-gap: 56px;
    row-gap: 3.5rem;
    -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;
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-top: 8px;
    padding-top: .5rem;
  }

  .p-agency-onboarding__flow-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    -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-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .p-agency-onboarding__flow-item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -38px;
    bottom: -2.375rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    border-right: 4px solid #e7dcbb;
    border-right: .25rem solid #e7dcbb;
    border-bottom: 4px solid #e7dcbb;
    border-bottom: .25rem solid #e7dcbb;
    width: 14px;
    width: .875rem;
    height: 14px;
    height: .875rem;
  }

  .p-agency-onboarding__flow-icon {
    margin-top: 0;
    padding-top: 28px;
    padding-top: 1.75rem;
    padding-bottom: 36px;
    padding-bottom: 2.25rem;
    width: 150px;
    width: 9.375rem;
    height: 150px;
    height: 9.375rem;
  }

  .p-agency-onboarding__flow-num {
    top: 63px;
    top: 3.9375rem;
    right: auto;
    left: -64px;
    left: -4rem;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .p-agency-onboarding__flow-text {
    margin-top: 12px;
    margin-top: .75rem;
    margin-left: 0;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-agency-onboarding__area {
    display: grid;
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto auto;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-agency-onboarding__area-title {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
  }

  .p-agency-onboarding__area-lead {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    z-index: 1;
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
  }

  .p-agency-onboarding__area-map {
    position: relative;
    grid-column: 1;
    grid-row: 2/5;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
    justify-self: end;
    z-index: 0;
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-right: -12px;
    margin-right: -.75rem;
    width: 230px;
    width: 14.375rem;
    pointer-events: none;
    line-height: 0;
  }

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

  .p-agency-onboarding__area-map + .p-agency-onboarding__area-note {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    z-index: 1;
    margin-top: 20px;
    margin-top: 1.25rem;
    color: #b50d0d;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }

  .p-agency-onboarding__area-map + .p-agency-onboarding__area-note + .p-agency-onboarding__area-note {
    position: relative;
    grid-column: 1;
    grid-row: 4;
    z-index: 1;
    margin-top: 16px;
    margin-top: 1rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }

  .p-agency-onboarding__area-nav {
    grid-column: 1/-1;
    grid-row: 5;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-agency-onboarding__area-panels {
    grid-column: 1/-1;
    grid-row: 6;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-agency-onboarding__area-nav-list {
    row-gap: 16px;
    row-gap: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) .375rem minmax(0, 1fr);
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 320px;
    max-width: 20rem;
  }

  .p-agency-onboarding__area-nav-list::before {
    grid-column: 2;
    grid-row: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    justify-self: center;
    color: #333;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    content: '|';
  }

  .p-agency-onboarding__area-nav-list::after {
    grid-column: 2;
    grid-row: 2;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    justify-self: center;
    color: #333;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    content: '|';
  }

  .p-agency-onboarding__area-nav-item {
    min-width: 0;
  }

  .p-agency-onboarding__area-nav-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .p-agency-onboarding__area-nav-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .p-agency-onboarding__area-nav-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .p-agency-onboarding__area-nav-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  .p-agency-onboarding__area-nav-item:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  .p-agency-onboarding__area-nav-item:not(:last-child)::after {
    display: none;
  }

  .p-agency-onboarding__area-nav-btn {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .p-agency-onboarding__area-panel + .p-agency-onboarding__area-panel {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-agency-onboarding__area-panel-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .p-agency-onboarding__area-panel-label {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5;
  }

  .p-agency-onboarding__area-panel-contact {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
  }

  .p-agency-entry__inner {
    padding: 60px 10px;
    padding: 3.75rem .625rem;
    max-width: none;
  }

  .p-agency-entry__intro.c-contact-intro {
    min-height: 286px;
    min-height: 17.875rem;
  }

  .p-agency-entry .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-agency-entry .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    width: 100%;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
  }

  .p-agency-entry__form {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-left: 20px;
    padding-left: 1.25rem;
    max-width: none;
  }

  .p-agency-entry__item {
    row-gap: 8px;
    row-gap: .5rem;
    grid-template-columns: minmax(0, 1fr);
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }

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

  .p-agency-entry__item-head {
    padding-top: 0;
  }

  .p-agency-entry__input {
    max-width: none;
  }

  .p-agency-entry__input--wide {
    max-width: none;
  }

  .p-agency-entry__select {
    max-width: none;
  }

  .p-agency-entry__textarea {
    max-width: none;
  }

  .p-agency-entry__textarea--wide {
    max-width: none;
  }

  .p-agency-entry__item:has(#entry-business) .p-agency-entry__textarea--wide {
    min-height: 93px;
    min-height: 5.8125rem;
  }

  .p-agency-entry__item:has(#entry-question) .p-agency-entry__textarea--wide {
    min-height: 136px;
    min-height: 8.5rem;
  }

  .p-agency-entry__item-body--license .p-agency-entry__input + .p-agency-entry__input {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-agency-entry__item-body--hope {
    row-gap: 16px;
    row-gap: 1rem;
  }

  .p-agency-entry__item-body--hope .p-agency-entry__input--date {
    max-width: none;
  }

  .p-agency-entry__item-body--hope .p-agency-entry__select {
    max-width: none;
  }

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

  .p-agency-entry__submit-btn {
    width: 100%;
    min-width: 0;
    max-width: 330px;
    max-width: 20.625rem;
    min-height: 64px;
    min-height: 4rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-catalog__lead {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
  }

  .p-contact-confirm-content {
    max-width: none;
  }

  .p-contact-confirm__body {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 18px;
    padding-right: 1.125rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 12px;
    padding-left: .75rem;
  }

  .p-contact-thanks-content {
    max-width: none;
  }

  .p-contact-thanks__body {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 18px;
    padding-right: 1.125rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 12px;
    padding-left: .75rem;
  }

  .p-contact-thanks__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
  }

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

  .p-contact-banner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    width: 100%;
  }

  .p-contact-banner img {
    aspect-ratio: 380/114;
  }

  .p-contact-consultation {
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .p-contact-consultation__inner {
    max-width: none;
  }

  .p-contact-consultation__intro {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-contact-consultation__logo,
  .p-contact-consultation__mascot {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 auto;
    line-height: 0;
  }

  .p-contact-consultation__logo img,
  .p-contact-consultation__mascot img {
    width: 153px;
    width: 9.5625rem;
    height: 71px;
    height: 4.4375rem;
  }

  .p-contact-consultation__intro .c-section-title {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .p-contact-consultation__lead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    width: 100%;
  }

  .p-contact-consultation__illust img {
    width: 210px;
    width: 13.125rem;
    height: 128px;
    height: 8rem;
  }

  .p-contact-consultation__message {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .p-contact-consultation__heading {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-contact-consultation__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    line-height: 1.3;
  }

  .p-contact-consultation__form {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-left: 20px;
    padding-left: 1.25rem;
    max-width: none;
  }

  .p-contact-consultation__item {
    row-gap: 8px;
    row-gap: .5rem;
    grid-template-columns: minmax(0, 1fr);
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }

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

  .p-contact-consultation__item-head {
    padding-top: 0;
  }

  .p-contact-consultation__item:nth-of-type(5) .p-contact-consultation__item-head,
  .p-contact-consultation__item:nth-of-type(6) .p-contact-consultation__item-head {
    padding-top: 0;
  }

  .p-contact-consultation__item:nth-of-type(4) .p-contact-consultation__select {
    width: 100%;
    max-width: none;
  }

  .p-contact-consultation__input {
    max-width: none;
  }

  .p-contact-consultation__item-body--hope {
    row-gap: 16px;
    row-gap: 1rem;
  }

  .p-contact-consultation__item-body--hope .p-contact-consultation__input--date {
    max-width: none;
  }

  .p-contact-consultation__item-body--hope .p-contact-consultation__select {
    width: 100%;
    max-width: none;
  }

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

  .p-contact-consultation__form .p-contact-consultation__submit-btn {
    width: 100%;
    min-width: 0;
    max-width: 330px;
    max-width: 20.625rem;
    height: 64px;
    height: 4rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-contact-inquiry__inner {
    max-width: none;
  }

  .p-contact-inquiry__form {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-left: 15px;
    padding-left: .9375rem;
    max-width: none;
  }

  .p-contact-inquiry__item {
    row-gap: 8px;
    row-gap: .5rem;
    grid-template-columns: minmax(0, 1fr);
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }

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

  .p-contact-inquiry__item-head {
    padding-top: 0;
  }

  .p-contact-inquiry__input {
    max-width: none;
  }

  .p-contact-inquiry__select {
    max-width: none;
  }

  .p-contact-inquiry__textarea {
    max-width: none;
  }

  .p-contact-inquiry__item-body--hope .p-contact-inquiry__input--date {
    max-width: none;
  }

  .p-contact-inquiry__input--zip {
    width: 100%;
    max-width: 100%;
  }

  .p-contact-inquiry__input--age {
    padding: 10px;
    padding: .625rem;
    width: 40px;
    width: 2.5rem;
    max-width: 100%;
  }

  .p-contact-inquiry__input--family {
    padding: 10px;
    padding: .625rem;
    width: 40px;
    width: 2.5rem;
    max-width: 100%;
  }

  .p-contact-inquiry__block .p-contact-inquiry__checkbox-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .wpcf7-list-item {
    display: inline-block;
    margin: 0 0 1em 1em;
  }

  .p-contact-inquiry__block-title {
    margin-right: -15px;
    margin-right: -.9375rem;
    margin-left: -15px;
    margin-left: -.9375rem;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
  }

  .p-contact-inquiry__block .p-contact-inquiry__select {
    width: 100%;
    max-width: 255px;
    max-width: 15.9375rem;
  }

  .p-contact-inquiry__item-body--hope .p-contact-inquiry__select {
    width: 100%;
    max-width: none;
  }

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

  .p-contact-inquiry__submit-btn {
    width: 100%;
    min-width: 0;
    max-width: 330px;
    max-width: 20.625rem;
    height: 64px;
    height: 4rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-contact-inquiry__note {
    padding-left: 0;
    max-width: 372px;
    max-width: 23.25rem;
    line-height: 1.3;
  }

  .p-contact-line__inner {
    max-width: 500px;
    max-width: 31.25rem;
  }

  .p-contact-line__head {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 1.125rem;
    -moz-column-gap: 1.125rem;
    column-gap: 1.125rem;
    height: 97px;
    height: 6.0625rem;
  }

  .p-contact-line__head-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .p-contact-line__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-contact-line__visual {
    width: 100%;
  }

  .p-contact-line__visual .p-contact-line__catch:nth-child(1) {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }

  .p-contact-line__illust {
    margin-top: 16px;
    margin-top: 1rem;
    text-align: center;
  }

  .p-contact-line__illust img {
    aspect-ratio: auto;
    width: 100%;
    max-width: 354px;
    max-width: 22.125rem;
    height: auto;
  }

  .p-contact-line__visual .p-contact-line__catch:nth-child(3) {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-contact-line__text {
    margin-top: 65px;
    margin-top: 4.0625rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.3;
  }

  .p-contact-line__text p + p {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-contact-line__points {
    display: none;
  }

  .p-contact-line__cta {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 30px;
    margin-top: 1.875rem;
    max-width: none;
  }

  .p-contact-line__cta-lead {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-contact-line__cta-slash {
    font-size: 20px;
    font-size: 1.25rem;
  }

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

  .p-contact-line__btn img {
    width: 161px;
    width: 10.0625rem;
    height: 50px;
    height: 3.125rem;
  }

  .p-faq-header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: none;
    min-height: 127px;
    min-height: 7.9375rem;
  }

  .p-faq-header__lead {
    margin-top: 20px;
    margin-top: 1.25rem;
    width: 100%;
    max-width: none;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.2;
    text-align: left;
  }

  .p-faq-filter {
    border-top: none;
    border-bottom: none;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    max-width: none;
    min-height: 120px;
    min-height: 7.5rem;
  }

  .p-faq-filter__search-field {
    width: 100%;
    height: 40px;
    height: 2.5rem;
  }

  .p-faq-filter__search-input {
    margin-left: 12px;
    margin-left: .75rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

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

  .p-faq-filter__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #919191;
    border: .0625rem solid #919191;
    border-radius: 624.9375rem;
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333333' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-position: right 16px center;
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: .75rem .5rem;
    padding-top: 8px;
    padding-top: .5rem;
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-bottom: 8px;
    padding-bottom: .5rem;
    padding-left: 40px;
    padding-left: 2.5rem;
    width: 100%;
    height: 40px;
    height: 2.5rem;
    color: #333;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    -moz-text-align-last: center;
    text-align-last: center;
  }

  .p-faq-contents {
    max-width: none;
  }

  .p-faq-contents__title {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-faq-contents > .p-faq-contents__category:first-of-type {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-faq-contents > .p-faq-contents__category + .p-faq-contents__category {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-faq-contents__category-title {
    background: -webkit-gradient(linear, left top, right top, color-stop(3.125rem, #D9B034), color-stop(3.125rem, transparent)) left bottom/3.125rem .0625rem no-repeat;
    background: linear-gradient(to right, #D9B034 3.125rem, transparent 3.125rem) left bottom/3.125rem .0625rem no-repeat;
    padding-bottom: 10px;
    padding-bottom: .625rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2083333333;
  }

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

  .p-faq-contents__coming-soon {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-kit-detail-introduction__inner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-kit-detail-introduction__title {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.5;
  }

  .p-kit-detail-introduction__photos {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-kit-detail-introduction__photos-item + .p-kit-detail-introduction__photos-item {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-kit-detail-introduction__intro {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-kit-detail-introduction__subheading {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-kit-detail-introduction__text {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-kit-detail-introduction__text p {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-kit-detail-introduction__text p + p {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-kit-detail-introduction__text + .p-kit-detail-introduction__subheading {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-kit-detail-introduction__price {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-kit-detail-introduction__price-omakase {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .p-kit-detail-introduction__price-amount {
    font-size: 44px;
    font-size: 2.75rem;
  }

  .p-kit-detail-introduction__gallery {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-kit-detail-introduction__gallery-item + .p-kit-detail-introduction__gallery-item {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-kit-detail-introduction__feature {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-kit-detail-introduction__figure img {
    aspect-ratio: 380/214;
  }

  .p-kit-detail-drawings__inner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-kit-detail-drawings__header .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
  }

  .p-kit-detail-drawings__header .c-section-title-en {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .p-kit-detail-drawings__plans {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    width: 100%;
    max-width: calc(21.875rem + 2.25rem);
  }

  .p-kit-detail-drawings__plan-main {
    margin-right: auto;
    margin-left: auto;
    padding-top: 32px;
    padding-top: 2rem;
    padding-right: 0;
    padding-bottom: 32px;
    padding-bottom: 2rem;
    padding-left: 0;
    width: 100%;
    max-width: 350px;
    max-width: 21.875rem;
  }

  .p-kit-detail-drawings__figure--1f img {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 350px;
    max-width: 21.875rem;
  }

  .p-kit-detail-drawings__nav {
    top: 32px;
    top: 2rem;
    right: 0;
    bottom: 32px;
    bottom: 2rem;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 350px;
    max-width: 21.875rem;
    height: auto;
  }

  .p-kit-detail-drawings__nav-item:nth-child(3) {
    left: 0;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
  }

  .p-kit-detail-drawings__nav-btn {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-kit-detail-drawings__figure--cabin {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-kit-detail-drawings__figure--cabin img {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 350px;
    max-width: 21.875rem;
  }

  .p-kit-detail-drawings__elevations {
    row-gap: 20px;
    row-gap: 1.25rem;
    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: 30px;
    margin-top: 1.875rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 339px;
    max-width: 21.1875rem;
  }

  .p-kit-detail-drawings__elevations-item {
    width: 100%;
  }

  .p-kit-detail-drawings__elevations-item--south {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 0;
  }

  .p-kit-detail-drawings__elevations-item--north {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 0;
  }

  .p-kit-detail-drawings__elevations-item--east {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .p-kit-detail-drawings__elevations-item--west {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }

  .p-kit-detail-drawings__elevations-item .p-kit-detail-drawings__figure img {
    aspect-ratio: 339/223;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 339px;
    max-width: 21.1875rem;
  }

  .p-kit-detail-drawings__model {
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 245px;
    max-width: 15.3125rem;
  }

  .p-kit-detail-drawings__model-title {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-kit-detail-drawings__model-list {
    row-gap: 0;
    display: block;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }

  .p-kit-detail-drawings__model-item {
    grid-column: auto;
    grid-row: auto;
    white-space: normal;
  }

  .p-kit-detail-drawings__model-item + .p-kit-detail-drawings__model-item {
    margin-top: 8px;
    margin-top: .5rem;
  }

  .p-kit-detail-price__inner {
    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: 60px;
    margin-top: 3.75rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-kit-detail-price__header {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    width: 100%;
  }

  .p-kit-detail-price__header .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-kit-detail-price__header .c-section-title-en {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .p-kit-detail-price__lead {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 20px;
    margin-top: 1.25rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 400px;
    max-width: 25rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-kit-detail-price__featured {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 20px;
    margin-top: 1.25rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 44px;
    padding-top: 2.75rem;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
    padding-left: 16px;
    padding-left: 1rem;
    width: 100%;
    max-width: 400px;
    max-width: 25rem;
    min-height: 202px;
    min-height: 12.625rem;
  }

  .p-kit-detail-price__featured-icon {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 84px;
    width: 5.25rem;
    height: 84px;
    height: 5.25rem;
  }

  .p-kit-detail-price__featured-title {
    grid-column: 3;
    grid-row: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    justify-self: start;
    padding-top: 11px;
    padding-top: .6875rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-bottom: 11px;
    padding-bottom: .6875rem;
    padding-left: 24px;
    padding-left: 1.5rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: left;
  }

  .p-kit-detail-price__featured-lead {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 19px;
    margin-top: 1.1875rem;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-kit-detail-price__featured-price {
    grid-column: 1/-1;
    grid-row: 3;
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
    justify-self: end;
    margin-top: 25px;
    margin-top: 1.5625rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
    text-align: right;
  }

  .p-kit-detail-price__featured-price-num {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-kit-detail-price__cards {
    row-gap: 10px;
    row-gap: .625rem;
    grid-template-columns: minmax(0, 1fr);
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 10px;
    margin-top: .625rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 400px;
    max-width: 25rem;
  }

  .p-kit-detail-price__card {
    padding-top: 24px;
    padding-top: 1.5rem;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 16px;
    padding-left: 1rem;
    min-height: 0;
  }

  .p-kit-detail-price__card-head {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
  }

  .p-kit-detail-price__card-icon {
    width: 28px;
    width: 1.75rem;
    height: 28px;
    height: 1.75rem;
  }

  .p-kit-detail-price__card-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-kit-detail-price__card-lead {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-kit-detail-price__card-price {
    padding-top: 10px;
    padding-top: .625rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.5;
  }

  .p-kit-detail-price__card-price-num {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-kit-detail-price__table-area {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-kit-detail-price__table-wrap {
    margin-right: calc(50% - 50vw);
    width: calc(50vw + 50%);
  }

  .p-kit-detail-price__scroll-hint {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-kit-detail-price__note-bottom {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    margin-top: 20px;
    margin-top: 1.25rem;
    line-height: 1.5;
  }

  .p-kit-detail-price__info {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
    margin-top: 20px;
    margin-top: 1.25rem;
    margin-left: -10px;
    margin-left: -.625rem;
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-right: 13px;
    padding-right: .8125rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 28px;
    padding-left: 1.75rem;
    width: calc(100% + 1.25rem);
    min-height: 166px;
    min-height: 10.375rem;
  }

  .p-kit-detail-specifications__inner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-kit-detail-specifications__header .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
  }

  .p-kit-detail-specifications__header .c-section-title-en {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .p-kit-detail-specifications__standard {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding-left: 0;
  }

  .p-kit-detail-specifications__section-head {
    -webkit-column-gap: 1.125rem;
    -moz-column-gap: 1.125rem;
    column-gap: 1.125rem;
  }

  .p-kit-detail-specifications__list {
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-left: 0;
    width: 100%;
  }

  .p-kit-detail-specifications__standard .p-kit-detail-specifications__list::before {
    display: none;
  }

  .p-kit-detail-specifications__list-item + .p-kit-detail-specifications__list-item {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-kit-detail-specifications__item {
    position: relative;
    overflow: hidden;
  }

  .p-kit-detail-specifications__item::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-left-radius: .625rem;
    border-bottom-left-radius: 10px;
    border-bottom-left-radius: .625rem;
    background-color: #1abab4;
    width: 8px;
    width: .5rem;
    content: '';
  }

  .p-kit-detail-specifications__item-trigger {
    padding-top: 24px;
    padding-top: 1.5rem;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
    padding-left: 24px;
    padding-left: 1.5rem;
  }

  .p-kit-detail-specifications__item-head {
    row-gap: 8px;
    row-gap: .5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-kit-detail-specifications__item-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .p-kit-detail-specifications__item-note {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.5;
  }

  .p-kit-detail-specifications__item-body-inner {
    padding-top: 0;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 0;
    padding-left: 24px;
    padding-left: 1.5rem;
  }

  .p-kit-detail-specifications__item-body.is-open .p-kit-detail-specifications__item-body-inner {
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }

  .p-kit-detail-specifications__item-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-kit-detail-specifications__pro {
    margin-top: 44px;
    margin-top: 2.75rem;
    padding-left: 0;
  }

  .p-kit-detail-specifications__pro-badge {
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
  }

  .p-kit-detail-specifications__pro-badge-label {
    padding-top: 4px;
    padding-top: .25rem;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 4px;
    padding-bottom: .25rem;
    padding-left: 16px;
    padding-left: 1rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.5;
  }

  .p-kit-detail-specifications__pro-badge::before,
  .p-kit-detail-specifications__pro-badge::after {
    max-width: 90px;
    max-width: 5.625rem;
  }

  .p-kit-detail-specifications__pro .p-kit-detail-specifications__section-head {
    margin-top: 66px;
    margin-top: 4.125rem;
  }

  .p-kit-detail-specifications__pro .p-kit-detail-specifications__list {
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-left: 0;
  }

  .p-kit-detail-specifications__pro .p-kit-detail-specifications__list::before {
    display: none;
  }

  .p-kit-detail-specifications__pro .p-kit-detail-specifications__item-trigger {
    padding-left: 24px;
    padding-left: 1.5rem;
  }

  .p-kit-detail-specifications__pro .p-kit-detail-specifications__item-body-inner {
    padding-left: 24px;
    padding-left: 1.5rem;
  }

  .p-kit-detail-delivery__inner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-kit-detail-delivery__header .c-section-title-ja {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
  }

  .p-kit-detail-delivery__header .c-section-title-en {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .p-kit-detail-delivery__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    max-width: none;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .p-kit-banner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    width: 100%;
  }

  .p-kit-banner img {
    aspect-ratio: 380/114;
  }

  .p-kit-contact-banner {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    width: 100%;
  }

  .p-kit-contact-banner img {
    aspect-ratio: 377/163;
  }

  .p-kit-guide {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }

  .p-kit-guide__inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 14px;
    padding-right: .875rem;
    padding-left: 14px;
    padding-left: .875rem;
    max-width: none;
  }

  .p-kit-guide__header .c-section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-kit-guide__header .c-section-title-ja {
    width: 100%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-kit-guide__header .c-section-title-en {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
  }

  .p-kit-guide__list {
    row-gap: 10px;
    row-gap: .625rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: none;
  }

  .p-kit-bitooku__inner {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-right: 11px;
    padding-right: .6875rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 11px;
    padding-left: .6875rem;
    max-width: none;
  }

  .p-kit-bitooku__lead {
    width: 100%;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-kit-bitooku__header .c-section-title {
    margin-top: 4px;
    margin-top: .25rem;
  }

  .p-kit-bitooku__header .c-section-title-ja {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-kit-bitooku__header .c-section-title-en {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
  }

  .p-kit-bitooku__header + .p-kit-bitooku__block .p-kit-bitooku__category {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-kit-bitooku__block + .p-kit-bitooku__block .p-kit-bitooku__category {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-kit-bitooku__category {
    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-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    width: 100%;
    max-width: none;
    min-height: 44px;
    min-height: 2.75rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .p-kit-bitooku__category-label {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-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;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2.1875rem;
    background-color: #1abab4;
    padding-top: 10px;
    padding-top: .625rem;
    padding-right: 0;
    padding-bottom: 10px;
    padding-bottom: .625rem;
    padding-left: 0;
    width: 300px;
    width: 18.75rem;
    max-width: 378px;
    max-width: 23.625rem;
    min-height: 44px;
    min-height: 2.75rem;
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
  }

  .p-kit-bitooku__category::before,
  .p-kit-bitooku__category::after {
    display: none;
  }

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

  .p-kit-bitooku__list {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .p-kit-bitooku__item {
    width: 250px;
    width: 15.625rem;
  }

  .p-kit-bitooku__figure img {
    width: 250px;
    width: 15.625rem;
    height: 250px;
    height: 15.625rem;
  }

  .p-kit-bitooku__caption {
    min-height: 50px;
    min-height: 3.125rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .p-kit-options__inner {
    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;
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-kit-options__title {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 380px;
    max-width: 23.75rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3;
    text-align: left;
  }

  .p-kit-options__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;
  }

  .p-kit-options__photos {
    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;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 100%;
  }

  .p-kit-options__photos-item {
    width: 180px;
    width: 11.25rem;
  }

  .p-kit-options__figure img {
    width: 180px;
    width: 11.25rem;
    height: 180px;
    height: 11.25rem;
  }

  .p-kit-options__content {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 30px;
    margin-top: 1.875rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 380px;
    max-width: 23.75rem;
  }

  .p-kit-options__lead {
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.5;
    text-align: left;
  }

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

  .p-kit-options__list-item {
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.5;
    text-align: left;
  }

  .p-kit-bitooku-modal {
    padding: 16px;
    padding: 1rem;
  }

  .p-kit-bitooku-modal__dialog {
    padding-top: 36px;
    padding-top: 2.25rem;
    padding-right: 16px;
    padding-right: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-left: 16px;
    padding-left: 1rem;
    width: 100%;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
  }

  .p-kit-bitooku-modal__figure {
    width: 100%;
  }

  .p-kit-bitooku-modal__media {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 12.5rem);
  }

  .p-kit-bitooku-modal__img {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 12.5rem);
    -o-object-fit: contain;
    object-fit: contain;
  }

  .p-kit-bitooku-modal__caption {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-kit-bitooku-modal__text {
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-news-detail {
    display: block;
  }

  .p-news-detail-sidebar {
    display: none;
  }

  .p-news-detail-main__inner {
    max-width: none;
  }

  .p-news-detail-main__body h1 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2083333333;
  }

  .p-news-detail-main__body h1 + p {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-news-detail-main__body figure {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-news-detail-main__body figure img {
    width: 100%;
  }

  .p-news-detail-main__body h2 {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding: 16px 18px;
    padding: 1rem 1.125rem;
    min-height: 58px;
    min-height: 3.625rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .p-news-detail-main__body p {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-news-detail-main__body p + p {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-news-detail-main__body h3 {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-left: 18px;
    padding-left: 1.125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2222222222;
  }

  .p-news-detail-main__body h3::before {
    width: 126px;
    width: 7.875rem;
  }

  .p-news-detail-main__body h4 {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.1764705882;
  }

  .p-news-detail-contact__inner {
    background-image: url('../img/news-detail-contact-bg-sp.webp');
    background-position: center top;
    background-size: cover;
    padding: 20px 0 18px;
    padding: 1.25rem 0 1.125rem;
    width: 100%;
    max-width: none;
  }

  .p-news-detail-contact__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .p-news-detail-contact__lead {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1666666667;
    text-align: center;
  }

  .p-news-detail-contact__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 346px;
    max-width: 21.625rem;
  }

  .p-news-detail-contact__tel {
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    margin-top: 20px;
    margin-top: 1.25rem;
    -webkit-box-shadow: 0 .3125rem 0 #c39300;
    box-shadow: 0 .3125rem 0 #c39300;
    border-radius: 624.9375rem;
    padding: 10px 24px;
    padding: .625rem 1.5rem;
    width: 326px;
    width: 20.375rem;
    min-height: 50px;
    min-height: 3.125rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.75;
  }

  .p-news-detail-contact__tel-icon {
    width: 46px;
    width: 2.875rem;
    height: 26px;
    height: 1.625rem;
  }

  .p-news-detail-contact__tel-text {
    line-height: 1.75;
  }

  .p-news-detail-map__inner {
    width: 100%;
    max-width: none;
  }

  .p-news-detail-map__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .p-news-detail-map__figure {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-news-detail-map__iframe {
    width: 100%;
    max-width: none;
    height: 446px;
    height: 27.875rem;
  }

  .p-news-detail-nav__inner {
    max-width: none;
  }

  .p-news-detail-nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-news-detail-nav__item--prev {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .p-news-detail-nav__item--next {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .p-news-detail-nav__item--back {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: center;
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-news-detail-nav__link {
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.1875;
  }

  .p-news-detail-nav__icon {
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-news-detail-nav__back {
    width: 300px;
    width: 18.75rem;
    min-height: 56px;
    min-height: 3.5rem;
  }

  body.news-detail .c-footer {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-news-header__inner {
    margin-left: 0;
    max-width: none;
    min-height: 71px;
    min-height: 4.4375rem;
  }

  .p-news-category__title {
    font-size: 32px;
    font-size: 2rem;
    text-align: center;
  }

  .p-news-contents {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
    max-width: none;
  }

  .p-news-contents__item + .p-news-contents__item {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-news-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }

  .p-news-card__figure {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    width: 330px;
    width: 20.625rem;
  }

  .p-news-card__img {
    width: 100%;
    height: 220px;
    height: 13.75rem;
  }

  .p-news-card__body {
    grid-column: 1;
    grid-row: auto;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-news-card__meta {
    display: none;
  }

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

  .p-news-card__more {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin-top: 49px;
    margin-top: 3.0625rem;
    height: 70px;
    height: 4.375rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-news-card__more-icon {
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .p-news-card__more-icon::after {
    border-top-width: 2px;
    border-top-width: .125rem;
    border-right-width: 2px;
    border-right-width: .125rem;
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .p-news-pagination__item:first-child {
    display: none;
  }

  .p-news-pagination__item:nth-child(6) {
    display: none;
  }

  .p-news-pagination__item:last-child {
    display: none;
  }

  .u-onlySp {
    display: block;
  }

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

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

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

  .p-faq .c-footer {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-kit-detail .c-footer {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-kit .c-footer {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-news .c-footer {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }
}

@media (max-width: 400px) {

  html {
    font-size: 4vw;
  }
}

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

  .c-drawer__bg {
    -webkit-transition: none;
    transition: none;
  }

  .c-drawer__content {
    -webkit-transition: none;
    transition: none;
  }

  .c-faq-item__icon {
    -webkit-transition: none;
    transition: none;
  }

  .c-faq-item__answer {
    -webkit-transition: none;
    transition: none;
  }

  .c-header-pc__mascot img {
    -webkit-animation: none;
    animation: none;
  }

  .p-kit-detail-specifications__item-icon {
    -webkit-transition: none;
    transition: none;
  }

  .p-kit-detail-specifications__item-body {
    -webkit-transition: none;
    transition: none;
  }
}
/*# sourceMappingURL=map/style.css.map */