@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
:root {
  --bk: #111;
  --wh: #fff;
  --green: #96ccc6;
  --text-color-dark: #111;
  --text-color-light: #ffffff;
}

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

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

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

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

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

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background: #fff;
}

.inner {
  width: 90%;
  max-width: 1350px;
  height: 100%;
  margin: 0 auto;
}
.inner--1680 {
  max-width: 1680px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #222;
}

.arrow--view-more {
  background-color: var(--bk);
  color: var(--wh);
  width: 35px;
  height: 22px;
  border-radius: 11px;
  position: relative;
}
.arrow--view-more::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.arrow--view-more::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.arrow--view-more:hover::before {
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}

.btn--view-more {
  background-color: var(--bk);
  display: block;
  width: 100%;
  max-width: 35px;
  height: 22px;
  border: none;
  border-radius: 100vmax;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn--view-more::before {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: url(../img/common/arrow-wh.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 35%;
}
.btn--view-more:hover::before {
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}
@keyframes arrowSlide {
  0% {
    background-position: 50% 50%;
    opacity: 1;
  }
  25% {
    background-position: 120% 50%;
    opacity: 0;
  }
  50% {
    background-position: 0 50%;
    opacity: 0;
  }
  75% {
    background-position: 0 50%;
    opacity: 0;
  }
  100% {
    background-position: 50% 50%;
    opacity: 1;
  }
}

.arrowSlide:hover .btn--view-more::before {
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}

.rolle-effect {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.rolle-effect:hover {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

.rotate-text {
  display: inline-block;
}

.rotate-text:hover {
  animation: rotate 0.5s forwards;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
LOADING
==================================================== */
body {
  animation: fadeIn 2s ease-out 0 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ====================================================
Animation
==================================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.zoom-in.active {
  animation: zoom-in 1s ease-out forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(9%);
    opacity: 1;
  }
}
.bounce-in.active {
  animation: bounceIn 1.5s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    transform: translateY(-10%);
    opacity: 1;
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-heading span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.yureru-s {
  animation: yureru-s 2s infinite;
}

@keyframes puluShake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  1% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  2% {
    transform: translate(-2px, 2px) rotate(-1deg);
  }
  3% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  4% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  /* 残りの時間は停止 */
}
.text-wave,
.interview__ttl-title,
.about__ttl-title-s {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.text-wave .char,
.interview__ttl-title .char,
.about__ttl-title-s .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.text-wave .char.is-visible,
.interview__ttl-title .char.is-visible,
.about__ttl-title-s .char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 回転アニメーション */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 回転アニメーション 3D */
@keyframes spin3D {
  0% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 360deg);
  }
}
.text-hover {
  display: inline-block;
  cursor: pointer;
  perspective: 400px;
  /* 3D回転をきれいに見せるため（任意） */
}
.text-hover .char {
  display: inline-block;
  transform-origin: center center;
  /* 回転の中心を文字の中央に */
  /* backface-visibility: hidden; // 裏面非表示（任意） */
  /* アニメーション関連のプロパティはJSで設定 */
}

/* テキストウェーブ */
@keyframes slideTextWave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* text rolle */
/* A Modern CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-weight: 400;
}

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* ====================================================
Module
==================================================== */
/* ====================================================
Header
==================================================== */
.header {
  background-color: transparent;
  width: 100%;
  height: 160px;
  color: var(--bk);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
@media screen and (max-width: 1200px) {
  .header {
    position: fixed;
    height: 110px;
  }
}
@media screen and (max-width: 834px) {
  .header {
    height: 95px;
  }
}
@media screen and (max-width: 640px) {
  .header {
    height: 82px;
  }
}
@media (max-width: 499px) {
  .header {
    height: 82px;
  }
}
@media screen and (max-width: 376px) {
  .header {
    height: 82px;
  }
}
.header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  padding: 2rem 4rem 2rem;
}
@media screen and (max-width: 834px) {
  .header__inner {
    padding: 2rem 2rem 2rem;
  }
}
@media screen and (max-width: 640px) {
  .header__inner {
    padding: 1.5rem 1rem 1rem;
  }
}
.header__logo {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 999;
}
.header__logo img {
  width: 87px;
  height: 93px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .header__logo img {
    width: 70px;
    height: 75px;
  }
}
@media screen and (max-width: 834px) {
  .header__logo img {
    width: 60px;
    height: 65px;
  }
}
@media screen and (max-width: 640px) {
  .header__logo img {
    width: 50px;
    height: 55px;
  }
}
.header__logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .header__logo a {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
}
.header__logo-text {
  font-size: 12px;
  font-family: "Inter", sans-serif;
  color: #7b7b7b;
  margin-top: 17px;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .header__logo-text {
    margin-top: 15px;
  }
}
@media screen and (max-width: 640px) {
  .header__logo-text {
    margin-top: 10px;
  }
}
@media screen and (max-width: 376px) {
  .header__logo-text {
    font-size: 8px;
    margin-top: 3px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    background: url(../img/common/header-sp-bg.webp) no-repeat 0% 0%;
    background-size: cover;
  }
  .header__nav.active {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    height: 100vh;
    padding: 15vw 7vw 7vw;
    gap: 10vw;
    background-color: transparent;
  }
}
@media screen and (max-width: 1200px) and (max-width: 834px) {
  .header__nav.active {
    padding: 20vw 7vw 7vw;
  }
}
@media screen and (max-width: 1200px) and (max-width: 640px) {
  .header__nav.active {
    padding: 25vw 7vw 7vw;
  }
}
@media screen and (max-width: 1200px) and (max-width: 376px) {
  .header__nav.active {
    padding: 30vw 7vw 7vw;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav.active .header__nav-list {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 2;
  }
  .header__nav.active .header__nav-list-item {
    font-size: 18px;
    flex: none;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 1200px) and (max-width: 834px) {
  .header__nav.active .header__nav-list-item {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 640px) {
  .header__nav.active .header__nav-list-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav.active .header__nav-list-item.likebtn {
    min-height: 43px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 834px) {
  .header__nav.active .header__nav-list-item.likebtn {
    min-height: 43px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 640px) {
  .header__nav.active .header__nav-list-item.likebtn {
    min-height: 43px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav.active .header__nav-list.header__entry-btn {
    align-items: flex-start;
    justify-content: center;
    flex: 1;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  .header__nav-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 834px) {
  .header__nav-list {
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .header__nav-list {
    gap: 1rem;
  }
}
.header__nav-list.menu-theme-light {
  color: var(--text-color-dark);
}
.header__nav-list.menu-theme-dark {
  color: var(--text-color-light);
}
.header__nav-list-item {
  white-space: nowrap;
  overflow: hidden;
}
.header__nav-list-item.likebtn {
  width: 120px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  line-height: 1;
}
.header__nav-list-item.likebtn.--01 {
  background-color: #c3e4e2;
  transition: background-color 0.3s ease-in-out;
}
.header__nav-list-item.likebtn.--01:hover {
  background-color: #9ddeda;
  transition: background-color 0.3s ease-in-out;
}
.header__nav-list-item.likebtn.--02 {
  background-color: #b5e4ed;
  transition: background-color 0.3s ease-in-out;
}
.header__nav-list-item.likebtn.--02:hover {
  background-color: #9bd5e0;
  transition: background-color 0.3s ease-in-out;
}
.header__nav-list-item a {
  font-weight: 600;
}
.header__nav-list.header__entry-btn {
  flex-direction: row;
}
.header.active {
  background-color: var(--wh);
}

.header__sp-btn {
  background-color: var(--bk);
  color: var(--wh);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  opacity: 0;
  z-index: 999;
}
@media screen and (max-width: 1200px) {
  .header__sp-btn {
    opacity: 1;
  }
}
@media screen and (max-width: 640px) {
  .header__sp-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 640px) {
  .header__sp-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
  }
}
.header__sp-btn::before, .header__sp-btn::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  background-color: var(--wh);
  transition: transform 0.8s ease-out, top 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header__sp-btn::before {
  top: 22px;
}
@media screen and (max-width: 640px) {
  .header__sp-btn::before {
    top: 18px;
  }
}
@media screen and (max-width: 640px) {
  .header__sp-btn::before {
    top: 14px;
  }
}
.header__sp-btn::after {
  top: calc(100% - 22px - 2px);
}
@media screen and (max-width: 640px) {
  .header__sp-btn::after {
    top: calc(100% - 18px - 2px);
  }
}
@media screen and (max-width: 640px) {
  .header__sp-btn::after {
    top: calc(100% - 14px - 2px);
  }
}
.header__sp-btn.active::before, .header__sp-btn.active::after {
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(405deg);
  top: 50%;
}
.header__sp-btn.active::before {
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(-405deg);
}

/* ====================================================
Footer
==================================================== */
.footer {
  width: 100%;
  height: 205px;
  color: var(--bk);
}
.footer__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
  gap: 2rem;
}
@media screen and (max-width: 834px) {
  .footer__inner {
    padding: 0 2rem;
    flex-direction: column;
    justify-content: center;
  }
}
.footer__subinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .footer__subinner {
    flex-direction: column;
    justify-content: space-between;
    height: 70px;
    gap: 4rem;
  }
}
.footer__ttl {
  width: 77px;
  height: auto;
}
@media screen and (max-width: 834px) {
  .footer__ttl {
    height: 50px;
  }
}
.footer__nav {
  margin-right: 76px;
}
@media screen and (max-width: 834px) {
  .footer__nav {
    margin-right: 0;
  }
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
}
@media screen and (max-width: 834px) {
  .footer__nav-list {
    flex-wrap: wrap;
    gap: 1rem 0;
  }
}
.footer__nav-item {
  margin-right: 3rem;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}
.footer small {
  color: #b4b4b4;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

/* ====================================================
Common
==================================================== */
/* 共通 */
body.active {
  overflow: hidden;
}

.green-flower {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  animation: spin 4s linear infinite;
}
@media screen and (max-width: 640px) {
  .green-flower {
    width: 15px;
    height: 15px;
  }
}

.bg-text-gradient {
  background: linear-gradient(0deg, #f5fbfb 0%, #e9f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

/* Entry-cta */
.entry-btn {
  background: url("../img/common/entry-bg.webp") no-repeat center;
  background-size: cover;
  background-color: var(--green);
  color: var(--wh);
  height: 728px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 170px;
}
@media screen and (max-width: 1200px) {
  .entry-btn {
    padding: 100px;
    height: 500px;
  }
}
@media screen and (max-width: 834px) {
  .entry-btn {
    padding: 100px;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .entry-btn {
    padding: 50px;
  }
}
@media screen and (max-width: 376px) {
  .entry-btn {
    padding: 50px 20px;
  }
}
.entry-btn__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .entry-btn__inner {
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
  }
}
.entry-btn__ttl {
  width: 100%;
  max-width: 550px;
}
.entry-btn__ttl-title {
  font-family: "Inter", sans-serif;
  font-size: 96px;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .entry-btn__ttl-title {
    font-size: 72px;
  }
}
@media screen and (max-width: 834px) {
  .entry-btn__ttl-title {
    font-size: 48px;
    margin-bottom: 0;
  }
}
.entry-btn__ttl-text {
  font-weight: 600;
}
.entry-btn__link {
  width: 100%;
  max-width: 675px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .entry-btn__link {
    gap: 1.5rem;
  }
}
.entry-btn__link-cont {
  width: 100%;
  height: 164px;
  background-color: var(--wh);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease-in-out;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .entry-btn__link-cont {
    height: 120px;
  }
}
@media screen and (max-width: 640px) {
  .entry-btn__link-cont {
    height: 100px;
  }
}
.entry-btn__link-cont a {
  display: block;
  position: relative;
}
.entry-btn__link-cont .btn--view-more {
  background-color: var(--bk);
  width: 100%;
  max-width: 35px;
  height: 22px;
  border: none;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.entry-btn__link-cont .btn--view-more::before {
  background-image: url("../img/common/arrow-wh.svg");
}
.entry-btn__link-cont::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bk);
  transform: translateX(-101%);
  transition: transform 0.35s ease-in-out;
  z-index: -1;
}
.entry-btn__link-cont:hover .entry-btn__link-ttl {
  color: var(--wh, #ffffff);
}
.entry-btn__link-cont:hover::before {
  transform: translateX(0);
}
.entry-btn__link-cont:hover .btn--view-more {
  background-color: var(--wh);
  transition: background-color 0.3s ease-in-out;
}
.entry-btn__link-cont:hover .btn--view-more::before {
  background: url(../img/common/arrow.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 35%;
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}
.entry-btn__link-ttl {
  font-size: 24px;
  line-height: 3;
  font-weight: 600;
  color: var(--bk);
  line-height: 1.3;
}
.entry-btn__link-text {
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.rolle-effect {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.rolle-effect:hover {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

.rotate-text {
  display: inline-block;
}

.rotate-text:hover {
  animation: rotate 0.5s forwards;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
.bg-acc {
  width: 100px;
  height: auto;
  stroke: var(--bk);
  fill: var(--bk);
  stroke-width: 1;
}

.arrow-svg {
  width: 100px;
  height: auto;
  stroke: var(--bk);
  fill: var(--bk);
  stroke-width: 1;
}

.link-btn-gr {
  background-color: #c3e4e2;
  color: var(--bk);
  width: 100%;
  max-width: 259px;
  height: 70px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  padding: 2rem 2rem 2rem 3.7rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .link-btn-gr {
    max-width: 230px;
    padding: 1.5rem 2rem 1.5rem 3rem;
    font-size: 16px;
    height: 60px;
  }
}
@media screen and (max-width: 834px) {
  .link-btn-gr {
    max-width: 200px;
    padding: 1.5rem 2rem 1.5rem 2rem;
    font-size: 14px;
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .link-btn-gr {
    max-width: 165px;
    padding: 1.5rem 1rem 1.5rem 2rem;
    font-size: 12px;
    height: 40px;
  }
}
.link-btn-gr .text {
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.link-btn-gr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bk);
  transform: translateX(-101%);
  transition: transform 0.3s ease-in-out;
  z-index: 0;
}
.link-btn-gr:hover {
  color: var(--wh);
}
.link-btn-gr:hover::before {
  transform: translateX(0);
}
.link-btn-gr:hover .btn--view-more {
  background-color: var(--wh);
  transition: background-color 0.3s ease-in-out;
}
.link-btn-gr:hover .btn--view-more::before {
  background: url(../img/common/arrow.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 35%;
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}
.link-btn-gr .link--view-more {
  display: block;
  width: 100%;
  max-width: 35px;
  height: 22px;
  border-radius: 100vmax;
  background-color: var(--bk);
  position: relative;
  z-index: 0;
}
.link-btn-gr .link--view-more .arrow-svg {
  max-width: 12px;
  max-height: 9px;
  stroke: var(--wh);
  fill: var(--wh);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.link-btn-gr.rolle-effect {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #ffffff, 0 0 0 #020202;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.link-btn-gr.rolle-effect:hover {
  text-shadow: 0 0 0 #ffffff, 0 1.5em 0 #ffffff;
}

/* ====================================================
TOP
==================================================== */
/* fv */
.fv {
  background: url(../img/top/fv-bg.webp) no-repeat center;
  background-size: cover;
  background-color: #85d2cd;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  position: relative;
}
@media (max-width: 1200px) and (min-height: 1200px) {
  .fv {
    height: 80vh;
  }
}
@media (max-width: 834px) and (min-height: 800px) {
  .fv {
    height: 80vh;
  }
}
.fv .inner {
  z-index: 1;
}
.fv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 150px;
  position: relative;
}
@media screen and (max-width: 1680px) {
  .fv__inner {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .fv__inner {
    padding-top: 150px;
  }
}
@media screen and (max-width: 834px) {
  .fv__inner {
    padding-top: 150px;
  }
}
@media (max-height: 550px) {
  .fv__inner {
    padding-top: 120px;
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv__inner {
    align-items: flex-start;
  }
}
.fv__ttl {
  width: 60%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 449px) {
  .fv__ttl {
    width: 100%;
    max-width: 100%;
  }
}
.fv__ttl-title {
  transform: translateY(-21.8vw);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
@media (max-height: 900px) {
  .fv__ttl-title {
    transform: translateY(-16.8vw);
  }
}
@media (max-height: 800px) and (min-width: 1200px) {
  .fv__ttl-title {
    transform: translate(4vw, -20vw);
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv__ttl-title {
    transform: translate(17vw, -11vw);
  }
}
@media (max-height: 900px) and (min-width: 2000px) {
  .fv__ttl-title {
    transform: translateY(-16.8vw);
  }
}
@media screen and (max-width: 640px) {
  .fv__ttl-title {
    transform: scale(1.3) translate(33%, -2.8vw);
  }
}
@media screen and (max-width: 499px) {
  .fv__ttl-title {
    transform: scale(1.3) translate(33%, -5%);
  }
}
@media screen and (max-width: 376px) {
  .fv__ttl-title {
    transform: scale(1.3) translate(33%, -77%);
  }
}
@media (max-height: 844px) and (max-width: 390px) {
  .fv__ttl-title {
    transform: translateY(-1.8vw);
  }
}
.fv__ttl-text-img {
  display: block;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.8s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1680px) {
  .fv__ttl-text-img {
    width: 550px;
  }
}
@media (max-height: 900px) {
  .fv__ttl-text-img {
    width: 400px;
  }
}
@media (max-height: 800px) and (min-width: 1200px) {
  .fv__ttl-text-img {
    width: 25vw;
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv__ttl-text-img {
    width: 20vw;
  }
}
.fv__ttl-text-img.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.fv__img {
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 184px;
  padding-left: 93px;
}
@media screen and (max-width: 834px) {
  .fv__img {
    padding-left: 50px;
  }
}
@media (max-width: 449px) {
  .fv__img {
    padding-left: 30px;
  }
}
.fv .fv-img-01 {
  width: 497px;
  align-self: flex-end;
  position: relative;
  z-index: 2;
  --parallax-y: 0px;
  transform: translate(30%, -30%) translateY(var(--parallax-y));
  opacity: 0;
  transition: transform 0.8s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fv .fv-img-01.is-visible {
  transform: translate(0, 0) translateY(var(--parallax-y));
  opacity: 1;
}
@media screen and (max-width: 640px) {
  .fv .fv-img-01.is-visible {
    transform: translate(-17%, -30%);
  }
}
@media screen and (max-width: 376px) {
  .fv .fv-img-01.is-visible {
    transform: translate(-11%, -49%);
  }
}
@media screen and (max-width: 1680px) {
  .fv .fv-img-01 {
    width: 32vw;
  }
}
@media (min-width: 1200px) and (max-height: 900px) {
  .fv .fv-img-01 {
    width: 26vw;
  }
}
@media screen and (max-width: 640px) {
  .fv .fv-img-01 {
    width: 40vw;
  }
}
@media (max-width: 449px) {
  .fv .fv-img-01 {
    width: 46vw;
  }
}
@media screen and (max-width: 376px) {
  .fv .fv-img-01 {
    width: 46vw;
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv .fv-img-01 {
    width: 32%;
  }
}
.fv .fv-img-02 {
  max-width: 228px;
  position: relative;
  z-index: 2;
  --parallax-y: 0px;
  transform: translate(-30%, 30%) translateY(var(--parallax-y));
  opacity: 0;
  transition: transform 0.8s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fv .fv-img-02.is-visible {
  transform: translate(0, 0) translateY(var(--parallax-y));
  opacity: 1;
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv .fv-img-02.is-visible {
    transform: translate(-30%, -50%);
  }
}
@media screen and (max-width: 640px) {
  .fv .fv-img-02.is-visible {
    transform: translate(-30%, -65%);
  }
}
@media screen and (max-width: 1680px) {
  .fv .fv-img-02 {
    max-width: 13vw;
  }
}
@media (min-width: 1200px) and (max-height: 900px) {
  .fv .fv-img-02 {
    max-width: 13vw;
  }
}
@media screen and (max-width: 640px) {
  .fv .fv-img-02 {
    max-width: 18vw;
  }
}
@media (max-width: 449px) {
  .fv .fv-img-02 {
    max-width: 20vw;
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv .fv-img-02 {
    max-width: 30%;
  }
}
.fv .fv-img-03 {
  max-width: 274px;
  position: absolute;
  top: 50%;
  right: 0%;
  --parallax-y: 0px;
  transform: translateY(calc(-50% + var(--parallax-y))) translateX(50%);
  opacity: 0;
  z-index: 3;
  transition: transform 0.8s 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fv .fv-img-03.is-visible {
  transform: translateY(calc(-50% + var(--parallax-y))) translateX(0);
  opacity: 1;
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv .fv-img-03.is-visible {
    transform: translate(-50%, -150%);
  }
}
@media (max-height: 900px) and (min-width: 2000px) {
  .fv .fv-img-03.is-visible {
    transform: translate(50%, -70%);
  }
}
@media screen and (max-width: 640px) {
  .fv .fv-img-03.is-visible {
    transform: translate(10%, -120%);
  }
}
@media screen and (max-width: 376px) {
  .fv .fv-img-03.is-visible {
    transform: translate(10%, -163%);
  }
}
@media screen and (max-width: 1680px) {
  .fv .fv-img-03 {
    max-width: 18vw;
  }
}
@media (min-width: 1200px) and (max-height: 900px) {
  .fv .fv-img-03 {
    max-width: 18vw;
  }
}
@media screen and (max-width: 640px) {
  .fv .fv-img-03 {
    max-width: 22vw;
  }
}
@media (max-width: 449px) {
  .fv .fv-img-03 {
    max-width: 24vw;
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv .fv-img-03 {
    max-width: 30%;
  }
}
.fv .fv-img-04 {
  max-width: 393px;
  --parallax-y: 0px;
  transform: translateX(-133px) translateY(calc(50px + var(--parallax-y)));
  opacity: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.8s 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fv .fv-img-04.is-visible {
  transform: translateX(-133px) translateY(var(--parallax-y));
  opacity: 1;
}
@media (min-width: 1200px) and (max-height: 900px) {
  .fv .fv-img-04.is-visible {
    max-width: 19vw;
    transform: translate(-80px) translateY(calc(-110px + var(--parallax-y)));
  }
}
@media (max-height: 800px) and (min-width: 1200px) {
  .fv .fv-img-04.is-visible {
    max-width: 15vw;
    transform: translate(-40%, -65%);
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv .fv-img-04.is-visible {
    transform: translate(-40%, -100%);
    max-width: 50%;
  }
}
@media (max-height: 900px) and (min-width: 2000px) {
  .fv .fv-img-04.is-visible {
    transform: translate(-28%, -40%);
  }
}
@media screen and (max-width: 1680px) {
  .fv .fv-img-04 {
    max-width: 25vw;
  }
}
@media screen and (max-width: 834px) {
  .fv .fv-img-04 {
    transform: translateX(-80px) translateY(calc(50px + var(--parallax-y)));
  }
  .fv .fv-img-04.is-visible {
    transform: translateX(-80px) translateY(var(--parallax-y));
  }
}
@media screen and (max-width: 834px) and (max-width: 640px) {
  .fv .fv-img-04.is-visible {
    transform: translate(-66%, -62%);
  }
}
@media screen and (max-width: 834px) and (max-width: 376px) {
  .fv .fv-img-04.is-visible {
    transform: translate(-66%, -114%);
  }
}
@media screen and (max-width: 640px) {
  .fv .fv-img-04 {
    max-width: 30vw;
  }
}
@media (max-width: 449px) {
  .fv .fv-img-04 {
    max-width: 32vw;
  }
}
@media screen and (max-width: 376px) {
  .fv .fv-img-04 {
    max-width: 32vw;
  }
}
.fv__banner {
  background-color: #85d2cd;
  border-radius: 20px 20px 0 0;
  padding: 3rem;
  color: var(--wh);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 2rem 4rem;
}
@media screen and (max-width: 1680px) {
  .fv__banner {
    max-width: 80%;
    padding: 2rem 2rem 2rem 4rem;
  }
}
@media screen and (max-width: 1500px) {
  .fv__banner {
    max-width: 80%;
    padding: 2rem 2rem 2rem 4rem;
  }
}
@media screen and (max-width: 1200px) {
  .fv__banner {
    max-width: 90%;
    padding: 2rem 2rem 2rem 3rem;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner {
    max-width: 100%;
    padding: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .fv__banner {
    max-width: 100%;
    padding: 1rem;
  }
}
.fv__banner-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.fv__banner-list-item {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3rem;
}
.fv__banner-list-item:not(:first-child) {
  padding-left: 4rem;
}
@media screen and (max-width: 1200px) {
  .fv__banner-list-item:not(:first-child) {
    gap: 2rem;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner-list-item:not(:first-child) {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .fv__banner-list-item:not(:first-child) {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 499px) {
  .fv__banner-list-item:not(:first-child) {
    gap: 1rem;
  }
}
@media screen and (max-width: 1680px) {
  .fv__banner-list-item {
    gap: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .fv__banner-list-item {
    gap: 2rem;
  }
}
@media screen and (max-width: 990px) {
  .fv__banner-list-item {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner-list-item {
    gap: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .fv__banner-list-item {
    padding-left: 0.5rem;
    flex-direction: column;
    padding-left: 0;
    gap: 2rem;
  }
}
.fv__banner-list-item:not(:last-child) {
  border-right: 1px dotted rgba(255, 255, 255, 0.5);
}
.fv__banner-title {
  writing-mode: vertical-lr;
  font-size: 18px;
  font-weight: 400;
  color: var(--bk);
  background-color: #cfefed;
  padding: 0 9px;
  text-align: center;
}
@media screen and (max-width: 990px) {
  .fv__banner-title {
    padding: 3px 3px;
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .fv__banner-title {
    font-size: 13px;
    padding: 1px 10px;
    writing-mode: horizontal-tb;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 376px) {
  .fv__banner-title {
    font-size: 12px;
    padding: 1px 10px;
    writing-mode: horizontal-tb;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.fv__banner-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fv__banner-text.--01 {
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  .fv__banner-text.--01 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 449px) {
  .fv__banner-text.--01 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .fv__banner-text.--01 span:first-of-type {
    font-size: 15px;
  }
}
@media screen and (max-width: 990px) {
  .fv__banner-text.--01 span:first-of-type {
    font-size: 14px;
  }
}
@media screen and (max-width: 499px) {
  .fv__banner-text.--01 span:first-of-type {
    font-size: 10px;
  }
}
.fv__banner-text.--01 .number {
  font-size: 48px;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .fv__banner-text.--01 .number {
    font-size: 4vw;
  }
}
.fv__banner-text.--02 {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 640px) {
  .fv__banner-text.--02 {
    position: relative;
    padding-top: 2.5rem;
    gap: 2px;
    margin: auto;
  }
}
@media (max-width: 449px) {
  .fv__banner-text.--02 {
    position: relative;
    padding-top: 1.5rem;
    gap: 2px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 376px) {
  .fv__banner-text.--02 {
    margin: auto;
  }
}
.fv__banner-text.--03 {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
@media screen and (max-width: 640px) {
  .fv__banner-text.--03 {
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
}
@media (max-width: 449px) {
  .fv__banner-text.--03 {
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
}
.fv__banner .number {
  font-size: 82.5px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .fv__banner .number {
    font-size: 72px;
  }
}
@media screen and (max-width: 990px) {
  .fv__banner .number {
    font-size: 64px;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner .number {
    font-size: 56px;
  }
}
@media screen and (max-width: 640px) {
  .fv__banner .number {
    font-size: 48px;
    line-height: 1;
  }
}
@media screen and (max-width: 376px) {
  .fv__banner .number {
    font-size: 40px;
  }
}
.fv__banner .ft32 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .fv__banner .ft32 {
    font-size: 28px;
  }
}
@media screen and (max-width: 990px) {
  .fv__banner .ft32 {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner .ft32 {
    font-size: 20px;
  }
}
@media screen and (max-width: 376px) {
  .fv__banner .ft32 {
    line-height: 1;
  }
}
.fv__banner .ft24 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .fv__banner .ft24 {
    font-size: 20px;
  }
}
@media screen and (max-width: 990px) {
  .fv__banner .ft24 {
    font-size: 18px;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner .ft24 {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .fv__banner .ft24 {
    font-size: 15px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 499px) {
  .fv__banner .ft24 {
    font-size: 13px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 376px) {
  .fv__banner .ft24 {
    font-size: 13px;
    margin: auto;
  }
}
.fv__banner .ft18 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .fv__banner .ft18 {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .fv__banner .ft18 {
    font-size: 14px;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner .ft18 {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .fv__banner .ft18 {
    font-size: 12px;
  }
}
.fv__banner-img {
  width: 50%;
  max-width: 85px;
  position: absolute;
  top: -23%;
  left: 26%;
}
@media screen and (max-width: 1680px) {
  .fv__banner-img {
    max-width: 6vw;
  }
}
@media screen and (max-width: 990px) {
  .fv__banner-img {
    max-width: 8vw;
  }
}
@media screen and (max-width: 834px) {
  .fv__banner-img {
    max-width: 9vw;
  }
}
@media screen and (max-width: 640px) {
  .fv__banner-img {
    max-width: 14vw;
    top: -40%;
    left: 24%;
  }
}
@media (max-width: 449px) {
  .fv__banner-img {
    max-width: 14vw;
    top: -40%;
    left: 24%;
  }
}
@media screen and (max-width: 376px) {
  .fv__banner-img {
    max-width: 14vw;
    top: -25%;
    top: -18%;
  }
}
@media (max-height: 844px) and (max-width: 390px) {
  .fv__banner-img {
    max-width: 14vw;
    top: -23%;
    left: 24%;
  }
}

.fv__slider {
  width: 100%;
  position: absolute;
  top: 25%;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
.fv__slider .fv__slider-container.--right-to .swiper-slide {
  font-size: 200px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  display: block;
  width: auto;
}
@media screen and (max-width: 1200px) {
  .fv__slider .fv__slider-container.--right-to .swiper-slide {
    font-size: 150px;
  }
}
@media screen and (max-width: 990px) {
  .fv__slider .fv__slider-container.--right-to .swiper-slide {
    font-size: 120px;
  }
}
@media screen and (max-width: 834px) {
  .fv__slider .fv__slider-container.--right-to .swiper-slide {
    font-size: 100px;
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv__slider .fv__slider-container.--right-to .swiper-slide {
    font-size: 100px;
  }
}
.fv__slider .fv__slider-container.--left-to .swiper-slide {
  display: block;
  width: auto;
  height: 145px;
}
@media screen and (max-width: 1200px) {
  .fv__slider .fv__slider-container.--left-to .swiper-slide {
    height: 120px;
  }
}
@media screen and (max-width: 990px) {
  .fv__slider .fv__slider-container.--left-to .swiper-slide {
    height: 100px;
  }
}
@media screen and (max-width: 834px) {
  .fv__slider .fv__slider-container.--left-to .swiper-slide {
    height: 80px;
  }
}
@media (max-height: 600px) and (min-width: 1200px) {
  .fv__slider .fv__slider-container.--left-to .swiper-slide {
    height: 68px;
  }
}
.fv__slider .fv__slider-container.--left-to .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* about */
.about {
  padding: 15rem 0 19.5rem;
  background: url(../img/top/about-acc.webp) no-repeat center;
  background-size: contain;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .about {
    padding: 10rem 0 15rem;
  }
}
@media screen and (max-width: 990px) {
  .about {
    padding: 8rem 0 12rem;
  }
}
@media screen and (max-width: 834px) {
  .about {
    padding: 6rem 0 10rem;
  }
}
@media screen and (max-width: 640px) {
  .about {
    padding: 4rem 0 4rem;
  }
}
.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}
@media screen and (max-width: 834px) {
  .about__inner {
    flex-direction: column;
    gap: 8rem;
  }
}
.about__img {
  position: relative;
}
.about__img-01 {
  max-width: 527px;
}
@media (max-width: 1400px) {
  .about__img-01 {
    max-width: 430px;
  }
}
@media screen and (max-width: 1200px) {
  .about__img-01 {
    max-width: 300px;
  }
}
@media screen and (max-width: 990px) {
  .about__img-01 {
    max-width: 230px;
  }
}
@media screen and (max-width: 834px) {
  .about__img-01 {
    max-width: 250px;
  }
}
@media screen and (max-width: 640px) {
  .about__img-01 {
    max-width: 200px;
  }
}
@media screen and (max-width: 376px) {
  .about__img-01 {
    max-width: 150px;
  }
}
.about__img-02 {
  width: 50%;
  max-width: 264px;
  position: absolute;
  bottom: -132px;
  right: -132px;
}
@media (max-width: 1400px) {
  .about__img-02 {
    max-width: 180px;
    bottom: -90px;
    right: -90px;
  }
}
@media screen and (max-width: 990px) {
  .about__img-02 {
    max-width: 150px;
    bottom: -75px;
    right: -75px;
  }
}
@media screen and (max-width: 834px) {
  .about__img-02 {
    max-width: 120px;
    bottom: -60px;
    right: -60px;
  }
}
@media screen and (max-width: 640px) {
  .about__img-02 {
    max-width: 100px;
    bottom: -50px;
    right: -50px;
  }
}
.about__ttl {
  max-width: 550px;
}
@media screen and (max-width: 834px) {
  .about__ttl {
    width: 100%;
    max-width: none;
  }
}
.about__ttl-text {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 834px) {
  .about__ttl-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .about__ttl-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 376px) {
  .about__ttl-text {
    font-size: 13px;
  }
}
.about__ttl-title {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1200px) {
  .about__ttl-title {
    font-size: 48px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 990px) {
  .about__ttl-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .about__ttl-title {
    font-size: 32px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .about__ttl-title {
    font-size: 28px;
  }
}
.about__ttl-title-s {
  display: block;
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .about__ttl-title-s {
    font-size: 28px;
  }
}
@media screen and (max-width: 990px) {
  .about__ttl-title-s {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .about__ttl-title-s {
    font-size: 20px;
  }
}
.about__ttl-paragraph {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5rem;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .about__ttl-paragraph {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .about__ttl-paragraph {
    font-size: 18px;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .about__ttl-paragraph {
    font-size: 16px;
    margin-bottom: 3rem;
  }
}
.about .bg-text-gradient {
  padding-top: 100px;
  font-size: 80px;
  line-height: 1.3;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .about .bg-text-gradient {
    font-size: 72px;
    padding-top: 70px;
  }
}
@media screen and (max-width: 990px) {
  .about .bg-text-gradient {
    font-size: 64px;
  }
}
@media screen and (max-width: 834px) {
  .about .bg-text-gradient {
    font-size: 56px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .about .bg-text-gradient {
    font-size: 36px;
  }
}
@media screen and (max-width: 376px) {
  .about .bg-text-gradient {
    font-size: 32px;
  }
}

/* salon */
.salon {
  padding: 0;
  background: url(../img/top/salon-bg.webp) no-repeat center;
  background-size: cover;
  color: var(--wh);
  padding-top: 7rem;
  /* HTML&CSS */
  /* SWIPER */
}
@media screen and (max-width: 1200px) {
  .salon {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 990px) {
  .salon {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .salon {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .salon {
    padding-top: 2rem;
  }
}
.salon__ttl {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 7rem 0 23rem;
}
@media screen and (max-width: 1200px) {
  .salon__ttl {
    padding: 5rem 0 20rem;
  }
}
@media screen and (max-width: 990px) {
  .salon__ttl {
    padding: 4rem 0 15rem;
  }
}
@media screen and (max-width: 834px) {
  .salon__ttl {
    padding: 3rem 0 12rem;
  }
}
@media screen and (max-width: 640px) {
  .salon__ttl {
    padding: 3rem 0 7rem;
    flex-direction: column;
    gap: 2rem;
  }
}
.salon__ttl-title {
  font-size: 80px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3rem;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .salon__ttl-title {
    font-size: 72px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 990px) {
  .salon__ttl-title {
    font-size: 64px;
    margin-bottom: 2rem;
    width: 40%;
  }
}
@media screen and (max-width: 834px) {
  .salon__ttl-title {
    font-size: 56px;
    margin-bottom: 2rem;
    width: 35%;
  }
}
@media screen and (max-width: 640px) {
  .salon__ttl-title {
    font-size: 48px;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
  }
}
.salon__ttl-title span {
  font-size: 32px;
  display: block;
  font-weight: 400;
  line-height: 2;
  font-family: "Inter", sans-serif;
  padding-left: 1rem;
}
@media screen and (max-width: 1200px) {
  .salon__ttl-title span {
    font-size: 28px;
  }
}
@media screen and (max-width: 990px) {
  .salon__ttl-title span {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .salon__ttl-title span {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .salon__ttl-title span {
    font-size: 18px;
    padding-left: 0;
  }
}
.salon__ttl-textbox {
  width: 50%;
  padding-top: 4rem;
}
@media screen and (max-width: 1200px) {
  .salon__ttl-textbox {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 990px) {
  .salon__ttl-textbox {
    padding-top: 2rem;
    width: 60%;
  }
}
@media screen and (max-width: 834px) {
  .salon__ttl-textbox {
    padding-top: 0;
    width: 65%;
  }
}
@media screen and (max-width: 640px) {
  .salon__ttl-textbox {
    padding-top: 0;
    width: 100%;
  }
}
.salon__ttl-subtitle {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .salon__ttl-subtitle {
    font-size: 36px;
  }
}
@media screen and (max-width: 990px) {
  .salon__ttl-subtitle {
    font-size: 32px;
  }
}
@media screen and (max-width: 834px) {
  .salon__ttl-subtitle {
    font-size: 28px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .salon__ttl-subtitle {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}
.salon__ttl-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1200px) {
  .salon__ttl-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .salon__ttl-text {
    font-size: 15px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .salon__ttl-text {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
}
.salon__slider {
  width: 100%;
}
.salon__slider-container {
  overflow: hidden;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 1200px) {
  .salon__slider-container {
    height: 360px;
  }
}
@media screen and (max-width: 640px) {
  .salon__slider-container {
    height: 240px;
  }
}
.salon__slider-list {
  display: flex;
  animation: autoSalonScroll var(--salon-scroll-duration, 30s) linear infinite;
  width: var(--salon-list-width, auto);
}
@media screen and (max-width: 1200px) {
  .salon__slider-list {
    animation-duration: 60s;
  }
}
.salon__slider-list .slide-wrapper.--01 {
  width: 360px;
  transform: translate(10%, 58%);
}
@media screen and (max-width: 1200px) {
  .salon__slider-list .slide-wrapper.--01 {
    width: 216px;
  }
}
@media screen and (max-width: 640px) {
  .salon__slider-list .slide-wrapper.--01 {
    width: 144px;
  }
}
.salon__slider-list .slide-wrapper.--02 {
  width: 576px;
  margin-right: 85px;
}
@media screen and (max-width: 1200px) {
  .salon__slider-list .slide-wrapper.--02 {
    width: 345.6px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 640px) {
  .salon__slider-list .slide-wrapper.--02 {
    width: 230.4px;
    margin-right: 30px;
  }
}
.salon__slider-list .slide-wrapper.--03 {
  width: 576px;
  transform: translate(0%, 58%);
  padding-right: 85px;
}
@media screen and (max-width: 1200px) {
  .salon__slider-list .slide-wrapper.--03 {
    width: 345.6px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 640px) {
  .salon__slider-list .slide-wrapper.--03 {
    width: 230.4px;
    padding-right: 30px;
  }
}
.salon__slider-list .slide-wrapper.--04 {
  width: 576px;
}
@media screen and (max-width: 1200px) {
  .salon__slider-list .slide-wrapper.--04 {
    width: 345.6px;
  }
}
@media screen and (max-width: 640px) {
  .salon__slider-list .slide-wrapper.--04 {
    width: 230.4px;
  }
}
.salon__slider-list .slide-wrapper.--05 {
  width: 360px;
  transform: translate(-25%, 50%);
}
@media screen and (max-width: 1200px) {
  .salon__slider-list .slide-wrapper.--05 {
    width: 216px;
  }
}
@media screen and (max-width: 640px) {
  .salon__slider-list .slide-wrapper.--05 {
    width: 144px;
  }
}
.salon__slider-list .slide-wrapper.--06 {
  width: 576px;
  transform: translate(-25%, 0);
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .salon__slider-list .slide-wrapper.--06 {
    width: 345.6px;
  }
}
@media screen and (max-width: 640px) {
  .salon__slider-list .slide-wrapper.--06 {
    width: 230.4px;
  }
}
.salon__slider-list .slide-wrapper.--07 {
  width: 576px;
  transform: translate(-10%, 35%);
}
@media screen and (max-width: 1200px) {
  .salon__slider-list .slide-wrapper.--07 {
    width: 345.6px;
  }
}
@media screen and (max-width: 640px) {
  .salon__slider-list .slide-wrapper.--07 {
    width: 230.4px;
  }
}
@keyframes autoSalonScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--salon-scroll-width, 1000px)));
  }
}

/* curriculum */
.curriculum {
  padding: 14rem 0 15rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .curriculum {
    padding: 10rem 0 18rem;
  }
}
@media screen and (max-width: 990px) {
  .curriculum {
    padding: 8rem 0 16rem;
  }
}
@media screen and (max-width: 834px) {
  .curriculum {
    padding: 6rem 0 12rem;
  }
}
@media screen and (max-width: 640px) {
  .curriculum {
    padding: 4rem 0 7rem;
  }
}
.curriculum__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .curriculum__inner {
    flex-direction: column;
    gap: 10rem;
  }
}
@media screen and (max-width: 990px) {
  .curriculum__inner {
    gap: 8rem;
  }
}
@media screen and (max-width: 834px) {
  .curriculum__inner {
    gap: 6rem;
  }
}
@media screen and (max-width: 640px) {
  .curriculum__inner {
    gap: 4rem;
  }
}
.curriculum__ttl {
  width: 100%;
  padding-right: 80px;
}
@media screen and (max-width: 1500px) {
  .curriculum__ttl {
    padding-right: 50px;
  }
}
@media (max-width: 1300px) {
  .curriculum__ttl {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .curriculum__ttl {
    padding-right: 50px;
  }
}
@media screen and (max-width: 990px) {
  .curriculum__ttl {
    padding-right: 40px;
  }
}
@media screen and (max-width: 834px) {
  .curriculum__ttl {
    padding-right: 0;
  }
}
.curriculum__ttl-text {
  font-weight: 600;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 834px) {
  .curriculum__ttl-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .curriculum__ttl-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 376px) {
  .curriculum__ttl-text {
    font-size: 13px;
  }
}
.curriculum__ttl-title {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 5rem;
}
@media (max-width: 1300px) {
  .curriculum__ttl-title {
    font-size: 46px;
  }
}
@media screen and (max-width: 1200px) {
  .curriculum__ttl-title {
    font-size: 46px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 990px) {
  .curriculum__ttl-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .curriculum__ttl-title {
    font-size: 32px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .curriculum__ttl-title {
    font-size: 28px;
  }
}
.curriculum__ttl-title span {
  display: block;
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .curriculum__ttl-title span {
    font-size: 28px;
  }
}
@media screen and (max-width: 990px) {
  .curriculum__ttl-title span {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .curriculum__ttl-title span {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .curriculum__ttl-title span {
    margin-bottom: 0;
  }
}
.curriculum__ttl-paragraph {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .curriculum__ttl-paragraph {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .curriculum__ttl-paragraph {
    font-size: 16px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .curriculum__ttl-paragraph {
    font-size: 15px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  .curriculum__img {
    position: relative;
  }
  .curriculum__img img {
    aspect-ratio: 3/2;
    -o-object-fit: contain;
    object-fit: cover;
    transform: translateX(9%);
  }
}
.curriculum__img .gr-block {
  background-color: #c3e4e2;
  width: 100%;
  max-width: 1200px;
  height: 600px;
  position: absolute;
  top: 50%;
  right: -23%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1680px) {
  .curriculum__img .gr-block {
    max-width: 50vw;
    height: 500px;
    right: -5%;
  }
}
@media screen and (max-width: 1500px) {
  .curriculum__img .gr-block {
    max-width: 53vw;
    height: 500px;
    right: -5%;
  }
}
@media (max-width: 1300px) {
  .curriculum__img .gr-block {
    max-width: 56vw;
    height: 500px;
    right: -5%;
  }
}
@media screen and (max-width: 1200px) {
  .curriculum__img .gr-block {
    max-width: 100%;
    height: 100%;
    right: 0;
    transform: translateY(-40%);
  }
}
@media screen and (max-width: 990px) {
  .curriculum__img .gr-block {
    right: 0;
  }
}
@media screen and (max-width: 834px) {
  .curriculum__img .gr-block {
    right: 0;
  }
}
@media screen and (max-width: 640px) {
  .curriculum__img .gr-block {
    right: 0;
  }
}

/* career */
.career {
  padding: 32.5rem 0;
  color: var(--wh);
  background: url(../img/top/career-acc.webp) no-repeat center;
  background-size: 100%;
  position: relative;
  overflow: hidden;
  background-color: #85d2cd;
}
@media screen and (max-width: 1200px) {
  .career {
    padding: 12rem 0 10rem;
  }
}
@media screen and (max-width: 990px) {
  .career {
    padding: 10rem 0 8rem;
  }
}
@media screen and (max-width: 834px) {
  .career {
    padding: 8rem 0 6rem;
  }
}
@media screen and (max-width: 640px) {
  .career {
    padding: 6rem 0 6rem;
  }
}
@media screen and (max-width: 834px) {
  .career__inner {
    position: relative;
    z-index: 1;
  }
}
.career__ttl {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .career__ttl {
    max-width: 380px;
  }
}
.career__ttl-text {
  font-weight: 600;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 834px) {
  .career__ttl-text {
    font-size: 15px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .career__ttl-text {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 376px) {
  .career__ttl-text {
    font-size: 13px;
    margin-bottom: 1rem;
  }
}
.career__ttl-title {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .career__ttl-title {
    font-size: 48px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 990px) {
  .career__ttl-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .career__ttl-title {
    font-size: 32px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .career__ttl-title {
    font-size: 28px;
  }
}
.career__ttl-title span {
  justify-content: center;
}
.career__ttl-paragraph {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 5rem;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .career__ttl-paragraph {
    margin-bottom: 4rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .career__ttl-paragraph {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .career__ttl-paragraph {
    font-size: 15px;
    margin-bottom: 2rem;
  }
}
.career .link-btn-gr {
  margin: auto;
}
.career-grid {
  width: 100%;
  max-width: 1530px;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(12, 1fr);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media (max-width: 1300px) {
  .career-grid {
    max-width: 95vw;
  }
}
@media screen and (max-width: 834px) {
  .career-grid {
    opacity: 0.3;
    grid-template-rows: repeat(13, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .career-grid {
    grid-template-rows: repeat(16, 1fr);
  }
}
.career-grid .career-img-01 {
  grid-column: 2/4;
  grid-row: 4/5;
  max-width: 100%;
}
@media screen and (max-width: 834px) {
  .career-grid .career-img-01 {
    grid-column: 5/8;
    grid-row: 2/5;
  }
}
@media screen and (max-width: 640px) {
  .career-grid .career-img-01 {
    grid-column: 5/8;
    grid-row: 3/7;
  }
}
@media screen and (max-width: 376px) {
  .career-grid .career-img-01 {
    grid-column: 5/8;
    grid-row: 3/5;
  }
}
.career-grid .career-img-02 {
  grid-column: 1/5;
  grid-row: 6/9;
  max-width: 100%;
}
@media (max-width: 1300px) {
  .career-grid .career-img-02 {
    grid-column: 1/5;
  }
}
@media screen and (max-width: 834px) {
  .career-grid .career-img-02 {
    grid-column: 5/9;
    grid-row: 6/9;
  }
}
@media screen and (max-width: 640px) {
  .career-grid .career-img-02 {
    grid-column: 1/8;
    grid-row: 9/13;
  }
}
@media screen and (max-width: 376px) {
  .career-grid .career-img-02 {
    grid-column: 1/10;
    grid-row: 8/14;
  }
}
.career-grid .career-img-03 {
  grid-column: 12/16;
  grid-row: 4/7;
  max-width: 100%;
}
@media (max-width: 1300px) {
  .career-grid .career-img-03 {
    grid-column: 13/17;
  }
}
@media screen and (max-width: 834px) {
  .career-grid .career-img-03 {
    display: none;
  }
}
.career-grid .career-img-04 {
  grid-column: 15/17;
  grid-row: 8/10;
  max-width: 100%;
}
@media screen and (max-width: 834px) {
  .career-grid .career-img-04 {
    grid-column: 11/14;
    grid-row: 9/12;
  }
}
@media screen and (max-width: 640px) {
  .career-grid .career-img-04 {
    grid-column: 11/16;
    grid-row: 12/12;
  }
}
@media screen and (max-width: 376px) {
  .career-grid .career-img-04 {
    grid-column: 11/16;
    grid-row: 13/14;
  }
}
.career-grid .career-img-05 {
  grid-column: 10/12;
  grid-row: 10/12;
  max-width: 100%;
}
@media screen and (max-width: 834px) {
  .career-grid .career-img-05 {
    grid-column: 3/6;
    grid-row: 11/13;
  }
}
@media screen and (max-width: 640px) {
  .career-grid .career-img-05 {
    grid-column: 2/5;
    grid-row: 15/16;
  }
}
@media screen and (max-width: 376px) {
  .career-grid .career-img-05 {
    grid-column: 9/13;
    grid-row: 15/16;
  }
}
.career-item img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.career-item img.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-item.career-img-01 img {
  transition-delay: 0.1s;
}
.career-item.career-img-02 img {
  transition-delay: 0.2s;
}
.career-item.career-img-03 img {
  transition-delay: 0.3s;
}
.career-item.career-img-04 img {
  transition-delay: 0.4s;
}
.career-item.career-img-05 img {
  transition-delay: 0.5s;
}

/* interview */
.interview {
  padding: 15rem 0;
}
@media screen and (max-width: 1200px) {
  .interview {
    padding: 10rem 0;
  }
}
@media screen and (max-width: 990px) {
  .interview {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 834px) {
  .interview {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 640px) {
  .interview {
    padding: 4rem 0;
  }
}
.interview__content-inner {
  position: relative;
}
.interview__content .gr-block {
  width: 80vw;
  max-width: 1480px;
  height: 100%;
  max-height: 613px;
  background-color: #c3e4e2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px) {
  .interview__content .gr-block {
    width: 80vw;
    max-height: 500px;
  }
}
@media screen and (max-width: 834px) {
  .interview__content .gr-block {
    width: 95vw;
  }
}
@media screen and (max-width: 640px) {
  .interview__content .gr-block {
    max-height: 250px;
  }
}
.interview__slider-container {
  width: 100%;
  overflow: hidden;
}
.interview__slider .swiper-wrapper {
  width: 100%;
  align-items: center;
}
.interview__slider .slide-wrapper {
  width: 100%;
  aspect-ratio: 1127/578;
}
@media screen and (max-width: 640px) {
  .interview__slider .slide-wrapper {
    aspect-ratio: 1128/715;
  }
}
.interview__slider .slide-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .interview__slider .slide-wrapper img {
    -o-object-position: 75% center;
       object-position: 75% center;
  }
}
.interview__slider .swiper-slide-active .slide-ttl {
  display: block;
}
.interview__slider .swiper-slide-prev {
  transform: translateY(-100px);
}
.interview__slider .swiper-slide-next {
  transform: translateY(100px);
}
.interview__slider .slide-ttl {
  color: var(--wh);
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translateY(-50%);
  display: none;
}
@media screen and (max-width: 640px) {
  .interview__slider .slide-ttl {
    top: 50%;
    left: 2rem;
  }
  .interview__slider .slide-ttl .link-btn-gr {
    max-width: 130px;
    padding: 1rem 1rem 1rem 2rem;
  }
  .interview__slider .slide-ttl .link-btn-gr .text {
    font-size: 11px;
  }
  .interview__slider .slide-ttl .link-btn-gr .btn--view-more {
    max-width: 27px;
    height: 15px;
  }
}
@media screen and (max-width: 499px) {
  .interview__slider .slide-ttl .link-btn-gr {
    width: 120px;
    height: 35px;
    padding: 1rem 1rem 1rem 1.3rem;
  }
  .interview__slider .slide-ttl .link-btn-gr .text {
    font-size: 10px;
  }
}
.interview__slider .slide-heading {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 3rem;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1200px) {
  .interview__slider .slide-heading {
    font-size: 36px;
  }
}
@media screen and (max-width: 990px) {
  .interview__slider .slide-heading {
    font-size: 28px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .interview__slider .slide-heading {
    font-size: 24px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .interview__slider .slide-heading {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 499px) {
  .interview__slider .slide-heading {
    font-size: 16px;
  }
}
@media screen and (max-width: 376px) {
  .interview__slider .slide-heading {
    font-size: 15px;
  }
}
.interview__slider .slide-type {
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .interview__slider .slide-type {
    font-size: 12px;
  }
}
@media screen and (max-width: 499px) {
  .interview__slider .slide-type {
    font-size: 10px;
  }
}
.interview__slider .slide-name {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .interview__slider .slide-name {
    font-size: 22px;
  }
}
@media screen and (max-width: 990px) {
  .interview__slider .slide-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 834px) {
  .interview__slider .slide-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interview__slider .slide-name {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 376px) {
  .interview__slider .slide-name {
    font-size: 14px;
  }
}
.interview__ttl {
  text-align: center;
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (max-width: 834px) {
  .interview__ttl {
    padding-bottom: 3rem;
  }
}
.interview__ttl-text {
  font-weight: 600;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 834px) {
  .interview__ttl-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .interview__ttl-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 376px) {
  .interview__ttl-text {
    font-size: 13px;
  }
}
.interview__ttl-title {
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 5rem;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .interview__ttl-title {
    font-size: 72px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 990px) {
  .interview__ttl-title {
    font-size: 64px;
  }
}
@media screen and (max-width: 834px) {
  .interview__ttl-title {
    font-size: 56px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .interview__ttl-title {
    font-size: 48px;
  }
}
@media screen and (max-width: 376px) {
  .interview__ttl-title {
    font-size: 36px;
  }
}
.interview__ttl-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.interview__ttl-title .char.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.interview__ttl-paragraph {
  line-height: 2;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .interview__ttl-paragraph {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .interview__ttl-paragraph {
    font-size: 15px;
  }
}
@media screen and (max-width: 376px) {
  .interview__ttl-paragraph {
    font-size: 14px;
  }
}
.interview__ttl .bg-text-gradient {
  font-size: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .interview__ttl .bg-text-gradient {
    font-size: 120px;
  }
}
@media screen and (max-width: 990px) {
  .interview__ttl .bg-text-gradient {
    font-size: 100px;
  }
}
@media screen and (max-width: 834px) {
  .interview__ttl .bg-text-gradient {
    font-size: 80px;
  }
}
@media screen and (max-width: 640px) {
  .interview__ttl .bg-text-gradient {
    font-size: 60px;
  }
}
@media screen and (max-width: 376px) {
  .interview__ttl .bg-text-gradient {
    font-size: 48px;
  }
}

/* benefit */
.benefit {
  position: relative;
  padding-top: 100px;
  margin-top: -100px;
}
.benefit__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 17rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1200px) {
  .benefit__inner {
    padding-bottom: 12rem;
  }
}
@media screen and (max-width: 990px) {
  .benefit__inner {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 834px) {
  .benefit__inner {
    padding-bottom: 4rem;
    flex-direction: column;
    gap: 4rem;
  }
  .benefit__inner .link-btn-gr {
    margin-left: auto;
  }
}
@media screen and (max-width: 640px) {
  .benefit__inner {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 376px) {
  .benefit__inner {
    padding-bottom: 2rem;
  }
}
.benefit__ttl {
  padding-right: 138px;
  background: url(../img/top/benefit-acc.webp) no-repeat 100% 0%;
  background-size: 70%;
}
@media screen and (max-width: 1200px) {
  .benefit__ttl {
    padding-right: 60px;
  }
}
@media screen and (max-width: 990px) {
  .benefit__ttl {
    padding-right: 40px;
  }
}
@media screen and (max-width: 834px) {
  .benefit__ttl {
    padding-right: 0;
  }
}
.benefit__ttl-text {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 834px) {
  .benefit__ttl-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .benefit__ttl-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 376px) {
  .benefit__ttl-text {
    font-size: 13px;
  }
}
.benefit__ttl-title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 1200px) {
  .benefit__ttl-title {
    font-size: 56px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 990px) {
  .benefit__ttl-title {
    font-size: 48px;
  }
}
@media screen and (max-width: 834px) {
  .benefit__ttl-title {
    font-size: 40px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .benefit__ttl-title {
    font-size: 32px;
  }
}
.benefit__ttl-title-text {
  display: block;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .benefit__ttl-title-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 990px) {
  .benefit__ttl-title-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .benefit__ttl-title-text {
    margin-bottom: 1.5rem;
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .benefit__ttl-title-text {
    margin-bottom: 0;
  }
}
.benefit__ttl-paragraph {
  line-height: 2;
  font-weight: 600;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .benefit__ttl-paragraph {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .benefit__ttl-paragraph {
    font-size: 15px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .benefit__ttl-paragraph {
    font-size: 14px;
    margin-bottom: 2rem;
  }
}
.benefit .bg-acc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  stroke: #e6f2f2;
  fill: #e6f2f2;
}

/* company */
.company {
  padding: 11rem 0 13rem;
}
@media screen and (max-width: 1200px) {
  .company {
    padding: 8rem 0 10rem;
  }
}
@media screen and (max-width: 990px) {
  .company {
    padding: 8rem 0 8rem;
  }
}
@media screen and (max-width: 834px) {
  .company {
    padding: 8rem 0 6rem;
  }
}
@media screen and (max-width: 640px) {
  .company {
    padding: 6rem 0 5rem;
  }
}
.company__inner {
  padding-bottom: 10rem;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .company__inner {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 990px) {
  .company__inner {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 834px) {
  .company__inner {
    border-bottom: none;
    padding-bottom: 5rem;
    flex-direction: column;
    gap: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .company__inner {
    padding-bottom: 3rem;
    gap: 3rem;
  }
}
.company__ttl {
  text-align: center;
}
.company__ttl-text {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 834px) {
  .company__ttl-text {
    font-size: 15px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .company__ttl-text {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 376px) {
  .company__ttl-text {
    font-size: 13px;
  }
}
.company__ttl-title {
  font-size: 40px;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .company__ttl-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 990px) {
  .company__ttl-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 834px) {
  .company__ttl-title {
    font-size: 28px;
  }
}
.company__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
  max-width: 700px;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .company__list {
    max-width: 500px;
  }
}
@media screen and (max-width: 640px) {
  .company__list {
    gap: 1.5rem;
  }
}
.company__list-item {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  width: calc(50% - 2rem);
}
@media screen and (max-width: 640px) {
  .company__list-item {
    padding-bottom: 1rem;
    font-size: 16px;
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 376px) {
  .company__list-item {
    font-size: 14px;
  }
}
.company__list-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company__list-item .link--view-more {
  background-color: transparent;
}
.company__list-item .link--view-more .arrow-svg {
  stroke: var(--bk);
  fill: var(--bk);
}
.company .btn--view-more {
  background-color: transparent;
  width: 100%;
  max-width: 43px;
  height: 22px;
}
.company .btn--view-more::before {
  background-image: url("../img/common/arrow.svg");
}

/* requirements */
.requirements {
  background-color: #edf3f2;
  padding: 11rem 0 13rem;
}
@media screen and (max-width: 1200px) {
  .requirements {
    padding: 8rem 0 10rem;
  }
}
@media screen and (max-width: 990px) {
  .requirements {
    padding: 6rem 0 8rem;
  }
}
@media screen and (max-width: 834px) {
  .requirements {
    padding: 4rem 0 6rem;
  }
}
@media screen and (max-width: 640px) {
  .requirements {
    padding: 3rem 0 5rem;
  }
}
.requirements__ttl {
  text-align: center;
}
.requirements__ttl-text {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .requirements__ttl-text {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .requirements__ttl-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .requirements__ttl-text {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 376px) {
  .requirements__ttl-text {
    font-size: 13px;
  }
}
.requirements__ttl-title {
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .requirements__ttl-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 990px) {
  .requirements__ttl-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 834px) {
  .requirements__ttl-title {
    font-size: 28px;
  }
}
.requirements__list {
  margin-top: 7rem;
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  .requirements__list {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 990px) {
  .requirements__list {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .requirements__list {
    margin-top: 3rem;
  }
}
.requirements__list-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding: 3rem 0;
}
.requirements__list-item:nth-of-type(1) {
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 834px) {
  .requirements__list-item {
    padding: 2rem 0;
  }
}
.requirements__list-subject {
  font-size: 18px;
  font-weight: 600;
  width: 30%;
  max-width: 220px;
  white-space: nowrap;
  padding-left: 5rem;
}
@media screen and (max-width: 834px) {
  .requirements__list-subject {
    max-width: 120px;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .requirements__list-subject {
    max-width: 100px;
    font-size: 16px;
    padding-left: 1rem;
  }
}
@media (max-width: 376px) {
  .requirements__list-subject {
    padding-left: 0;
    width: 100px;
    flex-shrink: 0;
  }
}
.requirements__list-desc {
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  .requirements__list-desc {
    font-size: 14px;
  }
}/*# sourceMappingURL=top.css.map */