@charset "UTF-8";
/* mixin
================================================================== */
/* Design parts
---------------------------------------------------------------- */
/* base
================================================================== */
:root {
  --black: #222831;
  --white: #fff;
  --main: #1087cc;
  --l-main: #258fcc;
  --gray: #cccccc;
  --base: #f5f5f5;
  --header-h: 8rem;
  --br-max: 10rem;
  --br-sec: 8rem;
  --br-l: 3rem;
  --br-m: 2rem;
  --br-s: 1.2rem;
  --mg-80: 8rem;
  --mg-60: 6rem;
  --mg-50: 5rem;
  --mg-40: 4rem;
  --mg-30: 3rem;
  --fs-36: 3.6rem;
  --fs-32: 3.2rem;
  --fs-28: 2.8rem;
  --fs-26: 2.6rem;
  --fs-24: 2.4rem;
  --fs-22: 2.2rem;
  --fs-20: 2rem;
  --fs-18: 1.8rem;
  --fs-16: 1.6rem;
  --fs-15: 1.5rem;
  --b-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
}

@media only screen and (max-width: 1024px) {
  :root {
    --fs-36: 3.2rem;
    --fs-32: 2.8rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --header-h: 6rem;
    --br-sec: 3rem;
    --br-l: 2rem;
    --br-m: 1.6rem;
    --br-s: 0.8rem;
    --mg-80: 6rem;
    --mg-60: 5rem;
    --mg-50: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
    --fs-36: 2.6rem;
    --fs-32: 2.6rem;
    --fs-28: 2.2rem;
    --fs-26: 2.4rem;
    --fs-24: 2.1rem;
    --fs-22: 1.8rem;
    --fs-20: 1.8rem;
    --fs-18: 1.5rem;
    --fs-16: 1.5rem;
    --fs-15: 1.4rem;
  }
}
/* common
---------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  color: var(--black);
  width: 100%;
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  body {
    line-height: 1.6;
  }
}
.d-i {
  display: inline;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

.text-left {
  text-align: left !important;
}

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

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

.text-just {
  text-align: justify;
}

.text-tate {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/* PC,SP表示
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .d-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .d-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 768px), (min-width: 1025px) {
  .d-tb-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 429px) {
  .d-minsp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner {
  margin-inline: auto;
  max-width: calc(1000px + 12%);
  padding: 12rem 6%;
  width: 100%;
}
.inner-11 {
  max-width: calc(1100px + 12%);
}
.inner-12 {
  max-width: calc(1200px + 12%);
}
.inner-13 {
  max-width: calc(1300px + 12%);
}
.inner-np {
  padding: 0 6%;
}
@media (max-width: 767px) {
  .inner {
    padding: 8rem 6%;
  }
}

/* flex utilities */
.flex {
  display: flex;
  align-items: flex-start;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-x-center {
  display: flex;
  justify-content: center;
}

.flex-y-center {
  display: flex;
  align-items: center;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-between {
  justify-content: space-between;
}

/* animation
--------------------------------------------------------------- */
@-webkit-keyframes box-slide-left {
  0% {
    opacity: 0;
    transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes box-slide-left {
  0% {
    opacity: 0;
    transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes box-slide-right {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes box-slide-right {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* base end
================================================================== */
/* parts
================================================================== */
.sec-ttl {
  margin-bottom: var(--mg-60);
}
@media (max-width: 767px) {
  .sec-ttl {
    margin-bottom: 3rem;
  }
}
.sec-ttl-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  position: relative;
  font-size: var(--fs-28);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--main);
  padding-left: 0.8em;
  margin-bottom: 1rem;
}
.sec-ttl-en::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.4em;
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  background: currentColor;
}
.sec-ttl-jp {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .sec-ttl-jp {
    font-size: 3.6rem;
  }
}
.sec-ttl-sub {
  display: block;
  position: absolute;
  z-index: -1;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .sec-ttl-sub {
    font-size: 24rem;
  }
}
@media (max-width: 767px) {
  .sec-ttl-sub {
    font-size: 14rem;
    top: 0;
  }
}

.btn {
  position: relative;
  display: block;
  padding: 3rem 0;
  padding-left: 2.8em;
  border-bottom: 1px solid var(--gray);
  line-height: 1.4;
  font-size: var(--fs-28);
  font-weight: 500;
}
@media (max-width: 767px) {
  .btn {
    padding: 2rem 0;
    font-size: 2rem;
    padding-left: 3em;
  }
}
.btn::after {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: center left;
  width: 100%;
  height: 1.5px;
  background-color: var(--main);
}
.btn:hover {
  opacity: 1;
  color: var(--main);
}
.btn:hover::after {
  transform: scaleX(1);
}

.arrow {
  display: block;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  display: block;
  width: 1.8em;
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  background: var(--main);
}
.arrow::before {
  content: "";
  display: block;
  position: absolute;
  transition: right 0.3s ease;
  top: 50%;
  left: 50%;
  width: 0.7em;
  aspect-ratio: 17/14;
  margin: auto;
  -webkit-mask-image: url("../img/arrow.svg");
          mask-image: url("../img/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--white);
  transform: translate(-50%, -50%) rotate(0);
}

.textup-wrap {
  display: block;
  overflow: hidden;
  opacity: 0;
}
.textup-wrap.is-inview {
  opacity: 1;
}
.textup-wrap.is-inview .textup-inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.textup-inn {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 2rem 3rem;
}
@media (max-width: 1280px) {
  .header {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 1024px) {
  .header {
    position: absolute;
  }
}
.header-logo {
  display: inline-block;
  height: 4.4rem;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 1280px) {
  .header-logo {
    height: 4rem;
  }
}
@media (max-width: 767px) {
  .header-logo {
    height: auto;
    width: min(40rem, 80%);
  }
  .header-logo img {
    height: auto;
    width: 100%;
  }
}
.header-nav-btn {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
.header-nav-btn .btn {
  height: calc(var(--header-h) * 0.7);
  display: grid;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 18rem !important;
  padding: 0 1em 0 1.5em;
  border-radius: var(--br-max) 0 0 var(--br-max);
  font-size: var(--fs-15) !important;
}
@media (max-width: 1280px) {
  .header-nav-btn .btn {
    min-width: unset !important;
  }
}
.header-nav-btn .btn::after {
  display: none !important;
}
@media (max-width: 1024px) {
  .header-nav-btn {
    display: none;
  }
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-menu {
  position: relative;
  width: 56px;
  height: var(--header-h);
  cursor: pointer;
  z-index: 9999;
  margin-left: 5px;
}
@media (max-width: 1024px) {
  .hamburger-menu {
    width: 50px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .hamburger-menu {
    position: fixed;
    top: 0;
    right: 1.5rem;
  }
}
.hamburger-menu::after {
  transition: 0.3s ease;
  position: absolute;
  content: "MENU";
  color: var(--black);
  left: 0%;
  bottom: 14%;
  width: 105%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 1024px) {
  .hamburger-menu::after {
    bottom: 10%;
    font-size: 1.3rem;
  }
}

.bar {
  transition: 0.3s ease;
  position: absolute;
  width: 90%;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
}
.bar--top {
  top: 26%;
}
.bar--bottom {
  top: 42%;
}

.js-close::after {
  content: "CLOSE";
}
.js-close .bar--top {
  top: 36%;
  transform: translateX(-50%) rotate(30deg);
}
.js-close .bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.js-close .bar--bottom {
  top: 36%;
  transform: translateX(-50%) rotate(-30deg);
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.hamburger-menu:hover .bar {
  background-color: var(--main);
}
.hamburger-menu:hover::after {
  color: var(--main);
}

/* burger inner
---------------------------------------------------------------- */
.burger-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -40rem;
  width: 38rem;
  height: 100%;
  background-color: var(--base);
  padding: 6rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.5s;
}
@media (max-width: 428px) {
  .burger-nav {
    width: 100vw;
    right: -100vw;
    padding: 5.5rem 2rem;
  }
}
.burger-nav .header-menu-list {
  margin-bottom: 3rem;
}
.burger-nav .header-menu-list .btn {
  line-height: 1.4;
  font-size: var(--fs-16);
  padding: 2rem 0;
  padding-left: 3.4em;
}
.burger-nav .header-menu-list .btn-burger {
  color: var(--main);
}
.burger-nav .header-menu-list .btn-burger .arrow {
  background: var(--white);
}
.burger-nav .header-menu-list .btn-burger .arrow::before {
  background: var(--main);
}
.burger-nav.js-active {
  right: 0;
}
.burger-nav-btn .btn {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
  padding: 1.4em 0;
  font-size: var(--fs-16) !important;
}

.burger-mask {
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* main
================================================================== */
/* mv
---------------------------------------------------------------- */
.mv {
  position: relative;
  margin-top: var(--header-h);
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 20rem;
  background: var(--base);
}
.mv-copy {
  margin-inline: auto;
  max-width: calc(1400px + 8%);
  padding: 5% 4%;
  width: 100%;
  font-size: 8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (max-width: 1280px) {
  .mv-copy {
    font-size: 6.5vw;
  }
}
@media (max-width: 767px) {
  .mv-copy {
    padding: 4% 4% 8%;
    line-height: 1.3;
    font-size: 10vw;
  }
}
.mv-copy-sub {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.5em;
  letter-spacing: 0.08em;
  color: var(--main);
  margin-top: 0.8em;
  padding-left: 0.1em;
}
@media (max-width: 767px) {
  .mv-copy-sub {
    margin-top: 0.4em;
  }
}
.mv-img {
  position: relative;
  z-index: 0;
  margin-right: auto;
  width: 92%;
  aspect-ratio: 2/1;
}
@media (max-width: 1600px) {
  .mv-img {
    width: min(50% + 60rem, 90%);
  }
}
.mv-scroll {
  display: block;
  position: absolute;
  z-index: 1;
  top: -12.8571428571%;
  right: -6.4285714286%;
  width: 12.8571428571%;
}
@media (max-width: 767px) {
  .mv-scroll {
    top: -6%;
    right: -6%;
    width: 22%;
  }
}
.mv-scroll img {
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.mv-scroll::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  aspect-ratio: 5/6;
  margin: auto;
  background: url("../img/mv/arrow.svg") center no-repeat;
  background-size: 100%;
}

.swiper-mv-wrap .swiper-slide img {
  width: 100%;
}

/* ズームしながらフェード */
.swiper-mv .swiper-slide-active img,
.swiper-mv .swiper-slide-duplicate-active img,
.swiper-mv .swiper-slide-prev img {
  -webkit-animation: zoom 10s linear 0s 1 normal both;
          animation: zoom 10s linear 0s 1 normal both;
}

@-webkit-keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* about
---------------------------------------------------------------- */
.about {
  position: relative;
  background: var(--base);
  z-index: 0;
}
.about .sec-ttl-sub {
  opacity: 0.8;
  top: 10rem;
  left: -0.05em;
}
@media (max-width: 767px) {
  .about .sec-ttl-sub {
    top: 3rem;
    left: 20%;
  }
}
.about-wrap {
  gap: 6rem;
}
@media (max-width: 1024px) {
  .about-wrap {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .about-wrap {
    flex-direction: column;
  }
}
.about-text {
  flex-basis: 50%;
}
.about-text p {
  font-size: var(--fs-18);
  text-align: justify;
  line-height: 2;
}
.about-text p + p {
  margin-top: 1.2em;
}
.about-img {
  flex: 1;
}

/* job
---------------------------------------------------------------- */
.job {
  position: relative;
}
.job::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 100%;
  height: 20rem;
  background: var(--base);
}
.job::after {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 94%;
  height: 40%;
  background: var(--l-main);
}
@media (max-width: 1600px) {
  .job::after {
    width: min(50% + 70rem, 97%);
  }
}
@media (max-width: 767px) {
  .job::after {
    width: 100%;
    height: 22%;
  }
}
.job.is-inview::after {
  -webkit-animation-name: box-slide-left;
          animation-name: box-slide-left;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}
.job .sec-ttl {
  margin-bottom: 2rem;
  color: var(--white);
}
.job .sec-ttl-en {
  color: var(--white);
}
.job .sec-ttl-text {
  font-size: var(--fs-18);
  margin-bottom: var(--mg-60);
  color: var(--white);
}
@media (max-width: 767px) {
  .job .sec-ttl-text {
    margin-bottom: 3rem;
  }
}
.job .sec-ttl-sub {
  color: var(--white);
  opacity: 0.1;
  top: 12rem;
  left: calc(50% - 0.2em);
}
@media (max-width: 767px) {
  .job .sec-ttl-sub {
    top: 3rem;
  }
}
.job-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 4rem;
}
@media (max-width: 1024px) {
  .job-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .job-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .job-wrap {
    gap: 4rem 3rem;
  }
}
.job-item {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.job-item img {
  height: auto;
  transition: transform 0.3s ease;
}
.job-item:hover img {
  transform: scale(1.07);
}
.job-item:hover {
  opacity: 1;
}
.job-item:hover .btn {
  color: var(--main);
}
.job-item:hover .btn::after {
  transform: scaleX(1);
}
.job-item-img {
  overflow: hidden;
}

/* modal
---------------------------------------------------------------- */
.remodal-close-top {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  transition: 0.3s ease;
}
.remodal-close-top:hover {
  opacity: 0.6;
}

.modal-content {
  position: relative;
  padding: 5rem 0 0;
  overflow: hidden;
}
.modal-content .sec-ttl-sub {
  font-size: 20rem;
  color: var(--white);
  opacity: 0.1;
  bottom: -0.15em;
  right: 3%;
}
@media (max-width: 767px) {
  .modal-content .sec-ttl-sub {
    top: unset;
    font-size: 18vw;
  }
}
.modal-top {
  position: relative;
}
.modal-top::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 97%;
  height: calc(100% - 5rem);
  background: var(--main);
}
@media (max-width: 767px) {
  .modal-top::before {
    width: 100%;
    height: 80%;
  }
}
.modal-top-inn {
  padding: 0 max(3%, 2rem) 5rem;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .modal-top-inn {
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .modal-top-inn {
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.modal-top-img {
  flex-basis: 50%;
}
.modal-top-con {
  flex: 1;
  padding-top: 10rem;
  color: var(--white);
}
@media (max-width: 767px) {
  .modal-top-con {
    padding-top: 0;
    padding-left: 0.5rem;
  }
}
.modal-top-con .sec-ttl {
  margin-bottom: var(--mg-30);
}
.modal-top-con .sec-ttl-jp {
  font-size: 5.2rem;
}
@media (max-width: 1024px) {
  .modal-top-con .sec-ttl-jp {
    font-size: 3.6rem;
  }
}
.modal-top-label {
  padding: 0.2em 0 0.5em 1.5em;
  border-left: 2px solid var(--white);
  flex-wrap: wrap;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .modal-top-label {
    display: block;
    padding: 0.1em 0 0.3em 1em;
  }
}
@media (max-width: 767px) {
  .modal-top-label {
    display: flex;
  }
}
.modal-top-label dt {
  flex-basis: 9rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .modal-top-label dt {
    flex-basis: 7.5rem;
  }
}
.modal-top-label dd {
  flex-basis: calc(100% - 9rem);
}
@media (max-width: 767px) {
  .modal-top-label dd {
    flex-basis: calc(100% - 7.5rem);
  }
}
.modal-inn {
  margin-inline: auto;
  max-width: calc(1000px + 6%);
  padding: var(--mg-80) max(3%, 2rem) 0;
  width: 100%;
}
.modal-ttl .sec-ttl-en {
  font-size: var(--fs-22);
}
@media (max-width: 767px) {
  .modal-ttl .sec-ttl-en {
    margin-bottom: 0.5rem;
  }
}
.modal-ttl .sec-ttl-jp {
  font-size: 4.2rem;
}
@media (max-width: 767px) {
  .modal-ttl .sec-ttl-jp {
    font-size: 2.8rem;
  }
}
.modal-about-text {
  margin-top: -2rem;
  margin-bottom: var(--mg-40);
}
@media (max-width: 767px) {
  .modal-about-text {
    margin-top: -1rem;
  }
}
.modal-about-item {
  padding: 2rem 2.5rem;
  border: 1px solid var(--main);
}
@media (max-width: 767px) {
  .modal-about-item {
    padding: 1.2em;
  }
}
.modal-about-item:not(:first-of-type) {
  margin-top: 2rem;
}
.modal-about-item-ttl {
  font-size: var(--fs-18);
  font-weight: 600;
  line-height: 1.5;
  color: var(--main);
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .modal-about-item-ttl {
    margin-bottom: 0.5rem;
  }
}
.modal-about-item-text {
  text-align: justify;
}
@media (max-width: 767px) {
  .modal-about-item-text {
    font-size: 1.4rem;
  }
}
.modal-data-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .modal-data-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .modal-data-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.modal-data-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 2rem;
  background: var(--base);
  text-align: center;
  padding: 3rem 2.5rem;
}
@media (max-width: 767px) {
  .modal-data-item {
    padding: 2.5rem 2rem;
  }
}
.modal-data-ttl {
  font-size: var(--fs-22);
  font-weight: 600;
  color: var(--main);
  border-bottom: 1px solid var(--gray);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.modal-data-img {
  display: inline-block;
  height: 16rem;
}
.modal-data-img img {
  width: auto;
  height: 100%;
}
.modal-data-img-01 {
  height: 18rem;
  margin-top: -2rem;
}
.modal-data-text {
  text-align: justify;
}
@media (max-width: 767px) {
  .modal-data-text {
    font-size: 1.4rem;
  }
}
.modal-int {
  position: relative;
  z-index: 0;
  background: var(--base);
  padding-bottom: var(--mg-80);
  margin-top: var(--mg-80);
}
.modal-int .sec-ttl-sub {
  bottom: unset;
  right: 0;
  top: 0;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .modal-int .sec-ttl-sub {
    right: unset;
    left: 25%;
  }
}
@media (max-width: 767px) {
  .modal-int .sec-ttl-sub {
    top: 2rem;
  }
}
.modal-int-item {
  margin-top: var(--mg-40);
}
.modal-int-ttl {
  position: relative;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 0.8em;
  margin-bottom: 3rem;
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.5;
  padding-left: 2.2em;
}
@media (max-width: 767px) {
  .modal-int-ttl {
    font-size: 1.8rem;
  }
}
.modal-int-q {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1;
  color: var(--main);
}
.modal-int-answer {
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1rem 3rem;
}
@media (max-width: 767px) {
  .modal-int-answer {
    flex-direction: column;
    align-items: center;
  }
}
.modal-int-icon {
  width: 12rem;
  text-align: center;
}
@media (max-width: 767px) {
  .modal-int-icon {
    width: 10rem;
  }
}
.modal-int-icon p {
  font-weight: 500;
  margin-top: 0.5em;
}
.modal-int-text {
  flex: 1;
  text-align: justify;
  padding-bottom: 1em;
}
@media (max-width: 767px) {
  .modal-int-text {
    padding-bottom: 0;
  }
}
.modal-btn-wrap {
  margin-top: var(--mg-60);
  margin-inline: auto;
  width: min(36rem, 100%);
}
.modal-btn-wrap .btn {
  width: 100%;
  font-size: var(--fs-20);
  padding-left: 3.2em;
}
@media (max-width: 767px) {
  .modal-btn-wrap .btn {
    font-size: 1.6rem;
  }
}
.modal-btn-wrap .remodal-close-btm {
  width: 100%;
  margin-top: 1rem;
}
.modal-btn-wrap .remodal-close-btm .arrow {
  background: var(--gray);
}

.tl-outer {
  gap: 0 40px;
  background: var(--white);
  padding: 4rem 5rem;
}
@media (max-width: 1024px) {
  .tl-outer {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .tl-outer {
    flex-direction: column;
    padding: 3rem 2rem;
  }
}
.tl-wrap {
  flex: 1;
  text-align: left;
}
.tl-wrap:last-of-type .tl-item:last-of-type::before {
  display: none;
}
@media (max-width: 428px) {
  .tl-wrap {
    margin-left: 3%;
  }
}
.tl-item {
  position: relative;
  display: flex;
  padding-bottom: 2rem;
  padding-left: 3rem;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .tl-item {
    display: block;
  }
}
.tl-item:last-of-type {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .tl-item:last-of-type {
    padding-bottom: 2rem;
  }
}
.tl-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0.3em;
  width: 2px;
  height: 110%;
  background-color: #1087cc;
}
@media (max-width: 767px) {
  .tl-item::before {
    height: 130%;
  }
}
.tl-item:last-of-type::before {
  display: none;
}
@media (max-width: 767px) {
  .tl-item:last-of-type::before {
    display: block;
  }
}
.tl-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.8em;
  aspect-ratio: 1;
  background: var(--main);
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
.tl-time {
  flex-basis: 9rem;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1087cc;
}
.tl-last::before {
  content: "";
  display: block !important;
  position: absolute;
  top: 1.15em;
  left: 0;
  width: 0.9em;
  height: 50px;
  background: var(--white);
}
.tl-text {
  flex: 1;
  transform: translateY(0.05em);
}
@media (max-width: 767px) {
  .tl-text {
    margin-top: 0.5rem;
  }
}

/* message
---------------------------------------------------------------- */
.message {
  position: relative;
  background: none;
}
.message::before {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--base);
}
.message.is-inview::before {
  -webkit-animation-name: box-slide-right;
          animation-name: box-slide-right;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

/* Q&A
---------------------------------------------------------------- */
#QA {
  position: relative;
}
#QA .sec-ttl-sub {
  color: var(--main);
  opacity: 0.08;
  top: 9rem;
  left: calc(50% + 0.8em);
}
@media (max-width: 1600px) {
  #QA .sec-ttl-sub {
    left: unset;
    right: -0.1em;
  }
}
@media (max-width: 767px) {
  #QA .sec-ttl-sub {
    top: 7rem;
  }
}

.tab-list {
  gap: 2rem;
}
@media (max-width: 767px) {
  .tab-list {
    gap: 1rem;
  }
}
.tab-item {
  transition: 0.3s ease;
  position: relative;
  width: 100%;
  padding: 0.6em 0.7em 0.7em;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
  color: var(--main);
  background-color: var(--white);
  border: 2px solid var(--main);
  text-align: center;
  cursor: pointer;
  /* タブをクリックした時 ホバーした時 */
}
@media (max-width: 767px) {
  .tab-item {
    font-size: 1.8rem;
    padding: 0.4em 0.4em 0.5em;
  }
}
.tab-item::after {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  aspect-ratio: 2/1;
  background: var(--main);
  left: 50%;
  bottom: -19px;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  opacity: 0;
}
@media (max-width: 767px) {
  .tab-item::after {
    width: 30px;
    bottom: -15px;
  }
}
.tab-item:hover, .tab-item.is-active {
  color: var(--white);
  background: var(--main);
}
.tab-item:hover::after, .tab-item.is-active::after {
  opacity: 1;
}

.panel-item {
  display: none;
  width: 100%;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .panel-item {
    margin-top: 2rem;
  }
}
.panel-item.is-active {
  display: block;
  -webkit-animation: panel-show 0.3s ease-in forwards;
          animation: panel-show 0.3s ease-in forwards;
}
.panel-item-inn {
  background: var(--base);
  padding: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .panel-item-inn {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
}
.panel-q {
  position: relative;
  font-size: var(--fs-20);
  border-bottom: 1px solid var(--gray);
  padding-left: 4rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .panel-q {
    padding-left: 3rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.panel-q::before {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  content: "";
  display: block;
  position: absolute;
  color: #1087cc;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
  content: "Q";
  top: 0.1em;
  left: 0;
}
@media (max-width: 767px) {
  .panel-q::before {
    top: 0.15em;
    font-size: 1.3em;
  }
}
.panel-a {
  font-size: var(--fs-18);
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .panel-a {
    padding-left: 0rem;
  }
}

/* パネル切り替えのアニメーション */
@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* entry
---------------------------------------------------------------- */
.entry {
  position: relative;
}
.entry::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 94%;
  height: 100%;
  background-image: url("../img/entry/pc.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 1600px) {
  .entry::before {
    width: min(50% + 60rem, 94%);
  }
}
.entry::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: var(--l-main);
}
.entry .sec-ttl {
  margin-bottom: 2rem;
  color: var(--white);
}
.entry .sec-ttl-en {
  color: var(--white);
}
.entry .sec-ttl-sub {
  opacity: 0.1;
  top: 2rem;
  right: 52%;
}
@media (max-width: 1600px) {
  .entry .sec-ttl-sub {
    left: -0.06em;
  }
}
@media (max-width: 767px) {
  .entry .sec-ttl-sub {
    top: 1rem;
  }
}
@media (max-width: 767px) {
  .entry-wrap {
    flex-direction: column;
    padding-right: 3rem;
  }
}
.entry-btn-wrap {
  width: 100%;
  flex-basis: 50%;
}
.entry .btn {
  color: var(--white);
}
.entry .btn:hover {
  color: var(--main);
}
.entry .btn .arrow {
  background: var(--white);
}
.entry .btn .arrow::before {
  background: var(--main);
}

/* footer
================================================================== */
/* slide btn
---------------------------------------------------------------- */
.slidebtn-wrap {
  position: fixed;
  bottom: 10%;
  right: 0;
  z-index: 50;
  transform: translateX(140%);
  transition: 0.4s ease;
}
@media (max-width: 767px) {
  .slidebtn-wrap {
    right: 0;
    bottom: 0;
    transform: translate(0%, 120%);
    display: flex;
    width: 100%;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
}
.slidebtn-wrap.is-show {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .slidebtn-wrap.is-show {
    transform: translate(0%, 0%);
  }
}

.slide-btn {
  display: block;
  background: var(--main);
  border: 1.5px solid var(--white);
  color: var(--white);
  border-radius: 8px 0 0 8px;
  padding: 1em 1.5em 1em 1em;
  line-height: 1.3;
  letter-spacing: 0.1em;
  transform: translateX(0.6em);
}
.slide-btn:not(:first-of-type) {
  margin-top: 1rem;
}
.slide-btn span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  letter-spacing: -0.2em;
}
.slide-btn:hover {
  opacity: 1;
  background: var(--white);
  border: 1.5px solid var(--main);
  color: var(--main);
  transform: translateX(0.1em);
}
@media (max-width: 1280px) {
  .slide-btn {
    font-size: 1.4rem;
    padding: 1em 1.2em 1em 0.8em;
    transform: translateX(0.8em);
  }
}
@media (max-width: 767px) {
  .slide-btn {
    width: 100%;
    height: auto;
    padding: 0.5em;
    flex: 1;
    border-radius: 8px 8px 0 0;
    border-bottom: unset;
    font-size: 1.3rem;
    writing-mode: unset;
    text-align: center;
    transform: translateX(0);
  }
  .slide-btn:not(:first-of-type) {
    margin-top: 0;
  }
  .slide-btn:hover {
    transform: translateX(0);
  }
  .slide-btn span {
    letter-spacing: 0.04em;
  }
}

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background: #258fcc;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 5rem;
  }
}
@media (max-width: 428px) {
  .footer {
    font-size: 14px;
  }
}
.footer .inner {
  padding: 6rem 3%;
}
@media (max-width: 767px) {
  .footer .inner {
    padding: 4rem 3%;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-nav {
    margin-bottom: 8px;
  }
}
.footer-nav a {
  padding: 0.5em 1em;
}
@media (max-width: 767px) {
  .footer-nav a {
    padding: 0.5em 0.6em;
  }
}
.footer-nav span {
  background-color: #fff;
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer-nav span:last-of-type {
    display: none;
  }
}
.copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.copyright span {
  display: inline-block;
}
/*# sourceMappingURL=style.css.map */