@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css);
@import url("https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html {
  font-size: 62.5%;
}
.is-sp {
  display: none;
}
@media screen and (max-width: 990px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 990px) {
  .is-pc {
    display: none !important;
  }
}

.is-pc--mid {
  display: block;
}
@media screen and (max-width: 1280px) {
  .is-pc--mid {
    display: none !important;
  }
}

:root {
  --base-font-size: 1.6rem;
  --white: #fff;
  --black: #2c3132;
  --gray: #8e8c8c;
  --pink: #ef8a9c;
  --orange: #fc9b00;
  --red: #d33a3a;
  --base-bg: #f5f5f5;
  --mainColor: #1b2850;
  --font-noto-san: "Noto Sans JP", sans-serif;
  --font-instrument-san: "Instrument Sans", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-cantarell: "Cantarell", sans-serif;
  --sec-padding: 96px 0;
  --h2: 32px;
}
@media screen and (max-width: 990px) {
  :root {
    --h2: 28px;
    --sec-padding: 48px 0;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

body {
  font-family: var(--font-noto-san);
  color: var(--color-black);
  background-color: var(--base-bg);
  font-size: var(--base-font-size);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.l-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background: var(--white);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 990px) {
  .l-header {
    padding: 0 10px 0 24px;
  }
}
.l-header__logo {
  max-width: 270px;
}
@media screen and (max-width: 520px) {
  .l-header__logo {
    max-width: 200px;
  }
}
.l-header__navList {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .l-header__navList {
    gap: 14px;
  }
}
.l-header__navListItem {
  height: fit-content;
}
.l-header__navListItem.is-contact a {
  background: var(--mainColor);
  display: grid;
  place-items: center;
  width: 200px;
  height: 60px;
  color: var(--white);
}
.l-header__navListItem a {
  font-weight: 700;
  color: var(--mainColor);
}
.l-header__navListItem a span {
  display: block;
  font-family: var(--font-cantarell);
  font-size: 12px;
  font-weight: 700;
  color: var(--mainColor);
  line-height: 1.2;
}

@media screen and (max-width: 990px) {
  .l-header__nav {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    background: var(--white);
    width: 100vw;
    height: 100vh;
    padding: 24px;
  }
  .l-header__nav.is-active {
    visibility: visible;
    opacity: 1;
  }
  .l-header__navList {
    display: flex;
    flex-direction: column;
    padding-top: 96px;
  }
  .l-header__navListItem {
    width: 100%;
  }
  .l-header__navListItem a {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid #d9d9d9;
    padding: 16px;
    color: var(--mainColor);
    font-weight: 700;
    font-size: 20px;
  }
  .l-header__navListItem a span {
    font-family: var(--font-cantarell);
    font-size: 16px;
    display: block;
    line-height: 1.2;
  }
  .l-header__navListItem a::after {
    content: "\f105";
    font: var(--fa-font-solid);
    color: var(--mainColor);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header__navListItem.is-contact {
    color: var(--white);
    background: var(--mainColor);
    display: grid;
    place-items: center;
    width: 200px;
    height: 60px;
    padding: 0;
    margin-top: 48px;
  }
  .l-header__navListItem.is-contact a {
    color: var(--white);
    padding: 0;
    border-bottom: 0;
    display: grid;
    place-items: center;
  }
}
.l-main {
  width: 100%;
  padding-top: 80px;
}
@media screen and (max-width: 990px) {
  .l-main {
    padding-top: 6.2rem;
  }
}
@media screen and (max-width: 520px) {
  .l-main {
    padding-top: 6.2rem;
  }
}

.l-footer {
  width: 100%;
  background: var(--mainColor);
  padding: 96px 0 0;
}
@media screen and (max-width: 990px) {
  .l-footer {
    padding: 48px 0 0;
  }
}
.l-footer__container {
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 96px;
}
@media screen and (max-width: 990px) {
  .l-footer__container {
    flex-direction: column;
    gap: 48px;
    padding: 0 24px;
  }
}
.l-footer__logo {
  max-width: 270px;
  width: 100%;
}
.l-footer__store {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
@media screen and (max-width: 990px) {
  .l-footer__store {
    flex-wrap: wrap;
  }
}
.l-footer__storeInfo {
  font-size: 16px;
  color: var(--white);
}
.l-footer__storeInfo .p-in-name {
  font-weight: 700;
}
.l-footer__storeInfo .p-in-list {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}
.l-footer__storeInfo .p-in-listItem {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-footer__storeInfo .p-in-listItem dt {
  color: var(--mainColor);
  border-radius: 999px;
  background: #d9d9d9;
  padding: 0 0.5em;
  font-weight: 500;
  font-size: 12px;
}
.l-footer__storeInfo .p-in-listItem dd {
  font-weight: 500;
}
.l-footer__nav {
  flex: 1;
  width: 100%;
  max-width: 651px;
}
.l-footer__navList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 990px) {
  .l-footer__navList {
    gap: 24px;
  }
}
.l-footer__navListItem {
  font-family: var(--font-cantarell);
  color: var(--white);
  font-weight: 700;
}
.l-footer__loop {
  overflow: hidden;
}
.l-footer__loopArea {
  width: fit-content;
  display: flex;
  animation: loop-slide 60s infinite linear 1s both;
  margin: 0;
  padding: 0;
}
@keyframes loop-slide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.l-footer__loopAreaItem {
  color: #475171;
  text-align: center;
  font-family: var(--font-inter);
  font-size: 150px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  min-width: 2127px;
  word-break: keep-all;
}
@media screen and (max-width: 520px) {
  .l-footer__loopAreaItem {
    font-size: 80px;
    min-width: 1135px;
  }
}
.l-footer__copy {
  text-align: center;
  color: var(--white);
  padding: 48px 0 24px;
}
@media screen and (max-width: 990px) {
  .l-footer__copy {
    font-size: 12px;
  }
}
@media screen and (max-width: 520px) {
  .l-footer__copy {
    font-size: 10px;
  }
}

.l-inner {
  max-width: min(1200px, 100% - 48px);
  margin: 0 auto;
}
.l-inner--large {
  max-width: min(1024px, 100% - 40px);
  margin: 0 auto;
}
.l-inner--small {
  max-width: min(1400px, 100% - 40px);
  margin: 0 auto;
}
.l-inner--xsmall {
  max-width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.l-header__hamburger {
  --opacity: 1;
  --rotate: 0;
  --translate: 1.1rem;
  display: none;
  place-items: center;
  width: 9rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 990px) {
  .l-header__hamburger {
    display: grid;
    width: max(62px, 6.2rem);
  }
}
.l-header__hamburger.is-active {
  --opacity: 0;
  --rotate: 45deg;
  --translate: 0;
}
.l-header__hamburger span {
  display: block;
  width: 2.8rem;
  height: 4px;
  border-radius: 999px;
  background-color: var(--mainColor);
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 990px) {
  .l-header__hamburger span {
    width: 3.5rem;
    height: 2px;
  }
}
.l-header__hamburger span:nth-child(1) {
  opacity: var(--opacity);
}
.l-header__hamburger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.l-header__hamburger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}

.c-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 270px;
  height: 60px;
  background: var(--mainColor);
  color: var(--white);
  font-weight: 700;
  transition: all 0.3s ease;
}
.c-btn span {
  position: relative;
}
.c-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.c-btn::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: var(--white);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 0.1s ease;
}
.c-btn:hover {
  color: var(--mainColor);
}
.c-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.c-btn:hover::after {
  background: var(--mainColor);
}
.c-btn.is-typeA:hover:before {
  background: #f5f5f5;
}
.c-btn.is-typeB {
  border: 1px solid var(--white);
}

.c-pageHead {
  min-height: 380px;
  max-width: min(1200px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .c-pageHead {
    min-height: 200px;
  }
}
.c-pageHead__title {
  color: var(--white);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-pageHead__title--en {
  font-size: 20px;
  font-family: var(--font-cantarell);
  line-height: 1.2;
}
.c-pageHead__title--ja {
  font-size: 32px;
}

.c-secTitle {
  position: relative;
  display: flex;
  justify-content: center;
}
.c-secTitle h2 {
  color: var(--mainColor);
  font-size: var(--h2);
  font-weight: 700;
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
@media screen and (max-width: 520px) {
  .c-secTitle h2 {
    bottom: 12px;
  }
}
.c-secTitle .c-en {
  font-size: 150px;
  color: #f5f5f5;
}
@media screen and (max-width: 990px) {
  .c-secTitle .c-en {
    font-size: 100px;
  }
}
@media screen and (max-width: 520px) {
  .c-secTitle .c-en {
    font-size: 64px;
  }
}
.c-secTitle.is-white .c-en {
  color: #fff;
}
.c-secTitle.is-blue h2 {
  color: var(--white);
}
.c-secTitle.is-blue .c-en {
  color: #435679;
}

.js-image img {
  opacity: 0;
  transform: scale(1.1); /* 初期状態を少し大きくしておく */
  transition: transform 0.3s ease;
}

.js-image figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.js-image figure::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #1f5b6c;
}

.js-image.move figure::before {
  animation: barAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s normal;
}

.js-image figure img {
  opacity: 0;
  transform: scale(1.1);
}

.js-image.move figure img {
  animation: photoAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s normal;
}

@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-title .line {
  overflow: hidden;
}

.js-concept-detail {
  opacity: 0; /* 完全に非表示に設定 */
  transform: translateY(20px); /* 下に少しずらして非表示にする */
}

.c-en {
  font-family: var(--font-inter);
  font-size: 200px;
  font-weight: 700;
  line-height: 1;
  color: rgba(107, 132, 162, 0.5);
}
@media screen and (max-width: 990px) {
  .c-en {
    font-size: 150px;
  }
}
@media screen and (max-width: 520px) {
  .c-en {
    font-size: 64px;
  }
}

.c-participating {
  padding: 64px 0;
}
.c-participating__title {
  font-size: var(--h2);
  font-weight: 700;
  text-align: center;
}
.c-participating__list {
  display: grid;
  justify-content: center;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
  max-width: min(1210px, 100% - 48px);
  margin: 0 auto;
  margin-top: 32px;
}
@media screen and (max-width: 520px) {
  .c-participating__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-participating__listItem {
  font-size: 12px;
  text-align: center;
  background: var(--white);
  padding: 20px 20px 10px;
}
.c-participating__listItem .p-in-text {
  margin-top: 16px;
}
.c-participating__listItem:nth-of-type(1) .p-in-text, .c-participating__listItem:nth-of-type(3) .p-in-text, .c-participating__listItem:nth-of-type(4) .p-in-text {
  margin-top: 10px;
}

.p-ps__head .l-inner {
  position: relative;
}

.p-ep__head .l-inner {
  position: relative;
}

.p-privacy__head .l-inner {
  position: relative;
}

.js-ac-btn {
  --ac-width: 5.6rem;
  --rotate: 90deg;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: var(--ac-width);
  height: var(--ac-width);
  background-color: #333333;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 520px) {
  .js-ac-btn {
    position: absolute;
    transform: translateY(0);
    right: 0;
    top: calc(100% + 4.4rem);
  }
}
@media screen and (max-width: 520px) {
  .js-ac-btn.--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 4.4rem);
  }
}
.js-ac-btn span {
  display: block;
  width: 40%;
  height: 0.25rem;
  background-color: #fff;
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
.js-ac-btn span:nth-of-type(1) {
  rotate: calc(var(--rotate) * -1);
}
.js-ac-btn.is-open {
  --rotate: 0deg;
}
.js-ac-btn.--white {
  background-color: #fff;
}
.js-ac-btn.--white span {
  background-color: #333333;
}

@media screen and (max-width: 520px) {
  .js-ac-head {
    padding: 4.4rem 0 14.4rem !important;
  }
}

.js-ac-content {
  overflow: hidden;
  transition: all 1.2s ease;
  height: 0;
}

.c-sec-top {
  display: flex;
  justify-content: end;
}
.c-sec-top a {
  display: block;
  width: 5.6rem;
  aspect-ratio: 1;
  background-color: #333333;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.c-sec-top a i {
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 520px) {
  .c-sec-top.--center {
    justify-content: center;
  }
}

.c-fixedLink {
  position: fixed;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 990px) {
  .c-fixedLink {
    width: 100%;
  }
}
.c-fixedLink__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 17.5rem;
  background-color: #ff6200;
  writing-mode: vertical-rl;
  color: var(--color-white);
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 1.4rem;
  gap: 1rem;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__contact::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background-image: url(../../assets/images/common/icon-contact.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-fixedLink__contact:hover {
  opacity: 0.8;
}
.c-fixedLink__top {
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  background-color: #000000;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__top img {
  width: 40%;
}
.c-fixedLink__top:hover {
  opacity: 0.8;
}
@media screen and (max-width: 990px) {
  .c-fixedLink .c-fixedLink__contact {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    writing-mode: unset;
    font-size: 14px;
  }
  .c-fixedLink .c-fixedLink__top {
    position: absolute;
    bottom: 10rem;
    width: 36px;
    height: 36px;
    right: 2rem;
  }
}

.c-nav {
  width: 100%;
  background: #163852;
  padding: 1.8rem 0;
  min-height: 8rem;
}
.c-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-nav__list-item {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  padding: 0.25em 1em;
  border-radius: 999px;
  transition: all 0.1s ease;
}
.c-nav__list-item:nth-of-type(1)::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.25em;
}
.c-nav__list-item:hover {
  color: var(--primary-color);
  background-color: var(--color-white);
}

.c-slider {
  padding: 4.2rem 0;
}
.c-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-slider .swiper-wrapper .swiper-slide {
  pointer-events: none;
}

.c-contact {
  background: url(/topic/common/images/common/contactBg.png) no-repeat center center/cover;
}
@media screen and (max-width: 990px) {
  .c-contact {
    background: url(/topic/common/images/common/contactBg--tab.png) no-repeat center center/cover;
  }
}
@media screen and (max-width: 520px) {
  .c-contact {
    background: url(/topic/common/images/common/contactBg--sp.png) no-repeat center center/cover;
  }
}
.c-contact__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 420px;
}
@media screen and (max-width: 990px) {
  .c-contact__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 520px) {
  .c-contact__container {
    grid-template-columns: 1fr;
  }
}
.c-contact__box {
  border-left: 1px solid var(--back, #f5f5f5);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.c-contact__box:nth-of-type(1) {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  border: none;
  align-items: start;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  .c-contact__box:nth-of-type(1) {
    grid-column: span 2;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--white);
  }
}
@media screen and (max-width: 520px) {
  .c-contact__box:nth-of-type(1) {
    grid-column: span 1;
  }
}
.c-contact__box:nth-of-type(1):hover {
  backdrop-filter: blur(2px);
}
@media screen and (max-width: 990px) {
  .c-contact__box {
    padding: 20px;
    min-height: 300px;
  }
  .c-contact__box:nth-of-type(2) {
    border-left: none;
  }
}
@media screen and (max-width: 520px) {
  .c-contact__box:nth-of-type(3) {
    border-left: none;
  }
}
.c-contact__box:hover {
  backdrop-filter: blur(6px);
}
.c-contact__title {
  min-width: fit-content;
  margin-left: 2vw;
  display: flex;
  flex-direction: column;
}
.c-contact__title--en {
  font-family: var(--font-inter);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .c-contact__title--en {
    font-size: 48px;
  }
}
.c-contact__title--ja {
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}
.c-contact__icon {
  display: grid;
  gap: 5px;
}
.c-contact__icon img {
  height: 30px;
  width: auto;
}
.c-contact__icon span {
  font-family: var(--font-cantarell);
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--white);
}
.c-contact__text {
  font-weight: 700;
  color: var(--white);
  margin-top: 1em;
}
.c-contact__btn {
  max-width: 350px;
  width: 100%;
  min-height: 66px;
  border: 1px solid var(--white);
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  color: var(--white);
  display: grid;
  place-items: center;
  margin-top: 18px;
  transition: all 0.3s ease;
}
.c-contact__btn:hover {
  color: var(--mainColor);
  background: var(--white);
}
.c-contact__telBtn {
  font-weight: 700;
  color: var(--white);
}
.c-contact__telBtn:nth-of-type(1) {
  margin-top: 18px;
}
.c-contact__telBtn:nth-of-type(2) {
  margin-top: 10px;
}

.c-title {
  margin: 0 auto;
  padding-bottom: 4.2rem;
}
.c-title--ja {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--primary-color);
  text-align: center;
}
@media screen and (max-width: 990px) {
  .c-title--ja {
    font-size: max(2.8rem, 25px);
  }
}
.c-title--ja::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 0.8rem;
  background: url(/assets/image/common/deco_title.svg) no-repeat;
  background-size: contain;
  margin: 0 auto;
  margin: 0.9rem auto;
}
.c-title--en {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 990px) {
  .c-title--en {
    font-size: max(1.4rem, 12px);
  }
}

