@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1379px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1380 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #1D1D1D;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
body.no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-wrapper {
  position: relative;
  z-index: 1;
  background-color: #FCFAFA;
}
.l-wrapper.--bg-black {
  background-color: #303030;
}

.l-header {
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.6875rem;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 3.5625rem;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1380px;
  height: inherit;
  padding: 0 1.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 99%;
    max-width: 630px;
    padding: 0 0.9375rem;
  }
}
.l-inner.--1200 {
  max-width: 75rem;
}

.l-inner__narrow {
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 0.9375rem;
    max-width: 600px;
  }
}

.l-footer {
  width: 100%;
  background-color: #303030;
}

.c-grid {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px));
  background-size: 1.875rem 1.875rem;
  background-repeat: repeat;
  background-position-x: calc(50% + 0.9375rem);
  background-position-y: -0.875rem;
}
@media screen and (max-width: 767px) {
  .c-grid {
    background-size: 0.9375rem 0.9375rem;
    background-position-x: 50%;
    background-position-y: -1.4375rem;
  }
}
.c-grid .--zero {
  background-position-y: 0;
}
@media screen and (max-width: 767px) {
  .c-grid .--zero {
    background-position-y: 0;
  }
}
.c-grid.--white {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.03) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.03) calc(100% - 1px));
  background-size: 1.875rem 1.875rem;
  background-repeat: repeat;
  background-position-x: calc(50% + 0.9375rem);
  background-position-y: -0.875rem;
}
@media screen and (max-width: 767px) {
  .c-grid.--white {
    background-size: 0.9375rem 0.9375rem;
    background-position-x: 50%;
    background-position-y: -1.4375rem;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  height: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn:hover .c-btn__border::before {
  -webkit-animation: 0.3s ease-out forwards moveLine;
          animation: 0.3s ease-out forwards moveLine;
}
@-webkit-keyframes moveLine {
  0% {
    scale: 1;
  }
  100% {
    scale: 0;
  }
}
@keyframes moveLine {
  0% {
    scale: 1;
  }
  100% {
    scale: 0;
  }
}
.c-btn:hover .c-btn__border::after {
  -webkit-animation: 0.3s 0.1s ease-in forwards moveLine-after;
          animation: 0.3s 0.1s ease-in forwards moveLine-after;
}
@-webkit-keyframes moveLine-after {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes moveLine-after {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    max-width: 22.5rem;
    gap: 0.9375rem;
  }
}
.c-btn.--white .c-btn__text {
  color: #ffffff;
}
.c-btn.--white .c-btn__border::before, .c-btn.--white .c-btn__border::after {
  background: #ffffff;
}

.c-btn__border {
  width: 10.1875rem;
  height: 0.0625rem;
  position: relative;
  overflow: hidden;
}
.c-btn__border::before, .c-btn__border::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  height: 0.0625rem;
  width: 100%;
  background: #303030;
}
.c-btn__border::before {
  left: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.c-btn__border::after {
  left: -100%;
}
@media screen and (max-width: 767px) {
  .c-btn__border {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}

.c-btn__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-btn__text {
    font-size: 1rem;
  }
}
.c-btn__text.--16 {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-btn__text.--16 {
    letter-spacing: 0.06em;
  }
}

.c-head__title {
  padding-left: 1.875rem;
  position: relative;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 2.625;
}
@media screen and (max-width: 767px) {
  .c-head__title {
    font-size: 1rem;
  }
}
.c-head__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 0.9375rem;
  height: 0.9375rem;
  background: #3F4F8A;
}
.c-head__title.--voice {
  color: #ffffff;
}
.c-head__title.--voice::before {
  background: #ffffff;
}

.c-head__en {
  font-family: "Outfit", sans-serif;
  height: 6.5625rem;
  position: relative;
  translate: -0.375rem;
  font-size: 6.875rem;
  font-weight: 250;
  line-height: 0.9545;
  letter-spacing: -0.05em;
  margin-top: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .c-head__en {
    height: 3.6875rem;
    font-size: 4rem;
    font-weight: 200;
    line-height: 0.92057;
    margin-top: 0.5rem;
  }
}
.c-head__en::before, .c-head__en::after {
  content: "";
  position: absolute;
  height: 0.0625rem;
  background: #303030;
  opacity: 0.25;
}
.c-head__en::before {
  top: 1.0625rem;
  left: -1.5rem;
  width: 20.625rem;
}
@media screen and (max-width: 767px) {
  .c-head__en::before {
    top: 0.5625rem;
    left: -0.6875rem;
    width: 11.25rem;
  }
}
.c-head__en::after {
  bottom: 0.75rem;
  left: 11.625rem;
  width: 20.625rem;
}
@media screen and (max-width: 767px) {
  .c-head__en::after {
    bottom: 0.3125rem;
    left: 6.8125rem;
    width: 12.1875rem;
  }
}
.c-head__en.--feature::after {
  left: 12.1875rem;
  width: 23.8125rem;
}
@media screen and (max-width: 767px) {
  .c-head__en.--feature::after {
    left: 8.6875rem;
    width: 11.6875rem;
  }
}
.c-head__en.--voice {
  color: #ffffff;
  font-size: 4.75rem;
  font-weight: 200;
  line-height: 0.9605;
  letter-spacing: -0.03em;
  translate: 0;
  margin-top: 0;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-head__en.--voice {
    margin-top: 0.375rem;
    font-size: 4rem;
    line-height: 0.96875;
    translate: -0.375rem;
  }
}
.c-head__en.--voice::before, .c-head__en.--voice::after {
  content: none;
}
.c-head__en.--news {
  font-size: 4.75rem;
  font-weight: 250;
  line-height: 0.9605;
  letter-spacing: -0.03em;
  translate: 0;
  margin-top: 0;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-head__en.--news {
    margin-top: 0.5rem;
    font-size: 4rem;
    line-height: 0.92057;
    letter-spacing: -0.05em;
    translate: -0.25rem;
  }
}
.c-head__en.--news::before, .c-head__en.--news::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .c-head__en.--contact, .c-head__en.--message {
    font-size: 3.6875rem;
    line-height: 0.99859;
    margin-top: -0.3125rem;
    translate: -0.1875rem;
    white-space: nowrap;
  }
}
.c-head__en.--contact::before, .c-head__en.--contact::after, .c-head__en.--message::before, .c-head__en.--message::after {
  content: none;
}
.c-head__en.--company::before {
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .c-head__en.--company::before {
    width: 10rem;
  }
}
.c-head__en.--company::after {
  width: 16.875rem;
}
@media screen and (max-width: 767px) {
  .c-head__en.--company::after {
    width: 9.375rem;
  }
}
.c-head__en.--access::before {
  left: -2.0625rem;
  width: 11.8125rem;
}
@media screen and (max-width: 767px) {
  .c-head__en.--access::before {
    left: -0.4375rem;
    width: 6.25rem;
  }
}
.c-head__en.--access::after {
  left: 7.875rem;
  width: 13.125rem;
}
@media screen and (max-width: 767px) {
  .c-head__en.--access::after {
    left: 4.6875rem;
    width: 6.875rem;
  }
}
.c-head__en.--other {
  font-size: 4.75rem;
  font-weight: 200;
  line-height: 0.9605;
  letter-spacing: -0.03em;
  translate: 0;
  margin-top: 0;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-head__en.--other {
    margin-top: 0.5rem;
    font-size: 4rem;
    line-height: 0.92057;
    letter-spacing: -0.05em;
    translate: -0.25rem;
  }
}
.c-head__en.--other::before, .c-head__en.--other::after {
  content: none;
}

.c-head__btn {
  margin-bottom: 1.625rem;
}

.c-itemBox__link:hover .c-itemBox__btn {
  opacity: 1;
}
.c-itemBox__link:hover .c-itemBox__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-itemBox__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-itemBox__img {
    height: 18.75rem;
  }
}
.c-itemBox__img img {
  border-radius: 0.625rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-itemBox__title {
  display: block;
  position: relative;
  margin-top: 2.5625rem;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-itemBox__title {
    margin-top: 1.5625rem;
    font-size: 1.25rem;
    line-height: 1.1;
  }
}
.c-itemBox__title.--b::after, .c-itemBox__title.--gb::after, .c-itemBox__title.--ggb::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 0.9375rem;
  translate: 0 -50%;
}
.c-itemBox__title.--b::after {
  width: 0.9375rem;
  background: url(../img/icon-b.svg) no-repeat;
}
.c-itemBox__title.--gb::after {
  width: 1.875rem;
  background: url(../img/icon-gb.svg) no-repeat;
  background-size: contain;
}
.c-itemBox__title.--ggb::after {
  width: 2.8125rem;
  background: url(../img/icon-ggb.svg) no-repeat;
  background-size: contain;
}

.c-itemBox__en {
  margin-top: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 250;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-itemBox__en {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-itemBox__en {
    margin-top: 0.25rem;
    font-weight: 200;
  }
}

.c-itemBox__btn {
  margin-top: 1.3125rem;
  width: 5.25rem;
  height: 1.875rem;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-itemBox__btn {
    margin-top: 0.6875rem;
  }
}
.c-itemBox__btn:hover {
  opacity: 1;
}

.c-voiceBox {
  padding-block: 3.4375rem 3.8125rem;
  padding-inline: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-voiceBox {
    padding-block: 1.625rem 2rem;
    padding-inline: 1.875rem;
  }
}
.c-voiceBox.--other {
  padding-block: 0;
  padding-inline: 3.125rem 3.0625rem;
  border-left: solid 0.0625rem rgba(29, 29, 29, 0.25);
}
@media screen and (max-width: 767px) {
  .c-voiceBox.--other {
    border-left: none;
    border-top: solid 0.0625rem rgba(29, 29, 29, 0.25);
    padding-inline: 0;
  }
}

.c-voiceBox__link {
  color: #ffffff;
}
.c-voiceBox__link:hover .c-voiceBox__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-voiceBox__link:hover .c-voiceBox__btn {
  opacity: 1;
}
.c-voiceBox__link.--other {
  color: inherit;
}

.c-voiceBox__number {
  font-family: "Outfit", sans-serif;
  color: inherit;
  font-size: max(0.875rem, 11.2px);
  font-weight: 300;
  line-height: 0.7142857143;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-voiceBox__number {
    font-size: 0.875rem;
  }
}

.c-voiceBox__img {
  margin-top: 1.1875rem;
  width: 18.75rem;
  height: auto;
  aspect-ratio: 300/330;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-voiceBox__img {
    width: 16.875rem;
    aspect-ratio: 270/300;
  }
}
.c-voiceBox__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-voiceBox__img.--archive {
  width: 100%;
  aspect-ratio: 360/390;
}
.c-voiceBox__img.--other {
  width: 100%;
}

.c-voiceBox__title {
  margin-top: 1.5625rem;
  color: inherit;
  opacity: 0.5;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-voiceBox__title {
    font-size: 0.875rem;
  }
}
.c-voiceBox__title.--archive {
  margin-top: 1.875rem;
}

.c-voiceBox__text {
  margin-top: 0.4375rem;
  color: inherit;
  font-size: max(1.125rem, 14.4px);
  font-weight: 400;
  line-height: 1.7777777778;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-voiceBox__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-voiceBox__text {
    margin-top: 0.3125rem;
  }
}

.c-voiceBox__btn {
  margin-top: 1.6875rem;
  width: 5.25rem;
  height: 1.875rem;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-newsBox {
  border-bottom: solid 1px rgba(29, 29, 29, 0.25);
}
.p-news__item:first-of-type .c-newsBox, .p-single__item:first-of-type .c-newsBox {
  border-top: solid 1px rgba(29, 29, 29, 0.25);
}

.c-newsBox__link {
  position: relative;
  display: block;
  padding-block: 1.875rem 1.8125rem;
}
@media screen and (max-width: 767px) {
  .c-newsBox__link {
    padding-block: 1.875rem 1.5625rem;
    padding-inline: 0.9375rem;
  }
}
.c-newsBox__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(239, 239, 239, 0.5);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: -1;
}
.c-newsBox__link:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.c-newsBox__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-newsBox__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 1.5625rem;
  }
}

