@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: #1C2D4F;
  font-family: 'Open 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;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover, a: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: #C0C0C0;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

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

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

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

var {
  background-color: #C0C0C0;
  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: both;
  animation-fill-mode: both;
}

.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: #1C2D4F;
}

/************************************************************************
* 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;
  opacity: 0;
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  min-height: 100vh;
  min-height: 100dvh;
}

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

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: #1C2D4F;
  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: .85em;
  line-height: 1.5;
}

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

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .58lh;
  left: -1px;
  left: -.0625rem;
  -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: .15em solid #1C2D4F;
  border-bottom: .15em solid #1C2D4F;
  width: .425em;
  height: .85em;
  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: #1C2D4F;
}

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

#toc_container .toc_list li {
  color: #1C2D4F;
}

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

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

#toc_container .toc_list a {
  color: #1C2D4F;
}

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

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

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

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

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

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

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

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

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
}

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

.l-movie {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 38px 0 100px;
  padding: 2.375rem 0 6.25rem;
}

.l-page-404 {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-page-contents {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.l-page-thanks {
  margin-top: 100px;
  margin-top: 6.25rem;
}

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

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

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

.l-single-product {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-sub-main {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.c-btn {
  margin-inline: auto;
  position: relative;
  border-bottom: 2px solid #6F8CCB;
  border-bottom: .125rem solid #6F8CCB;
  padding-right: 30px;
  padding-right: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #394D77;
  font-weight: 700;
  line-height: 1.3333333333;
}

.c-btn::after {
  -webkit-mask-image: url(../../assets/img/common/icon-arrow-right.svg); /* マスク画像を設定 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  mask-image: url(../../assets/img/common/icon-arrow-right.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #394D77;
  width: 16px;
  width: 1rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.c-btn.c-btn--white {
  border-bottom: 2px solid #fff;
  border-bottom: .125rem solid #fff;
  color: #fff;
}

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

.c-btn.c-btn--red {
  border-bottom: 2px solid #CC2C48;
  border-bottom: .125rem solid #CC2C48;
  color: #CC2C48;
}

.c-btn.c-btn--red::after {
  background-color: #CC2C48;
}

.c-btn.c-btn--large {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3703703704;
}

.c-btn.c-btn--exLarge {
  border-bottom: 3px solid #CC2C48;
  border-bottom: .1875rem solid #CC2C48;
  padding-right: 50px;
  padding-right: 3.125rem;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
  font-family: 'Anton', serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.0317460317;
}

.c-btn.c-btn--exLarge::after {
  top: 60%;
  width: 37px;
  width: 2.3125rem;
  height: 30px;
  height: 1.875rem;
}

.c-btn.c-btn--download::after {
  -webkit-mask-image: url(../../assets/img/common/icon-download.svg); /* マスク画像を設定 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top;
  mask-image: url(../../assets/img/common/icon-download.svg);
  mask-repeat: no-repeat;
  width: 18px;
  width: 1.125rem;
  height: 14px;
  height: .875rem;
}

.c-text {
  color: #394D77;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3333333333;
}

.c-text.c-text--white {
  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: #fff;
  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-404__title {
  text-align: center;
}

.p-404__title span {
  margin-inline: auto;
}

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

.p-404__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-access__map {
  aspect-ratio: 375/200;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
}

.p-access__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

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

.p-company-info {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.p-company-info__row:last-of-type .p-company-info__value {
  border-bottom: 1px solid #a3a3a3;
}

.p-company-info__label,
.p-company-info__value {
  padding: 5px 10px;
  padding: .3125rem .625rem;
  height: 100%;
}

.p-company-info__label {
  border: 1px solid #CC2C48;
  background-color: #CC2C48;
  color: #fff;
  color: #fff;
}

.p-company-info__value {
  border-right: 1px solid #a3a3a3;
  border-left: 1px solid #a3a3a3;
  font-size: 18px;
  font-size: 1.125rem;
}

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

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

.p-company__contents {
  display: grid;
}

.p-company__img {
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 80%;
}

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

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

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

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

.p-contact__head {
  font-family: 'Anton', serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4761904762;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

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

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

.p-feature {
  gap: 10px;
  gap: .625rem;
  display: grid;
  border-radius: .9375rem;
  background-color: #F5F5F5;
  padding: 20px;
  padding: 1.25rem;
}

.p-feature__item {
  line-height: 1.44;
}

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

.p-feature__content {
  margin-top: 3px;
  margin-top: .1875rem;
}

.p-feature__content ul {
  padding-left: 21px;
  padding-left: 1.3125rem;
}

.p-feature__content li {
  list-style: disc;
}

.p-feature__imgs {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.p-footer {
  background-color: #CC2C48;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  color: #fff;
}

.p-footer__wrap {
  gap: 40px;
  gap: 2.5rem;
  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;
}

.p-footer__logo a {
  gap: 11.5px;
  gap: .71875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-footer__logo a img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26px;
  width: 1.625rem;
}

.p-footer__logo span {
  font-family: 'Schibsted Grotesk', serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2222222222;
  text-transform: uppercase;
}

.p-footer__address {
  margin-top: 35px;
  margin-top: 2.1875rem;
  max-width: 280px;
  max-width: 17.5rem;
}

.p-footer__address-list {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  border-left: 1px solid #fff;
  padding-left: 27px;
  padding-left: 1.6875rem;
  text-align: left;
}

.p-footer__address-group-wrap {
  gap: 19px;
  gap: 1.1875rem;
  display: grid;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-footer__address-label {
  color: #C0C0C0;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.3333333333;
}

.p-footer__address-detail {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-size: 16px;
  line-height: 1.375;
}

.p-footer__right {
  gap: 41px;
  gap: 2.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;
}

.p-footer__nav-items {
  border-left: 1px solid #fff;
  padding-left: 27.5px;
  padding-left: 1.71875rem;
}

.p-footer__nav-item {
  padding: 12px 0;
  padding: .75rem 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.p-footer__nav-item:first-child {
  padding-top: 0;
}

.p-footer__nav-item.p-footer__nav-item--privacy {
  color: #C0C0C0;
  font-size: 16px;
  font-size: 1rem;
}

.p-footer__sns {
  gap: 23px;
  gap: 1.4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 21px;
  margin-top: 1.3125rem;
}

.p-footer__sns-item {
  max-width: 23px;
  max-width: 1.4375rem;
}

.p-footer__last-message {
  font-family: 'Schibsted Grotesk', serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.1532258065;
}

.p-footer__copyright {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #C0C0C0;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.4166666667;
  text-align: center;
}

.p-form__container {
  gap: 12px;
  gap: .75rem;
  display: grid;
  grid-template-rows: auto;
}

.p-form__wrap {
  gap: 0;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
}

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

.p-form__wrap.p-form__wrap--textarea {
  margin-top: 43px;
  margin-top: 2.6875rem;
}

.p-form__input,
.p-form__textarea {
  margin-top: 7px;
  margin-top: .4375rem;
}

.p-form__input input,
.p-form__textarea textarea {
  display: block;
  border: 1px solid #afafaf;
  background-color: #f5f5f5;
}

.p-form__textarea textarea {
  min-height: 200px;
  min-height: 12.5rem;
}

.p-form__submit {
  margin-inline: auto;
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-form__submit input,
.p-form__submit a {
  display: inline-block;
  display: grid;
  -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: .3s;
  transition: .3s;
  cursor: pointer;
  border: none;
  background-color: #CC2C48;
  background-image: none;
  padding: 18px;
  padding: 1.125rem;
  width: 100%;
  width: 270px;
  width: 16.875rem;
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.52;
}

.p-form__submit input:hover,
.p-form__submit input:focus {
  outline: none;
}

.p-form__submit input::-moz-foucus-inner {
  border: none;
  padding: 0;
}

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

.p-form__check input + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 40px;
  padding: 0 0 0 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .08em;
}

.p-form__check input + span::before {
  display: block;
  position: absolute;
  top: 13px;
  top: .8125rem;
  left: 0;
  border: 1px solid #808080;
  background: #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.p-form__check input + span a {
  text-decoration: underline;
}

.p-form__check input:checked + span::after {
  opacity: 1;
}

.p-fv {
  position: relative;
  height: 100Vh;
  height: 100svh;
  min-height: 400px;
  min-height: 25rem;
  overflow-x: clip;
}

.p-fv__inner {
  height: inherit;
  min-height: inherit;
}

.p-fv__title {
  position: absolute;
  top: 50%;
  left: max(20px, 50vw - 280px);
  left: max(1.25rem, 50vw - 17.5rem);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 'Anton', serif;
  font-size: max(40px, 10vw);
  font-size: max(2.5rem, 10vw);
  line-height: 1.0352112676;
  text-transform: uppercase;
}

.p-fv__title-container {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-fv__title-white {
  color: #fff;
}

.p-fv__title-white.p-fv__title-white--point {
  position: absolute;
  right: -10%;
  line-height: 1.2;
}

.p-fv__title-red {
  color: #CC2C48;
}

.p-fv__img {
  height: inherit;
  min-height: inherit;
}

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

.p-fv__circle {
  position: absolute;
  right: 31.6px;
  right: 1.975rem;
  bottom: 35.2px;
  bottom: 2.2rem;
  -webkit-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
  width: 100px;
  width: 6.25rem;
  z-index: 500;
}

.p-fv__arrow {
  position: absolute;
  right: 70px;
  right: 4.375rem;
  bottom: 70px;
  bottom: 4.375rem;
  width: 24px;
  width: 1.5rem;
  z-index: 500;
}

@-webkit-keyframes rotate {

  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {

  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.p-header {
  background-color: #CC2C48;
  height: 60px;
  height: 3.75rem;
  color: #fff;
  font-family: 'Schibsted Grotesk', serif;
}

.p-header__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-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 10px;
  padding-left: .625rem;
  height: inherit;
}

.p-header__logo {
  position: relative;
  z-index: 999;
  width: 100%;
  max-width: 150px;
  max-width: 9.375rem;
  height: inherit;
}

.p-header__logo a {
  gap: 10px;
  gap: .625rem;
  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: inherit;
}

.p-header__logo img {
  width: 100%;
  max-width: 40px;
  max-width: 2.5rem;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__logo span {
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2222222222;
  text-transform: uppercase;
}

.p-header__nav {
  display: none;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}

.p-header__nav-item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 0 14px 51px;
  padding: .875rem 0 .875rem 3.1875rem;
  font-size: max(20px, 14px);
  font-size: max(1.25rem, 14px);
  font-weight: 700;
  line-height: 1.2;
}

.p-header__nav-item > p {
  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: 14px 0 10px 51px;
  padding: .875rem 0 .625rem 3.1875rem;
  color: #C0C0C0;
  font-size: max(20px, 14px);
  font-size: max(1.25rem, 14px);
  font-weight: 700;
  line-height: 1.2;
}

.p-header__nav-item > span {
  display: block;
  padding: 10px 0 14px 100px;
  padding: .625rem 0 .875rem 6.25rem;
  font-size: max(20px, 14px);
  font-size: max(1.25rem, 14px);
  font-weight: 700;
  line-height: 1.2;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-inline: auto;
  margin-top: 193px;
  margin-top: 12.0625rem;
  border: 1px solid #fff;
  border-radius: .4375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-header__nav-item.p-header__nav-item--contact a {
  padding: 16px 27px;
  padding: 1rem 1.6875rem;
}

.p-header__nav-item > span {
  display: block;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-header__nav-item > span::after {
  display: block;
  position: absolute;
  top: 45%;
  right: -25px;
  right: -1.5625rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 3px solid #fff;
  border-right: .1875rem solid #fff;
  border-bottom: 3px solid #fff;
  border-bottom: .1875rem solid #fff;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 999;
  height: inherit;
}

.p-header__sns-list-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-header__sns-item + .p-header__sns-item {
  margin-left: 10px;
  margin-left: .625rem;
}

.p-header__sns-item a {
  display: block;
  width: 100%;
  max-width: 30px;
  max-width: 1.875rem;
}

.p-header__sns-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__hamburger {
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
  margin: 0 15px 0 15px;
  margin: 0 .9375rem 0 .9375rem;
  outline: none;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 40px;
  width: 2.5rem;
  height: inherit;
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  transition: .5s;
  background-color: #fff;
  width: 25px;
  width: 1.5625rem;
  height: 1px;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -8px;
  top: -.5rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 8px;
  top: .5rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  top: -.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  scrollbar-width: none;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  background-color: rgba(28, 45, 79, .95);
  padding: 100px 0;
  padding: 6.25rem 0;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  height: 100vh;
  overflow-y: scroll;
  font-weight: 700;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-nav {
  padding-left: 40px;
  padding-left: 2.5rem;
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
}

.p-header__drawer-item > a,
.p-header__drawer-item > span,
.p-header__drawer-item > p {
  display: block;
  padding: 10px 0;
  padding: .625rem 0;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .08em;
  line-height: 1;
}

.p-header__drawer-item > a {
  padding: 10px 0;
  padding: .625rem 0;
}

.p-header__drawer-item > span,
.p-header__drawer-item > p {
  padding: 10px 0 5px;
  padding: .625rem 0 .3125rem;
}

.p-header__drawer-item > span {
  display: block;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  padding-left: 26px;
  padding-left: 1.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-header__drawer-item > span::after {
  display: block;
  position: absolute;
  top: 45%;
  right: -25px;
  right: -1.5625rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 3px solid #fff;
  border-right: .1875rem solid #fff;
  border-bottom: 3px solid #fff;
  border-bottom: .1875rem solid #fff;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

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

.p-header__drawer-item.p-header__drawer-item--contact a {
  border: 1px solid #fff;
  border-radius: .4375rem;
  padding: 10px 20px;
  padding: .625rem 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-header__drawer-accordion-title {
  position: relative;
  cursor: pointer;
}

.p-header__drawer-accordion-title::before {
  position: absolute;
  top: 48%;
  left: 90px;
  left: 5.625rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: .3s;
  transition: .3s;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-header__drawer-accordion-title.is-open::before {
  top: 53%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.p-header__drawer-accordion-list {
  display: none;
  margin-bottom: 5px;
  margin-bottom: .3125rem;
}

.p-header__drawer-accordion-item a {
  display: block;
  padding: 5px 0;
  padding: .3125rem 0;
  color: #fff;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1;
}

.p-header__language {
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.p-header__language-options {
  display: none;
  position: absolute;
  top: 90%;
  right: 30px;
  right: 1.875rem;
  -webkit-transform: translateY(-20px) rotateX(-90deg);
  transform: translateY(-20px) rotateX(-90deg); /* スライドと回転の初期状態 */
  opacity: 0;
  z-index: 1000;
  -webkit-transition: 3s;
  transition: 3s;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; /* アニメーションの滑らかさ */
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
}