.p-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
}
@media screen and (max-width: 1200px) {
  .p-header {
    background-color: var(--primary-color);
  }
}
.p-header__logo {
  padding: 1.8rem 3rem;
  font-size: min(1.875vw, 2.4rem);
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--primary-color);
}
@media screen and (max-width: 1200px) {
  .p-header__logo {
    padding: 0 3rem;
    height: 6.2rem;
    display: grid;
    place-items: center;
    font-size: 18px;
  }
}
@media screen and (max-width: 520px) {
  .p-header__logo {
    font-size: 17px;
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-header__menu {
    position: fixed;
    visibility: hidden;
  }
}
.p-header__menu-list {
  display: flex;
}
.p-header__menu-list-item {
  display: flex;
  font-size: clamp(14px, 1.328125vw, 17px);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 4.2rem;
}
.p-header__menu-list-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--primary-color);
  margin: 0 1.875vw;
}
.p-header__menu-list-item:nth-last-of-type(1):after, .p-header__menu-list-item:nth-last-of-type(2):after {
  content: none;
}
.p-header__menu-list-item.-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  background-color: var(--primary-color);
  color: var(--color-white);
  padding: 0 1.5rem;
  height: 4.2rem;
  line-height: 1;
  margin: 0 2.34375vw;
}
.p-header__menu-list-item.-contact::before {
  content: "";
  width: 1.821rem;
  height: 1.383rem;
  background: url(/assets/image/icon-mail.svg) no-repeat;
  background-position: center;
}
.p-header__nav {
  padding-bottom: 1em;
}
.p-header__nav-wrap {
  --visibility: hidden;
  --opacity: 0;
  visibility: var(--visibility);
  opacity: var(--opacity);
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #163852;
  padding: 9rem 0;
  overflow-y: scroll;
}
@media screen and (max-width: 520px) {
  .p-header__nav-wrap {
    padding: max(52px, 8rem) 0;
  }
}
.p-header__nav-wrap.is-active {
  --visibility: visible;
  --opacity: 1;
}
.p-header__nav-list {
  display: grid;
  grid-template-columns: 1fr;
}
.p-header__nav-list-item {
  border-bottom: 1px solid #fff;
}
.p-header__nav-list-item > a {
  position: relative;
  display: block;
  width: 100%;
  line-height: 10.6rem;
  font-size: 3.2rem;
  font-weight: 700;
  background-color: #163852;
  color: var(--color-white);
  padding: 0 3.5rem;
}
.p-header__nav-list-item > a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  margin: 0;
  width: 3.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition: all 0.6s ease;
}
.p-header__nav-list-item > a.is-open::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-header__subNav-list {
  background-color: var(--color-gray);
  transition: all 0.6s ease;
  height: 0;
  overflow: hidden;
}
.p-header__subNav-list.is-open {
  height: auto;
}
.p-header__subNav-list-item {
  border-bottom: 1px solid #163852;
  overflow: hidden;
}
.p-header__subNav-list-item:nth-last-of-type(1) {
  border-bottom: 0;
}
.p-header__subNav-list-item a {
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  font-weight: 700;
  height: 10.6rem;
  padding: 0 3.5rem;
  transition: all 0.3s ease;
}
.p-header__subNav-list-item a:hover {
  transform: translateX(0.25em);
}