.c-newsBox__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 11.25rem;
  height: auto;
  aspect-ratio: 180/120;
}
@media screen and (max-width: 767px) {
  .c-newsBox__img {
    width: 100%;
    aspect-ratio: 315/210;
  }
}
.c-newsBox__img img {
  width: 100%;
  height: 100%;
  border-radius: 0.3125rem;
}

.c-newsBox__textWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-newsBox__textWrap {
    row-gap: 0.625rem;
  }
}

.c-newsBox__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
}

.c-newsBox__category {
  color: #ffffff;
  padding: 0.125rem 0.8125rem;
  background: #303030;
  border-radius: 0.9375rem;
  font-size: max(0.75rem, 9.6px);
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-newsBox__category {
    font-size: 0.75rem;
  }
}

.c-newsBox__published {
  font-family: "Outfit", sans-serif;
  font-size: max(1rem, 12.8px);
  font-weight: 200;
  line-height: 0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-newsBox__published {
    font-size: 1rem;
  }
}

.c-newsBox__title {
  font-size: max(1.125rem, 14.4px);
  font-weight: 500;
  line-height: 1.2222222222;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-newsBox__title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-newsBox__title {
    line-height: 1.3889;
  }
}

.c-table {
  width: 100%;
  border-top: solid 0.0625rem rgba(29, 29, 29, 0.25);
}

.c-table__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.8125rem;
     -moz-column-gap: 2.8125rem;
          column-gap: 2.8125rem;
  padding-block: 1.8125rem 1.75rem;
  border-bottom: solid 0.0625rem rgba(29, 29, 29, 0.25);
}
@media screen and (max-width: 767px) {
  .c-table__tr {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    padding-block: 0.875rem 0.875rem;
  }
}
.c-table__tr:first-child {
  -webkit-padding-before: 1.75rem;
          padding-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-table__tr:first-child {
    -webkit-padding-before: 0.875rem;
            padding-block-start: 0.875rem;
  }
}

