@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;
  min-height: -moz-available;
  min-height: stretch;
  color: #838383;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInLeft {

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

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

@keyframes fadeInLeft {

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

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

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

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

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

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

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

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

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

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

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #838383;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

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

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

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

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

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

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #838383;
  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: 50%;
  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: 50%;
  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 #0CF;
  border-bottom: .25em solid #0CF;
  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: 80px;
}

/************************************************************************
* 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: #0CF;
}

/* 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;
}

/************************************************************************
* Contact Form 7 スタイル上書き
* pタグとbrタグが自動挿入される場合の対応
************************************************************************/
.c-form .c-form__group > p {
  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;
  margin: 0;
  width: 100%;
}

.c-form .c-form__group > p:has(textarea) {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-form .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: auto;
  min-width: 0;
}

.c-form .wpcf7-form-control {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #54545A;
  border: .0625rem solid #54545A;
  border-radius: .25rem;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  width: 100%;
  color: #54545A;
  font-size: 16px;
  font-size: 1rem;
}

.c-form .wpcf7-form-control::-webkit-input-placeholder {
  color: #838383;
}

.c-form .wpcf7-form-control::-moz-placeholder {
  color: #838383;
}

.c-form .wpcf7-form-control::-ms-input-placeholder {
  color: #838383;
}

.c-form .wpcf7-form-control::placeholder {
  color: #838383;
}

.c-form .wpcf7-form-control.wpcf7-acceptance,
.c-form .wpcf7-acceptance {
  border: none;
}

.c-form .wpcf7-form-control.wpcf7-textarea {
  border: 1px solid #54545A;
  border: .0625rem solid #54545A;
  border-radius: .25rem;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  height: 250px;
  height: 15.625rem;
  resize: none;
  color: #54545A;
  font-size: 16px;
  font-size: 1rem;
}

.c-form br {
  display: none;
}

.c-form .wpcf7-acceptance .wpcf7-list-item-label {
  color: transparent;
}

.c-form .c-form__group > p:has(.wpcf7-acceptance) {
  gap: 10px;
  gap: .625rem;
}

.c-form .c-privacy-check__box {
  margin-right: 10px;
  margin-right: .625rem;
}

.c-form input[type=checkbox] + span {
  padding-left: 0;
}

.c-form input[type=checkbox] + span::before,
.c-form input[type=checkbox] + span::after {
  left: -30px;
  left: -1.875rem;
}

.c-form .c-form__group > p > label {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  width: 300px;
  width: 18.75rem;
  color: #838383;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.c-form .c-form__group > p:has(.wpcf7-acceptance) > label {
  width: 300px;
}

.c-form .c-form__button-wrap .wpcf7-submit {
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  cursor: pointer;
  border: none;
  border-radius: 4.375rem;
  background-color: #0CF;
  padding: 6px 117px;
  padding: .375rem 7.3125rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.c-form .c-form__button-wrap .wpcf7-submit:disabled, .c-form .c-form__button-wrap .wpcf7-submit.is-disabled {
  cursor: not-allowed;
  background-color: #b2b2b2;
  color: #fff;
}

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

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

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

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

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

.l-container {
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
  max-width: 1264px;
}

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

.l-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}

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

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

.l-wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}

/************************************************************************
* c-breadcrumb
************************************************************************/
.c-breadcrumb {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  padding: 0 30px;
  padding: 0 1.875rem;
  max-width: 1280px;
  max-width: 80rem;
}

/************************************************************************
* 基本形
************************************************************************/
.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;
  border: 1px solid #0CF;
  border-radius: 3rem;
  background-color: #fff;
  background-image: none;
  padding: .4em 2em;
  width: 100%;
  max-width: 320px;
  color: #0CF;
  font: inherit;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .2em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #0CF;
  color: #fff;
}

/************************************************************************
* 基本形の反転パターン
************************************************************************/

/************************************************************************
* modifier
************************************************************************/
.c-btn--reverse {
  background-color: #0CF;
  color: #fff;
}

.c-btn--reverse:hover, .c-btn--reverse:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #0CF;
}

.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: #fff;
  background-color: #fff;
  color: #0CF;
}

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

.c-btn--arrowRight::before {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #0CF;
  width: 24px;
  width: 1.5rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.c-btn--arrowRight:hover::before {
  background-color: #fff;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-top: 1px solid #0CF;
  border-right: 1px solid #0CF;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.c-btn--arrowRight:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.c-btn--arrowRight--reverse::before {
  background-color: #fff;
}

.c-btn--arrowRight--reverse::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.c-btn--arrowRight--reverse:hover::before {
  background-color: #0CF;
}

.c-btn--arrowRight--reverse:hover::after {
  border-top-color: #0CF;
  border-right-color: #0CF;
}

.c-btn--large {
  max-width: 400px;
  max-width: 25rem;
}

.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(0, 163.2, 204);
  background-color: #0CF;
  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: #0CF;
}

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

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #0CF;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-contact-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 100px;
  top: 6.25rem;
  right: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  background-color: #0CF;
  width: 80px;
  width: 5rem;
  height: 240px;
  height: 15rem;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.c-contact-banner.is-active {
  visibility: visible;
  opacity: 1;
}

.c-contact-banner.is-active:hover, .c-contact-banner.is-active:focus {
  opacity: .7;
}

/************************************************************************
* c-contact
************************************************************************/
.c-contact {
  position: relative;
  margin-top: 152px;
  margin-top: 9.5rem;
  background-color: #EDFDFF;
  padding: 200px 0;
  padding: 12.5rem 0;
}

.c-contact::before {
  display: block;
  position: absolute;
  top: 0;
  right: 15%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url('../img/line-decoration3.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 140px;
  width: 8.75rem;
  height: 84px;
  height: 5.25rem;
  content: '';
}

.c-contact__title {
  text-align: center;
}

.c-contact__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;
  margin-top: 64px;
  margin-top: 4rem;
}

.c-contact__box {
  background-color: #fff;
  padding: 48px 32px;
  padding: 3rem 2rem;
  width: 48.4166666667%;
  text-align: center;
}