footer {
  background: #def1ce;
  background: linear-gradient(180deg, rgb(222, 241, 206) 0%, rgb(255, 255, 255) 100%);
}

.p-footer {
  padding-top: 4.8rem;
}
.p-footer__contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  padding-bottom: 3.2rem;
}
.p-footer__contact-col {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.8rem;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-footer__contact-col {
    flex-direction: column;
  }
}
.p-footer__contact-col .-mail {
  display: flex;
  align-items: center;
  line-height: 1;
}
.p-footer__contact-col .-mail::before {
  content: "";
  display: inline-block;
  width: 2.182rem;
  height: 1.658rem;
  background: url(/assets/image/common/icon-footer_mail.svg) no-repeat;
  background-size: contain;
  margin-right: 0.25em;
}
.p-footer__contact-col .-tel {
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
}
.p-footer__contact-col .-tel::before {
  content: "";
  display: inline-block;
  width: 2.182rem;
  height: 2.954rem;
  background: url(/assets/image/common/icon-footer_phone.svg) no-repeat;
  background-size: contain;
  margin-right: 0.25em;
}
.p-footer__contact-col .-tel .p-in-tel {
  display: flex;
  flex-direction: column;
}
.p-footer__contact-col .-tel .p-in-tel .p-in-num {
  font-family: var(--font-din);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.p-footer__contact-col .-tel .p-in-tel .p-in-naisen {
  font-size: 1.4rem;
  line-height: 1;
}
.p-footer__contact-col .-tel .p-in-tel .p-in-naisen span {
  font-size: 1.6rem;
  line-height: 1;
}
.p-footer__contact-time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 4.2rem;
}
@media screen and (max-width: 990px) {
  .p-footer__contact-time {
    font-size: max(1.6rem, 14px);
  }
}
.p-footer__contact-time::before {
  content: "";
  display: inline-block;
  --wh: 3rem;
  width: var(--wh);
  height: var(--wh);
  background: url(/assets/image/common/icon-time.svg) no-repeat;
  background-size: contain;
}
.p-footer__content {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 3.6rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(18, 128, 98, 0.4);
}
@media screen and (max-width: 990px) {
  .p-footer__content {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-footer__content .p-in-logo {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 990px) {
  .p-footer__content .p-in-logo {
    font-size: max(1.8rem, 18px);
  }
}
.p-footer__content .p-in-address,
.p-footer__content .p-in-tel {
  font-size: 1.6rem;
  font-weight: 500;
}
.p-footer__content .p-in-address i,
.p-footer__content .p-in-tel i {
  margin-right: 0.25em;
}
@media screen and (max-width: 990px) {
  .p-footer__content .p-in-address,
  .p-footer__content .p-in-tel {
    font-size: max(1.6rem, 14px);
  }
}
.p-footer__copyright {
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  height: 4.6rem;
  width: 100%;
  color: var(--color-white);
  background-color: var(--primary-color);
}
@media screen and (max-width: 990px) {
  .p-footer__copyright {
    height: max(6rem, 30px);
    font-size: max(1.5rem, 10px);
  }
}
@media screen and (max-width: 520px) {
  .p-footer__copyright {
    height: 3rem;
    font-size: max(1rem, 10px);
  }
}
.p-footer__list {
  display: flex;
  justify-content: start;
  gap: 5rem;
  padding: 2rem 0;
}
@media screen and (max-width: 990px) {
  .p-footer__list {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-footer__list-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  font-weight: 500;
}
@media screen and (max-width: 990px) {
  .p-footer__list-item a {
    font-size: max(1.6rem, 14px);
  }
}

.js-anime {
  position: relative;
  background: var(--mainColor);
  overflow: hidden;
}
.js-anime .js-line01 {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  clip-path: polygon(65% 0%, 80% 0, 15% 100%, 0% 100%);
  mix-blend-mode: soft-light;
}
.js-anime .js-line02 {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  clip-path: polygon(65% 0%, 73% 0, 8% 100%, 0% 100%);
  mix-blend-mode: soft-light;
}

.js-split {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  line-height: 1;
  display: inline-block;
}

.char {
  transform: translateY(100%);
  transition: transform 0.5s;
}

.p-topMv {
  position: relative;
}
.p-topMv__image {
  height: 822px;
}
@media screen and (max-width: 520px) {
  .p-topMv__image {
    height: 100vh;
  }
}
.p-topMv__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-topMv__contents {
  position: absolute;
  z-index: 1;
  bottom: 96px;
  left: 5vw;
}
.p-topMv__title {
  font-family: var(--font-instrument-san);
  font-size: 70px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.214;
}
@media screen and (max-width: 990px) {
  .p-topMv__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 520px) {
  .p-topMv__title {
    font-size: 12vw;
  }
}
.p-topMv__text {
  font-weight: 500;
}
.p-topMv__btn {
  margin-top: 24px;
}

.p-topAbout {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: var(--sec-padding);
}
.p-topAbout .c-en {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .p-topAbout .c-en {
    top: 12px;
  }
}
.p-topAbout__container {
  max-width: min(1150px, 100% - 48px);
  width: 100%;
  margin: 0 auto;
}
.p-topAbout__box.-flex {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 520px) {
  .p-topAbout__box.-flex {
    flex-direction: column;
    gap: 24px;
  }
}
.p-topAbout__title {
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.5;
}
.p-topAbout__text {
  margin-top: 24px;
}
.p-topAbout__image {
  max-width: 600px;
  width: 100%;
}

.topSwiper {
  overflow: hidden;
}
.topSwiper .swiper-wrapper {
  transition-timing-function: linear;
}

.p-topBusiness {
  position: relative;
  z-index: 1;
  padding: var(--sec-padding);
}
.p-topBusiness .c-en {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}
.p-topBusiness__container {
  max-width: min(1150px, 100% - 48px);
  width: 100%;
  margin: 0 auto;
}
.p-topBusiness__title {
  font-size: var(--h2);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
}
.p-topBusiness__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 96px;
}
@media screen and (max-width: 990px) {
  .p-topBusiness__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
}
@media screen and (max-width: 520px) {
  .p-topBusiness__list {
    gap: 10px;
  }
}
.p-topBusiness__listItem a {
  position: relative;
  display: block;
  background: var(--white);
  padding: 40px 0;
}
.p-topBusiness__listItem a::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: var(--mainColor);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 0.1s ease;
}
.p-topBusiness__listItem a .p-in-icon {
  max-width: 70%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.p-topBusiness__listItem a .p-in-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--mainColor);
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 990px) {
  .p-topBusiness__listItem a .p-in-text {
    font-size: 3vw;
  }
}
@media screen and (max-width: 520px) {
  .p-topBusiness__listItem a .p-in-text {
    font-size: 2.8vw;
  }
}
.p-topBusiness__listItem a:hover .p-in-icon {
  transform: scale(0.95);
}

