@charset "UTF-8";



:root {
  --color-black: #000;
  --color-white: #fff;
  --color-red: #f00;
  --color-gray: #cecbcb;
  --color-light-gray: #f8f8f8;
  --color-moderate: #e7e0db;
  --color-alert: var(--color-red);
  --color-disable: #bebebe;
  --color-main: #000;
  --color-secondary: #fff;
  --color-bg: var(--color-gray);
  --color-text: var(--color-black);
  --color-subText: var(--color-black);
  --opacity: .7;
  --color-table: #eee;
}

/************************************************************************
* 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: var(--color-bg);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: var(--color-text);
  font-family: 'BIZ UDPGothic', 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: var(--opacity);
}

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: var(--color-light-gray);
  padding: .25em .5em;
}

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

pre {
  display: block;
  background-color: var(--color-light-gray);
  padding: 1em 2em;
}

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

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

var {
  background-color: var(--color-light-gray);
  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: 100%;
}

button {
  color: var(--color-text);
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  min-height: 100vh;
  min-height: 100dvh;
}

body.is-loaded {
  opacity: 1;
}

body.fadeOut {
  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: var(--color-text);
  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: var(--color-disable);
  pointer-events: none;
  color: var(--color-white);
}

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

label {
  cursor: pointer;
}

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

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-main);
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: var(--color-main);
  font-weight: 700;
}

#toc_container .toc_list li {
  color: var(--color-text);
}

#toc_container .toc_list li::before {
  display: none;
  color: var(--color-main);
}

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

#toc_container .toc_list a {
  color: var(--color-text);
}

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

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

.l-content {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.l-footer {
  padding: 60px 0 40px;
  padding: 3.75rem 0 2.5rem;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

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

.l-page-section--lead {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.l-section {
  padding: 60px 0;
  padding: 3.75rem 0;
}

.l-top-contact {
  padding: 60px 0 20px;
  padding: 3.75rem 0 1.25rem;
}

.l-top-cta {
  padding: 60px 0 40px;
  padding: 3.75rem 0 2.5rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  -webkit-box-shadow: 0 .625rem .375rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .625rem .375rem 0 rgba(0, 0, 0, .25);
  border: 1px solid var(--color-main);
  border-radius: 10px;
  background-color: var(--color-white);
  background-image: none;
  padding: .5em 1.5em;
  color: var(--color-main);
  font: inherit;
  font-family: 'Kiwi Maru', serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: var(--color-main);
  color: var(--color-white);
}

.c-hover-card {
  position: relative;
}

.c-hover-card__image {
  aspect-ratio: 640/387;
  overflow: hidden;
}

.c-hover-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-hover-card__title {
  position: relative;
  margin-top: 15px;
  margin-top: .9375rem;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3333333333;
  text-align: center;
}

.c-hover-card__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-bottom: 1px dotted var(--color-black);
  width: 95%;
  height: 1px;
  content: '';
}

.c-hover-card__overlay {
  position: absolute;
  right: 10px;
  right: .625rem;
  bottom: 80px;
  bottom: 5rem;
  -webkit-box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  border-radius: .375rem;
  background: rgba(255, 255, 255, .8);
  padding: 10px;
  padding: .625rem;
  width: 59.375%;
}

.c-hover-card__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}

.c-moreBtn {
  gap: 15px;
  gap: .9375rem;
  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;
  color: var(--color-black);
}

.c-moreBtn--white {
  color: var(--color-white);
}

.c-moreBtn__arrow {
  position: relative;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  background-color: currentColor;
  width: 210px;
  width: 13.125rem;
  height: 1px;
  height: .0625rem;
}

.c-moreBtn__arrow::before {
  position: absolute;
  top: calc(50% - .03125rem);
  right: 0;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transform-origin: calc(100% - .5px) 50%;
  transform-origin: calc(100% - .5px) 50%;
  background-color: currentColor;
  width: 40px;
  width: 2.5rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.c-moreBtn__text {
  font-family: 'Battambang', system-ui, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.c-moreBtn--small .c-moreBtn__arrow {
  width: 120px;
  width: 7.5rem;
}

.c-moreBtn--small .c-moreBtn__arrow::before {
  width: 20px;
  width: 1.25rem;
}

.c-product-card {
  position: relative;
}

.c-product-card__image {
  aspect-ratio: 400/347;
  overflow: hidden;
}

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

.c-product-card__title {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: right;
}

.c-product-card__note {
  font-size: 12px;
  font-size: .75rem;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: var(--color-secondary);
  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 var(--color-white);
  border-right: 3px solid var(--color-white);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: var(--opacity);
}

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

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid var(--color-moderate);
  border-bottom: 1px solid var(--color-moderate);
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-article__body h2 {
  background-color: var(--color-black);
  padding: .3em .4em;
  color: var(--color-white);
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid var(--color-black);
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

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

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

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--color-black);
  content: 'ー';
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid var(--color-black);
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body * + * {
  margin-top: 25px;
}

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

.p-article__body .wp-block-spacer, .p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: var(--color-main);
  font-weight: 700;
}

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

.p-article__body a:not([class]) {
  color: var(--color-main);
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: var(--color-subText);
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: var(--color-light-gray);
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: var(--color-gray);
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid var(--color-moderate);
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid var(--color-moderate);
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

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

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

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

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid var(--color-main);
  width: 2em;
  height: 2em;
  color: var(--color-main);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

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

.post-page-numbers.current {
  background-color: var(--color-main);
  color: var(--color-white);
}

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

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

.p-drawer__icon {
  display: inline-block;
  position: fixed;
  top: 20px;
  top: 1.25rem;
  right: 20px;
  right: 1.25rem;
  z-index: 41;
  cursor: pointer;
  -webkit-box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  border-radius: .625rem;
  background: var(--color-gray);
  padding: 15px 10px;
  padding: .9375rem .625rem;
  line-height: 1;
  text-align: center;
}

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

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

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 10px;
  margin-top: .625rem;
  background: var(--color-text);
  width: 100%;
  height: 1px;
  height: .0625rem;
}

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

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

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

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

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

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

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 20px;
  top: 1.25rem;
  right: 80px;
  right: 5rem;
  bottom: auto;
  left: auto;
  visibility: hidden;
  opacity: 0;
  z-index: 40;
  -webkit-transition: opacity .5s ease 0s, visibility .5s ease 0s;
  transition: opacity .5s ease 0s, visibility .5s ease 0s;
  -webkit-box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  border-radius: .625rem;
  background: var(--color-gray);
  padding: 15px 10px;
  padding: .9375rem .625rem;
  max-height: 100dvh;
  overflow: auto;
  color: var(--color-text);
  text-align: center;
}

.p-drawer__content.is-opened {
  visibility: visible;
  opacity: 1;
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__inner {
  width: 100%;
}

.p-drawer__navList {
  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-drawer__navLink {
  display: block;
  position: relative;
  padding: 8px 20px;
  padding: .5rem 1.25rem;
  color: var(--color-text);
  letter-spacing: .05em;
  line-height: 1.5;
  text-decoration: none;
}

.p-drawer__navEn {
  display: block;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  color: var(--color-text);
  font-family: 'Battambang', system-ui, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.p-drawer__navJa {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  width: 100%;
  color: #003977;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.5;
  text-decoration: underline;
}

.p-footer {
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(22.6%, #1F1F1F), color-stop(47.6%, #414141), color-stop(77.88%, #989696), to(#CECBCB));
  background: linear-gradient(0deg, #000 0%, #1F1F1F 22.6%, #414141 47.6%, #989696 77.88%, #CECBCB 100%);
  width: 100%;
}

.p-footer__nav {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

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

.p-footer__navTitle {
  border-bottom: 1px solid var(--color-white);
  padding: 0 5px 8px;
  padding: 0 .3125rem .5rem;
  color: var(--color-white);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-footer__navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-footer__navListItem {
  list-style: none;
}

.p-footer__navLink {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  padding: 4px 0;
  padding: .25rem 0;
  color: var(--color-white);
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-decoration: none;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-header {
  position: relative;
  background-color: transparent;
  padding: 20px 0;
  width: 100%;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.p-header__logo {
  aspect-ratio: 568/149;
  position: relative;
  z-index: 41;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 180px;
  width: 11.25rem;
  overflow: hidden;
}

.p-header__logo a {
  display: block;
}

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

.p-header__drawer {
  position: relative;
  z-index: 41;
}

.p-loading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 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: visible;
  opacity: 1;
  z-index: 9999;
  -webkit-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
  background-color: #fff;
  width: 100%;
  height: 100vh;
}

.p-loading__logo {
  width: 202px;
  width: 12.625rem;
}

.p-loading__logo img {
  display: block;
  width: 100%;
  height: auto;
}

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

.p-page-access__map iframe {
  aspect-ratio: 1024/523;
  width: 100%;
  max-width: 1024px;
  max-width: 64rem;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-page-access__info {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-slider__slider {
  margin-top: 40px;
  margin-top: 2.5rem;
  background: #282828;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-slider__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.p-slider__swiper:not(:first-child) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-slider__item {
  cursor: pointer;
}

.p-slider__item-image {
  aspect-ratio: 280/177;
  overflow: hidden;
}

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

.p-slider__slide-title {
  color: var(--color-white);
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7142857143;
  text-align: center;
}

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

.p-slider__detail {
  display: none;
}

.p-slider__detail.is-active {
  display: block;
}

.p-slider__detail-image {
  aspect-ratio: 1280/960;
  overflow: hidden;
}

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

.p-slider__detail-body {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-slider__detail-title {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 15px 20px;
  padding: .9375rem 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.3333333333;
  text-align: center;
}

.p-slider__detail-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color-black)), color-stop(.25rem, var(--color-black)), color-stop(.25rem, transparent), color-stop(.125rem, transparent));
  background-image: linear-gradient(to right, var(--color-black), var(--color-black) .25rem, transparent .25rem, transparent .125rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: .5625rem .1875rem;
  width: 100%;
  height: 3px;
  content: '';
}

.p-slider__detail-text-block {
  opacity: .8;
  margin-top: 20px;
  margin-top: 1.25rem;
  background-color: #d9d9d9;
  padding: 20px;
  padding: 1.25rem;
  width: 100%;
  height: auto;
}

.p-slider__detail-text {
  -webkit-transition: co .3s ease;
  transition: co .3s ease;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.2;
}

.p-page-coating__content {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-page-coating__text-block {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 264px;
  -webkit-flex: 0 0 16.5rem;
  -ms-flex: 0 0 264px;
  -ms-flex: 0 0 16.5rem;
  flex: 0 0 264px;
  flex: 0 0 16.5rem;
}

.p-page-coating__text {
  position: relative;
  padding-top: 20px;
  padding-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

.p-page-coating__text::before {
  position: absolute;
  top: -16px;
  top: -1rem;
  left: 0;
  background-image: linear-gradient(to right, var(--color-black), var(--color-black) 4px, transparent 4px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8px 3px;
  width: 100%;
  height: 3px;
  content: '';
}

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

.p-page-coating__items {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 24px;
  margin-top: 1.5rem;
  border-top: 1px dotted var(--color-black);
  padding-top: 20px;
  padding-top: 1.25rem;
}

.p-page-coating__image {
  aspect-ratio: 960/640;
  position: relative;
  overflow: hidden;
}

.p-page-coating__image::after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background-color: rgba(255, 255, 255, .3);
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: '';
}

.p-page-coating__image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-page-company__list {
  width: 100%;
}

.p-page-company__row {
  gap: 5px;
  gap: .3125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 7px;
  margin-top: .4375rem;
}

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

.p-page-company__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .2509803922);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .2509803922);
  background-color: #132831;
  padding: 14px 20px;
  padding: .875rem 1.25rem;
  color: var(--color-white);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.125;
  text-align: center;
}

.p-page-company__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .2509803922);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .2509803922);
  background-color: rgba(217, 217, 217, .65);
  padding: 14px 12px;
  padding: .875rem .75rem;
  color: var(--color-black);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.125;
  text-align: center;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.p-page-company__data--left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.p-page-company__data--small {
  font-size: 14px;
  font-size: .875rem;
}

.p-page-company__data-address {
  font-size: 14px;
  font-size: .875rem;
}

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

.p-page-company__image img {
  width: 100%;
  height: auto;
}

.p-page-factory__items {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-page-factory__content {
  position: relative;
  margin-top: 30px;
  margin-top: 1.875rem;
}

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

.p-page-factory__image {
  aspect-ratio: 640/387;
  width: 100%;
  overflow: hidden;
}

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

.p-page-factory__title {
  position: relative;
  margin-top: 15px;
  margin-top: .9375rem;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3333333333;
  text-align: center;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.p-page-factory__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-bottom: 1px dotted var(--color-black);
  width: 95%;
  height: 1px;
  content: '';
}

.p-page-factory__overlay {
  position: absolute;
  right: 10px;
  right: .625rem;
  bottom: 100px;
  bottom: 6.25rem;
  -webkit-box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  border-radius: .375rem;
  background: rgba(255, 255, 255, .8);
  padding: 10px;
  padding: .625rem;
  width: 59.375%;
}

.p-page-factory__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}

.p-page-form__content {
  margin-top: 50px;
  margin-top: 3.125rem;
  max-width: 920px;
  max-width: 57.5rem;
}

.p-page-form__form {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-page-form__item {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-page-form__item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .2509803922);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .2509803922);
  border: none;
  background: #132831;
  padding: 14px 15px;
  padding: .875rem .9375rem;
  color: var(--color-white);
}

.p-page-form__label-text--small {
  font-size: 13px;
  font-size: .8125rem;
}

.p-page-form__required {
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 1rem;
  background: var(--color-white);
  padding: 1px 4px;
  padding: .0625rem .25rem;
  color: #00449D;
  font-size: 12px;
  font-size: .75rem;
}

.p-page-form__input,
.p-page-form__textarea {
  display: block;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .2509803922) inset;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, .2509803922) inset;
  border: none;
  background: rgba(217, 217, 217, .65);
  padding: 14px 15px;
  padding: .875rem .9375rem;
  width: 100%;
}

.p-page-form__file-input {
  display: none;
}

.p-page-form__file-item {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-page-form__file-item + .p-page-form__file-item {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-page-form__file-label {
  cursor: pointer;
}

.p-page-form__file-button {
  display: inline-block;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  background: #9E9E9E;
  padding: 14px 22px;
  padding: .875rem 1.375rem;
  line-height: 1;
  text-align: center;
}

.p-page-form__file-name {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 14px;
  font-size: .875rem;
}

.p-page-form__file-note {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 12px;
  font-size: .75rem;
}

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

.p-page-form__submit-button {
  display: inline-block;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  background: #132831;
  padding: 14px 22px;
  padding: .875rem 1.375rem;
  color: var(--color-white);
  line-height: 1;
  text-align: center;
}

.p-page-fv {
  background-image: url(../img/page/facility-fv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 200px;
  height: 12.5rem;
}

.p-page-fv--works {
  background-image: url(../img/page/works-fv.webp);
}

.p-page-fv--baked {
  background-image: url(../img/page/baked-fv.webp);
}

.p-page-fv--powder {
  background-image: url(../img/page/powder-fv.webp);
}

.p-page-fv--airdry {
  background-image: url(../img/page/airdry-fv.webp);
}

.p-page-fv--about {
  background-image: url(../img/page/about-fv.webp);
}

.p-page-fv--contact {
  background-image: url(../img/page/contact-fv.webp);
}

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

.p-about-history__list {
  position: relative;
}

.p-about-history__item {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-about-history__item:last-child {
  border-bottom: none;
}

.p-about-history__item + .p-about-history__item {
  margin-top: 1lh;
}

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

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

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

.p-page-lead__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
}

.p-page-lead__text {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
  word-break: auto-phrase;
}

.p-page-lead__text--mt {
  margin-top: 1lh;
}

.p-page-lead__title + .p-page-lead__text {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-page-member__lead {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-page-member__content {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-page-member__items {
  gap: 80px 20px;
  gap: 5rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-page-member__items + .p-page-member__items {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-page-member__item {
  position: relative;
}

.p-page-member__bubble {
  display: inline-block;
  position: absolute;
  bottom: 115%;
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out, transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  border: 2px solid var(--color-black);
  border-radius: .625rem;
  background-color: var(--color-white);
  padding: 10px;
  padding: .625rem;
  width: 300px;
  width: 18.75rem;
}

.p-page-member__item.is-active .p-page-member__bubble {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
}

.p-page-member__text {
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}

.p-page-member__bubble::before {
  translate: -50% 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-width: 20px 10px 0 10px;
  border-width: 1.25rem .625rem 0 .625rem;
  border-style: solid;
  border-color: var(--color-black) transparent transparent;
  content: '';
}

.p-page-member__bubble::after {
  translate: -50% 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-width: 15.5px 7.8px 0 7.8px;
  border-width: .96875rem .4875rem 0 .4875rem;
  border-style: solid;
  border-color: var(--color-white) transparent transparent;
  content: '';
}

.p-page-member__card {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--color-black);
  border-radius: .625rem;
  background: var(--color-white);
  padding-top: 5px;
  padding-top: .3125rem;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
  width: 100%;
  max-width: 150px;
  max-width: 9.375rem;
  text-align: center;
}

.p-page-member__image {
  margin-inline: auto;
  aspect-ratio: 122/134;
  width: 100%;
  max-width: 122px;
  max-width: 7.625rem;
  overflow: hidden;
}

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

.p-page-member__name {
  font-size: 12px;
  font-size: .75rem;
}

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

.p-page-privacy__summary {
  position: relative;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  background-color: #132831;
  padding: 20px;
  padding: 1.25rem;
}

.p-page-privacy__summary-text {
  color: var(--color-white);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6666666667;
}

.p-page-privacy__body {
  background-color: #d9d9d9;
  padding: 20px;
  padding: 1.25rem;
  overflow: hidden;
}

.p-page-privacy__section + .p-page-privacy__section {
  margin-top: 1.5lh;
}

.p-page-privacy__heading {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-page-privacy__heading + .p-page-privacy__text {
  margin-top: .5lh;
}

.p-page-privacy__subheading {
  margin-top: .5lh;
  font-size: 14px;
  font-size: .875rem;
}

.p-page-privacy__text,
.p-page-privacy__date,
.p-page-privacy__list-item {
  font-size: 14px;
  font-size: .875rem;
}

.p-page-privacy__body p + p {
  margin-top: .5lh;
}

.p-page-privacy__list--margin {
  margin-top: .5lh;
}

.p-page-privacy__list--padding-left,
.p-page-privacy__text--padding-left {
  padding-left: .5em;
}

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

.p-page-title {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 4px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

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

.p-page-title::before {
  display: block;
  position: absolute;
  top: 8px;
  top: .5rem;
  left: 0;
  background-color: var(--color-black);
  width: 100%;
  height: 1px;
  content: '';
}

.p-page-title__en {
  font-family: 'Battambang', system-ui, sans-serif;
  text-transform: uppercase;
}

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

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

.page-numbers {
  display: inline-block;
  border: 1px solid var(--color-main);
  width: 2em;
  height: 2em;
  color: var(--color-main);
  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: var(--color-main);
  color: var(--color-white);
}

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

.p-section-title {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left: 3px solid currentColor;
  padding: 20px 0 20px 20px;
  padding: 1.25rem 0 1.25rem 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
}

.p-section-title::before {
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  left: .625rem;
  background-color: currentColor;
  width: 1px;
  height: 100%;
  content: '';
}

.p-section-title--white {
  color: var(--color-white);
}

.p-section-title__en {
  font-family: 'Battambang', system-ui, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.p-section-title__ja {
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-slider__slider {
  margin-top: 40px;
  margin-top: 2.5rem;
  background: #282828;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-slider__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.p-slider__swiper:not(:first-child) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-slider__item {
  cursor: pointer;
}

.p-slider__item-image {
  aspect-ratio: 280/177;
  overflow: hidden;
}

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

.p-slider__slide-title {
  color: var(--color-white);
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7142857143;
  text-align: center;
}

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

.p-slider__detail {
  display: none;
}

.p-slider__detail.is-active {
  display: block;
}

.p-slider__detail-image {
  aspect-ratio: 1280/960;
  overflow: hidden;
}

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

.p-slider__detail-image--narrow {
  aspect-ratio: auto;
}

.p-slider__detail-image--narrow img {
  height: auto;
}

.p-slider__detail-body {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-slider__detail-title {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 15px 20px;
  padding: .9375rem 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.3333333333;
  text-align: center;
}

.p-slider__detail-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color-black)), color-stop(.25rem, var(--color-black)), color-stop(.25rem, transparent), color-stop(.125rem, transparent));
  background-image: linear-gradient(to right, var(--color-black), var(--color-black) .25rem, transparent .25rem, transparent .125rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: .5625rem .1875rem;
  width: 100%;
  height: 3px;
  content: '';
}

.p-slider__detail-text-block {
  opacity: .8;
  margin-top: 20px;
  margin-top: 1.25rem;
  background-color: #d9d9d9;
  padding: 20px;
  padding: 1.25rem;
  width: 100%;
  height: auto;
}

.p-slider__detail-text {
  -webkit-transition: co .3s ease;
  transition: co .3s ease;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.2;
}

.p-slider__detail-text + .p-slider__detail-text {
  margin-top: 1lh;
}

.p-slider__detail-text--lh2 + .p-slider__detail-text {
  margin-top: 2lh;
}

.p-top-about {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.p-top-about__clip {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  width: 100%;
  height: 100%;
}

.p-top-about__bg {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

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

.p-top-about__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
}

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

.p-top-about__text {
  color: var(--color-white);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: left;
}

.p-top-about__text--mt {
  margin-top: 1lh;
}

.p-top-about__more {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: right;
}

.p-top-apology {
  position: relative;
}

.p-top-apology__content {
  gap: 100px;
  gap: 6.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 21.875rem);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-apology__item {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 240px;
  -webkit-flex: 0 0 15rem;
  -ms-flex: 0 0 240px;
  -ms-flex: 0 0 15rem;
  flex: 0 0 240px;
  flex: 0 0 15rem;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  cursor: pointer;
  padding: 10px;
  padding: .625rem;
  text-align: center;
}

.p-top-apology__item:nth-child(1)::before {
  aspect-ratio: 512/501;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-55%, -52%) scaleX(-1);
  transform: translate(-55%, -52%) scaleX(-1);
  z-index: -1;
  background-image: url(../img/page/bubble_3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 220px;
  width: 13.75rem;
  content: '';
}

.p-top-apology__item:nth-child(2)::before {
  aspect-ratio: 256/327;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  z-index: -1;
  background-image: url(../img/page/bubble_2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 180px;
  width: 11.25rem;
  content: '';
}

.p-top-apology__item:nth-child(3)::before {
  aspect-ratio: 512/384;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  background-image: url(../img/page/bubble_5.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 220px;
  width: 13.75rem;
  content: '';
}

.p-top-apology__item:nth-child(4)::before {
  aspect-ratio: 512/528;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-55%, -45%) rotate(25deg) skew(-20deg, 10deg);
  transform: translate(-55%, -45%) rotate(25deg) skew(-20deg, 10deg);
  z-index: -1;
  background-image: url(../img/page/bubble_6.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 210px;
  width: 13.125rem;
  content: '';
}

.p-top-apology__item:nth-child(5)::before {
  aspect-ratio: 512/579;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-20deg);
  transform: translate(-50%, -50%) rotate(-20deg);
  z-index: -1;
  background-image: url(../img/page/bubble_4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 170px;
  width: 10.625rem;
  content: '';
}

.p-top-apology__text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.p-top-apology__text--bold {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}

.p-top-apology__message {
  position: relative;
  padding-top: 10px;
  padding-top: .625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}

.p-top-apology__message::before {
  position: absolute;
  top: -16px;
  top: -1rem;
  left: 0;
  background-image: linear-gradient(to right, #666, #666 10px, transparent 10px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14px 4px;
  width: 100%;
  height: 4px;
  content: '';
}

.p-top-apology__detail {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  background-color: rgba(0, 0, 0, .6);
  padding: 10px;
  padding: .625rem;
  width: 360px;
  width: 22.5rem;
  height: auto;
}

.p-top-apology__item.is-active .p-top-apology__detail {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}

.p-top-apology__detail-title {
  color: #b0c4de;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-top-apology__detail-text {
  margin-top: 10px;
  margin-top: .625rem;
  color: var(--color-white);
  font-size: 15px;
  font-size: .9375rem;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: left;
}

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

.p-top-contact__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: left;
}

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

.p-top-cta__inner.l-container {
  padding-right: 50px;
  padding-right: 3.125rem;
  padding-left: 50px;
  padding-left: 3.125rem;
}

.p-top-cta {
  background: -webkit-gradient(linear, left bottom, left top, from(#CECBCB), to(#4D5B5F));
  background: linear-gradient(0deg, #CECBCB 0%, #4D5B5F 100%);
  padding: 60px 0;
}

.p-top-cta__inner {
  position: relative;
}

.p-top-cta__slider-wrapper {
  position: relative;
  overflow: hidden;
}

.p-top-cta__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-top-cta__item {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.p-top-cta__link {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.p-top-cta__image {
  aspect-ratio: 396/168;
  display: block;
  overflow: hidden;
}

.p-top-cta__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-cta__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.p-top-cta__nav.swiper-button-disabled {
  opacity: 0;
  cursor: not-allowed;
}

.p-top-cta__nav--prev {
  left: 10px;
  left: .625rem;
}

.p-top-cta__nav--prev::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.p-top-cta__nav--next {
  right: 10px;
  right: .625rem;
}

.p-top-cta__nav--next::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.p-top-facility {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.p-top-facility__clip {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  width: 100%;
  height: 100%;
}

.p-top-facility__bg {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

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

.p-top-facility__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
}

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

.p-top-facility__text {
  color: var(--color-white);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: left;
}

.p-top-facility__more {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: right;
}

/************************************************************************
* p-fv
************************************************************************/
.p-top-fv {
  background-image: url(../img/common/top-fv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.p-top-fv__title-block {
  position: absolute;
  top: 150px;
  top: 9.375rem;
}

.p-top-fv__title-main {
  color: var(--color-white);
  font-family: 'BIZ UDPMincho', serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
  word-break: auto-phrase;
}

.p-top-fv__title-main-span {
  display: block;
}

.p-top-fv__link {
  display: inline-block;
  opacity: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  color: var(--color-white);
  font-family: 'BIZ UDPMincho', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

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

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

.p-top-introduction__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}

.p-top-introduction__paragraph + .p-top-introduction__paragraph {
  margin-top: 1em;
}

.p-top-news {
  background: -webkit-gradient(linear, left bottom, left top, from(#4D5B5F), to(#03080B));
  background: linear-gradient(0deg, #4D5B5F 0%, #03080B 100%);
  padding: 60px 0;
}

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

.p-top-news__item {
  gap: 10px;
  gap: .625rem;
  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;
  color: var(--color-white);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.5;
}

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

.p-top-news__text-block {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.p-top-news__badge {
  display: inline-block;
  background-color: var(--color-red);
  padding: 4px 12px;
  padding: .25rem .75rem;
  color: var(--color-white);
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  white-space: nowrap;
}

.p-top-recruit {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.p-top-recruit__clip {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  width: 100%;
  height: 100%;
}

.p-top-recruit__bg {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

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

.p-top-recruit__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
}

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

.p-top-recruit__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
}

.p-top-recruit__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-top-recruit__more {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: right;
}

.p-top-works {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.p-top-works__clip {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  width: 100%;
  height: 100%;
}

.p-top-works__bg {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

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

.p-top-works__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
}

.p-top-works__content {
  margin-top: 60px;
  margin-top: 3.75rem;
  max-width: 1240px;
  max-width: 77.5rem;
  text-align: center;
}

.p-top-works__items {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-top-works__item-en {
  font-family: 'Battambang', system-ui, sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.p-top-works__item-link {
  display: block;
  position: relative;
}

.p-top-works__item-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width .3s;
  transition: width .3s;
  background-color: currentColor;
  width: 0;
  height: 2px;
  content: '';
}

.p-top-works__item-ja {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
}

.p-top-works__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.p-top-works__more {
  margin-top: 20px;
  margin-top: 1.25rem;
  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-inlineBlock {
  display: inline-block !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .l-content {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .l-footer {
    padding: 300px 0 100px;
    padding: 18.75rem 0 6.25rem;
  }

  .l-page-section {
    margin-top: 120px;
    margin-top: 7.5rem;
  }

  .l-page-section--lead {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .l-section {
    padding: 100px 0 300px;
    padding: 6.25rem 0 18.75rem;
  }

  .l-top-contact {
    padding: 125px 0 50px;
    padding: 7.8125rem 0 3.125rem;
  }

  .l-top-cta {
    padding: 125px 0 100px;
    padding: 7.8125rem 0 6.25rem;
  }

  .c-btn {
    font-size: 32px;
    font-size: 2rem;
  }

  .c-hover-card__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .c-hover-card__overlay {
    right: 30px;
    right: 1.875rem;
    bottom: 100px;
    bottom: 6.25rem;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    padding: 15px 27px;
    padding: .9375rem 1.6875rem;
  }

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

  .c-moreBtn__text {
    font-size: 24px;
    font-size: 1.5rem;
  }

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

  .c-product-card__note {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-article__title {
    font-size: 24px;
  }

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

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

  .p-drawer__icon {
    top: 50px;
    top: 3.125rem;
    right: 50px;
    right: 3.125rem;
    padding: 18px 12px;
    padding: 1.125rem .75rem;
  }

  .p-drawer__bars {
    width: 36px;
    width: 2.25rem;
  }

  .p-drawer__bar {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .is-opened .p-drawer__bar:first-child {
    -webkit-transform: translateY(.8125rem) rotate(45deg);
    transform: translateY(.8125rem) rotate(45deg);
  }

  .is-opened .p-drawer__bar:last-child {
    -webkit-transform: translateY(-.8125rem) rotate(-45deg);
    transform: translateY(-.8125rem) rotate(-45deg);
  }

  .p-drawer__content {
    top: 50px;
    top: 3.125rem;
    right: 120px;
    right: 7.5rem;
    padding: 25px;
    padding: 1.5625rem;
  }

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

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

  .p-footer__nav {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  }

  .p-footer__navItem {
    text-align: right;
  }

  .p-footer__navTitle {
    padding: 0 10px 12px;
    padding: 0 .625rem .75rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-footer__navList {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-header {
    padding: 50px 0;
  }

  .p-header__logo {
    margin-top: 60px;
    margin-top: 3.75rem;
    width: 285px;
    width: 17.8125rem;
  }

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

  .p-slider__slider {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-slider__swiper:not(:first-child) {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-slider__content {
    margin-top: 110px;
    margin-top: 6.875rem;
  }

  .p-slider__detail-body {
    gap: 50px;
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-slider__detail-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 50px;
    margin-top: 3.125rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-slider__detail-text-block {
    margin-top: -300px;
    margin-top: -18.75rem;
    margin-right: 70px;
    margin-right: 4.375rem;
    padding: 40px;
    padding: 2.5rem;
    width: 40.625%;
  }

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

  .p-page-coating__content {
    gap: 44px;
    gap: 2.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-page-coating__text {
    padding-top: 30px;
    padding-top: 1.875rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

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

  .p-page-coating__items {
    margin-top: 44px;
    margin-top: 2.75rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }

  .p-page-company__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-page-company__list-wrapper {
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 480px;
    -webkit-flex: 0 0 30rem;
    -ms-flex: 0 0 480px;
    -ms-flex: 0 0 30rem;
    flex: 0 0 480px;
    flex: 0 0 30rem;
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-page-company__row {
    gap: 10px;
    gap: .625rem;
    grid-template-columns: 9.5rem 1fr;
  }

  .p-page-company__image {
    margin-top: 0;
    margin-left: -115px;
    margin-left: -7.1875rem;
    width: 75%;
  }

  .p-page-factory__items {
    gap: 65px 0;
    gap: 4.0625rem 0;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
  }

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

  .p-page-factory__images {
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-page-factory__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-page-factory__overlay {
    right: 30px;
    right: 1.875rem;
    bottom: 100px;
    bottom: 6.25rem;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    padding: 15px 27px;
    padding: .9375rem 1.6875rem;
    width: 29.6875%;
  }

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

  .p-page-form__content {
    padding-right: 50px;
    padding-right: 3.125rem;
    padding-left: 50px;
    padding-left: 3.125rem;
  }

  .p-page-form__item {
    gap: 10px;
    gap: .625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-page-form__item-head {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 215px;
    -webkit-flex: 0 0 13.4375rem;
    -ms-flex: 0 0 215px;
    -ms-flex: 0 0 13.4375rem;
    flex: 0 0 215px;
    flex: 0 0 13.4375rem;
  }

  .p-page-form__item-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-page-fv {
    height: 350px;
    height: 21.875rem;
  }

  .p-page-history__content {
    margin-inline: auto;
    max-width: 1080px;
    max-width: 67.5rem;
  }

  .p-about-history__item {
    gap: 70px;
    gap: 4.375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: none;
    padding-bottom: 0;
  }

  .p-about-history__item::before {
    position: absolute;
    top: 0;
    left: 240px;
    left: 15rem;
    background-color: var(--color-black);
    width: 1px;
    width: .0625rem;
    height: 100%;
    content: '';
  }

  .p-about-history__date {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 220px;
    -webkit-flex: 0 0 13.75rem;
    -ms-flex: 0 0 220px;
    -ms-flex: 0 0 13.75rem;
    flex: 0 0 220px;
    flex: 0 0 13.75rem;
  }

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

  .p-page-lead__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-page-lead__text {
    font-size: 22px;
    font-size: 1.35rem;
  }

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

  .p-page-member__content {
    margin-top: 80px;
    margin-top: 5rem;
    padding-right: 60px;
    padding-right: 3.75rem;
    padding-left: 60px;
    padding-left: 3.75rem;
  }

  .p-page-member__items {
    grid-template-columns: repeat(5, 1fr);
  }

  .p-page-privacy__summary {
    padding: 28px 46px;
    padding: 1.75rem 2.875rem;
  }

  .p-page-privacy__summary-text {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-page-privacy__body {
    padding: 30px 24px;
    padding: 1.875rem 1.5rem;
  }

  .p-page-products__items {
    gap: 50px 40px;
    gap: 3.125rem 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-page-title {
    gap: 20px;
    gap: 1.25rem;
    padding-top: 38px;
    padding-top: 2.375rem;
    padding-bottom: 38px;
    padding-bottom: 2.375rem;
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-page-title::before {
    top: 15px;
    top: .9375rem;
  }

  .p-section-title {
    gap: 30px;
    gap: 1.875rem;
    padding: 35px 0 35px 40px;
    padding: 2.1875rem 0 2.1875rem 2.5rem;
  }

  .p-section-title__en {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-section-title__ja {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-slider__slider {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-slider__swiper:not(:first-child) {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-slider__content {
    margin-top: 110px;
    margin-top: 6.875rem;
  }

  .p-slider__detail-image--narrow {
    width: 56%;
  }

  .p-slider__detail-body {
    gap: 50px;
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-slider__detail-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 50px;
    margin-top: 3.125rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-slider__detail-text-block {
    margin-top: -300px;
    margin-top: -18.75rem;
    margin-right: 70px;
    margin-right: 4.375rem;
    padding: 40px;
    padding: 2.5rem;
    width: 40.625%;
  }

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

  .p-top-about__content {
    margin-inline: auto;
    margin-top: 126px;
    margin-top: 7.875rem;
    max-width: 1240px;
    max-width: 77.5rem;
  }

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

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

  .p-top-apology__content {
    gap: 60px 30px;
    gap: 3.75rem 1.875rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-top-apology__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 300px;
    -webkit-flex: 0 0 18.75rem;
    -ms-flex: 0 0 300px;
    -ms-flex: 0 0 18.75rem;
    flex: 0 0 300px;
    flex: 0 0 18.75rem;
  }

  .p-top-apology__item:nth-child(1)::before {
    width: 280px;
    width: 17.5rem;
  }

  .p-top-apology__item:nth-child(2)::before {
    width: 240px;
    width: 15rem;
  }

  .p-top-apology__item:nth-child(3)::before {
    width: 300px;
    width: 18.75rem;
  }

  .p-top-apology__item:nth-child(4)::before {
    width: 280px;
    width: 17.5rem;
  }

  .p-top-apology__item:nth-child(5)::before {
    width: 240px;
    width: 15rem;
  }

  .p-top-apology__text {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-top-apology__text--bold {
    font-size: 40px;
    font-size: 2.5rem;
  }

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

  .p-top-contact__content {
    margin-top: 126px;
    margin-top: 7.875rem;
  }

  .p-top-contact__text {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: center;
  }

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

  .p-top-cta {
    padding: 80px 0;
  }

  .p-top-facility__content {
    margin-inline: auto;
    margin-top: 126px;
    margin-top: 7.875rem;
    max-width: 1080px;
    max-width: 67.5rem;
  }

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

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

  .p-top-fv__title-block {
    top: 240px;
    top: 15rem;
  }

  .p-top-fv__title-main {
    font-size: 32px;
    font-size: 2rem;
  }

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

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

  .p-top-introduction__text {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: center;
  }

  .p-top-news {
    padding: 80px 0;
  }

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

  .p-top-news__item {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-size: 18px;
    font-size: 1.125rem;
  }

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

  .p-top-news__date {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 150px;
    -webkit-flex: 0 0 9.375rem;
    -ms-flex: 0 0 150px;
    -ms-flex: 0 0 9.375rem;
    flex: 0 0 150px;
    flex: 0 0 9.375rem;
  }

  .p-top-news__badge {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-top-recruit__content {
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 1080px;
    max-width: 67.5rem;
  }

  .p-top-recruit__heading {
    font-size: 32px;
    font-size: 2rem;
  }

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

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

  .p-top-works__content {
    margin-top: 126px;
    margin-top: 7.875rem;
  }

  .p-top-works__items {
    gap: 20px;
    gap: 1.25rem;
  }

  .p-top-works__item-en {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-top-works__item-ja {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-top-works__text {
    margin-top: 70px;
    margin-top: 4.375rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

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

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

  .u-onlyTab {
    display: block;
  }
}

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

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

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

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

  .u-onlyPc {
    display: block;
  }

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

@media (min-width: 1280px) {

  html {
    font-size: 100%;
  }
}

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

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 375px) {

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

@media (hover: hover) {

  .c-hover-card:hover .c-hover-card__overlay {
    opacity: 1;
  }

  .c-moreBtn:hover .c-moreBtn__arrow {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  .p-drawer__navLink:hover .p-drawer__navEn {
    opacity: 0;
  }

  .p-drawer__navLink:hover .p-drawer__navJa {
    opacity: 1;
  }

  .p-footer__navLink:hover {
    opacity: .7;
  }

  .p-page-coating__image:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .p-page-coating__image:hover::after {
    opacity: 1;
  }

  .p-page-factory__content:hover .p-page-factory__overlay {
    opacity: 1;
  }

  .p-top-apology__item:not(:nth-child(6)):hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }

  .p-top-cta__link:hover {
    opacity: .8;
  }

  .p-top-cta__nav:hover {
    opacity: .7;
  }

  .p-top-fv__link:hover {
    opacity: .7;
  }

  .p-top-works__item-link:hover::after {
    width: 100%;
  }
}
/*# sourceMappingURL=map/style.css.map */