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

/* ====================================================
Under
==================================================== */
.under {
  padding: 27rem 0 20rem;
  background-color: #e4f0ee;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .under {
    padding: 20vw 0 15vw;
  }
}
@media screen and (max-width: 834px) {
  .under {
    padding: 30vw 0 10vw;
  }
}
@media screen and (max-width: 640px) {
  .under {
    padding: 40vw 0 10vw;
  }
}
@media screen and (max-width: 376px) {
  .under {
    padding: 40vw 0 10vw;
  }
}
.under__fv {
  padding: 0 10vw;
}
.under__fv-heading {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .under__fv-heading {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .under__fv-heading {
    font-size: 12px;
  }
}
.under__fv-text {
  font-size: 120px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .under__fv-text {
    font-size: 10vw;
  }
}
.under__ttl {
  text-align: center;
  padding-top: 12rem;
}
@media screen and (max-width: 1200px) {
  .under__ttl {
    padding-top: 12vw;
  }
}
.under__ttl-iiner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 834px) {
  .under__ttl-iiner {
    padding-top: 6rem;
    gap: 3rem;
  }
}
.under__ttl-heading {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4rem;
}
@media screen and (max-width: 834px) {
  .under__ttl-heading {
    font-size: 24px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .under__ttl-heading {
    font-size: 20px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 376px) {
  .under__ttl-heading {
    font-size: 18px;
  }
}
.under__ttl-text {
  font-size: 18px;
  margin-bottom: 8rem;
}
@media screen and (max-width: 834px) {
  .under__ttl-text {
    font-size: 16px;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .under__ttl-text {
    font-size: 14px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 376px) {
  .under__ttl-text {
    font-size: 12px;
  }
}/*# sourceMappingURL=under.css.map */