@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', 'Noto Sans CJK 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: 600;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

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

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

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #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: #1f5d55;
}

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

form button[type=submit]:hover,
form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover,
textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio]+span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio]+span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio]+span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible+span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked+span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox]+span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox]+span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]+span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #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: 600;
}

#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 25px;
  width: 100%;
}

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

/* 共通スタイル */
.l-footer {
  background-color: #333;
  padding: 0 25px;
}

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

.l-inner {
  margin: 0 auto;
  padding: 0 25px;
}

/************************************************************************
* 基本形
************************************************************************/
.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-ctaButton {
  display: inline-block;
  -webkit-transition: background-color .4s ease, color .4s ease;
  transition: background-color .4s ease, color .4s ease;
  border-radius: 5rem;
  background-color: #3BAC9E;
  padding: 9px 24px 16px;
  padding: .5625rem 1.5rem 1rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.c-ctaButton span {
  font-size: 12px;
  font-size: .75rem;
  line-height: 1;
}

.c-ctaButton:hover {
  background-color: #fff;
  color: #3BAC9E;
}

.c-heading-title {
  display: inline-block;
  border-radius: 50px;
  background-color: #3BAC9E;
  padding: 12px 14px;
  padding: .75rem .875rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.c-section-title {
  color: #3BAC9E;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6666666667;
}

.c-specificationButton {
  display: inline-block;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border: 1px solid #3BAC9E;
  border-radius: 51px;
  padding: 11px 15px 10px;
  padding: .6875rem .9375rem .625rem;
  color: #3BAC9E;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.3571428571;
  text-align: center;
}

.c-specificationButton:hover {
  background-color: #3BAC9E;
  color: #fff;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #65a7ce;
  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-about-explanation__content {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 2px dashed #707070;
  border-radius: 20px;
  padding: 21px 25px 35px;
  padding: 1.3125rem 1.5625rem 2.1875rem;
}

.p-about-explanation__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
}

.p-about-explanation__text {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-about-explanation__text p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4285714286;
}

.p-about-explanation__image {
  text-align: center;
}

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

.p-about-game__content {
  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-about-game__info {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-about-game__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-about-game__description {
  margin-top: 7px;
  margin-top: .4375rem;
}

.p-about-game__description p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-about-game__infoImage {
  aspect-ratio: 380/214;
  text-align: center;
}

.p-about-game__infoImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-about-game__arrow {
  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: 31.16px;
  width: 1.9475rem;
  text-align: center;
}

.p-about-game__images {
  border-radius: 20px;
  background-color: #fff;
  padding: 36px 12px;
  padding: 2.25rem .75rem;
}

.p-about-game__check,
.p-about-game__balloon {
  position: relative;
  width: 100%;
}

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

.p-about-game__checkNumber {
  position: absolute;
  top: -25px;
  top: -1.5625rem;
  left: -68px;
  left: -4.25rem;
}

.p-about-game__balloonNumber {
  position: absolute;
  right: -78px;
  right: -4.875rem;
  bottom: -26px;
  bottom: -1.625rem;
}

.p-about-game__checkNumber,
.p-about-game__balloonNumber {
  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;
  z-index: 2;
  border-radius: 50%;
  background: #EC792C;
  width: 110px;
  width: 6.875rem;
  height: 110px;
  height: 6.875rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2222222222;
  text-align: center;
}

.p-about-game__checkNumber span,
.p-about-game__balloonNumber span {
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.6666666667;
}

.p-about-game__checkImage {
  position: relative;
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 78%;
  height: auto;
}

.p-about-game__balloonImage {
  position: relative;
  margin-right: auto;
  padding-left: 10px;
  padding-left: .625rem;
  width: 75%;
  height: auto;
}

.p-about-target__call {
  text-underline-offset: 8px;
  text-underline-offset: .5rem;
  display: inline-block;
  color: #3BAC9E;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6666666667;
  text-decoration: underline;
  -webkit-text-decoration-color: #3BAC9E;
  text-decoration-color: #3BAC9E;
}

.p-about-target__info {
  gap: 5px;
  gap: .3125rem;
  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: 25px;
  margin-top: 1.5625rem;
}

.p-about-target__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-about-target__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-about-use__content {
  gap: 15px;
  gap: .9375rem;
  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-about-use__box {
  border-radius: 30px;
  background: #fff;
  padding: 21px 25px 37px;
  padding: 1.3125rem 1.5625rem 2.3125rem;
  display: flex;
  flex-direction: column;
}

.p-about-use__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
}

.p-about-use__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4285714286;
}

.p-about-use__images {
  gap: 10px;
  gap: .625rem;
  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;
  padding-top: 25px;
  padding-top: 1.5625rem;
  margin-top: auto;
}

.p-about-use__image {
  aspect-ratio: 160/210;
}

.p-about-use__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* aboutセクション全体 */
.p-about {
  position: relative;
  background-color: #DEEFEC;
  padding-top: 75px;
  padding-top: 4.6875rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.p-about__heading {
  position: absolute;
  top: calc(0px - 1.5rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

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

.p-about__target {
  margin-top: 95px;
  margin-top: 5.9375rem;
}

.p-about__use {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-about__yellowBalloon {
  position: absolute;
  top: -210px;
  top: -13.125rem;
  right: 50px;
  right: 3.125rem;
  z-index: 2;
  width: 131px;
  width: 8.1875rem;
}

.p-contact-button__header {
  display: inline-block;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  border-radius: 2.375rem;
  background-color: #3BAC9E;
  padding: 10px 15px;
  padding: .625rem .9375rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.3571428571;
}

.p-contact-button__header:hover {
  background-color: #DEEFEC;
  color: #3BAC9E;
}

.p-cta__inner {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

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

.p-drawer {
  z-index: 40;
  margin-left: 15px;
  margin-left: .9375rem;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  border-radius: 50%;
  background-color: #DEEFEC;
  padding: 14px 10px;
  padding: .875rem .625rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

.p-drawer__icon.is-opened {
  background-color: #fff;
}

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

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 3px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 9999px;
  background: #3BAC9E;
  width: 100%;
  height: 3px;
}

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

.p-drawer__bar:nth-child(2) {
  width: 66.6666666667%;
}

.p-drawer__bar:last-child {
  width: 33.3333333333%;
}

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

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

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

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

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

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  opacity: 0;
  z-index: 40;
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, transform .5s ease;
  transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease;
  background: #fff;
  padding-top: 100px;
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  overflow: auto;
  pointer-events: none;
  color: #000;
  text-align: center;
}

.p-drawer__content.is-opened {
  opacity: 1;
  background-color: #DEEFEC;
  pointer-events: auto;
}

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

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

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

.p-drawer__inner {
  padding-right: 50px;
  padding-right: 3.125rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  width: 100%;
}

.p-drawer__logo {
  margin: 0 auto;
  width: 225px;
  width: 14.0625rem;
}

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

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

.p-drawer__navLink {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 1.8125rem;
  background-color: #3BAC9E;
  padding-top: 11px;
  padding-top: .6875rem;
  padding-bottom: 11px;
  padding-bottom: .6875rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-drawer__navLink:hover {
  background-color: #fff;
  color: #3BAC9E;
}

.p-drawer__navLink.is-last {
  background-color: #fff;
  color: #3BAC9E;
}

.p-drawer__navLink.is-last:hover {
  background-color: #3BAC9E;
  color: #fff;
}

.p-footer__inner {
  margin: 0 auto;
  padding-top: 15px;
  padding-top: .9375rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  max-width: 100%;
}

.p-footer__contents {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  color: #fff;
}

.p-footer__left {
  width: 100%;
}

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

.p-footer__list {
  gap: 17px;
  gap: 1.0625rem;
  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-footer__item {
  gap: 10px;
  gap: .625rem;
  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;
}

.p-footer__item dt {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 4px;
  margin-bottom: .25rem;
  width: 100px;
  width: 6.25rem;
  font-weight: 600;
}

.p-footer__logo {
  margin-bottom: 8px;
  margin-bottom: .5rem;
  width: 110px;
  width: 6.875rem;
}

.p-footer__contact-link {
  color: #F17506;
  text-decoration: underline;
}

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

.p-footer__copyright {
  margin-top: 50px;
  margin-top: 3.125rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  position: relative;
  overflow: hidden;
}

.p-fv__inner {
  position: relative;
  padding-bottom: 232px;
  padding-bottom: 14.5rem;
}

.p-fv__image {
  position: relative;
  margin: -70px auto 0;
  margin: -4.375rem auto 0;
  width: 298px;
  width: 18.625rem;
}

.p-fv__image img {

  /* グラデーションマスクで下に向かって消す */
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, black), color-stop(90%, transparent));
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 90%);
  -webkit-mask-repeat: no-repeat;
  display: block;
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, black), color-stop(90%, transparent));
  mask-image: linear-gradient(to bottom, black 75%, transparent 90%);
  mask-repeat: no-repeat;
  width: 100%;
}

.p-fv__content {
  position: relative;
  top: -28px;
  top: -1.75rem;
}

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

.p-fv__logo img {
  width: 225px;
  width: 14.0625rem;
  height: auto;
}

.p-fv__lead {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 9999px;
  padding: 6px 14px;
  padding: .375rem .875rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.1428571429;
}

.p-fv__heading {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-fv__description {
  margin-top: 6px;
  margin-top: .375rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.4285714286;
}

.p-fv__btn {
  display: inline-block;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  margin-top: 26px;
  margin-top: 1.625rem;
  border-radius: 9999px;
  background-color: #3BAC9E;
  padding: 9px 20px;
  padding: .5625rem 1.25rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
}

.p-fv__btn:hover {
  background-color: #DEEFEC;
  color: #3BAC9E;
}

.p-header {
  margin: 0 auto;
  padding: 0 25px;
  padding-top: 47px;
  padding-top: 2.9375rem;
  width: 100%;
  max-width: 1810px;
  max-width: 113.125rem;
}

.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 {
  margin-right: auto;
  width: 141.55px;
  width: 8.846875rem;
  height: 100%;
  font-size: 141.55px;
  font-size: 8.846875rem;
  font-weight: 600;
  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 {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-setUp-device__content {
  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: 50px;
  margin-top: 3.125rem;
  border-radius: 20px;
  background-color: #DEEFEC;
  padding: 25px 25px 50.3px;
  padding: 1.5625rem 1.5625rem 3.14375rem;
}

.p-setUp-device__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

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

.p-setUp-device__item {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

.p-setUp-device__images {
  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: 30px;
  margin-top: 1.875rem;
}

.p-setUp-device__image01 {
  padding-bottom: 40.1px;
  padding-bottom: 2.50625rem;
  width: 120px;
  width: 7.5rem;
}

.p-setUp-device__image02 {
  border-top: 1px dashed #707070;
  padding-top: 40.1px;
  padding-top: 2.50625rem;
  width: 253px;
  width: 15.8125rem;
}

.p-setUp-flow__content {
  margin-top: 25px;
  margin-top: 1.5625rem;
  border-radius: 20px;
  background-color: #DEEFEC;
  padding: 25px 25px 50px;
  padding: 1.5625rem 1.5625rem 3.125rem;
}

.p-setUp-flow__info {
  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-setUp-flow__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

.p-setUp-flow__list-box {
  display: contents;
}

.p-setUp-flow__list {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-setUp-flow__item {
  position: relative;
  padding-left: 40px;
  padding-left: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-setUp-flow__item+.p-setUp-flow__item {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-setUp-flow__num {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #3BAC9E;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.p-setUp-flow__image {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-setUp-flow__box {
  gap: 25px;
  gap: 1.5625rem;
  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-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 20px;
  margin-top: 1.25rem;
  border: 1px dashed #707070;
  border-radius: 20px;
  padding: 32px 16px 32px;
  padding: 2rem 1rem 2rem;
}

.p-setUp-flow__box-image {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 115px;
  width: 7.1875rem;
}

.p-setUp-flow__box-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-setUp-flow__box-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.4285714286;
}

.p-setUp-scene__contents {
  position: relative;
  background-color: #DEEFEC;
  padding-top: 22px;
  padding-top: 1.375rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.p-setUp-scene__arrow {
  position: absolute;
  top: -15px;
  top: -.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  width: 34.63px;
  width: 2.164375rem;
  height: auto;
}

.p-setUp-scene__inner {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.p-setUp-scene__item {
  border-radius: 20px;
  background-color: #fff;
  padding: 22px 25px 33px;
  padding: 1.375rem 1.5625rem 2.0625rem;
  width: 100%;
}

.p-setUp-scene__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
}

.p-setUp-scene__image {
  margin-top: 25.1px;
  margin-top: 1.56875rem;
  width: 100%;
  height: auto;
}

.p-setUp__inner {
  padding-top: 42px;
  padding-top: 2.625rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

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

.p-setUp__subTitle {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
}

.p-setUp-message {
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}

.p-setUp-message__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

.p-setUp-message__text {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

.p-software__inner {
  padding-top: 43px;
  padding-top: 2.6875rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}

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

.p-software__contents {
  gap: 70px;
  gap: 4.375rem;
  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: 62px;
  margin-top: 3.875rem;
}

.p-software__content {
  position: relative;
  border-radius: 30px;
  background-color: #DEEFEC;
  padding: 70px 25px 50px;
  padding: 4.375rem 1.5625rem 3.125rem;
}

.p-software__topic {
  position: absolute;
  top: calc(0px - 1.5rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.p-software__topicTitle {
  display: inline-block;
  border-radius: 75px;
  background-color: #EC792C;
  padding: 8px 20px;
  padding: .5rem 1.25rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
  text-align: center;
}

.p-software__topicTitle--balloon {
  display: inline-block;
  border-radius: 75px;
  background-color: #EC792C;
  padding: 11px 20px;
  padding: .6875rem 1.25rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
  text-align: center;
}

.p-software__main {
  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 auto;
}

.p-software__main-image img {
  display: block;
  margin: 0 auto;
  width: 84%;
}

.p-software-main__text {
  display: inline-block;
  margin-top: 23px;
  margin-top: 1.4375rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.4285714286;
}

.p-software__box {
  gap: 15px;
  gap: .9375rem;
  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: 68px;
  margin-top: 4.25rem;
}

.p-software-box__item {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 27px 30px;
  padding: 1.25rem 1.6875rem 1.875rem;
}

.p-software-box__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.p-software-box__text {
  margin-top: 6px;
  margin-top: .375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-software-box__images {
  gap: 15px;
  gap: .9375rem;
  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-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-software-box__images--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fade-target {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: opacity .8s ease, -webkit-transform .8s ease;
  transition: opacity .8s ease, -webkit-transform .8s ease;
  transition: opacity .8s ease, transform .8s ease;
  transition: opacity .8s ease, transform .8s ease, -webkit-transform .8s ease;
}

.fade-target.show {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}

/* PCだけ表示（SPアニメ） */

/* SPだけ表示（PCアニメ） */
.p-fv__bird {
  position: absolute;
  top: 183px;
  top: 11.4375rem;
  left: -5px;
  left: -.3125rem;
  z-index: -1;
  width: 50px;
  width: 3.125rem;
}

.p-fv__measurement {
  position: absolute;
  top: 238px;
  top: 14.875rem;
  right: -53px;
  right: -3.3125rem;
  z-index: -1;
  width: 124px;
  width: 7.75rem;
}

.p-fv__orangeNumber {
  position: absolute;
  top: 303px;
  top: 18.9375rem;
  left: -20px;
  left: -1.25rem;
  z-index: -1;
  width: 111px;
  width: 6.9375rem;
}

.p-fv__blueBalloon {
  position: absolute;
  top: 386px;
  top: 24.125rem;
  right: -22px;
  right: -1.375rem;
  z-index: -1;
  width: 95px;
  width: 5.9375rem;
}

.p-news__inner {
  padding-top: 4.6875rem;
  padding-bottom: 6.25rem;
}

.p-news__Pageinner {
  padding-top: 8.6875rem;
  padding-bottom: 6.25rem;
}

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

.p-news__content {
  margin-top: 1.375rem;
}

.p-news__list {
  display: grid;
  gap: 1rem;
}

.p-news__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid #e6e1d8;
}

.p-news__item:first-child {
  border-top: none;
}

.p-news__item:last-child {
  padding-bottom: 0;
}

.p-news__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  background: #fff;
  padding: 0.5rem;
}

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

.p-news__body {
  width: 100%;
  min-width: 0;
}

.p-news__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-news__date {
  font-size: 1rem;
  color: #7e7a74;
  letter-spacing: .03em;
}

.p-news__label {
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #3BAC9E;
  color: #3BAC9E;
  line-height: 1;
  display: inline-block;
}

.p-news__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}

.p-news__text a {
  color: #3BAC9E;
  text-decoration: underline;
  font-weight: 700;
}

.p-news__text span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 1.25rem;

}

.p-news__text span::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #EC792C;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

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

.p-specification {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.p-specification__inner {
  padding: 0 50px;
  padding: 0 3.125rem;
}

.p-specification__contents {
  gap: 45px;
  gap: 2.8125rem;
  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-specification__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.p-specification__image {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  width: 86.9696969697%;
}

.p-specification__content {
  width: 100%;
}

.p-specification__table {
  border-collapse: collapse;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  width: 100%;
  table-layout: fixed;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.45;
}

.p-specification__table th,
.p-specification__table td {
  word-wrap: break-word;
  vertical-align: top;
  border: 1px solid #707070;
  padding: 0 4.5px;
  padding: 0 .28125rem;
  text-align: left;
}

.p-specification__table th {
  width: 28%;
}

.p-specification__table td li {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-specification__table td li span {
  display: inline-block;
  font-weight: 600;
}

.js-toggle-content.is-hidden {
  display: none;
}

.p-specification__gradient {
  position: relative;
  z-index: 1;
  margin-top: -260px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, .5)), color-stop(88%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 30%, rgb(255, 255, 255) 88%, rgb(255, 255, 255) 100%);
  height: 260px;
  pointer-events: none;
}

.p-specification__toggle-button {
  display: block;
  text-align: center;
}

.p-toeGrip {
  position: relative;
  background-color: #DEEFEC;
  padding-top: 75px;
  padding-top: 4.6875rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.p-toeGrip__heading {
  position: absolute;
  top: calc(0px - 1.6875rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.p-toeGrip__contents {
  gap: 100px;
  gap: 6.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;
}

.p-toeGrip__content:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-toeGrip__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-toeGrip__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-toeGrip__sourceBox {
  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;
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-toeGrip__sourceBox--nifco {
  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;
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #3BAC9E;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-toeGrip__sourceLabel {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

.p-toeGrip-cta {
  display: table;
  position: relative;
  margin: 0 auto;
  margin-top: 43px;
  margin-top: 2.6875rem;
  border-radius: 268px;
  background-color: #fff;
  padding: 12px 40px;
  padding: .75rem 2.5rem;
}

.p-toeGrip-cta__arrow {
  position: absolute;
  top: -12px;
  top: -.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  width: 32.1px;
  width: 2.00625rem;
  height: auto;
}

.p-toeGrip-cta__content {
  gap: 14px;
  gap: .875rem;
  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-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-toeGrip-cta__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
}

.p-toeGrip-cta__icon {
  width: 87px;
  width: 5.4375rem;
  height: 116px;
  height: 7.25rem;
}

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

.c-button {
  display: inline-block;
  -webkit-transition: background-color .4s ease, color .4s ease;
  transition: background-color .4s ease, color .4s ease;
  margin-top: 50px;
  margin-top: 3.125rem;
  border-radius: 30px;
  background-color: #3BAC9E;
  padding: 21px 20px;
  padding: 1.3125rem 1.25rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
}

.c-button:hover {
  background-color: #fff;
  color: #3BAC9E;
}

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

.required-label {
  position: relative;
  display: inline-block;
}

.required-label::after {
  content: "※";
  position: relative;
  top: -5px;
  right: 0;
  font-size: 0.6em;
  color: black;
}


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

  html {
    font-size: .987654321vw;
  }

  :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: 25px;
    padding-left: 25px;
    max-width: 1670px;
  }

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

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

  .l-footer {
    padding-right: 25px;
    padding-left: 25px;
  }

  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1690px;
  }

  .c-ctaButton {
    margin-top: -29px;
    margin-top: -1.8125rem;
    border-radius: 15rem;
    padding: 13px 90px 45px;
    padding: .8125rem 5.625rem 2.8125rem;
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 1.5;
  }

  .c-ctaButton span {
    font-size: 35px;
    font-size: 2.1875rem;
    line-height: 1.3428571429;
  }

  .c-heading-title {
    border-radius: 100px;
    padding: 38px 50px;
    padding: 2.375rem 3.125rem;
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.3555555556;
  }

  .c-section-title {
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.3555555556;
  }

  .p-about-explanation__content {
    gap: 60px;
    gap: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
    align-items: center;
  }

  .p-about-explanation__title {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }

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

  .p-about-explanation__text p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.75;
  }

  .p-about-explanation__image {
    width: 110%;
  }

  .p-about-game__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .p-about-game__info {
    gap: 38px;
    gap: 2.375rem;
    width: 46.3414634146%;
  }

  .p-about-game__title {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.3333333333;
  }

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

  .p-about-game__description p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .p-about-game__infoImage {
    aspect-ratio: 760/500;
  }

  .p-about-game__arrow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 160px;
    padding-top: 10rem;
  }

  .p-about-game__images {
    padding: 98px 60px 62px;
    padding: 6.125rem 3.75rem 3.875rem;
    width: 46.3414634146%;
  }

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

  .p-about-game__checkNumber {
    top: -37px;
    top: -2.3125rem;
    left: -138px;
    left: -8.625rem;
  }

  .p-about-game__balloonNumber {
    top: -37px;
    top: -2.3125rem;
    right: -136px;
    right: -8.5rem;
  }

  .p-about-game__checkNumber,
  .p-about-game__balloonNumber {
    width: 160px;
    width: 10rem;
    height: 160px;
    height: 10rem;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.1666666667;
  }

  .p-about-game__checkNumber span,
  .p-about-game__balloonNumber span {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.7142857143;
  }

  .p-about-game__checkImage {
    width: 79%;
  }

  .p-about-game__balloonImage {
    width: 78%;
  }

  .p-about-target__content {
    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-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-about-target__call {
    text-underline-offset: 16px;
    text-underline-offset: 1rem;
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.7777777778;
  }

  .p-about-target__info {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 0;
    padding-right: 95px;
    padding-right: 5.9375rem;
    max-width: 762px;
    max-width: 47.625rem;
  }

  .p-about-target__title {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.3333333333;
  }

  .p-about-target__text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .p-about-use__content {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-about-use__box {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 40px 60px 72px;
    padding: 2.5rem 3.75rem 4.5rem;
  }

  .p-about-use__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .p-about-use__text {
    margin-top: 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.75;
  }

  .p-about-use__images {
    gap: 20px;
    gap: 1.25rem;
    padding-top: 50px;
    padding-top: 3.125rem;
  }

  .p-about-use__image {
    aspect-ratio: 330/467;
  }

  .p-about {
    padding-top: 150px;
    padding-top: 9.375rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-about__heading {
    top: calc(0px - 3.8125rem);
  }

  .p-about__explanation {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-about__target {
    margin-top: 135px;
    margin-top: 8.4375rem;
  }

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

  .p-about__yellowBalloon {
    top: -270px;
    top: -16.875rem;
    right: 8%;
    width: 300px;
    width: 18.75rem;
  }

  .p-contact-button__header {
    border-radius: 3.125rem;
    padding: 30px 35px;
    padding: 1.875rem 2.1875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .p-cta__inner {
    padding-bottom: 300px;
    padding-bottom: 18.75rem;
  }

  .p-footer__inner {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
    max-width: 1420px;
  }

  .p-footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__left {
    width: 75%;
  }

  .p-footer__right {
    width: 25%;
    text-align: right;
  }

  .p-footer__list {
    gap: 20px;
    gap: 1.25rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-footer__item {
    gap: 120px;
    gap: 7.5rem;
  }

  .p-footer__item dt {
    width: 145px;
    width: 9.0625rem;
  }

  .p-footer__item dd {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-footer__logo {
    margin-bottom: 16px;
    margin-bottom: 1rem;
    width: 127px;
    width: 7.9375rem;
  }

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

  .p-footer__copyright {
    margin-top: 200px;
    margin-top: 12.5rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-fv__inner {
    padding-bottom: 145px;
    padding-bottom: 9.0625rem;
  }

  .p-fv__contents {
    gap: 76px;
    gap: 4.75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .p-fv__image {
    margin: -425px 0 0;
    margin: -26.5625rem 0 0;
    width: 68%;
  }

  .p-fv__content {
    top: 281px;
    top: 17.5625rem;
    width: 38%;
  }

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

  .p-fv__logo img {
    width: 377.46px;
    width: 23.59125rem;
  }

  .p-fv__lead {
    padding: 8px 20px;
    padding: .5rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.375;
  }

  .p-fv__heading {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.3333333333;
  }

  .p-fv__description {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }

  .p-fv__btn {
    margin-top: 50px;
    margin-top: 3.125rem;
    padding: 15px 30px;
    padding: .9375rem 1.875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .p-header {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-right: 25px;
    padding-left: 25px;
  }

  .p-header__inner {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-header__logo {
    margin-right: unset;
    width: 188.73px;
    width: 11.795625rem;
    font-size: 188.73px;
    font-size: 11.795625rem;
  }

  .p-header__nav {
    -webkit-backdrop-filter: blur(30px) brightness(1.15);
    display: block;
    backdrop-filter: blur(30px) brightness(1.15);
    border-radius: 3rem;
    background-color: rgba(148, 206, 195, .3);
    width: 70.625rem;
    height: 80px;
    height: 5rem;
  }

  .p-header__nav ul {
    gap: 1.85rem;
    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%;
    height: inherit;
  }

  .p-header__nav li {
    height: inherit;
  }

  .p-header__nav li>a {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    height: inherit;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.3333333333;
  }

  .p-header__nav li>a:hover {
    color: #3BAC9E;
  }

  .p-header__drawer {
    display: none;
  }

  .p-setUp-device__content {
    gap: 129px;
    gap: 8.0625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 65px;
    margin-top: 4.0625rem;
    padding: 60px 60px 52px;
    padding: 3.75rem 3.75rem 3.25rem;
  }

  .p-setUp-device__title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3666666667;
  }

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

  .p-setUp-device__item {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-setUp-device__images {
    gap: 160px;
    gap: 10rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0;
  }

  .p-setUp-device__image01 {
    padding-bottom: 0;
    width: 267px;
    width: 16.6875rem;
  }

  .p-setUp-device__image02 {
    border-top: unset;
    padding-top: 0;
    width: 572px;
    width: 35.75rem;
  }

  .p-setUp-flow__content {
    margin-top: 48px;
    margin-top: 3rem;
    padding: 56px 80.8px 95px 60px;
    padding: 3.5rem 5.05rem 5.9375rem 3.75rem;
  }

  .p-setUp-flow__info {
    gap: 134px;
    gap: 8.375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
  }

  .p-setUp-flow__title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3666666667;
  }

  .p-setUp-flow__list-box {
    display: block;
  }

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

  .p-setUp-flow__item {
    padding-left: 80px;
    padding-left: 5rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .p-setUp-flow__item+.p-setUp-flow__item {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .p-setUp-flow__num {
    width: 60px;
    width: 3.75rem;
    height: 60px;
    height: 3.75rem;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.65;
  }

  .p-setUp-flow__image {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    width: 62%;
  }

  .p-setUp-flow__image img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .p-setUp-flow__box {
    gap: 7px;
    gap: .4375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 12px;
    margin-top: .75rem;
    padding: 28px 39px 44px;
    padding: 1.75rem 2.4375rem 2.75rem;
  }

  .p-setUp-flow__box-image {
    width: 279.83px;
    width: 17.489375rem;
  }

  .p-setUp-flow__box-text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .p-setUp-scene__contents {
    padding-top: 110px;
    padding-top: 6.875rem;
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
  }

  .p-setUp-scene__arrow {
    top: -60px;
    top: -3.75rem;
    width: 138.54px;
    width: 8.65875rem;
  }

  .p-setUp-scene__inner {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-setUp-scene__item {
    padding: 46px 62.9px 70.3px 62px;
    padding: 2.875rem 3.93125rem 4.39375rem 3.875rem;
  }

  .p-setUp-scene__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

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

  .p-setUp__inner {
    padding-top: 90px;
    padding-top: 5.625rem;
    padding-bottom: 113px;
    padding-bottom: 7.0625rem;
  }

  .p-setUp__subTitle {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .p-setUp-message {
    margin-top: 48px;
    margin-top: 3rem;
    padding-left: 3.75rem;
  }

  .p-setUp-message__title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3666666667;
  }

  .p-setUp-message__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-software__inner {
    padding-top: 150px;
    padding-top: 9.375rem;
    padding-bottom: 210px;
    padding-bottom: 13.125rem;
  }

  .p-software__contents {
    gap: 100px;
    gap: 6.25rem;
    margin-top: 84px;
    margin-top: 5.25rem;
  }

  .p-software__content {
    padding: 160px 60px 100px;
    padding: 10rem 3.75rem 6.25rem;
  }

  .p-software__topic {
    top: calc(0px - 3.8125rem);
    -webkit-transform: none;
    transform: none;
    width: auto;
  }

  .p-software__content.is-left .p-software__topic {
    left: 60px;
    left: 3.75rem;
    text-align: left;
  }

  .p-software__content.is-right .p-software__topic {
    right: 60px;
    right: 3.75rem;
    left: auto;
    text-align: right;
  }

  .p-software__topicTitle {
    padding: 31px 59px 29px 60px;
    padding: 1.9375rem 3.6875rem 1.8125rem 3.75rem;
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.3555555556;
  }

  .p-software__topicTitle--balloon {
    background-color: #EC792C;
    padding: 31px 89px 29px 77px;
    padding: 1.9375rem 5.5625rem 1.8125rem 4.8125rem;
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.3555555556;
  }

  .p-software__main {
    width: 63%;
  }

  .p-software__main-image img {
    width: 100%;
  }

  .p-software-main__text {
    margin-top: 107px;
    margin-top: 6.6875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .p-software__box {
    gap: 60px;
    gap: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-software-box__item {
    gap: 78px;
    gap: 4.875rem;
    padding: 42px 60px;
    padding: 2.625rem 3.75rem;
  }

  .p-software-box__title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3666666667;
  }

  .p-software-box__text {
    margin-top: 16px;
    margin-top: 1rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .p-software-box__images {
    gap: 25px;
    gap: 1.5625rem;
  }

  .p-software-box__images--single {
    padding-bottom: 36px;
    padding-bottom: 2.25rem;
  }

  .p-fv__bird {
    top: 210px;
    top: 13.125rem;
    right: -16px;
    right: -1rem;
    left: unset;
    width: 136px;
    width: 8.5rem;
  }

  .p-fv__measurement {
    top: unset;
    right: unset;
    bottom: 32%;
    left: 32%;
    width: 318px;
    width: 19.875rem;
  }

  .p-fv__orangeNumber {
    top: unset;
    bottom: 16%;
    left: -58px;
    left: -3.625rem;
    width: 329px;
    width: 20.5625rem;
  }

  .p-fv__blueBalloon {
    top: -14px;
    top: -.875rem;
    right: unset;
    left: 31%;
    width: 219px;
    width: 13.6875rem;
  }

  .p-fv__gameButton {
    position: absolute;
    right: -179px;
    right: -11.1875rem;
    bottom: 30%;
    z-index: -1;
    width: 438px;
    width: 27.375rem;
  }

  .p-news__inner {
    padding-top: 9.375rem;
    padding-bottom: 6.25rem;
  }

  .p-news__Pageinner {
    padding-top: 13.6875rem;
    padding-bottom: 6.25rem;
  }

  .p-news__content {
    margin-top: 5.25rem;
  }

  .p-news__list {
    gap: 1.2rem;
  }

  .p-news__item {
    flex-direction: row;
    gap: 2.5rem;
  }

  .p-news__image {
    width: 20%;
    padding: 1rem;
  }

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

  .p-news__body {
    width: 80%;
  }

  .p-news__meta {
    justify-content: unset;
    gap: 0.75rem;
  }

  .p-news__date {
    font-size: 1.25rem;
  }

  .p-news__label {
    font-size: 1.25rem;
    padding: 0.5rem 0.75rem;
  }

  .p-news__text {
    margin-top: 1.5rem;
    font-size: 1.25rem;
  }

  .p-news__text a {
    padding: 0 0.5rem;
  }

  .p-news__text span::before {
    font-size: 2rem;
  }

  .p-specification {
    padding-top: 150px;
    padding-top: 9.375rem;
    padding-bottom: 200px;
    padding-bottom: 12.5rem;
  }

  .p-specification__contents {
    gap: 98px;
    gap: 6.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-specification__info {
    width: 45.5263157895%;
  }

  .p-specification__title {
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.3333333333;
    text-align: left;
  }

  .p-specification__image {
    margin: 103px 0 0 50px;
    margin: 6.4375rem 0 0 3.125rem;
    width: 93%;
  }

  .p-specification__content {
    width: 44.73%;
  }

  .p-specification__table {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }

  .p-specification__table th,
  .p-specification__table td {
    line-height: 1.5;
  }

  .p-specification__table th {
    width: 18%;
  }

  .p-specification__table td li {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.65;
  }

  .js-toggle-content {
    display: table-row !important;
  }

  .p-specification__toggle-button {
    display: none !important;
  }

  .p-specification__gradient {
    display: none !important;
  }

  .p-toeGrip {
    padding-top: 150px;
    padding-top: 9.375rem;
    padding-bottom: 200px;
    padding-bottom: 12.5rem;
  }

  .p-toeGrip__heading {
    top: calc(0px - 3.8125rem);
  }

  .p-toeGrip__contents {
    gap: 200px;
    gap: 12.5rem;
  }

  .p-toeGrip__content {
    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;
  }

  .p-toeGrip__title {
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.3333333333;
  }

  .p-toeGrip__text {
    margin-top: 38px;
    margin-top: 2.375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .p-toeGrip__sourceBox {
    gap: 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .p-toeGrip__sourceBox--nifco {
    gap: 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .p-toeGrip__image {
    margin-top: 0;
  }

  .p-toeGrip__risk {
    gap: 130.6px;
    gap: 8.1625rem;
    padding-right: 60px;
    padding-right: 3.75rem;
  }

  .p-toeGrip-risk__info {
    width: 26.9%;
  }

  .p-toeGrip-risk__image {
    width: 64.84%;
  }

  .p-toeGrip__chart {
    gap: 89px;
    gap: 5.5625rem;
  }

  .p-toeGrip-chart__info {
    padding-top: 140px;
    padding-top: 8.75rem;
    width: 33.3%;
  }

  .p-toeGrip-chart__image {
    width: 70.6%;
  }

  .p-toeGrip-benefit__image {
    margin-top: -38px;
    margin-top: -2.375rem;
    margin-right: auto;
    margin-left: auto;
    width: 70%;
  }

  .p-toeGrip-cta {
    margin-top: 210px;
    margin-top: 13.125rem;
    padding: 50px 225px 50px 160px;
    padding: 3.125rem 14.0625rem 3.125rem 10rem;
  }

  .p-toeGrip-cta__arrow {
    top: -60px;
    top: -3.75rem;
    width: 138.54px;
    width: 8.65875rem;
  }

  .p-toeGrip-cta__content {
    gap: 120px;
    gap: 7.5rem;
  }

  .p-toeGrip-cta__text {
    color: #3BAC9E;
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.3333333333;
  }

  .p-toeGrip-cta__icon {
    width: 263px;
    width: 16.4375rem;
    height: 350px;
    height: 21.875rem;
  }

  .c-button {
    margin-top: 200px;
    margin-top: 12.5rem;
    border-radius: 120px;
    padding: 67.8px 97.2px 67.2px 97.8px;
    padding: 4.2375rem 6.075rem 4.2rem 6.1125rem;
    font-size: 45px;
    font-size: 2.8125rem;
    line-height: 1.3555555556;
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

@media (min-width: 769px) {

  .fade-target[data-pc-order=none] {
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

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

  .u-onlyPc {
    display: block;
  }
}

@media (min-width: 1620px) {

  html {
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  .fade-target[data-sp-order=none] {
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

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

  .u-onlySp {
    display: block;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}

/*# sourceMappingURL=map/style.css.map */

/*faq*/
#faq {
  background-color: #DEEFEC;
}

#faq .l-inner {
  padding-top: 9.375rem;
  padding-bottom: 6.25rem;
}

#faq .p-specification__title {
  text-align: center;
  margin-bottom: 2.375rem;
}

#faq .faqList {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

#faq .faqList dl {
  padding: 4rem 10rem;
  border-radius: 50px;
  background-color: #fff;
}

#faq .faqList dl dt,
#faq .faqList dl dd {
  position: relative;
  padding: 1rem 0 1rem 5.5rem;
  font-size: 1.25rem;
}

#faq .faqList dl dt {
  margin-bottom: 2rem;
}

#faq .faqList dl dt .icon,
#faq .faqList dl dd .icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 55px;
  color: #fff;
  line-height: 1;
  padding-top: .8rem;
  text-align: center;
  background-color: #3BAC9E;
}

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

  #faq .l-inner {
    padding-top: 4.6875rem;
    padding-bottom: 6.25rem;
  }

  #faq .faqList dl {
    padding: 2rem 1.5rem;
    border-radius: 40px;
  }

  #faq .faqList dl dt,
  #faq .faqList dl dd {
    padding: 3px 0 3px 3rem;
    font-size: 1rem;
  }

  #faq .faqList dl dt {
    margin-bottom: 1.5rem;
  }

  #faq .faqList dl dt .icon,
  #faq .faqList dl dd .icon {
    font-size: 1.3rem;
    width: 2rem;
    height: 2rem;
    padding-top: .3rem;
  }

}

/*column*/
#column hr {
  width: calc(100% - 50px);
  border: none;
  background-color: #707070;
  height: 1px;
  max-width: 1690px;
}

#column .l-inner {
  padding-top: 9.375rem;
  padding-bottom: 6.25rem;
}

#column .p-specification__title {
  text-align: center;
  margin-bottom: 2.375rem;
}

#column .c-section-title {
  text-align: center;
  margin-bottom: 2.375rem;
}

#column .columnList {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 50px;
}

#column .columnList .box {
  text-align: center;
  width: calc(100% / 2 - 25px);
  background-color: #DEEFEC;
  border-radius: 3rem;
  padding-bottom: 2rem;
}

#column .columnList .box .img {
  display: block;
  position: relative;
  border: 20px solid #DEEFEC;
  border-radius: 3rem;
}

#column .columnList .box .img img {
  border-radius: 3rem;
}

#column .columnList .box .btn a {
  margin-top: 1rem;
}

#column .columnList .box .btn a:hover {
  background-color: #fff;
}

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

  #column .l-inner {
    padding-top: 4.6875rem;
    padding-bottom: 6.25rem;
  }

  #column .c-section-title {
    margin-bottom: 2.375rem;
  }

  #column .columnList .box {
    width: 100%;
  }

  #column .columnList .box .img {
    border: 10px solid #DEEFEC;
  }

}

/*columnPage*/
.columnPage {
  background-color: #DEEFEC;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.columnPage .l-inner .inner {
  background-color: #fff;
  border-radius: 50px;
  padding: 2rem 10rem 4rem 10rem;
}

.columnPage .title {
  font-size: 1.5rem;
  background-color: #3BAC9E;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  border-radius: 3.125rem;
  padding: .9375rem 1.875rem;
  margin: 5rem 0 2rem 0;
}

.columnPage p {
  font-size: 1.25rem;
}

.columnPage .img {
  display: block;
  padding: 0 10rem;
  margin: 2rem 0;
}

.columnPage .kai {
  display: inline-block;
}

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

  .columnPage {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .columnPage .l-inner .inner {
    background-color: #fff;
    border-radius: 50px;
    padding: 2rem 25px 4rem 25px;
  }

  .columnPage .title {
    font-size: 1.1rem;
    background-color: #3BAC9E;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    border-radius: 3.125rem;
    padding: .8rem 1.5rem;
    margin: 3rem 0 1rem 0;
    text-align: center;
  }

  .columnPage p {
    font-size: 1rem;
  }

  .columnPage .img {
    display: block;
    padding: 0;
    margin: 1rem 0;
  }

}