.p-topWorks {
  padding: var(--sec-padding);
}
.p-topWorks__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--h2);
  color: var(--mainColor);
  font-weight: 700;
  text-align: center;
}
.p-topWorks__titleBox {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.p-topWorks__titleBox .c-en {
  color: var(--white);
  text-align: center;
}
.p-topWorks__container {
  max-width: min(1700px, 100% - 48px);
  margin: 0 auto;
}
.p-topWorks__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media screen and (max-width: 990px) {
  .p-topWorks__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 520px) {
  .p-topWorks__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-topWorks__list a .p-in-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor);
  background: var(--white);
  width: fit-content;
  padding: 6px 24px;
}
@media screen and (max-width: 520px) {
  .p-topWorks__list a .p-in-title {
    font-size: 18px;
  }
}
.p-topWorks__list a .p-in-text {
  font-weight: 700;
  padding: 20px;
  background: var(--white);
}
.p-topWorks__btn {
  width: fit-content;
  margin: 0 auto;
  margin-top: 48px;
}

.p-topNews {
  padding: var(--sec-padding);
  background: var(--white);
}
.p-topNews__container {
  max-width: min(1150px, 100% - 48px);
  width: 100%;
  margin: 0 auto;
}
.p-topNews__box {
  display: flex;
  gap: 96px;
}
@media screen and (max-width: 990px) {
  .p-topNews__box {
    flex-direction: column;
    gap: 48px;
  }
}
.p-topNews__title {
  min-width: fit-content;
  display: flex;
  flex-direction: column;
}
.p-topNews__title--en {
  font-family: var(--font-inter);
  font-size: 64px;
  font-weight: 700;
  color: var(--mainColor);
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .p-topNews__title--en {
    font-size: 48px;
  }
}
.p-topNews__title--ja {
  font-weight: 700;
  color: var(--mainColor);
  line-height: 1.5;
}
.p-topNews__listItem a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .p-topNews__listItem a {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}
.p-topNews__listItem a .p-in-date {
  min-width: 100px;
  font-family: var(--font-cantarell);
  font-weight: 700;
  color: var(--mainColor);
}
.p-topNews__listItem a .p-in-cat {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--mainColor);
  border-radius: 999px;
  min-width: 84px;
  height: fit-content;
  text-align: center;
  padding: 0 1em;
}
.p-topNews__listItem a .p-in-text {
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-topNews__listItem a .p-in-text {
    width: 100%;
  }
}
.p-topNews__listItem a:hover {
  transform: translateX(5px);
}
.p-topNews__listItem:nth-last-of-type(1) a {
  opacity: 0.3;
}
.p-topNews__btn {
  width: fit-content;
  margin: 0 auto;
  margin-top: 48px;
}