.c-contact__icon {
  aspect-ratio: 64/64;
  width: 64px;
  width: 4rem;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.c-contact__type {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: .1em;
}

.c-contact__tel {
  font-family: 'Barlow', sans-serif;
  font-size: 64px;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.c-contact__time {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
}

.c-contact__text {
  margin-top: 17px;
  margin-top: 1.0625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8125;
}

.c-contact__wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c-drawer__logo {
  aspect-ratio: 120/55;
  display: inline-block;
  width: 120px;
  width: 7.5rem;
  height: auto;
}

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

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

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

.c-drawer__nav-link {
  display: block;
  -webkit-transition: color .3s;
  transition: color .3s;
  padding-top: 1em;
  padding-bottom: 1em;
}

.c-drawer__nav-link:hover {
  color: #0CF;
}

.c-drawer__nav-parent {
  position: relative;
}

.c-drawer__nav-toggle {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(250%, -50%);
  transform: translate(250%, -50%);
  cursor: pointer;
  border: none;
  background: none;
  padding: 10px;
  padding: .625rem;
  color: #54545A;
  font-size: 16px;
  font-size: 1rem;
}

.c-drawer__toggle-icon {
  display: inline-block;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  will-change: transform;
  font-weight: 700;
}

.c-drawer__subnav {
  margin-top: 5px;
  margin-top: .3125rem;
  height: 0;
  overflow: hidden;
}

.c-drawer__subnav-item + .c-drawer__subnav-item {
  margin-top: 5px;
  margin-top: .3125rem;
}

.c-drawer__subnav-link {
  display: block;
  -webkit-transition: color .3s;
  transition: color .3s;
  padding-top: 10px;
  padding-top: .625rem;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  color: #54545A;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .02em;
}

.c-drawer__subnav-link:hover {
  color: #0CF;
}

.c-footer__top {
  padding: 160px 0;
  padding: 10rem 0;
}

.c-footer__top-inner {
  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;
}

.c-footer__top-logo {
  aspect-ratio: 300/123;
  width: 300px;
  width: 18.75rem;
  height: auto;
}

.c-footer__top-logo img,
.c-footer__top-logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-footer__top-nav-list {
  row-gap: 32px;
  row-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
}

.c-footer__top-nav-item {
  text-align: center;
}

.c-footer__top-nav-link {
  position: relative;
  padding-left: 33px;
  padding-left: 2.0625rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .25em;
}

.c-footer__top-nav-link::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/circle-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 26px;
  width: 1.625rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.c-footer__top-links {
  gap: 40px;
  gap: 2.5rem;
  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;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.c-footer__top-link {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.c-footer__bottom {
  background-color: #0CF;
  padding: 35px 0 35px;
  padding: 2.1875rem 0 2.1875rem;
}

.c-footer__bottom-copy {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/************************************************************************
* c-form
************************************************************************/
.c-form__group {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-form__group:has(.c-form__radio-wrap) {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-form__group:has(.c-form__textarea) {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-form__group + .c-form__group {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.c-form__label {
  gap: 15px;
  gap: .9375rem;
  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;
  width: 300px;
  width: 18.75rem;
  color: #838383;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.c-form__required {
  background-color: #f00;
  padding: 4px 8px;
  padding: .25rem .5rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
}

.c-form__any {
  border: 1px solid #54545A;
  border: .0625rem solid #54545A;
  padding: 4px 8px;
  padding: .25rem .5rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
}

.c-form__input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: auto;
  border: 1px solid #54545A;
  border: .0625rem solid #54545A;
  border-radius: .25rem;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  color: #54545A;
  font-size: 16px;
  font-size: 1rem;
}

.c-form__input::-webkit-input-placeholder,
.c-form__textarea::-webkit-input-placeholder {
  color: #838383;
}

.c-form__input::-moz-placeholder,
.c-form__textarea::-moz-placeholder {
  color: #838383;
}

.c-form__input::-ms-input-placeholder,
.c-form__textarea::-ms-input-placeholder {
  color: #838383;
}

.c-form__input::placeholder,
.c-form__textarea::placeholder {
  color: #838383;
}

.c-form__textarea {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #54545A;
  border: .0625rem solid #54545A;
  border-radius: .25rem;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  height: 250px;
  height: 15.625rem;
  resize: none;
  color: #54545A;
  font-size: 16px;
  font-size: 1rem;
}

.c-form__checkbox-wrap {
  gap: 23px;
  gap: 1.4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-form__radio-wrap {
  gap: 23px;
  gap: 1.4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-privacy-check {
  gap: 10px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

/* inputは機能だけ残して非表示 */
.c-privacy-check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* テキスト */
.c-privacy-check__text {
  color: #838383;
  font-size: 16px;
  line-height: 1.4;
}

.c-privacy-check__text a {
  color: #54545A;
  text-decoration: underline;
}

.c-privacy-check__text a[target=_blank]::after {
  display: none;
  visibility: hidden;
  opacity: 0;
  -webkit-mask-image: none;
  mask-image: none;
  margin: 0;
  background-color: transparent;
  width: 0;
  height: 0;
  content: none;
}

.c-form__button-wrap {
  margin-top: 57px;
  margin-top: 3.5625rem;
  text-align: center;
}

.c-form__button-link {
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  cursor: pointer;
  border: none;
  border-radius: 4.375rem;
  background-color: #0CF;
  padding: 6px 117px;
  padding: .375rem 7.3125rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.c-form__button-link:disabled, .c-form__button-link.is-disabled {
  cursor: not-allowed;
  background-color: #b2b2b2;
  color: #fff;
}

.c-form__button-wrap .c-form__button.is-disabled:hover {
  -webkit-transform: none;
  transform: none;
  -webkit-animation: none;
  animation: none;
  -webkit-transition: none;
  transition: none;
  cursor: not-allowed;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: default;
}

.c-form__end-message,
.c-form__false-message {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.c-form__end-message {
  display: none;
}

.c-form__false-message {
  display: none;
}

/* 2) Tabで入ったときだけフォーカスリングを出す */
.c-form__checkbox-label:has(input[type=checkbox]:focus-visible) {
  outline: none;
}

.c-form__radio-label:has(input[type=radio]:focus-visible) {
  outline: 2px solid #0CF;
  outline-offset: 3px;
}

.c-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #D8D8D8;
  background-color: #fff;
  height: 120px;
  height: 7.5rem;
}

.c-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__logo {
  aspect-ratio: 120/55;
  position: absolute;
  top: 50%;
  left: 32px;
  left: 2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 120px;
  width: 7.5rem;
  height: auto;
}

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

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

.c-header__nav {
  display: none;
}

.c-header__nav-list {
  gap: 87px;
  gap: 5.4375rem;
  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;
}

.c-header__nav-link {
  display: block;
  position: relative;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .05em;
}

.c-header__nav-link::after {
  display: block;
  position: absolute;
  top: 50%;
  right: -25px;
  right: -1.5625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background-image: url(../img/nav-hover-icon.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-header__nav-link:hover::after {
  opacity: 1;
}

.c-header__nav-item--has-dropdown {
  position: relative;
}

.c-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10;
  padding-top: 10px;
  padding-top: .625rem;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.c-header__dropdown.is-open {
  pointer-events: auto;
}

.c-header__dropdown-item + .c-header__dropdown-item {
  margin-top: 5px;
  margin-top: .3125rem;
}

.c-header__dropdown-link {
  display: block;
  border: 1px solid #D8D8D8;
  background-color: #fff;
  padding: 5px 15px;
  padding: .3125rem .9375rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-align: center;
  white-space: nowrap;
}

.c-header__dropdown-link:hover {
  background-color: #f5f5f5;
}

/************************************************************************
* c-pagination
************************************************************************/
.c-pagination {
  margin: 102px auto 0;
  margin: 6.375rem auto 0;
  padding: 0 30px;
  padding: 0 1.875rem;
  max-width: 1280px;
  max-width: 80rem;
}

.c-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #0CF;
  width: 2em;
  height: 2em;
  color: #0CF;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

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

.page-numbers.current {
  background-color: #0CF;
  color: #fff;
}

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

/************************************************************************
* c-spec-grid
************************************************************************/
.c-spec-grid {
  row-gap: .6em;
  display: grid;
  grid-template-columns: 9em 1fr;
  -webkit-column-gap: 1.5em;
  -moz-column-gap: 1.5em;
  column-gap: 1.5em;
}

/* スマホでは縦並び */

/************************************************************************
* c-table-scroll
************************************************************************/
.c-table-scroll {
  container-type: inline-size;
}

.c-table-scroll__inner {
  overflow-x: visible;
}

.c-table-scroll__inner table {
  min-width: 675px;
  table-layout: fixed;
}

.c-table-scroll__inner th,
.c-table-scroll__inner td {
  white-space: normal;
}

.c-table-scroll__message {
  display: none;
  margin-top: 10px;
  color: #666;
  font-size: 12px;
  text-align: center !important;
}

/* Safari含むフォールバック（画面幅ベース） */

/* container query が使えるブラウザは本命 */
@supports (container-type: inline-size) {

  .c-table-scroll__message {
    display: none;
  }
  @container (max-width: 675px) {

    .c-table-scroll__message {
      display: block;
    }
  }
}

.c-title__en {
  font-family: 'Barlow', sans-serif;
  font-size: 64px;
  font-size: 4rem;
  font-weight: 100;
  letter-spacing: .3em;
}

.c-title__ja {
  display: inline-block;
  position: relative;
  margin-top: 13px;
  margin-top: .8125rem;
  padding-left: 56px;
  padding-left: 3.5rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: .25em;
}

.c-title__ja::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/circle-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 32px;
  width: 2rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 120px;
  bottom: 7.5rem;
  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: #0CF;
  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: 1;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: .7;
}

/************************************************************************
* c-under-page-fv
************************************************************************/
.c-under-page-fv {
  height: 573px;
  height: 35.8125rem;
}

.c-under-page-fv__inner {
  padding: 70px 52px 0;
  padding: 4.375rem 3.25rem 0;
  height: inherit;
}

.c-under-page-fv__title-en {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.c-under-page-fv__title-ja {
  margin-top: 8px;
  margin-top: .5rem;
  color: #fff;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 700;
}

.c-under-page-fv__text {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}

/************************************************************************
* p-home-business
************************************************************************/
.p-home-business {
  margin-top: 130px;
  margin-top: 8.125rem;
}

.p-home-business__bg {
  background-image: url('../img/home-business-bg.webp');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
}

.p-home-business__inner {
  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-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 190px;
  padding-top: 11.875rem;
}

.p-home-business__img {
  width: 40%;
}

.p-home-business__img img {
  aspect-ratio: 480/380;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-business__body {
  margin-top: 200px;
  margin-top: 12.5rem;
  width: 41.6666666667%;
}

.p-home-business__text {
  margin-top: 68px;
  margin-top: 4.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8125;
  text-align: justify;
}

.p-home-business__list {
  gap: 48px;
  gap: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  margin-top: 5rem;
}

.p-home-business__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-home-business__item-img {
  aspect-ratio: 368/260;
  width: 100%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-home-business__item-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-home-business__item-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-align: center;
}

.p-home-business__item-text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8125;
  text-align: justify;
}

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

/************************************************************************
* p-home-company
************************************************************************/
.p-home-company {
  margin-top: 270px;
  margin-top: 16.875rem;
}

.p-home-company .l-wrap {
  position: relative;
}

.p-home-company .l-wrap::before {
  display: block;
  position: absolute;
  top: -75px;
  top: -4.6875rem;
  left: 0;
  background-image: url('../img/line-decoration1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 280px;
  width: 17.5rem;
  height: 126px;
  height: 7.875rem;
  content: '';
}

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

.p-home-company__body {
  margin-top: auto;
  width: 37.5%;
}

.p-home-company__copy {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #0CF;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.p-home-company__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8125;
  text-align: justify;
}

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

.p-home-company__img {
  width: 52.5%;
}

.p-home-company__img img {
  aspect-ratio: 630/740;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/************************************************************************
* p-home-fv
************************************************************************/
.p-home-fv {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-home-fv__inner {
  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-home-fv__body {
  width: 44.7916666667%;
}

.p-home-fv__title::after {
  aspect-ratio: 280/126;
  display: block;
  position: absolute;
  bottom: clamp(-274px, -14.2708333333vw, -109px);
  bottom: clamp(-17.125rem, -14.2708333333vw, -6.8125rem);
  left: clamp(-111px, -5.78125vw, -44px);
  left: clamp(-6.9375rem, -5.78125vw, -2.75rem);
  z-index: 1;
  background-image: url('../img/line-decoration1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(200px, 14.5833333333vw, 280px);
  width: clamp(12.5rem, 14.5833333333vw, 17.5rem);
  height: auto;
  content: '';
}

.p-home-fv__title {
  position: relative;
  z-index: 1;
  margin-top: clamp(83px, 10.8333333333vw, 208px);
  margin-top: clamp(5.1875rem, 10.8333333333vw, 13rem);
  margin-right: clamp(41px, 5.3645833333vw, 103px);
  margin-right: clamp(2.5625rem, 5.3645833333vw, 6.4375rem);
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(36px, 2.5vw, 48px);
  font-size: clamp(2.25rem, 2.5vw, 3rem);
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 2;
  white-space: nowrap;
}

.p-home-fv__image {
  aspect-ratio: 1060/920;
  margin-left: auto;
  width: 55.2083333333%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-home-fv__slider {
  aspect-ratio: 1060/920;
  margin-left: auto;
  width: 55.2083333333%;
  overflow: hidden;
}

.p-home-fv__slider .swiper-slide {
  height: auto;
}

.p-home-fv__slider .swiper-slide img {
  aspect-ratio: 1060/920;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/************************************************************************
* p-home-news
************************************************************************/
.p-home-news {
  margin-top: 320px;
  margin-top: 20rem;
  background-image: url('../img/home-news-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 157px;
  padding: 8.75rem 0 9.8125rem;
}

.p-home-news__inner {
  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-home-news__body {
  width: 69%;
}

.p-home-news__item {
  border-bottom: 1px solid #D8D8D8;
}

.p-home-news__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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-transition: all .3s;
  transition: all .3s;
  padding: 24px 45px 24px 0;
  padding: 1.5rem 2.8125rem 1.5rem 0;
}

.p-home-news__link:hover .p-home-news__date {
  color: #0CF;
}

.p-home-news__link:hover .p-home-news__category {
  border: 1px solid #0CF;
  background-color: #fff;
  color: #0CF;
}

.p-home-news__link:hover .p-home-news__title {
  color: #0CF;
}

.p-home-news__link:hover .p-home-news__arrow {
  background-color: #fff;
}

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

.p-home-news__date {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-home-news__category {
  margin-left: 24px;
  margin-left: 1.5rem;
  border: 1px solid #0CF;
  background-color: #0CF;
  padding: 0 10px;
  padding: 0 .625rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-home-news__title {
  margin-left: 16px;
  margin-left: 1rem;
  width: 65.2173913043%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8125;
  text-align: justify;
}

.p-home-news__arrow {
  position: absolute;
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: auto;
  border: 1px solid #0CF;
  border-radius: 50%;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

.p-home-news__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #0CF;
  width: 10px;
  width: .625rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-home-news__arrow::after {
  position: absolute;
  top: 50%;
  right: 10px;
  right: .625rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-top: 1px solid #0CF;
  border-right: 1px solid #0CF;
  width: 5px;
  width: .3125rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-home-news__wrap {
  margin-top: 52px;
  margin-top: 3.25rem;
  text-align: right;
}

/************************************************************************
* p-home-products
************************************************************************/
.p-home-products {
  margin-top: 106px;
  margin-top: 6.625rem;
}

.p-home-products__bg {
  background-image: url('../img/home-products-bg.webp');
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

.p-home-products__inner {
  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;
  padding-top: 214px;
  padding-top: 13.375rem;
}

.p-home-products__body {
  position: relative;
  margin-top: auto;
  width: 37.5%;
}

.p-home-products__body::before {
  display: block;
  position: absolute;
  top: -262px;
  top: -16.375rem;
  left: 32%;
  background-image: url('../img/line-decoration2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 265px;
  width: 16.5625rem;
  height: 48px;
  height: 3rem;
  content: '';
}

.p-home-products__text {
  margin-top: 68px;
  margin-top: 4.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8125;
  text-align: justify;
}

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

.p-home-products__img {
  width: 52.5%;
}

.p-home-products__img img {
  aspect-ratio: 630/740;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/************************************************************************
* p-home-recruit
************************************************************************/
.p-home-recruit {
  margin-top: 320px;
  margin-top: 20rem;
}

.p-home-recruit .l-wrap {
  position: relative;
}

.p-home-recruit .l-wrap::before {
  display: block;
  position: absolute;
  top: 19px;
  top: 1.1875rem;
  right: 0;
  background-image: url('../img/line-decoration1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 280px;
  width: 17.5rem;
  height: 126px;
  height: 7.875rem;
  content: '';
}

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

.p-home-recruit__body {
  margin-top: auto;
  width: 37.5%;
}

.p-home-recruit__text {
  margin-top: 68px;
  margin-top: 4.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8125;
  text-align: justify;
}

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

.p-home-recruit__img {
  width: 52.5%;
}

.p-home-recruit__img img {
  aspect-ratio: 630/740;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/************************************************************************
* p-business-detail
************************************************************************/
.p-business-detail-fv {
  background-image: url('../img/business-detail-fv.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-business-detail .l-wrap {
  position: relative;
  background-image: url('../img/business-detail-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.page-business-detail .l-wrap::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-62%);
  transform: translateY(-62%);
  z-index: -1;
  background-image: url('../img/underpage-line-decoration1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 262px;
  width: 16.375rem;
  height: 121px;
  height: 7.5625rem;
  content: '';
}

.page-business-detail .l-wrap::after {
  display: block;
  position: absolute;
  top: 23.5%;
  left: 0;
  z-index: -1;
  background-image: url('../img/underpage-line-decoration2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 159px;
  width: 9.9375rem;
  height: 121px;
  height: 7.5625rem;
  content: '';
}

.p-business-detail-contents {
  margin-top: 97px;
  margin-top: 6.0625rem;
}

.p-business-detail-contents h1 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.p-business-detail-contents img {
  aspect-ratio: 300/200;
  width: 100%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-business-detail-contents__body {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  width: 86.4811133201%;
}

.p-business-detail-contents p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

/************************************************************************
* p-business
************************************************************************/
.p-business-fv {
  background-image: url('../img/business-fv.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-business .l-wrap {
  position: relative;
}

.page-business .l-wrap::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-62%);
  transform: translateY(-62%);
  z-index: 1;
  background-image: url('../img/underpage-line-decoration1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 262px;
  width: 16.375rem;
  height: 121px;
  height: 7.5625rem;
  content: '';
}

.page-business .l-wrap::after {
  display: block;
  position: absolute;
  top: 36.5%;
  left: 0;
  z-index: -1;
  background-image: url('../img/underpage-line-decoration2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 159px;
  width: 9.9375rem;
  height: 121px;
  height: 7.5625rem;
  content: '';
}

.p-business-contents {
  margin-top: 97px;
  margin-top: 6.0625rem;
}

.p-business-contents__item {
  gap: 50px;
  gap: 3.125rem;
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #54545A;
  padding: 80px 0;
  padding: 5rem 0;
}

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

.p-business-contents__img {
  aspect-ratio: 545/363;
  width: 45.4166666667%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-business-contents__body {
  width: 43.8596491228%;
}

.p-business-contents__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}

.p-business-contents__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

.p-business-contents__wrap {
  margin-top: 90px;
  margin-top: 5.625rem;
  text-align: right;
}

.p-business-contents__wrap .c-btn {
  max-width: 400px;
  max-width: 25rem;
  font-size: 24px;
  font-size: 1.5rem;
}

/************************************************************************
* p-company
************************************************************************/
.p-company-fv {
  background-image: url('../img/company-fv.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-company-contents {
  position: relative;
  margin-top: 112px;
  margin-top: 7rem;
}

.p-company-contents::before {
  aspect-ratio: 262/121;
  display: block;
  position: absolute;
  top: -40px;
  top: -2.5rem;
  right: 0;
  background-image: url('../img/underpage-line-decoration1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 262px;
  width: 16.375rem;
  height: 121px;
  height: 7.5625rem;
  content: '';
}

.p-company-contents__list-item {
  gap: 32px;
  gap: 2rem;
  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-company-contents__list-item + .p-company-contents__list-item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-company-contents__list-item:last-child {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-company-contents__list-term {
  width: 8.7719298246%;
  color: #838383;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: justify;
}

.p-company-contents__list-desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #838383;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: justify;
}

.p-company-contents__list-desc a {
  color: #838383;
  text-decoration: underline;
}

.p-company-contents__list-desc a:hover, .p-company-contents__list-desc a:focus {
  color: #838383;
  text-decoration: underline;
}

.p-company-contents__map {
  aspect-ratio: 800/600;
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 75%;
  height: auto;
}

.p-company-contents__map iframe {
  width: 100%;
  height: 100%;
}

.p-company-contents__title {
  margin-top: 50px;
  margin-top: 3.125rem;
  color: #838383;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}

.p-company-contents__item {
  color: #838383;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

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

.p-company-contents__text {
  color: #838383;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

.p-company-contact {
  margin-top: 152px;
  margin-top: 9.5rem;
}

/************************************************************************
* p-contact
************************************************************************/
.p-contact-fv {
  background-image: url('../img/contact-fv.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-contact-contents {
  margin-top: 97px;
  margin-top: 6.0625rem;
}

.p-contact-contents__title {
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 700;
  text-align: center;
}

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

.p-contact-contact {
  margin-top: 152px;
  margin-top: 9.5rem;
}

/************************************************************************
* p-news-detail
************************************************************************/
.p-news-detail-fv {
  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;
  background-image: url('../img/news-detail-title-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 293px;
  height: 18.3125rem;
}

.p-news-detail-fv__inner {
  margin: 0 auto;
  padding: 0 142px;
  padding: 0 8.875rem;
  width: 100%;
  max-width: 1440px;
  max-width: 90rem;
}

.p-news-detail-fv__title {
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 700;
}

.p-news-detail-contents {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-news-detail-contents__wrap {
  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-news-detail-contents__body {
  width: 61.4035087719%;
}

.p-news-detail-contents__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875;
  text-align: justify;
}

.p-news-detail-contents__text + .p-news-detail-contents__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-news-detail-contents__img {
  aspect-ratio: 300/200;
  width: 26.3157894737%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-news-detail-contents__bottom {
  margin-top: 70px;
  margin-top: 4.375rem;
  text-align: center;
}

.p-news-detail-contents__bottom-nav {
  gap: 188px;
  gap: 11.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-news-detail-contents__bottom-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: 3.125rem;
  background-color: #0CF;
  padding: 18px 40px;
  padding: 1.125rem 2.5rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.p-news-detail-contents__bottom-link:hover {
  opacity: .8;
}

.p-news-detail-contents__bottom-nav-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: 50%;
  background-color: #EFEFEF;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  text-decoration: none;
}

.p-news-detail-contents__bottom-nav-btn:hover {
  opacity: .7;
}

.p-news-detail-contents__bottom-nav-icon {
  color: #838383;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.p-news-detail-contact {
  margin-top: 152px;
  margin-top: 9.5rem;
}

/************************************************************************
* p-news
************************************************************************/
.p-news-fv {
  background-image: url('../img/news-fv.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-news-contents__list {
  position: relative;
}

.p-news-contents__list::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  z-index: -1;
  background-image: url('../img/underpage-line-decoration1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 262px;
  width: 16.375rem;
  height: 121px;
  height: 7.5625rem;
  content: '';
}

.p-news-contents__list::after {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
  z-index: -1;
  background-image: url('../img/underpage-line-decoration2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 159px;
  width: 9.9375rem;
  height: 121px;
  height: 7.5625rem;
  content: '';
}

.p-news-contents {
  margin-top: 170px;
  margin-top: 10.625rem;
}

.p-news-contents__item {
  border-bottom: 1px solid #54545A;
}

.p-news-contents__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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-transition: all .3s;
  transition: all .3s;
  padding: 35px 45px 35px 0;
  padding: 2.1875rem 2.8125rem 2.1875rem 0;
}

.p-news-contents__link:hover .p-news-contents__date {
  color: #0CF;
}

.p-news-contents__link:hover .p-news-contents__category {
  border: 1px solid #0CF;
  background-color: #fff;
  color: #0CF;
}

.p-news-contents__link:hover .p-news-contents__title {
  color: #0CF;
}

.p-news-contents__link:hover .p-news-contents__arrow {
  background-color: #fff;
}

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

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

.p-news-contents__category {
  margin-left: 20px;
  margin-left: 1.25rem;
  border: 1px solid #0CF;
  background-color: #0CF;
  padding: 2px 10px;
  padding: .125rem .625rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}

.p-news-contents__title {
  margin-left: 20px;
  margin-left: 1.25rem;
  width: 65.2173913043%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: justify;
}

.p-news-contents__arrow {
  position: absolute;
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: auto;
  border: 1px solid #0CF;
  border-radius: 50%;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

.p-news-contents__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #0CF;
  width: 10px;
  width: .625rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-news-contents__arrow::after {
  position: absolute;
  top: 50%;
  right: 10px;
  right: .625rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-top: 1px solid #0CF;
  border-right: 1px solid #0CF;
  width: 5px;
  width: .3125rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-news-pagination {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.p-news-contact {
  margin-top: 152px;
  margin-top: 9.5rem;
}

/************************************************************************
* p-product-detail
************************************************************************/
.p-product-detail-fv {
  background-image: url('../img/product-detail-fv.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-product-detail .l-wrap {
  position: relative;
}

.page-product-detail .l-wrap::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-62%);
  transform: translateY(-62%);
  z-index: -1;
  background-image: url('../img/underpage-line-decoration1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 262px;
  width: 16.375rem;
  height: 121px;
  height: 7.5625rem;
  content: '';
}

.p-product-detail-contents {
  margin-top: 97px;
  margin-top: 6.0625rem;
}

.p-product-detail-contents h1 {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #54545A;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  width: 100%;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.p-product-detail-contents h1 br {
  display: none;
}

.p-product-detail-contents h1 > span {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
  max-width: none;
  word-break: keep-all;
}

.p-product-detail-contents h1 .p-product-detail-contents__category,
.p-product-detail-contents h1 .p-product-detail-contents__product-name {
  display: block;
}

.p-product-detail-contents__wrap {
  gap: 80px;
  gap: 5rem;
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-product-detail-contents img {
  width: 42.1052631579%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-product-detail-contents__body {
  width: 64.0350877193%;
}

.p-product-detail-contents p {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-product-detail-contents__text + .p-product-detail-contents__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.product-spec-table table {
  table-layout: fixed;
}

.product-spec-table td:nth-child(1),
.product-spec-table th:nth-child(1) {
  width: 30%;
}

.product-spec-table td:nth-child(2),
.product-spec-table th:nth-child(2) {
  width: 10%;
}

.product-spec-table td:nth-child(3),
.product-spec-table th:nth-child(3) {
  width: 15%;
}

.product-spec-table td:nth-child(4),
.product-spec-table th:nth-child(4) {
  width: 10%;
}

.product-spec-table td:nth-child(5),
.product-spec-table th:nth-child(5) {
  width: 35%;
}

.product-spec-table-2col table {
  table-layout: fixed;
}

.product-spec-table-2col td:nth-child(1),
.product-spec-table-2col th:nth-child(1) {
  width: 35%;
}

.product-spec-table-2col td:nth-child(2),
.product-spec-table-2col th:nth-child(2) {
  width: 65%;
}

/************************************************************************
* p-product
************************************************************************/
.p-product-fv {
  background-image: url('../img/product-fv.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-product-contents {
  margin-top: 97px;
  margin-top: 6.0625rem;
}

.p-product-contents__list {
  row-gap: 64px;
  row-gap: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.p-product-contents__link {
  display: block;
}

.p-product-contents__img {
  aspect-ratio: 190/234;
  width: 100%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-product-contents__body {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-product-contents__category {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}

.p-product-contents__product-name {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

.p-product-contact {
  margin-top: 152px;
  margin-top: 9.5rem;
}

/************************************************************************
* p-recruit
************************************************************************/
.p-recruit-contents {
  margin-top: 97px;
  margin-top: 6.0625rem;
}

.p-recruit-contact {
  margin-top: 152px;
  margin-top: 9.5rem;
}

/************************************************************************
* p-contact
************************************************************************/
.p-thanks-fv {
  background-image: url('../img/contact-fv.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-thanks-contents {
  margin-top: 97px;
  margin-top: 6.0625rem;
}

.p-thanks-contents__title {
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 700;
  text-align: center;
}

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

.p-thanks-contents__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}

.p-thanks-contents__button {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-md-none {
  display: block;
}

.u-md-show {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

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

.u-overflowHidden {
  overflow: hidden !important;
}

.u-skip-link {
  position: absolute;
  top: -60px;
  top: -3.75rem;
  left: 0;
  z-index: 10000;
  -webkit-transition: top .3s ease;
  transition: top .3s ease;
  background-color: #0CF;
  padding: 15px 30px;
  padding: .9375rem 1.875rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  text-decoration: none;
}

.u-skip-link:focus {
  top: 0;
}

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

  html {
    font-size: 1.3333333333vw;
  }

  :root {
    --header-height: 120px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .c-header__nav {
    display: block;
    margin: 0 auto;
  }

  .c-header__drawer {
    display: none;
  }

  .u-skip-link {
    padding: 10px 20px;
    padding: .625rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }
}

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

  .u-onlyTab {
    display: block;
  }
}

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

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

@media (min-width: 1200px) {

  html {
    font-size: 16px;
  }
}

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

  .p-home-fv__title::after {
    bottom: min(-274px, -14.2634044768vw);
    bottom: min(-17.125rem, -14.2634044768vw);
    left: min(-111px, -5.7782404997vw);
    left: min(-6.9375rem, -5.7782404997vw);
    width: max(280px, 14.5757418011vw);
    width: max(17.5rem, 14.5757418011vw);
  }

  .p-home-fv__title {
    font-size: max(48px, 2.4986985945vw);
    font-size: max(3rem, 2.4986985945vw);
  }
}

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

  .u-onlyPc {
    display: block;
  }

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

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

  .c-form .c-form__group > p {
    -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;
  }

  .c-form .wpcf7-form-control-wrap {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    margin-top: 16px;
    margin-top: 1rem;
    margin-left: 0;
    width: 100%;
  }

  .c-form .c-form__group > p:has(.wpcf7-acceptance) .wpcf7-form-control-wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
    width: auto;
  }

  .c-form .wpcf7-form-control {
    border: 1px solid #54545A;
    border: .0625rem solid #54545A;
    border-radius: .25rem;
    padding: 11px 7px;
    padding: .6875rem .4375rem;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-form .wpcf7-form-control.wpcf7-acceptance,
  .c-form .wpcf7-acceptance {
    border: none;
  }

  .c-form .wpcf7-form-control.wpcf7-textarea {
    border: 1px solid #54545A;
    border: .0625rem solid #54545A;
    border-radius: .25rem;
    padding: 16px 7px;
    padding: 1rem .4375rem;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-form .c-form__group > p > label {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding-right: 0;
    width: 100%;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .c-form .c-form__group > p:has(.wpcf7-acceptance) > label {
    width: 300px;
  }

  .c-form .c-form__button-wrap .wpcf7-submit {
    border-radius: 2.1875rem;
    padding: 10px 110px;
    padding: .625rem 6.875rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .l-container {
    padding: 0 20px;
    width: 100%;
  }

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

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

  .l-content {
    max-width: 1200px;
  }

  .l-wrap {
    max-width: 1200px;
  }

  .c-breadcrumb {
    margin: 30px auto 0;
    margin: 1.875rem auto 0;
    padding: 0 20px;
  }

  .c-btn {
    font-size: 16px;
    font-size: 1rem;
  }

  .c-contact-banner {
    top: auto;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 3px 0 6px rgba(0, 0, 0, .16);
    box-shadow: 3px 0 6px rgba(0, 0, 0, .16);
    width: 100%;
    height: 80px;
    height: 5rem;
    font-size: 20px;
    font-size: 1.25rem;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }

  .c-contact {
    margin-top: 80px;
    margin-top: 5rem;
    padding: 80px 0;
    padding: 5rem 0;
  }

  .c-contact__content {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-contact__box {
    padding: 48px 20px;
    padding: 3rem 1.25rem;
    width: 100%;
  }

  .c-contact__type {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-contact__tel {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-footer__top {
    padding: 80px 0;
    padding: 5rem 0;
  }

  .c-footer__top-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-footer__top-wrap {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .c-footer__top-nav-list {
    row-gap: 40px;
    row-gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem;
  }

  .c-footer__top-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-footer__bottom {
    padding: 35px 0 115px;
    padding: 2.1875rem 0 7.1875rem;
  }

  .c-footer__bottom-copy {
    font-size: 12px;
    font-size: .75rem;
  }

  .c-form__group {
    -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;
  }

  .c-form__group + .c-form__group {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .c-form__label {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding-right: 0;
    width: 100%;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .c-form__checkbox-wrap {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .c-form__input {
    margin-top: 16px;
    margin-top: 1rem;
    margin-left: 0;
    border: 1px solid #54545A;
    border: .0625rem solid #54545A;
    border-radius: .25rem;
    padding: 11px 7px;
    padding: .6875rem .4375rem;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-form__textarea {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    margin-top: 16px;
    margin-top: 1rem;
    margin-left: 0;
    border: 1px solid #54545A;
    border: .0625rem solid #54545A;
    border-radius: .25rem;
    padding: 16px 7px;
    padding: 1rem .4375rem;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-form__checkbox-wrap {
    gap: 16px;
    gap: 1rem;
  }

  .c-form__radio-wrap {
    gap: 16px;
    gap: 1rem;
    margin-top: 16px;
    margin-top: 1rem;
  }

  .c-form__button-wrap {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .c-form__button-link {
    border-radius: 2.1875rem;
    padding: 10px 110px;
    padding: .625rem 6.875rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-form__end-message,
  .c-form__false-message {
    font-size: 14px;
    font-size: .875rem;
  }

  .c-header {
    height: 80px;
  }

  .c-header__logo {
    left: 20px;
    left: 1.25rem;
  }

  .c-pagination {
    margin: 30px auto 0;
    margin: 1.875rem auto 0;
    padding: 0 20px;
  }

  .c-title__en {
    font-size: 48px;
    font-size: 3rem;
  }

  .c-title__ja {
    padding-left: 32px;
    padding-left: 2rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-title__ja::after {
    width: 20px;
    width: 1.25rem;
    height: 12px;
    height: .75rem;
  }

  .c-totop {
    right: 20px;
    right: 1.25rem;
    bottom: 15px;
    bottom: .9375rem;
    background-color: #fff;
    width: 50px;
    width: 3.125rem;
    height: 50px;
    height: 3.125rem;
  }

  .c-totop::before {
    border-top: 3px solid #0CF;
    border-right: 3px solid #0CF;
  }

  .c-under-page-fv {
    height: 300px;
    height: 18.75rem;
  }

  .c-under-page-fv__inner {
    padding: 50px 20px;
    padding: 3.125rem 20px;
  }

  .c-under-page-fv__title-ja {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-under-page-fv__text {
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-home-business__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 80px;
    padding-top: 5rem;
  }

  .p-home-business__img {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

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

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

  .p-home-business__list {
    gap: 60px;
    gap: 3.75rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-home-business__item-title {
    font-size: 20px;
    font-size: 1.25rem;
  }

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

  .p-home-company .l-wrap::before {
    top: -29px;
    top: -1.8125rem;
    left: 0;
    width: 200px;
    width: 12.5rem;
    height: 88px;
    height: 5.5rem;
  }

  .p-home-company__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-home-company__body {
    padding-top: 80px;
    padding-top: 5rem;
    width: 100%;
  }

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

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

  .p-home-company__wrap {
    text-align: center;
  }

  .p-home-company__img {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .p-home-fv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-home-fv__body {
    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;
    padding: 0 20px;
    width: 100%;
  }

  .p-home-fv__title::after {
    display: none;
  }

  .p-home-fv__title {
    position: static;
    margin: 0;
    padding: 0 20px 0 0;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-home-fv__icon {
    width: 80px;
    width: 5rem;
  }

  .p-home-fv__image {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .p-home-fv__slider {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .p-home-news {
    margin-top: 80px;
    margin-top: 5rem;
    padding: 80px 0;
    padding: 5rem 0;
  }

  .p-home-news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-home-news__body {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .p-home-news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-home-news__link {
    padding: 20px 45px 20px 0;
    padding: 1.25rem 2.8125rem 1.25rem 0;
  }

  .p-home-news__title {
    margin-top: 12px;
    margin-top: .75rem;
    margin-left: 0;
    width: 100%;
  }

  .p-home-news__wrap {
    text-align: center;
  }

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

  .p-home-products__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 80px;
    padding-top: 5rem;
  }

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

  .p-home-products__body::before {
    top: -68px;
    top: -4.25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 185px;
    width: 11.5625rem;
    height: 33px;
    height: 2.0625rem;
  }

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

  .p-home-products__wrap {
    text-align: center;
  }

  .p-home-products__img {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

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

  .p-home-recruit .l-wrap::before {
    top: -29px;
    top: -1.8125rem;
    right: 0;
    width: 200px;
    width: 12.5rem;
    height: 88px;
    height: 5.5rem;
  }

  .p-home-recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-home-recruit__body {
    padding-top: 80px;
    padding-top: 5rem;
    width: 100%;
  }

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

  .p-home-recruit__wrap {
    text-align: center;
  }

  .p-home-recruit__img {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .page-business-detail .l-wrap::before {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 157px;
    width: 9.8125rem;
    height: 72px;
    height: 4.5rem;
  }

  .page-business-detail .l-wrap::after {
    display: none;
  }

  .p-business-detail-contents {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-business-detail-contents h1 {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-business-detail-contents p {
    font-size: 16px;
    font-size: 1rem;
  }

  .page-business .l-wrap::before {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    width: 157px;
    width: 9.8125rem;
    height: 72px;
    height: 4.5rem;
  }

  .page-business .l-wrap::after {
    display: none;
  }

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

  .p-business-contents__item {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 50px 0;
    padding: 3.125rem 0;
  }

  .p-business-contents__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-business-contents__img {
    width: 100%;
  }

  .p-business-contents__body {
    width: 100%;
  }

  .p-business-contents__title {
    font-size: 32px;
    font-size: 2rem;
    text-align: center;
  }

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

  .p-business-contents__wrap {
    margin-top: 50px;
    margin-top: 3.125rem;
    text-align: center;
  }

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

  .p-company-contents::before {
    top: -65px;
    top: -4.0625rem;
    width: 167px;
    width: 10.4375rem;
    height: 77px;
    height: 4.8125rem;
  }

  .p-company-contents__list-item {
    gap: 10px;
    gap: .625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-company-contents__list-term {
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-company-contents__list-desc {
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-company-contents__map {
    width: 100%;
  }

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

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

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

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

  .p-contact-contents__title {
    font-size: 32px;
    font-size: 2rem;
  }

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

  .p-news-detail-fv {
    height: 200px;
    height: 12.5rem;
  }

  .p-news-detail-fv__inner {
    padding: 0 20px;
  }

  .p-news-detail-fv__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-news-detail-contents {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-news-detail-contents__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-news-detail-contents__body {
    width: 100%;
  }

  .p-news-detail-contents__text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-news-detail-contents__img {
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 100%;
  }

  .p-news-detail-contents__bottom {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-news-detail-contents__bottom-nav {
    gap: 15px;
    gap: .9375rem;
  }

  .p-news-detail-contents__bottom-link {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-news-detail-contents__bottom-nav-btn {
    width: 50px;
    width: 3.125rem;
    height: 50px;
    height: 3.125rem;
  }

  .p-news-detail-contents__bottom-nav-icon {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-news-contents__list::before {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 157px;
    width: 9.8125rem;
    height: 72px;
    height: 4.5rem;
  }

  .p-news-contents__list::after {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    width: 96px;
    width: 6rem;
    height: 72px;
    height: 4.5rem;
  }

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

  .p-news-contents__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 45px 20px 0;
    padding: 1.25rem 2.8125rem 1.25rem 0;
  }

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

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

  .p-news-contents__title {
    margin-top: 12px;
    margin-top: .75rem;
    margin-left: 0;
    width: 100%;
  }

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

  .page-product-detail .l-wrap::before {
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    width: 157px;
    width: 9.8125rem;
    height: 72px;
    height: 4.5rem;
  }

  .p-product-detail-contents {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-product-detail-contents h1 {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-product-detail-contents__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-product-detail-contents img {
    width: 100%;
  }

  .p-product-detail-contents__body {
    width: 100%;
  }

  .p-product-detail-contents p {
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-product-contents__list {
    row-gap: 30px;
    row-gap: 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

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

  .p-product-contents__product-name {
    font-size: 14px;
    font-size: .875rem;
  }

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

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

  .p-thanks-contents__title {
    font-size: 32px;
    font-size: 2rem;
  }

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

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

  .u-onlySp {
    display: block;
  }

  .u-md-none {
    display: none;
  }

  .u-md-show {
    display: block;
  }

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

@media (max-width: 700px) {

  .c-table-scroll__message {
    display: block;
  }
}

@media (max-width: 600px) {

  .c-spec-grid {
    grid-template-columns: 1fr;
  }

  .c-spec-grid > *:nth-child(odd) {
    margin-top: .8em;
    font-weight: 600;
  }
}

@media (max-width: 375px) {

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