@charset "UTF-8";
/* ====================================================
layout
==================================================== */
.l-header {
  position: fixed;
  left: 0;
  right: 0%;
  top: 0;
  z-index: 9999;
  transition: background 0.3s, top 0.6s;
}
@media print, screen and (max-width: 768px) {
  .l-header {
    margin-top: 0;
  }
}
.staff:not(.fixheader):not(.layeron_fixheader) .l-header {
  position: absolute;
  background-color: transparent;
}
.l-header.is_open {
  z-index: 99999;
}
.fixheader .l-header {
  background: #fff;
}
.staff.fixheader_mv .l-header {
  top: -100px;
}

.l-page-mv {
  position: relative;
  background-size: 100% auto;
  background-position: top center;
  height: 60rem;
  padding-top: 0;
  background-repeat: no-repeat;
  width: 160rem;
  margin: auto;
  padding-bottom: 0;
  display: flex;
  align-items: flex-end;
}
@media print, screen and (max-width: 768px) {
  .l-page-mv {
    width: 90%;
    height: 27rem;
    padding-bottom: 4rem;
  }
}
.l-page-content {
  position: relative;
}
.l-page-content-en {
  position: absolute;
  width: 9.5rem;
  left: 9rem;
  top: 4rem;
}
@media print, screen and (max-width: 768px) {
  .l-page-content-en {
    display: none;
  }
}

.l-main {
  position: relative;
  padding-top: 19.6rem;
}
@media print, screen and (max-width: 768px) {
  .l-main {
    padding-top: 8rem;
  }
}
.l-main::after {
  content: "";
  z-index: -1;
  background: url(../img/common/bg_geometry.jpg) repeat;
  background-size: 100% auto;
  height: 47rem;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .l-main::after {
    height: 30rem;
  }
}
@media print, screen and (max-width: 768px) {
  .l-main.l-page::after {
    height: 35rem;
  }
}

.body {
  color: #151515;
}

/* ====================================================
js
==================================================== */
/*========= tab切り替え ===============*/
.js-tab-panel {
  display: none;
}

.js-tab-item.is-active {
  background-color: skyblue;
}

.js-tab-panel.is-active {
  display: block;
}

/*========= LoadingのためのCSS ===============*/
.top-mv__content {
  transform: translate(50%, -37rem);
  animation: shutter-title 1s forwards 2.5s;
  -webkit-animation: shutter-title 1s forwards 2.5s;
}
@media print, screen and (max-width: 768px) {
  .top-mv__content {
    transform: translate(0%, -150%);
    animation: shutter-title-sp 2s forwards 2.6s;
    -webkit-animation: shutter-title-sp 2s forwards 2.6s;
  }
}

.shutter {
  display: none;
  position: fixed;
  top: 0;
  width: 0;
  height: 0;
  opacity: 1;
  z-index: 9999;
  -webkit-animation: byeShutter 1.5s forwards 0;
  animation: byeShutter 1.5s forwards 0;
}
.shutter::after {
  content: "";
  z-index: -1;
  background: url(../img/common/bg_geometry.jpg) repeat;
  background-size: 100% auto;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: shutter-doco 1s forwards 2.5s;
  -webkit-animation: shutter-doco 1s forwards 2.5s;
}