.c-table__th {
  width: 75px;
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-table__th {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-table__th {
    font-size: 0.875rem;
  }
}

.c-table__td {
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-table__td {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-table__td {
    font-size: 0.875rem;
  }
}
.c-table__td.--details {
  line-height: 2.0625;
}

.c-contact__swiper01,
.c-contact__swiper02 {
  height: 100%;
}

.c-contact__swiper01-wrapper,
.c-contact__swiper02-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.c-contact__swiper01-slide,
.c-contact__swiper02-slide {
  width: 16.875rem;
  height: auto;
  aspect-ratio: 270/330;
}
.c-contact__swiper01-slide img,
.c-contact__swiper02-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.c-contact__swiper01-sp,
.c-contact__swiper02-sp {
  height: 100%;
}

.c-contact__swiper01-sp-wrapper,
.c-contact__swiper02-sp-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.c-contact__swiper01-sp-slide,
.c-contact__swiper02-sp-slide {
  width: 9.375rem;
  height: auto;
  aspect-ratio: 150/90;
}
.c-contact__swiper01-sp-slide img,
.c-contact__swiper02-sp-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
}

.c-form__message {
  text-align: center;
}
.c-form__message.--thanks {
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-form__message.--thanks {
    font-size: 1rem;
  }
}
.c-form__message.--return {
  margin-top: 3rem;
}
.c-form__message--16 {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-form__message--16 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__message--16 {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.c-form__message--14 {
  font-size: max(0.875rem, 11.2px);
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-form__message--14 {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__message--14 {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.8;
  }
}

/*入力画面*/
.c-form__item {
  margin-top: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.75rem;
}
.c-form__item:first-of-type {
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .c-form__item:first-of-type {
    margin-top: 1.875rem;
  }
}

.c-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-form__itemLabel {
  font-size: max(1.125rem, 14.4px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-form__itemLabel {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__itemLabel {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-form__required {
  color: #F03341;
  font-size: max(0.75rem, 9.6px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-form__required {
    font-size: 0.75rem;
  }
}

.c-form__text,
.c-form__postal1,
.c-form__postal2,
.c-form__textarea {
  width: 100%;
  padding: 0.375rem 1rem;
  background: #EFEFEF;
  border: solid 0.0625rem rgba(48, 48, 48, 0.1);
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-form__text,
  .c-form__postal1,
  .c-form__postal2,
  .c-form__textarea {
    font-size: 1rem;
  }
}
.c-form__text::-webkit-input-placeholder, .c-form__postal1::-webkit-input-placeholder, .c-form__postal2::-webkit-input-placeholder, .c-form__textarea::-webkit-input-placeholder {
  color: rgba(48, 48, 48, 0.2);
}
.c-form__text::-moz-placeholder, .c-form__postal1::-moz-placeholder, .c-form__postal2::-moz-placeholder, .c-form__textarea::-moz-placeholder {
  color: rgba(48, 48, 48, 0.2);
}
.c-form__text:-ms-input-placeholder, .c-form__postal1:-ms-input-placeholder, .c-form__postal2:-ms-input-placeholder, .c-form__textarea:-ms-input-placeholder {
  color: rgba(48, 48, 48, 0.2);
}
.c-form__text::-ms-input-placeholder, .c-form__postal1::-ms-input-placeholder, .c-form__postal2::-ms-input-placeholder, .c-form__textarea::-ms-input-placeholder {
  color: rgba(48, 48, 48, 0.2);
}
.c-form__text::placeholder,
.c-form__postal1::placeholder,
.c-form__postal2::placeholder,
.c-form__textarea::placeholder {
  color: rgba(48, 48, 48, 0.2);
}

.c-form__postalNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5625rem;
     -moz-column-gap: 0.5625rem;
          column-gap: 0.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-form__postal1,
.c-form__postal2 {
  padding: 0.375rem 1.3125rem 0.375rem 1rem;
}

.c-form__postal1 {
  width: 4.125rem;
}

.c-form__postal2 {
  width: 4.75rem;
}

.c-form__postalMark {
  position: relative;
  width: 0.65625rem;
}
.c-form__postalMark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: 0.0625rem;
  background: #1D1D1D;
}

.c-form__textarea {
  height: 13.125rem;
}

.c-form__privacyWrap {
  margin-top: 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8125rem;
     -moz-column-gap: 0.8125rem;
          column-gap: 0.8125rem;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-form__privacyWrap {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__privacyWrap {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.c-form__privacyWrap a {
  color: #3F4F8A;
  text-decoration: underline;
}
.c-form__privacyWrap a:hover {
  text-decoration: none;
}
.c-form__privacyWrap .wpcf7-list-item-label {
  position: relative;
  padding-left: 1.9375rem;
  cursor: pointer;
}
.c-form__privacyWrap .wpcf7-list-item-label::before, .c-form__privacyWrap .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form__privacyWrap .wpcf7-list-item-label::before {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(48, 48, 48, 0.3);
  left: 0;
  border-radius: 0.1875rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-form__privacyWrap .wpcf7-list-item-label::after {
  width: 0.71875rem;
  height: 0.46875rem;
  left: 0.203125rem;
  background: url(../img/icon-privacy.svg) no-repeat center center/cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-form__privacyCheck {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.c-form__privacyCheck:focus + .wpcf7-list-item-label::before {
  outline: auto;
  outline: auto -webkit-focus-ring-color; /* for Chrome */
  border-radius: 0;
}
.c-form__privacyCheck:checked + .wpcf7-list-item-label::before {
  background-color: #3F4F8A;
}
.c-form__privacyCheck:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.c-form__buttonWrap {
  margin-top: 1.875rem;
  text-align: center;
}

.c-form__button {
  width: 18.75rem;
  padding-block: 0.625rem;
  background: #3F4F8A;
  color: #ffffff;
  cursor: pointer;
  font-size: max(1.25rem, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-form__button {
    font-size: 1.25rem;
  }
}
.c-form__button:disabled {
  -webkit-filter: grayscale(100%) opacity(0.4);
          filter: grayscale(100%) opacity(0.4);
  cursor: not-allowed;
}

/*確認画面を非表示*/
.c-form__confirm {
  display: none;
}

.c-form__confirm .confirm_textarea,
.c-form__confirm [class^=confirm_] {
  white-space: pre-line;
  line-height: 2;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.c-page-numbers.--single ul.page-numbers li a {
  color: rgba(29, 29, 29, 0.4);
  border-color: rgba(29, 29, 29, 0.4);
}
.c-page-numbers.--single ul.page-numbers li a:hover {
  color: #1D1D1D;
  border-color: #1D1D1D;
}
.c-page-numbers.--single ul.page-numbers li span.current {
  color: #ffffff;
  border-color: #1D1D1D;
  background-color: #1D1D1D;
}

ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}

ul.page-numbers li {
  font-family: "Outfit", sans-serif;
  font-size: max(1.125rem, 14.4px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  ul.page-numbers li {
    font-size: 1.125rem;
  }
}
ul.page-numbers li a,
ul.page-numbers li span {
  width: 3.125rem;
  height: 3.125rem;
  border: solid 0.0625rem;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
ul.page-numbers li a {
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
ul.page-numbers li a:hover {
  color: #ffffff;
  border-color: #ffffff;
}
ul.page-numbers li span.current {
  border-color: #ffffff;
  background-color: #ffffff;
}

.c-post-content img {
  max-width: 100%;
  height: auto;
  margin-top: 1.25rem;
}
.c-post-content h2 {
  position: relative;
  margin-top: 3.75rem;
  padding-bottom: 1rem;
  font-size: max(1.75rem, 22.4px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-post-content h2 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-post-content h2 {
    margin-top: 1.875rem;
    font-size: 1.5rem;
    line-height: 1.5;
    padding-bottom: 0.625rem;
  }
}
.c-post-content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: rgba(29, 29, 29, 0.25);
}
.c-post-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5.625rem;
  height: 0.0625rem;
  background: #3F4F8A;
}
.c-post-content h3,
.c-post-content h4,
.c-post-content h5,
.c-post-content h6 {
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-post-content h3,
  .c-post-content h4,
  .c-post-content h5,
  .c-post-content h6 {
    margin-top: 1.875rem;
  }
}
.c-post-content h3.--mt60,
.c-post-content h4.--mt60,
.c-post-content h5.--mt60,
.c-post-content h6.--mt60 {
  margin-top: 3.75rem;
}
.c-post-content h3 {
  padding: 0.70625rem 1.8125rem;
  background: #EFEFEF;
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-post-content h3 {
    font-size: 1.5rem;
  }
}
.c-post-content h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 0.625rem;
  height: 0.625rem;
  background: #3F4F8A;
}
.c-post-content h4 {
  padding-bottom: 0.9375rem;
  border-bottom: solid 0.0625rem rgba(48, 48, 48, 0.25);
  font-size: max(1.375rem, 17.6px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-post-content h4 {
    font-size: 1.375rem;
  }
}
.c-post-content h5 {
  padding: 0.75rem 1.5rem;
  background: #EFEFEF;
  font-size: max(1.25rem, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-post-content h5 {
    font-size: 1.25rem;
  }
}
.c-post-content h6 {
  padding-left: 1.875rem;
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-post-content h6 {
    font-size: 1.125rem;
  }
}
.c-post-content h6::after {
  content: "";
  position: absolute;
  top: 0.6875rem;
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  background: #3F4F8A;
}
.c-post-content p {
  margin-top: 1.25rem;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-post-content p {
    font-size: 1rem;
  }
}
.c-post-content p a {
  color: #3F4F8A;
  text-decoration: underline;
}
.c-post-content p a:hover {
  text-decoration: none;
}
.c-post-content p.--top {
  margin-top: 0;
}
.c-post-content p.--500 {
  font-weight: 500;
}
.c-post-content h6 + p {
  margin-top: 1rem;
}
.c-post-content ul,
.c-post-content ol {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.375rem;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-post-content ul,
  .c-post-content ol {
    font-size: 1rem;
  }
}
.c-post-content ul li {
  position: relative;
  padding-left: 1.5625rem;
}
.c-post-content ul li::before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background: #3F4F8A;
}
.c-post-content ol {
  counter-reset: number;
}
.c-post-content ol li {
  position: relative;
  padding-left: 1.5625rem;
}
.c-post-content ol li::before {
  content: counter(number) ".";
  position: absolute;
  counter-increment: number;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  font-family: "Outfit", sans-serif;
  color: #3F4F8A;
}
.c-post-content .is-layout-flex {
  margin-top: 0.625rem;
}

.c-post-content__row {
  margin-top: 1.875rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 549px) {
  .c-post-content__row {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-post-content__row img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
}
.c-post-content__row.--two {
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}
.c-post-content__row.--two img {
  width: calc((100% - 1.875rem) / 2);
}
@media (max-width: 549px) {
  .c-post-content__row.--two {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 1.25rem;
  }
  .c-post-content__row.--two img {
    width: 100%;
  }
}
.c-post-content__row.--three {
  -webkit-column-gap: 1.3125rem;
     -moz-column-gap: 1.3125rem;
          column-gap: 1.3125rem;
}
.c-post-content__row.--three img {
  width: calc((100% - 2.625rem) / 3);
}
@media (max-width: 549px) {
  .c-post-content__row.--three {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 1.25rem;
  }
  .c-post-content__row.--three img {
    width: 100%;
  }
}

.c-post-content__buttonWrap {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.375rem;
}

.c-post-content__button {
  position: relative;
  padding-left: 2.1875rem;
  color: #3F4F8A;
  text-decoration: none;
  font-size: max(1rem, 12.8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-post-content__button {
    font-size: 1rem;
  }
}
.c-post-content__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  height: 1.625rem;
  width: 1.625rem;
  border-radius: 50%;
  border: solid 0.0625rem;
  background-color: transparent;
  background-image: url(../img/icon-bt-allow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem 0.5rem;
  -webkit-transition: background-image 0.3s, background-color 0.3s;
  transition: background-image 0.3s, background-color 0.3s;
}
.c-post-content__button:hover::before {
  background-color: #3F4F8A;
  background-image: url(../img/icon-bt-allow_white.svg);
  background-size: 0.5rem 0.5rem;
}

.wp-block-button + .wp-block-button .wp-element-button {
  margin-top: 0.375rem;
}

.c-sidebar {
  position: sticky;
  top: 6.25rem;
  padding-bottom: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.125rem;
}

.c-sidebar__title {
  font-family: "Outfit", sans-serif;
  padding-bottom: 1.5rem;
  border-bottom: solid 0.0625rem #1D1D1D;
  font-size: max(1rem, 12.8px);
  font-weight: 300;
  line-height: 0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-sidebar__title {
    font-size: 1rem;
  }
}

.c-sidebar__items {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.25rem;
}

.c-sidebar__item {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(0.875rem, 11.2px);
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-sidebar__item {
    font-size: 0.875rem;
  }
}
.c-sidebar__item::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  translate: -50%;
  width: 100%;
  height: 0.0625rem;
  background: #1D1D1D;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-sidebar__item:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-sidebar__link {
  display: block;
}

.c-sidebar__count {
  color: #b1b1b1;
}

.c-splitText {
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.c-splitText .text-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-splitText .after {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-splitText .before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-splitText .before span,
.c-splitText .after span {
  line-height: 1.1;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out; /*ease-outで余裕のある動きに*/
}
.c-splitText .after span {
  -webkit-transform: translateY(100%);
          transform: translateY(100%); /*予め下から出現するテキストを一文字分下に配置しておく*/
}

html {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

html.is-fade-ready {
  opacity: 1;
}

html.is-fade-leave {
  opacity: 0;
}

.c-animated__fadeIn,
.c-animated__fadeIn-d {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: opacity 0.5s ease, translate 0.5s ease;
  transition: opacity 0.5s ease, translate 0.5s ease;
}
.c-animated__fadeIn.js-show,
.c-animated__fadeIn-d.js-show {
  opacity: 1;
  translate: 0 0;
}

.c-animated__fadeIn-l {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1.5s ease-out;
  transition: opacity 0.8s ease, -webkit-transform 1.5s ease-out;
  transition: opacity 0.8s ease, transform 1.5s ease-out;
  transition: opacity 0.8s ease, transform 1.5s ease-out, -webkit-transform 1.5s ease-out;
}
.c-animated__fadeIn-l.js-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-animation__text {
  visibility: hidden;
}
.c-animation__text .char {
  opacity: 0;
}

.c-flowingText {
  font-family: "Outfit", sans-serif;
  font-size: 15.625rem;
  font-weight: 250;
  line-height: 0.42;
  letter-spacing: -0.02em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  will-change: transform;
}
.c-flowingText span {
  padding-right: 3.75rem;
  white-space: nowrap;
}
.c-flowingText.--about, .c-flowingText.--pageFeature {
  -webkit-animation: rightToLeft 40s linear infinite;
          animation: rightToLeft 40s linear infinite;
}
@media screen and (max-width: 767px) {
  .c-flowingText.--about, .c-flowingText.--pageFeature {
    font-size: 7.8125rem;
    font-weight: 200;
  }
}
.c-flowingText.--feature {
  color: #ffffff;
  -webkit-animation: leftToRight 30s linear infinite;
          animation: leftToRight 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .c-flowingText.--feature {
    font-size: 8.25rem;
    font-weight: 200;
    line-height: 0.42;
  }
}
.c-flowingText.--drawer {
  color: #ffffff;
  opacity: 0.4;
  mix-blend-mode: difference;
  -webkit-animation: rightToLeft 20s linear infinite;
          animation: rightToLeft 20s linear infinite;
  font-size: 10.625rem;
  font-weight: 100;
  line-height: 0.41;
  letter-spacing: -0.05em;
}

@-webkit-keyframes rightToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes rightToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes leftToRight {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes leftToRight {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-header {
  padding-top: 1.0625rem;
  padding-left: 3.75rem;
  padding-right: 6.25rem;
  height: 4.6875rem;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 10.375rem 1fr;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-left: 1.125rem;
    padding-right: 4.0625rem;
    height: 3.5625rem;
  }
}

.p-header__logo {
  width: 10.375rem;
  height: 1.375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 7.8125rem;
    height: 1.0625rem;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 2.25rem;
     -moz-column-gap: 2.25rem;
          column-gap: 2.25rem;
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.25rem;
     -moz-column-gap: 2.25rem;
          column-gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    display: none;
  }
}

.p-header__item {
  color: #ffffff;
  position: relative;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-header__item {
    font-size: 0.875rem;
  }
}
.p-header__item::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  translate: -50%;
  width: 97%;
  height: 0.0625rem;
  background: #ffffff;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-header__item:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.p-header__btn {
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
  display: inline-block;
  color: #ffffff;
}
.p-header__btn:hover {
  color: #000000;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-header__btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-imgHead {
  margin-top: -4.6875rem;
  position: relative;
  width: 100%;
  height: max(27.25rem, 35vh);
}
.p-imgHead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#1D1D1D), to(rgba(29, 29, 29, 0.2)));
  background: linear-gradient(180deg, #1D1D1D 0%, rgba(29, 29, 29, 0.2) 100%);
  z-index: 1;
}
.p-imgHead.--service {
  background: url(../img/img-header_service.jpg) no-repeat center center/cover;
}
.p-imgHead.--feature {
  background: url(../img/img-header_feature.jpg) no-repeat center center/cover;
}
.p-imgHead.--about {
  background: url(../img/img-header_about.jpg) no-repeat center center/cover;
}
.p-imgHead.--voice {
  background: url(../img/img-header_voice.jpg) no-repeat center center/cover;
}
.p-imgHead.--news {
  background: url(../img/img-header_news.jpg) no-repeat center center/cover;
}
.p-imgHead.--other {
  height: max(19.75rem, 30vh);
  background: #303030;
}
.p-imgHead.--other::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-imgHead {
    margin-top: -3.5625rem;
    height: 22rem;
  }
}

.p-imgHead__inner {
  overflow: hidden;
  position: relative;
  z-index: 2;
  width: min(1200px + 15rem, 100%);
  height: inherit;
  padding-inline: 7.5rem;
  padding-bottom: 1.4375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  row-gap: 2.5rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-imgHead__inner {
    padding-inline: 3.75rem;
    padding-bottom: 0;
    row-gap: 0.25rem;
  }
}

.p-imgHead__title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1;
}
.p-imgHead__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11.4375rem;
  translate: 0 -50%;
  height: 0.0625rem;
  background-color: #ffffff;
  width: 10.1875rem;
}
@media screen and (max-width: 767px) {
  .p-imgHead__title {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
  }
  .p-imgHead__title::before {
    width: 10.6875rem;
  }
}

.p-imgHead__en {
  font-family: "Outfit", sans-serif;
  font-size: 11.875rem;
  font-weight: 200;
  line-height: 0.55263;
  letter-spacing: -0.02em;
  white-space: nowrap;
  translate: -0.8125rem;
  height: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-imgHead__en {
    font-size: 6.25rem;
    line-height: 0.8;
    white-space: wrap;
    translate: -0.5rem 0.5rem;
    height: auto;
  }
  .p-imgHead__en.--voice {
    font-size: 4.875rem;
    translate: -0.5rem 0.3125rem;
  }
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  top: 1.0625rem;
  right: 1.875rem;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background-color: #ffffff;
  mix-blend-mode: difference;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.p-drawer__icon:hover {
  background-color: #000000;
}
.p-drawer__icon:hover .p-drawer__icon--bar {
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-drawer__icon {
    right: 1.125rem;
    width: 2.5rem;
    height: 2.5rem;
    gap: 0.25rem;
  }
}

.p-drawer__icon--bar {
  height: 1px;
  background: #000000;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p-drawer__icon--bar:nth-of-type(1) {
  width: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__icon--bar:nth-of-type(1) {
    width: 1.0625rem;
  }
}
.p-drawer__icon--bar:nth-of-type(2) {
  width: 1.125rem;
  margin-left: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__icon--bar:nth-of-type(2) {
    width: 0.75rem;
    margin-left: 0.3125rem;
  }
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 30deg;
  translate: 0 0.21875rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
    translate: 0 0.15625rem;
  }
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  width: 1.5625rem;
  margin-left: 0;
  rotate: -30deg;
  translate: 0 -0.21875rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
    width: 1.0625rem;
    translate: 0 -0.15625rem;
  }
}

.p-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #303030;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.03) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.03) calc(100% - 1px));
  background-size: 1.875rem 1.875rem;
  background-repeat: repeat;
  background-position: left top -0.875rem;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    background-size: 0.9375rem 0.9375rem;
    background-position: left top -1.4375rem;
  }
}

.p-drawer {
  translate: 0 101%;
  opacity: 0;
  -webkit-transition: translate 0.8s ease, opacity 0.5s ease-in;
  transition: translate 0.8s ease, opacity 0.5s ease-in;
}
.p-drawer.js-show {
  translate: 0;
  opacity: 1;
}

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

.p-drawer__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (max-width: 767px) {
  .p-drawer__content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.p-drawer__head {
  padding-top: 1.0625rem;
  padding-left: 3.75rem;
  height: 4.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-drawer__head {
    padding-left: 1.125rem;
    height: 3.5625rem;
  }
}

.p-drawer__logo {
  width: 10.375rem;
  height: 1.375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-drawer__logo {
    width: 7.8125rem;
    height: 1.0625rem;
  }
}

.p-drawer__items {
  width: 100%;
  max-width: 37.5rem;
  padding-inline: 3.75rem;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__items {
    margin-top: 1.625rem;
    padding-inline: 1.875rem;
    max-width: 33.75rem;
  }
}

.p-drawer__imgWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
.p-drawer__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-drawer__imgWrap {
    display: none;
  }
}

.p-drawer__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  pointer-events: none;
}
.p-drawer__img.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}

.p-drawer__flowingText {
  position: absolute;
  bottom: -1.875rem;
  left: 0;
  width: 100%;
  height: 10.625rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-drawerList {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.625rem;
  font-size: max(1.0625rem, 13.6px);
  font-weight: 500;
  line-height: 1.4705882353;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-drawerList {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-drawerList {
    font-size: 1rem;
    line-height: 1.4375;
    letter-spacing: 0.06em;
    gap: 1.0625rem;
  }
}

.p-drawerList__item {
  padding-bottom: 1.625rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.25);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
}
.p-drawerList__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #ffffff;
  scale: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: scale 0.5s ease, opacity 0.5s ease;
  transition: scale 0.5s ease, opacity 0.5s ease;
}
.p-drawerList__item.is-hover::after {
  scale: 1;
  opacity: 1;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media screen and (max-width: 767px) {
  .p-drawerList__item {
    padding-bottom: 1.0625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.625rem;
  }
}

.p-drawerList__link {
  display: inline-block;
  width: 11.25rem;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-drawerList__link {
    width: auto;
  }
}

.p-drawerList__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.1875rem 1.6875rem;
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-drawerList__sub {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-drawerList__sub {
    gap: 0.625rem 1.5rem;
  }
}

.p-drawerList__subItem {
  position: relative;
  padding-left: 0.875rem;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-drawerList__subItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 0.5rem;
  height: 0.0625rem;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-drawerList__subItem.--left {
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-drawerList__subItem.--left {
    margin-left: 0;
  }
}
.p-drawerList__subItem:hover {
  opacity: 1;
}
.p-drawerList__subItem:hover::before {
  background-color: #ffffff;
}

.p-fv {
  margin-top: 7.5625rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    margin-top: 1.9375rem;
  }
}

.p-fv__head {
  width: 100%;
  padding-inline: 4.875rem 5.625rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1200px) {
  .p-fv__head {
    padding-inline: 3rem 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__head {
    padding-inline: 1.5rem 1.875rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 0;
  }
}

.p-fv-titleWrap {
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-fv-titleWrap {
    margin-top: 0;
  }
}

.p-fv__titleEn {
  font-family: "Outfit", sans-serif;
  color: #303030;
  height: 6.5625rem;
  font-size: max(8.1875rem, 104.8px);
  font-weight: 300;
  line-height: 0.534351145;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-fv__titleEn {
    font-size: 8.1875rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-fv__titleEn {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__titleEn {
    font-size: 4.375rem;
    line-height: 0.9571;
    letter-spacing: -0.05em;
    height: auto;
  }
}

.p-fv__titleJa {
  margin-top: 0.6875rem;
  margin-left: 0.75rem;
  font-size: max(1.125rem, 14.4px);
  font-weight: 400;
  line-height: 1.7777777778;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-fv__titleJa {
    font-size: 1.125rem;
  }
}
.p-fv__titleJa span {
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-fv__titleJa {
    margin-top: 1rem;
    margin-left: 0.375rem;
    font-size: 1rem;
    line-height: 2;
  }
  .p-fv__titleJa span {
    display: block;
    margin-left: 0;
    margin-top: -0.3125rem;
  }
}

.p-fv__scrollButton {
  width: 7.5rem;
  height: 7.5rem;
  border: solid 0.0625rem #303030;
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  aspect-ratio: 1/1;
}
.p-fv__scrollButton::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 3.5rem;
  height: 3.3125rem;
  background-image: url(../img/icon-mv_allow.svg);
  background-size: cover;
  -webkit-animation: 3s 0s ease-in-out backwards infinite moveDown;
          animation: 3s 0s ease-in-out backwards infinite moveDown;
}
.p-fv__scrollButton:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .p-fv__scrollButton {
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 0.25rem;
  }
  .p-fv__scrollButton::after {
    width: 1.75rem;
    height: 1.6875rem;
  }
}

@-webkit-keyframes moveDown {
  0% {
    margin-top: -10%;
    opacity: 0;
  }
  20% {
    margin-top: 0;
    opacity: 1;
  }
  70% {
    margin-top: 0;
    opacity: 1;
  }
  to {
    margin-top: 10%;
    opacity: 0;
  }
}

@keyframes moveDown {
  0% {
    margin-top: -10%;
    opacity: 0;
  }
  20% {
    margin-top: 0;
    opacity: 1;
  }
  70% {
    margin-top: 0;
    opacity: 1;
  }
  to {
    margin-top: 10%;
    opacity: 0;
  }
}
.p-fv__imgWrap {
  margin-top: 3.4375rem;
  margin-right: 5.625rem;
  height: 43.125rem;
  width: auto;
  position: relative;
}
.p-fv__imgWrap::after {
  content: "";
  position: absolute;
  top: -3.75rem;
  right: -3.75rem;
  background: url(../img/icon-group141.svg) no-repeat;
  width: 7.5rem;
  height: 9.375rem;
  background-size: cover;
}
.p-fv__imgWrap picture {
  display: block;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-fv__imgWrap {
    margin-top: 2.5625rem;
    margin-right: 0;
    height: auto;
    aspect-ratio: 375/480;
  }
  .p-fv__imgWrap::after {
    top: -1.875rem;
    right: 0;
    background: url(../img/icon-group141_sp.svg) no-repeat;
    width: 3.75rem;
    height: 4.6875rem;
  }
}

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

.p-about {
  margin-top: 6.375rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    margin-top: 3.25rem;
  }
}

.p-about__headWrap {
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__headWrap {
    margin-left: 1.16375rem;
  }
}

.p-about__head {
  color: #3F4F8A;
  font-family: "Outfit", sans-serif;
  font-size: max(6.875rem, 88px);
  font-weight: 250;
  line-height: 0.9545454545;
  letter-spacing: -0.0509090909em;
}
@media screen and (max-width: 767px) {
  .p-about__head {
    font-size: 6.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__head {
    font-size: 3.125rem;
    font-weight: 200;
  }
}
.p-about__head.--01, .p-about__head.--02 {
  position: relative;
}
.p-about__head.--01::before, .p-about__head.--01::after, .p-about__head.--02::before, .p-about__head.--02::after {
  content: "";
  position: absolute;
  height: 0.0625rem;
  background: #303030;
  opacity: 0.25;
}
@media screen and (max-width: 767px) {
  .p-about__head.--01::before, .p-about__head.--01::after, .p-about__head.--02::before, .p-about__head.--02::after {
    height: 0.02825rem;
  }
}
.p-about__head.--01::before {
  top: 1.125rem;
  left: -3.125rem;
  width: 20.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__head.--01::before {
    top: 0.5rem;
    left: -1.16375rem;
    width: 9.0625rem;
  }
}
.p-about__head.--01::after {
  bottom: 0.75rem;
  left: 9rem;
  width: 29.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__head.--01::after {
    bottom: 0.34375rem;
    left: 4.08625rem;
    width: 13.5rem;
  }
}
.p-about__head.--02::before {
  top: 1.25rem;
  left: -3.125rem;
  width: 34.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__head.--02::before {
    top: 0.59375rem;
    left: -1.16375rem;
    width: 15.5rem;
  }
}
.p-about__head.--02::after {
  bottom: 0.75rem;
  left: 16.875rem;
  width: 28.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__head.--02::after {
    bottom: 0.3125rem;
    left: 7.64875rem;
    width: 12.75rem;
  }
}

.p-about__contentWrap {
  margin-top: 1.125rem;
  margin-left: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__contentWrap {
    margin-top: 2.375rem;
    margin-left: 0;
    padding-inline: 0.9375rem;
    display: block;
  }
}

.p-about__content {
  margin-top: 3.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    margin-top: 0;
  }
}

.p-about__title {
  translate: -1.3125rem;
  font-size: max(2rem, 25.6px);
  font-weight: 500;
  line-height: 1.3125;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 1.625rem;
    line-height: 1.615;
    translate: -1.0625rem;
  }
}

.p-about__text {
  margin-top: 2.875rem;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__text {
    margin-top: 1.125rem;
  }
}

.p-about__link {
  margin-top: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__link {
    margin-top: 2.4375rem;
    width: 100%;
    text-align: right;
  }
}

.p-about__imgWrap {
  max-width: 43.125rem;
  width: 100%;
  aspect-ratio: 690/540;
}

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

.p-about__flowingText {
  margin-top: 9.375rem;
  padding-top: 0.9375rem;
  width: 100%;
  height: 9.375rem;
  overflow: hidden;
  border-top: solid 0.0625rem #303030;
  border-bottom: solid 0.0625rem #303030;
}
@media screen and (max-width: 767px) {
  .p-about__flowingText {
    margin-top: 3.3125rem;
    padding-top: 0.46875rem;
    height: 4.6875rem;
  }
}

.p-service {
  margin-top: 10.375rem;
}
@media screen and (max-width: 767px) {
  .p-service {
    margin-top: 2.8125rem;
    overflow: visible;
  }
}

.p-service__headWrap {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .p-service__headWrap {
    margin-left: 0.9375rem;
  }
}

.p-service__wrap {
  width: 100%;
  max-width: 90rem;
  padding-inline: 1.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-service__wrap {
    padding-inline: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
  }
}

.p-service__items {
  margin-top: 4.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-service__items {
    width: 990px;
    margin-top: 2.5rem;
  }
}

.p-service__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-top: 3.75rem;
  height: 46.875rem;
  border-right: solid 0.0625rem rgba(48, 48, 48, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service__item {
    padding-top: 2.8125rem;
    height: 31.875rem;
  }
}
.p-service__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: rgba(48, 48, 48, 0.2);
}
.p-service__item:nth-of-type(1) {
  width: 32.6086956522%;
  padding-inline: 1.875rem 3.75rem;
  position: relative;
}
.p-service__item:nth-of-type(1)::after {
  content: "";
  position: absolute;
  bottom: -3.75rem;
  right: -0.0625rem;
  background-color: #EFEFEF;
  width: calc(50vw - 50%);
  height: 3.75rem;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px));
  background-size: 1.875rem 1.875rem;
  background-repeat: repeat;
  background-position: right top, right 0.0625rem top;
}
@media (max-width: 1439px) {
  .p-service__item:nth-of-type(1)::after {
    background-position: right top, right 0.625rem top;
  }
}
@media screen and (max-width: 767px) {
  .p-service__item:nth-of-type(1) {
    width: 330px;
    padding-inline: 1.875rem;
  }
  .p-service__item:nth-of-type(1)::after {
    content: none;
  }
}
.p-service__item:nth-of-type(2) {
  margin-top: 1.875rem;
  width: 34.7826086957%;
  padding-inline: 3.75rem;
  position: relative;
}
.p-service__item:nth-of-type(2)::after {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  right: -0.0625rem;
  background-color: #EFEFEF;
  width: 101%;
  height: 1.875rem;
  background-image: linear-gradient(90deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px));
  background-size: 1.875rem 1.875rem;
  background-repeat: repeat;
  background-position-x: calc(50% + 1.0625rem);
}
@media screen and (max-width: 767px) {
  .p-service__item:nth-of-type(2) {
    margin-top: 0;
    width: 330px;
    padding-inline: 1.875rem;
  }
  .p-service__item:nth-of-type(2)::after {
    content: none;
  }
}
.p-service__item:nth-of-type(3) {
  margin-top: 3.75rem;
  width: 32.6086956522%;
  padding-inline: 3.75rem 1.875rem;
  border-right: none;
}
@media screen and (max-width: 767px) {
  .p-service__item:nth-of-type(3) {
    margin-top: 0;
    width: 330px;
    padding-inline: 1.875rem;
  }
}

.p-contact {
  background-color: #303030;
  padding-block: 5.625rem;
  padding-inline: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 3.125rem 1.875rem;
    padding-inline: 1.875rem;
  }
}

.p-contact__inner {
  height: 33.75rem;
  width: min(82.5rem, 100%);
  margin-inline: auto;
  border-radius: 0.625rem;
  background-color: #ffffff;
  padding-inline: 5.625rem 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    height: auto;
    width: min(31.25rem, 100%);
    padding-inline: 1.875rem;
    padding-bottom: 2.1875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.p-contact__wrap {
  padding-top: 6.625rem;
}
@media (max-width: 1100px) {
  .p-contact__wrap {
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__wrap {
    padding-top: 1.9375rem;
  }
}

.p-contact__text {
  margin-top: 2.375rem;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
  }
}

.p-contact__link {
  margin-top: 2.125rem;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-contact__link:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-contact__link {
    text-align: center;
    margin-top: 0.9375rem;
  }
}

.p-contact__sliderWrap {
  width: 35.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__sliderWrap {
    width: calc(100% + 3.75rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5625rem;
    margin-inline: -1.875rem;
  }
}

.p-feature {
  overflow: hidden;
  position: relative;
  padding-top: 4.75rem;
  padding-bottom: 15.875rem;
  background-color: #EFEFEF;
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding-top: 4.75rem;
    padding-bottom: 4.8125rem;
  }
}
.p-feature::before {
  content: "";
  position: absolute;
  top: 11.25rem;
  right: calc(50vw - 39.375rem);
  width: 7.5rem;
  height: 7.5rem;
  background: url(../img/icon-group160.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-feature::before {
    top: 0.9375rem;
    right: 0.9375rem;
    width: 3.75rem;
    height: 3.75rem;
  }
}
.p-feature::after {
  content: "";
  position: absolute;
  bottom: 9.375rem;
  left: calc(50vw - 39.375rem);
  width: 5.625rem;
  height: 5.625rem;
  background: url(../img/icon-group184.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-feature::after {
    bottom: 0.9375rem;
    left: 0.9375rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.p-feature__headWrap {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__headWrap {
    margin-left: 0.9375rem;
  }
}

.p-feature__wrap {
  margin-top: 6.75rem;
  width: min(78.75rem, 100%);
  padding-inline: 1.875rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap {
    margin-top: 3.4175rem;
    width: min(31.25rem, 100%);
    padding-inline: 0.9375rem 0.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.77rem;
  }
}

.p-feature__imgWrap {
  width: 30%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 360/483;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-feature__imgWrap {
    width: auto;
    aspect-ratio: 250/335;
    margin-inline: 2rem 2.4375rem;
  }
}

.p-feature__imgBg {
  position: absolute;
  inset: 0;
  background: rgba(48, 48, 48, 0.4);
  border-radius: 0.625rem;
}

.p-feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-6.587deg);
          transform: rotate(-6.587deg);
  border-radius: 0.625rem;
}

.p-feature__content {
  width: 60%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__content {
    width: 100%;
  }
}

.p-feature__title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    font-size: 1.625rem;
    line-height: 1.61538;
  }
}

.p-feature__text {
  margin-top: 16.5rem;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-feature__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__text {
    margin-top: 1.125rem;
  }
}

.p-feature__link {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__link {
    margin-top: 2.4375rem;
    padding-right: 0.375rem;
  }
}

.p-feature__flowingText {
  position: absolute;
  top: 29.375rem;
  width: 100%;
  height: 6.5625rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-feature__flowingText {
    top: 23.75rem;
    height: 3.4635625rem;
  }
}

.p-feature__bottomBg {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 90rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.p-feature__bgBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}
.p-feature__bgBox:nth-of-type(1) {
  background: #303030;
  height: 3.75rem;
  position: relative;
}
.p-feature__bgBox:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50vw - 50%);
  height: 3.75rem;
  background: #303030;
}
.p-feature__bgBox:nth-of-type(2) {
  background: #303030;
  height: 1.875rem;
}
.p-voice {
  padding-block: 7.5rem 9.25rem;
  padding-inline: 1.875rem;
  background: #303030;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-block: 3.8125rem 4.1875rem;
    padding-inline: 0;
  }
}

.p-voice__swiper-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 0.0625rem rgba(255, 255, 255, 0.25);
  border-bottom: solid 0.0625rem rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 767px) {
  .p-voice__swiper-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: none;
    border-bottom: solid 0.0625rem rgba(255, 255, 255, 0.2);
  }
}

.p-voice__headWrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28.125rem;
  padding-left: 5.625rem;
  padding-top: 5.625rem;
  border-right: solid 0.0625rem rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 767px) {
  .p-voice__headWrap {
    width: 100%;
    padding-left: 1.875rem;
    padding-top: 0;
    padding-bottom: 2.25rem;
    border-bottom: solid 0.0625rem rgba(255, 255, 255, 0.2);
  }
}

.p-voice__swiper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: -1.875rem;
}
@media screen and (max-width: 767px) {
  .p-voice__swiper {
    width: 100%;
    margin-right: 0;
  }
}

.p-voice__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-voice__swiper-slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26.25rem;
          flex: 0 0 26.25rem;
  border-right: solid 0.0625rem rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 767px) {
  .p-voice__swiper-slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20.625rem;
            flex: 0 0 20.625rem;
    border-right: solid 0.0625rem rgba(255, 255, 255, 0.2);
  }
}