.p-topRecruit {
  position: relative;
  background: var(--mainColor);
  padding-bottom: 96px;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .p-topRecruit {
    padding-bottom: 48px;
  }
}
.p-topRecruit::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 64px;
  background: var(--white);
}
.p-topRecruit__container {
  position: relative;
  z-index: 2;
  max-width: min(1150px, 100% - 48px);
  width: 100%;
  margin: 0 auto;
}
.p-topRecruit__box {
  display: flex;
  gap: 96px;
}
@media screen and (max-width: 990px) {
  .p-topRecruit__box {
    flex-direction: column;
    gap: 0px;
  }
}
.p-topRecruit__detail {
  position: relative;
  z-index: 1;
  margin: auto 0 0 0;
}
.p-topRecruit__detail .c-en {
  position: absolute;
  left: -5px;
  top: 0;
  font-size: 150px;
  z-index: -1;
  width: max-content;
}
@media screen and (max-width: 990px) {
  .p-topRecruit__detail .c-en {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 990px) {
  .p-topRecruit__detail .c-en {
    font-size: 64px;
    top: 48px;
  }
}
.p-topRecruit__image {
  max-width: 620px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .p-topRecruit__image {
    max-width: 400px;
    margin: 0 auto;
  }
}
.p-topRecruit__title {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--white);
  padding-top: 70px;
}
@media screen and (max-width: 990px) {
  .p-topRecruit__title {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
.p-topRecruit__text {
  margin-top: 24px;
  color: var(--white);
  font-weight: 500;
}
@media screen and (max-width: 990px) {
  .p-topRecruit__text {
    max-width: 520px;
    margin: 0 auto;
    margin-top: 48px;
  }
}
.p-topRecruit__btn {
  margin-top: 48px;
}
@media screen and (max-width: 990px) {
  .p-topRecruit__btn {
    width: fit-content;
    margin: 48px auto 0;
  }
}

main#lower .js-anime {
  position: relative;
  background: var(--mainColor);
  overflow: hidden;
}
main#lower .js-anime .js-line01 {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1800px;
  background: var(--white);
  clip-path: polygon(65% 0%, 80% 0, 15% 100%, 0% 100%);
  mix-blend-mode: soft-light;
}
main#lower .js-anime .js-line02 {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1800px;
  background: var(--white);
  clip-path: polygon(65% 0%, 73% 0, 8% 100%, 0% 100%);
  mix-blend-mode: soft-light;
}

