@charset "UTF-8";
/* mixin
================================================================== */
/* Design parts
------------------------------ */
/* base
================================================================== */
:root {
  --black: #333333;
  --white: #fff;
  --main: #319bf7;
  --l-main: #e2f6ff;
  --base-01: #e5f0c4;
  --base-02: #f8f6ec;
  --accent: #f89a27;
  --l-accent: #ffefdb;
  --header-h: 10rem;
  --frame: 10px;
  --br-max: 10rem;
  --br-sec: 8rem;
  --br-l: 2rem;
  --br-m: 1.6rem;
  --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;
  --fs-14: 1.4rem;
  --b-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
}

@media only screen and (max-width: 1024px) {
  :root {
    --header-h: 8rem;
    --frame: 8px;
    --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: 1.6rem;
    --br-m: 0.8rem;
    --br-s: 0.8rem;
    --mg-80: 6rem;
    --mg-60: 5rem;
    --mg-50: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
    --fs-36: 2.4rem;
    --fs-32: 2.4rem;
    --fs-28: 2.2rem;
    --fs-26: 2.4rem;
    --fs-24: 2rem;
    --fs-22: 1.8rem;
    --fs-20: 1.8rem;
    --fs-18: 1.6rem;
    --fs-16: 1.4rem;
    --fs-15: 1.4rem;
    --fs-14: 1.2rem;
  }
}
@media (max-width: 428px) {
  :root {
    --fs-36: 2rem;
    --fs-32: 2rem;
    --fs-28: 2rem;
    --fs-26: 2rem;
    --fs-24: 1.8rem;
  }
}
/* common
------------------------------ */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  word-wrap: break-word;
  color: var(--black);
  width: 100%;
}

main {
  overflow: clip;
}

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;
}