.p-voice__sliderBtn {
  margin-top: 16.375rem;
  height: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.p-voice__sliderBtn-prev,
.p-voice__sliderBtn-next {
  display: inline-block;
  width: 5.25rem;
  height: 1.875rem;
  cursor: pointer;
  opacity: 0.3;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-voice__sliderBtn-prev:hover,
.p-voice__sliderBtn-next:hover {
  opacity: 1;
}

.p-voice__sliderBtn-prev {
  background: url(../img/icon-allow_l.svg) no-repeat;
  background-size: contain;
}

.p-voice__sliderBtn-next {
  background: url(../img/icon-allow_r.svg) no-repeat;
  background-size: contain;
}

.p-voice___link {
  margin-top: 5.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-voice___link {
    margin-top: 2.25rem;
    padding-inline: 1.875rem;
  }
}

.p-news {
  padding-block: 6.75rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 2.875rem 3.875rem;
  }
}

.p-news__wrapper {
  width: min(75rem, 100%);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-news__wrapper {
    width: min(31.25rem, 100%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 2.4375rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-news__headWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-news__headWrap {
    padding-left: 0.9375rem;
  }
}

.p-news__list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 0.75rem;
  max-width: 900px;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    margin-top: 0;
    max-width: 100%;
  }
}

.p-news__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.75rem;
  margin-inline: auto 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-news__link {
    width: 100%;
    margin-top: 2.25rem;
    margin-inline: 0;
    padding-inline: 0.9375rem;
    text-align: center;
  }
}