.p-header__language-options.open {
  display: block;
  -webkit-transform: translateY(0) rotateX(0);
  transform: translateY(0) rotateX(0); /* 完全に表示される状態 */
  opacity: 1;
  height: 100%;
}

.p-header__language-option {
  cursor: pointer;
  padding: 5px 10px;
}

.p-header__language-option:hover {
  opacity: .8;
}

/* ドロップダウンが表示されたとき */
.p-header__language.open .p-header__language-options {
  display: block;
}

.p-header__drawer-options {
  display: none;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  padding-left: 26px;
  padding-left: 1.625rem;
  width: 100%;
  height: 0;
  font-size: 14px;
  font-size: .875rem;
}

.p-header__drawer-options.open {
  display: block;
  visibility: visible;
  opacity: 1;
  height: 100%;
  pointer-events: auto; /* クリック可能にする */
}

.p-header__drawer-option {
  cursor: pointer;
  padding: 5px 10px;
}

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

.p-introduction__image01 {
  display: none;
}

.p-introduction__image02 {
  display: none;
}

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

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

.p-introduction__image-sp {
  margin-inline: auto;
  gap: 40px;
  gap: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 80%;
}

.p-movie-list {
  gap: 0 20px;
  gap: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  grid-template-rows: auto;
}

.p-movie-list__item {
  gap: 0;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-movie-list__movie {
  aspect-ratio: 412/305;
  width: 100%;
}

.p-movie-list__movie img, .p-movie-list__movie iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-movie-list__title {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-family: 'Anton', serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}

.p-movie-list__content {
  margin-top: 6px;
  margin-top: .375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3888888889;
}

.p-movie {
  position: relative;
  color: #fff;
}

.p-movie__movie {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

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

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

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

.p-overview__contents {
  display: grid;
}

.p-overview__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75;
}

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

.p-prospects {
  color: #fff;
}

.p-prospects__contents {
  background-image: url(../../assets/img/about/prospects.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 20px 80px;
  padding: 2.5rem 1.25rem 5rem;
}

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

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

.p-page-privacy__message h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.p-page-privacy__message h2:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-page-privacy__message h3 {
  font-size: 18px;
  font-weight: 600;
}

.p-page-privacy__message ul, .p-page-privacy__message ol {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-page-privacy__message p, .p-page-privacy__message li {
  font-size: 16px;
  font-size: 1rem;
}

.p-page-privacy__message ul li {
  list-style: disc;
}

.p-page-privacy__message ol li {
  list-style-type: decimal;
}

.p-page-privacy__message ol ul li {
  list-style: disc;
  margin-top: 0;
}

.p-page-privacy__message li {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-left: 18px;
  margin-left: 1.125rem;
}

.p-page-product__contents-wrapper {
  gap: 60px;
  gap: 3.75rem;
  display: grid;
}

.p-page-title span {
  display: block;
  position: relative;
  padding-left: 24px;
  padding-left: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 'Anton', serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.4;
}

.p-page-title span::before {
  display: block;
  position: absolute;
  top: 17px;
  top: 1.0625rem;
  left: 8px;
  left: .5rem;
  border-radius: 50%;
  background-color: #CC2C48;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-page-title.p-page-title--404 span {
  margin-inline: auto;
  position: initial;
  padding: 0;
}

.p-page-title.p-page-title--404 span::before {
  display: none;
}

.p-policy__img {
  margin-inline: auto;
  width: 75%;
  max-width: 600px;
  max-width: 37.5rem;
}

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

.p-policy__step {
  gap: 10px;
  gap: .625rem;
  margin-inline: auto;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 375px;
  max-width: 23.4375rem;
}

.p-policy__item {
  border-radius: .625rem;
  background-color: #CC2C48;
  padding: 9px 10px 9px 10px;
  padding: .5625rem .625rem .5625rem .625rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.375;
}

.p-product-contents__item-wrapper {
  gap: 23px;
  gap: 1.4375rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-product-contents__item {
  border-radius: .9375rem;
  background-color: #e3e3e3;
  padding: 6px 23px 30px;
  padding: .375rem 1.4375rem 1.875rem;
}

.p-product-contents__title {
  color: #CC2C48;
  font-family: 'Anton', serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.025;
}

.p-product-contents__img {
  aspect-ratio: 569/479;
  width: 100%;
}

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

.p-product-contents__btn {
  margin-top: 10px;
  margin-top: .625rem;
  text-align: center;
}

.p-products__container {
  display: grid;
}

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

.p-products__swiper {
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  width: 100%;
}

.p-products__swiper img {
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-products__text {
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}

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

.p-products__swiper .swiper-pagination.swiper-pagination {
  bottom: 0;
  width: 100%;
}

.p-products__swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 10;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: initial;
  background: #8E8E8E;
  width: 18%;
  height: 5px;
  height: .3125rem;
}

.p-products__swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #CC2C48;
}

.p-section-title__main span {
  position: relative;
  padding-left: 10px;
  padding-left: .625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
}

.p-section-title__main span::before {
  display: block;
  position: absolute;
  top: 5px;
  top: .3125rem;
  left: 0;
  border-radius: 50%;
  background-color: #CC2C48;
  width: 6px;
  width: .375rem;
  height: 6px;
  height: .375rem;
  content: '';
}

.p-section-title__message {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-family: 'Anton', serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.125;
}

.p-section-title__red {
  color: #CC2C48;
}

.p-single-product__head {
  display: grid;
}

.p-single-product__main {
  display: block;
  font-family: 'Anton', serif;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.6233766234;
}

.p-single-product__sub {
  display: block;
  font-family: 'Anton', serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6071428571;
}

.p-single-product__thumbnail {
  aspect-ratio: 758/672;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  width: 100%;
}

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

.p-single-product__message {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #CC2C48;
  font-family: 'Anton', serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.0833333333;
}

.p-single-product__content {
  gap: 50px;
  gap: 3.125rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.p-single-product__feature-contents {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-single-product__example-contents {
  gap: 18px 20px;
  gap: 1.125rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: .9375rem;
  background-color: #f5f5f5;
  padding: 20px;
  padding: 1.25rem;
}

.p-single-product__info {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-single-product__movie-contents {
  aspect-ratio: 624/461;
  margin-top: 8px;
  margin-top: .5rem;
  width: 100%;
}

.p-single-product__movie-contents img, .p-single-product__movie-contents iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-single-product__catalog-download {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-stats {
  gap: 8.2px;
  gap: .5125rem;
  display: grid;
}

.p-stats__item {
  gap: 10px;
  gap: .625rem;
  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;
  border-radius: .75rem;
  background-color: #CC2C48;
  padding: 10px 20px;
  padding: .625rem 1.25rem;
  font-family: 'Anton', serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}

.p-stats__white {
  color: #fff;
}

.p-stats__number {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 140px;
  width: 8.75rem;
  color: #fff;
  text-align: right;
}

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

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

.p-sub-fv {
  position: relative;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 90px;
  padding: 5rem 0 5.625rem;
}

.p-sub-fv::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  width: 98%;
  height: 92%;
  content: '';
}

.p-sub-fv.p-sub-fv--about {
  background-image: url(../../assets/img/about/fv.jpg);
}

.p-sub-fv.p-sub-fv--product {
  background-image: url(../../assets/img/product/fv.jpg);
}

.p-sub-fv.p-sub-fv--company {
  background-image: url(../../assets/img/company/fv.jpg);
}

.p-sub-fv.p-sub-fv--movie {
  background-image: url(../../assets/img/movie/fv.jpg);
}

.p-sub-fv.p-sub-fv--contact {
  background-image: url(../../assets/img/contact/fv.jpg);
}

.p-sub-fv__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-family: 'Anton', serif;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.6233766234;
}

.p-thanks__text {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
}

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

.p-thanks__button a {
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
  border: none;
  background-color: #CC2C48;
  background-image: none;
  padding: 18px;
  padding: 1.125rem;
  width: 270px;
  width: 16.875rem;
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.52;
}

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

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

  html {
    font-size: 1.2260536398vw;
  }

  :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-access {
    margin-top: 194px;
    margin-top: 12.125rem;
  }

  .l-business {
    margin-top: 170px;
    margin-top: 10.625rem;
  }

  .l-company {
    margin-top: 186px;
    margin-top: 11.625rem;
  }

  .l-conclusion {
    margin-top: 198px;
    margin-top: 12.375rem;
  }

  .l-contact {
    margin-top: 136px;
    margin-top: 8.5rem;
  }

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

  .l-container.l-container--min {
    max-width: 1084.425px;
  }

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

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

  .l-footer {
    margin-top: 200px;
    margin-top: 12.5rem;
  }

  .l-header {
    right: initial;
  }

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

  .l-movie {
    margin-top: 173px;
    margin-top: 10.8125rem;
    padding: 38px 0 300px;
    padding: 2.375rem 0 18.75rem;
  }

  .l-page-404 {
    margin-top: 200px;
    margin-top: 12.5rem;
  }

  .l-page-contents {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .l-page-thanks {
    margin-top: 200px;
    margin-top: 12.5rem;
  }

  .l-policy {
    margin-top: 183px;
    margin-top: 11.4375rem;
  }

  .l-products {
    margin-top: 138px;
    margin-top: 8.625rem;
  }

  .l-prospects {
    margin-top: 210px;
    margin-top: 13.125rem;
  }

  .l-single-product {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .l-sub-main {
    margin-top: 0;
  }

  .c-btn {
    font-size: 18px;
  }

  .c-btn.c-btn--large {
    font-size: 27px;
  }

  .c-btn.c-btn--exLarge {
    font-size: 63px;
    font-size: 3.9375rem;
  }

  .c-text {
    font-size: 18px;
  }

  .p-access__map {
    aspect-ratio: 1345/548;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-access__text {
    margin-top: 43px;
    margin-top: 2.6875rem;
  }

  .p-business__container {
    gap: 64px;
    gap: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
  }

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

  .p-company-info {
    font-size: 20px;
  }

  .p-company-info__row {
    display: grid;
    grid-template-columns: 3.17fr 6.31fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-company-info__row:not(:first-of-type) .p-company-info__label {
    border-top: 1px solid #fff;
  }

  .p-company-info__row.p-company-info__row--single {
    grid-template-columns: 3.25fr 9.9fr;
  }

  .p-company-info__label,
  .p-company-info__value {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 41px;
    padding: .875rem 2.5625rem;
    min-height: 90px;
    min-height: 5.625rem;
  }

  .p-company-info__value {
    border: 1px solid #a3a3a3;
    font-size: 20px;
  }

  .p-company-profile__info {
    margin-inline: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 946px;
    max-width: 59.125rem;
  }

  .p-company__img {
    max-width: 60%;
  }

  .p-company__stats {
    margin-top: 67px;
    margin-top: 4.1875rem;
  }

  .p-conclusion__text {
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .p-contact__head {
    font-size: 63px;
    font-size: 3.9375rem;
  }

  .p-contact__btn {
    margin-top: 37px;
    margin-top: 2.3125rem;
  }

  .p-feature {
    gap: 19px;
    gap: 1.1875rem;
    padding: 43px 49px 49px;
    padding: 2.6875rem 3.0625rem 3.0625rem;
  }

  .p-feature__item {
    gap: 20px;
    gap: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
  }

  .p-feature__title {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 160px;
    font-size: 18px;
  }

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

  .p-feature__imgs {
    gap: 23px;
    gap: 1.4375rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 63px;
    margin-top: 3.9375rem;
  }

  .p-footer {
    margin-left: 185px;
    margin-left: 11.5625rem;
    padding-top: 90px;
    padding-top: 5.625rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    text-align: left;
  }

  .p-footer__container.l-container {
    padding-right: 0;
    max-width: 1600px;
    max-width: 100rem;
  }

  .p-footer__wrap {
    gap: 10px;
    gap: .625rem;
    -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-footer__logo a {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-footer__logo span {
    font-size: 18px;
  }

  .p-footer__address {
    margin-inline: auto;
    max-width: 100%;
  }

  .p-footer__address-label {
    font-size: 15px;
  }

  .p-footer__right {
    gap: 41px;
    gap: 2.5625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

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

  .p-footer__nav-item {
    font-size: 18px;
  }

  .p-footer__nav-item.p-footer__nav-item--privacy {
    font-size: 16px;
  }

  .p-footer__sns {
    padding-left: 40px;
    padding-left: 2.5rem;
  }

  .p-footer__last {
    display: grid;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
    margin-top: 2.5rem;
    text-align: center;
  }

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

  .p-footer__copyright {
    padding-right: 40px;
    padding-right: 2.5rem;
    font-size: 12px;
    text-align: right;
  }

  .p-form__container {
    gap: 43px 38px;
    gap: 2.6875rem 2.375rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-form__label {
    font-size: 20px;
  }

  .p-form__text {
    font-size: 16px;
  }

  .p-form__input input,
  .p-form__textarea textarea {
    padding: 18px 15px;
    padding: 1.125rem .9375rem;
  }

  .p-form__textarea textarea {
    min-height: 273px;
    min-height: 17.0625rem;
  }

  .p-form__submit {
    margin: 50px 0 0 auto;
    margin: 3.125rem 0 0 auto;
  }

  .p-form__submit input,
  .p-form__submit a {
    font-size: 25px;
  }

  .p-form__submit input:hover {
    opacity: .8;
  }

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

  .p-fv__title {
    top: initial;
    bottom: 120px;
    bottom: 7.5rem;
    left: max(30px, 50vw - 788px);
    left: max(1.875rem, 50vw - 49.25rem);
    -webkit-transform: initial;
    transform: initial;
    padding-right: 120px;
    padding-right: 7.5rem;
    width: initial;
    font-size: 142px;
    font-size: 8.875rem;
    font-size: min(142px, 9.2vw);
    font-size: min(8.875rem, 9.2vw);
    white-space: nowrap;
  }

  .p-fv__title-container {
    gap: 40px;
    gap: 2.5rem;
  }

  .p-fv__title-white.p-fv__title-white--point {
    top: 0;
  }

  .p-fv__circle {
    right: max(31.6px, 50vw - 788px);
    right: max(1.975rem, 50vw - 49.25rem);
    width: 134px;
    width: 8.375rem;
  }

  .p-fv__arrow {
    right: 80px;
    right: 5rem;
    right: max(80px, 50vw - 740px);
    right: max(5rem, 50vw - 46.25rem);
    bottom: 75px;
    bottom: 4.6875rem;
    width: 40px;
    width: 2.5rem;
  }

  .p-header {
    scrollbar-width: none;
    padding: 34px 0 25px;
    padding: 2.125rem 0 1.5625rem;
    width: 100%;
    max-width: 185px;
    max-width: 11.5625rem;
    height: 100vh;
    min-height: 600px;
    min-height: 37.5rem;
    overflow-y: scroll;
  }

  .p-header::-webkit-scrollbar {
    display: none;
  }

  .p-header__inner {
    display: block;
    padding-left: 0;
    /*height: inherit;*/
    height: calc(100vh - 3.6875rem);
    min-height: inherit;
  }

  .p-header__logo {
    margin: auto;
    max-width: 150px;
    max-width: 9.375rem;
    height: initial;
  }

  .p-header__logo a {
    height: initial;
  }

  .p-header__logo img {
    max-width: 47px;
    max-width: 2.9375rem;
  }

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

  .p-header__nav {
    display: block;
    margin: 82px 0;
    margin: 5.125rem 0;
  }

  .p-header__right {
    display: none;
  }

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

  .p-header__sns-item + .p-header__sns-item {
    margin-left: 20px;
    margin-left: 1.25rem;
  }

  .p-header__language:hover {
    opacity: .8;
  }

  .p-introduction__container {
    gap: 10px;
    gap: .625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow-x: clip;
  }

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

  .p-introduction__btn {
    margin-top: 46px;
    margin-top: 2.875rem;
  }

  .p-main {
    margin-left: 185px;
    margin-left: 11.5625rem;
  }

  .p-movie-list {
    gap: 0 35px;
    gap: 0 2.1875rem;
    grid-template-columns: repeat(auto-fit, minmax(21.875rem, 1fr));
  }

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

  .p-movie-list__title {
    font-size: 20px;
  }

  .p-movie-list__content {
    font-size: 18px;
  }

  .p-movie__contents {
    max-width: 620px;
    max-width: 38.75rem;
  }

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

  .p-movie__btn {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-overview__text {
    font-size: 20px;
  }

  .p-prospects__contents {
    padding: 69px 47px 120px;
    padding: 4.3125rem 2.9375rem 7.5rem;
  }

  .p-prospects__text {
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-left: auto;
    max-width: 595px;
    max-width: 37.1875rem;
  }

  .p-page-privacy__message h2 {
    font-size: 22px;
  }

  .p-page-privacy__message h3 {
    font-size: 20px;
  }

  .p-page-privacy__message p, .p-page-privacy__message li {
    font-size: 18px;
  }

  .p-page-privacy__message li {
    margin-left: 20px;
  }

  .p-page-product__contents-wrapper {
    gap: 131px;
    gap: 8.1875rem;
  }

  .p-page-title span {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 1.62;
  }

  .p-policy__container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
  }

  .p-policy__img {
    width: 65%;
    max-width: 100%;
  }

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

  .p-policy__step {
    gap: 18px;
    gap: 1.125rem;
    margin: 80px auto 0 0;
    margin: 5rem auto 0 0;
    margin-top: 80px;
    margin-top: 5rem;
    width: 76%;
    max-width: 100%;
  }

  .p-policy__item {
    padding: 9px 29px 17px 29px;
    padding: .5625rem 1.8125rem 1.0625rem 1.8125rem;
    font-size: 24px;
  }

  .p-product-contents__item-wrapper {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-product-contents__item {
    padding: 6px 23px 40px;
    padding: .375rem 1.4375rem 2.5rem;
  }

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

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

  .p-products__swiper {
    width: 80%;
  }

  .p-products__text {
    width: 80%;
  }

  .p-section-title__message {
    font-size: 80px;
    font-size: 5rem;
  }

  .secton-title__nowrap {
    white-space: nowrap;
  }

  .p-single-product__head {
    gap: 100px;
    gap: 6.25rem;
    grid-template-columns: 3.87fr 6.6fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-single-product__title {
    -webkit-transform: translateY(-2.5rem);
    transform: translateY(-2.5rem);
    min-width: 420px;
    min-width: 26.25rem;
  }

  .p-single-product__main {
    font-size: 77px;
    font-size: 4.8125rem;
  }

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

  .p-single-product__message {
    margin-top: 68px;
    margin-top: 4.25rem;
    font-size: 60px;
    font-size: 3.75rem;
  }

  .p-single-product__content {
    gap: 100px;
    gap: 6.25rem;
  }

  .p-single-product__feature {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-single-product__example-contents {
    gap: 32px 37px;
    gap: 2rem 2.3125rem;
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    margin-top: 1.25rem;
    padding: 43px 71px 51px;
    padding: 2.6875rem 4.4375rem 3.1875rem;
  }

  .p-single-product__movie-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .p-single-product__movie-contents {
    width: 48.5%;
  }

  .p-single-product__catalog-download {
    margin-top: 29px;
    margin-top: 1.8125rem;
  }

  .p-stats__item {
    border-radius: 1.25rem;
    padding: 23px 60px;
    padding: 1.4375rem 3.75rem;
    font-size: 28px;
    font-size: 1.75rem;
    font-size: 50px;
    font-size: 3.125rem;
  }

  .p-stats__number {
    width: 415px;
    width: 25.9375rem;
  }

  .p-stats__big {
    font-size: 140px;
    font-size: 8.75rem;
  }

  .p-stats__pulus {
    font-size: 90px;
    font-size: 5.625rem;
  }

  .p-sub-fv__title {
    font-size: 77px;
    font-size: 4.8125rem;
  }

  .p-thanks__text {
    font-size: 22px;
  }

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

  .p-thanks__button a {
    width: 270px;
    font-size: 25px;
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

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

  .l-introduction {
    margin-top: 132px;
    margin-top: 8.25rem;
  }

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

  .p-company__contents {
    gap: 0 84px;
    gap: 0 5.25rem;
    grid-template-columns: 1.15fr 1.5fr;
    grid-template-rows: auto auto 1fr;
  }

  .p-company__img {
    grid-area: 1/1/4/2;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 100%;
  }

  .p-company__title {
    grid-area: 1/2/2/3;
  }

  .p-company__text {
    grid-area: 2/2/3/3;
    margin-top: 55.5px;
    margin-top: 3.46875rem;
  }

  .p-company__btn {
    grid-area: 3/2/4/3;
    margin-top: 48px;
    margin-top: 3rem;
  }

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

  .p-footer__last-message {
    font-size: 90px;
    font-size: 5.625rem;
  }

  .p-fv__title {
    bottom: 66px;
    bottom: 4.125rem;
  }

  .p-introduction__container {
    gap: 41px;
    gap: 2.5625rem;
  }

  .p-introduction__image01 {
    display: block;
    margin-top: -40px;
    margin-top: -2.5rem;
    width: 24.3%;
  }

  .p-introduction__image02 {
    display: block;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-transform: translateY(1.25rem);
    transform: translateY(1.25rem);
    width: 18.8%;
  }

  .p-introduction__contents {
    padding-left: 20px;
    padding-left: 1.25rem;
    width: 50%;
  }

  .p-introduction__image-sp {
    display: none;
  }

  .p-overview__contents {
    grid-template-columns: 1fr 1.12fr;
  }

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

  .p-overview__img {
    margin-top: 84px;
    margin-top: 5.25rem;
  }

  .p-products__container {
    gap: 0 76px;
    gap: 0 4.75rem;
    grid-template-columns: 1.1fr 1.2fr;
    grid-template-rows: auto auto 1fr;
  }

  .p-products__title {
    grid-area: 1/1/2/2;
    margin-top: 73px;
    margin-top: 4.5625rem;
    text-align: left;
  }

  .p-products__swiper {
    grid-area: 1/2/4/3;
    width: 100%;
  }

  .p-products__text {
    grid-area: 2/1/3/2;
    margin-top: 42px;
    margin-top: 2.625rem;
    width: 100%;
  }

  .p-products__btn {
    grid-area: 3/1/4/2;
    margin-top: 49px;
    margin-top: 3.0625rem;
    text-align: left;
  }

  .p-stats__item {
    padding: 23px 120px;
    padding: 1.4375rem 7.5rem;
  }

  .u-onlyPc {
    display: block;
  }
}

@media (min-width: 1305px) {

  html {
    font-size: 16px;
  }
}

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

  .p-footer__container.l-container {
    padding-left: 113px;
    padding-left: 7.0625rem;
  }

  .p-footer__last {
    margin-top: -24px;
    margin-top: -1.5rem;
  }

  .p-footer__last-message {
    font-size: 124px;
    font-size: 7.75rem;
  }
}

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

  .u-onlySp {
    display: block;
  }
}

@media (max-width: 375px) {

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