.p-works__head {
  position: relative;
  padding-top: 96px;
}
@media screen and (max-width: 990px) {
  .p-works__head {
    padding-top: 48px;
  }
}
.p-works__head::after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 75px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white);
}
@media screen and (max-width: 990px) {
  .p-works__head::after {
    height: 50px;
  }
}
.p-works__headTitle {
  font-size: 32px;
  font-weight: 700;
  color: var(--mainColor);
  text-align: center;
}
@media screen and (max-width: 990px) {
  .p-works__headTitle {
    font-size: 28px;
  }
}
.p-works__headText {
  margin-top: 24px;
}
.p-works__headBtns {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media screen and (max-width: 990px) {
  .p-works__headBtns {
    margin-top: 48px;
    gap: 24px;
  }
}
@media screen and (max-width: 520px) {
  .p-works__headBtns {
    grid-template-columns: 1fr;
  }
}
.p-works__headBtn {
  background: #334a87;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  color: var(--white);
  font-weight: 700;
  padding: 24px;
  min-height: 150px;
}
@media screen and (max-width: 990px) {
  .p-works__headBtn {
    min-height: 100px;
  }
}
.p-works__headBtn .-ja {
  font-size: 20px;
}
.p-works__headBtn .-en {
  font-size: 16px;
  font-family: var(--font-cantarell);
}
.p-works__main {
  background: var(--white);
  padding-bottom: 96px;
}
.p-works__content {
  padding-top: 96px;
}
.p-works__list {
  margin-top: 48px;
}
.p-works__listItem {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 990px) {
  .p-works__listItem {
    flex-direction: column-reverse;
  }
}
.p-works__listItem:nth-of-type(1) {
  border-top: 1px solid #d9d9d9;
}
.p-works__listItem:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 990px) {
  .p-works__listItem:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
}
.p-works__image {
  flex-basis: 480px;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .p-works__image {
    flex-basis: auto;
    margin: 0 auto;
    max-width: 100%;
  }
}
.p-works__detail {
  flex-basis: 600px;
}
@media screen and (max-width: 990px) {
  .p-works__detail {
    flex-basis: auto;
  }
}
.p-works__detail .p-in-num {
  font-family: var(--font-inter);
  font-size: 64px;
  font-weight: 700;
  color: var(--mainColor);
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .p-works__detail .p-in-num {
    font-size: 48px;
  }
}
.p-works__detail .p-in-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor);
  margin-top: 16px;
}
.p-works__detail .p-in-text {
  margin-top: 16px;
}

.worksSwiper {
  position: relative;
  overflow: hidden;
}
.worksSwiper .swiper-button-prev,
.worksSwiper .swiper-button-next {
  color: #fff;
}

.p-recruit {
  background: var(--white);
  padding: var(--sec-padding);
}
.p-recruit__container {
  margin-top: 48px;
}
.p-recruit__box {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
@media screen and (max-width: 990px) {
  .p-recruit__box {
    flex-direction: column-reverse;
  }
}
.p-recruit__detail {
  flex-basis: 552px;
}
@media screen and (max-width: 990px) {
  .p-recruit__detail {
    flex-basis: auto;
  }
}
.p-recruit__image {
  flex-basis: 600px;
}
@media screen and (max-width: 990px) {
  .p-recruit__image {
    flex-basis: auto;
  }
}
.p-recruit__title {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--mainColor);
}
.p-recruit__title span {
  font-size: 24px;
}
.p-recruit__text {
  margin-top: 24px;
  font-weight: 500;
}
.p-recruit__sign {
  font-size: 20px;
  font-weight: 700;
  text-align: end;
  margin-top: 24px;
}
.p-recruit__btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.p-business {
  background: var(--white);
  padding: var(--sec-padding);
}
.p-business__container {
  margin-top: 48px;
}
.p-business__title {
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  color: var(--mainColor);
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-business__title::before {
  content: "";
  display: block;
  width: 110%;
  height: 14px;
  background: #f5f5f5;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  z-index: -1;
}
.p-business__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 48px;
}
@media screen and (max-width: 990px) {
  .p-business__list {
    grid-template-columns: 1fr;
    max-width: max-content;
    margin: 0 auto;
    margin-top: 48px;
  }
}
.p-business__listItem {
  font-weight: 700;
  color: var(--mainColor);
}
.p-business__listItem::before {
  content: "・";
}
.p-business__dataList {
  margin-top: 96px;
  background: #f5f5f5;
  padding: 48px;
}
.p-business__dataListTitle {
  font-size: 24px;
  color: var(--mainColor);
  background: var(--white);
  width: fit-content;
  padding: 0 1em;
}
.p-business__dataListBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 24px;
}
@media screen and (max-width: 990px) {
  .p-business__dataListBox {
    grid-template-columns: 1fr;
  }
}
.p-business__dataListItem {
  font-weight: 700;
  color: var(--mainColor);
}
.p-business__dataListItem::before {
  content: "・";
}

.p-flow {
  padding: var(--sec-padding);
}
.p-flow__container {
  margin-top: 48px;
}
.p-flow__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 96px;
}
.p-flow__timeline {
  display: grid;
}
.p-flow__timelineItem {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 520px) {
  .p-flow__timelineItem {
    gap: 24px;
  }
}
.p-flow__timelineItem:nth-last-of-type(1) .p-in-time:before {
  content: none;
}
.p-flow__timelineItem .p-in-time {
  position: relative;
}
@media screen and (max-width: 520px) {
  .p-flow__timelineItem .p-in-time {
    flex-basis: 100px;
  }
}
.p-flow__timelineItem .p-in-time::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: var(--mainColor);
}
.p-flow__timelineItem .p-in-time span {
  display: block;
  min-width: 120px;
  padding: 7px;
  background: var(--mainColor);
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  height: fit-content;
}
@media screen and (max-width: 520px) {
  .p-flow__timelineItem .p-in-time span {
    font-size: 18px;
    min-width: 100px;
  }
}
.p-flow__timelineItem .p-in-detail {
  margin-bottom: 32px;
}
@media screen and (max-width: 520px) {
  .p-flow__timelineItem .p-in-detail {
    width: 100%;
    flex: 1;
  }
}
.p-flow__timelineItem .p-in-detail h3 {
  display: flex;
  justify-content: center;
  min-width: 330px;
  padding: 7px;
  background: var(--white);
  color: var(--mainColor);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  height: fit-content;
}
@media screen and (max-width: 520px) {
  .p-flow__timelineItem .p-in-detail h3 {
    font-size: 18px;
    width: 100%;
    min-width: auto;
  }
}
.p-flow__timelineItem .p-in-detail ul li {
  margin-top: 16px;
  font-weight: 500;
}
.p-flow__timelineItem .p-in-detail ul li::before {
  content: "・";
}
.p-flow__imageBox {
  display: flex;
  flex-direction: column;
  gap: 124px;
  max-width: 480px;
  flex: 1;
}
@media screen and (max-width: 990px) {
  .p-flow__imageBox {
    display: none;
  }
}
.p-flow__btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.p-skill {
  padding: var(--sec-padding);
  background: var(--white);
}
.p-skill__lead {
  font-weight: 500;
  width: fit-content;
  margin: 0 auto;
  margin-top: 48px;
}
.p-skill__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 10px;
  max-width: 810px;
  margin: 0 auto;
  margin-top: 48px;
}
@media screen and (max-width: 520px) {
  .p-skill__list {
    grid-template-columns: 1fr;
  }
}
.p-skill__listItem {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--mainColor);
  background: #f5f5f5;
  padding: 10px 50px;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}