.p-pageService {
  width: min(90rem, 100%);
  margin-inline: auto;
  margin-block: 7.5rem;
  position: relative;
}
.p-pageService::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: calc(100% - 3.75rem);
  height: 0.0625rem;
  background: rgba(48, 48, 48, 0.25);
}
@media (max-width: 999px) {
  .p-pageService::before {
    width: calc(100% - 7.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-pageService::before {
    width: calc(100% - 3.75rem);
  }
}
.p-pageService::after {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  right: 0;
  width: 7.5rem;
  height: 5.625rem;
  background: url(../img/icon-group161.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 999px) {
  .p-pageService::after {
    right: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pageService::after {
    bottom: -0.9375rem;
    right: 1.875rem;
    width: 3.75rem;
    height: 2.8125rem;
  }
}
@media (max-width: 999px) {
  .p-pageService {
    width: min(600px + 7.5rem, 100%);
    padding-inline: 3.75rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-pageService {
    padding-inline: 1.875rem;
    margin-block: 3.75rem;
  }
}

.p-pageService__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
  position: relative;
}
@media (max-width: 999px) {
  .p-pageService__box {
    padding-top: 1.875rem;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.875rem;
  }
}
.p-pageService__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: calc(100% - 3.75rem);
  height: 0.0625rem;
  background: rgba(48, 48, 48, 0.25);
}
@media (max-width: 999px) {
  .p-pageService__box::before {
    width: 100%;
  }
}
.p-pageService__box:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-pageService__box:nth-child(even) .p-pageService__wrap {
  padding-left: 0;
  padding-right: 7.5rem;
}
.p-pageService__box:nth-child(1)::after {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: 0;
  width: 5.625rem;
  height: 5.625rem;
  background: url(../img/icon-group190.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 999px) {
  .p-pageService__box:nth-child(1)::after {
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-pageService__box:nth-child(1)::after {
    top: -0.9375rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.p-pageService__box:nth-child(2)::after {
  content: "";
  position: absolute;
  top: -1.875rem;
  right: 0;
  width: 5.625rem;
  height: 5.625rem;
  background: url(../img/icon-group185.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-pageService__box:nth-child(2)::after {
    top: -0.9375rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.p-pageService__box:nth-child(2) .p-pageService__head::before {
  content: "02";
}
.p-pageService__box:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1.875rem;
  width: 7.5rem;
  height: 5.625rem;
  background: url(../img/icon-group227.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 999px) {
  .p-pageService__box:nth-child(3)::after {
    right: -1.875rem;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-pageService__box:nth-child(3)::after {
    top: -0.9375rem;
    right: -0.9375rem;
    width: 3.75rem;
    height: 2.8125rem;
  }
}
.p-pageService__box:nth-child(3) .p-pageService__head::before {
  content: "03";
}
.p-pageService__box:nth-child(4)::after {
  content: "";
  position: absolute;
  top: -1.875rem;
  right: 0;
  width: 5.625rem;
  height: 5.625rem;
  background: url(../img/icon-group185.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-pageService__box:nth-child(4)::after {
    top: -0.9375rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.p-pageService__box:nth-child(4) .p-pageService__head::before {
  content: "04";
}
.p-pageService__box:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1.875rem;
  width: 7.5rem;
  height: 5.625rem;
  background: url(../img/icon-group227.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 999px) {
  .p-pageService__box:nth-child(5)::after {
    right: -1.875rem;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-pageService__box:nth-child(5)::after {
    top: -0.9375rem;
    right: -0.9375rem;
    width: 3.75rem;
    height: 2.8125rem;
  }
}
.p-pageService__box:nth-child(5) .p-pageService__head::before {
  content: "05";
}

.p-pageService__wrap {
  width: min(50%, 660px);
  padding-left: 7.5rem;
  padding-block: 7.0625rem 7.5rem;
}
@media (max-width: 999px) {
  .p-pageService__wrap {
    display: contents;
  }
}

.p-pageService__img {
  width: 45.8333333333%;
  height: auto;
}
.p-pageService__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 999px) {
  .p-pageService__img {
    width: 100%;
    aspect-ratio: 16/9;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-pageService__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.0625rem;
  padding-left: 7.625rem;
  position: relative;
}
.p-pageService__head::before {
  content: "01";
  position: absolute;
  top: -0.4375rem;
  left: 0;
  font-family: "Outfit", sans-serif;
  color: #B7C8D0;
  font-size: max(5.0531875rem, 64.6808px);
  font-weight: 250;
  line-height: 1;
  letter-spacing: 0.0802216423em;
}
@media screen and (max-width: 767px) {
  .p-pageService__head::before {
    font-size: 5.0531875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pageService__head::before {
    font-size: 4.5rem;
  }
}
@media (max-width: 999px) {
  .p-pageService__head {
    padding-left: 10.3125rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-pageService__head {
    padding-left: 6.75rem;
  }
}

.p-pageService__title {
  font-size: max(2rem, 25.6px);
  font-weight: 500;
  line-height: 1.3125;
}
@media screen and (max-width: 767px) {
  .p-pageService__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pageService__title {
    font-size: 1.625rem;
  }
}

.p-pageService__en {
  font-family: "Outfit", sans-serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 250;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-pageService__en {
    font-size: 0.875rem;
  }
}

.p-pageService__content {
  margin-top: 2.5625rem;
}
@media (max-width: 999px) {
  .p-pageService__content {
    margin-top: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-pageService__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.875rem;
}

.p-pageService__item {
  display: block;
  padding-bottom: 0.8125rem;
  border-bottom: solid 0.0625rem rgba(48, 48, 48, 0.2);
  color: #3F4F8A;
  position: relative;
  font-size: max(1.125rem, 14.4px);
  font-weight: 500;
  line-height: 1.7777777778;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-pageService__item {
    font-size: 1.125rem;
  }
}
.p-pageService__item:nth-child(1)::after, .p-pageService__item:nth-child(2)::after, .p-pageService__item:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0.46875rem;
  right: 0;
  height: 0.9375rem;
}
.p-pageService__item:nth-child(1) {
  padding-right: 0.9375rem;
}
.p-pageService__item:nth-child(1)::after {
  width: 0.9375rem;
  background: url(../img/icon-b.svg) no-repeat;
}
.p-pageService__item:nth-child(2) {
  padding-right: 1.875rem;
}
.p-pageService__item:nth-child(2)::after {
  width: 1.875rem;
  background: url(../img/icon-gb.svg) no-repeat;
  background-size: contain;
}
.p-pageService__item:nth-child(3) {
  padding-right: 2.8125rem;
}
.p-pageService__item:nth-child(3)::after {
  width: 2.8125rem;
  background: url(../img/icon-ggb.svg) no-repeat;
  background-size: contain;
}

.p-pageService__text {
  margin-top: 1.8125rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.142857;
  letter-spacing: 0.04em;
}
@media (max-width: 999px) {
  .p-pageService__text {
    margin-top: 0;
    margin-bottom: 3.75rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-pageFeature {
  width: min(90rem, 100%);
  margin-inline: auto;
  margin-top: 5.625rem;
  padding-bottom: 7.5rem;
  color: #ffffff;
  position: relative;
}
.p-pageFeature::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 0.0625rem;
  background: #ffffff;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 999px) {
  .p-pageFeature {
    width: min(600px + 7.5rem, 100%);
    padding-inline: 3.75rem;
    margin-top: 7.5rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-pageFeature {
    padding-inline: 1.875rem;
    margin-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-pageFeature__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 3.75rem;
}
@media (max-width: 999px) {
  .p-pageFeature__box {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 3.4375rem;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-pageFeature__box {
    row-gap: 1.875rem;
  }
}
.p-pageFeature__box.--01 {
  -webkit-column-gap: 5.125rem;
     -moz-column-gap: 5.125rem;
          column-gap: 5.125rem;
  margin-left: 1.875rem;
}
.p-pageFeature__box.--01 .p-pageFeature__wrap {
  width: 458px;
}
@media (max-width: 999px) {
  .p-pageFeature__box.--01 {
    margin-left: 0;
  }
}
.p-pageFeature__box.--02 {
  margin-top: 7.5rem;
  margin-right: 0.375rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 5.625rem;
     -moz-column-gap: 5.625rem;
          column-gap: 5.625rem;
}
.p-pageFeature__box.--02 .p-pageFeature__wrap {
  width: 474px;
}
@media (max-width: 999px) {
  .p-pageFeature__box.--02 {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-pageFeature__box.--02 {
    margin-top: 5.625rem;
  }
}

@media (max-width: 999px) {
  .p-pageFeature__wrap {
    display: contents;
  }
}

.p-pageFeature__img {
  width: 35.625rem;
  height: auto;
  position: relative;
}
.p-pageFeature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-pageFeature__img.--01 {
  aspect-ratio: 570/510;
}
.p-pageFeature__img.--02 {
  aspect-ratio: 570/480;
}
@media (max-width: 999px) {
  .p-pageFeature__img {
    width: 70%;
    margin-inline: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-pageFeature__head {
  padding-top: 4.3125rem;
}
@media (max-width: 999px) {
  .p-pageFeature__head {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 0;
  }
}

.p-pageFeature__en {
  color: #59B9C7;
  font-family: "Outfit", sans-serif;
  padding-left: 1.875rem;
  position: relative;
  font-size: max(1.125rem, 14.4px);
  font-weight: 300;
  line-height: 1.3888888889;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-pageFeature__en {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pageFeature__en {
    font-size: 1rem;
  }
}
.p-pageFeature__en::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #59B9C7;
}
@media screen and (max-width: 767px) {
  .p-pageFeature__en::before {
    top: 50%;
    translate: 0 -50%;
  }
}

.p-pageFeature__title {
  margin-top: 0.9375rem;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.22727;
}
@media screen and (max-width: 767px) {
  .p-pageFeature__title {
    margin-top: 0.3125rem;
    font-size: 1.625rem;
    line-height: 1.615;
  }
}

.p-pageFeature__titleLine {
  position: relative;
}
.p-pageFeature__titleLine.--01::before, .p-pageFeature__titleLine.--01::after, .p-pageFeature__titleLine.--02::before, .p-pageFeature__titleLine.--02::after, .p-pageFeature__titleLine.--03::before, .p-pageFeature__titleLine.--03::after, .p-pageFeature__titleLine.--04::before, .p-pageFeature__titleLine.--04::after {
  content: "";
  position: absolute;
  height: 0.0625rem;
  background: #ffffff;
  opacity: 0.2;
}
.p-pageFeature__titleLine.--01::before {
  top: 0.6875rem;
  left: -1.375rem;
  width: 7.125rem;
}
@media screen and (max-width: 767px) {
  .p-pageFeature__titleLine.--01::before {
    left: -0.625rem;
    width: 5.3125rem;
  }
}
.p-pageFeature__titleLine.--01::after {
  top: 3.0625rem;
  left: 3.25rem;
  width: 6rem;
}
@media (max-width: 999px) {
  .p-pageFeature__titleLine.--01::after {
    content: none;
  }
}
.p-pageFeature__titleLine.--02::before {
  left: -0.625rem;
  bottom: 2.8125rem;
  width: 14.375rem;
}
@media (max-width: 999px) {
  .p-pageFeature__titleLine.--02::before {
    content: none;
  }
}
.p-pageFeature__titleLine.--02::after {
  left: 11rem;
  bottom: 0.4375rem;
  width: 14.5625rem;
}
@media screen and (max-width: 767px) {
  .p-pageFeature__titleLine.--02::after {
    left: 7.5rem;
    width: 8.75rem;
  }
}
.p-pageFeature__titleLine.--03::before {
  top: 0.6875rem;
  left: -1.375rem;
  width: 7.4375rem;
}
@media screen and (max-width: 767px) {
  .p-pageFeature__titleLine.--03::before {
    left: -0.625rem;
    width: 5.3125rem;
  }
}
.p-pageFeature__titleLine.--03::after {
  top: 3.0625rem;
  left: 7.5625rem;
  width: 6.75rem;
}
@media (max-width: 999px) {
  .p-pageFeature__titleLine.--03::after {
    content: none;
  }
}
.p-pageFeature__titleLine.--04 {
  padding-left: 2.625rem;
}
@media (max-width: 999px) {
  .p-pageFeature__titleLine.--04 {
    padding-left: 0;
  }
}
.p-pageFeature__titleLine.--04::before {
  bottom: 2.8125rem;
  left: 0.5rem;
  width: 10.0625rem;
}
@media (max-width: 999px) {
  .p-pageFeature__titleLine.--04::before {
    content: none;
  }
}
.p-pageFeature__titleLine.--04::after {
  bottom: 0.4375rem;
  left: 8.4375rem;
  width: 9.125rem;
}
@media (max-width: 999px) {
  .p-pageFeature__titleLine.--04::after {
    left: 5.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pageFeature__titleLine.--04::after {
    left: 3.125rem;
    width: 6.875rem;
  }
}

.p-pageFeature__text {
  margin-top: 1.375rem;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.09375em;
}
@media screen and (max-width: 767px) {
  .p-pageFeature__text {
    font-size: 1rem;
  }
}
@media (max-width: 999px) {
  .p-pageFeature__text {
    margin-top: 0;
    font-size: 14px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 767px) {
  .p-pageFeature__text {
    font-size: 14px;
  }
}

.p-pageFeature__flowingText {
  color: #ffffff;
  margin-top: 5.625rem;
  margin-inline: calc(50% - 50vw);
  padding-top: 0.9375rem;
  width: auto;
  height: 9.375rem;
  overflow: hidden;
  border-top: solid 0.0625rem #ffffff;
  border-bottom: solid 0.0625rem #ffffff;
}
@media screen and (max-width: 767px) {
  .p-pageFeature__flowingText {
    margin-top: 3.3125rem;
    padding-top: 0.46875rem;
    height: 4.6875rem;
  }
}

.p-pageAbout {
  width: min(90rem, 100%);
  margin-inline: auto;
  margin-top: 6.625rem;
}
@media screen and (max-width: 767px) {
  .p-pageAbout {
    margin-top: 3.875rem;
  }
}

.p-pageAbout__message {
  position: relative;
  z-index: 2;
}
@media (max-width: 999px) {
  .p-pageAbout__message {
    width: min(600px + 7.5rem, 100%);
    padding-inline: 3.75rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-pageAbout__message {
    padding-inline: 1.875rem;
  }
}

.p-pageAbout__m-head {
  width: min(1200px + 7.5rem, 100%);
  padding-inline: 3.75rem;
  margin-inline: auto;
}
@media (max-width: 999px) {
  .p-pageAbout__m-head {
    padding-inline: 0;
  }
}

.p-pageAbout__m-wrap {
  margin-top: -0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 999px) {
  .p-pageAbout__m-wrap {
    margin-top: 2.6875rem;
    margin-bottom: 5.625rem;
    padding-block: 1.875rem 3.75rem;
    border-top: solid 0.0625rem rgba(29, 29, 29, 0.25);
    border-bottom: solid 0.0625rem rgba(29, 29, 29, 0.25);
    position: relative;
    display: grid;
    row-gap: 1.875rem;
    grid-template-columns: 1fr;
  }
  .p-pageAbout__m-wrap::before {
    content: "";
    position: absolute;
    top: -1.9375rem;
    right: 0;
    width: 7.5rem;
    height: 7.5rem;
    background: url(../img/icon-group163.svg) no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 999px) and (max-width: 767px) {
  .p-pageAbout__m-wrap::before {
    top: -0.9375rem;
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media (max-width: 999px) {
  .p-pageAbout__m-wrap::after {
    content: "";
    position: absolute;
    bottom: -1.9375rem;
    left: 0;
    width: 5.625rem;
    height: 5.625rem;
    background: url(../img/icon-group184.svg) no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 999px) and (max-width: 767px) {
  .p-pageAbout__m-wrap::after {
    bottom: -0.9375rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pageAbout__m-wrap {
    row-gap: 1.5rem;
    margin-top: 2.3125rem;
    margin-bottom: 3.75rem;
    padding-block: 2.8125rem;
  }
}

.p-pageAbout__m-img {
  width: 50%;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  border-right: solid 0.0625rem rgba(29, 29, 29, 0.25);
}
.p-pageAbout__m-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-pageAbout__m-img::before {
  content: "";
  position: absolute;
  left: 1.875rem;
  top: 0;
  width: calc(100% - 1.875rem);
  height: 0.0625rem;
  background-color: rgba(29, 29, 29, 0.25);
}
.p-pageAbout__m-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -3.75rem;
  width: 5.625rem;
  height: 5.625rem;
  background: url(../img/icon-group184.svg) no-repeat;
  background-size: contain;
  z-index: 3;
}
@media (max-width: 999px) {
  .p-pageAbout__m-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    aspect-ratio: 3/2;
    border-right: none;
  }
  .p-pageAbout__m-img::before, .p-pageAbout__m-img::after {
    content: none;
  }
}

.p-pageAbout__m-contentWrap {
  width: 50%;
  height: auto;
  aspect-ratio: 1;
  margin-top: 1.875rem;
  position: relative;
  border-bottom: solid 0.0625rem rgba(29, 29, 29, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FCFAFA;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px));
  background-size: 1.875rem 1.875rem;
  background-repeat: repeat;
  background-position: left top, left top;
}
.p-pageAbout__m-contentWrap::before {
  content: "";
  position: absolute;
  right: 1.875rem;
  top: 0;
  width: calc(100% - 1.875rem);
  height: 0.0625rem;
  background-color: rgba(29, 29, 29, 0.25);
}
.p-pageAbout__m-contentWrap::after {
  content: "";
  position: absolute;
  top: -1.875rem;
  right: 0;
  width: 7.5rem;
  height: 7.5rem;
  background: url(../img/icon-group163.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 999px) {
  .p-pageAbout__m-contentWrap {
    display: contents;
  }
  .p-pageAbout__m-contentWrap::before, .p-pageAbout__m-contentWrap::after {
    content: none;
  }
}

.p-pageAbout__m-content {
  width: min(510px + 9.375rem, 100%);
  padding-inline: 3.75rem 5.625rem;
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media (max-width: 999px) {
  .p-pageAbout__m-content {
    display: contents;
  }
}

.p-pageAbout__m-title {
  color: #3F4F8A;
  font-size: max(2rem, 25.6px);
  font-weight: 500;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__m-title {
    font-size: 2rem;
  }
}
@media (max-width: 999px) {
  .p-pageAbout__m-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-pageAbout__m-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-pageAbout__m-text {
  margin-top: 2.125rem;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__m-text {
    font-size: 1rem;
  }
}
@media (max-width: 999px) {
  .p-pageAbout__m-text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
    line-height: 1.8;
  }
}

.p-pageAbout__m-name {
  margin-top: 2.2125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 1.3725rem;
     -moz-column-gap: 1.3725rem;
          column-gap: 1.3725rem;
  margin-left: auto;
}
.p-pageAbout__m-name span {
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 2.2857142857;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__m-name span {
    font-size: 0.875rem;
  }
}
@media (max-width: 999px) {
  .p-pageAbout__m-name {
    margin-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-pageAbout__m-sign {
  width: 120px;
  height: 27.5px;
  translate: 0 -0.0375rem;
}

.p-pageAbout__values {
  margin-top: -1.875rem;
  height: 52.5rem;
  background: url(../img/img-page-about-02.jpg) no-repeat center bottom/cover;
  position: relative;
  overflow: hidden;
}
.p-pageAbout__values::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px));
  background-size: 1.875rem 1.875rem;
  background-repeat: repeat;
  background-position: left top, left top;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__values::before {
    background: rgba(48, 48, 48, 0.2);
    pointer-events: none;
  }
}
@media (max-width: 999px) {
  .p-pageAbout__values {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-pageAbout__values {
    height: 26.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-pageAbout__v-bgBox {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.875rem;
  width: 50%;
  background: #FCFAFA;
  z-index: 0;
}

.p-pageAbout__v-wrapper {
  position: absolute;
  right: 7.5rem;
  bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__v-wrapper {
    position: static;
    width: 100%;
    padding-inline: 1.875rem;
    z-index: 2;
  }
}

.p-pageAbout__v-title {
  padding-left: 1.875rem;
  position: relative;
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 2.625;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__v-title {
    font-size: 1rem;
  }
}
.p-pageAbout__v-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  height: 0.9375rem;
  width: 0.9375rem;
  background: #3F4F8A;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__v-title {
    color: #ffffff;
  }
}

@media screen and (max-width: 767px) {
  .p-pageAbout__v-subTitle {
    color: #ffffff;
    height: 3.6875rem;
    font-size: 3.6875rem;
    font-weight: 200;
    line-height: 0.99859;
    margin-top: -0.3125rem;
    white-space: nowrap;
  }
}

.p-pageAbout__v-text {
  margin-top: 0.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 0.692307;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__v-text {
    margin-top: 2.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.125rem;
  }
}
@media (max-width: 450px) {
  .p-pageAbout__v-text {
    font-size: 0.9375rem;
  }
}

.p-pageAbout__v-textBg {
  background-color: #3F4F8A;
  padding-block: 1.3125rem;
}
.p-pageAbout__v-textBg:nth-child(1) {
  padding-left: 1.1875rem;
  padding-right: 0.1875rem;
}
.p-pageAbout__v-textBg:nth-child(2) {
  padding-left: 1.1875rem;
  padding-right: 0.1875rem;
}
.p-pageAbout__v-textBg:nth-child(3) {
  padding-left: 1.1875rem;
  padding-right: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__v-textBg {
    padding-block: 0.9375rem;
  }
  .p-pageAbout__v-textBg:nth-child(1) {
    padding-left: 0.875rem;
    padding-right: 0.1875rem;
  }
  .p-pageAbout__v-textBg:nth-child(2) {
    padding-left: 0.875rem;
    padding-right: 0.1875rem;
  }
  .p-pageAbout__v-textBg:nth-child(3) {
    padding-left: 0.875rem;
    padding-right: 0.1875rem;
  }
}
@media (max-width: 450px) {
  .p-pageAbout__v-textBg {
    padding-block: 0.8125rem;
  }
  .p-pageAbout__v-textBg:nth-child(1) {
    padding-left: 0.75rem;
    padding-right: 0.125rem;
  }
  .p-pageAbout__v-textBg:nth-child(2) {
    padding-left: 0.75rem;
    padding-right: 0.125rem;
  }
  .p-pageAbout__v-textBg:nth-child(3) {
    padding-left: 0.75rem;
    padding-right: 0.125rem;
  }
}

.p-pageAbout__v-titleWrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 7.5rem;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid #ffffff;
}

.p-pageAbout__v-titleEn {
  position: absolute;
  top: -0.9375rem;
  left: 0.375rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  font-size: 13.75rem;
  font-weight: 200;
  line-height: 0.47727;
  letter-spacing: -0.05em;
  z-index: 2;
}

.p-pageAbout__company {
  margin-block: 4.75rem 7.4375rem;
  width: min(1200px + 7.5rem, 100%);
  padding-inline: 3.75rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5.625rem;
     -moz-column-gap: 5.625rem;
          column-gap: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__company {
    margin-block: 3.75rem;
    padding-inline: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-pageAbout__c-content {
  margin-top: 2.75rem;
  width: 630px;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__c-content {
    margin-top: 2.5625rem;
    margin-inline: -0.9375rem;
    width: calc(100% + 1.875rem);
  }
}

.p-pageAbout__access {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
}
@media (max-width: 999px) {
  .p-pageAbout__access {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-pageAbout__access {
    padding-top: 2.8125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-pageAbout__access::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 0.0625rem;
  top: 0;
  left: 50%;
  translate: -50%;
  background-color: rgba(29, 29, 29, 0.25);
}

.p-pageAbout__a-content {
  width: 39.5833333333%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__a-content {
    width: 100%;
  }
}

.p-pageAbout__a-inner {
  margin-top: 8.5rem;
  padding-inline: 3.75rem 5.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 999px) {
  .p-pageAbout__a-inner {
    margin-top: 0;
    -webkit-padding-end: 3.75rem;
            padding-inline-end: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pageAbout__a-inner {
    padding-inline: 1.875rem;
    margin-inline: 0;
  }
}

.p-pageAbout__a-address {
  margin-top: 2.3125rem;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__a-address {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pageAbout__a-address {
    margin-bottom: 1.875rem;
  }
}

.p-pageAbout__a-map {
  width: calc(60.4166666667% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
  height: 31.875rem;
}
@media screen and (max-width: 767px) {
  .p-pageAbout__a-map {
    width: 100%;
    margin-right: 0;
    height: 22.5rem;
  }
}
.p-pageAbout__a-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archiveVoice {
  position: relative;
  width: min(90rem, 100%);
  margin-inline: auto;
  padding-block: 5.625rem 5.9375rem;
}
.p-archiveVoice::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 100vw;
  height: 0.0625rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-archiveVoice {
    padding-block: 3.75rem 4.0625rem;
  }
}
@media (max-width: 599px) {
  .p-archiveVoice {
    width: min(28.125rem, 100%);
    margin-inline: auto;
  }
}

.p-archiveVoice__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .p-archiveVoice__items {
    grid-template-columns: 1fr;
  }
}

.p-archiveVoice__item {
  position: relative;
}
.p-archiveVoice__item:nth-child(1)::after, .p-archiveVoice__item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.0625rem;
  width: 0.0625rem;
  height: 1.875rem;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 599px) {
  .p-archiveVoice__item:nth-child(1)::after, .p-archiveVoice__item:nth-child(2)::after {
    content: none;
  }
}
.p-archiveVoice__item:nth-child(3n+1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.875rem;
  width: calc(100% - 1.875rem);
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__item:nth-child(3n+1)::before {
    content: none;
  }
}
.p-archiveVoice__item:nth-child(3n+2) {
  margin-block: 1.875rem -1.875rem;
  border-top: solid 0.0625rem rgba(255, 255, 255, 0.2);
  border-left: solid 0.0625rem rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__item:nth-child(3n+2) {
    margin-block: 0;
    border-top: none;
    border-left: none;
  }
}
.p-archiveVoice__item:nth-child(3n+3) {
  margin-block: 3.75rem -3.75rem;
  border-left: solid 0.0625rem rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__item:nth-child(3n+3) {
    margin-block: 0;
    border-left: none;
  }
}
.p-archiveVoice__item:nth-child(3n+3)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.875rem;
  width: calc(100% - 1.875rem);
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__item:nth-child(3n+3)::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__item:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.875rem;
    width: calc(100% - 1.875rem);
    height: 0.0625rem;
    background: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 767px) and (max-width: 599px) {
  .p-archiveVoice__item:nth-child(odd)::before {
    left: 50%;
    translate: -50%;
  }
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__item:nth-child(even) {
    margin-block: 1.875rem -1.875rem;
    border-left: solid 0.0625rem rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 767px) and (max-width: 599px) {
  .p-archiveVoice__item:nth-child(even) {
    border-left: none;
    margin-block: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__item:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 1.875rem);
    height: 0.0625rem;
    background: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 767px) and (max-width: 599px) {
  .p-archiveVoice__item:nth-child(even)::before {
    left: 50%;
    translate: -50%;
  }
}

.p-archiveVoice__pagination {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-archiveVoice__pagination {
    margin-top: 2.1875rem;
  }
}

.p-voiceArticle {
  width: min(800px + 7.5rem, 100%);
  padding-inline: 3.75rem;
  margin-inline: auto;
  padding-block: 8.75rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle {
    width: min(37.5rem, 100%);
    padding-inline: 1.875rem;
    padding-block: 3.8125rem 4.1875rem;
  }
}

.p-voiceArticle__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4375rem;
}

.p-voiceArticle__date {
  font-family: "Outfit", sans-serif;
  font-size: max(1rem, 12.8px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__date {
    font-size: 1rem;
  }
}

.p-voiceArticle__title {
  font-size: max(2rem, 25.6px);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-voiceArticle__img {
  margin-top: 1.1875rem;
  position: relative;
  width: 100%;
  aspect-ratio: 800/390;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__img {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 449px) {
  .p-voiceArticle__img {
    aspect-ratio: 1/1;
  }
}
.p-voiceArticle__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.p-voiceArticle__img figcaption {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  padding: 1.75rem;
  width: 100%;
  height: auto;
  color: #ffffff;
  font-size: max(1.375rem, 17.6px);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__img figcaption {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__img figcaption {
    padding: 0.875rem;
    font-size: 1.125rem;
  }
}
.p-voiceArticle__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(48, 48, 48, 0)), to(#303030));
  background: linear-gradient(180deg, rgba(48, 48, 48, 0) 0%, #303030 100%);
  border-radius: 0.625rem;
}

.p-voiceArticle__question {
  position: relative;
  margin-top: 3.75rem;
  padding-bottom: 2rem;
  color: #3F4F8A;
  font-size: max(1.25rem, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__question {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__question {
    margin-top: 2.8125rem;
    font-size: 1.125rem;
  }
}
.p-voiceArticle__question::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.3125rem;
  height: 0.0625rem;
  background: rgba(29, 29, 29, 0.25);
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.p-voiceArticle__question::after {
  content: "";
  position: absolute;
  bottom: 0.875rem;
  left: 1rem;
  width: calc(100% - 1rem);
  height: 0.0625rem;
  background: rgba(29, 29, 29, 0.25);
}

.p-voiceArticle__answer {
  margin-top: 1.875rem;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__answer {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__answer {
    margin-top: 1.125rem;
  }
}

.p-voiceArticle__client {
  margin-top: 3.75rem;
  text-align: right;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__client {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__client {
    margin-top: 2.8125rem;
  }
}

.p-voiceArticle___link {
  text-align: center;
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle___link {
    margin-top: 5rem;
  }
}

.p-voiceArticle__other {
  padding-block: 6.625rem 7.5rem;
  background: #EFEFEF;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(29, 29, 29, 0.03) calc(100% - 1px));
  background-size: 1.875rem 1.875rem;
  background-repeat: repeat;
  background-position-x: calc(50% + 0.9375rem);
  background-position-y: 0;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__other {
    padding-block: 2.875rem 3.75rem;
    background-size: 0.9375rem 0.9375rem;
    background-position-x: 50%;
  }
}

.p-voiceArticle__otherInner {
  width: min(82.5rem, 100%);
  padding-inline: 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__otherInner {
    padding-inline: 1.875rem;
  }
}

.p-voiceArticle__otherList {
  margin-top: 4.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__otherList {
    width: min(28.125rem, 100%);
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.8125rem;
  }
}

.p-voiceArticle__otherItem:nth-child(3) {
  border-right: solid 0.0625rem rgba(29, 29, 29, 0.25);
}
@media screen and (max-width: 767px) {
  .p-voiceArticle__otherItem:nth-child(3) {
    border-right: none;
  }
}

.p-single {
  width: min(1200px + 7.5rem, 100%);
  padding-inline: 3.75rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 5.625rem;
     -moz-column-gap: 5.625rem;
          column-gap: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-inline: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-single__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-block: 6.5rem 6.875rem;
  padding-right: 5.625rem;
}
@media (max-width: 1229px) {
  .p-single__content {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-single__content {
    padding-block: 3.75rem;
  }
}
.p-single__content.--archive {
  padding-right: 0;
  padding-block: 9.375rem 9.6875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content.--archive {
    width: min(31.25rem, 100%);
    margin-inline: auto;
    padding-block: 3.75rem 0;
  }
}

.p-single__sidebar {
  padding-top: 5.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 13.125rem;
}
@media screen and (max-width: 767px) {
  .p-single__sidebar {
    padding-top: 0;
    width: min(31.25rem, 100%);
    margin-inline: auto;
  }
}
.p-single__sidebar.--archive {
  padding-top: 7.875rem;
}
.p-single__sidebar.--archive .p-single__sideContent {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-single__sidebar.--archive {
    padding-top: 3.75rem;
  }
}

.p-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625rem;
}

.p-single__meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}

.p-single__category {
  display: inline-block;
  padding: 0.125rem 0.8125rem;
  color: #ffffff;
  background-color: #1D1D1D;
  border-radius: 0.75rem;
  font-size: max(0.75rem, 9.6px);
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-single__category {
    font-size: 0.75rem;
  }
}

.p-single__date {
  font-family: "Outfit", sans-serif;
  font-size: max(1rem, 12.8px);
  font-weight: 300;
  line-height: 0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-size: 1rem;
  }
}

.p-single__title {
  position: relative;
  padding-bottom: 0.9375rem;
  font-size: max(2rem, 25.6px);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-bottom: 0.625rem;
  }
}
.p-single__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: #1D1D1D;
}

.p-single__eyecatch {
  margin-top: 3.75rem;
  width: 100%;
  aspect-ratio: 810/390;
}
@media screen and (max-width: 767px) {
  .p-single__eyecatch {
    margin-top: 1.875rem;
  }
}
.p-single__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-single__footer {
  margin-top: 5.375rem;
  text-align: center;
}

.p-single__sideTitle {
  font-family: "Outfit", sans-serif;
  translate: -0.375rem;
  font-size: max(4.375rem, 56px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-single__sideTitle {
    font-size: 4.375rem;
  }
}

.p-single__sideContent {
  margin-top: 2.25rem;
}

.p-single__pagination {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-single__pagination {
    margin-top: 2.8125rem;
  }
}

.p-page {
  padding-block: 6.75rem 7.125rem;
}
@media screen and (max-width: 767px) {
  .p-page {
    padding-block: 3.75rem;
  }
}

.p-page__content {
  width: min(810px + 7.5rem, 100%);
  padding-inline: 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-page__content {
    padding-inline: 1.875rem;
  }
}

.p-pageContact {
  padding-block: 5.625rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-pageContact {
    padding-block: 3.75rem 5.625rem;
  }
}
.p-pageContact.--thanks {
  height: 80vh;
}

.p-pageContact__content {
  width: min(800px + 7.5rem, 100%);
  padding-inline: 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-pageContact__content {
    padding-inline: 1.875rem;
  }
}

.p-footer {
  width: min(1200px + 7.5rem, 100%);
  padding-inline: 3.75rem;
  margin-inline: auto;
  color: #ffffff;
  padding-top: 1.4375rem;
  padding-bottom: 8.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer {
    width: min(500px + 3.75rem, 100%);
    padding-inline: 1.875rem;
    padding-top: 0.9375rem;
    padding-bottom: 1.625rem;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__wrapper {
    display: contents;
  }
}

.p-footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14rem;
  height: 3.25rem;
  padding-bottom: 0.1875rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 12.25rem;
    height: 2.8125rem;
  }
}
.p-footer__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-footer__content {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    margin-top: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-footer__address {
  translate: -0.125rem;
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 0.875rem;
    line-height: 1.71429;
    translate: 0;
  }
}

.p-footer__copy {
  display: block;
  margin-top: 1.125rem;
  opacity: 0.7;
  font-size: max(0.75rem, 9.6px);
  font-weight: 400;
  line-height: 1.4166666667;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    text-align: center;
    margin-top: 2.25rem;
    font-size: 0.625rem;
    line-height: 1.4;
  }
}

.p-footer__policy {
  position: relative;
}
.p-footer__policy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.375rem;
  width: 100%;
  height: 0.0625rem;
  background-color: #ffffff;
  opacity: 0.7;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-footer__policy:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 767px) {
  .p-footer__nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-footerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-footerNav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.0625rem;
    border-top: solid 0.0625rem rgba(255, 255, 255, 0.25);
    padding-top: 1.0625rem;
  }
}

.p-footerNav__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.25rem;
}
.p-footerNav__group.--15 {
  row-gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-footerNav__group.--15 {
    row-gap: 1.0625rem;
  }
}
.p-footerNav__group.--30 {
  row-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footerNav__group.--30 {
    row-gap: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footerNav__group {
    row-gap: 1.0625rem;
  }
}

.p-footerNav__subGroup {
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footerNav__subGroup {
    margin-top: 0.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-footerNav__title {
  font-size: max(1rem, 12.8px);
  font-weight: 500;
  line-height: 1.4375;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-footerNav__title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footerNav__title {
    padding-bottom: 0.96875rem;
    border-bottom: solid 0.0625rem rgba(255, 255, 255, 0.25);
  }
}

.p-footerNav__item {
  height: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 0.875rem;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.4666666667;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-footerNav__item {
    font-size: 0.9375rem;
  }
}
.p-footerNav__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 0.5rem;
  height: 0.0625rem;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-footerNav__item:hover {
  opacity: 1;
}
.p-footerNav__item:hover::before {
  background-color: #ffffff;
}

.p-footerNav__titleLink {
  height: 1.4375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-footerNav__titleLink::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  translate: -50%;
  width: 100%;
  height: 0.0625rem;
  background: #ffffff;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-footerNav__titleLink:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.u-imgFilter {
  position: relative;
  overflow: hidden;
}
.u-imgFilter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(48, 48, 48, 0.03);
  border-radius: 0.625rem;
  pointer-events: none;
}
.u-imgFilter.--01::after {
  background: rgba(48, 48, 48, 0.01);
}
.u-imgFilter.--05::after {
  background: rgba(48, 48, 48, 0.05);
}
.u-imgFilter.--no-radius::after {
  border-radius: 0;
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .u-wd {
    display: none !important;
  }
}
.u-font {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Outfit", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}