@keyframes shutter-title {
  50% {
    transform: translate(50%, -37rem);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes shutter-title-sp {
  50% {
    transform: translate(0%, -150%);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes shutter-doco {
  0% {
    display: block;
    opacity: 1;
    height: 100vh;
  }
  100% {
    display: block;
    opacity: 0;
    height: 0;
  }
}
@keyframes byeShutter {
  0% {
    width: 100vw;
    height: 100vh;
  }
  90% {
    opacity: 1;
    display: none;
    width: 100vw;
    height: 100vh;
  }
  100% {
    opacity: 0;
    display: none;
    width: 100vw;
    height: 100vh;
  }
}
/*========= animation ===============*/
@-webkit-keyframes railUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes railUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@-webkit-keyframes railDown {
  from {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes railDown {
  from {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*========= text animation ===============*/
@keyframes showTextFromBottom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-showtext span {
  display: inline-block;
  opacity: 1;
}

.animated .js-showtext span {
  animation: showTextFromBottom 1s backwards;
}

/*========= slider ===============*/
.js-slider_interview .swiper-slide {
  position: relative;
  -webkit-transition: width 0.8s ease, height 0.8s ease;
  transition: width 0.8s ease, height 0.8s ease;
  height: 38rem;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-slide {
    padding: 0 0.8rem;
    width: 18.8rem !important;
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.js-slider_interview .swiper-slide * {
  box-sizing: border-box;
}
.js-slider_interview .swiper-wrapper {
  transition-timing-function: linear;
  height: 37rem;
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-wrapper {
    height: auto;
  }
}
.js-slider_interview .swiper-button-next,
.js-slider_interview .swiper-button-prev {
  width: 12.6rem;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-button-next,
  .js-slider_interview .swiper-button-prev {
    width: 9rem;
  }
}
.js-slider_interview .swiper-button__wrap {
  display: flex;
  justify-content: space-between;
  width: 29.7rem;
  position: absolute;
  bottom: 12rem;
  right: 31.4rem;
}
@media print, screen and (max-width: 768px) {
  .js-slider_interview .swiper-button__wrap {
    position: static;
    bottom: auto;
    right: auto;
    width: 22rem;
    margin: 3rem auto 0;
  }
}

.js-slider_offices {
  width: 117rem;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .js-slider_offices {
    width: 28.6rem;
  }
}

/* ====================================================
top
==================================================== */
.top-card {
  display: block;
  color: #fff;
  height: 47.5rem;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .top-card {
    height: 25rem;
    font-size: 1.6rem;
  }
}
.top-mv {
  position: relative;
  margin-bottom: 7rem;
  padding-bottom: 9rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv {
    padding-bottom: 10rem;
    margin-bottom: 4rem;
  }
}
.top-mv__img {
  width: 160rem;
  margin-left: auto;
  overflow: hidden;
}
@media print, screen and (max-width: 768px) {
  .top-mv__img {
    width: 90%;
  }
}
.top-mv__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9999;
  padding-left: 5rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__content {
    padding-left: 2rem;
  }
}
.top-mv__content.is-static {
  z-index: 2;
}
.top-mv__catch {
  background: url(../img/top/mv_catch_bg.png) no-repeat;
  background-size: cover;
  width: 55.8rem;
  padding: 1rem;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .top-mv__catch {
    width: 25rem;
  }
}
.top-mv__title {
  padding: 2rem 0 0 0;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .top-mv__title {
    padding: 0 0 0 0;
  }
}
.top-mv__title .top-mv__title__text01 {
  position: relative;
  z-index: 2;
}
.top-mv__title .top-mv__title__text01 img {
  height: 7.3rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__title .top-mv__title__text01 img {
    height: 3rem;
  }
}
.top-mv__title .top-mv__title__text02 {
  position: relative;
  z-index: 2;
}
.top-mv__title .top-mv__title__text02 img {
  height: 13rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__title .top-mv__title__text02 img {
    height: 5rem;
  }
}
.top-mv__title .title__cover, .top-mv__title .title__line::after {
  opacity: 0;
  transform: translatex(2.5rem);
  position: relative;
}
.top-mv__title .animated .title__cover, .top-mv__title .animated .title__line::after {
  opacity: 1;
  transform: translatey(0);
  transition: transform 200ms linear, opacity 100ms linear;
  transition-delay: 1400ms;
}
.top-mv__title .animated .title__cover:before {
  transform: scaleX(1);
  transition: transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 1800ms;
}
.top-mv__title .title__line {
  position: relative;
  display: block;
}
.top-mv__title .title__line::after {
  position: absolute;
  height: 13.5rem;
  content: "";
  background-size: cover;
}
.top-mv__title .title__cover {
  display: inline-block;
  position: relative;
  padding: 2rem 1.6rem 2rem 1.6rem;
}
@media print, screen and (max-width: 768px) {
  .top-mv__title .title__cover {
    padding: 1rem 1rem 1rem 1rem;
  }
}
.top-mv__title .title__cover .title__inner {
  position: relative;
  display: inline-block;
}
.top-mv__title .title__cover:before {
  left: 0;
  background-color: #fff;
  transition: transform 500ms ease-out;
  transform: scaleX(0);
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  z-index: -1;
}
.top-message {
  padding: 7rem 0;
  margin-top: 5rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .top-message {
    padding: 4rem 0 5rem;
    margin-top: 0;
  }
}
.top-message::after {
  width: 90%;
  height: 100%;
  background: url(../img/common/bg_pearl.png) repeat;
  background-size: 100% auto;
  top: 0;
}
@media print, screen and (max-width: 768px) {
  .top-message::after {
    width: 100%;
  }
}
.top-message::before {
  background: url(../img/top/message_en.svg);
  content: "";
  position: absolute;
  background-size: cover;
  width: 10rem;
  height: 82rem;
  left: 8rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .top-message::before {
    display: none;
  }
}
.top-message__title {
  width: 64rem;
  margin-bottom: 5rem;
}
@media print, screen and (max-width: 768px) {
  .top-message__title {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
.top-message__wrap {
  letter-spacing: 0.08em;
  line-height: 2;
  z-index: 2;
  position: relative;
}
.top-message > figure {
  position: absolute;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 100rem;
  height: 74rem;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .top-message > figure {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 3rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.top-about {
  padding: 9.5rem 0 11rem;
  margin-top: 13rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .top-about {
    padding: 5rem 0;
    margin-top: 5rem;
  }
}
.top-about::after {
  width: 110%;
  height: 100%;
  background: url(../img/common/bg_geometry.jpg) repeat;
  background-size: 100% auto;
  top: 0;
}
.top-about__card {
  margin-top: 8rem;
  background-image: url(../img/top/about_img.jpg);
}
@media print, screen and (max-width: 768px) {
  .top-about__card {
    margin-top: 3rem;
    background-image: url(../img/top/about_img-sp.jpg);
  }
}
.top-works {
  padding: 8rem 0 19rem;
  margin-top: 17rem;
  background: url(../img/common/bg_pearl.png) repeat;
  background-size: 100% auto;
}
@media print, screen and (max-width: 768px) {
  .top-works {
    padding: 4rem 0 4rem;
    margin-top: 6rem;
  }
}
.top-works__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7rem;
}
@media print, screen and (max-width: 768px) {
  .top-works__wrap {
    margin-top: 2rem;
  }
}
.top-works__card {
  flex-direction: column;
  background-size: cover;
  background-position: center;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .top-works__card {
    margin-top: 2rem;
  }
}
.top-works__card:nth-child(1) {
  background-image: url(../img/top/works_img01.jpg);
  background-position: right bottom;
  width: 49%;
}
@media print, screen and (max-width: 768px) {
  .top-works__card:nth-child(1) {
    background-image: url(../img/top/works_img01-sp.jpg);
    width: 100%;
  }
}
.top-works__card:nth-child(2) {
  background-image: url(../img/top/works_img02.jpg);
  background-position: right bottom;
  width: 49%;
}
@media print, screen and (max-width: 768px) {
  .top-works__card:nth-child(2) {
    background-image: url(../img/top/works_img02-sp.jpg);
    width: 100%;
  }
}
.top-works__card:nth-child(3) {
  background-image: url(../img/top/works_img03.jpg);
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .top-works__card:nth-child(3) {
    background-image: url(../img/top/works_img03-sp.jpg);
  }
}
.top-works__card .label {
  display: inline-block;
  font-size: 2.8rem;
  padding: 0 1rem;
  margin-top: 1rem;
  border: 1px solid #fff;
}
@media print, screen and (max-width: 768px) {
  .top-works__card .label {
    font-size: 1.5rem;
  }
}
.top-interview {
  padding-bottom: 11rem;
  background-color: #fff;
  margin-top: 20rem;
}
@media print, screen and (max-width: 768px) {
  .top-interview {
    padding-bottom: 4rem;
    margin-top: 8rem;
  }
}
.top-interview__title {
  width: fit-content;
  color: #fff;
  font-size: 3.4rem;
  text-align: center;
  background-image: url(../img/top/interview_titlebg.png);
  background-size: cover;
  margin: 0 auto 0;
  padding: 0 1rem;
  top: -3rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .top-interview__title {
    font-size: 1.6rem;
    top: -1.5rem;
    padding: 0.5rem 3rem;
  }
}
.top-interview__slider {
  margin-top: 7rem;
}
@media print, screen and (max-width: 768px) {
  .top-interview__slider {
    margin-top: 2rem;
  }
}
.top-crosstalk {
  padding: 9.5rem 0 11rem;
  margin-top: 13rem;
}
@media print, screen and (max-width: 768px) {
  .top-crosstalk {
    padding: 4rem 0;
    margin-top: 4rem;
  }
}
.top-crosstalk::after {
  width: 110%;
  height: 100%;
  background: url(../img/common/bg_geometry.jpg) repeat;
  background-size: 100% auto;
  top: 0;
}
.top-crosstalk .top-title {
  width: 100%;
}
.top-crosstalk__wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7rem;
}
@media print, screen and (max-width: 768px) {
  .top-crosstalk__wrap {
    margin-top: 2rem;
  }
}
.top-crosstalk__card {
  flex-direction: column;
  background-size: cover;
  background-position: center;
}
@media print, screen and (max-width: 768px) {
  .top-crosstalk__card {
    margin-top: 2rem;
  }
}
.top-crosstalk__card:nth-child(1) {
  background-image: url(../img/top/crosstalk_img01.jpg);
  background-position: right bottom;
  width: 49%;
}
@media print, screen and (max-width: 768px) {
  .top-crosstalk__card:nth-child(1) {
    width: 100%;
    background-image: url(../img/top/crosstalk_img01-sp.jpg);
  }
}
.top-crosstalk__card:nth-child(2) {
  background-image: url(../img/top/crosstalk_img02.jpg);
  background-position: right bottom;
  width: 49%;
}
@media print, screen and (max-width: 768px) {
  .top-crosstalk__card:nth-child(2) {
    width: 100%;
    background-image: url(../img/top/crosstalk_img02-sp.jpg);
  }
}
.top-environment {
  padding: 9.5rem 0 11rem;
  margin-top: 13rem;
}
@media print, screen and (max-width: 768px) {
  .top-environment {
    padding: 4rem 0;
    margin-top: 4rem;
  }
}
.top-environment::after {
  width: 115%;
  height: 100%;
  background: url(../img/common/bg_pearl.png) repeat;
  background-size: 100% auto;
  top: 0;
}
.top-environment__wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7rem;
}
@media print, screen and (max-width: 768px) {
  .top-environment__wrap {
    margin-top: 2rem;
  }
}
.top-environment__card {
  flex-direction: column;
  background-size: cover;
  background-position: center;
  height: 30rem;
}
@media print, screen and (max-width: 768px) {
  .top-environment__card {
    margin-top: 2rem;
    height: 25rem;
  }
}
.top-environment__card:nth-child(1) {
  background-image: url(../img/top/environment_img01.jpg);
  background-position: right bottom;
  width: 32%;
}
@media print, screen and (max-width: 768px) {
  .top-environment__card:nth-child(1) {
    width: 100%;
    background-image: url(../img/top/environment_img01-sp.jpg);
    background-position: center;
  }
}
.top-environment__card:nth-child(2) {
  background-image: url(../img/top/environment_img02.jpg);
  background-position: right bottom;
  width: 32%;
}
@media print, screen and (max-width: 768px) {
  .top-environment__card:nth-child(2) {
    width: 100%;
    background-image: url(../img/top/environment_img02-sp.jpg);
    background-position: center;
  }
}
.top-environment__card:nth-child(3) {
  background-image: url(../img/top/environment_img03.jpg);
  background-position: right bottom;
  width: 32%;
}
@media print, screen and (max-width: 768px) {
  .top-environment__card:nth-child(3) {
    width: 100%;
    background-image: url(../img/top/environment_img03-sp.jpg);
    background-position: center;
  }
}
.top-recruit {
  padding: 17rem 0 20rem;
}
@media print, screen and (max-width: 768px) {
  .top-recruit {
    padding: 7rem 0;
  }
}
.top-recruit .top-title {
  width: 100%;
}
.top-recruit__wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7rem;
}
@media print, screen and (max-width: 768px) {
  .top-recruit__wrap {
    margin-top: 2rem;
  }
}
.top-recruit__card {
  flex-direction: column;
  background-size: cover;
  background-position: center;
  height: 39.5rem;
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .top-recruit__card {
    margin-top: 2rem;
    height: 25rem;
  }
}
.top-recruit__card:nth-child(1) {
  background-image: url(../img/top/recruit_img01.jpg);
  background-position: center;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .top-recruit__card:nth-child(1) {
    background-image: url(../img/top/recruit_img01-sp.jpg);
    background-position: center;
  }
}
.top-recruit__card:nth-child(2) {
  background-image: url(../img/top/recruit_img02.jpg);
  background-position: right bottom;
  width: 49%;
}
@media print, screen and (max-width: 768px) {
  .top-recruit__card:nth-child(2) {
    width: 100%;
    background-image: url(../img/top/recruit_img02-sp.jpg);
    background-position: center;
  }
}
.top-recruit__card:nth-child(3) {
  background-image: url(../img/top/recruit_img03.jpg);
  background-position: right bottom;
  width: 49%;
}
@media print, screen and (max-width: 768px) {
  .top-recruit__card:nth-child(3) {
    width: 100%;
    background-image: url(../img/top/recruit_img03-sp.jpg);
    background-position: center;
  }
}

/* ====================================================
page
==================================================== */
.page-mv__title {
  position: relative;
  z-index: 2;
  font-size: 6.8rem;
}
@media print, screen and (max-width: 768px) {
  .page-mv__title {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}
.page-mv__title .title__cover,
.page-mv__title .title__line::after {
  opacity: 0;
  transform: translatex(2.5rem);
  position: relative;
}
.page-mv__title.animated .title__cover,
.page-mv__title.animated .title__line::after {
  opacity: 1;
  transform: translatey(0);
  transition: transform 200ms linear, opacity 100ms linear;
  transition-delay: 1400ms;
}
.page-mv__title.animated .title__cover:before {
  transform: scaleX(1);
  transition: transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 1800ms;
}
.page-mv__title .title__line {
  position: relative;
  display: block;
}
.page-mv__title .title__line::after {
  position: absolute;
  height: 13.5rem;
  content: "";
  background-size: cover;
}
.page-mv__title .title__cover {
  display: inline-block;
  position: relative;
  padding: 0 1.6rem 0 1.6rem;
}
@media print, screen and (max-width: 768px) {
  .page-mv__title .title__cover {
    padding: 0 1rem 0 1rem;
  }
}
.page-mv__title .title__cover .title__inner {
  position: relative;
  display: inline-block;
}
.page-mv__title .title__cover:before {
  left: 0;
  background-color: #fff;
  transition: transform 500ms ease-out;
  transform: scaleX(0);
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  z-index: -1;
}

/*========= about ===============*/
.about-mv {
  background-image: url(../img/about/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .about-mv {
    background-image: url(../img/about/mv_bg-sp.jpg);
  }
}
.about-cover {
  background-image: url(../img/common/title_grad.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
.about-title {
  font-size: 4.5rem;
}
@media print, screen and (max-width: 768px) {
  .about-title {
    font-size: 2.2rem;
  }
}
.about-message {
  font-size: 4.2rem;
}
@media print, screen and (max-width: 768px) {
  .about-message {
    font-size: 1.5rem;
  }
}
.about-content-en {
  top: -4rem;
}
@media print, screen and (max-width: 768px) {
  .about-content-en {
    position: absolute;
    top: -3rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}

/*========= works ===============*/
.works-mv {
  background-image: url(../img/works/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .works-mv {
    background-image: url(../img/works/mv_bg-sp.jpg);
  }
}
.works-title {
  font-size: 4.5rem;
}
@media print, screen and (max-width: 768px) {
  .works-title {
    font-size: 2.2rem;
  }
}

/*========= recruit ===============*/
.recruit-content-en {
  top: -4rem;
}
@media print, screen and (max-width: 768px) {
  .recruit-content-en {
    position: absolute;
    top: -3rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.recruit-title {
  font-size: 4.5rem;
}
@media print, screen and (max-width: 768px) {
  .recruit-title {
    font-size: 2.2rem;
  }
}

.career-mv {
  background-image: url(../img/information/career/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .career-mv {
    background-image: url(../img/information/career/mv_bg-sp.jpg);
  }
}

.new-mv {
  background-image: url(../img/information/new/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .new-mv {
    background-image: url(../img/information/new/mv_bg-sp.jpg);
  }
}

.message-mv {
  background-image: url(../img/information/message/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .message-mv {
    background-image: url(../img/information/message/mv_bg-sp.jpg);
  }
}
.message-title {
  font-size: 3.5rem;
}
@media print, screen and (max-width: 768px) {
  .message-title {
    font-size: 2rem;
  }
}
.message-title > span {
  display: block;
}
.message-content-en {
  top: -4rem;
}
@media print, screen and (max-width: 768px) {
  .message-content-en {
    position: absolute;
    top: -3rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.message-sec01::after {
  background: url(../img/common/bg_pearl.png) repeat-y;
  background-size: 100% auto;
  width: 110%;
  height: 100%;
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .message-sec01::after {
    width: 100%;
    height: 100%;
  }
}
.message-sec02::after {
  background: url(../img/common/bg_pearl.png) repeat-y;
  background-size: 100% auto;
  width: 110%;
  height: 90%;
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .message-sec02::after {
    width: 100%;
    height: 95%;
  }
}

/*========= crosstalk ===============*/
.crosstalk-mv {
  background-size: 111rem auto;
  background-position: top right;
  align-items: center;
  height: 55rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-mv {
    background-size: 100% auto;
    height: auto;
    align-items: flex-end;
    padding-bottom: 0;
    padding-top: 15.5rem;
  }
}
.crosstalk-mv__theme {
  font-size: 5.7rem;
  margin-top: 2rem;
  line-height: 1.4;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-mv__theme {
    font-size: 2.2rem;
    margin-top: 0;
  }
}
.crosstalk-mv__theme > span {
  display: inline-block;
  margin-top: 1rem;
}
.crosstalk-mv__title {
  font-size: 4.6rem;
  margin-top: 6rem;
  line-height: 1.2;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-mv__title {
    font-size: 2.2rem;
    margin-right: calc(50% - 45vw);
    margin-left: calc(50% - 45vw);
    width: 90vw;
  }
}
.crosstalk-mv__title > span {
  display: inline-block;
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-mv .c-inner-1300 {
    width: 100%;
  }
}
.crosstalk-mv.keisoku {
  background-image: url(../img/crosstalk/keisoku/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .crosstalk-mv.keisoku {
    background-image: url(../img/crosstalk/keisoku/mv_bg-sp.jpg);
  }
}
.crosstalk-mv.chizai {
  background-image: url(../img/crosstalk/chizai/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .crosstalk-mv.chizai {
    background-image: url(../img/crosstalk/chizai/mv_bg-sp.jpg);
  }
}
@media print, screen and (min-width: 768px) {
  .crosstalk-mv.chizai .crosstalk-mv__theme > span {
    margin-top: 0;
    position: relative;
  }
  .crosstalk-mv.chizai .crosstalk-mv__theme > span:nth-child(1) {
    background-size: 240% auto;
  }
  .crosstalk-mv.chizai .crosstalk-mv__theme > span:nth-child(1)::after {
    content: "×";
    font-size: 0.5em;
    position: absolute;
    left: 6.5rem;
    bottom: -2rem;
    z-index: 2;
  }
}
@media print, screen and (max-width: 768px) {
  .crosstalk-content-en {
    position: absolute;
    top: -3rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.crosstalk-proff::after {
  width: 110%;
  height: 80%;
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-proff::after {
    width: 100%;
    height: 90%;
  }
}
.crosstalk-proff.field01::after {
  background: url(../img/common/bg_pearl-thin.png) repeat-y;
  background-size: 100% auto;
}
.crosstalk-proff.field02::after {
  background: url(../img/common/bg_pearl-thin02.png) repeat-y;
  background-size: 100% auto;
}
.crosstalk-proff__list {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-proff__list {
    display: block;
  }
}
.crosstalk-proff__list > li {
  max-width: 24rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-proff__list > li {
    margin: auto;
    margin-bottom: 1rem;
  }
}
.crosstalk-title {
  font-size: 3.5rem;
  margin-bottom: 4rem;
  padding-left: 12rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-left: 7rem;
  }
}
.crosstalk-title::after {
  position: absolute;
  top: -0.2em;
  left: 0;
  content: "Q.";
  font-weight: 200;
  font-size: 10rem;
  font-family: "Jost";
  line-height: 1;
  background: linear-gradient(90deg, #3892ec 0%, #2bc4d8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-title::after {
    font-size: 6rem;
  }
}
.crosstalk-talk {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: space-between;
  margin-top: 4rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-talk {
    justify-content: center;
    margin-top: 3rem;
  }
}
.crosstalk-talk > dt {
  width: 9rem;
}
.crosstalk-talk > dd {
  width: calc(100% - 12rem);
}
@media print, screen and (max-width: 768px) {
  .crosstalk-talk > dd {
    width: 100%;
    margin-top: 1rem;
  }
}
.crosstalk-sec01 {
  padding-left: 11rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-sec01 {
    padding-left: 0;
  }
}
.crosstalk-sec02::after {
  background: url(../img/common/bg_pearl-thin.png) repeat-y;
  background-size: 100% auto;
  width: 110%;
  height: 100%;
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-sec02::after {
    width: 100%;
    height: 100%;
  }
}
.crosstalk-sec02.field02::after {
  background: url(../img/common/bg_pearl-thin02.png) repeat-y;
  background-size: 100% auto;
}
.crosstalk-sec03 {
  padding-right: 11rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-sec03 {
    padding-right: 0;
  }
}
.crosstalk-sec04::after {
  background: url(../img/common/bg_pearl-thin.png) repeat-y;
  background-size: 100% auto;
  width: 110%;
  height: 90%;
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-sec04::after {
    width: 100%;
    height: 95%;
  }
}
.crosstalk-sec04.field02::after {
  background: url(../img/common/bg_pearl-thin02.png) repeat-y;
  background-size: 100% auto;
  width: 110%;
  height: 100%;
}
.crosstalk-sec05 {
  padding-left: 11rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-sec05 {
    padding-left: 0;
  }
}

.crosstalk-index-mv {
  background-image: url(../img/crosstalk/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .crosstalk-index-mv {
    background-image: url(../img/crosstalk/mv_bg-sp.jpg);
  }
}
.crosstalk-index-sec::after {
  width: 110%;
  height: 80%;
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-index-sec::after {
    width: 100%;
    height: 100%;
  }
}
.crosstalk-index-sec.field01::after {
  background: url(../img/common/bg_pearl-thin.png) repeat-y;
  background-size: 100% auto;
}
.crosstalk-index-sec.field02 {
  margin-bottom: 20rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-index-sec.field02 {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
}
.crosstalk-index-sec.field02::after {
  background: url(../img/common/bg_pearl-thin02.png) repeat-y;
  background-size: 100% auto;
}
.crosstalk-index-sec__title {
  font-size: 6.4rem;
  margin-top: 2rem;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-index-sec__title {
    font-size: 2.5rem;
    margin-top: 1rem;
  }
}
.crosstalk-index-sec__item {
  position: relative;
  display: block;
}
.crosstalk-index-sec__item > figure {
  padding-left: 5rem;
  padding-bottom: 6rem;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-index-sec__item > figure {
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.crosstalk-index-sec__item > figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .crosstalk-index-sec__item > figcaption {
    padding-left: 1.5rem;
  }
}

/*========= works ===============*/
.interview-content-en {
  top: -36rem;
}
.interview-mv {
  background-size: 111rem auto;
  background-position: top right;
  height: 75rem;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .interview-mv {
    background-size: 100% auto;
    height: auto;
    align-items: flex-end;
    padding-bottom: 0;
    padding-top: 22.5rem;
  }
}
@media print, screen and (max-width: 768px) {
  .interview-mv .c-inner-1300 {
    width: 100%;
  }
}
.interview-mv.people01 {
  background-image: url(../img/works/people01/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview-mv.people01 {
    background-image: url(../img/works/people01/mv_bg-sp.jpg);
  }
}
.interview-mv.people02 {
  background-image: url(../img/works/people02/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview-mv.people02 {
    background-image: url(../img/works/people02/mv_bg-sp.jpg);
  }
}
.interview-mv.people03 {
  background-image: url(../img/works/people03/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview-mv.people03 {
    background-image: url(../img/works/people03/mv_bg-sp.jpg);
  }
}
.interview-mv.people04 {
  background-image: url(../img/works/people04/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview-mv.people04 {
    background-image: url(../img/works/people04/mv_bg-sp.jpg);
  }
}
.interview-mv.people05 {
  background-image: url(../img/works/people05/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview-mv.people05 {
    background-image: url(../img/works/people05/mv_bg-sp.jpg);
  }
}
.interview-mv.people06 {
  background-image: url(../img/works/people06/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview-mv.people06 {
    background-image: url(../img/works/people06/mv_bg-sp.jpg);
  }
}
.interview-mv.people07 {
  background-image: url(../img/works/people07/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .interview-mv.people07 {
    background-image: url(../img/works/people07/mv_bg-sp.jpg);
  }
}
.interview-mv__comment {
  font-size: 4.6rem;
  margin-top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .interview-mv__comment {
    font-size: 2.2rem;
    margin-top: 2rem;
  }
}
.interview-mv__comment > span {
  display: inline-block;
  margin-top: 1rem;
}
.interview-title {
  font-size: 3.5rem;
}
@media print, screen and (max-width: 768px) {
  .interview-title {
    font-size: 2rem;
  }
}
.interview-title > span {
  margin-bottom: 1rem;
  display: block;
}
.interview-sec02::after {
  width: 110%;
  height: 100%;
  background: url(../img/common/bg_pearl-thin.png) repeat-y;
  background-size: 100% auto;
  top: 0;
}
@media print, screen and (max-width: 768px) {
  .interview-sec02::after {
    width: 100%;
  }
}
.field02 .interview-sec02::after {
  background: url(../img/common/bg_pearl-thin02.png) repeat-y;
  background-size: 100% auto;
}
.interview-schedule {
  padding: 20.4rem 0 10rem;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule {
    padding: 9rem 1.5rem 5rem;
  }
}
.interview-schedule::after {
  width: 110%;
  height: calc(100% - 6.4rem);
  background: url(../img/common/bg_pearl-thin.png) repeat;
  background-size: 100% auto;
  bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule::after {
    width: 100%;
    height: calc(100% - 3rem);
  }
}
.field02 .interview-schedule::after {
  background: url(../img/common/bg_pearl-thin02.png) repeat-y;
  background-size: 100% auto;
}
.interview-schedule__title {
  width: 7rem;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule__title {
    width: 100%;
    font-size: 1.7rem;
    text-align: center;
  }
  .interview-schedule__title > span {
    width: 100%;
    padding: 1rem 2rem;
  }
}
.interview-schedule__wrap {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5.5rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule__wrap {
    padding: 2rem;
  }
}
.interview-schedule__en {
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 30rem;
  font-size: 15rem;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule__en {
    left: 1.5rem;
    font-size: 10rem;
  }
}
.interview-schedule__en.p-title > .en {
  line-height: 1;
}
.interview-schedule__time {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 2rem 4rem;
  width: calc(100% - 12rem);
  grid-template-columns: 1fr 1fr;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule__time {
    width: 100%;
    display: block;
    margin-top: 3rem;
  }
}
.interview-schedule__time > dl {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule__time > dl {
    margin-bottom: 1.5rem;
  }
}
.interview-schedule__time > dl:first-child > dt::after {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .interview-schedule__time > dl:nth-child(6) > dt::after {
    display: none;
  }
}
.interview-schedule__time > dl > dt {
  color: #3892ec;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  width: 5em;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .interview-schedule__time > dl > dt {
    font-size: 1.7rem;
  }
}
.field02 .interview-schedule__time > dl > dt {
  color: #8668b6;
}
.interview-schedule__time > dl > dt::after {
  z-index: 1;
  position: absolute;
  content: "";
  top: -2.5rem;
  margin: auto;
  width: 0.3rem;
  height: 2.4rem;
  background-image: linear-gradient(to top, #3892ec 0.1rem, transparent 0.4rem);
  background-size: 0.3rem 0.7rem;
  background-repeat: repeat-y;
  left: 0;
  right: 0;
}
.field02 .interview-schedule__time > dl > dt::after {
  background-image: linear-gradient(to top, #8668b6 0.1rem, transparent 0.4rem);
}
@media print, screen and (max-width: 768px) {
  .interview-schedule__time > dl > dt::after {
    width: 0.2rem;
    height: 2rem;
    background-size: 0.1rem 0.6rem;
    background-image: linear-gradient(to top, #3892ec 0.1rem, transparent 0.2rem);
    top: -1.8rem;
  }
  .field02 .interview-schedule__time > dl > dt::after {
    background-image: linear-gradient(to top, #8668b6 0.1rem, transparent 0.2rem);
  }
}
.interview-schedule__time > dl > dd {
  font-weight: 500;
  width: calc(100% - 5em);
}
@media print, screen and (max-width: 768px) {
  .interview-schedule__time > dl > dd {
    font-size: 1rem;
  }
}
.interview-offtime {
  padding: 5rem;
  margin-top: 14rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .interview-offtime {
    padding: 4rem 2rem 2rem;
    width: calc(100% - 3rem) !important;
    margin: auto;
    margin-top: 6rem;
  }
}
.interview-offtime__title {
  font-size: 3.6rem;
  width: 100%;
  padding: 1% 3% 1% 1%;
  color: #fff;
  margin-bottom: 4.4rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .interview-offtime__title {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    position: absolute;
    top: -2rem;
  }
}
.interview-offtime__title > span {
  position: relative;
  z-index: 2;
  display: block;
}
.interview-offtime__title::after {
  content: "";
  position: absolute;
  background-image: url(../img/works/people/offtime_title.png);
  background-size: cover;
  height: 100%;
  width: calc(100% + 8rem);
  left: -8rem;
  z-index: 1;
  top: 0;
}
@media print, screen and (max-width: 768px) {
  .interview-offtime__title::after {
    left: -2rem;
    width: 25rem;
  }
}
.field02 .interview-offtime__title::after {
  background-image: url(../img/works/people/offtime_title-field02.png);
}
.interview-other__title {
  font-size: 5rem;
  font-weight: 200;
  text-align: center;
  letter-spacing: 0.3em;
}
@media print, screen and (max-width: 768px) {
  .interview-other__title {
    font-size: 2.5rem;
  }
}
.interview-other__slider {
  width: 63rem;
}
@media print, screen and (max-width: 768px) {
  .interview-other__slider {
    width: 27rem;
  }
}
.interview-other .swiper-button {
  width: 5rem;
}
@media print, screen and (max-width: 768px) {
  .interview-other .swiper-button {
    width: 2.5rem;
  }
}
.interview-other__wrap {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}
@media print, screen and (max-width: 768px) {
  .interview-other__wrap {
    margin-top: 2rem;
  }
}

/*========= offices ===============*/
.offices-mv {
  background-image: url(../img/environment/offices/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .offices-mv {
    background-image: url(../img/environment/offices/mv_bg-sp.jpg);
  }
}
.offices-content-en {
  left: 9rem;
  top: 6rem;
  width: 5.5rem;
}
@media print, screen and (max-width: 768px) {
  .offices-content-en {
    position: absolute;
    top: -2rem;
    width: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
  .offices-content-en.p-title > .en {
    font-size: 3.8rem;
  }
}
.offices-tabs__list {
  align-items: flex-end;
  gap: 1rem;
}
@media print, screen and (max-width: 768px) {
  .offices-tabs__list {
    gap: 0;
  }
}
.offices-tabs__list > li {
  cursor: pointer;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  width: 49.5%;
}
@media print, screen and (max-width: 768px) {
  .offices-tabs__list > li {
    font-size: 1rem;
    padding: 1rem 0.5rem;
  }
}
.offices-tabs__list > li:nth-child(1) {
  background: linear-gradient(90deg, #cee4fa 0%, #d5f4f7 90%);
}
.offices-tabs__list > li:nth-child(1) > span {
  display: block;
  background: linear-gradient(90deg, #3892ec 0%, #31abe2 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offices-tabs__list > li:nth-child(1).is-active {
  color: #fff;
  background: linear-gradient(90deg, #3892ec 0%, #31abe2 90%);
}
.offices-tabs__list > li:nth-child(2) {
  background: linear-gradient(90deg, #ede8f4 0%, #cee4fa 90%);
}
.offices-tabs__list > li:nth-child(2) > span {
  display: block;
  background: linear-gradient(90deg, #5f7dd1 0%, #3892ec 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offices-tabs__list > li:nth-child(2).is-active {
  color: #fff;
  background: linear-gradient(90deg, #5f7dd1 0%, #3892ec 90%);
}
.offices-tabs__list > li.is-active {
  padding: 4rem 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
@media print, screen and (max-width: 768px) {
  .offices-tabs__list > li.is-active {
    padding: 1.5rem 0.5rem;
  }
}
.offices-tabs__list > li.is-active > span {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.offices-field01__bg {
  background: url(../img/environment/offices/bg_field01.png) repeat-y;
  background-size: 100% auto;
}
.offices-field02__bg {
  background: url(../img/environment/offices/bg_field02.png) repeat-y;
  background-size: 100% auto;
}

/*========= environment ===============*/
.env-mv {
  background-image: url(../img/environment/mv_bg.jpg);
}
@media print, screen and (max-width: 768px) {
  .env-mv {
    background-image: url(../img/environment/mv_bg-sp.jpg);
  }
}
@media print, screen and (max-width: 768px) {
  .env-content-en.p-title > .en {
    font-size: 3.8rem;
  }
}

/* ====================================================
component
==================================================== */
.c-inner-1600 {
  width: 160rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner-1600 {
    width: auto;
  }
}

.c-inner-1300 {
  width: 130rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner-1300 {
    width: auto;
  }
}

.c-inner-1200 {
  width: 120rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner-1200 {
    width: auto;
  }
}

.c-inner-970 {
  width: 97rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .c-inner-970 {
    width: auto;
  }
}

@media print, screen and (max-width: 768px) {
  .c-inner-sp {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.c-sidebg {
  overflow: hidden;
  position: relative;
}
.c-sidebg.animated.--right::after {
  transform: translateX(20%);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.8s;
}
@media print, screen and (max-width: 768px) {
  .c-sidebg.animated.--right::after {
    transform: translateX(0);
  }
}
.c-sidebg.animated.--left::after {
  transform: translateX(-20%);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.8s;
}
@media print, screen and (max-width: 768px) {
  .c-sidebg.animated.--left::after {
    transform: translateX(0);
  }
}
.c-sidebg.--right::after {
  transform: translateX(0%);
  right: 0;
  margin: auto;
  position: absolute;
  content: "";
  z-index: -1;
}
@media print, screen and (max-width: 768px) {
  .c-sidebg.--right::after {
    transform: translateX(100%);
  }
}
.c-sidebg.--left::after {
  transform: translateX(0%);
  left: 0;
  margin: auto;
  position: absolute;
  content: "";
  z-index: -1;
}
@media print, screen and (max-width: 768px) {
  .c-sidebg.--left::after {
    transform: translateX(-100%);
  }
}
.c-sidebg__inner {
  position: relative;
  z-index: 2;
}

.c-bgnoise--gray {
  background-color: #dee5ea;
  background-image: url(../img/common/noise.png);
  background-repeat: repeat;
  background-size: 100px;
  background-blend-mode: screen;
}

.c-linkbox {
  height: 100%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  color: #505050;
  background: linear-gradient(90deg, #b3f7f5 0%, #afe8ff 100%);
  padding: 2rem 8rem 2rem 2rem;
  position: relative;
  min-height: 8rem;
}
@media print, screen and (max-width: 768px) {
  .c-linkbox {
    font-size: 1rem;
    padding: 1rem 3rem 1rem 1rem;
    min-height: 4rem;
    height: 100%;
  }
}
.c-linkbox::after {
  position: absolute;
  content: "";
  width: 3.8rem;
  height: 3.8rem;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/common/link_arrow.svg);
}
@media print, screen and (max-width: 768px) {
  .c-linkbox::after {
    width: 2rem;
    height: 2rem;
    right: 1rem;
  }
}

.c-cover {
  width: fit-content;
  padding: 0.2% 1.5%;
}
@media print, screen and (max-width: 768px) {
  .c-cover {
    padding: 0 1.5%;
  }
}
.c-cover--wh {
  width: fit-content;
  padding: 0.2% 1.5%;
  background-color: #fff;
}
@media print, screen and (max-width: 768px) {
  .c-cover--wh {
    padding: 0 1.5%;
  }
}
.c-cover--grad {
  width: fit-content;
  padding: 0.2% 1.5%;
  color: #fff;
  background-image: url(../img/common/title_grad.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media print, screen and (max-width: 768px) {
  .c-cover--grad {
    padding: 0 1.5%;
  }
}
.c-cover--grad-blue {
  width: fit-content;
  padding: 0.2% 1.5%;
  color: #fff;
  background-image: url(../img/common/title_grad-blue.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media print, screen and (max-width: 768px) {
  .c-cover--grad-blue {
    padding: 0 1.5%;
  }
}
.c-cover--grad-purple {
  width: fit-content;
  padding: 0.2% 1.5%;
  color: #fff;
  background-image: url(../img/common/title_grad-purple.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media print, screen and (max-width: 768px) {
  .c-cover--grad-purple {
    padding: 0 1.5%;
  }
}
.c-cover--pearl {
  width: fit-content;
  padding: 0.2% 1.5%;
  background-image: url(../img/common/bg_pearl-thin.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media print, screen and (max-width: 768px) {
  .c-cover--pearl {
    padding: 0 1.5%;
  }
}
.c-cover--pearl02 {
  width: fit-content;
  padding: 0.2% 1.5%;
  background-image: url(../img/common/bg_pearl-thin02.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media print, screen and (max-width: 768px) {
  .c-cover--pearl02 {
    padding: 0 1.5%;
  }
}

.c-btline {
  font-size: 3rem;
  border-bottom: 2px solid #2bc4d8;
  padding-bottom: 0.2em;
}
@media print, screen and (max-width: 768px) {
  .c-btline {
    font-size: 1.8rem;
  }
}

.c-btline--grad {
  font-size: 3rem;
  position: relative;
  padding-bottom: 0.2em;
}
.c-btline--grad::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  content: "";
  background-image: linear-gradient(90deg, #7350aa, #0073e7, #00b8d0);
}
@media print, screen and (max-width: 768px) {
  .c-btline--grad {
    font-size: 1.8rem;
  }
}

.c-signpoint {
  padding-left: 2.5rem;
  background-image: url(../img/common/icon-triangle.svg);
  background-repeat: no-repeat;
  background-size: 1.4rem;
  background-position: left top 0.5em;
  font-size: 2rem;
}
@media print, screen and (max-width: 768px) {
  .c-signpoint {
    padding-left: 1.5rem;
    font-size: 1.3rem;
    background-size: 1rem;
  }
}

/* ====================================================
project
==================================================== */
/* -----------------------------------------------
header
----------------------------------------------- */
.p-acc__anchor {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .p-acc__anchor:hover:hover > a, .p-acc__anchor:focus-within:hover > a {
    opacity: 0.8;
  }
  .p-acc__anchor:hover .p-acc__submenu, .p-acc__anchor:focus-within .p-acc__submenu {
    opacity: 1;
    display: block;
  }
}
@media print, screen and (max-width: 768px) {
  .p-acc__anchor {
    width: 33.3%;
  }
}
.p-acc__anchor > a {
  margin-left: 0;
}
@media print, screen and (max-width: 768px) {
  .p-acc__anchor > a {
    width: 100%;
  }
}
.p-acc__anchor > a:hover {
  opacity: 1;
}
.p-acc__btn {
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-acc__btn::after {
    position: absolute;
    background-image: url(../img/common/icon-plus-w.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 1.9rem;
    height: 1.9rem;
    top: 0;
    right: 1rem;
    content: "";
    bottom: 0;
    margin: auto;
  }
  .p-acc__btn.is_open::after {
    background-image: url(../img/common/icon-minus-w.svg);
  }
}
.p-acc__submenu {
  background-color: #cce8f7;
  display: none;
  opacity: 0;
  width: 100%;
  visibility: visible;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 3;
}
@media print, screen and (max-width: 768px) {
  .p-acc__submenu {
    top: 7rem;
    opacity: 1;
  }
}
.p-acc__submenu > li > a {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 1.5rem 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-acc__submenu > li > a {
    font-size: 1.3rem;
    padding: 1.2rem 1rem;
  }
}
.p-acc__submenu > li + li {
  border-top: 1px solid #fff;
}

.p-header {
  height: 16rem;
}
@media print, screen and (max-width: 768px) {
  .p-header {
    height: 8rem;
  }
}
.fixheader .p-header {
  height: 14rem;
}
@media print, screen and (max-width: 768px) {
  .fixheader .p-header {
    height: 7rem;
  }
}
.fixheader .p-header .p-header__logo {
  background: url(../img/common/logo.svg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .fixheader .p-header .p-header__logo {
    background: url(../img/common/logo-sp.svg) no-repeat;
  }
}
.p-header.is_open .p-header__inner {
  background-color: #fff;
  z-index: 11;
  position: relative;
}
.p-header.is_open .p-header__logo {
  background: url(../img/common/logo.svg) no-repeat;
}
@media print, screen and (max-width: 768px) {
  .p-header.is_open .p-header__logo {
    background: url(../img/common/logo-sp.svg) no-repeat;
  }
}
.p-header__inner {
  display: flex;
  width: 100%;
  padding: 4.2rem 5.2rem 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__inner {
    padding: 1.4rem 1rem 1rem;
  }
}
.fixheader .p-header__inner {
  padding: 1.5rem 5.2rem 1rem;
}
@media print, screen and (max-width: 768px) {
  .fixheader .p-header__inner {
    padding: 1rem 1rem 1rem;
  }
}
.p-header__logo {
  width: 45.6rem;
  height: 10.6rem;
  display: block;
  z-index: 11;
  background: url(../img/common/logo-wh.svg) no-repeat;
  background-size: cover;
}
@media print, screen and (max-width: 768px) {
  .p-header__logo {
    width: 24rem;
    height: 5rem;
    background: url(../img/common/logo-wh-sp.svg) no-repeat;
  }
}
.p-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  z-index: 11;
}
@media print, screen and (max-width: 768px) {
  .p-header__right .p-header__cta {
    display: none;
  }
}
.p-header__btn {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 1.2rem 1rem;
  font-size: 1.8rem;
  font-weight: 300;
  margin-left: 1rem;
  width: 23rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media print, screen and (max-width: 768px) {
  .p-header__btn {
    width: 32%;
    margin-left: 0;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
.p-header__btn > .en {
  height: 1.3rem;
  display: inline-block;
  padding-left: 1rem;
}
.p-header__btn > .en > img {
  height: inherit;
}
.p-header__btn .ja {
  width: 100%;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.06em;
}
.p-header__btn.intern {
  width: 24rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__btn.intern {
    width: 36%;
  }
}
.p-header__cta {
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .p-header__cta {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.p-header__nav {
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  padding-top: 27rem;
  padding-bottom: 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav {
    padding-top: 9rem;
    overflow-y: auto;
    padding-bottom: 2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__item {
    width: 100%;
  }
}
.p-header__nav__wrap {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.01em;
}
@media print, screen and (max-width: 1200px) {
  .p-header__nav__wrap {
    width: 90%;
  }
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}
.p-header__nav__wrap .p-header__cta {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__wrap .p-header__cta {
    display: flex;
  }
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #0050aa;
  }
}
.p-header__nav__child > dl > dt {
  color: #0050aa;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dt {
    margin-bottom: 0;
  }
  .p-header__nav__child > dl > dt::after {
    position: absolute;
    content: "";
    background: url(../img/common/header_acc.svg) no-repeat;
    width: 4rem;
    height: 4rem;
    background-size: cover;
    right: 0;
    top: 1rem;
  }
}
.p-header__nav__child > dl > dt > a {
  color: #0050aa;
}
.p-header__nav__child > dl > dt.is_open::after {
  transform: rotate(60deg);
}
.p-header__nav__child > dl > dt .en {
  font-size: 2.6rem;
  font-weight: 400;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dt .en {
    font-size: 2rem;
  }
}
.p-header__nav__child > dl > dt .ja {
  font-size: 1.7rem;
  font-weight: 400;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dt .ja {
    font-size: 1.4rem;
  }
}
.p-header__nav__child > dl > dd {
  display: block;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dd {
    margin-left: 0;
    display: none;
  }
}
.p-header__nav__child > dl > dd > ul > li {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: 400;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dd > ul > li {
    font-size: 1.3rem;
  }
}
.p-header__nav__child > dl > dd > ul > li > a,
.p-header__nav__child > dl > dd > ul > li > p {
  display: block;
}
.p-header__nav__child > dl > dd > ul > li > ul {
  padding-left: 1rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 1rem;
  margin-left: 1em;
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child > dl > dd > ul > li > ul {
    margin-left: 0;
  }
}
.p-header__nav__child > dl > dd > ul > li > ul > li {
  margin-right: 2rem;
}
.p-header__nav__child > dl > dd > ul > li > ul > li > a {
  display: block;
}
.p-header__nav__child + .p-header__nav__child {
  margin-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__child + .p-header__nav__child {
    margin-top: 2rem;
  }
}
.p-header__nav__side {
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__side {
    margin-top: 0;
    width: 11.7rem;
  }
}
.p-header__nav__side > li > a {
  font-size: 1.7rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__side > li > a {
    font-size: 1.1rem;
  }
}
.p-header__nav__side > li + li {
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-header__nav__side > li + li {
    margin-top: 1rem;
  }
}
.p-header__nav.is_open {
  display: block;
  overflow-y: auto;
}

.p-hamburger {
  background-color: transparent;
  display: block;
  cursor: pointer;
  width: 6.7rem;
  height: 7rem;
  margin-left: 1rem;
  z-index: 99999;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger {
    width: 5rem;
    height: 4rem;
  }
}
.p-hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0%;
  margin: auto;
  height: 2px;
  border-radius: 2px;
  width: 4rem;
  background: #fff;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger span {
    width: 2.5rem;
  }
}
.fixheader .p-hamburger span {
  background: #1b1b1b;
}
.p-hamburger span:nth-of-type(1) {
  top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger span:nth-of-type(1) {
    top: 1rem;
  }
}
.p-hamburger span:nth-of-type(2) {
  top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger span:nth-of-type(2) {
    top: 2rem;
  }
}
.p-hamburger span:nth-of-type(3) {
  top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .p-hamburger span:nth-of-type(3) {
    top: 3rem;
  }
}
.p-hamburger.is_open span {
  background: #1b1b1b;
}
.p-hamburger.is_open span:nth-of-type(1) {
  top: 3rem;
  transform: translateY(0) rotate(-135deg);
}
@media print, screen and (max-width: 768px) {
  .p-hamburger.is_open span:nth-of-type(1) {
    top: 2rem;
  }
}
.p-hamburger.is_open span:nth-of-type(2) {
  opacity: 0;
}
.p-hamburger.is_open span:nth-of-type(3) {
  top: 3rem;
  transform: translateY(0) rotate(135deg);
}
@media print, screen and (max-width: 768px) {
  .p-hamburger.is_open span:nth-of-type(3) {
    top: 2rem;
  }
}

/* -----------------------------------------------
p-footer
----------------------------------------------- */
.p-footer {
  padding-top: 9rem;
  padding-bottom: 0;
}
@media print, screen and (max-width: 768px) {
  .p-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    background: url(../img/common/footer_bg.png) repeat;
  }
}
.p-footer__wrap {
  display: flex;
  justify-content: space-between;
}
@media print, screen and (max-width: 1200px) {
  .p-footer__wrap {
    width: 90%;
  }
}
@media print, screen and (max-width: 768px) {
  .p-footer__wrap {
    display: none;
  }
}
.p-footer__copy {
  background: url(../img/common/footer_bg.png) repeat;
  background-size: 100% auto;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 9.7rem;
  color: #fff;
  padding: 3rem 0;
}
@media print, screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: 0.8rem;
    margin-top: 0;
    background: none;
    padding: 0;
  }
}
.p-footer__side {
  width: 16rem;
}
.p-footer__side > a {
  display: block;
}
.p-footer__main {
  width: calc(100% - 16rem - 7rem);
  display: flex;
  justify-content: space-between;
}
.p-footer__nav {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  padding-top: 27rem;
  padding-bottom: 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-footer__nav {
    display: none;
  }
}
.p-footer__nav__wrap {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.01em;
}
.p-footer__nav__child > dl > dt {
  color: #0050aa;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}
.p-footer__nav__child > dl > dt > a {
  color: #0050aa;
}
.p-footer__nav__child > dl > dt .en {
  font-size: 2.6rem;
  font-weight: 400;
  display: block;
}
.p-footer__nav__child > dl > dt .ja {
  font-size: 1.7rem;
  font-weight: 400;
  display: block;
}
.p-footer__nav__child > dl > dd {
  display: block;
  font-weight: 500;
}
.p-footer__nav__child > dl > dd > ul > li {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: 400;
}
.p-footer__nav__child > dl > dd > ul > li > a,
.p-footer__nav__child > dl > dd > ul > li > p {
  display: block;
}
.p-footer__nav__child > dl > dd > ul > li > ul {
  padding-left: 1rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 1rem;
  margin-left: 1em;
  margin-top: 1rem;
}
.p-footer__nav__child > dl > dd > ul > li > ul > li {
  margin-right: 2rem;
}
.p-footer__nav__child > dl > dd > ul > li > ul > li > a {
  display: block;
}
.p-footer__nav__child + .p-footer__nav__child {
  margin-top: 5rem;
}
.p-footer__nav__side {
  margin-top: 6rem;
}
.p-footer__nav__side > li > a {
  font-size: 1.7rem;
}
.p-footer__nav__side > li + li {
  margin-top: 1rem;
}

/* -----------------------------------------------
p-pagetop
----------------------------------------------- */
.p-pagetop {
  width: 6rem;
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}
@media print, screen and (max-width: 768px) {
  .p-pagetop {
    width: 3rem;
    bottom: 7rem !important;
    right: 1rem;
    position: absolute;
  }
}
.p-pagetop.UpMove {
  display: block;
}
.p-pagetop.DownMove {
  display: none;
}

@media print, screen and (max-width: 768px) {
  .top .p-pagetop {
    display: none;
  }
}
@media print, screen and (max-width: 768px) {
  .top .p-pagetop.UpMove {
    display: none;
  }
}

/* ====================================================
table
==================================================== */
th,
td {
  background-color: #fff;
}

.p-table th,
.p-table td {
  border: 1px solid #616161;
}
.p-table th.border-wh,
.p-table td.border-wh {
  border: 1px solid #fff;
}
.p-table th.border-gra-b,
.p-table td.border-gra-b {
  border-bottom: 1px solid #616161;
}
@media print, screen and (max-width: 768px) {
  .p-table {
    letter-spacing: 0.12em;
  }
}
.p-table thead th {
  background-color: #787878;
  color: #fff;
}
.p-table thead th.nocel {
  background-color: #fff;
  border: none;
}
.p-table thead th.bg-lightblue {
  background-color: #2bc4d8;
}
.p-table .bg-blue {
  background-color: #caf0f5;
}

/* -----------------------------------------------
part
----------------------------------------------- */
.p-accbox {
  background-color: #fff;
  padding: 4.2rem 7.6rem;
}
@media print, screen and (max-width: 768px) {
  .p-accbox {
    padding: 1.5rem 1.5rem;
  }
}
.p-accbox__title {
  font-size: 5rem;
  font-weight: 600;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .p-accbox__title {
    font-size: 1.8rem;
  }
}
.p-accbox__btnarea {
  margin-left: auto;
  display: flex;
  gap: 2%;
}
@media print, screen and (max-width: 768px) {
  .p-accbox__btnarea {
    width: 100%;
    margin-top: 1rem;
  }
}
.p-accbox__btnarea > a {
  padding: 1.5rem;
  background-repeat: repeat-y;
  background-size: 100% auto;
  font-size: 1.2rem;
  display: block;
  width: 15rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-accbox__btnarea > a {
    padding: 0.5rem;
    font-size: 0.8rem;
    width: 24%;
    letter-spacing: 0;
  }
}
.p-accbox__btnarea > a:nth-child(1) {
  background-image: url(../img/common/acc_btn_bg01.png);
}
.p-accbox__btnarea > a:nth-child(2) {
  background-image: url(../img/common/acc_btn_bg02.png);
}
.p-accbox__btnarea > a:nth-child(3) {
  background-image: url(../img/common/acc_btn_bg03.png);
}
.p-accbox__btnarea > a:nth-child(4) {
  background-image: url(../img/common/acc_btn_bg04.png);
}
.p-accbox__btnarea > a::after {
  position: absolute;
  width: 1.8rem;
  height: 1rem;
  content: "";
  background-image: url(../img/common/acc_btn_arow.svg);
  bottom: 1.4rem;
  right: 1.4rem;
}
@media print, screen and (max-width: 768px) {
  .p-accbox__btnarea > a::after {
    bottom: 0.5rem;
    right: 0.5rem;
    width: 0.8rem;
    height: 0.5rem;
  }
}
.p-accbox > dt {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .p-accbox > dt {
    padding-bottom: 1rem;
    padding-right: 0;
  }
}
.p-accbox > dt::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  content: "";
  background-image: linear-gradient(90deg, #7350aa, #0073e7, #00b8d0);
}
.p-accbox > dt::before {
  position: absolute;
  content: "";
  width: 6rem;
  height: 6rem;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/common/acc_arrow.svg);
}
@media print, screen and (max-width: 768px) {
  .p-accbox > dt::before {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    top: 0.5rem;
    bottom: auto;
  }
}
.p-accbox > dt.is_open::before {
  transform: rotate(60deg);
}
.p-accbox > dd {
  display: none;
}

.p-title > .en {
  font-size: 13rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .p-title > .en {
    font-size: 5rem;
    letter-spacing: 0.2em;
    line-height: 1.1;
  }
}
.p-title > .ja {
  opacity: 0;
  font-size: 4rem;
  letter-spacing: 0.2em;
  transition: opacity 500ms linear 1600ms;
}
@media print, screen and (max-width: 768px) {
  .p-title > .ja {
    font-size: 2rem;
    transition: opacity 500ms linear 1200ms;
  }
}
.p-title > .ja > span {
  display: inline-block;
  position: relative;
}
.p-title > .ja > span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-image: linear-gradient(90deg, #00e9e7, #00c7ff);
}
.p-title.animated > .ja {
  opacity: 1;
}

.p-card {
  background-color: #fff;
  padding: 3rem 3.5rem;
  letter-spacing: 0.05em;
}
@media print, screen and (max-width: 768px) {
  .p-card {
    padding: 2rem 2rem;
  }
}

.p-display-table {
  display: table;
}
.p-display-table .row {
  display: table-row;
}
.p-display-table .cell {
  display: table-cell;
}

.u-fl {
  display: flex;
  flex-wrap: wrap;
}
.u-fl.space-between {
  justify-content: space-between;
}
.u-fl.align-end {
  align-items: flex-end;
}
.u-fl.align-start {
  align-items: flex-start;
}
.u-fl.align-center {
  align-items: center;
}
.u-fl.align-stretch {
  align-items: stretch;
}

.od2 {
  order: 2;
}

@media print, screen and (max-width: 768px) {
  .od0-sp {
    order: 0;
  }

  .od2-sp {
    order: 2;
  }
}
.u-fl--col2,
.u-fl--col3,
.u-fl--col4,
.u-fl--col5 {
  flex-wrap: wrap;
}

.u-fl--col1 > * {
  width: 100%;
}

.u-fl--col2 > * {
  width: 50%;
}

.u-fl--col3 > * {
  width: calc(100% / 3);
}

.u-fl--col4 > * {
  width: 25%;
}

.u-fl--col5 > * {
  width: 20%;
}

.u-fl--col2.gap {
  gap: 6%;
}

.u-fl--col3.gap {
  gap: 4.5%;
}

.u-fl--col4.gap {
  gap: 2%;
}

.u-fl--col5.gap {
  gap: 1%;
}

.u-fl--col2.gap > * {
  width: 47%;
  margin-bottom: 4%;
}

.u-fl--col3.gap > * {
  width: 30.33%;
  margin-bottom: 5%;
}

.u-fl--col4.gap > * {
  width: 23.5%;
  margin-bottom: 4%;
}

.u-fl--col5.gap > * {
  width: 19.2%;
  margin-bottom: 3%;
}

.u-fl--col2.gap.mt0 > *,
.u-fl--col3.gap.mt0 > *,
.u-fl--col4.gap.mt0 > *,
.u-fl--col5.gap.mt0 > * {
  margin-bottom: 0;
}

@media print, screen and (min-width: 768px) {
  .u-fl--col2.bet-s.gap {
    gap: 3%;
  }

  .u-fl--col2.bet-s.gap > * {
    width: 48.5%;
    margin-bottom: 2.5%;
  }

  .u-fl--col3.bet-s.gap {
    gap: 3%;
  }

  .u-fl--col3.bet-s.gap > * {
    width: 31.3%;
    margin-bottom: 2.5%;
  }
}
@media print, screen and (max-width: 768px) {
  .u-fl--col2.u-fl__sp-block > *,
  .u-fl--col3.u-fl__sp-block > *,
  .u-fl--col4.u-fl__sp-block > *,
  .u-fl--col5.u-fl__sp-block > * {
    width: 100%;
  }

  .u-fl--col2.gap.u-fl__sp-block > *,
  .u-fl--col3.gap.u-fl__sp-block > *,
  .u-fl--col4.gap.u-fl__sp-block > *,
  .u-fl--col5.gap.u-fl__sp-block > * {
    margin-bottom: 4%;
  }

  .u-fl--col2.gap.u-fl__sp-block > *:last-child,
  .u-fl--col3.gap.u-fl__sp-block > *:last-child,
  .u-fl--col4.gap.u-fl__sp-block > *:last-child,
  .u-fl--col5.gap.u-fl__sp-block > *:last-child {
    margin-bottom: 0;
  }

  .u-fl__sp-col3 > * {
    width: calc(100% / 3);
  }

  .u-fl__sp-col2 > * {
    width: 50%;
  }

  .u-fl__sp-col2.gap {
    gap: 4%;
  }

  .u-fl__sp-col3.gap {
    gap: 3%;
  }

  .u-fl__sp-col2.gap > * {
    width: 48%;
    margin-bottom: 4%;
  }

  .u-fl__sp-col3.gap > * {
    width: 31.33%;
    margin-bottom: 3%;
  }

  .u-fl--col2.gap.nogap-sp,
  .u-fl--col3.gap.nogap-sp,
  .u-fl--col4.gap.nogap-sp,
  .u-fl--col5.gap.nogap-sp {
    gap: 0;
  }

  .u-fl--col2.gap.nogap-sp > * {
    width: 50%;
    margin-bottom: 0;
  }

  .u-fl--col3.gap.nogap-sp > * {
    width: calc(100% / 3);
    margin-bottom: 0;
  }

  .u-fl--col4.gap.nogap-sp > * {
    width: 25%;
    margin-bottom: 0;
  }

  .u-fl--col5.gap.nogap-sp > * {
    width: 20%;
    margin-bottom: 0;
  }
}
.u-asterisk li {
  padding-left: 1em;
  text-indent: -1em;
}
@media print, screen and (max-width: 768px) {
  .u-asterisk {
    font-size: 1rem;
  }
}

.u-block {
  display: block;
}

.u-text-bold {
  font-weight: 600;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

@media print, screen and (max-width: 768px) {
  .u-text-center-sp {
    text-align: center;
  }
}
.u-text-right {
  text-align: right;
}

a.u-no-opacity {
  opacity: 1;
}

.u-indent {
  text-indent: -1em;
}
.u-indent > li {
  padding-left: 1em;
}

.u-font-jost {
  font-family: "Jost", sans-serif;
}

.u-font-serif {
  font-family: "Shippori Mincho", sans-serif;
}

/* ====================================================
padding
==================================================== */
.u-plr40 {
  padding-right: 4rem;
  padding-left: 4rem;
}

.u-plr10 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.u-plr20 {
  padding-right: 2rem;
  padding-left: 2rem;
}

.u-pl70 {
  padding-left: 7rem;
}

.u-pr70 {
  padding-right: 7rem;
}

.u-pb80 {
  padding-bottom: 8rem;
}

.u-pb100 {
  padding-bottom: 10rem;
}

.u-pb160 {
  padding-bottom: 16rem;
}

.u-ptb0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.u-ptb5 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.u-ptb10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.u-ptb20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.u-ptb80 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.u-ptb100 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.u-ptb160 {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

@media print, screen and (max-width: 768px) {
  .u-pb0-sp {
    padding-top: 0;
    padding-bottom: 0;
  }

  .u-pt80-sp {
    padding-top: 8rem;
  }

  .u-pb0-sp {
    padding-bottom: 0;
  }

  .u-pb40-sp {
    padding-bottom: 4rem;
  }

  .u-pb60-sp {
    padding-bottom: 6rem;
  }

  .u-pt40-sp {
    padding-top: 4rem;
  }

  .u-plr5-sp {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .u-plr10-sp {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .u-pl0-sp {
    padding-left: 0;
  }

  .u-pl15-sp {
    padding-left: 1.5rem;
  }

  .u-pr15-sp {
    padding-right: 1.5rem;
  }

  .u-ptb10-sp {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .u-ptb40-sp {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .u-ptb60-sp {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .u-ptb80-sp {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .u-pr0-sp {
    padding-right: 0;
  }

  .u-pr10-sp {
    padding-left: 1rem;
  }
}
/* ====================================================
margin
==================================================== */
.u-mt10 {
  margin-top: 1rem;
}

.u-mt20 {
  margin-top: 2rem;
}

.u-mt30 {
  margin-top: 3rem;
}

.u-mt40 {
  margin-top: 4rem;
}

.u-mt50 {
  margin-top: 5rem;
}

.u-mt60 {
  margin-top: 6rem;
}

.u-mt80 {
  margin-top: 8rem;
}

.u-mt70 {
  margin-top: 7rem;
}

.u-mt90 {
  margin-top: 9rem;
}

.u-mt100 {
  margin-top: 10rem;
}

.u-mt120 {
  margin-top: 12rem;
}

.u-mt140 {
  margin-top: 14rem;
}

.u-mb10 {
  margin-bottom: 1rem;
}

.u-mb160 {
  margin-bottom: 16rem;
}

.u-ml20 {
  margin-left: 2rem;
}

.u-ml30 {
  margin-left: 3rem;
}

.u-mtb90 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.u-mtb160 {
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.u-mlr-auto {
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 768px) {
  .u-mt0-sp {
    margin-top: 0rem;
  }

  .u-mt10-sp {
    margin-top: 1rem;
  }

  .u-mt15-sp {
    margin-top: 1.5rem;
  }

  .u-mt20-sp {
    margin-top: 2rem;
  }

  .u-mt25-sp {
    margin-top: 2.5rem;
  }

  .u-mt30-sp {
    margin-top: 3rem;
  }

  .u-mt40-sp {
    margin-top: 4rem;
  }

  .u-mt50-sp {
    margin-top: 5rem;
  }

  .u-mt60-sp {
    margin-top: 6rem;
  }

  .u-mb40-sp {
    margin-bottom: 4rem;
  }

  .u-ml10-sp {
    margin-left: 1rem;
  }

  .u-ml0-sp {
    margin-left: 0;
  }

  .u-mtb50-sp {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .u-mlr-auto-sp {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ====================================================
width
==================================================== */
.u-w15per {
  width: 15%;
}

.u-w20per {
  width: 20%;
}

.u-w30per {
  width: 30%;
}

.u-w35per {
  width: 35%;
}

.u-w40per {
  width: 40%;
}

.u-w47per {
  width: 47%;
}

.u-w48per {
  width: 48%;
}

.u-w50per {
  width: 50%;
}

.u-w60per {
  width: 60%;
}

.u-w65per {
  width: 65%;
}

.u-w70per {
  width: 70%;
}

.u-w75per {
  width: 75%;
}

.u-w80per {
  width: 80%;
}

.u-w85per {
  width: 85%;
}

.u-w90per {
  width: 90%;
}

.u-w100per {
  width: 100%;
}

.u-w550 {
  width: 55rem;
}

.u-w600 {
  width: 60rem;
}

.u-w700 {
  width: 70rem;
}

.u-w940 {
  width: 94rem;
}

.u-w1000 {
  width: 100rem;
}

.u-w1030 {
  width: 103rem;
}

@media print, screen and (max-width: 768px) {
  .u-w20per-sp {
    width: 20%;
  }

  .u-w30per-sp {
    width: 30%;
  }

  .u-w50per-sp {
    width: 50%;
  }

  .u-w70per-sp {
    width: 70%;
  }

  .u-w80per-sp {
    width: 80%;
  }

  .u-w90per-sp {
    width: 90%;
  }

  .u-w100per-sp {
    width: 100%;
  }

  .u-full-sp {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
}
/* ====================================================
font-size
==================================================== */
.u-append {
  font-size: 0.7em;
}

.u-fs14 {
  font-size: 1.4rem;
}

.u-fs22 {
  font-size: 2.2rem;
}

.u-fs25 {
  font-size: 2.5rem;
}

.u-fs26 {
  font-size: 2.6rem;
}

.u-fs30 {
  font-size: 3rem;
}

.u-fs32 {
  font-size: 3.2rem;
}

.u-fs35 {
  font-size: 3.5rem;
}

@media print, screen and (max-width: 768px) {
  .u-fs10-sp {
    font-size: 1rem;
  }

  .u-fs11-sp {
    font-size: 1.1rem;
  }

  .u-fs13-sp {
    font-size: 1.3rem;
  }

  .u-fs14-sp {
    font-size: 1.4rem;
  }

  .u-fs16-sp {
    font-size: 1.6rem;
  }

  .u-fs17-sp {
    font-size: 1.7rem;
  }

  .u-fs22-sp {
    font-size: 2.2rem;
  }
}
/* ====================================================
line-height
==================================================== */
.u-lihe20 {
  line-height: 2em;
}

.u-lihe22 {
  line-height: 2.2em;
}

/* ====================================================
color
==================================================== */
.u-color-wh {
  color: #fff;
}

.u-color-bl {
  color: #151515;
}

.u-color-gleamblue {
  color: #2bc4d8;
}

.u-color-grandient {
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-color-grandient02 {
  background: linear-gradient(90deg, #7350aa 0%, #0073e7 30%, #00b8d0 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-color-grandient--blue {
  background: linear-gradient(90deg, #3892ec 0%, #2bc4d8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-color-grandient--purple {
  background: linear-gradient(90deg, #8668b6 0%, #3892ec 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-color-lightblue {
  color: #008cd5;
}

.u-color-purple {
  color: #8e50ad;
}

.u-color-gray {
  color: #959595 !important;
}

.u-bg-lightblue {
  background-color: #008cd5;
}

.u-bg-blue {
  background-color: #0050aa;
}

.u-bg-purple {
  background-color: #8e50ad;
}

.u-bg-gradient {
  background-image: linear-gradient(180deg, #5adeff, #00c6ff);
}

.u-bg-pearl {
  background: url(../img/common/bg_pearl.png) repeat;
  background-size: 100% auto;
}

.u-bg-pearl-thin {
  background: url(../img/common/bg_pearl-thin.png) repeat;
  background-size: 100% auto;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

.u-bg-pearl-thin02 {
  background: url(../img/common/bg_pearl-thin02.png) repeat;
  background-size: 100% auto;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

.u-bg-transparent {
  background-color: transparent;
}