.p-skill__sub {
  max-width: 810px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
}
@media screen and (max-width: 520px) {
  .p-skill__sub {
    grid-template-columns: 1fr;
  }
}
.p-skill__sub span {
  text-align: center;
}
.p-skill__note {
  font-size: 20px;
  font-weight: 700;
  color: var(--mainColor);
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 520px) {
  .p-skill__note {
    font-size: 16px;
    text-align: start;
  }
}

.p-work {
  background: var(--mainColor);
  padding: var(--sec-padding);
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .p-work .c-secTitle h2 {
    font-size: 24px;
  }
}
.p-work__container {
  margin-top: 48px;
  max-width: 1020px;
  margin: 0 auto;
}
.p-work__box {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}
@media screen and (max-width: 990px) {
  .p-work__box {
    gap: 24px;
  }
}
@media screen and (max-width: 520px) {
  .p-work__box {
    flex-direction: column;
  }
}
.p-work .is-num p {
  padding-left: 40px;
}
@media screen and (max-width: 520px) {
  .p-work .is-num p {
    padding-left: 35px;
  }
}
.p-work .is-num h3 span {
  padding-right: 0.5em;
}
.p-work .is-noTitle {
  align-items: end;
}
.p-work .is-noTitle p {
  margin: 0;
}
.p-work__image {
  flex-basis: 300px;
}
@media screen and (max-width: 990px) {
  .p-work__image {
    flex-basis: 30%;
  }
}
.p-work__detail {
  flex: 1;
  color: var(--white);
}
.p-work__detail h3 {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-work__detail h3 {
    font-size: 24px;
  }
}
.p-work__detail h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 12px;
}
@media screen and (max-width: 520px) {
  .p-work__detail h4 {
    font-size: 18px;
  }
}
.p-work__detail p {
  margin-top: 24px;
}

.p-staff {
  background: var(--mainColor);
  padding-top: 96px;
  overflow: hidden;
}
@media screen and (max-width: 990px) {
  .p-staff {
    padding-top: 48px;
  }
}
.p-staff__container {
  margin-top: 48px;
}
.p-staff__box {
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 24px;
}
@media screen and (max-width: 990px) {
  .p-staff__box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.p-staff__box:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 990px) {
  .p-staff__box:nth-of-type(2) {
    flex-direction: column;
  }
}
.p-staff__box:nth-of-type(2) .p-staff__detail {
  background: url(/topic/common/images/recruit/staff-bg02.png) no-repeat center center/cover;
}
.p-staff__box:nth-of-type(2) .p-staff__detail::before {
  background: linear-gradient(-270deg, rgba(27, 40, 80, 0.9) 0%, rgba(27, 40, 80, 0.4) 40%, #1b2850 100%);
}
.p-staff__box:nth-of-type(2) .p-staff__detail::after {
  top: 0;
  right: auto;
  left: 0;
  transform: translateX(-100%);
  background: url(/topic/common/images/recruit/staff-bg02--sub.png) no-repeat left center/cover;
}
.p-staff__detail {
  position: relative;
  z-index: 1;
  flex-basis: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(/topic/common/images/recruit/staff-bg01.png) no-repeat center center/cover;
  padding: 48px;
  min-height: 400px;
}
@media screen and (max-width: 990px) {
  .p-staff__detail {
    flex-basis: auto;
    padding: 48px 0;
  }
}
.p-staff__detail::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(27, 40, 80, 0.9) 0%, rgba(27, 40, 80, 0.4) 40%, #1b2850 100%);
  backdrop-filter: blur(2.5px);
}
.p-staff__detail::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  transform: translateX(100%);
  display: block;
  width: 300px;
  height: 100%;
  background: url(/topic/common/images/recruit/staff-bg01--sub.png) no-repeat left center/cover;
  backdrop-filter: blur(2.5px);
}
.p-staff__detail .p-in-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.p-staff__detail .p-in-text {
  color: var(--white);
  max-width: 420px;
  margin-top: 24px;
  font-weight: 500;
}
.p-staff__detail .p-in-year {
  max-width: 420px;
  width: 100%;
  font-weight: 700;
  color: var(--white);
  text-align: end;
  margin-top: 48px;
}
.p-staff__image {
  position: relative;
  z-index: 1;
  flex-basis: 380px;
}
@media screen and (max-width: 990px) {
  .p-staff__image {
    flex-basis: auto;
    max-width: 380px;
  }
}
.p-staff__image::after {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  aspect-ratio: 1;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  z-index: -1;
}

.p-jd {
  padding: var(--sec-padding);
  background: var(--white);
}
.p-jd__title {
  text-align: center;
  font-size: var(--h2);
  font-weight: 700;
  color: var(--mainColor);
}
.p-jd__table {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
}
@media screen and (max-width: 520px) {
  .p-jd__table tr {
    display: flex;
    flex-direction: column;
  }
}
.p-jd__table tr th {
  font-weight: 700;
  color: var(--mainColor);
  padding: 22px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 520px) {
  .p-jd__table tr th {
    padding: 12px;
    border-bottom: none;
  }
}
.p-jd__table tr td {
  padding: 22px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 520px) {
  .p-jd__table tr td {
    padding: 12px;
  }
}
.p-jd__table tr:nth-of-type(2n - 1) {
  background: #f5f5f5;
}
.p-jd__table tr:nth-of-type(1) {
  border-top: 1px solid #d9d9d9;
}