/* 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--14 {
  max-width: calc(1400px + 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 {
  display: flex;
  align-items: center;
  justify-content: 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 {
  display: flex;
  justify-content: space-between;
}

/* animation
--------------------------------------------------------------- */
/* base end
================================================================== */
/* parts
================================================================== */
.sec-ttl {
  margin-bottom: var(--mg-60);
  text-align: center;
}
.sec-ttl__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--main);
}
@media (max-width: 1024px) {
  .sec-ttl__en {
    font-size: 6rem;
  }
}
@media (max-width: 428px) {
  .sec-ttl__en {
    font-size: 5.2rem;
    margin-bottom: 0.5rem;
  }
}
.sec-ttl__jp {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: var(--fs-36);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-left: 1.4em;
}
.sec-ttl__jp::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.2em;
  bottom: 0;
  left: 0;
  margin: auto 0;
  display: inline-block;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/ttl.svg);
          mask-image: url(../img/ttl.svg);
  width: 1em;
  height: 1em;
  background: var(--main);
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: bold;
  line-height: 1.2;
  padding: 1.2em 1em;
  width: 100%;
  border-radius: var(--br-max);
  background-color: var(--l-main);
  color: var(--black);
}
.btn::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.btn:hover {
  opacity: 1;
  color: var(--white);
  background-color: var(--main);
}
.btn:hover::before {
  right: 1em;
  border-color: var(--white);
}
.btn--or {
  background-color: var(--l-accent);
}
.btn--or::before {
  border-color: var(--accent);
}
.btn--or:hover {
  background-color: var(--accent);
}
.btn--or:hover::before {
  border-color: var(--white);
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-h);
  background: var(--base);
  padding: 0 3rem;
}
@media (max-width: 1280px) {
  .header {
    background: unset;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .header {
    position: absolute;
    align-items: flex-end;
    padding: 0 1.5rem 0.5rem;
  }
}
.header__logo {
  display: inline-block;
  height: 5.4rem;
}
.header__logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 1024px) {
  .header__logo {
    height: 5rem;
  }
}
@media (max-width: 767px) {
  .header__logo {
    height: auto;
    width: min(35rem, 80%);
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.header__nav-btn {
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .header__nav-btn {
    display: none;
  }
}
.header__nav-btn .btn {
  width: 18rem;
  height: calc(var(--header-h) * 0.54);
  display: grid;
  align-items: center;
  padding: 0;
  background: var(--main);
  color: var(--white);
}
.header__nav-btn .btn:hover {
  background: var(--l-main);
  color: var(--black);
}
.header__nav-btn .btn::before {
  display: none;
}
@media (max-width: 1024px) {
  .header__nav-btn .btn {
    width: 15rem;
  }
}

/* hamburger
------------------------------ */
.burger {
  /* burger inner
  ------------------------------ */
}
.burger__btn {
  transition: 0.3s ease;
  display: block;
  position: relative;
  z-index: 999;
  width: calc(var(--header-h) * 0.54);
  height: calc(var(--header-h) * 0.8);
  cursor: povoiceer;
}
.burger__btn:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .burger__btn {
    position: fixed;
    top: 0.5rem;
    right: 1.5rem;
    width: calc(var(--header-h) * 0.7);
    height: var(--header-h);
  }
}
.burger__btn::after {
  position: absolute;
  content: "MENU";
  color: var(--black);
  left: 52%;
  transform: translateX(-50%);
  bottom: 14%;
  width: 110%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 1024px) {
  .burger__btn::after {
    bottom: 10%;
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .burger__btn::after {
    width: 150%;
  }
}
.burger__btn-bar {
  position: absolute;
  width: 90%;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  transition: 0.4s ease;
}
.burger__btn-bar--top {
  top: 26%;
}
.burger__btn-bar--bottom {
  top: 42%;
}
.burger__btn.js-close::after {
  content: "CLOSE";
}
.burger__btn.js-close .burger__btn-bar--top {
  top: 36%;
  transform: translateX(-50%) rotate(30deg);
}
.burger__btn.js-close .burger__btn-bar--bottom {
  top: 36%;
  transform: translateX(-50%) rotate(-30deg);
}
.burger__nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -40rem;
  width: 38rem;
  height: 100%;
  background-color: var(--l-main);
  padding: 10rem 2rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.5s;
}
.burger__nav.js-active {
  right: 0;
}
@media (max-width: 428px) {
  .burger__nav {
    width: 100vw;
    right: -100vw;
    padding: 5.5rem 2rem;
  }
}
.burger__nav-list {
  margin-bottom: 3rem;
  display: block;
}
.burger__nav-item a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.5em 1em;
  border-bottom: 1.5px solid var(--main);
  font-size: 1.6rem;
  font-weight: 600;
}
.burger__nav-item a::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  width: 0.6em;
  height: 0.6em;
  line-height: 1;
  border: 2.5px solid var(--main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.burger__nav-item a:hover {
  opacity: 1;
  color: var(--main);
}
.burger__nav-item a:hover::before {
  right: 1em;
}
.burger__nav-btn .btn {
  display: block;
  width: 100%;
  height: auto;
  background: var(--main);
  color: var(--white);
}
.burger__nav-btn .btn::before {
  border-color: var(--white);
}
.burger__nav-btn .btn:hover {
  background: var(--white);
  color: var(--black);
}
.burger__nav-btn .btn:hover::before {
  border-color: var(--main);
}
.burger__mask {
  transition: 0.3s ease;
  position: fixed;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.burger__mask.js-active {
  opacity: 1;
  visibility: visible;
}

/* main
================================================================== */
/* mv
------------------------------ */
.mv {
  position: relative;
  padding: calc(var(--header-h) + 2rem) 6% 6rem;
  /* ズームしながらフェード */
}
@media (max-width: 1600px) {
  .mv {
    padding: calc(var(--header-h) + 2rem) min(6%, 4rem) 6rem;
  }
}
@media (max-width: 1024px) {
  .mv {
    padding: calc(var(--header-h) + 2rem) 4% 6rem;
  }
}
@media (max-width: 767px) {
  .mv {
    padding: calc(var(--header-h) + 2rem) 6% 6rem;
  }
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  height: calc(100% + 20rem);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/mv/bg_pc.jpg);
}
@media (max-width: 767px) {
  .mv::before {
    height: calc(100% + 8rem);
    background-image: url(../img/mv/bg_sp.jpg);
  }
}
.mv__inn {
  max-width: 100%;
  margin-inline: auto;
  width: 1800px;
  align-items: flex-start;
  gap: 4%;
}
@media (max-width: 767px) {
  .mv__inn {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
.mv__content {
  padding-top: 5rem;
  flex: 1;
}
@media (max-width: 1280px) {
  .mv__content {
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .mv__content {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .mv__copy {
    width: min(45rem, 100%);
  }
}
.mv__company {
  font-size: clamp(1.7vw, 2.2rem, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--main);
  padding-top: 1em;
}
@media (max-width: 767px) {
  .mv__company {
    font-size: clamp(1.6rem, 3.6vw, 2rem);
  }
}
.mv__deco {
  width: 29.375vw;
  margin-top: -8%;
}
@media (max-width: 767px) {
  .mv__deco {
    margin-top: -4rem;
    margin-left: -1rem;
    width: min(50vw, 30rem);
  }
}
.mv__swiper-wrap {
  flex-basis: 55%;
  border-radius: 200px 16px 16px 16px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .mv__swiper-wrap {
    border-radius: 120px 16px 16px 16px;
  }
}
@media (max-width: 767px) {
  .mv__swiper-wrap {
    flex-basis: unset;
    border-radius: 100px 8px 8px 8px;
  }
}
.mv__swiper .swiper-slide img {
  width: 100%;
}
.mv__swiper .swiper-slide-active img, .mv__swiper .swiper-slide-duplicate-active img, .mv__swiper .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.05);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.2);
  }
}
/* search
------------------------------ */
.search {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .search {
    padding-top: 0;
  }
}
.search::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 30rem;
  -webkit-clip-path: ellipse(55% 100% at 50% 100%);
          clip-path: ellipse(55% 100% at 50% 100%);
  background: var(--white);
}
@media (max-width: 1024px) {
  .search::before {
    height: 20rem;
  }
}
@media (max-width: 767px) {
  .search::before {
    height: 10rem;
  }
}
.search__deco-01 {
  display: block;
  position: absolute;
  top: -2rem;
  right: calc(50% + 39rem);
  width: min(19rem, 14vw);
}
@media (max-width: 1280px) {
  .search__deco-01 {
    right: unset;
    left: 4%;
  }
}
@media (max-width: 767px) {
  .search__deco-01 {
    top: -4rem;
    left: 6%;
    width: min(20vw, 10rem);
  }
}
.search__deco-02 {
  display: block;
  position: absolute;
  top: 4rem;
  left: calc(50% + 36rem);
  width: min(22rem, 18vw);
}
@media (max-width: 1280px) {
  .search__deco-02 {
    left: unset;
    right: 4%;
  }
}
@media (max-width: 767px) {
  .search__deco-02 {
    top: 1rem;
    right: 6%;
    width: min(24vw, 12rem);
  }
}
.search__deco-03 {
  display: block;
  position: absolute;
  bottom: -4rem;
  right: 0;
  width: min(24rem, 20%);
}
@media (max-width: 1024px) {
  .search__deco-03 {
    bottom: 0;
    width: 16rem;
  }
}
@media (max-width: 767px) {
  .search__deco-03 {
    position: static;
    margin-left: auto;
    padding-top: 3rem;
    width: 20rem;
  }
}
.search__top {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin-top: -2rem;
  margin-bottom: var(--mg-60);
}
@media (max-width: 1024px) {
  .search__top {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .search__top {
    font-size: 1.5rem;
  }
}
.search__wrap {
  margin-top: var(--mg-60);
}
.search__ttl {
  position: relative;
  font-size: var(--fs-32);
  font-weight: 700;
  text-align: center;
  padding-bottom: 36px;
  margin-bottom: var(--mg-30);
}
.search__ttl::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 100%);
  height: 20px;
  display: inline-block;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/bubble.svg);
          mask-image: url(../img/bubble.svg);
  background: var(--main);
}
.search__ttl i {
  display: inline-block;
  font-size: 1.1em;
  padding-right: 0.4em;
  color: var(--main);
}
.search__ttl--or::before {
  background: var(--accent);
}
.search__ttl--or i {
  color: var(--accent);
}
.search__wrap {
  position: relative;
}
.search__employ {
  gap: 2rem;
  max-width: 100%;
  margin-inline: auto;
  width: 1000px;
}
@media (max-width: 767px) {
  .search__employ {
    flex-direction: column;
  }
}
.search__job {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1280px) {
  .search__job {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .search__job {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .search__job {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search__job .btn {
  transition: 0.3s ease;
  padding: 1em;
}
.search__job-item {
  text-align: center;
  border: 6px solid var(--l-main);
  border-radius: var(--br-m);
  padding: 2rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 2rem;
}
.search__job-item:hover {
  opacity: 1;
  background: var(--l-main);
}
.search__job-item:hover .btn {
  color: var(--white);
  background-color: var(--main);
}
.search__job-item:hover .btn::before {
  right: 1em;
  border-color: var(--white);
}
.search__job-ttl {
  font-size: var(--fs-22);
  font-weight: 700;
  line-height: 1.3;
  color: var(--main);
  margin-bottom: 1.2rem;
}
.search__job-ttl .d-b {
  font-size: 0.9em;
}
.search__job-text {
  font-size: var(--fs-15);
  text-align: justify;
}
.search__map {
  display: block;
  border: var(--frame) solid var(--l-accent);
  border-radius: var(--br-l);
  padding: 3rem;
}
@media (max-width: 767px) {
  .search__map {
    padding: 2rem;
  }
}
.search__select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 100%;
  margin-inline: auto;
  width: 1000px;
}
@media (max-width: 1024px) {
  .search__select {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .search__select {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* about
------------------------------ */
.about {
  position: relative;
  background: #fff8db;
  background: linear-gradient(180deg, rgb(255, 248, 219) 0%, rgb(240, 247, 238) 50%, rgb(226, 246, 255) 100%);
  margin: 0 min(2rem, 3%);
  border-radius: 16rem 1.6rem 16rem 1.6rem;
}
@media (max-width: 1024px) {
  .about {
    border-radius: 12rem 1.6rem 12rem 1.6rem;
  }
}
@media (max-width: 767px) {
  .about {
    border-radius: 8rem 0.8rem 8rem 0.8rem;
  }
}
.about__deco {
  display: block;
  position: absolute;
  top: -7rem;
  left: calc(50% + 14rem);
  width: min(52rem, 35%);
}
@media (max-width: 1024px) {
  .about__deco {
    top: -9rem;
    left: unset;
    right: 4%;
    width: min(32rem, 40%);
  }
}
@media (max-width: 767px) {
  .about__deco {
    top: -6rem;
    width: 20rem;
  }
}
.about .sec-ttl {
  text-align: left;
}
.about .sec-ttl__jp {
  margin: unset;
}
.about__ttl {
  display: inline-block;
  font-size: var(--fs-32);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  padding: 0.4em 1em 0.5em;
  background: var(--accent);
  border-radius: 30px 0 30px 0;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .about__ttl {
    border-radius: 16px 0 16px 0;
  }
}

.training {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 3rem 4rem;
}
@media (max-width: 1024px) {
  .training {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .training {
    grid-template-columns: repeat(1, 1fr);
  }
}
.training__text {
  font-size: var(--fs-18);
  text-align: justify;
  line-height: 2;
}
@media (max-width: 1024px) {
  .training__text {
    font-size: var(--fs-16);
    line-height: 1.7;
  }
}
.training__img {
  border-radius: var(--br-l);
  background: var(--white);
  padding: 3rem;
  margin: 10px;
  outline: var(--frame) solid rgba(248, 154, 39, 0.1);
  aspect-ratio: 3/2;
}
@media (max-width: 1024px) {
  .training__img {
    aspect-ratio: unset;
  }
}
@media (max-width: 767px) {
  .training__img {
    padding: 2rem;
  }
}
.training__img img {
  width: min(45rem, 100%);
}
@media (max-width: 1024px) {
  .training__img img {
    width: min(40rem, 100%);
  }
}

.data {
  margin-top: var(--mg-80);
}
.data .about__ttl {
  background: var(--main);
}
@media (max-width: 767px) {
  .data .about__ttl {
    margin-bottom: 1rem;
  }
}
.data__wrap {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .data__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .data__wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.data__wrap:first-of-type .data__item:first-of-type {
  flex-basis: 20%;
}
.data__wrap:first-of-type .data__item:first-of-type .data__text {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .data__wrap:first-of-type .data__item:first-of-type .data__text {
    margin-top: 0;
  }
}
.data__wrap:first-of-type .data__item .data__img {
  display: inline-block;
  height: 21rem;
  margin-top: 1rem;
}
.data__wrap:first-of-type .data__item .data__img img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .data__wrap:first-of-type .data__item .data__img {
    margin: 1rem auto 1.5rem;
    height: auto;
  }
}
.data__wrap:last-of-type .data__item .data__img {
  margin: 2rem auto 1.5rem;
  width: min(32rem, 100%);
}
@media (max-width: 1024px) {
  .data__wrap:last-of-type .data__text br {
    display: none;
  }
}
.data__item {
  flex: 1;
  border-radius: var(--br-l);
  background: var(--white);
  padding: 2rem 1.5rem;
  margin: 10px;
  outline: var(--frame) solid rgba(49, 155, 247, 0.1);
  text-align: center;
  padding: 2rem 1rem;
}
.data__ttl {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
}
.data__text {
  line-height: 1.7;
}
@media (max-width: 767px) {
  .data__img-small {
    width: min(18rem, 100%);
    margin: -2rem 0 0 !important;
  }
}

/* voice
------------------------------ */
.voice {
  position: relative;
  padding-bottom: 3rem;
}
.voice::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  height: calc(100% + 20rem);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/mv/bg_pc.jpg);
  transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .voice::before {
    height: calc(100% + 8rem);
    background-image: url(../img/mv/bg_sp.jpg);
  }
}
.voice__wrap {
  gap: 0;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .voice__wrap {
    display: block;
  }
}
.voice__right {
  position: -webkit-sticky;
  position: sticky;
  top: calc(20px + var(--header-h));
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .voice__right {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
  }
}
.voice .sec-ttl {
  text-align: right;
  margin-bottom: var(--mg-80);
}
.voice .sec-ttl__jp {
  margin-right: unset;
}
.voice__deco {
  width: min(34.6rem, 30vw);
  margin-left: auto;
}
@media (max-width: 1024px) {
  .voice__deco {
    margin: 0;
    padding-bottom: 3rem;
    width: min(23rem, 100%);
  }
}
@media (max-width: 767px) {
  .voice__deco {
    padding-bottom: 10%;
  }
}
.voice__left {
  flex-basis: min(72rem, 100%);
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .voice__left {
    max-width: 100%;
    margin-inline: auto;
    width: 70rem;
  }
}
.voice__card {
  display: block;
  position: relative;
  border-radius: 100px 6px 100px 6px;
  color: var(--main);
  width: 100%;
  min-height: 38rem;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.voice__card img {
  height: auto;
  transition: transform 0.3s ease;
}
.voice__card:hover img {
  transform: scale(1.07);
}
@media (max-width: 1024px) {
  .voice__card {
    min-height: unset;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767px) {
  .voice__card {
    border-radius: 60px 6px 60px 6px;
    aspect-ratio: 4/3;
  }
}
.voice__card:not(:first-of-type) {
  margin-top: var(--mg-60);
}
@media (max-width: 767px) {
  .voice__card:not(:first-of-type) {
    margin-top: 3rem;
  }
}
.voice__card:nth-of-type(even) {
  color: var(--accent);
}
.voice__card:hover {
  opacity: 1;
}
.voice__card:hover .voice__card-arrow {
  background: var(--white);
}
.voice__card:hover .voice__card-arrow::before {
  border-color: currentColor;
}
.voice__card-text {
  display: block;
  position: absolute;
  bottom: 2rem;
  left: 0;
}
@media (max-width: 767px) {
  .voice__card-text {
    bottom: 1.5rem;
  }
}
.voice__card-copy span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4em 0.5em;
  background: var(--white);
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1;
  color: currentColor;
}
.voice__card-copy span:last-of-type {
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .voice__card-copy span {
    font-size: min(1.8rem, 4.2vw);
  }
}
.voice__card-name {
  font-size: var(--fs-22);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  padding: 0.8em 0 0 3rem;
  text-shadow: 0 0 10px, rgba(51, 51, 51, 0.5);
  text-align: left;
}
@media (max-width: 767px) {
  .voice__card-name {
    font-size: 1.5rem;
    padding-left: 1em;
  }
}
.voice__card-arrow {
  transition: 0.3s ease;
  display: block;
  position: absolute;
  bottom: 3.5rem;
  right: 3.5rem;
  width: 8rem;
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  background: currentColor;
}
@media (max-width: 767px) {
  .voice__card-arrow {
    width: 5rem;
    bottom: 2rem;
    right: 2rem;
  }
}
.voice__card-arrow::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 1px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 3px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
@media (max-width: 767px) {
  .voice__card-arrow::before {
    width: 12px;
    height: 12px;
    border-width: 2.5px;
  }
}
.voice__card-img {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.voice__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal__content {
  position: relative;
  border-radius: var(--br-l);
  background: var(--l-main);
  padding: 4rem max(2%, 1.5rem) 6rem;
}
.modal__close--top {
  transition: 0.3s ease;
  position: absolute;
  z-index: 1;
  top: 2rem;
  left: 2rem;
}
@media (max-width: 767px) {
  .modal__close--top {
    top: 0.5rem;
    left: 0.5rem;
    transform: scale(0.9);
  }
}
.modal__close--top:hover {
  opacity: 0.6;
}
.modal__close--btm {
  width: 100%;
}
.modal__close--btm .btn {
  transition: 0.3s ease;
  width: 28rem;
  margin-top: var(--mg-40);
  background: var(--white);
}
@media (max-width: 767px) {
  .modal__close--btm .btn {
    width: 100%;
  }
}
.modal__close--btm .btn:hover {
  background: var(--main);
}
.modal__top {
  pointer-events: none;
}

.qa-list {
  text-align: left;
  width: 100%;
  margin-top: 4rem;
}
.qa-list dt {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.2em;
}
.qa-list dt:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .qa-list dt {
    font-size: 1.7rem;
  }
}
.qa-list dt::before {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 5.5px;
  left: 8px;
  content: "Q";
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .qa-list dt::before {
    font-size: 1.6rem;
    top: 5px;
    left: 6px;
  }
}
.qa-list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--main);
  width: 3.2rem;
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
@media (max-width: 767px) {
  .qa-list dt::after {
    width: 2.6rem;
  }
}
.qa-list dd {
  font-size: var(--fs-15);
  line-height: 1.7;
  text-align: justify;
  margin-top: 20px;
  padding: 20px 30px;
  background: var(--white);
  border-radius: var(--br-s);
}
@media (max-width: 767px) {
  .qa-list dd {
    padding: 1.5em;
  }
}

/* flow
------------------------------ */
.flow {
  position: relative;
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .flow {
    padding-top: 0;
  }
}
.flow::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 30rem;
  -webkit-clip-path: ellipse(55% 100% at 50% 100%);
          clip-path: ellipse(55% 100% at 50% 100%);
  background: var(--white);
}
@media (max-width: 1024px) {
  .flow::before {
    height: 20rem;
  }
}
@media (max-width: 767px) {
  .flow::before {
    height: 10rem;
  }
}
.flow .inner {
  padding-bottom: 0;
}
.flow__wrap {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .flow__wrap {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .flow__wrap {
    flex-direction: column;
    max-width: 100%;
    margin-inline: auto;
    width: 40rem;
    gap: 2rem;
  }
}
.flow__arrow {
  content: "";
  display: block;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 3rem;
  height: 6rem;
  background: #cdcdcd;
  margin-top: 12%;
}
@media (max-width: 1024px) {
  .flow__arrow {
    width: 2rem;
    height: 4rem;
  }
}
@media (max-width: 767px) {
  .flow__arrow {
    margin-top: 0;
    margin-inline: auto;
    width: 5rem;
    height: 2.5rem;
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}
.flow__item {
  flex-basis: calc(33% - 2rem);
  text-align: center;
}
.flow__icon {
  position: relative;
  z-index: -1;
  display: block grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 100%;
  border: var(--frame) solid var(--l-accent);
}
@media (max-width: 767px) {
  .flow__icon {
    width: 22rem;
    margin-inline: auto;
  }
}
.flow__num {
  display: block;
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
@media (max-width: 1024px) {
  .flow__num {
    font-size: 7vw;
  }
}
@media (max-width: 767px) {
  .flow__num {
    font-size: 6rem;
  }
}
.flow__img {
  padding-bottom: 1rem;
}
@media (max-width: 1024px) {
  .flow__img {
    width: 60%;
  }
}
.flow__ttl {
  display: block;
  position: absolute;
  bottom: -14%;
  left: 0;
  right: 0;
  margin-inline: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  padding: 0.4em 1em 0.5em;
  background: var(--accent);
  border-radius: 26px 0 26px 0;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .flow__ttl {
    bottom: -20%;
  }
}
@media (max-width: 767px) {
  .flow__ttl {
    bottom: -18%;
    border-radius: 16px 0 16px 0;
  }
}
.flow__text {
  margin-top: 2rem;
}
.flow__text a {
  color: var(--accent);
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .flow__text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .flow__text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .flow__text br {
    display: block;
  }
}

/* qa
------------------------------ */
.qa .inner {
  padding-bottom: 0;
}
.qa__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .qa__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .qa__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .qa__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .qa__wrap {
    flex-direction: column;
    width: min(32rem, 90%);
    margin-inline: auto;
  }
}
.qa__item {
  text-align: center;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media (max-width: 1024px) {
  .qa__item {
    display: block;
    flex-basis: calc(50% - 3rem);
  }
}
@media (max-width: 767px) {
  .qa__item {
    flex-basis: unset;
  }
}
.qa__ttl {
  display: block grid;
  place-items: center;
  padding: 2rem 2rem 2.2rem;
  position: relative;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
  background: var(--l-main);
  border-radius: var(--br-l);
}
.qa__ttl::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -2.2rem;
  margin-inline: auto;
  width: 5rem;
  height: 2.5rem;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: var(--l-main);
}
.qa__text {
  margin-top: 3rem;
  font-size: 1.5rem;
}

/* entry
------------------------------ */
.entry {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/entry/pc.jpg);
}
@media (max-width: 767px) {
  .entry {
    background-image: url(../img/entry/sp.jpg);
  }
}
.entry .sec-ttl {
  margin-bottom: var(--mg-40);
}
.entry .sec-ttl__en {
  color: var(--white);
}
.entry .sec-ttl__jp {
  color: var(--white);
}
.entry .sec-ttl__jp::before {
  background: var(--white);
}
@media (max-width: 767px) {
  .entry .sec-ttl__jp {
    padding: 0;
  }
  .entry .sec-ttl__jp::before {
    display: none;
  }
}
.entry .btn {
  display: block;
  margin: 0 auto;
  font-size: var(--fs-20);
  background: var(--white);
  width: min(42rem, 100%);
  padding: 1.5em;
}
@media (max-width: 767px) {
  .entry .btn {
    padding: 1.2em;
  }
}
.entry .btn:hover {
  background: var(--main);
}

/* footer
================================================================== */
/* slide btn
------------------------------ */
.slidebtn {
  display: none;
}
@media (max-width: 767px) {
  .slidebtn {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: -0.5rem;
    transform: translate(0%, 120%);
    transition: 0.4s ease;
    display: flex;
    width: 100%;
    gap: 0.5rem;
    padding: 0 3%;
  }
}
.slidebtn.is-show {
  transform: translate(0%, 0%);
}
.slidebtn__item {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.8em 0.5em 1em;
  flex: 1;
  background: var(--main);
  border: 1.5px solid var(--white);
  border-radius: 20px 20px 0 0;
  border-bottom: unset;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  transform: translateX(0);
}

/* pagetop
------------------------------ */
.page-top {
  display: flex !important;
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: povoiceer;
  width: 65px;
  height: 65px;
  background-color: var(--accent);
  color: var(--white);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transition: 0.3s ease;
}
.page-top p {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(35%);
}
.page-top::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 25%;
  right: 50%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(50%) rotate(-45deg);
}
.page-top:hover {
  background: #fdce94;
}
.page-top.js-position {
  position: absolute;
  top: -30px; /* 止まって欲しい場所を記入 */
}
@media (max-width: 767px) {
  .page-top {
    bottom: 6rem;
    transform: scale(0.9);
  }
}

/* footer
------------------------------ */
.footer {
  position: relative;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  background: var(--main);
  color: var(--white);
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 4rem;
  }
}
.footer .inner {
  padding: 5rem 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: var(--white);
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer__nav span:last-of-type {
    display: none;
  }
}
.footer__copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.footer__copyright span {
  display: inline-block;
}
/*# sourceMappingURL=style.css.map */