@charset "UTF-8";
:root {
  /* color */
  --main: #0D3583;
  --white: #fff;
  --black: #141414;
  --gray: #F0F0F5;
  --red: #F34545;
  --blue: #2E63DB;
  --lightblue: #F6F6F9;
  --orange: #FD9230;
  --pink: #D448F5;
  --copyright: #9193A3;
  --shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  --gray-placeholder: #D9D9D9;
  --red-attention: #D42926;
  --gra-skew: linear-gradient(78deg, #22BEBB -8.83%, #1779CD 78.35%);
  --gra-horizon: linear-gradient(90deg, #22BEBB 0%, #1779CD 100%);
  --gra-contact: linear-gradient(263deg, #BA1D14 5.45%, #7A0600 95.09%);
  --gra-hover: linear-gradient(263deg, #7A0600 0%, #BA1D14 100%);
  --gra-hover-blue: linear-gradient(90deg, #1779CD 0%, #22BEBB 100%);
  /* font-family */
  --sans: "Noto Sans JP", sans-serif;
  --en: "Roboto", sans-serif;
  /* ハーフレディング打ち消し */
  --leading-trim: calc((1em - 1lh)/2);
}

.dotted{
  position: relative;
  padding: 0 0 0 16px;
}
@media only screen and (max-width: 768px) {
  .dotted{
    padding: 0 0 0 14px;
  }
}
.dotted::before{
  position: absolute;
  content: "・";
  left: 0;
}

/* ハーフレディング打ち消し */
.leading-trim:before, .leading-trim:after {
  content: "";
  display: block;
  inline-size: 0;
  block-size: 1px;
}
.leading-trim:before {
  -webkit-margin-after: var(--leading-trim);
          margin-block-end: var(--leading-trim);
}
.leading-trim:after {
  -webkit-margin-before: var(--leading-trim);
          margin-block-start: var(--leading-trim);
}

.square-hover--bread {
  position: relative;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
.square-hover--bread:before {
  content: "";
  position: absolute;
  background-color: var(--main);
  display: inline-block;
  width: 6px;
  height: 6px;
  top: 50%;
  translate: 0 -50%;
  left: -20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1;
}
.square-hover--bread:after {
  content: "";
  position: absolute;
  background-color: #D8D8D8;
  display: inline-block;
  top: 50%;
  translate: 0 -50%;
  left: -20px;
  width: 6px;
  height: 6px;
  scale: 0;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  z-index: -1;
}
@media (any-hover: hover) {
  .square-hover--bread:hover:after {
    scale: 3;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}

.square {
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
@media only screen and (max-width: 768px) {
  .square {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.square:before {
  --_size: 8px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: var(--main);
}
@media only screen and (max-width: 768px) {
  .square:before {
    --_size: 6px;
  }
}
.square[data-color=gray]:before {
  background-color: #C3C3C3;
}

.square--sm {
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.square--sm:before {
  --_size: 5px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: var(--main);
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: var(--black);
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", var(--sans);
  font-weight: 500;
  line-height: 1.75;
  position: relative;
  background-color: #f7f7f7;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  body {
    line-height: 1.5714285714;
  }
}
body a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
body a.text-link {
  position: relative;
}
body a.text-link:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4d4d4d;
  bottom: -4px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
body a.text-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
body a,
body button,
body label {
  -webkit-tap-highlight-color: transparent;
}

section {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  [data-pc-only] {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  [data-sp-only] {
    display: none !important;
  }
}

a[href^="tel:"] {
  color: inherit;
}
@media only screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

figure {
  margin-bottom: 0;
  margin-top: 0;
}

dt {
  font-weight: normal;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-root {
  overflow-x: clip;
}

.l-main {
  position: relative;
  z-index: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 130px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (769px <= width < 1600px) {
  .l-header {
    height: 115px;
  }
}
@media only screen and (max-width: 768px) {
  .l-header {
    height: 95px;
  }
}
.l-header.js-scrolled {
  background: #fff;
}

.c-section-inner {
  width: calc(100% - 40px);
  max-width: 1100px;
  margin-inline: auto;
}

.c-section-inner[data-width=about] {
  max-width: 1426px;
}

.c-section-inner[data-width=lg] {
  max-width: 1200px;
}

.c-section-inner[data-width=sm] {
  max-width: 900px;
}

.c-button-wrap {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .c-button-wrap {
    margin-top: 60px;
  }
}

.c-button {
  text-align: left;
  display: inline-block;
  position: relative;
  border-radius: calc(infinity * 1px);
  line-height: 1.4375;
  padding: 29px 40px;
  width: 100%;
  max-width: 248px;
  position: relative;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  font-weight: bold;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  .c-button {
    font-size: 14px;
    padding: 23.5px 30px;
    max-width: 214px;
  }
}

.c-button:before {
  content: "";
  position: absolute;
  background-color: #d8d8d8;
  display: inline-block;
  width: 8px;
  height: 8px;
  top: 50%;
  translate: 0 -50%;
  right: 40px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .c-button:before {
    width: 6px;
    height: 6px;
    right: 25px;
    background: var(--main);
  }
}

.c-button:after {
  content: "";
  position: absolute;
  background-color: #d8d8d8;
  display: inline-block;
  width: 8px;
  height: 8px;
  top: 50%;
  translate: 0 -50%;
  right: 40px;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  scale: 0;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .c-button:after {
    width: 16px;
    height: 16px;
    scale: 1;
    right: 20px;
  }
}

.c-button--white {
  background: #fff;
  color: var(--main);
  padding-block: 31.5px;
}
@media only screen and (max-width: 768px) {
  .c-button--white {
    padding-block: 23.5px;
  }
}

.c-button--blue {
  background: var(--main);
  color: #fff;
  -webkit-transition: scale 0.3s, background-color 0.3s;
  transition: scale 0.3s, background-color 0.3s;
}

@media only screen and (max-width: 768px) {
  .c-button--blue:before {
    background: var(--white);
  }
}

.c-button--info {
  max-width: 100%;
  padding: 30px;
  line-height: 1;
  background: #f7f7f7;
  color: var(--main);
  border-radius: revert;
}
@media only screen and (max-width: 768px) {
  .c-button--info {
    font-size: 16px;
  }
}

.c-button--entry {
  background: #F7F7F7;
  border-radius: 0;
  color: var(--main);
  max-width: 338px;
  font-size: 18px;
  padding: 20px 28px;
}
@media only screen and (max-width: 768px) {
  .c-button--entry {
    font-size: 14px;
    padding: 16px 17px;
  }
}

@media only screen and (max-width: 768px) {
  .c-button--entry:before {
    right: 15px;
    width: 4px;
    height: 4px;
  }
}

.c-button--entry:before {
  background: var(--main);
}

.c-button--info:after {
  scale: 0;
  background-color: #f7f7f7;
  -webkit-transition: scale 0.3s, background-color 0.3s;
  transition: scale 0.3s, background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .c-button--info:after {
    scale: 1;
    width: 18px;
    height: 18px;
    right: 19px;
    background-color: #EAEAEA;
  }
}

.c-button--entry:after {
  scale: 0;
  background-color: #f7f7f7;
  -webkit-transition: scale 0.3s, background-color 0.3s;
  transition: scale 0.3s, background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .c-button--entry:after {
    right: 12px;
    width: 10px;
    height: 10px;
    scale: 1;
    background: rgba(13, 52, 131, 0.3);
  }
}

.c-button--blue:after {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (any-hover: hover) {
  .c-button:hover:before {
    background-color: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .c-button:hover:after {
    scale: 3;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
  .c-button--blue:hover:before {
    background-color: currentColor;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .c-button--blue:hover:after {
    scale: 3;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: scale 0.3s, background-color 0.3s;
    transition: scale 0.3s, background-color 0.3s;
  }
  .c-button--entry:hover:after {
    background-color: #fff;
    scale: 3;
    -webkit-transition: scale 0.3s, background-color 0.3s;
    transition: scale 0.3s, background-color 0.3s;
  }
  .c-button--info:hover:after {
    background-color: #EAEAEA;
    scale: 3;
    -webkit-transition: scale 0.3s, background-color 0.3s;
    transition: scale 0.3s, background-color 0.3s;
  }
}
.c-arrow-link {
  position: relative;
}

.c-arrow__icon {
  width: 23px;
  height: 18px;
  overflow: hidden;
  position: absolute;
  right: 30px;
  margin: auto;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media only screen and (max-width: 768px) {
  .c-arrow__icon {
    width: 18px;
    right: 22px;
    top: 20px;
  }
}

.page-numbers .c-arrow__icon {
  right: unset;
  top: -9px;
  left: -9px;
}

.c-arrow__icon.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: -7px;
  left: -11px;
}
@media only screen and (max-width: 768px) {
  .c-arrow__icon.prev {
    top: -9px;
    left: -9px;
  }
}

.arrow-btn .c-arrow__icon {
  margin: auto;
  inset: 0;
}

.c-submit-button .c-arrow__icon {
  top: 26px;
}
@media only screen and (max-width: 768px) {
  .c-submit-button .c-arrow__icon {
    top: 21px;
    right: 20px;
    width: 18px;
  }
}

.c-arrow__icon:before,
.c-arrow__icon:after {
  content: "";
  -webkit-mask: url("../../asset/images/btn_arrow.svg") no-repeat;
          mask: url("../../asset/images/btn_arrow.svg") no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--black);
  position: absolute;
  width: 100%;
  height: 21px;
  top: 0;
  right: 0;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.c-submit-button .c-arrow__icon:before,
.c-submit-button .c-arrow__icon:after {
  background-color: #fff;
}

.c-arrow-link[data-section=contact] {
  display: block;
}
.c-arrow-link[data-section=contact] .c-arrow__icon:before,
.c-arrow-link[data-section=contact] .c-arrow__icon:after {
  background-color: var(--white);
  height: 50px;
}
.c-arrow-link[data-section=contact] .c-arrow__icon {
  right: unset;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 768px) {
  .c-arrow-link[data-section=contact] .c-arrow__icon {
    width: 40px;
    top: 10px;
  }
}

.c-arrow__icon:after {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.c-arrow-link.is-hover .c-arrow__icon:before {
  -webkit-animation-name: transformLeftRight;
          animation-name: transformLeftRight;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.c-arrow-link.is-hover .c-arrow__icon:after {
  -webkit-animation-name: transformRightLeft;
          animation-name: transformRightLeft;
}

.p-business__card-link .c-arrow__icon:before,
.p-business__card-link .c-arrow__icon:after {
  background-color: var(--white);
}

@media (any-hover: hover) {
  .c-arrow-link.is-hover:hover .c-arrow__icon:before,
  .c-arrow-link.is-hover:hover .c-arrow__icon:after {
    background-color: var(--white);
  }
  .page-numbers:hover .c-arrow-link.is-hover .c-arrow__icon:before,
  .page-numbers:hover .c-arrow-link.is-hover .c-arrow__icon:after,
  .p-pagination__link a:hover .c-arrow-link.is-hover .c-arrow__icon:before,
  .p-pagination__link a:hover .c-arrow-link.is-hover .c-arrow__icon:after,
  .c-submit-button.is-hover:hover .c-arrow__icon:before,
  .c-submit-button.is-hover:hover .c-arrow__icon:after {
    background-color: var(--black);
  }
  .c-arrow-link.is-hover:hover .c-arrow__icon:before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .p-business__card-link:hover .c-arrow__icon:before,
  .p-contact:hover .c-arrow__icon:before,
  .page-numbers:hover .c-arrow__icon:before,
  .p-pagination__link a:hover .c-arrow__icon:before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .c-arrow-link.is-hover:hover .c-arrow__icon:after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .p-business__card-link:hover .c-arrow__icon:after,
  .p-contact:hover .c-arrow__icon:after,
  .page-numbers:hover .c-arrow__icon:after,
  .p-pagination__link a:hover .c-arrow__icon:after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
}
@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.c-about__en {
  font-family: var(--en);
  font-size: 66px;
  font-weight: bold;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .c-about__en {
    font-size: 44px;
  }
}
.c-about__en[data-sub-section] {
  font-size: 60px;
}
@media only screen and (max-width: 768px) {
  .c-about__en[data-sub-section] {
    font-size: 40px;
  }
}

.c-about__ja {
  letter-spacing: 0.05em;
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-about__ja {
    font-size: 16px;
  }
}
.c-about__ja[data-sub-section] {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .c-about__ja[data-sub-section] {
    font-size: 14px;
  }
}

.c-anchor__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .c-anchor__link {
    gap: 10px;
  }
}

.c-anchor-button {
  width: 40px;
  height: 40px;
  border-radius: calc(infinity * 1px);
  background: var(--gray);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 1024px) {
  .c-anchor-button {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .c-anchor-button {
    width: 20px;
    height: 20px;
  }
}

.c-anchor-button:before {
  content: "";
  -webkit-mask: url("../../asset/images/icon/chevlon.svg") no-repeat;
          mask: url("../../asset/images/icon/chevlon.svg") no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--black);
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .c-anchor-button:before {
    width: 7px;
    height: 4px;
  }
}

.c-underline {
  position: relative;
}
.c-underline:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4d4d4d;
  bottom: 0px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (any-hover: hover) {
  .c-anchor__link:hover .c-underline:after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .c-anchor__link:hover .c-anchor-button {
    background-color: var(--black);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .c-anchor__link:hover .c-anchor-button:before {
    background-color: var(--white);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
.c-chevlon {
  position: relative;
  background: none;
  border-radius: calc(infinity * 1px);
  background: var(--gray);
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .c-chevlon {
    width: 26px;
    height: 26px;
  }
}

.c-chevlon:before {
  content: "";
  -webkit-mask-image: url(../../asset/images/icon/chevlon.svg);
          mask-image: url(../../asset/images/icon/chevlon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--black);
  width: 12px;
  height: 6px;
  position: absolute;
  inset: 0;
  margin: auto;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .c-chevlon:before {
    width: 10px;
    height: 5px;
  }
}

.c-chevlon:hover {
  background: var(--black);
}

.c-chevlon:hover:before {
  background-color: var(--white);
}

.c-hgroup {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--main);
  font-weight: bold;
}

.c-hgroup--right {
  margin-left: auto;
}

.c-hgroup--center {
  margin-inline: auto;
  text-align: center;
}

.c-hgroup--white {
  color: #fff;
}

.c-hgroup--nav {
  color: var(--main);
}
.c-hgroup--nav .c-heading {
  font-size: 26px;
  font-size: clamp(20px, 1.3541666667vw, 26px);
  color: var(--main);
  position: relative;
  top: 3px;
}
@media only screen and (max-width: 768px) {
  .c-hgroup--nav .c-heading {
    font-size: 16px;
  }
}
.c-hgroup--nav .c-heading:after {
  display: none;
}
.c-hgroup--nav .c-heading-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--main);
}
@media only screen and (max-width: 768px) {
  .c-hgroup--nav .c-heading-sub {
    font-size: 10px;
  }
}
.c-hgroup--nav .c-heading-sub:before {
  display: none;
}

.c-heading {
  color: var(--main);
  font-size: clamp(28px, 1.8229166667vw, 35px);
  font-weight: bold;
  line-height: 1.4285714286;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-heading {
    font-size: 23px;
  }
}
.c-heading:after {
  content: "";
  width: 33px;
  border-bottom: 4px solid var(--main);
  display: block;
  margin-top: 13px;
}
@media only screen and (max-width: 768px) {
  .c-heading--entry {
    margin-inline: auto;
  }
  .c-heading--entry:after {
    margin-inline: auto;
  }
}
.c-heading--white {
  color: #fff;
}
.c-heading--white:after {
  content: "";
  width: 33px;
  border-bottom: 4px solid #fff;
  display: block;
  margin-top: 13px;
}
.c-heading--center {
  margin-inline: auto;
}
.c-heading--center:after {
  margin-inline: auto;
}
.c-hgroup--under .c-heading {
  color: var(--main);
  font-size: clamp(36px, 2.8645833333vw, 55px);
}
@media only screen and (max-width: 768px) {
  .c-hgroup--under .c-heading {
    font-size: 33px;
  }
}
.c-hgroup--band .c-heading {
  color: #fff;
  background: var(--main);
  padding: 9px 10px;
  letter-spacing: 0;
  line-height: 1.2;
}
.c-hgroup--band .c-heading:after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .c-hgroup--band .c-heading {
    font-size: 23px;
  }
}

.c-heading-sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-family: var(--en);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
}
.c-hgroup--under .c-heading-sub {
  font-size: 21px;
}
@media only screen and (max-width: 768px) {
  .c-hgroup--under .c-heading-sub {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .c-hgroup--band .c-heading-sub {
    font-size: 15px;
  }
}
.c-hgroup--band .c-heading-sub:before {
  display: none;
}

.c-heading-sub--right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-heading-sub--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-heading-sub:before {
  content: "";
  background: url("../../asset/images/icon/heading_icon.png") no-repeat;
  background-size: contain;
  width: 11px;
  height: 13px;
  margin-right: 9px;
}
.c-hgroup--white .c-heading-sub:before {
  background-image: url("../../asset/images/icon/heading_icon_wh.png");
}
.c-hgroup--under .c-heading-sub:before {
  width: 15px;
  height: 17px;
}
@media only screen and (max-width: 768px) {
  .c-hgroup--under .c-heading-sub:before {
    width: 9px;
    height: 10px;
    margin-right: 8px;
  }
}

.c-fv-under {
  padding: 180px 0 55px;
  border-bottom: 1px solid #d8d8d8;
}
@media only screen and (max-width: 768px) {
  .c-fv-under {
    padding: 160px 0 0;
    border-bottom: none;
  }
}
.c-fv-under .c-heading:after {
  display: none;
}

@media only screen and (max-width: 768px) {
  .c-fv-under:after {
    content: "";
    display: block;
    border-bottom: 1px solid #d8d8d8;
    margin-top: 20px;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
}

.c-heading-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .c-heading-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 30px;
  }
}

.c-back-button {
  position: fixed;
  right: 40px;
  bottom: 40px;
}

.c-floating-button--back {
  width: 90px;
  height: 90px;
  display: block;
  background: #fff;
  position: relative;
  border-radius: calc(infinity * 1px);
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
}
.c-floating-button--back:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-mask-image: url("../../asset/images/icon/chevlon_up.svg");
          mask-image: url("../../asset/images/icon/chevlon_up.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  width: 17px;
  height: 8px;
  display: inline-block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .c-back-button:hover .c-floating-button--back {
    background-color: var(--main);
  }
  .c-back-button:hover .c-floating-button--back:before {
    background-color: #fff;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
.c-floating-button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-family: var(--en);
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--main);
  -webkit-transition: all 0.5s ease, background-color 0.3s, color 0.3s;
  transition: all 0.5s ease, background-color 0.3s, color 0.3s;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .c-floating-button {
    width: 88px;
    height: 88px;
    font-size: 12px;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  }
}

.c-floating-button__icon {
  -webkit-mask: url("../../asset/images/icon/mail_icon.svg") no-repeat;
          mask: url("../../asset/images/icon/mail_icon.svg") no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #c3c3c3;
  width: 47px;
  height: 31px;
  display: block;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  margin-bottom: 13px;
}
@media only screen and (max-width: 768px) {
  .c-floating-button__icon {
    width: 34px;
    height: 22px;
    margin-bottom: 4px;
  }
}

.expanded .c-floating-button {
  opacity: 0;
  pointer-events: none;
}

@media (any-hover: hover) {
  .c-floating-button:hover {
    background: #48b4f8;
    color: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
  .c-floating-button:hover .c-floating-button__icon {
    background-color: #fff;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
.c-floating-entry {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  padding: 48px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .c-floating-entry {
    padding: 26px 27px;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
  }
}

.expanded .c-floating-entry {
  border-radius: 0;
  opacity: 1;
  visibility: visible;
}

.c-floating-entry-menu {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 155px;
  height: 155px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1000;
}
@media only screen and (max-width: 768px) {
  .c-floating-entry-menu {
    width: 88px;
    height: 88px;
    bottom: 20px;
    right: 20px;
  }
}

.c-floating-entry-menu.expanded {
  width: 438px;
  height: 433px;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .c-floating-entry-menu.expanded {
    width: 278px;
    height: 296px;
    bottom: 20px;
    right: 20px;
  }
}

.c-floating-entry__menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .c-floating-entry__menu {
    gap: 5px;
    margin-top: 20px;
  }
}

.expanded .c-floating-button {
  opacity: 0;
  pointer-events: none;
}

.c-button--entry__icon {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.c-button--entry__icon:before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .c-button--entry__icon:before {
    width: 28px;
    height: 28px;
  }
}

.c-button--entry__icon.-icon01:before {
  background-image: url("../../asset/images/icon/floating_entry_icon01.svg");
}

.c-button--entry__icon.-icon02:before {
  background-image: url("../../asset/images/icon/floating_entry_icon02.svg");
}

.c-button--entry__icon.-icon03:before {
  background-image: url("../../asset/images/icon/floating_entry_icon03.svg");
}

.close-btn-wrap {
  position: absolute;
  top: 25px;
  right: 25px;
}
@media only screen and (max-width: 768px) {
  .close-btn-wrap {
    top: 17px;
    right: 17px;
  }
}

.close-btn {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background: var(--main);
  line-height: 1;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border: 1px solid transparent;
}
@media only screen and (max-width: 768px) {
  .close-btn {
    width: 27px;
    height: 27px;
  }
}

.close-btn > span {
  width: 18.384px;
  height: 2px;
  background: currentColor;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .close-btn > span {
    width: 12px;
  }
}

.close-btn > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: inherit;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .close-btn:hover {
    background-color: white;
    border: 1px solid var(--main);
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
  }
  .close-btn:hover span, .close-btn:hover span::before {
    background-color: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
.c-floating-entry__title {
  font-size: 14px;
  font-weight: bold;
  font-family: var(--en);
  color: var(--main);
}
@media only screen and (max-width: 768px) {
  .c-floating-entry__title {
    font-size: 10px;
  }
}

.c-floating-entry__text {
  margin-top: 11px;
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-floating-entry__text {
    font-size: 16px;
    margin-top: 7px;
  }
}

.blur-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
}

.blur-overlay.active {
  display: block;
}

.c-lead-wrap {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .c-lead-wrap {
    margin-top: 30px;
  }
}

.c-lead__text {
  color: var(--main);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .c-lead__text {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 2.1;
  }
}

.bread {
  margin-top: 35px;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .bread {
    margin-left: auto;
    margin-top: 0;
  }
}
.bread ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.bread ol li {
  position: relative;
}
.bread ol li:first-child {
  font-weight: normal;
}
.bread ol li:last-child {
  color: var(--black);
}
.bread ol li:not(:last-child) {
  margin-right: 42px;
}
.bread ol li:not(:last-child)::after {
  position: absolute;
  background-size: contain;
  content: "";
  background-color: #989898;
  rotate: 90deg;
  display: inline-block;
  width: 1px;
  height: 20px;
  top: 5px;
  rotate: -150deg;
  right: -32px;
  margin: 0 10px;
}
.bread ol li [name] {
  font-size: 20px;
}
.bread ol li br {
  display: none;
}

.bread > ol > li:not(:last-child) > a {
  position: relative;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
.bread > ol > li:not(:last-child) > a:before {
  content: "";
  position: absolute;
  background-color: var(--main);
  display: inline-block;
  width: 6px;
  height: 6px;
  top: 50%;
  translate: 0 -50%;
  left: -20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1;
}
.bread > ol > li:not(:last-child) > a:after {
  content: "";
  position: absolute;
  background-color: #d8d8d8;
  display: inline-block;
  top: 50%;
  translate: 0 -50%;
  left: -20px;
  width: 6px;
  height: 6px;
  scale: 0;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  z-index: -1;
}
@media (any-hover: hover) {
  .bread > ol > li:not(:last-child) > a:hover:after {
    scale: 3;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}

.js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
.js-fade-up[data-delay] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=second] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=second] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=third] {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=third] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=fourth] {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=fourth] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}

.js-fade-left {
  opacity: 0;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.js-fade-right {
  opacity: 0;
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.js-fade-load {
  opacity: 0;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.scroll {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.load {
  -webkit-animation-name: imageBlur;
          animation-name: imageBlur;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes imageBlur {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* .p-global-nav styles */
.p-global-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-global-nav {
    display: none;
  }
}

.p-global-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: clamp(20px, 3.125vw, 60px);
  margin-right: 190px;
}

.p-global-nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.p-global-nav__link {
  text-align: center;
  font-weight: bold;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: var(--white);
  position: relative;
}
@media (any-hover: hover) {
  .p-global-nav__link:after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: 1.25em;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .p-global-nav__link:hover span:after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .p-global-nav__contact .p-global-nav__link:hover {
    color: var(--black);
  }
  .p-global-nav__contact .p-global-nav__link:hover:after {
    background: none;
  }
}

.p-global-nav__contact .p-global-nav__link:after {
  background: none;
}

.p-global-nav__link span {
  font-size: 14px;
  font-weight: bold;
  font-family: var(--en);
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-global-nav__link span:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-global-nav__contact a {
  position: fixed;
  top: 20px;
  right: 20px;
  border-radius: 0 12px 0 12px;
  padding-inline: 28px;
  height: 80px;
  background: var(--black);
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
  -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
  border: 4px solid var(--black);
}
@media screen and (max-width: 1024px) {
  .p-global-nav__contact a {
    display: none;
  }
}

@media (any-hover: hover) {
  .p-global-nav__contact a:hover {
    background: var(--white);
    border: 4px solid var(--black);
    -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
    transition: background-color 0.3s, border 0.3s, color 0.3s;
  }
}
.p-mobile-nav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 10;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
  overflow: auto;
}
@media screen and (min-width: 1025px) {
  .p-mobile-nav {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .p-mobile-nav {
    padding-inline: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav {
    padding-inline: 20px;
  }
}
[data-is-nav-visible=true] .p-mobile-nav {
  visibility: visible;
  opacity: 1;
}

.p-mobile-nav__inner {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__inner {
    width: 100%;
  }
}

.p-mobile-nav__list {
  position: fixed;
  width: calc(100% - 20px);
  max-width: 1263px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "h f d" "a f c" "a f e" "a b g";
  gap: 18px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media only screen and (max-width: 1024px) {
  .p-mobile-nav__list {
    position: revert;
    translate: unset;
    padding: 120px 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 6px;
    grid-template-areas: "h h" "a a" "f f" "b c" "d e" "g g";
  }
}

.p-mobile-nav__item {
  background: #fff;
  padding: 50px;
  padding-inline: clamp(20px, 2.6041666667vw, 50px);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item {
    padding: 24px 20px;
  }
}

.p-mobile-nav__item-sub .p-mobile-nav__link {
  padding: 0;
}

@media (any-hover: hover) {
  .p-mobile-nav__item:not(:has(.p-mobile-nav__item-sub)):hover {
    background: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .p-mobile-nav__item:not(:has(.p-mobile-nav__item-sub)):hover .c-hgroup--nav h2,
  .p-mobile-nav__item:not(:has(.p-mobile-nav__item-sub)):hover .c-hgroup--nav p {
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
}
.p-mobile-nav__link {
  display: block;
  padding: 39px;
  padding-inline: clamp(20px, 2.6041666667vw, 50px);
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__link {
    padding: 24px 20px;
    letter-spacing: 0;
  }
}

.p-mobile-nav__item:has(> .p-mobile-nav__link) {
  padding: 0;
}

.p-mobile-nav__item:nth-child(1) {
  grid-area: a;
  padding-top: 89px;
}

.p-mobile-nav__item:nth-child(2) {
  grid-area: b;
}

.p-mobile-nav__item:nth-child(3) {
  grid-area: c;
}

.p-mobile-nav__item:nth-child(4) {
  grid-area: d;
}

.p-mobile-nav__item:nth-child(5) {
  grid-area: e;
}

.p-mobile-nav__item:nth-child(6) {
  grid-area: f;
  padding-top: 101px;
}

.p-mobile-nav__item:nth-child(7) {
  grid-area: g;
  background: transparent;
  border: 1px solid #fff;
  position: relative;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.p-mobile-nav__item:nth-child(7)::before {
  content: "";
  -webkit-mask: url(../../asset/images/icon/link_icon.svg) no-repeat;
          mask: url(../../asset/images/icon/link_icon.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 13px;
  height: 13px;
}
.p-mobile-nav__item:nth-child(7) .c-hgroup--nav .c-heading-sub,
.p-mobile-nav__item:nth-child(7) .c-hgroup--nav .c-heading {
  color: #fff;
}
@media (any-hover: hover) {
  .p-mobile-nav__item:nth-child(7):hover {
    background: #323232;
    border: 1px solid #323232;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
  }
}

.p-mobile-nav__item:nth-child(8) {
  grid-area: h;
}

@media only screen and (max-width: 768px) {
  .p-mobile-nav__item:nth-child(1),
  .p-mobile-nav__item:nth-child(6) {
    padding-top: 24px;
  }
}
.p-mobile-nav__link {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
}

.p-mobile-nav__item-sub {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub {
    margin-top: 20px;
  }
}
.p-mobile-nav__item-sub li + * {
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub li + * {
    margin-top: 16px;
  }
}
.p-mobile-nav__item-sub .p-mobile-nav__link {
  font-size: 16px;
  font-weight: 500;
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
}
@media screen and (max-width: 1024px) {
  .p-mobile-nav__item-sub .p-mobile-nav__link {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub .p-mobile-nav__link {
    font-size: 14px;
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }
}
.p-mobile-nav__item-sub .p-mobile-nav__link + * {
  margin-top: 16px;
}
.p-mobile-nav__item-sub .p-mobile-nav__link::before {
  --_size: 7px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: #d8d8d8;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub .p-mobile-nav__link::before {
    --_size: 5px;
  }
}
@media (any-hover: hover) {
  .p-mobile-nav__item-sub .p-mobile-nav__link:hover {
    color: #8e8e8e;
  }
  .p-mobile-nav__item-sub .p-mobile-nav__link:hover::before {
    background-color: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}

.p-mobile-nav__flex {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__flex {
    gap: 0;
  }
}
@media screen and (max-width: 1280px) {
  .p-mobile-nav__flex {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub[data-column] {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .p-mobile-nav__item-sub[data-column] li:nth-child(2) {
    margin-top: 0;
  }
}

.p-mobile-nav__item-sub-container {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container {
    margin-top: 20px;
  }
}
.p-mobile-nav__item-sub-container h3 {
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container h3 {
    font-size: 14px;
  }
}
.p-mobile-nav__item-sub-container .p-mobile-nav__item-sub {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container .p-mobile-nav__item-sub {
    margin-top: 15px;
  }
}
.p-mobile-nav__item-sub-container .p-mobile-nav__item-sub li:nth-child(2) {
  margin-top: 0;
}
.p-mobile-nav__item-sub-container .p-mobile-nav__item-sub[data-column] {
  display: revert;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container .p-mobile-nav__item-sub[data-column] {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-mobile-nav__item-sub-container .p-mobile-nav__item-sub[data-column] li:nth-child(2) {
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container .p-mobile-nav__item-sub[data-column] li:nth-child(2) {
    margin-top: 0;
  }
}

body[data-is-nav-visible=true] {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/**
 * Header
**/
.p-header {
  height: revert;
  position: fixed;
  width: 100%;
  /**
   * ボタン
  **/
}
.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 100px);
  position: relative;
  margin: 0 auto;
  -webkit-transition: var(--animation-transition);
  transition: var(--animation-transition);
}
@media only screen and (max-width: 1024px) {
  .p-header__inner {
    width: calc(100% - 52px);
  }
}
@media only screen and (max-width: 768px) {
  .p-header__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-header__logo-link {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__logo-link:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 768px) {
  .p-header__logo-link svg {
    width: 139px;
    height: 17px;
  }
}
@media only screen and (max-width: 1024px) {
  .p-header__logo {
    position: absolute;
    top: -20px;
    z-index: 1000;
  }
}
.p-header__logo-text {
  font-size: clamp(14px, 1.3888888889vw, 20px);
  color: #fff;
  margin-left: 24px;
  white-space: nowrap;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .p-header__logo-text {
    margin-left: 8px;
  }
}
.p-header__button {
  cursor: pointer;
  width: 139px;
  height: 70px;
  z-index: 11;
  border-radius: 0 12px 0 12px;
  border-radius: calc(infinity * 1px);
  background: var(--main);
  position: fixed;
  top: 30px;
  right: 35px;
}
@media (769px <= width < 1600px) {
  .p-header__button {
    width: 110px;
    height: 55px;
  }
}
@media only screen and (max-width: 768px) {
  .p-header__button {
    width: 82px;
    height: 41px;
    top: 27px;
    right: 20px;
  }
}
.p-header__button-bar {
  background: #fff;
  width: 35px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-header__button-bar {
    width: 24px;
  }
}
.p-header__button-bar:nth-child(1) {
  margin-top: -5px;
}
.p-header__button-bar:nth-child(2) {
  margin-top: 0;
}
.p-header__button-bar:nth-child(3) {
  margin-top: 5px;
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(1) {
  margin-top: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(2) {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(3) {
  margin-top: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.splide__pagination {
  display: none !important;
}

.splide-overflow {
  margin-right: calc(50% - 50vw);
}
@media only screen and (max-width: 768px) {
  .splide-overflow {
    margin-top: 40px;
  }
}

.splide-wrapper {
  margin-top: 80px;
  position: relative;
  margin-left: 25px;
}
@media only screen and (max-width: 768px) {
  .splide-wrapper {
    margin-top: 50px;
    margin-left: 15px;
  }
}

.splide__track {
  overflow: hidden;
}

.p-staff__bottom-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-staff__bottom-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 20px;
    margin-top: 30px;
  }
}
.p-staff__bottom-button .splide__arrows {
  margin-left: 50px;
}
@media only screen and (max-width: 768px) {
  .p-staff__bottom-button .splide__arrows {
    margin-left: 0;
  }
}
.p-staff__bottom-button.-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-staff__bottom-button.-mt_90 {
  margin-top: 90px;
}

.splide__arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 17px;
}
@media only screen and (max-width: 768px) {
  .splide__arrows {
    gap: 5px;
  }
}

.splide__arrow {
  -webkit-transform: none;
          transform: none;
}

.splide__arrow {
  position: relative;
  background: none;
  border-radius: 2px;
  border: 2px solid #657588;
  width: 81px;
  height: 81px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  border-radius: calc(infinity * 1px);
  background: #f7f7f7;
  border: none;
}
@media only screen and (max-width: 768px) {
  .splide__arrow {
    width: 63px;
    height: 63px;
  }
}

.splide__arrow svg {
  fill: #707070;
  width: 1em;
  height: 1em;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

@media (any-hover: hover) {
  .splide__arrow:hover {
    background: #c4c4c4;
  }
  .splide__arrow:hover svg {
    fill: #fff;
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }
}
.splide__arrow--prev {
  left: 0;
}

.splide__arrow--next {
  right: 0;
}

.splide__arrow--prev:before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide02 .splide__arrows {
  display: none !important;
}
.splide02 .splide__slide {
  opacity: 1;
}
.splide02 .splide__arrows,
.splide02 .splide__pagination {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .splide02 .splide__slide img {
    width: 100%;
    aspect-ratio: 260/230;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-fv {
  height: 100vh;
}

.p-fv:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../../asset/images/top/back2.png");
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-fv__openning {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-fv__openning img {
  display: none;
}

.p-fv__container {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .p-fv__container {
    height: 100svh;
  }
}

.p-fv__container.start {
  opacity: 1;
}

.p-fv__logo {
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 0 0 65px;
  margin: 0 auto;
  z-index: 10;
}

@media (769px <= width < 1600px) {
  .p-fv__logo {
    padding: 35px 0 0 40px;
  }
}
.p-fv__logo img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .p-fv__logo:hover img {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
.p-fv__slider {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-fv__slider1 {
  width: clamp(530px, 38.5416666667vw, 740px);
  right: clamp(400px, 33.8541666667vw, 650px);
  padding-top: 200px;
}
@media screen and (max-width: 1600px) {
  .p-fv__slider1 {
    right: clamp(400px, 29vw, 650px);
  }
}

.p-fv__slider2 {
  width: clamp(800px, 56.25vw, 1080px);
  right: clamp(-280px, -18.75vw, -360px);
  padding-top: 160px;
}

ul {
  padding: 0px;
}

.p-fv__copy {
  position: absolute;
  bottom: 20%;
  left: 4%;
}

.p-fv__copy-text {
  -webkit-transform: translatex(20px);
          transform: translatex(20px);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.p-fv__copy-text.start {
  -webkit-transform: translatex(0);
          transform: translatex(0);
  opacity: 1;
}

.p-fv__copy-text:not(:last-child) {
  margin-bottom: 15px;
}

.p-fv__logo img {
  width: 283px;
}

@media (769px <= width < 1600px) {
  .p-fv__logo img {
    width: 235px;
  }
}
@media screen and (max-width: 768px) {
  .p-fv__logo {
    padding: 30px 0 0 30px;
  }
  .p-fv__logo img {
    max-width: 178px;
  }
  .p-fv__slider1 {
    right: 40%;
    width: 60vw;
    top: 210px;
  }
  .p-fv__slider2 {
    right: -30.2325581395vw;
    width: 350px;
    width: 81.3953488372vw;
    top: 220px;
  }
  .p-fv__copy {
    width: 100%;
    bottom: unset;
    top: calc(50% + 100px);
  }
  .p-fv__copy-text.p-fv__text1 {
    width: 40%;
  }
  .p-fv__copy-text.p-fv__text2 {
    width: 70%;
  }
  .p-fv__copy-text.p-fv__text3 {
    width: 43%;
  }
  .p-fv__copy-text:not(:last-child) {
    margin-bottom: 10px;
  }
}
.p-intro {
  position: relative;
  padding-top: 295px;
}
@media only screen and (max-width: 768px) {
  .p-intro {
    padding-top: 0;
  }
}

.p-intro:before {
  content: "";
  background: #fff;
  width: 71.71875vw;
  height: 1417px;
  position: absolute;
  top: 116px;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .p-intro:before {
    top: -50px;
    width: 90.6976744186vw;
    height: 1027px;
  }
}

.p-intro__container {
  display: grid;
  grid-template-columns: clamp(400px, 40.2083333333vw, 720px) 1fr;
  grid-template-rows: 105px 1fr;
  grid-template-areas: "b a" "b c";
}
@media only screen and (max-width: 768px) {
  .p-intro__container {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
    max-width: 500px;
    margin-inline: auto;
  }
}

.p-intro__heading {
  font-size: clamp(28px, 2.0833333333vw, 40px);
  font-weight: bold;
  color: var(--main);
  grid-area: a;
  white-space: nowrap;
  margin-left: -166px;
}
@media only screen and (max-width: 768px) {
  .p-intro__heading {
    font-size: clamp(24px, 5.5813953488vw, 28px);
    margin-left: unset;
    text-align: right;
  }
  .p-intro__heading span {
    position: relative;
    left: -1em;
  }
}

.p-intro__text {
  font-size: 18px;
  line-height: 2;
  grid-area: c;
  margin-left: -61px;
  margin-top: 75px;
}
@media only screen and (max-width: 768px) {
  .p-intro__text {
    margin-left: unset;
    font-size: 14px;
    margin-top: 25px;
    width: 81.3953488372vw;
    margin-left: auto;
  }
}

.p-intro__img {
  grid-area: b;
  margin-left: -2.6041666667vw;
}
@media only screen and (max-width: 768px) {
  .p-intro__img {
    min-width: unset;
    width: 50vw;
    margin-top: -30px;
    margin-left: -20px;
  }
}

.p-about {
  margin-top: 200px;
  padding-bottom: 140px;
}
@media only screen and (max-width: 768px) {
  .p-about {
    margin-top: 70px;
    padding-bottom: 50px;
  }
}

.p-about__heading {
  font-size: 31px;
  color: var(--main);
  text-align: right;
  width: 100%;
}

.p-about__heading-text {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 45.5px;
     -moz-column-gap: 45.5px;
          column-gap: 45.5px;
  white-space: nowrap;
  font-size: 31px;
}
@media only screen and (max-width: 768px) {
  .p-about__heading-text {
    font-size: 19px;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 81.3953488372vw;
    margin-left: auto;
  }
}

.p-about__heading-text:before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--main);
}
@media only screen and (max-width: 768px) {
  .p-about__heading-text:before {
    width: calc(100% - 40px);
  }
}

.p-about__heading:after {
  display: none;
}

.p-about__card {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -webkit-column-gap: clamp(20px, 2.6041666667vw, 50px);
     -moz-column-gap: clamp(20px, 2.6041666667vw, 50px);
          column-gap: clamp(20px, 2.6041666667vw, 50px);
  max-width: 1426px;
  margin-inline: auto;
  padding-inline: 15px;
}
@media only screen and (max-width: 768px) {
  .p-about__card {
    margin-top: 50px;
    display: revert;
    width: 100%;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.p-about__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-about__item + * {
    margin-top: 30px;
  }
}

.p-about__item-link:before {
  content: "";
  background: url(../../asset/images/icon/about-circle-chevlon.svg) no-repeat;
  background-size: contain;
  width: 98px;
  height: 98px;
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 3;
}

.p-about__item:nth-child(1) {
  background: url(../../asset/images/top/about01.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-about__item:nth-child(1) {
    background-image: url(../../asset/images/top/about01_sp.jpg);
  }
}

.p-about__item:nth-child(2) {
  background: url(../../asset/images/top/about02.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-about__item:nth-child(2) {
    background-image: url(../../asset/images/top/about02_sp.jpg);
  }
}

.p-about__item:nth-child(3) {
  background: url(../../asset/images/top/about03.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-about__item:nth-child(3) {
    background-image: url(../../asset/images/top/about03_sp.jpg);
  }
}

.p-about__item-link {
  padding: 307px 55px 70px;
  padding: clamp(280px, 15.9895833333vw, 307px) clamp(30px, 2.8645833333vw, 55px) clamp(50px, 3.6458333333vw, 70px);
  position: relative;
  z-index: 2;
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}
@media only screen and (max-width: 768px) {
  .p-about__item-link {
    padding: 58px 30px 30px;
  }
}

.p-about__item-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-about__item-link h2,
.p-about__item-link p {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-about__item-title {
  -webkit-align-self: end;
      -ms-flex-item-align: end;
          align-self: end;
}

.p-about__item-img01 {
  max-width: clamp(150px, 10.8333333333vw, 208px);
}
@media only screen and (max-width: 768px) {
  .p-about__item-img01 {
    max-width: 135px;
  }
}

.p-about__item-img02 {
  max-width: clamp(100px, 7.03125vw, 135px);
}
@media only screen and (max-width: 768px) {
  .p-about__item-img02 {
    max-width: 88px;
  }
}

.p-about__item-img03 {
  max-width: clamp(150px, 10.8333333333vw, 208px);
}
@media only screen and (max-width: 768px) {
  .p-about__item-img03 {
    max-width: 135px;
  }
}

.p-about__item-text {
  margin-top: 40px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-about__item-text {
    margin-top: 20px;
    font-size: 13px;
  }
}

@media (any-hover: hover) {
  .p-about__item-link:hover:before {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-about__item-link:hover h2, .p-about__item-link:hover p {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-about__item-link:hover:after {
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
.p-ideal-top {
  position: relative;
  padding: 12.5520833333vw 0;
}
@media only screen and (max-width: 768px) {
  .p-ideal-top {
    padding: 186px 0 199px;
  }
}

.p-ideal-top:before {
  content: "";
  background: url(../../asset/images/top/ideal_bg.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.p-ideal__text {
  text-align: center;
  max-width: 430px;
  margin-inline: auto;
  margin-top: 60px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-ideal__text {
    margin-top: 40px;
  }
}

.p-ideal__button-wrapper {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .p-ideal__button-wrapper {
    margin-top: 50px;
  }
}

.p-ideal__img-wrapper {
  position: absolute;
  z-index: -1;
  padding: 0 40px 30px 0;
}

.p-ideal__img-wrapper01 {
  bottom: 0.2604166667vw;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .p-ideal__img-wrapper01 {
    bottom: unset;
    top: 30px;
  }
}

.p-ideal__img-wrapper02 {
  top: 4.53125vw;
  left: calc((100% - 57.2916666667vw) / 2);
}
@media only screen and (max-width: 768px) {
  .p-ideal__img-wrapper02 {
    top: 120px;
    left: unset;
    right: 0;
    padding-right: 0;
  }
}

.p-ideal__img-wrapper03 {
  top: 11.6666666667vw;
  right: 0;
  padding-right: 0;
}
@media only screen and (max-width: 768px) {
  .p-ideal__img-wrapper03 {
    top: unset;
    bottom: 0;
  }
}

.p-ideal__img-wrapper span {
  position: relative;
  display: inline-block;
}

.p-ideal__img-wrapper span:before {
  content: "";
  background: rgba(13, 52, 131, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
}

.p-ideal__img-wrapper img {
  width: 100%;
  -webkit-box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.16);
          box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .p-ideal__img-wrapper img {
    -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
  }
}

.p-ideal__img01 {
  max-width: 45.9895833333vw;
}
@media only screen and (max-width: 768px) {
  .p-ideal__img01 {
    max-width: 52.0930232558vw;
  }
}

.p-ideal__img02 {
  max-width: 19.7916666667vw;
}
@media only screen and (max-width: 768px) {
  .p-ideal__img02 {
    max-width: 33.488372093vw;
  }
}

.p-ideal__img03 {
  max-width: 47.0833333333vw;
}
@media only screen and (max-width: 768px) {
  .p-ideal__img03 {
    max-width: clamp(380px, 88.3720930233vw, 480px);
  }
}

.p-job {
  padding-top: 70px;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .p-job {
    padding: 30px 0;
  }
}

.p-top-staff {
  padding-top: 130px;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .p-top-staff {
    padding-top: 80px;
    padding-bottom: 0;
  }
}

.p-recruit {
  padding: 170px 0;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .p-recruit {
    padding: 80px 0;
  }
}

.p-job__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5vw;
     -moz-column-gap: 5vw;
          column-gap: 5vw;
}
@media only screen and (max-width: 768px) {
  .p-job__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-job__left-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 768px) {
  .p-job__left-container {
    margin-top: 30px;
  }
}

.p-job__img-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
}
@media only screen and (max-width: 768px) {
  .p-job__img-container {
    margin-inline: calc(50% - 50vw);
  }
}

.p-job__text-wrapper {
  grid-area: a;
}

.p-job__text {
  margin-top: 60px;
}

.p-job__img {
  grid-area: b;
}

.p-job__list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .p-job__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 15px;
  }
}

.p-job__item {
  white-space: nowrap;
}

.p-job__item > a {
  display: inline grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  inline-size: min(100%, 228px);
  padding: 15px 10px 15px 15px;
  letter-spacing: 0;
  line-height: 1;
  background: #f7f7f7;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-job__item > a {
    font-size: 14px;
  }
}
.p-job__item > a::after {
  content: "";
  justify-self: end;
  inline-size: 0.4em;
  aspect-ratio: 1;
  -webkit-border-before: 2px solid;
          border-block-start: 2px solid;
  -webkit-border-end: 2px solid;
          border-inline-end: 2px solid;
  rotate: 45deg;
  color: var(--main);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .p-job__item > a:hover {
    background: var(--main);
    color: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
  .p-job__item > a:hover:after {
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
}
.p-job__heading {
  font-weight: bold;
  font-size: 25px;
  border-bottom: 1px solid #D8D8D8;
}

.p-job__list-container {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .p-job__list-container {
    margin-top: 30px;
  }
}

.p-job__list-container:first-of-type {
  grid-area: d;
}

.p-job__list-container:nth-of-type(2) {
  grid-area: e;
}

.p-job__list-container h3 {
  line-height: 1.55;
  color: var(--main);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .p-job__list-container h3 {
    font-size: 18px;
  }
}

.p-job__list-container + * {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-job__list-container + * {
    margin-top: 20px;
  }
}

.p-job__list-container h3 span {
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.p-job__list-container h3 span:before {
  --_size: 8px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: var(--main);
}

.p-job__button-wrap {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .p-job__button-wrap {
    margin-top: 30px;
  }
}

.p-staff__top-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 208px;
}
@media only screen and (max-width: 768px) {
  .p-staff__top-wrapper {
    display: revert;
  }
}
.p-staff__top-wrapper .c-hgroup {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .p-staff__side-text {
    font-size: 14px;
    margin-top: 30px;
  }
}

.p-staff__slide-item {
  position: relative;
}

.p-staff__link {
  display: block;
}

.p-staff__image {
  -webkit-box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.16);
          box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .p-staff__image {
    -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.12);
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.12);
  }
}

.p-staff__image span {
  overflow: clip;
  display: block;
}

.p-staff__image img {
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}

.p-staff__copy {
  position: absolute;
  left: 0;
  bottom: 180px;
}
@media only screen and (max-width: 768px) {
  .p-staff__copy {
    bottom: 190px;
  }
}

.p-staff__copy p {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  padding: 0.3em;
  padding-left: 0.5em;
  line-height: 1.8;
  background-color: #fff;
  font-size: 21px;
  font-weight: bold;
  color: var(--main);
  margin-left: -25px;
}
@media only screen and (max-width: 768px) {
  .p-staff__copy p {
    font-size: 17px;
    margin-left: -15px;
    letter-spacing: 0;
    line-height: 2;
  }
}

.p-staff__department {
  margin-top: 30px;
}

.p-staff__department li {
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  line-height: 1.5;
}

.p-staff__department li:nth-of-type(2):before {
  opacity: 0;
}

.p-staff__department li:before {
  --_size: 5px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: var(--main);
}

.p-staff__department li + * {
  margin-top: 10px;
}

.p-staff__join {
  font-size: 14px;
  color: rgba(150, 150, 150, 0.87);
  margin-top: 20px;
}

@media (any-hover: hover) {
  .p-staff__link:hover img {
    scale: 1.1;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}
.p-recruit-container {
  margin-top: 70px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-container {
    margin-top: 50px;
  }
}

.p-recruit-container .c-button {
  color: inherit;
  font-size: 25px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-recruit-container .c-button {
    font-size: 20px;
    padding: 28px;
  }
  .p-recruit-container .c-button .square {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
  .p-recruit-container .c-button .square:before {
    --_size: 8px;
  }
}

.p-recruit__link-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit__link-top {
    display: revert;
  }
}

.p-recruit__link-img-item {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-recruit__link-img-item + * {
    margin-top: 20px;
  }
}

.p-recruit__link-img-item img {
  width: 100%;
}

.p-support-service {
  background: #F7F7F7;
  padding: 170px 0;
}
@media only screen and (max-width: 768px) {
  .p-support-service {
    padding: 80px 0;
  }
}

@media (any-hover: hover) {
  .p-recruit__link-img-item:hover .c-button--info:before {
    background-color: #0D3583;
  }
  .p-recruit__link-img-item:hover .c-button--info:after {
    scale: 3;
    background-color: #EAEAEA;
  }
}
.p-support-service__card {
  background: #fff;
  padding: 50px 80px;
}
@media only screen and (max-width: 768px) {
  .p-support-service__card {
    position: relative;
    padding: 30px 40px 50px;
    padding-left: 20px;
  }
  .p-support-service__card:before {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.p-support-service__item {
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-areas: "a b" "c d";
  row-gap: 40px;
}
@media (769px <= width <= 1023px) {
  .p-support-service__item {
    grid-template-columns: 1fr 250px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-support-service__item {
    grid-template-columns: 1fr auto;
    row-gap: 30px;
    grid-template-areas: "a b" "c c" "d d";
  }
}

.p-support-service__title {
  grid-area: a;
  align-self: end;
}

.p-support-service__image {
  grid-area: b;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  .p-support-service__image01 {
    width: 49px;
    height: 68px;
  }
}

@media only screen and (max-width: 768px) {
  .p-support-service__image02 {
    width: 66px;
    height: 66px;
  }
}

.p-support-service__text {
  grid-area: c;
  align-self: center;
}
@media only screen and (max-width: 768px) {
  .p-support-service__text {
    font-size: 14px;
  }
}

.p-support-service__button {
  grid-area: d;
  margin-left: auto;
  height: 81px;
}
@media only screen and (max-width: 768px) {
  .p-support-service__button {
    margin-left: unset;
    height: revert;
  }
}

.p-support-service__card + * {
  margin-top: 20px;
}

.p-entry {
  position: relative;
  padding: 108px 0;
}
@media only screen and (max-width: 768px) {
  .p-entry {
    padding: 80px 0;
  }
}

.p-entry:before {
  content: "";
  background: url(../../asset/images/common/entry_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-entry__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .p-entry__container {
    display: revert;
  }
}

.p-entry__link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .p-entry__link-list {
    max-width: 500px;
    margin-inline: auto;
    gap: 15px;
  }
}

.p-entry__link-item {
  width: 230px;
  height: 230px;
}
@media screen and (max-width: 1024px) {
  .p-entry__link-item {
    width: 170px;
    height: 170px;
  }
}
@media only screen and (max-width: 768px) {
  .p-entry__link-item {
    width: 120px;
    height: 120px;
    margin-inline: auto;
    margin-top: 40px;
  }
}

.p-entry__link-item a {
  border-radius: calc(infinity * 1px);
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 19px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-entry__link-item a {
    font-size: 14px;
  }
}

.p-entry__icon {
  -webkit-mask: url(../../asset/images/icon/entry_icon01.svg) no-repeat;
          mask: url(../../asset/images/icon/entry_icon01.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  display: inline-block;
  width: 70px;
  height: 70px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-entry__icon {
    width: 38px;
    height: 38px;
  }
}
.p-entry__icon[data-icon="02"] {
  -webkit-mask-image: url(../../asset/images/icon/entry_icon02.svg);
          mask-image: url(../../asset/images/icon/entry_icon02.svg);
}
.p-entry__icon[data-icon="03"] {
  -webkit-mask-image: url(../../asset/images/icon/entry_icon03.svg);
          mask-image: url(../../asset/images/icon/entry_icon03.svg);
}

@media (any-hover: hover) {
  .p-entry__link-item a:hover .p-entry__icon {
    background-color: #d8d8d8;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .p-entry__link-item a:hover {
    background: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    color: var(--main);
  }
}
.p-footer__logo img {
  width: 225px;
}

.p-footer {
  position: relative;
}

.p-footer__top {
  background: #fff;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .p-footer__top {
    padding: 60px 0;
  }
}

.p-footer__bottom {
  padding: 75px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #323232;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  .p-footer__bottom {
    padding: 50px 0;
  }
}

.p-footer__bottom-link:after {
  content: "";
  background: url(../../asset/images/icon/link_icon.svg) no-repeat;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 16px;
}

.p-footer__container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0 100px;
  max-width: 939px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .p-footer__container {
    grid-template-columns: repeat(3, auto);
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-footer__container {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
    row-gap: 40px;
  }
}

.p-footer__list-container {
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .p-footer__list-container {
    white-space: normal;
  }
}

@media only screen and (max-width: 768px) {
  .p-footer__list-container:nth-of-type(1) {
    grid-area: a;
  }
  .p-footer__list-container:nth-of-type(2) {
    grid-area: b;
  }
  .p-footer__list-container:nth-of-type(3) {
    grid-area: c;
  }
  .p-footer__list-container:nth-of-type(4) {
    grid-area: d;
  }
}
.p-footer__list-heading {
  font-size: 17px;
  font-weight: bold;
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  line-height: 1;
}
.p-footer__list-heading:before {
  --_size: 8px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: #d8d8d8;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-footer__list-heading.-block:before {
  display: none;
}
.p-footer__list-heading.-block a {
  color: #323232;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border: 1px solid #D8D8D8;
  padding: 15px 25px;
  font-size: 15px;
}
.p-footer__list-heading.-block a:after {
  content: "";
  -webkit-mask: url(../../asset/images/icon/link_icon.svg) no-repeat;
          mask: url(../../asset/images/icon/link_icon.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  background-color: #D8D8D8;
  width: 13px;
  height: 13px;
  margin-left: 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .p-footer__list-heading.-block a:hover {
    background: #323232;
    display: block;
    padding: 15px 25px;
    border: 1px solid #323232;
  }
  .p-footer__list-heading.-block a:hover:after {
    background-color: #fff;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}

.p-footer__list {
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .p-footer__list[data-column] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  [data-list=sm] .p-footer__list[data-column] .p-footer__item:nth-child(2) {
    margin-top: 0;
  }
  .p-footer__list[data-column=heading] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .p-footer__list[data-column=heading] {
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    row-gap: 30px;
  }
  .p-footer__list[data-column=heading] .p-footer__list-heading:not(:nth-of-type(2)) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  [data-list=heading] .p-footer__list[data-column=heading] .p-footer__list-heading:nth-child(2) {
    margin-top: 0;
  }
}
[data-list=card] .p-footer__list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100px, 100%), auto));
  gap: 10px 35px;
}
@media only screen and (max-width: 768px) {
  [data-list=card] .p-footer__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
[data-list=heading] .p-footer__list {
  margin-top: 0;
}

.p-footer__item {
  margin-block: calc((1em - 1lh) / 2);
}
[data-list=card] .p-footer__item {
  font-size: 14px;
}

[data-list=sm] .p-footer__item + * {
  margin-top: 13px;
}
@media only screen and (max-width: 768px) {
  [data-list=sm] .p-footer__item + * {
    margin-top: 10px;
  }
}

.p-footer__list-sub-container {
  margin-top: 25px;
  background: #f7f7f7;
  padding: 33px 25px;
}
.p-footer__list-sub-container h4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
}
.p-footer__list-sub-container h4:before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: var(--black);
  margin-right: 6px;
}

.p-footer__link {
  font-size: 14px;
  color: #989898;
}

.p-footer__bottom-flex {
  display: revert;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

small {
  color: #707070;
  display: block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  small {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

@media (any-hover: hover) {
  .p-footer__link:hover {
    color: #141414;
  }
  [data-list=heading] .p-footer__list-heading:hover::before {
    background: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  [data-list=heading] .p-footer__list-heading:hover a {
    color: var(--main);
  }
  [data-list=heading] .p-footer__list-heading.-block:hover a {
    color: #fff;
  }
}
[data-list=heading] .p-footer__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(2, auto);
  -webkit-column-gap: clamp(50px, 5.2083333333vw, 100px);
     -moz-column-gap: clamp(50px, 5.2083333333vw, 100px);
          column-gap: clamp(50px, 5.2083333333vw, 100px);
  row-gap: 25px;
  grid-template-areas: "a d" "b e" "c e";
}
@media only screen and (max-width: 768px) {
  [data-list=heading] .p-footer__list {
    row-gap: 40px;
    grid-template-areas: "a c" "b d" "e e";
  }
}

.p-footer__list-heading:first-child {
  grid-area: a;
}

.p-footer__list-heading:nth-child(2) {
  grid-area: b;
}

.p-footer__list-heading:nth-child(3) {
  grid-area: c;
}

.p-footer__list-heading:nth-child(4) {
  grid-area: d;
}

.p-footer__list-heading:nth-child(5) {
  grid-area: e;
  align-self: end;
}
@media only screen and (max-width: 768px) {
  .p-footer__list-heading:nth-child(5) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-overview__lead {
  font-size: 28px;
  font-weight: bold;
  color: var(--main);
}
@media only screen and (max-width: 768px) {
  .p-overview__lead {
    font-size: 20px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.p-overview {
  padding: 110px 0 120px;
}
@media only screen and (max-width: 768px) {
  .p-overview {
    padding: 60px 0 70px;
  }
}

.p-overview__container {
  margin-top: 110px;
}
@media only screen and (max-width: 768px) {
  .p-overview__container {
    margin-top: 60px;
  }
}

.p-overview__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 284px;
}
@media only screen and (max-width: 768px) {
  .p-overview__item {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

.p-overview__item + * {
  margin-top: 33px;
}
@media only screen and (max-width: 768px) {
  .p-overview__item + * {
    margin-top: 25px;
  }
}

.p-overview__item-heading,
.p-executive__item-heading {
  font-weight: bold;
  color: var(--main);
}
@media only screen and (max-width: 768px) {
  .p-overview__item-heading,
  .p-executive__item-heading {
    font-size: 14px;
  }
  .p-executive__item-heading {
    margin: 0 16px 0 0;
  }
}

.p-overview__item-text {
  padding-bottom: 33px;
  border-bottom: 1px solid #d8d8d8;
}
@media only screen and (max-width: 768px) {
  .p-overview__item-text {
    font-size: 14px;
    padding-bottom: 25px;
  }
}

.p-overview__item-list li {
  display: grid;
  grid-template-columns: 282px 1fr;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  .p-overview__item-list li {
    grid-template-columns: 244px 1fr;
    gap: 19px;
    white-space: nowrap;
  }
}

.p-overview__item-list li + * {
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .p-overview__item-list li + * {
    margin-top: 2px;
  }
}

.p-overview__item-list li p {
  color: #707070;
}

.p-executive {
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .p-executive {
    margin-top: 70px;
  }
}

.p-executive__list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .p-executive__list {
    margin-top: 50px;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}

.p-executive__item {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #d8d8d8;
}
@media only screen and (max-width: 768px) {
  .p-executive__item {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .p-executive__item-name {
    font-size: 14px;
  }
}

.p-organization {
  padding: 120px 0;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .p-organization {
    padding: 70px 0;
  }
}

.p-organization__grid {
  display: grid;
  grid-template-columns: 125px 1fr;
  -webkit-column-gap: 160px;
     -moz-column-gap: 160px;
          column-gap: 160px;
}
@media only screen and (max-width: 768px) {
  .p-organization__grid {
    display: revert;
  }
}

@media only screen and (max-width: 768px) {
  .p-organization__image {
    margin-top: 50px;
  }
}

.p-organization__image img {
  width: 100%;
  max-width: 613px;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .p-organization__image img {
    margin-inline: auto;
  }
}

.p-group {
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  .p-group {
    padding: 70px 0;
  }
}

.p-group__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
  gap: 14px;
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  .p-group__list {
    margin-top: 50px;
    gap: 10px;
  }
}

.p-group__item {
  background: #fff;
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .p-group__item {
    font-size: 14px;
    padding: 26px 20px;
  }
}

.p-group__item:has(a) {
  padding: 0;
}

.p-group__item a {
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-group__item a:after {
  content: "";
  -webkit-mask: url(../../asset/images/icon/link-icon.svg) no-repeat;
          mask: url(../../asset/images/icon/link-icon.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #989898;
  width: 15px;
  height: 15px;
  display: inline-block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .p-group__item a:hover {
    background: var(--main);
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    color: #fff;
  }
  .p-group__item a:hover:after {
    background-color: #fff;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
.l-parts-container {
  padding: 130px 0;
}
@media only screen and (max-width: 768px) {
  .l-parts-container {
    padding: 47px 0 100px;
  }
}

.l-parts-container > *:last-child {
  margin-bottom: 0;
}

.parts-hgroup {
  margin-bottom: 50px;
}

.parts-heading-sub {
  font-weight: bold;
  color: var(--main);
  font-size: 21px;
  font-family: var(--en);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .parts-heading-sub {
    font-size: 14px;
  }
}

.parts-h2 {
  background: var(--main);
  color: var(--white);
  font-size: 35px;
  padding: 9px 0;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 14px;
  letter-spacing: 0;
  padding-inline: 10px;
}
@media only screen and (max-width: 768px) {
  .parts-h2 {
    font-size: 20px;
  }
}

.parts-h3 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .parts-h3 {
    font-size: 17px;
  }
}

.parts-h4 {
  font-size: 21px;
  font-weight: bold;
  color: var(--main);
  letter-spacing: 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .parts-h4 {
    font-size: 16px;
  }
}

.parts-p {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .parts-p {
    font-size: 14px;
  }
}

.parts-ol {
  margin-bottom: 50px;
  counter-reset: num;
}

.parts-ol li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  counter-increment: num;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media only screen and (max-width: 768px) {
  .parts-ol li {
    font-size: 14px;
    -webkit-column-gap: 13px;
       -moz-column-gap: 13px;
            column-gap: 13px;
  }
}

.parts-ol li:before {
  --_size: 2em;
  content: counter(num, decimal-leading-zero);
  font-size: 17px;
  font-weight: bold;
  font-family: var(--en);
  color: var(--main);
  letter-spacing: 0.05em;
  margin-block: calc((1lh - var(--_size)) / 2);
}
@media only screen and (max-width: 768px) {
  .parts-ol li:before {
    font-size: 16px;
  }
}

.parts-ol li + * {
  margin-top: 10px;
}

.parts-ul {
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .parts-ul li {
    font-size: 14px;
  }
}

.parts-link-wrapper,
.parts-button-wrapper {
  margin-bottom: 50px;
}

.parts-link {
  background: #fff;
  display: inline-block;
  padding: 6px;
}
@media only screen and (max-width: 768px) {
  .parts-link {
    font-size: 14px;
  }
}

.parts-link--external {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.parts-link--external span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .parts-link--external span {
    font-size: 14px;
  }
}

.parts-link--external span:after {
  content: "";
  background: url(../../asset/images/icon/icon_link.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-left: 15px;
}

@media (any-hover: hover) {
  .parts-link:hover {
    background: var(--main);
    color: #fff;
  }
  .parts-link--external {
    position: relative;
  }
  .parts-link--external:before {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #D8D8D8;
    bottom: 0px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .parts-link--external:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.c-button--parts {
  max-width: 304px;
  padding-block: 29px;
}
@media only screen and (max-width: 768px) {
  .c-button--parts {
    max-width: 255px;
    font-size: 14px;
    padding-block: 20px;
  }
}
.c-button--parts:before {
  background: #fff;
}

.c-button--anchor {
  background: #fff;
  font-weight: inherit;
  max-width: 307px;
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  inline-size: min(100%, 307px);
  padding: 16px 30px;
  border-radius: calc(infinity * 1px);
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
@media only screen and (max-width: 768px) {
  .c-button--anchor {
    max-width: 255px;
    font-size: 14px;
    padding: 13px 20px;
  }
}
.c-button--anchor:before {
  content: "";
  position: revert;
}
.c-button--anchor:after {
  content: "";
  display: inline-block;
  justify-self: end;
  inline-size: 0.5em;
  aspect-ratio: 1;
  -webkit-border-before: 2px solid;
          border-block-start: 2px solid;
  -webkit-border-end: 2px solid;
          border-inline-end: 2px solid;
  rotate: 135deg;
  color: var(--main);
  -webkit-transition: color 0.3s, translate 0.3s;
  transition: color 0.3s, translate 0.3s;
}

@media (any-hover: hover) {
  .c-button--anchor:hover:after {
    translate: 0 3px;
    -webkit-transition: translate 0.3s;
    transition: translate 0.3s;
  }
}
.parts-qa {
  margin-bottom: 50px;
}

.parts-qa h2,
.parts-office h2 {
  font-size: 28px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .parts-qa h2,
  .parts-office h2 {
    font-size: 18px;
  }
}

.parts-qa__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 30px;
  cursor: pointer;
  background-color: var(--white);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (max-width: 768px) {
  .parts-qa__summary {
    padding: 20px 26px;
  }
}
.parts-qa__summary::-webkit-details-marker {
  display: none;
}

.parts-qa__summary .question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .parts-qa__summary .question {
    gap: 14px;
    font-size: 14px;
  }
}

.parts-qa__summary .question:before {
  content: "Q";
  background: var(--main);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: calc(infinity * 1px);
  font-weight: bold;
  font-size: 21px;
  font-family: var(--en);
  color: var(--white);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .parts-qa__summary .question:before {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.parts-answer {
  display: grid;
  -webkit-transition: grid-template-rows 0.5s;
  transition: grid-template-rows 0.5s;
  transition: grid-template-rows 0.5s, -ms-grid-rows 0.5s;
  background: var(--white);
}

.parts-answer__inner {
  overflow: hidden;
}

.parts-answer__text {
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  .parts-answer__text {
    padding: 24px;
    font-size: 14px;
  }
}

.parts-qa__accordion + * {
  margin-top: 15px;
}

.icon {
  position: relative;
  display: inline-block;
  inline-size: 1em;
  aspect-ratio: 1;
}
@media only screen and (max-width: 768px) {
  .icon {
    inline-size: 0.8em;
    margin-left: 8px;
  }
}
.icon::before, .icon::after {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 1px;
  margin: auto;
  content: "";
  background-color: currentcolor;
}
.icon::after {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  rotate: 90deg;
}
.icon:where(.parts-qa__accordion[open] *)::after {
  opacity: 0;
}

.parts-qa__accordion[open] .parts-qa__summary {
  background: var(--main);
  color: var(--white);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.parts-qa__accordion[open] .parts-qa__summary .question:before {
  background: var(--white);
  color: var(--main);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.parts-office__list.--grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (max-width: 768px) {
  .parts-office__list.--grid3 {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

.parts-office__list.--grid2 {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(2, 381px);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (max-width: 768px) {
  .parts-office__list.--grid2 {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}

.parts-office__list + * {
  margin-top: 28px;
}
@media only screen and (max-width: 768px) {
  .parts-office__list + * {
    margin-top: 14px;
  }
}

.parts-office {
  margin-bottom: 160px;
}
@media only screen and (max-width: 768px) {
  .parts-office {
    margin-bottom: 100px;
  }
}
.parts-office .c-button--anchor {
  width: 100%;
  max-width: 381px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .parts-office .c-button--anchor {
    max-width: 100%;
  }
}

.parts-office__overseas {
  margin-bottom: 160px;
}
@media only screen and (max-width: 768px) {
  .parts-office__overseas {
    margin-bottom: 100px;
  }
}

.parts-office__heading {
  font-weight: bold;
  font-size: 25px;
}
@media only screen and (max-width: 768px) {
  .parts-office__heading {
    font-size: 17px;
  }
}

.parts-office__card-list + * {
  margin-top: 28px;
}

.parts-office__card-item {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "a b" "c b" "d b";
  gap: 20px 56px;
}
@media only screen and (max-width: 768px) {
  .parts-office__card-item {
    grid-template-columns: 1fr 118px;
    grid-template-areas: "a a" "c b" "d b";
    gap: 15px 18px;
  }
}

@media only screen and (max-width: 768px) {
  .parts-office__card-item:has(.c-button--oversea) {
    grid-template-areas: "a a" "c b" "d d";
  }
}

.parts-office__card-item {
  background: #fff;
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  .parts-office__card-item {
    padding: 25px;
  }
}

.parts-office__card-item + * {
  margin-top: 15px;
}

.parts-office__local-name {
  font-weight: bold;
  font-size: 20px;
  color: var(--main);
  border-bottom: 1px solid #d8d8d8;
  letter-spacing: 0.05em;
  padding-bottom: 13px;
  grid-area: a;
}
@media only screen and (max-width: 768px) {
  .parts-office__local-name {
    font-size: 16px;
  }
}

.parts-office__image {
  grid-area: b;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  .parts-office__image {
    width: max(118px, 100%);
    max-width: 100%;
  }
}

.parts-office__address-wrap {
  grid-area: c;
}

@media only screen and (max-width: 768px) {
  .parts-office__address {
    font-size: 14px;
  }
}

.parts-office__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 10px;
  grid-area: d;
}
@media only screen and (max-width: 768px) {
  .parts-office__link {
    margin-top: 15px;
  }
}
.parts-office__link a {
  background: #f7f7f7;
  width: 94px;
  padding: 4px 0;
  border-radius: calc(infinity * 1px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (max-width: 768px) {
  .parts-office__link a {
    font-size: 14px;
  }
}
.parts-office__link a:before {
  content: "";
  -webkit-mask: url(../../asset/images/icon/icon_pin.svg) no-repeat center;
          mask: url(../../asset/images/icon/icon_pin.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  display: inline-block;
  width: 13.37px;
  height: 21.05px;
  background: var(--main);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.parts-office__link a:nth-child(2):before {
  content: "";
  -webkit-mask: url(../../asset/images/icon/icon_pdf.svg) no-repeat center;
          mask: url(../../asset/images/icon/icon_pdf.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  display: inline-block;
  width: 13.33px;
  height: 16px;
  background: var(--main);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .parts-office__link a:hover {
    background: #707070;
    color: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
  .parts-office__link a:hover:before {
    background-color: var(--white);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}

.parts-office__tel {
  grid-area: d;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .parts-office__tel {
    font-size: 16px;
  }
}
.parts-office__tel a {
  color: var(--main);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.6px;
}
@media only screen and (max-width: 768px) {
  .parts-office__tel a {
    white-space: nowrap;
  }
}
.parts-office__tel a:before {
  content: "";
  background: url(../../asset/images/icon/icon_tel.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 18.51px;
  height: 18.51px;
}
@media only screen and (max-width: 768px) {
  .parts-office__tel a:before {
    width: 15px;
    height: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .parts-office__tel a > span {
    font-size: 14px;
  }
}

.parts-office__container {
  margin-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .parts-office__container {
    margin-bottom: 80px;
  }
}

.parts-office__container:last-of-type {
  margin-bottom: 0;
}

.parts-office__container + .parts-office__overseas {
  margin-bottom: 120px;
}
@media only screen and (max-width: 768px) {
  .parts-office__container + .parts-office__overseas {
    margin-bottom: 90px;
  }
}

.parts-office__container + .parts-office__overseas:last-of-type {
  margin-bottom: 0;
}

.parts-office__overseas-heading {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--main);
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .parts-office__overseas-heading {
    font-size: 17px;
    margin-bottom: 36px;
  }
}

.parts-office__tel--oversea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .parts-office__tel--oversea {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.parts-office__tel--oversea .c-button--oversea {
  background-color: var(--main);
  color: #fff;
  border-radius: calc(infinity * 1px);
  width: 100%;
  max-width: 249px;
  padding: 7px 22px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid transparent;
}
@media only screen and (max-width: 768px) {
  .parts-office__tel--oversea .c-button--oversea {
    font-size: 13px;
    max-width: 163px;
    padding-inline: 15px;
  }
}
.parts-office__tel--oversea .c-button--oversea:before {
  display: none;
}
.parts-office__tel--oversea .c-button--oversea:after {
  content: "";
  -webkit-mask: url(../../asset/images/icon/icon_link.svg) no-repeat;
          mask: url(../../asset/images/icon/icon_link.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 15px;
  height: 15px;
  display: inline-block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .parts-office__tel--oversea .c-button--oversea:after {
    width: 8px;
    height: 8px;
  }
}
@media (any-hover: hover) {
  .parts-office__tel--oversea .c-button--oversea:hover {
    background-color: #fff;
    color: var(--main);
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid var(--main);
  }
  .parts-office__tel--oversea .c-button--oversea:hover:after {
    background-color: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}

.p-office-list {
  padding: 110px 0 120px;
}
@media only screen and (max-width: 768px) {
  .p-office-list {
    padding: 60px 0 0;
  }
}

.p-office-list__heading {
  font-weight: bold;
  color: var(--main);
}

.p-qa {
  padding: 120px 0;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  .p-qa {
    padding: 68px 0 70px;
  }
}

.recruit_h2 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 160px;
}
@media only screen and (max-width: 768px) {
  .recruit_h2 {
    font-size: 18px;
    margin-top: 100px;
  }
}
.recruit_h2.first {
  margin-top: 30px;
}

.parts-answer a {
  color: var(--main);
  border-bottom: 1px solid var(--main);
}
@media (hover: hover) {
  .parts-answer a:hover {
    opacity: 0.7;
  }
}

.p-ideal-body {
  position: relative;
}

.p-ideal-body:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 621px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .p-ideal-body:before {
    height: 580px;
  }
}

.p-infographics {
  padding-bottom: 120px;
}
@media only screen and (max-width: 768px) {
  .p-infographics {
    padding-bottom: 70px;
  }
}

.p-infographics-fv {
  margin-top: 70px;
}
@media only screen and (max-width: 768px) {
  .p-infographics-fv {
    margin-top: 50px;
  }
}

.p-infographics-grid {
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  .p-infographics-grid {
    margin-top: 40px;
  }
}

.grid-row + * {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .grid-row + * {
    margin-top: 15px;
  }
}

.grid-row01 {
  display: grid;
  grid-template-columns: 640px 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .grid-row01 {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-row01 {
    row-gap: 15px;
  }
}

.grid-row02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .grid-row02 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "a c";
    gap: 40px;
  }
  .grid-row02 .grid-item03 {
    grid-area: a;
  }
  .grid-row02 .grid-item04 {
    grid-area: b;
  }
  .grid-row02 .grid-item05 {
    grid-area: c;
  }
}
@media only screen and (max-width: 768px) {
  .grid-row02 {
    gap: 14px;
  }
}

.grid-row03 {
  display: grid;
  grid-template-columns: 1fr;
}

.grid-row03 .p-infographics__flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .grid-row03 .p-infographics__flex-wrap {
    padding: 20px 0 40px 20px;

  }
}
.grid-row03 .p-inforgraphics__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media only screen and (max-width: 768px) {
  .grid-row03 .p-inforgraphics__flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

.grid-row04 {
  display: grid;
  grid-template-columns: 488px 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .grid-row04 {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .grid-row04 {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

.grid-row05 {
  display: grid;
  grid-template-columns:  1fr;
}

.grid-row06 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .grid-row06 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "a c";
    gap: 40px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 768px) {
  .grid-row06 {
    gap: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .grid-row06 .grid-item14 {
    grid-area: a;
  }
  .grid-row06 .grid-item15 {
    grid-area: b;
  }
  .grid-row06 .grid-item16 {
    grid-area: c;
  }
}

@media only screen and (max-width: 768px) {
  .grid-row07 .grid-item17 {
    padding: 20px 30px 30px 20px;
  }
}
.grid-row07 .number {
  margin-right: 125px;
}
@media only screen and (max-width: 768px) {
  .grid-row07 .number {
    text-align: right;
    margin-right: 0;
  }
}
.grid-row07 .fz-text--lg {
  font-size: 99px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .grid-row07 .fz-text--lg {
    font-size: 59px;
  }
}
.grid-row07 .fz-text-jp--lg {
  font-size: 45px;
  font-weight: bold;
  margin-left: 6px;
}
@media only screen and (max-width: 768px) {
  .grid-row07 .fz-text-jp--lg {
    font-size: 25px;
  }
}
.grid-row07 .p-infographics-grid__image {
  position: absolute;
  right: 40px;
  top: 50%;
  translate: 0 -50%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-row07 .p-infographics-grid__image {
    width: 83px;
    height: 51px;
    right: 36px;
    top: 21.5px;
    translate: unset;
  }
}
.grid-row07 .p-infographics__flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .grid-row07 .p-infographics__flex-wrap {
    display: revert;
  }
}
.grid-row07 .p-inforgraphics__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media only screen and (max-width: 768px) {
  .grid-row07 .p-inforgraphics__flex {
    display: revert;
  }
}
.grid-row07 .p-infographics-grid__sub-text {
  margin-top: 0;
}

.p-infographics__image {
  width: 100vw;
  margin-right: calc(50% - 50vw);
}

@media only screen and (max-width: 768px) {
  .p-infographics__image img {
    width: 100vw;
  }
}

@media only screen and (max-width: 768px) {
  .p-infographics-fv__inner {
    width: calc(100% - 80px);
  }
}

.p-infographics-info {
  padding-top: 120px;
}
@media only screen and (max-width: 768px) {
  .p-infographics-info {
    padding-top: 70px;
  }
}

.p-infographics-info + * {
  padding-top: 120px;
}
@media only screen and (max-width: 768px) {
  .p-infographics-info + * {
    padding-top: 70px;
  }
}

.p-infographics-grid__box {
  border-radius: 20px;
  -webkit-box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.12);
  background: #fff;
  position: relative;
  overflow: clip;
}
@media only screen and (max-width: 768px) {
  .p-infographics-grid__box {
    border-radius: 10px;
  }
}

.p-infographics-grid__title {
  font-size: 23px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  white-space: nowrap;
}
@media (768px <= width <= 1024px) {
  .p-infographics-grid__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .p-infographics-grid__title {
    font-size: clamp(14px, 3.2558139535vw, 28px);
  }
}

@media only screen and (max-width: 768px) {
  .p-infographics-grid__title.square {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
}

.p-infographics-grid__sub-text {
  font-size: 14px;
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .p-infographics-grid__sub-text {
    font-size: 11px;
    margin-top: 0;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.number {
  color: var(--main);
  font-family: var(--en);
  white-space: nowrap;
  line-height: 1;
}

:is(.p-infographics-grid__box) {
  padding: 55px;
  padding: clamp(20px, 2.8645833333vw, 55px);
}

.grid-item01 {
  padding-bottom: 46px;
}
@media only screen and (max-width: 768px) {
  .grid-item01 {
    padding-bottom: 20px;
  }
}
.grid-item01 p {
  font-weight: bold;
  color: var(--main);
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .grid-item01 p {
    margin-top: 30px;
  }
}
.grid-item01 p > span {
  font-family: var(--en);
}
.grid-item01 .fz-text--lg {
  font-size: 71px;
  width: 183px;
  display: inline-block;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .grid-item01 .fz-text--lg {
    width: 99px;
    font-size: 43px;
  }
}
.grid-item01 .fz-text-jp--lg {
  font-size: 34px;
  margin-left: 6px;
}
@media only screen and (max-width: 768px) {
  .grid-item01 .fz-text-jp--lg {
    font-size: 21px;
  }
}
.grid-item01 .fz-text--md {
  font-size: 52px;
}
@media only screen and (max-width: 768px) {
  .grid-item01 .fz-text--md {
    font-size: 32px;
  }
}
.grid-item01 .fz-text--md:first-of-type {
  margin-left: 13px;
}
.grid-item01 .fz-text-jp--md {
  font-size: 25px;
  margin-left: 3px;
}
@media only screen and (max-width: 768px) {
  .grid-item01 .fz-text-jp--md {
    font-size: 15px;
  }
}
.grid-item01 .p-infographics-grid__image {
  position: absolute;
  right: 25px;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-item01 .p-infographics-grid__image {
    width: 76px;
    height: 81px;
  }
}

.grid-item02 {
  padding-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 62px;
}
@media only screen and (max-width: 768px) {
  .grid-item02 {
    padding-bottom: 30px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
  }
}
.grid-item02 .p-infographics-grid__item-wrap {
  margin-top: 40px;
  white-space: nowrap;
}
.grid-item02 .p-infographics-grid__item {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: var(--main);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
}
@media only screen and (max-width: 768px) {
  .grid-item02 .p-infographics-grid__item {
    font-size: clamp(16px, 3.7209302326vw, 28px);
    padding: 6px 8px;
  }
}
.grid-item02 .p-infographics-grid__item + * {
  margin-top: 5px;
}

.grid-item03 {
  padding-top: 42px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .grid-item03 {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.grid-item03 .fz-text--lg {
  font-size: 71px;
  font-weight: bold;
  color: var(--main);
  font-family: var(--en);
  width: 183px;
  display: inline-block;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .grid-item03 .fz-text--lg {
    font-size: 43px;
    width: 99px;
  }
}
.grid-item03 .fz-text-jp--lg {
  font-size: 34px;
  font-weight: bold;
  margin-left: 6px;
  margin-right: 13px;
}
@media only screen and (max-width: 768px) {
  .grid-item03 .fz-text-jp--lg {
    font-size: 18px;
    margin-right: 0;
    margin-left: 12px;
  }
}
.grid-item03 .p-infographics-grid__title {
  margin-top: 127px;
}
@media only screen and (max-width: 768px) {
  .grid-item03 .p-infographics-grid__title {
    margin-top: auto;
  }
}
.grid-item03 .p-infographics-grid__image {
  position: absolute;
  bottom: 30px;
  right: 45px;
}
@media screen and (max-width: 1024px) {
  .grid-item03 .p-infographics-grid__image {
    bottom: unset;
    top: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item03 .p-infographics-grid__image {
    width: 88px;
    height: 81px;
    top: unset;
    bottom: 20px;
    right: 20px;
  }
}

.grid-item04 {
  padding: 140px 55px 38px;
}
@media only screen and (max-width: 768px) {
  .grid-item04 {
    padding: 20px;
    padding-right: 16px;
  }
}
.grid-item04 .p-infographics-grid__image {
  position: absolute;
  top: 46px;
  right: 49px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-item04 .p-infographics-grid__image {
    top: unset;
    right: unset;
    left: 20px;
    bottom: -5px;
    width: 57px;
    height: 72px;
  }
}
.grid-item04 .number {
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .grid-item04 .number {
    text-align: right;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item04 .p-inforgraphics__flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }
}
.grid-item04 .fz-text--lg {
  font-size: 101px;
  font-weight: bold;
  display: inline-block;
  text-align: right;
  width: 205px;
}
@media only screen and (max-width: 768px) {
  .grid-item04 .fz-text--lg {
    font-size: 45px;
    width: 91px;
  }
}
.grid-item04 .dot {
  width: 10px;
  display: inline-block;
}
.grid-item04 .fz-text--md {
  font-size: 59px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .grid-item04 .fz-text--md {
    font-size: 26px;
  }
}

.grid-item05 {
  padding: 36px 55px 50px;
}
@media only screen and (max-width: 768px) {
  .grid-item05 {
    padding: 20px;
  }
}
.grid-item05 .number {
  line-height: 1;
  position: relative;
  z-index: 1;
}
.grid-item05 .fz-text--lg {
  font-size: 101px;
  font-weight: bold;
  display: inline-block;
  text-align: right;
  width: 205px;
}
@media only screen and (max-width: 768px) {
  .grid-item05 .fz-text--lg {
    width: 91px;
    font-size: 45px;
  }
}
.grid-item05 .fz-text--md {
  font-size: 59px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .grid-item05 .fz-text--md {
    font-size: 26px;
  }
}
.grid-item05 .p-infographics-grid__image {
  position: absolute;
  left: -30px;
  bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .grid-item05 .p-infographics-grid__image {
    width: 61px;
    height: 61px;
    left: -10px;
    bottom: 20px;
  }
}
.grid-item05 .p-infographics-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 98px;
}
@media only screen and (max-width: 768px) {
  .grid-item05 .p-infographics-flex {
    margin-top: 7px;
  }
}

.grid-item06 {
  padding-top: 60px;
}
@media only screen and (max-width: 768px) {
  .grid-item06 {
    padding: 20px;
  }
}
.grid-item06 .number {
  font-size: 47px;
  font-weight: bold;
  line-height: 1;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .grid-item06 .number {
    font-size: 24px;
    margin-top: 20px;
  }
}
.grid-item06 .fz-text--lg {
  font-size: 155px;
  font-weight: bold;
  width: 89px;
  margin-inline: 10px;
}
@media only screen and (max-width: 768px) {
  .grid-item06 .fz-text--lg {
    font-size: 81px;
    margin-inline: 5px;
  }
}
.grid-item06 .p-infographics-grid__note {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .grid-item06 .p-infographics-grid__note {
    font-size: 11px;
  }
}
.grid-item06 .p-infographics-grid__image {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -20px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .grid-item06 .p-infographics-grid__image {
    width: 75px;
    height: 75px;
    right: -5px;
  }
}

@media only screen and (max-width: 768px) {
  .grid-item07 .p-infographics-grid__title {
    margin-left: auto;
  }
}
.grid-item07 .p-infographics-grid__circle-graph {
  position: relative;
  width: min(412px, 100%);
  margin-top: 43px;
}
@media only screen and (max-width: 768px) {
  .grid-item07 .p-infographics-grid__circle-graph {
    width: min(114px, 100%);
    margin-inline: auto;
    margin-top: 13px;
  }
}
@media screen and (max-width: 500px) {
  .grid-item07 .p-infographics-grid__circle-graph {
    margin-top: 30px;
  }
}
.grid-item07 .number {
  font-weight: bold;
  font-size: 31px;
  line-height: 1;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .grid-item07 .number {
    font-size: 13px;
  }
}
.grid-item07 .number01 {
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .grid-item07 .number01 {
    top: -30px;
  }
}
.grid-item07 .number02 {
  right: 0;
  bottom: 0;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .grid-item07 .number02 {
    text-align: left;
    bottom: -30px;
  }
}
.grid-item07 .fz-text--lg {
  font-size: 101px;
  display: inline-block;
  text-align: right;
  width: 116px;
}
@media only screen and (max-width: 768px) {
  .grid-item07 .fz-text--lg {
    font-size: 35px;
    display: inline-block;
    margin-top: 5px;
    width: 40px;
  }
}
.grid-item07 .fz-text--md {
  font-size: 57px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .grid-item07 .fz-text--md {
    font-size: 20px;
  }
}
.grid-item07 .p-infographics-grid__image {
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .grid-item07 .p-infographics-grid__sub-text {
    text-align: right;
  }
}

@media only screen and (max-width: 768px) {
  .grid-item08 {
    padding-bottom: 61px;
  }
}
.grid-item08 .p-infographics-grid__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(100px, 5.2083333333vw, 100px);
}
@media only screen and (max-width: 768px) {
  .grid-item08 .p-infographics-grid__list {
    gap: 34px;
  }
}
.grid-item08 .p-infographics-grid__item-inner {
  display: grid;
  grid-template-columns: clamp(100px, 10.4166666667vw, 200px) 1fr;
}
@media screen and (max-width: 1200px) {
  .grid-item08 .p-infographics-grid__item-inner {
    display: revert;
  }
}
.grid-item08 .p-infographics-grid__item-right {
  position: relative;
  z-index: 1;
}
.grid-item08 .number {
  font-size: 43px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .number {
    font-size: 28px;
    margin-top: 5px;
  }
}
.grid-item08 .number.--sm {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .number.--sm {
    font-size: 12px;
  }
}
.grid-item08 .number.--sm .fz-text--lg {
  font-size: 42px;
  width: 107px;
  display: inline-block;
  margin-left: 4px;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .number.--sm .fz-text--lg {
    font-size: 24px;
    width: 61px;
  }
}
.grid-item08 .fz-unit {
  margin-left: 7px;
}
.grid-item08 .number__inner {
  margin-left: 1em;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .number__inner {
    font-size: 13px;
  }
}
.grid-item08 .fz-text--lg {
  font-size: 89px;
  font-weight: bold;
  margin-left: 7px;
  display: inline-block;
  text-align: right;
  width: 226px;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .fz-text--lg {
    width: 127px;
    font-size: 50px;
    margin-left: 0;
  }
}
.grid-item08 .p-infographics-grid__item {
  position: relative;
}
.grid-item08 .p-infographics-grid__image01 {
  position: absolute;
  left: 0;
  bottom: -60px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .p-infographics-grid__image01 {
    width: 93px;
    height: 58px;
    margin-bottom: -4px;
  }
}
.grid-item08 .p-infographics-grid__image02 {
  position: absolute;
  left: 0;
  bottom: -60px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .p-infographics-grid__image02 {
    width: 86px;
    height: 58px;
    margin-bottom: -14px;
  }
}
.grid-item08 .p-infographics-grid__item:nth-of-type(2) .number {
  font-size: 41px;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .p-infographics-grid__item:nth-of-type(2) .number {
    font-size: 21px;
  }
}
.grid-item08 .p-infographics-grid__item:nth-of-type(2) .fz-text--lg {
  font-size: 133px;
}
@media only screen and (max-width: 768px) {
  .grid-item08 .p-infographics-grid__item:nth-of-type(2) .fz-text--lg {
    font-size: 68px;
    width: 78px;
  }
}

.grid-item09 .p-infographics__bar-graph {
  margin-bottom: 65px;
}
.grid-item09 .number {
  font-weight: bold;
  font-size: 30px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .grid-item09 .number {
    font-size: 20px;
    z-index: 1;
  }
}

.grid-item09 .p-infographics__note {
  font-size: 14px;
  margin: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  .grid-item09 .p-infographics__note {
    font-size: 11px;
    line-height: 1.3;
  }
}

.grid-item09 .fz-text--lg {
  font-size: 54px;
  display: inline-block;
  text-align: right;
  width: 63px;
}
@media only screen and (max-width: 768px) {
  .grid-item09 .fz-text--lg {
    font-size: 35px;
    width: 40px;
  }
}
.grid-item09 .fz-text--lg.count-number02 {
  width: 31px;
}
@media only screen and (max-width: 768px) {
  .grid-item09 .fz-text--lg.count-number02 {
    width: 20px;
  }
}
.grid-item09 .fz-unit {
  margin-left: 2px;
}
@media only screen and (max-width: 768px) {
  .grid-item09 .fz-unit {
    margin-left: 0;
  }
}
.grid-item09 .bar {
  padding: 13.5px 17px;
  color: #0d3583;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .grid-item09 .bar {
    padding: 10px 5px;
    font-size: 14px;
  }
}
.grid-item09 .bar:before {
  content: "";
  background: #eaeaea;
  position: absolute;
  inset: 0;
  width: min(30px, 100%);
  z-index: -1;
}
.grid-item09 .bar2:before {
  width: min(35px, 100%);
}
@media only screen and (max-width: 768px) {
  .grid-item09 .bar:before {
    width: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item09 .bar2:before {
    width: 15px;
  }
}
.grid-item09 .bar-blue {
  position: relative;
  color: #fff;
  z-index: 1;
}
.grid-item09 .bar-blue:before {
  content: "";
  background: #48b4f8;
  position: absolute;
  inset: 0;
  width: clamp(200px, 14.0104166667vw, 269px);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-item09 .bar-blue:before {
    width: calc(100% + 10px);
  }
}
.grid-item09 .p-infographics__bar-graph-item {
  display: grid;
  grid-template-columns: 3fr 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}
@media only screen and (max-width: 768px) {
  .grid-item09 .p-infographics__bar-graph-item {
    grid-template-columns: 1.7fr 1fr;
    gap: 0;
  }
}
.grid-item09 .p-infographics__bar-graph-item + * {
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .grid-item10 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.grid-item10 .p-infographics__bar-graph-list {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .p-infographics__bar-graph-list {
    margin-top: auto;
  }
}
.grid-item10 .p-infographics__note {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .p-infographics__note {
    font-size: 11px;
    line-height: 1.3;
  }
}
.grid-item10 .p-infographics__top-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .p-infographics__top-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.grid-item10 .number {
  font-weight: bold;
  font-size: 30px;
  text-align: right;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .number {
    font-size: 16px;
  }
}
.grid-item10 .fz-text--lg {
  font-size: 54px;
  display: inline-block;
  text-align: right;
  width: 63px;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .fz-text--lg {
    width: 40px;
    font-size: 23px;
  }
}
.grid-item10 .fz-unit {
  margin-left: 2px;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .fz-unit {
    margin-left: 0;
  }
}
.grid-item10 .bar {
  padding: 13.5px 17px;
  color: #0d3583;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .bar {
    padding: 5px 0 5px 5px;
    font-size: 14px;
    white-space: wrap;
  }
}
.grid-item10 .bar:before {
  content: "";
  background: #eaeaea;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.grid-item10 .bar.bar01:before {
  width: clamp(240px, 17.0833vw, 328px);
}
@media only screen and (max-width: 768px) {
  .grid-item10 .bar.bar01:before {
    width: clamp(40px, 19.5vw, 75px);
  }
}

.grid-item10 .bar.bar02:before {
  width: clamp(100px, 8.7vw, 167px);
}
@media only screen and (max-width: 768px) {
  .grid-item10 .bar.bar02:before {
    width: clamp(20px, 10vw, 39px);
  }
}

.grid-item10 .bar.bar03:before {
  width: clamp(60px, 4.7vw, 90px);
}
@media only screen and (max-width: 768px) {
  .grid-item10 .bar.bar03:before {
    width: clamp(10px, 5.5vw, 21px);
  }
}

.grid-item10 .bar.bar04:before {
  width: clamp(40px, 3vw, 58px);
}
@media only screen and (max-width: 768px) {
  .grid-item10 .bar.bar04:before {
    width: clamp(5px, 3.5vw, 13px);
  }
}
.grid-item10 .bar.bar-blue {
  position: relative;
  color: #fff;
}
.grid-item10 .bar.bar-blue:before {
  content: "";
  background: #48b4f8;
  position: absolute;
  inset: 0;
  width: clamp(200px, 17.0833333333vw, 328px);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .bar.bar-blue:before {
    width: 130px;
  }
}
.grid-item10 .p-infographics__bar-graph-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .p-infographics__bar-graph-item {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
.grid-item10 .p-infographics__bar-graph-item + * {
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .grid-item10 .p-infographics__bar-graph-item + * {
    margin-top: 10px;
  }
}

.grid-item11 {
  padding: 50px 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 62px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .grid-item11 {
    display: revert;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item11 {
    padding: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .grid-item11 .p-infographics-grid__image {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item11 .p-infographics-grid__image {
    width: 66px;
    height: 66px;
  }
}
.grid-item11 .p-infographics-grid__text {
  font-weight: bold;
  font-size: 25px;
  color: var(--main);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .grid-item11 .p-infographics-grid__text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%;
    font-size: 13px;
  }
}
.grid-item11 .p-infographics-grid__text span {
  background: var(--main);
  color: #fff;
  padding: 8px 11px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .grid-item11 .p-infographics-grid__text span {
    font-size: 16px;
    padding: 4px 5px;
  }
}

.grid-item12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .grid-item12 {
    display: revert;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item12 {
    gap: 14px;
  }
}
.grid-item12 .fz-text--lg {
  font-size: 101px;
  font-family: var(--en);
  font-weight: bold;
  display: inline-block;
  width: 175px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .grid-item12 .fz-text--lg {
    font-size: 50px;
    width: 86px;
  }
}
.grid-item12 .number {
  font-size: 39px;
  font-weight: bold;
  line-height: 1;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .grid-item12 .number {
    margin-top: 10px;
    font-size: 19px;
    text-align: right;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item12 .p-infographics-grid__flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }
}

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

@media only screen and (max-width: 768px) {
  .grid-item13 {
    padding: 20px 20px 30px 25px;
  }
}
.grid-item13 .p-infographics-grid__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 130px;
}
@media only screen and (max-width: 768px) {
  .grid-item13 .p-infographics-grid__list {
    gap: min(48px, 100%);
  }
}
.grid-item13 .p-infographics-grid__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 1200px) {
  .grid-item13 .p-infographics-grid__item {
    display: revert;
  }
}
.grid-item13 .number {
  line-height: 1;
  margin-top: 27px;
}
.grid-item13 .number .fz-text--lg {
  font-size: 101px;
  font-weight: bold;
  display: inline-block;
  text-align: right;
  width: 186px;
}
@media only screen and (max-width: 768px) {
  .grid-item13 .number .fz-text--lg {
    font-size: 63px;
    width: 116px;
  }
}
.grid-item13 .number .fz-text--sm {
  font-size: 81px;
}
@media only screen and (max-width: 768px) {
  .grid-item13 .number .fz-text--sm {
    font-size: 50px;
  }
}
.grid-item13 .number .small-decimal {
  font-size: 81px;
}
@media only screen and (max-width: 768px) {
  .grid-item13 .number .small-decimal {
    font-size: 50px;
  }
}
.grid-item13 .number .fz-unit {
  font-size: 57px;
  font-weight: bold;
  margin-left: 8px;
}
@media only screen and (max-width: 768px) {
  .grid-item13 .number .fz-unit {
    font-size: 34px;
  }
}
.grid-item13 .number02 .fz-unit {
  font-size: 27px;
}

@media only screen and (max-width: 768px) {
  .grid-item14 {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.grid-item14 .p-infographics-grid__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
}
.grid-item14 .p-infographics-grid__title .fz-text--sm {
  font-size: 16px;
  position: relative;
  top: -2px;
}
.grid-item14 .number {
  font-size: 37px;
  font-weight: bold;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .grid-item14 .number {
    font-size: 24px;
    top: -36px;
    right: -10px;
  }
}
.grid-item14 .fz-text--lg {
  font-size: 84px;
  margin-left: 3px;
  width: 160px;
  display: inline-block;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .grid-item14 .fz-text--lg {
    font-size: 50px;
    width: 100px;
  }
}
.grid-item14 .fz-unit {
  font-size: 41px;
}
@media only screen and (max-width: 768px) {
  .grid-item14 .fz-unit {
    font-size: 27px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item14 .p-infographics-grid__image {
    width: 100%;
    max-width: 127px;
    margin-inline: auto;
  }
}
.grid-item14 .p-infographics-grid__text.u-mg-top {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .grid-item14 .p-infographics-grid__text.u-mg-top {
    margin-top: 10px;
  }
}
.grid-item14 .small-decimal {
  font-size: 70px;
}
@media only screen and (max-width: 768px) {
  .grid-item14 .small-decimal {
    font-size: 44px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item14 .p-infographics-grid__sub-text {
    margin-top: 3px;
  }
}

.grid-item15 .p-infographics-flex {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.grid-item15 .p-infographics-grid__sub-text {
  text-align: right;
}
.grid-item15 .p-infographics-grid__circle-graph {
  width: 263px;
  position: relative;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .grid-item15 .p-infographics-grid__circle-graph {
    width: 100%;
    max-width: 135px;
    margin-inline: auto;
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .grid-item15 .p-infographics-grid__image {
    width: 78px;
    height: 78px;
  }
}
.grid-item15 .number {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  font-size: 37px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .grid-item15 .number {
    font-size: 22px;
  }
}
.grid-item15 .fz-text--lg {
  font-size: 73px;
  display: inline-block;
  width: 127px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .grid-item15 .fz-text--lg {
    font-size: 43px;
    width: 74px;
  }
}
.grid-item15 .fz-unit {
  font-size: 41px;
}
@media only screen and (max-width: 768px) {
  .grid-item15 .fz-unit {
    font-size: 22px;
  }
}

.grid-item16 {
  position: relative;
}
.grid-item16 .p-infographics__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.grid-item16 .number {
  font-size: 30px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .grid-item16 .number {
            align-items: flex-end;
    font-size: 13px;
    line-height: 1.3846153846;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}
.grid-item16 .p-infographics-grid__title {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .grid-item16 .p-infographics-grid__title {
    margin-bottom: 20px;
  }
}
.grid-item16 .p-infographics-grid__image {
  position: absolute;
  right: 47px;
  bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .grid-item16 .p-infographics-grid__image {
    width: 48px;
    height: 48px;
    right: 13px;
    bottom: 13px;
  }
}
.grid-item16 .fz-text--lg {
  font-size: 101px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .grid-item16 .fz-text--lg {
    font-size: 50px;
  }
}
.grid-item16 .fz-unit {
  font-size: 39px;
}
@media only screen and (max-width: 768px) {
  .grid-item16 .fz-unit {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .p-infographics-grid__title .square {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
}

.c-button--blue.w-304 {
  max-width: 304px;
}
@media only screen and (max-width: 768px) {
  .c-button--blue.w-304 {
    max-width: 261px;
  }
}

.l-newgraduates {
  background-color: #fff;
}
.l-newgraduates .p-occupation {
  margin-top: 109px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-occupation {
    margin-top: 60px;
  }
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__head h3 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.06;
  color: var(--main);
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__head h3 {
    font-size: 20px;
    line-height: 1.6;
  }
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__head p {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__head p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.57;
  }
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__annotation {
  display: block;
  text-align: right;
  margin-top: 90px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__annotation {
    margin-top: 60px;
  }
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__annotation span {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__annotation span {
    font-size: 14px;
  }
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__annotation span::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 24px;
  background-color: #f0f0f0;
  left: -68px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__annotation span::before {
    top: -5px;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__outer {
    overflow-x: scroll;
  }
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap {
  width: calc(100% - 58px);
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap {
    width: 806px;
  }
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link {
  position: absolute;
  z-index: 1;
}
@media (hover: hover) {
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link:hover .is-default {
    opacity: 0;
  }
  .l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link:hover .is-hover {
    opacity: 1;
  }
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.first {
  width: 76.9%;
  bottom: 0;
  right: 0;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.second {
  width: 7.34%;
  top: 11.7%;
  left: 23.1%;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.third {
  width: 45.7%;
  top: 76.4%;
  right: 0;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.fourth {
  width: 45.7%;
  top: 65.6%;
  right: 0;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.fifth {
  width: 45.7%;
  top: 54.8%;
  right: 0;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.sixth {
  width: 26.1%;
  top: 44.1%;
  right: 19.6%;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.seventh {
  width: 26.1%;
  top: 33.3%;
  right: 19.6%;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.eighth {
  width: 26.1%;
  top: 11.7%;
  right: 19.6%;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link.ninth {
  width: 19.2%;
  top: 33.3%;
  right: 0;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link .is-default {
  position: relative;
}
.l-newgraduates .p-occupation .c-section-inner .p-occupation__outer .p-occupation__itemWrap .p-occupation__link .is-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.l-newgraduates .p-occupation .c-section-inner .attention {
  font-size: 13px;
  line-height: 2.15;
  margin-top: 10px;
}
@media (min-width: 700px) {
  .l-newgraduates .p-occupation .c-section-inner .attention {
    display: none;
  }
}
.l-newgraduates .p-info,
.l-newgraduates .p-apply {
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-info,
  .l-newgraduates .p-apply {
    margin-top: 70px;
  }
}
.l-newgraduates .p-info .p-recruit-table,
.l-newgraduates .p-apply .p-recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-info .p-recruit-table,
  .l-newgraduates .p-apply .p-recruit-table {
    margin-top: 20px;
  }
}
.l-newgraduates .p-info .p-recruit-table th,
.l-newgraduates .p-info .p-recruit-table td,
.l-newgraduates .p-apply .p-recruit-table th,
.l-newgraduates .p-apply .p-recruit-table td {
  padding: 36px 0;
  vertical-align: top;
}
.l-newgraduates .p-info .p-recruit-table th,
.l-newgraduates .p-apply .p-recruit-table th {
  width: 23.6%;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-info .p-recruit-table th,
  .l-newgraduates .p-apply .p-recruit-table th {
    display: block;
    width: 100%;
    padding: 24px 0 0;
  }
}
.l-newgraduates .p-info .p-recruit-table th span,
.l-newgraduates .p-apply .p-recruit-table th span {
  font-weight: bold;
  color: var(--main);
  padding-left: 17px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-info .p-recruit-table th span,
  .l-newgraduates .p-apply .p-recruit-table th span {
    font-size: 14px;
    line-height: 2;
  }
}
.l-newgraduates .p-info .p-recruit-table th span::before,
.l-newgraduates .p-apply .p-recruit-table th span::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #c3c3c3;
  left: 0;
  top: 5px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-info .p-recruit-table th span::before,
  .l-newgraduates .p-apply .p-recruit-table th span::before {
    top: 4px;
  }
}
.l-newgraduates .p-info .p-recruit-table td,
.l-newgraduates .p-apply .p-recruit-table td {
  width: 76.4%;
  border-bottom: 1px solid #d8d8d8;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-info .p-recruit-table td,
  .l-newgraduates .p-apply .p-recruit-table td {
    display: block;
    width: 100%;
    padding: 8px 0 24px;
    font-size: 14px;
    line-height: 1.57;
  }
}
.l-newgraduates .p-info .p-recruit-table td ul,
.l-newgraduates .p-apply .p-recruit-table td ul {
  padding-left: 50px;
}
.l-newgraduates .p-info .p-recruit-table td ul:not(:last-child),
.l-newgraduates .p-apply .p-recruit-table td ul:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-info .p-recruit-table td ul:not(:last-child),
  .l-newgraduates .p-apply .p-recruit-table td ul:not(:last-child) {
    margin-bottom: 12px;
  }
}
.l-newgraduates .p-info .p-recruit-table td ul li,
.l-newgraduates .p-apply .p-recruit-table td ul li {
  position: relative;
}
.l-newgraduates .p-info .p-recruit-table td ul li::before,
.l-newgraduates .p-apply .p-recruit-table td ul li::before {
  position: absolute;
  content: "・";
  left: -18px;
}
.l-newgraduates .p-info .p-recruit-table td .attention,
.l-newgraduates .p-apply .p-recruit-table td .attention {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-info .p-recruit-table td .attention,
  .l-newgraduates .p-apply .p-recruit-table td .attention {
    font-size: 12px;
  }
}
.l-newgraduates .p-info .p-recruit-table td a,
.l-newgraduates .p-apply .p-recruit-table td a {
  color: var(--main);
  border-bottom: 1px solid var(--main);
}
@media (hover: hover) {
  .l-newgraduates .p-info .p-recruit-table td a:hover,
  .l-newgraduates .p-apply .p-recruit-table td a:hover {
    opacity: 0.7;
  }
}
.l-newgraduates .p-process {
  margin-top: 120px;
  padding: 120px 0;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process {
    margin-top: 70px;
    padding: 68px 0 70px;
  }
}
.l-newgraduates .p-process .c-section-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process .c-section-inner {
    display: block;
  }
}
.l-newgraduates .p-process .c-section-inner hgroup {
  width: 37.5%;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process .c-section-inner hgroup {
    width: 100%;
  }
}
.l-newgraduates .p-process .c-section-inner .p-process__itemWrap {
  width: 62.5%;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process .c-section-inner .p-process__itemWrap {
    width: 100%;
    margin-top: 40px;
  }
}
.l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox:not(:last-child) {
    margin-bottom: 20px;
  }
}
.l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox:not(:last-child) .p-process__icon::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 4px;
  height: 50px;
  left: 50%;
  bottom: -40px;
}
.l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox .p-process__icon {
  width: 124px;
  margin-right: 50px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox .p-process__icon {
    width: 96px;
    margin-right: 19px;
  }
}
.l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox .p-process__textArea {
  width: calc(100% - 174px);
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox .p-process__textArea {
    width: calc(100% - 115px);
  }
}
.l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox .p-process__textArea .p-process__eng {
  display: block;
  color: var(--main);
  font-family: var(--en);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.72;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 9px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox .p-process__textArea .p-process__eng {
    font-size: 14px;
  }
}
.l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox .p-process__textArea .p-process__title {
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 22px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-process .c-section-inner .p-process__itemWrap .p-process__itemBox .p-process__textArea .p-process__title {
    font-size: 16px;
    margin-top: 15px;
  }
}
.l-newgraduates .p-entry.new {
  margin-top: 120px;
  padding: 110px 0 131px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-entry.new {
    margin-top: 70px;
    padding: 80px 0;
  }
}
.l-newgraduates .p-entry.new .c-section-inner .p-entry__container {
  display: block;
}
.l-newgraduates .p-entry.new .c-section-inner .p-entry__container h2 {
  margin: auto;
}
@media (min-width: 769px) {
  .l-newgraduates .p-entry.new .c-section-inner .p-entry__container h2::before, .l-newgraduates .p-entry.new .c-section-inner .p-entry__container h2::after {
    display: none;
  }
}
.l-newgraduates .p-entry.new .mynavi-bnr {
  display: block;
  margin: 50px auto 0;
  width: 240px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-entry.new .mynavi-bnr {
    margin-top: 40px;
  }
}
@media (hover: hover) {
  .l-newgraduates .p-entry.new .mynavi-bnr:hover {
    opacity: 0.7;
  }
}
.l-newgraduates .p-contact {
  padding: 110px 0;
  border-bottom: 1px solid #d8d8d8;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact {
    padding: 70px 0;
  }
}
.l-newgraduates .p-contact .p-contact__container {
  background-color: #f7f7f7;
  margin-top: 50px;
  padding: 49px 49px 49px 78px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1100px) {
  .l-newgraduates .p-contact .p-contact__container {
    padding: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container {
    display: block;
    margin-top: 40px;
    padding: 30px;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__info {
  width: 344px;
}
@media (max-width: 1100px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__info {
    width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__info {
    width: 100%;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__info .p-contact__name {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding-left: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__info .p-contact__name {
    font-size: 16px;
    line-height: 1.93;
    padding-bottom: 8px;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__info .p-contact__name::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--main);
  left: 0;
  top: 11px;
}
.l-newgraduates .p-contact .p-contact__container .p-contact__info .p-contact__address {
  margin-top: 26px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__info .p-contact__address {
    font-size: 14px;
    line-height: 1.57;
    margin-top: 20px;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__info .p-contact__manager {
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__info .p-contact__manager {
    font-size: 14px;
    line-height: 1.57;
    margin-top: 10px;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item {
  width: calc(100% - 425.5px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 25px;
}
@media (max-width: 1100px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item {
    width: calc(100% - 300.5px);
  }
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box {
  background-color: #fff;
  width: calc(50% - 12.5px);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.tel {
  padding: 58px 0;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.tel {
    padding: 27px 30px 30px 45px;
    margin-bottom: 10px;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.tel .p-contact__icon {
  width: 48.6px;
  margin: 0 auto 17.4px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.tel .p-contact__icon {
    width: 32px;
    margin: 0;
    margin: 0 36px 0 0;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.tel .p-contact__textArea .p-contact__number {
  color: var(--main);
  font-weight: bold;
  font-size: 24px;
  font-family: var(--en);
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.tel .p-contact__textArea .p-contact__number {
    font-size: 21px;
    margin-bottom: 0;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.tel .p-contact__textArea .p-contact__box-text {
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.tel .p-contact__textArea .p-contact__box-text {
    font-size: 12px;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail {
  padding: 64px 0 69px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail {
    padding: 43px 30px 43px 45px;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail .p-contact__icon {
  width: 52.8px;
  margin: 0 auto 38px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail .p-contact__icon {
    width: 37.6px;
    margin: 0 36px 0 0;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail .p-contact__textArea .p-contact__strong {
  color: var(--main);
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail .p-contact__textArea .p-contact__strong {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.5;
  }
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail .p-contact__textArea .p-contact__mail {
  line-height: 0;
}
.l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail .p-contact__textArea .p-contact__mail a {
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  .l-newgraduates .p-contact .p-contact__container .p-contact__item .p-contact__box.mail .p-contact__textArea .p-contact__mail a {
    font-size: 12px;
  }
}

.p-occupation-body {
  background-color: #fff;
}
.p-occupation-body::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 621px;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job {
    padding: 70px 0 0;
  }
}
.p-occupation-body .p-introduce {
  padding: 110px 0 120px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce {
    padding: 70px 0 100px;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .c-section-inner {
    display: contents;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .c-section-inner .c-hgroup {
    padding: 0 20px;
  }
}
.p-occupation-body .p-introduce .c-section-inner .p-staff__wrap {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px 63px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .c-section-inner .p-staff__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0 40px;
    padding-left: 36px;
    margin-top: 46px;
    overflow-x: scroll;
    padding-bottom: 20px;
  }
  .p-occupation-body .p-introduce .c-section-inner .p-staff__wrap .p-staff__item {
    width: 246px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.p-occupation-body .p-introduce .c-section-inner .p-staff__wrap .p-staff__item .p-staff__link {
  position: relative;
}
.p-occupation-body .p-introduce .c-section-inner .p-staff__wrap .p-staff__item .p-staff__link .p-staff__category {
  position: absolute;
  top: 0;
  left: 0;
  width: 126px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main);
  color: #fff;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .c-section-inner .p-staff__wrap .p-staff__item .p-staff__link .p-staff__category {
    width: 100px;
    height: 32px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .c-section-inner .p-staff__wrap .p-staff__item .p-staff__link .p-staff__department {
    margin-top: 24px;
  }
  .p-occupation-body .p-introduce .c-section-inner .p-staff__wrap .p-staff__item .p-staff__link .p-staff__department li {
    line-height: 1.57;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .c-section-inner .p-staff__wrap .p-staff__item .p-staff__link .p-staff__copy p {
    padding: 0.5em 10px;
    line-height: 2.32;
    margin-left: -16px;
  }
}
.p-occupation-body .p-introduce .c-section-inner .attention {
  padding: 0 20px;
  font-size: 13px;
  line-height: 2.15;
  margin-top: 10px;
}
@media (min-width: 700px) {
  .p-occupation-body .p-introduce .c-section-inner .attention {
    display: none;
  }
}
.p-occupation-body .p-introduce .c-section-inner .p-introduce__bottom-button {
  margin-top: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .c-section-inner .p-introduce__bottom-button {
    margin-top: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 20px;
  }
}
.p-occupation-body .p-job__lead {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__lead {
    margin-top: 20px;
  }
}
.p-occupation-body .p-job__lead-list {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__lead-list {
    margin-top: 6px;
  }
}
.p-occupation-body .p-job__lead-list li {
  padding-left: 15px;
  position: relative;
}
.p-occupation-body .p-job__lead-list li:not(:last-child) {
  margin-bottom: 4px;
}
.p-occupation-body .p-job__lead-list li::before {
  position: absolute;
  content: "";
  background-color: var(--main);
  width: 5px;
  height: 5px;
  top: 11px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__lead-list li::before {
    top: 9px;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__lead-list li {
    font-size: 14px;
  }
}
.p-occupation-body .p-job__listWrap {
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap {
    margin-top: 50px;
  }
}
.p-occupation-body .p-job__listWrap > ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
.p-occupation-body .p-job__listWrap > ul > li:not(:last-child) {
  margin-bottom: 70px;
}
.p-occupation-body .p-job__listWrap > ul > li::after {
  position: absolute;
  content: "";
  width: 394px;
  height: 1px;
  background-color: var(--main);
  bottom: -1px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li {
    display: block;
    padding-bottom: 40px;
  }
  .p-occupation-body .p-job__listWrap > ul > li:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-titleArea {
  width: 394px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-titleArea {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--main);
  }
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-titleArea span {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--main);
  padding-left: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-titleArea span {
    font-size: 16px;
  }
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-titleArea span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #c3c3c3;
  top: 11px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-titleArea span::before {
    top: 8px;
  }
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea {
  width: calc(100% - 456px);
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea {
    width: 100%;
    margin-top: 34px;
    font-size: 14px;
    line-height: 1.78;
  }
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea span {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea span {
    font-size: 12px;
  }
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea strong {
  font-weight: 500;
  background-color: #fbff00;
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item {
    margin-top: 10px;
  }
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item.-mt_0 {
  margin-top: 0;
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item .p-job__itemBox-category.mt-10_6 {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item .p-job__itemBox-category.mt-10_6 {
    margin-top: 6px;
  }
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item ul li {
  padding-left: 15px;
  position: relative;
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item ul li:not(:last-child) {
  margin-bottom: 4px;
}
.p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item ul li::before {
  position: absolute;
  content: "";
  background-color: var(--main);
  width: 5px;
  height: 5px;
  top: 11px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item ul li::before {
    top: 9px;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__listWrap > ul > li .p-job__listWrap-textArea .p-job__itemBox-item ul li {
    font-size: 14px;
  }
}
.p-occupation-body .p-job__itemWrap {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 15px 0;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox {
  background-color: #f7f7f7;
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-title {
  text-align: center;
  background-color: var(--main);
  padding: 24px 0 18px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-title {
    padding: 16px 0;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-title span {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-title span {
    font-size: 16px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 {
  padding: 65px 50px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 {
    padding: 22px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 .p-job__itemBox-kinds {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 .p-job__itemBox-kinds {
    margin-bottom: 6px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 .p-job__itemBox-kinds.-mt {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 .p-job__itemBox-kinds.-mt {
    margin-top: 20px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 ul li {
  background-color: #fff;
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--main);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.94;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern01 ul li {
    height: 55px;
    font-size: 14px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 {
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 {
    padding: 22px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 .p-job__itemBox-kinds.-mt {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 .p-job__itemBox-kinds.-mt {
    margin-top: 20px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 .p-job__itemBox-item:not(:first-child) {
  margin-top: 30px;
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 .p-job__itemBox-item .p-job__itemBox-category.mt-10_6 {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 .p-job__itemBox-item .p-job__itemBox-category.mt-10_6 {
    margin-top: 6px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 ul li {
  padding-left: 15px;
  position: relative;
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 ul li:not(:last-child) {
  margin-bottom: 4px;
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 ul li::before {
  position: absolute;
  content: "";
  background-color: var(--main);
  width: 5px;
  height: 5px;
  top: 11px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 ul li::before {
    top: 9px;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern02 ul li {
    font-size: 14px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 {
  padding: 96px 55px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 {
    padding: 22px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 .p-job__itemBox-kinds {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 .p-job__itemBox-kinds {
    margin-bottom: 6px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 ul.-mb {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 ul.-mb {
    margin-bottom: 20px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 ul li {
  background-color: #fff;
  height: 153px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--main);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.94;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 ul li {
    height: 107px;
    font-size: 14px;
  }
}
.p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 .p-attention {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-job__itemWrap .p-job__itemBox .p-job__itemBox-contents.-pattern03 .p-attention {
    margin-top: 6px;
  }
}
.p-occupation-body .p-introduce .p-staff__copy {
  bottom: 120px;
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .p-staff__copy {
    bottom: 114px;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .p-introduce .p-staff__copy.-sp_bottom_165 {
    bottom: 165px;
  }
}
.p-occupation-body .annotation {
  font-size: 16px !important;
  position: relative;
}
.p-occupation-body .annotation::after {
  position: absolute;
  top: -3px;
  right: 0;
  font-size: 10px;
}
.p-occupation-body .annotation.first::after {
  content: "1";
}
.p-occupation-body .annotation.second::after {
  content: "2";
}
@media only screen and (max-width: 768px) {
  .p-occupation-body .annotation {
    font-size: 14px !important;
  }
  .p-occupation-body .annotation::after {
    top: -4px;
    right: -1px;
  }
}
@media only screen and (max-width: 768px) {
  .p-occupation-body br.important {
    display: block !important;
  }
}

#person .p-ideal-body::before {
  display: none;
}
#person .p-staff {
  position: relative;
}
#person .p-staff::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 426px;
  top: 0;
  left: 0;
  background-color: #f7f7f7;
}
#person .p-staff.-pd_0 {
  padding: 0;
}
#person .p-staff.-pb {
  padding-bottom: 160px;
}
@media only screen and (max-width: 768px) {
  #person .p-staff.-pb {
    padding-bottom: 90px;
  }
}
#person .p-staff__head {
  position: relative;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__head {
    margin-top: 30px;
  }
}
#person .p-staff__lead {
  color: var(--main);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__lead {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 2.1;
  }
}
#person .p-staff__option {
  position: relative;
  margin-top: 33px;
  background-color: #fff;
  height: 74px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 60px;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__option {
    gap: 0 30px;
    height: 65px;
  }
}
#person .p-staff__option-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
#person .p-staff__option-label.active .checkbox-custom::before {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__option-label {
    font-size: 14px;
  }
}
#person .p-staff__option-label input[type=checkbox] {
  display: none;
}
#person .checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1px solid #d8d8d8;
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 768px) {
  #person .checkbox-custom {
    width: 15px;
    height: 15px;
    margin-right: 10px;
  }
}
#person .checkbox-custom::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--main);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 768px) {
  #person .checkbox-custom::before {
    width: 7px;
    height: 7px;
  }
}
#person .p-staff__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px 63px;
}
#person .p-staff__wrap.-mt {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-left: 7px;
  }
}
#person .p-staff__item {
  position: relative;
}
#person .p-staff__item .p-staff__copy {
  position: absolute;
  left: -25px;
  bottom: 180px;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item .p-staff__copy {
    bottom: 142px;
    left: -12px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item .p-staff__copy.-sp_bottom_94 {
    bottom: 94px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item .p-staff__copy.-sp_bottom_125 {
    bottom: 125px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item .p-staff__copy.-sp_bottom_132 {
    bottom: 132px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item .p-staff__copy.-sp_bottom_150 {
    bottom: 150px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item .p-staff__copy.-sp_bottom_166 {
    bottom: 166px;
  }
}
#person .p-staff__item.middle {
  margin-top: 30px;
}
#person .p-staff__item.middle .p-staff__copy {
  bottom: 150px;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item.middle .p-staff__copy {
    bottom: 112px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item.middle .p-staff__copy.-sp_bottom_94 {
    bottom: 94px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item.middle .p-staff__copy.-sp_bottom_125 {
    bottom: 125px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item.middle .p-staff__copy.-sp_bottom_132 {
    bottom: 132px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item.middle .p-staff__copy.-sp_bottom_150 {
    bottom: 150px;
  }
}
@media only screen and (max-width: 768px) {
  #person .p-staff__item.middle .p-staff__copy.-sp_bottom_166 {
    bottom: 130px;
  }
}
#person .p-staff__item.low {
  margin-top: 60px;
}
#person .p-staff__item.low .p-staff__copy {
  bottom: 120px;
}
#person .p-staff__category {
  position: absolute;
  top: 0;
  left: 0;
  width: 126px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main);
  color: #fff;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__category {
    width: 90px;
    height: 26px;
    font-size: 13px;
  }
}
#person .p-staff__image {
  -webkit-box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.16);
          box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.16);
}
#person .p-staff__image span {
  overflow: clip;
  display: block;
}
#person .p-staff__image img {
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
#person .p-staff__copy p {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  padding: 0.4em;
  line-height: 2.06;
  background-color: #fff;
  font-size: 21px;
  font-weight: bold;
  color: var(--main);
  margin-left: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  #person .p-staff__copy p {
    font-size: 13px;
    letter-spacing: 0;
    white-space: nowrap;
  }
}
#person .p-staff__department {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__department {
    margin-top: 20px;
  }
}
#person .p-staff__department li {
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__department li {
    line-height: 1.57;
    font-size: 13px;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
}
#person .p-staff__department li:before {
  --_size: 5px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: var(--main);
}
@media only screen and (max-width: 768px) {
  #person .p-staff__department li:before {
    margin-block: calc((1lh - var(--_size)) / 2.5);
  }
}
#person .p-staff__department li + * {
  margin-top: 10px;
}
#person .p-staff__join {
  font-size: 14px;
  color: rgba(150, 150, 150, 0.87);
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  #person .p-staff__join {
    margin-top: 10px;
    font-size: 12px;
  }
}
@media (any-hover: hover) {
  #person .p-staff__link:hover img {
    scale: 1.1;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}

.l-person-detail {
  overflow-x: hidden;
}
@media (min-width: 769px) {
  .l-person-detail {
    background: -webkit-gradient(linear, left top, right top, color-stop(40.4%, #f7f7f7), color-stop(40.4%, #fff));
    background: -webkit-linear-gradient(left, #f7f7f7 40.4%, #fff 40.4%);
    background: linear-gradient(to right, #f7f7f7 40.4%, #fff 40.4%);
  }
}
.l-person-detail .c-fv-img {
  width: 100%;
  padding-left: calc((100vw - 1200px) / 2 + 154px);
  position: relative;
}
@media (max-width: 1300px) {
  .l-person-detail .c-fv-img {
    padding: 0;
    width: calc(100vw - 120px);
    margin-left: auto;
  }
}
@media only screen and (max-width: 768px) {
  .l-person-detail .c-fv-img {
    width: 81.4%;
    background-color: #f7f7f7;
  }
}
.l-person-detail .c-fv-img .c-fv-text {
  position: absolute;
  left: calc((100vw - 1200px) / 2);
  bottom: 72px;
}
@media (max-width: 1300px) {
  .l-person-detail .c-fv-img .c-fv-text {
    left: -80px;
    bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .l-person-detail .c-fv-img .c-fv-text {
    left: -60px;
    bottom: 50px;
  }
}
.l-person-detail .c-fv-img .c-fv-text span {
  display: inline-block;
  color: #fff;
  background-color: var(--main);
  font-size: 41px;
  font-weight: bold;
  padding: 0 10px;
  line-height: 1.3;
}
.l-person-detail .c-fv-img .c-fv-text span:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1300px) {
  .l-person-detail .c-fv-img .c-fv-text span {
    font-size: 30px;
    padding: 6px 8px;
  }
}
@media only screen and (max-width: 768px) {
  .l-person-detail .c-fv-img .c-fv-text span {
    font-size: 25px;
    letter-spacing: 0;
  }
  .l-person-detail .c-fv-img .c-fv-text span:not(:last-child) {
    margin-bottom: 6px;
  }
}
.l-person-detail .c-fv-under {
  padding: 40px 0 50px;
}
@media (min-width: 769px) {
  .l-person-detail .c-fv-under {
    position: relative;
    border-bottom: none;
  }
  .l-person-detail .c-fv-under::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    bottom: 0;
    left: 53.3%;
  }
}
@media only screen and (max-width: 768px) {
  .l-person-detail .c-fv-under {
    padding-top: 30px;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 26px;
  }
  .l-person-detail .c-fv-under::after {
    display: none;
  }
}
.l-person-detail .c-fv-under .c-section-inner {
  width: 100%;
}
.l-person-detail .c-fv-under .c-section-inner .c-heading-flex {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.l-person-detail .c-fv-under .c-section-inner .c-heading-flex .bread {
  margin-top: 0;
}
.l-person-detail .c-fv-under .c-section-inner .c-heading-flex .bread ol li:first-child {
  margin-right: 62px;
}
.l-person-detail .p-introduction {
  margin-top: 140px;
  padding-bottom: 311px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction {
    margin-top: 0;
    background-color: #fff;
    position: relative;
  }
  .l-person-detail .p-introduction::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 68vw;
    top: 0;
    left: 0;
    background-color: #f7f7f7;
  }
}
.l-person-detail .p-introduction .c-section-inner {
  position: relative;
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__profile {
    display: block;
    position: relative;
    width: 100%;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner {
  width: 85.83%;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner {
    width: 100%;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-img {
  position: relative;
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-img img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: drop-shadow(20px 20px 20px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(20px 20px 20px rgba(0, 0, 0, 0.16));
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-img img {
    -webkit-filter: drop-shadow(14px 14px 14px rgba(0, 0, 0, 0.16));
            filter: drop-shadow(14px 14px 14px rgba(0, 0, 0, 0.16));
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-img img:first-child {
  position: relative;
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-textArea {
  margin-top: 60px;
  max-width: 410px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-textArea {
    margin-top: 40px;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-textArea .p-introduction__profile-name {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.28;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-textArea .p-introduction__profile-name {
    font-size: 20px;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-textArea .p-staff__department {
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-textArea .p-staff__department li {
    font-size: 14px;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-textArea .p-staff__join {
  margin-top: 15px;
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__profile .p-introduction__profile-inner .p-introduction__profile-textArea .p-introduction__profile-attention {
  font-size: 12px;
  line-height: 2.3;
  margin-top: 30px;
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 122px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__wrap {
    margin-top: 60px;
    display: block;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea {
  width: 46.7%;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea {
    width: 100%;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox {
  margin-top: 170px;
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox.-first {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox {
    margin-top: 50px;
  }
  .l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox.-first {
    margin-top: 70px;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox .p-introduction__title {
  color: var(--main);
  font-weight: bold;
  font-size: 21px;
  line-height: 1.52;
  letter-spacing: 0;
  padding-left: 47px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox .p-introduction__title {
    font-size: 18px;
    padding-left: 34px;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox .p-introduction__title::before {
  position: absolute;
  content: "";
  background-color: #d8d8d8;
  width: 32px;
  height: 1px;
  top: 16px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox .p-introduction__title::before {
    width: 24px;
    top: 13px;
  }
}
.l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox .p-introduction__text {
  line-height: 2.06;
  margin-top: 35px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__textbox .p-introduction__text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.78;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-introduction .c-section-inner .p-introduction__wrap .p-introduction__textarea .p-introduction__profile-img img {
    -webkit-filter: drop-shadow(14px 14px 14px rgba(0, 0, 0, 0.16));
            filter: drop-shadow(14px 14px 14px rgba(0, 0, 0, 0.16));
  }
}
.l-person-detail .p-schedule {
  padding: 130px 0 90px;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-schedule {
    padding: 70px 0;
  }
}
.l-person-detail .p-schedule .c-section-inner .p-schedule__wrap {
  margin-top: 80px;
  padding: 0 65px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-schedule .c-section-inner .p-schedule__wrap {
    margin-top: 50px;
    padding: 0;
  }
}
.l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item:not(:last-child) {
  margin-bottom: 20px;
}
.l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% + 20px);
  background-color: #c3c3c3;
  top: 37px;
  left: 111px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item:not(:last-child)::after {
    left: 70px;
    top: 30px;
  }
}
.l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item .p-schedule__time {
  font-weight: bold;
  color: var(--main);
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.47;
  width: 52px;
  text-align: right;
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item .p-schedule__time {
    font-size: 16px;
    width: 45px;
    padding-top: 15px;
  }
}
.l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item .p-schedule__dot {
  width: 11px;
  height: 11px;
  background-color: #c3c3c3;
  margin: 27px 59px 0 54px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item .p-schedule__dot {
    margin: 20px 15px 0 20px;
  }
}
.l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item .p-schedule__content {
  background-color: #fff;
  padding: 18px 23px;
  color: #323232;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.55;
  width: calc(100% - 176px);
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-schedule .c-section-inner .p-schedule__wrap .p-schedule__list .p-schedule__item .p-schedule__content {
    width: calc(100% - 91px);
    font-size: 14px;
    padding: 15px;
    letter-spacing: 0.025em;
  }
}
.l-person-detail .p-schedule .c-section-inner .p-schedule__bottom-button {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  .l-person-detail .p-schedule .c-section-inner .p-schedule__bottom-button {
    margin-top: 50px;
  }
}

.personality {
  background-color: #fff;
}
.personality .l-root::before {
  background: #f7f7f7;
}
.personality .l-root .p-personality-fv {
  margin-top: 70px;
}
@media only screen and (max-width: 768px) {
  .personality .l-root .p-personality-fv {
    margin-top: 50px;
  }
}
.personality .l-root .p-personality-fv .p-personal-fv__inner .p-personal-lead {
  color: var(--main);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 2;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .personality .l-root .p-personality-fv .p-personal-fv__inner .p-personal-lead {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 2.1;
    margin-top: 30px;
  }
}
.personality .l-root .p-personality-fv .p-personal-fv__inner .p-personal__image {
  width: 100vw;
  margin-right: calc(50% - 50vw);
}
@media only screen and (max-width: 768px) {
  .personality .l-root .p-personality-fv .p-personal-fv__inner .p-personal__image {
    padding-left: calc(50vw - 42%);
  }
}

.-pd_0 {
  padding: 0;
}

.p-ideal {
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .p-ideal {
    margin-top: 70px;
  }
}
.p-ideal.-no_bg::before {
  display: none;
}
.p-ideal .c-section-inner .p-ideal_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-ideal .c-section-inner .p-ideal_wrap {
    grid-template-columns: 1fr;
    row-gap: 30px;
    margin-top: 30px;
  }
}
.p-ideal .p-ideal_item_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 11px;
}
@media only screen and (max-width: 768px) {
  .p-ideal .p-ideal_item_head .p-ideal_point {
    width: calc(100% - 135px);
  }
}
.p-ideal .p-ideal_item_head .p-ideal_point span {
  display: block;
}
.p-ideal .p-ideal_item_head .p-ideal_point .p-ideal_eng {
  font-size: 23px;
  line-height: 1.4;
  color: var(--main);
  font-family: var(--en);
  font-weight: bold;
}
.p-ideal .p-ideal_item_head .p-ideal_point .p-ideal_num {
  font-size: 43px;
  line-height: 1;
  color: var(--main);
  font-family: var(--en);
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-ideal .p-ideal_item_head .ideal_icon {
    width: 124px;
  }
}
.p-ideal .p-ideal_item_text {
  margin-top: 30px;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .p-ideal .p-ideal_item_text {
    margin-top: 14px;
    font-size: 14px;
    color: #141414;
  }
}
@media (max-width: 1000px) {
  .p-ideal .p-ideal_item_text .tab_none {
    display: none;
  }
}

.p-message {
  padding-top: 130px;
  padding-bottom: 162px;
}
@media only screen and (max-width: 768px) {
  .p-message {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.p-message .c-section-inner .c-message__img {
  width: 90.58%;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .p-message .c-section-inner .c-message__img {
    width: 100vw;
    margin-left: -20px;
  }
}
.p-message .c-section-inner .c-hgroup {
  position: relative;
  margin-top: -172px;
}
@media only screen and (max-width: 768px) {
  .p-message .c-section-inner .c-hgroup {
    margin-top: -132px;
  }
}
@media screen and (max-width: 500px) {
  .p-message .c-section-inner .c-hgroup {
    margin-top: -93px;
  }
}
.p-message .c-section-inner .c-message__textarea {
  margin-left: auto;
  margin-top: 160px;
}
@media screen and (min-width: 1025px) {
  .p-message .c-section-inner .c-message__textarea {
    width: 820px;
  }
}
@media screen and (max-width: 1025px) {
  .p-message .c-section-inner .c-message__textarea {
    width: 68.3%;
  }
}
@media only screen and (max-width: 768px) {
  .p-message .c-section-inner .c-message__textarea {
    width: 100%;
    margin-top: 100px;
  }
}
.p-message .c-section-inner .c-message__text {
  line-height: 2.0625;
}
.p-message .c-section-inner .c-message__text:not(:first-child) {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-message .c-section-inner .c-message__text:not(:first-child) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-message .c-section-inner .c-message__text {
    font-size: 14px;
    line-height: 1.78;
  }
}

#support .p-support__intro {
  margin-top: 140px;
}
@media only screen and (max-width: 768px) {
  #support .p-support__intro {
    margin-top: 70px;
  }
}
#support .p-support__intro .c-section-inner p {
  color: var(--main);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  #support .p-support__intro .c-section-inner p {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 2.1;
  }
}
#support .p-engineer {
  padding-top: 140px;
}
@media only screen and (max-width: 768px) {
  #support .p-engineer {
    padding-top: 70px;
  }
}
@media (min-width: 769px) {
  #support .p-engineer .p-engineer__img {
    margin: 90px auto 0;
    width: 73.4%;
    min-width: 740px;
  }
}
@media only screen and (max-width: 768px) {
  #support .p-engineer .p-engineer__img {
    max-width: 500px;
    margin-inline: auto;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  #support .p-engineer .p-engineer__img {
    width: 100vw;
    max-width: unset;
    margin-inline: unset;
    margin-left: -20px;
  }
}
#support .p-global {
  padding-top: 120px;
}
@media only screen and (max-width: 768px) {
  #support .p-global {
    padding-top: 70px;
  }
}
#support .p-global .p-global__itemWrap {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #support .p-global .p-global__itemWrap {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#support .p-global .p-global__itemWrap .p-global__item {
  text-align: center;
}
#support .p-global .p-global__itemWrap .p-global__item .p-global__item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media only screen and (max-width: 768px) {
  #support .p-global .p-global__itemWrap .p-global__item .p-global__item-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
#support .p-global .p-global__itemWrap .p-global__item .p-global__item-head .p-global__item-title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.55;
  color: var(--main);
}
#support .p-global .p-global__itemWrap .p-global__item .p-global__item-head .p-global__item-img {
  width: 230px;
  margin: auto;
}
@media (max-width: 1000px) {
  #support .p-global .p-global__itemWrap .p-global__item .p-global__item-head .p-global__item-img {
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  #support .p-global .p-global__itemWrap .p-global__item .p-global__item-head .p-global__item-img {
    width: 124px;
  }
}
#support .p-global .p-global__itemWrap .p-global__item .p-global__list {
  margin-top: 25px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  #support .p-global .p-global__itemWrap .p-global__item .p-global__list {
    margin: 14px;
  }
}
#support .p-global .p-global__itemWrap .p-global__item .p-global__list li {
  padding-left: 15px;
  text-align: left;
  position: relative;
}
#support .p-global .p-global__itemWrap .p-global__item .p-global__list li:not(:last-child) {
  margin-bottom: 4px;
}
#support .p-global .p-global__itemWrap .p-global__item .p-global__list li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--main);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  #support .p-global .p-global__itemWrap .p-global__item .p-global__list li {
    padding-left: 10px;
    font-size: 14px;
  }
}
#support .p-training {
  padding: 120px 0 0;
}
@media only screen and (max-width: 768px) {
  #support .p-training {
    padding: 70px 0 0;
  }
}
#support .p-information {
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  #support .p-information {
    padding: 70px 0;
  }
}

#support .p-information .p-information_btn{
  margin: 40px 0 0;
}
#support .p-information .d-button {
  position: relative;
  display: flex;
  background-color: var(--main);
  color: #fff;
  border-radius: calc(infinity * 1px);
  width: 100%;
  max-width: 300px;
  padding: 7px 22px;
  margin: 0 0 0 auto;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid transparent;
}
@media only screen and (max-width: 768px) {
  #support .p-information .d-button {
    font-size: 13px;
    gap: 15px;
    padding-inline: 15px;
    margin: 0 auto;
  }
}

#support .p-information .d-button::before{
  content: none;
}

#support .p-information .d-button::after {
  position: absolute;
  content: "";
  -webkit-mask: url(../../asset/images/icon/icon_link.svg) no-repeat;
          mask: url(../../asset/images/icon/icon_link.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 15px;
  height: 15px;
  right: 20px;
  display: inline-block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  #support .p-information .d-button::after {
    position: static;
  }
}
@media (any-hover: hover) {
  #support .p-information .d-button:hover {
    background-color: #fff;
    color: var(--main);
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid var(--main);
  }
  #support .p-information .d-button:hover::after {
    background-color: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}




#support .c-hgroup--band .c-heading {
  margin-top: 0;
}
#support .c-section__lead {
  margin-top: 54px;
}
@media only screen and (max-width: 768px) {
  #support .c-section__lead {
    margin-top: 34px;
    font-size: 14px;
  }
}

#welfare .p-welfare__intro {
  margin-top: 140px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-welfare__intro {
    margin-top: 70px;
  }
}
#welfare .p-welfare__intro .c-section-inner p {
  color: var(--main);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  #welfare .p-welfare__intro .c-section-inner p {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 2.1;
  }
}
#welfare .p-environment {
  padding: 140px 0 120px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment {
    padding: 70px 0;
  }
}
#welfare .p-environment .c-section__lead {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment .c-section__lead {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  #welfare .p-environment .c-section__lead {
    margin-top: 40px;
  }
}
#welfare .p-environment .p-environment__item {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment .p-environment__item {
    margin-top: 40px;
  }
}
#welfare .p-environment .p-environment__item .p-environment__item-title {
  background-color: var(--main);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 25px 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment .p-environment__item .p-environment__item-title {
    font-size: 16px;
    padding: 20px 0 19px;
  }
}
#welfare .p-environment .p-environment__item .p-environment__listWrap {
  padding: 40px;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment .p-environment__item .p-environment__listWrap {
    display: block;
    padding: 22px;
  }
}
#welfare .p-environment .p-environment__item .p-environment__listWrap ul li {
  padding-left: 15px;
  position: relative;
}
#welfare .p-environment .p-environment__item .p-environment__listWrap ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--main);
  left: 0;
  top: 11px;
}
@media (min-width: 769px) {
  #welfare .p-environment .p-environment__item .p-environment__listWrap ul li:not(:last-child) {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment .p-environment__item .p-environment__listWrap ul li {
    margin-bottom: 4px;
    font-size: 14px;
  }
  #welfare .p-environment .p-environment__item .p-environment__listWrap ul li::before {
    top: 8px;
  }
}
#welfare .p-environment .p-schedule__bottom-button {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment .p-schedule__bottom-button {
    margin-top: 30px;
  }
}
#welfare .p-environment .p-schedule__bottom-button .d-button {
  position: relative;
  display: flex;
  background-color: var(--main);
  color: #fff;
  border-radius: calc(infinity * 1px);
  width: 100%;
  padding: 22px;
  text-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
      -ms-flex-pack: justify;
          justify-content: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid transparent;
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment .p-schedule__bottom-button .d-button {
    font-size: 13px;
    text-align: left;
    gap: 15px;
    padding-inline: 15px;
  }
}

#welfare .p-environment .p-schedule__bottom-button .d-button::before{
  content: none;
}

#welfare .p-environment .p-schedule__bottom-button .d-button::after {
  position: absolute;
  content: "";
  -webkit-mask: url(../../asset/images/icon/icon_link.svg) no-repeat;
          mask: url(../../asset/images/icon/icon_link.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 15px;
  height: 15px;
  right: 20px;
  display: inline-block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  #welfare .p-environment .p-schedule__bottom-button .d-button::after {
    position: static;
  }
}
@media (any-hover: hover) {
  #welfare .p-environment .p-schedule__bottom-button .d-button:hover {
    background-color: #fff;
    color: var(--main);
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid var(--main);
  }
  #welfare .p-environment .p-schedule__bottom-button .d-button:hover::after {
    background-color: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}








#welfare .p-facility {
  background-color: #fff;
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  #welfare .p-facility {
    padding: 70px 0;
  }
}
#welfare .p-facility .p-facility__block {
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-facility .p-facility__block {
    margin-top: 40px;
  }
}
#welfare .p-facility .p-facility__block.first {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-facility .p-facility__block.first {
    margin-top: 40px;
  }
}
#welfare .p-facility .p-facility__block .p-facility__block-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
#welfare .p-facility .p-facility__block .p-facility__block-title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--main);
  left: 0;
  top: 15px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-facility .p-facility__block .p-facility__block-title {
    font-size: 17px;
    padding-left: 16px;
  }
  #welfare .p-facility .p-facility__block .p-facility__block-title::before {
    width: 6px;
    height: 6px;
    top: 10px;
  }
}
#welfare .p-facility .p-facility__block .p-facility__block-lead {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-facility .p-facility__block .p-facility__block-lead {
    margin-top: 20px;
    font-size: 14px;
  }
}
#welfare .p-facility .p-facility__block .p-facility__imgWrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-facility .p-facility__block .p-facility__imgWrap {
    margin-top: 40px;
    gap: 10px;
  }
}
#welfare .p-facility .p-facility__block .p-facility__imgWrap .p-facility__imgWrap-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  #welfare .p-facility .p-facility__block .p-facility__imgWrap .p-facility__imgWrap-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.mynavi_box{
  display: flex;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
@media only screen and (max-width: 768px) {
  .mynavi_box{
    flex-direction: column;
  }
}

.mynavi_box .txt_box{
  width: calc(100% - 160px);
  margin: 0 20px 0 0;
}
@media only screen and (max-width: 768px) {
  .mynavi_box .txt_box{
    width: 100%;
    margin: 0 0 16px;
  }
}

@media only screen and (max-width: 768px) {
  .mynavi_box p{
    font-size: 14px;
    line-height: 1.57;
  }
}

@media only screen and (max-width: 768px) {
  .mynavi_box a{
    display: inline-block;
    margin: 0 auto;
  }
}

.indent_txt{
  font-size: 16px;
  text-indent: -18px;
  padding: 0 0 0 18px;
}
@media only screen and (max-width: 768px) {
  .indent_txt{
  font-size: 14px;
  text-indent: -16px;
  padding: 0 0 0 16px;
}
}




/*20250728*/
@media only screen and (max-width: 768px) {
  .grid-item18 {
    padding-bottom: 61px;
  }
}
.grid-item18 .p-infographics-grid__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(100px, 5.2083333333vw, 100px);
}
@media only screen and (max-width: 768px) {
  .grid-item18 .p-infographics-grid__list {
    gap: 34px;
  }
}
.grid-item18 .p-infographics-grid__item-inner {
  display: grid;
  grid-template-columns: clamp(100px, 10.4166666667vw, 200px) 1fr;
}
@media screen and (max-width: 1200px) {
  .grid-item18 .p-infographics-grid__item-inner {
    display: revert;
  }
}
.grid-item18 .p-infographics-grid__item-right {
  position: relative;
  z-index: 1;
}
.grid-item18 .number {
  font-size: 43px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .grid-item18 .number {
    font-size: 28px;
    margin-top: 5px;
  }
}
.grid-item18 .number.--sm {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .grid-item18 .number.--sm {
    font-size: 12px;
  }
}
.grid-item18 .number.--sm .fz-text--lg {
  font-size: 42px;
  width: 107px;
  display: inline-block;
  margin-left: 4px;
}
@media only screen and (max-width: 768px) {
  .grid-item18 .number.--sm .fz-text--lg {
    font-size: 24px;
    width: 61px;
  }
}
.grid-item18 .fz-unit {
  margin-left: 7px;
}
.grid-item18 .number__inner {
  margin-left: 1em;
}
@media only screen and (max-width: 768px) {
  .grid-item18 .number__inner {
    font-size: 13px;
  }
}

.grid-item18 .p-infographics-grid__item-right{
  text-align: right;
}

.grid-item18 .fz-text--lg {
  font-size: 89px;
  font-weight: bold;
  margin-left: 7px;
  display: inline-block;
  text-align: right;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .grid-item18 .fz-text--lg {
    font-size: 50px;
    margin-left: 0;
  }
}
.grid-item18 .p-infographics-grid__item {
  position: relative;
}
.grid-item18 .p-infographics-grid__image01 {
  position: absolute;
  right: 180px;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-item18 .p-infographics-grid__image01 {
    width: 93px;
    height: 58px;
    right: 20px;
  }
}


.grid-row19 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

@media only screen and (max-width: 768px) {
  .grid-row19 {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
}

@media only screen and (max-width: 768px) {
  .grid-item19 {
    row-gap: 15px;
  }
}

.grid-item19 .number {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  text-align: right;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .grid-item19 .number {
    font-size: 16px;
    margin-top: 5px;
  }
}
.grid-item19 .number.--sm {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .grid-item19 .number.--sm {
    font-size: 12px;
  }
}
.grid-item19 .number.--sm .fz-text--lg {
  font-size: 42px;
  width: 107px;
  display: inline-block;
  margin-left: 4px;
}
@media only screen and (max-width: 768px) {
  .grid-item19 .number.--sm .fz-text--lg {
    font-size: 24px;
    width: 61px;
  }
}
.grid-item19 .fz-unit {
  margin-left: 7px;
}
.grid-item19 .number__inner {
  margin-left: 1em;
}
@media only screen and (max-width: 768px) {
  .grid-item19 .number__inner {
    font-size: 13px;
  }
}

.grid-item19 .p-infographics-grid__item-right{
  text-align: right;
}

.grid-item19 .fz-text--lg {
  font-size: 54px;
  font-weight: bold;
  margin-left: 7px;
  display: inline-block;
  text-align: right;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .grid-item19 .fz-text--lg {
    font-size: 40px;
    margin-left: 0;
  }
}

.grid-item19 .small-decimal{
  font-size: 40px;
}
@media only screen and (max-width: 768px) {
  .grid-item19 .small-decimal{
    font-size: 28px;
  }
}


.grid-row20 .number {
  margin-right: 125px;
}
@media only screen and (max-width: 768px) {
  .grid-row20 .number {
    text-align: right;
    margin-right: 0;
  }
}
.grid-row20 .fz-text--lg {
  font-size: 99px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .grid-row20 .fz-text--lg {
    font-size: 59px;
  }
}
.grid-row20 .fz-text-jp--lg {
  font-size: 45px;
  font-weight: bold;
  margin-left: 6px;
}
@media only screen and (max-width: 768px) {
  .grid-row20 .fz-text-jp--lg {
    font-size: 25px;
  }
}
.grid-row20 .p-infographics-grid__image {
  position: absolute;
  right: 55px;
  top: 50%;
  translate: 0 -50%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .grid-row20 .p-infographics-grid__image {
    width: 66px;
    height: 66px;
    right: 10px;
    top: 10px;
    translate: unset;
  }
}
.grid-row20 .p-infographics__flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .grid-row20 .p-infographics__flex-wrap {
    display: revert;
  }
}
.grid-row20 .p-inforgraphics__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media only screen and (max-width: 768px) {
  .grid-row20 .p-inforgraphics__flex {
    display: revert;
  }
}



@media only screen and (max-width: 768px) {
  .grid-item21 {
    padding: 20px 20px 30px 25px;
  }
}
.grid-item21 .p-infographics-grid__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 130px;
}
@media only screen and (max-width: 768px) {
  .grid-item21 .p-infographics-grid__list {
    gap: 20px;
  }
}
.grid-item21 .p-infographics-grid__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .grid-item21 .p-infographics-grid__item {
    display: revert;
  }
}
.grid-item21 .number {
  line-height: 1;
  margin-top: 27px;
}
.grid-item21 .number .fz-text--lg {
  font-size: 101px;
  font-weight: bold;
  display: inline-block;
  text-align: right;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .grid-item21 .number .fz-text--lg {
    font-size: 50px;
  }
}
.grid-item21 .number .fz-text--sm {
  font-size: 81px;
}
@media only screen and (max-width: 768px) {
  .grid-item21 .number .fz-text--sm {
    font-size: 50px;
  }
}
.grid-item21 .number .fz-unit {
  font-size: 45px;
  font-weight: bold;
  margin-left: 8px;
}
@media only screen and (max-width: 768px) {
  .grid-item21 .number .fz-unit {
    font-size: 18px;
  }
}
.grid-item21 .number02 .fz-unit {
  font-size: 27px;
  margin: 0 0 0 6px;
}

.grid-item21 .p-inforgraphics__flex{
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .grid-item21 .p-inforgraphics__flex{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.grid-item21 .small-decimal{
  font-size: 81px;
}
@media only screen and (max-width: 768px) {
  .grid-item21 .small-decimal{
    font-size: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .grid-item22 {
    padding: 20px 20px 30px 25px;
  }
}
.grid-item22 .p-infographics-grid__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .grid-item22 .p-infographics-grid__list {
    gap: 20px;
  }
}
.grid-item22 .p-infographics-grid__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .grid-item22 .p-infographics-grid__item {
    display: revert;
  }
}
.grid-item22 .number {
  line-height: 1;
  margin-top: 27px;
}

@media only screen and (max-width: 768px) {
  .grid-item22 .number {
    text-align: right;
  }
}
.grid-item22 .number .fz-text--lg {
  font-size: 101px;
  font-weight: bold;
  display: inline-block;
  text-align: right;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .grid-item22 .number .fz-text--lg {
    font-size: 50px;
  }
}
.grid-item22 .number .fz-text--sm {
  font-size: 81px;
}
@media only screen and (max-width: 768px) {
  .grid-item22 .number .fz-text--sm {
    font-size: 50px;
  }
}
.grid-item22 .number .fz-unit {
  font-size: 45px;
  font-weight: bold;
  margin-left: 8px;
}
@media only screen and (max-width: 768px) {
  .grid-item22 .number .fz-unit {
    font-size: 18px;
  }
}
.grid-item22 .number02 .fz-unit {
  font-size: 27px;
  margin: 0 0 0 6px;
}

.grid-item22 .p-inforgraphics__flex{
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .grid-item22 .p-inforgraphics__flex{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.grid-item22 .p-schedule__bottom-button{
  margin: 20px 0 0;
}

.grid-item22 .mt{
  margin: 20px 0 0;
}

.grid-item22 .d-button {
  position: relative;
  display: flex;
  background-color: var(--main);
  color: #fff;
  border-radius: calc(infinity * 1px);
  width: 100%;
  padding: 22px;
  text-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
      -ms-flex-pack: justify;
          justify-content: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid transparent;
}
@media only screen and (max-width: 768px) {
  .grid-item22 .d-button {
    font-size: 13px;
    text-align: left;
    gap: 15px;
    padding-inline: 15px;
  }
}

.grid-item22 .d-button::before{
  content: none;
}

.grid-item22 .d-button::after {
  position: absolute;
  content: "";
  -webkit-mask: url(../../asset/images/icon/icon_link.svg) no-repeat;
          mask: url(../../asset/images/icon/icon_link.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 15px;
  height: 15px;
  right: 20px;
  display: inline-block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .grid-item22 .d-button::after {
    position: static;
  }
}
@media (any-hover: hover) {
  .grid-item22 .d-button:hover {
    background-color: #fff;
    color: var(--main);
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid var(--main);
  }
  .grid-item22 .d-button:hover::after {
    background-color: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