.p-page {
  background: var(--white);
}
.p-page__container {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 48px;
  padding: var(--sec-padding);
}
.p-page__container.is-noAside {
  grid-template-columns: 1fr;
}
.p-page__container.is-noAside aside {
  display: none;
}
.p-page aside {
  padding: 10px;
  height: fit-content;
}
.p-page aside h3 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--mainColor);
  margin-top: 24px;
}
.p-page aside h3:nth-of-type(1) {
  margin-top: 0;
}
.p-page aside dl dt {
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
}
.p-page aside dl .img {
  margin-top: 16px;
}
.p-page aside #membership {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.content .u-image {
  width: 100%;
  vertical-align: middle;
}
.content .u-image.-w-370 {
  max-width: 370px;
}
.content .u-image.-w-320 {
  max-width: 320px;
}
@media screen and (max-width: 990px) {
  .content .u-image.-w-320 {
    max-width: 100%;
  }
}
.content .u-mt--24 {
  margin-top: 24px;
}
.content ul {
  list-style-type: disc;
  list-style-position: inside;
}
.content ul ul {
  list-style-type: circle;
  padding-left: 1.5em;
}
.content .u-flex {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 990px) {
  .content .u-flex {
    flex-direction: column;
  }
}
.content h2 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--mainColor);
  padding: 12px 0;
}
@media screen and (max-width: 520px) {
  .content h2 {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
.content h2 span {
  font-family: var(--font-cantarell);
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--mainColor);
}
@media screen and (max-width: 520px) {
  .content h2 span {
    border-right: none;
  }
}
.content h3 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  margin-top: 48px;
  flex: 1;
}
@media screen and (max-width: 990px) {
  .content h3 {
    font-size: 18px;
  }
}
.content h3 .num {
  font-family: var(--font-inter);
  font-size: 64px;
  font-weight: 700;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--mainColor);
}
@media screen and (max-width: 990px) {
  .content h3 .num {
    font-size: 48px;
  }
}
@media screen and (max-width: 520px) {
  .content h3 .num {
    font-size: 24px;
    padding-right: 12px;
    margin-right: 12px;
  }
}
.content a {
  color: var(--mainColor);
  font-weight: 700;
}
.content .u-offset {
  padding-top: 96px;
  margin-top: -96px;
}

#speciality {
  background: #f5f5f5;
  padding: var(--sec-padding);
}

#brand {
  padding: var(--sec-padding);
}

#policy {
  background: #f5f5f5;
  padding: var(--sec-padding);
}
#policy .policy_list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 48px;
}
@media screen and (max-width: 520px) {
  #policy .policy_list {
    grid-template-columns: 1fr;
    max-width: 50%;
  }
}

#company h3 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--mainColor);
  padding: 12px 0;
}
#company h3 span {
  font-family: var(--font-cantarell);
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--mainColor);
}
#company table {
  width: 100%;
}
#company table tr {
  border-bottom: 1px solid #ddd;
}
#company table tr:nth-of-type(1) {
  border-top: 1px solid #ddd;
}
#company table tr:nth-of-type(2n - 1) {
  background: #f9f9f9;
}
#company table tr th {
  padding: 7px;
  text-align: center;
  color: var(--mainColor);
}
#company table tr td {
  padding: 7px;
}
#company .company_map {
  margin-top: 24px;
  width: 100%;
}
#company .company_map iframe {
  width: 100%;
}

#sitemap,
#privacy {
  padding: var(--sec-padding);
}

.p-news__list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (max-width: 990px) {
  .p-news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 520px) {
  .p-news__list {
    grid-template-columns: 1fr;
  }
}
.p-news__list li {
  list-style: none;
}
.p-news__sum {
  position: relative;
}
.p-news__sum span {
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5f5;
  padding: 7px 1em;
}
.p-news__date {
  font-size: 14px;
  color: var(--mainColor);
}
.p-news__title {
  font-size: 20px;
}
.p-news__content {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.p-news__singleHead {
  display: flex;
  gap: 24px;
  align-items: center;
}
.p-news__singleHead .p-in-date {
  font-family: var(--font-cantarell);
  font-weight: 700;
  color: var(--mainColor);
}
.p-news__singleHead .p-in-cat .post-categories {
  list-style: none;
}
.p-news__singleHead .p-in-cat .post-categories a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--mainColor);
  border-radius: 999px;
  min-width: 84px;
  height: fit-content;
  text-align: center;
  padding: 0 1em;
}
.p-news__singleContent {
  display: block;
  padding: 48px 0;
}
.p-news__singleContent img {
  margin-bottom: 1em;
}
.p-news__singleContent p {
  padding-bottom: 1em;
}
.p-news__singleBtn {
  display: flex;
  justify-content: center;
}
.p-news__singleBtn a {
  color: var(--white);
}

.p-news__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.page-numbers {
  display: grid;
  place-items: center;
  background: #f1f1f1;
  border-radius: 5px;
  width: 32px;
  height: 32px;
  font-weight: 700;
}
.page-numbers.current {
  background: var(--mainColor);
  color: var(--white);
}

.p-inquiry__content {
  margin-top: 48px;
}
.p-inquiry__content .required {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  background-color: #d9534f;
}

#frm_inquiry {
  margin-top: 48px;
}
#frm_inquiry .row {
  padding-bottom: 24px;
  padding-top: 24px;
  border-bottom: 1px solid #ddd;
  display: flex;
}
@media screen and (max-width: 990px) {
  #frm_inquiry .row {
    flex-direction: column;
    gap: 24px;
  }
}
#frm_inquiry .row.confirm {
  justify-content: end;
}
@media screen and (max-width: 990px) {
  #frm_inquiry .row.confirm {
    align-items: end;
  }
}
#frm_inquiry .row .title {
  font-weight: 700;
  width: 30%;
}
@media screen and (max-width: 990px) {
  #frm_inquiry .row .title {
    width: 100%;
  }
}
#frm_inquiry .row .form-inline {
  width: 60%;
  flex: 1;
}
@media screen and (max-width: 990px) {
  #frm_inquiry .row .form-inline {
    width: 100%;
  }
}
#frm_inquiry .row .form-inline input,
#frm_inquiry .row .form-inline textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  min-height: 24px;
  padding: 6px 12px;
  width: 100%;
}
#frm_inquiry .row .form-inline input[type=radio] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  min-height: auto;
  padding: 0;
}
#frm_inquiry .row .form-inline input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: "";
}
#frm_inquiry .row .form-inline .mwform-radio-field {
  display: block;
  margin: 0 0 0.5em 0;
}
#frm_inquiry #postal {
  max-width: 300px;
  width: 100%;
  margin-bottom: 1em;
}
#frm_inquiry #ajaxzip {
  background: var(--mainColor);
  color: var(--white);
  border-radius: 5px;
  padding: 6px 12px;
}
#frm_inquiry #pref {
  border: 1px solid #ccc;
  border-radius: 4px;
  min-height: 24px;
  padding: 6px 12px;
  margin-bottom: 1em;
}
#frm_inquiry #city,
#frm_inquiry #address {
  display: block;
}

.u-green {
  color: var(--primary-color);
}

.u-white {
  color: var(--color-white);
}

.u-pb--0 {
  padding-bottom: 0;
}

.u-border {
  border-bottom: 1px solid var(--primary-color);
}

.u-btn-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .u-btn-col {
    flex-direction: column;
    gap: 3.2rem;
  }
}