@charset "utf-8";

/*-------------------------------------
変数
-------------------------------------*/

:root {
  --NotoSansJP: "Noto Sans JP", sans-serif;
  --Oswald: "Oswald", sans-serif;
}





/*-------------------------------------
共通
-------------------------------------*/

/********************/
/* タグ */
/********************/

.body {
  font-family: var(--NotoSansJP);
  line-height: 1.6;
  color: #000;
}
.body.no-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

figure {
  margin: 0;
}



/********************/
/* PC版とsp版で表示非表示の切り替え */
/********************/

.sp-only {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}



/********************/
/* スマホはタップで通話できるが、PCではクリックさせない */
/********************/

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}



/********************/
/* ボタン */
/********************/

a {
  display: block;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  display: block;
  transition: all 0.3s;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.7;
  }
}



/********************/
/* インナー */
/********************/

/* コンテンツ1000px */
.common-inner {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: min(calc(100vw / 375 * 20), 20px);
}

/* コンテンツ1240px */
.common-wideInner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: min(calc(100vw / 375 * 20), 20px);
}



/********************/
/* タイトル */
/********************/

.common-titleZone {
  display: flex;
  flex-direction: column;
}
.common-titleZone--center {
  align-items: center;
}
.common-titleZone--left {
  align-items: flex-start;
}

.common-title {
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 120), 120px);
  line-height: calc(178 / 120);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.common-title::before {
  position: absolute;
  bottom: 5px;
  content: "";
  height: 40px;
  z-index: -1;
}
.common-titleZone--center .common-title::before {
  width: calc(100% - 60px);
  left: 50%;
  transform: translateX(-50%);
}
.common-titleZone--left .common-title::before {
  width: calc(100% - 10px);
  left: -22px;
}
.common-title--red::before {
  background-color: #FF3E51;
}
.common-title--blue::before {
  background-color: #3EE5FF;
}
.common-title--pink::before {
  background-color: #FF73E6;
}

.common-title::after {
  position: absolute;
  top: 6px;
  left: -8px;
  content: attr(data-en);
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 120), 120px);
  line-height: calc(178 / 120);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  z-index: -1;
}

@media screen and (max-width: 767.98px) {
  .common-title {
    font-size: min(calc(100vw / 375 * 66), 66px);
  }
  .common-titleZone--left .common-title::before {
    bottom: 2px;
    left: -20px;
    width: 100%;
    height: 20px;
  }
  .common-titleZone--center .common-title::before {
    width: calc(100% - 30px);
    height: 20px;
  }
  .common-title::after {
    top: 4px;
    left: -6px;
    font-size: min(calc(100vw / 375 * 66), 66px);
  }
}



/********************/
/* アニメーション */
/********************/

.common-title::before {
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  transition: all 1s;
}
.common-title.is-active::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.js-slideLeft::before {
  transform: translateX(-100%);
  transition: all 1s;
}
.js-slideLeft.is-active::before {
  transform: translateX(0);
}

.js-slideRight::before {
  transform: translateX(100%);
  transition: all 1s;
}
.js-slideRight.is-active::before {
  transform: translateX(0);
}

.js-slideUp::before {
  transform: translateY(100%);
  transition: all 1s;
}
.js-slideUp.is-active::before {
  transform: translateY(0);
}

.js-bgAnime01 {
  animation: floating 3s ease-in-out infinite;
}
.js-bgAnime02 {
  animation: floating 2.7s ease-in-out infinite;
}
@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.js-bgAnime01.js-rotating::before {
  animation: rotating 15s linear infinite;
}
.js-bgAnime02.js-rotating::before {
  animation: rotating 25s linear infinite;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.js-order-fadeChild {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
}

.js-tab-area {
	display: none;
	opacity: 0;
}
.js-tab-area.is-active {
  display: block;
  animation-name: tabAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes tabAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.js-accordion-content {
  display: none;
}





/*-------------------------------------
ヘッダー
-------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  z-index: 999;
}
.header::before {
    position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.header.is-active::before {
  opacity: 1;
}

.header__inner {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-left: min(calc(100vw / 1440 * 50), 50px);
  padding-right: min(calc(100vw / 1440 * 50), 50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 155px;
  height: auto;
  aspect-ratio: 155 / 40;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  position: relative;
  z-index: 9999;
}

.header__logo-link {
  position: relative;
  width: 100%;
  height: 100%;
}

.header__menu {
  height: 100%;
  display: flex;
}

.header__nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.header__nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: min(calc(100vw / 1440 * 25), 25px);
}

.header__nav-item {
  position: relative;
}

.header__nav-item--contact {
  margin-left: 5px;
}

.header__nav-link {
  display: inline-block;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 16), 16px);
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
  color: #000;
  text-transform: uppercase;
}

.header__nav-link--contact {
  padding: min(calc(100vw / 1440 * 5.5), 5.5px) min(calc(100vw / 1440 * 36), 36px);
  border: 1px solid #000;
  border-radius: 20px;
}

.hamburger {
  display: none;
}


@media screen and (max-width: 767.98px) {

  .header {
    height: 58px;
  }

  .header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__logo {
    padding-top: 3px;
    width: 123px;
    height: auto;
    aspect-ratio: 123 / 30;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 70px;
    padding-bottom: 80px;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
  }
  .header__menu.is-active {
    background-color: #fff;
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    width: 100%;
    height: 100%;
    padding-top: 20px;
    align-items: flex-start;
    overflow: auto;
  }

  .header__nav-list {
    width: 100%;
    height: auto;
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
  }

  .header__nav-item {
    width: 100%;
    text-align: center;
  }
  .header__nav-item:not(:last-child) {
    margin-bottom: 25px;
  }
  .header__nav-item:first-child {
    margin-top: 30px;
  }
  .header__nav-item--contact {
    margin-left: 0;
  }

  .header__nav-link {
    font-size: 16px;
  }

  .header__nav-link--contact {
    display: block;
    width: 260px;
    margin-inline: auto;
    padding: 10.5px 0;
    border-radius: 25px;
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 21px;
    right: 20px;
    width: 28px;
    height: 16px;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 9999;
  }

  .hamburger__line-zone {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hamburger__line {
    display: inline-block;
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s;
  }
  .hamburger__line:nth-child(1) {
    top: 0;
  }
  .hamburger__line:nth-child(2) {
    top: 8px;
  }
  .hamburger.is-active .hamburger__line:nth-child(1) {
    top: 4px;
    transform: rotate(-45deg);
  }
  .hamburger.is-active .hamburger__line:nth-child(2) {
    top: 4px;
    transform: rotate(45deg);
  }

}





/*-------------------------------------
fv
-------------------------------------*/

.fv {
  padding-top: 6.2vw;
  padding-bottom: 5vw;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.fv::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 2880 / 1710;
  background: linear-gradient(to bottom right, #FFBC5E 0%, #FF3E51 100%);
  z-index: -1;
}

.fv__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  z-index: -999;
}

.fv__message {
  margin-top: calc(100vw / 1440 * 30);
  margin-bottom: calc(100vw / 1440 * 43);
  margin-inline: auto;
  width: calc(100vw / 1440 * 710);
}

/* スライダー全体 */
.fv__slider-wrapper {
  display: flex;
  overflow: visible;
  width: 100%;
  pointer-events: none;
}

/* スライド8枚のグループ */
.fv__slider {
  display: flex;
}
.fv__slider.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* スライド */
.fv__slide {
  position: relative;
  width: calc(100vw / 1440 * 213.63);
  margin-right: calc(100vw / 1440 * 30);
  flex-shrink: 0;
}

/* スライドのメディア（画像・動画共通） */
.fv__media,
.fv__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 213.63 / 285;
  border-radius: calc(100vw / 1440 * 15);
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* 動画を画像の上に重ねる */
.fv__media--video {
  position: absolute;
  top: 0;
  left: 0;
}

/* 動画再生中のスタイル（keyframesアニメーションで拡大） */
.is-playing video {
  animation: fvZoomIn 0.5s ease forwards;
}
@keyframes fvZoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.13);
  }
}


.fv__deco01 {
  position: absolute;
  top: 23%;
  left: 4.5%;
  width: 22%;
  height: auto;
  aspect-ratio: 689 / 685;
  z-index: -1;
}
.fv__deco01::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/fv_deco01.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.fv__deco02 {
  position: absolute;
  top: 54%;
  left: -1.5%;
  width: 13%;
  height: auto;
  aspect-ratio: 196 / 113;
  z-index: -1;
}
.fv__deco02::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/fv_deco02.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.fv__deco03 {
  position: absolute;
  top: 46%;
  right: 14%;
  width: 11%;
  height: auto;
  aspect-ratio: 1 / 1;
  z-index: -1;
}
.fv__deco03::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/fv_deco03.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.fv__deco04 {
  position: absolute;
  top: 22%;
  right: -1%;
  width: 22%;
  height: auto;
  aspect-ratio: 1 / 1;
  z-index: -1;
}
.fv__deco04::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/fv_deco04.webp);
  background-repeat: no-repeat;
  background-size: contain;
}


@media screen and (max-width: 767.98px) {

  .fv {
    padding-top: 16vw;
  }
  .fv::before {
    aspect-ratio: 75 / 110;
  }

  .fv__message {
    margin-top: calc(100vw / 375 * 26);
    margin-bottom: calc(100vw / 375 * 35);
    width: calc(100vw / 375 * 350);
    padding-left: 10px;
  }

  .fv__slide {
    width: calc(100vw / 375 * 153.72);
    margin-right: calc(100vw / 375 * 21.59);
  }

  .fv__media,
  .fv__video {
    border-radius: calc(100vw / 375 * 11);
  }

  .fv__deco01 {
    top: 27%;
    left: 2%;
    width: 40%;
  }
  .fv__deco02 {
    top: 62%;
    left: -5.5%;
    width: 21%;
  }
  .fv__deco03 {
    top: 54%;
    right: 4%;
    width: 18%;
  }
  .fv__deco04 {
    top: 38%;
    right: -13%;
    width: 35%;
  }

}





/*-------------------------------------
lead
-------------------------------------*/

.lead-message {
  margin-top: calc(-100vw / 1440 * 152);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.lead-message::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 84%;
  background-image:
    repeating-linear-gradient(0deg, #DCE3E7 0px, #DCE3E7 1px, transparent 1px, transparent 15px),
    repeating-linear-gradient(90deg, #DCE3E7 0px, #DCE3E7 1px, transparent 1px, transparent 15px);
  background-size: 15px 15px;
  z-index: -1;
}

.lead {
  padding-top: calc(82px + calc(100vw / 1440 * 70));
  padding-bottom: 64px;
}

.lead .common-inner {
  position: relative;
  z-index: 1;
}
.lead__deco01 {
  position: absolute;
  bottom: -160px;
  left: -14%;
  width: min(calc(100vw / 1280 * 331), 331px);
  height: auto;
  aspect-ratio: 1 / 1;
  z-index: -1;
}
.lead__deco01::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/lead_deco01.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
.lead__deco02 {
  position: absolute;
  top: 0;
  right: -9%;
  width: min(calc(100vw / 1280 * 298), 298px);
  height: auto;
  aspect-ratio: 298 / 279;
  z-index: -1;
}
.lead__deco02::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/lead_deco02.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.lead__text {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.lead__text:not(:first-child) {
  margin-top: 30px;
}
.lead__text .red {
  font-weight: 900;
  color: #EB0008;
}


@media screen and (max-width: 1279.98px) {
  .lead__deco01 {
    left: 0;
  }
  .lead__deco02 {
    right: 0;
  }
}


@media screen and (max-width: 767.98px) {
  .lead-message {
    margin-top: calc(-100vw / 375 * 75);
  }
  .lead-message::before {
    height: calc(750px + calc(100vw / 375 * 92));
  }

  .lead {
    padding-top: calc(55px + calc(100vw / 375 * 70));
    padding-bottom: 45px;
  }
  .lead__deco01 {
    bottom: -40px;
    width: min(calc(100vw / 375 * 140), 140px);
  }
  .lead__deco02 {
    top: -68px;
    right: 2%;
    width: min(calc(100vw / 375 * 126), 126px);
  }

  .lead__text {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
  .lead__text:not(:first-child) {
    margin-top: 24px;
  }
}





/*-------------------------------------
message
-------------------------------------*/

.message .common-wideInner {
  position: relative;
  z-index: 2;
}
.message .common-inner {
  position: relative;
  z-index: 1;
}

.message__flex {
  margin-top: -40px;
  display: flex;
  column-gap: min(calc(100vw / 1280 * 117), 117px);
  position: relative;
  z-index: 1;
}
.message__flex::before {
  position: absolute;
  bottom: 0;
  right: 52%;
  content: "";
  width: 50vw;
  height: 84%;
  background: linear-gradient(135deg, #FFBC5E 0%, #FF3E51 100%);
  border: 3px solid #000;
  border-left: none;
  border-radius: 0 100px 100px 0;
  z-index: -1;
}

.message__image {
  width: 40%;
}

.message__body {
  flex: 1;
}

.message__body-catch {
  width: min(calc(100vw / 1280 * 431), 431px);
}

.message__body-textZone {
  margin-top: 38px;
}

.message__body-text {
  font-weight: 500;
  font-size: min(calc(100vw / 1000 * 16), 16px);
  line-height: 1.8;
}
.message__body-text:not(:first-child) {
  margin-top: 30px;
}

.message__body-personZone {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.message__body-personName {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
}


@media screen and (max-width: 767.98px) {

  .message__flex {
    margin-top: -26px;
    flex-direction: column;
  }
  .message__flex::before {
    bottom: auto;
    top: 124px;
    right: max(calc(-100vw / 375 * 20), -20px);
    content: "";
    width: 100vw;
    height: 220px;
    border: 2px solid #000;
    border-left: none;
    border-radius: 0 60px 60px 0;
  }

  .message__image {
    width: 256px;
    margin-inline: auto;
  }

  .message__body {
    width: 100%;
    margin-top: 74px;
  }

  .message__body-catch {
    width: min(calc(100vw / 375 * 318), 318px);
  }

  .message__body-textZone {
    margin-top: 18px;
  }

  .message__body-text {
    font-weight: 600;
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
  .message__body-text:not(:first-child) {
    margin-top: 25px;
  }

  .message__body-personZone {
    margin-top: 14px;
  }

  .message__body-personName {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
}





/*-------------------------------------
office tour
-------------------------------------*/

.office-tour {
  margin-top: 78px;
}

.office-tour .common-inner {
  position: relative;
  z-index: 1;
}

.office-tour__deco01 {
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: min(calc(100vw / 1440 * 322), 322px);
  height: auto;
  aspect-ratio: 1 / 1;
  z-index: -1;
}
.office-tour__deco01::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/office_deco01.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.office-tour__deco02 {
  position: absolute;
  top: 36%;
  right: -13%;
  width: min(calc(100vw / 1280 * 157), 157px);
  height: auto;
  aspect-ratio: 157 / 91;
  z-index: -1;
}
.office-tour__deco02::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/fv_deco02.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.office-tour__catch {
  margin-top: 36px;
  text-align: center;
  font-weight: 900;
  font-size: 24px;
  line-height: calc(29 / 24);
  letter-spacing: 0.1em;
}

.office-tour__studio {
  margin-top: 25px;
  margin-inline: auto;
  width: 324px;
  padding-right: 5px;
}

.office-tour__text {
  margin-top: 22px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
}

.office-tour__youtube {
  margin-top: 47px;
  position: relative;
  z-index: 1;
}
.office-tour__youtube::before {
  position: absolute;
  top: 100px;
  left: 0;
  content: "";
  width: 100%;
  height: min(calc(100vw / 1280 * 569), 569px);
  border-radius: 100px 100px 0 0;
  border: 3px solid #000;
  background: linear-gradient(to bottom left, #75FFB6 0%, #3EE5FF 100%);
  z-index: -1;
}

.office-tour__youtube-movie {
  margin-inline: auto;
  width: min(calc(100vw / 1280 * 850), 850px);
}

.office-tour__youtube-movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 850 / 484;
  object-fit: cover;
}

.office-tour__gallery {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.office-tour__gallery-slider {
  display: flex;
  overflow: hidden;
}
.office-tour__gallery-slider .slider {
  animation: scroll-left 50s infinite linear .5s both;
  display: flex;
}
.office-tour__gallery-slider .slide {
  width: min(calc(100vw / 1280 * 392), 392px);
  margin-right: min(calc(100vw / 1280 * 30), 30px);
}
.office-tour__gallery-slider .slide img {
  display: block;
  width: 100%;
  aspect-ratio: 392 / 240;
}

/* CSSアニメーション（右から左へ） */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 1439.98px) {
  .office-tour__deco01 {
    left: -50px;
  }
  .office-tour__deco02 {
    right: 30px;
  }
}


@media screen and (max-width: 767.98px) {

  .office-tour {
    margin-top: 47px;
  }

  .office-tour .common-inner {
    overflow: hidden;
  }

  .office-tour__deco01 {
    left: -58px;
    width: 157px;
    bottom: -15%;
  }
  .office-tour__deco02 {
    right: -8px;
    width: 77px;
    top: 118px;
  }

  .office-tour .common-titleZone {
    margin-left: max(calc(-100vw / 375 * 10), -10px);
    width: calc(100% + min(calc(100vw / 375 * 20), 20px));
  }

  .office-tour__catch {
    margin-top: 22px;
    font-size: min(calc(100vw / 375 * 18), 18px);
    line-height: calc(22 / 18);
  }

  .office-tour__studio {
    margin-top: 14px;
    width: 210px;
    padding-right: 0;
  }

  .office-tour__text {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.8;
  }

  .office-tour__youtube {
    margin-top: 40px;
  }
  .office-tour__youtube::before {
    top: 89px;
    height: 309px;
    border-radius: 60px 60px 0 0;
    background: linear-gradient(to bottom right, #75FFB6 0%, #3EE5FF 100%);
  }

  .office-tour__youtube-movie {
    width: calc(100vw - min(calc(100vw / 375 * 40), 40px));
    max-width: 450px;
  }

  .office-tour__gallery {
    margin-top: 18px;
  }

  .office-tour__gallery-slider .slide {
    width: 209px;
    margin-right: 16px;
  }
  .office-tour__gallery-slider .slide img {
    display: block;
    width: 100%;
    aspect-ratio: 392 / 240;
  }

}





/*-------------------------------------
service
-------------------------------------*/

.service {
  margin-top: 75px;
  padding-bottom: 125px;
  overflow: hidden;
}

.service__content {
  margin-top: 45px;
  position: relative;
  z-index: 1;
}
.service__content::before {
  position: absolute;
  top: 103px;
  right: 0;
  content: "";
  width: calc(50% + 620px);
  height: calc(100% + 17px);
  border-radius: 100px 0 0 100px;
  background: linear-gradient(to bottom left, #BB8DFF 0%, #E26BED 43%, #FF73E6 100%);
  border: 3px solid #000;
  border-right: none;
  z-index: -1;
}

.service__content-inner {
  padding-inline: 20px;
}

.service__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service__item {
  width: 311px;
  flex-shrink: 0;
  border: 1px solid #000;
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service__item-heading {
  padding: 30px 24px 46px;
  background-color: #fff;
  position: relative;
}

.service__item-number {
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0em;
  color: #000;
  text-align: center;
  display: block;
}

.service__item-en {
  margin-top: 8px;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0em;
  color: #000;
  text-align: center;
}

.service__item-title {
  margin-top: 17px;
  font-weight: 900;
  font-size: 28px;
  line-height: calc(34 / 28);
  letter-spacing: 0em;
  color: #000;
  text-align: center;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}
.service__item:nth-child(1) .service__item-title {
  color: #FF73E6;
}
.service__item:nth-child(2) .service__item-title {
  color: #E573FF;
}
.service__item:nth-child(3) .service__item-title {
  color: #B98EFF;
}

.service__item-body {
  flex: 1;
  padding: 28px 18px 40px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.service__item:nth-child(1) .service__item-body {
  background-image: url(../image/service01.webp);
}
.service__item:nth-child(2) .service__item-body {
  background-image: url(../image/service02.webp);
}
.service__item:nth-child(3) .service__item-body {
  background-image: url(../image/service03.webp);
}

.service__item-text {
  font-weight: 600;
  font-size: 16px;
  line-height: calc(26 / 16);
  letter-spacing: 0em;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1399.98px) {
  .service__content::before {
    width: 100%;
  }
}

@media screen and (max-width: 767.98px) {

  .service {
    margin-top: 97px;
    padding-bottom: 75px;
  }

  .service__content {
    margin-top: 20px;
  }
  .service__content::before {
    top: 65px;
    height: calc(100% + 7px);
    border-radius: 60px 0 0 60px;
  }

  .service__content-inner {
    padding-inline: 0;
    overflow: auto;
  }

  .service__list {
    width: min(calc(100vw / 340 * 908), 908px);
    padding-inline: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: min(calc(100vw / 340 * 20), 20px);
  }

  .service__item {
    width: min(calc(100vw / 340 * 276), 276px);
    border-radius: 20px;
  }

  .service__item-heading {
    padding: 26px 5px 43px;
  }

  .service__item-number {
    font-size: 26px;
  }

  .service__item-en {
    margin-top: 6px;
    font-size: 22px;
  }

  .service__item-title {
    margin-top: 14px;
    font-size: 24px;
  }

  .service__item-body {
    padding: 20px 5px 24px;
  }

  .service__item-text {
    font-size: 14px;
    line-height: 1.8;
  }

}





/*-------------------------------------
member
-------------------------------------*/

.member {
  margin-top: 70px;
  overflow: hidden;
}

.member__content {
  position: relative;
  z-index: 1;
}
.member__content::before {
  position: absolute;
  top: 165px;
  left: 0;
  content: "";
  width: 100%;
  height: 1237px;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(to bottom left, #FFBC5E 0%, #FF3E51 100%);
  border: 3px solid #000;
  z-index: -1;
}

.member__slider {
  margin-top: 48px;
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 70px;
}

.member__swiper {
  overflow: visible;
}

.member__swiper .swiper-wrapper {
  align-items: stretch;
}

.member__swiper .swiper-slide {
  width: min(calc(100vw / 1440 * 1000), 1000px);
  height: auto;
  display: flex;
}

.member__slide-item {
  margin-top: 43px;
  margin-left: min(calc(100vw / 1440 * 80), 80px);
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 47px 40px 40px min(calc(100vw / 1440 * 286), 286px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.member__slider-number {
  position: absolute;
  top: 0;
  right: min(calc(100vw / 1000 * 25), 25px);
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  color: #FF3E51;
  writing-mode: vertical-rl;
  padding-top: 76px;
}
.member__slider-number::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 1px;
  height: 68px;
  background-color: #FF3E51;
}

.member__slide-image {
  position: absolute;
  top: -43px;
  left: max(calc(-100vw / 1440 * 80), -80px);
  width: min(calc(100vw / 1440 * 326), 326px);
  flex-shrink: 0;
}

.member__slide-image img {
  display: block;
  aspect-ratio: 326 / 518;
  border-radius: 20px;
}

.member__slide-body {
  display: flex;
  flex-direction: column;
}

.member__slide-catch {
  font-weight: 900;
  font-size: min(calc(100vw / 1440 * 42), 42px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
  width: fit-content;
}
.member__slide-catch span {
  position: relative;
  z-index: 1;
}
.member__slide-catch span::before {
  position: absolute;
  bottom: -1px;
  left: -5px;
  content: "";
  width: calc(100% + 10px);
  height: 100%;
  background: linear-gradient(transparent 70%, #FF3E51 70%);
  z-index: -1;
}

.member__slide-heading {
  margin-top: 22px;
}

.member__slide-position {
  font-weight: 900;
  font-size: 18px;
  line-height: calc(27 / 18);
}

.member__slide-name {
  margin-top: 4px;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.member__slide-year {
  margin-left: 9px;
  padding-top: 8px;
  font-size: 16px;
}

.member__slide-text {
  margin-top: 16px;
}

.member__slide-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.member__nav {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: min(calc(100vw / 1440 * 1054), 1054px);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.member__nav-prev,
.member__nav-next {
  width: min(calc(100vw / 1440 * 55), 55px);
  height: min(calc(100vw / 1440 * 55), 55px);
  border: 1px solid #000 !important;
  background-color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  transition: all 0.3s;
}

.member__nav-prev::before,
.member__nav-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: min(calc(100vw / 1440 * 12), 12px);
  height: min(calc(100vw / 1440 * 12), 12px);
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s;
}

.member__nav-prev::before {
  transform: translate(-30%, -50%) rotate(45deg);
}

.member__nav-next::before {
  transform: translate(-70%, -50%) rotate(-135deg);
}

@media (hover: hover) {
  .member__nav-prev:hover,
  .member__nav-next:hover {
    background-color: #fff;
    opacity: 1;
  }
  .member__nav-prev:hover::before,
  .member__nav-next:hover::before {
    border-left-color: #000;
    border-bottom-color: #000;
  }
}

.member__pagination {
  margin-top: 24px;
  text-align: center;
}

.member__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  background-color: #fff;
  opacity: 1;
  margin-inline: 5px !important;
}

.member__pagination .swiper-pagination-bullet-active {
  background-color: #000;
}


@media screen and (max-width: 767.98px) {

  .member {
    margin-top: 40px;
  }

  .member__content::before {
    top: 110px;
    height: 886px;
    border-radius: 60px 60px 0 0;
    border: 2px solid #000;
    background: linear-gradient(to bottom right, #FFBC5E 0%, #FF3E51 100%);
  }

  .member__slider {
    margin-top: 15px;
    padding-inline: min(calc(100vw / 375 * 20), 20px);
  }

  .member__swiper .swiper-slide {
    width: 100%;
  }

  .member__slide-item {
    margin-top: 30px;
    margin-left: min(calc(100vw / 375 * 20), 20px);
    padding: 30px min(calc(100vw / 375 * 20), 20px) 26px;
    border-radius: 10px;
  }

  .member__slider-number {
    width: max-content;
    top: 20px;
    left: min(calc(100vw / 375 * 131), 131px);
    padding-top: 0;
    padding-left: min(calc(100vw / 375 * 76), 76px);
    font-size: min(calc(100vw / 375 * 16), 16px);
    line-height: calc(24 / 16);
    writing-mode: unset;
  }
  .member__slider-number::before {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: min(calc(100vw / 375 * 68), 68px);
    height: 1px;
  }

  .member__slide-image {
    top: -30px;
    left: max(calc(-100vw / 375 * 20), -20px);
    width: min(calc(100vw / 375 * 141), 141px);
  }

  .member__slide-image img {
    border-radius: 10px;
    aspect-ratio: 141 / 205;
  }

  .member__slide-catch {
    order: 2;
    margin-top: 40px;
    font-size: min(calc(100vw / 375 * 22), 22px);
  }

  .member__slide-heading {
    order: 1;
    padding-left: min(calc(100vw / 375 * 110), 110px);
  }

  .member__slide-position {
    font-size: min(calc(100vw / 375 * 12), 12px);
  }

  .member__slide-name {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: min(calc(100vw / 375 * 20), 20px);
  }

  .member__slide-year {
    margin-left: 0;
    padding-top: 0;
    font-size: min(calc(100vw / 375 * 14), 14px);
  }

  .member__slide-body {
    flex: 1;
  }

  .member__slide-text {
    order: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    position: relative;
  }

  .member__slide-text p {
    font-weight: 600;
    font-size: min(calc(100vw / 375 * 14), 14px);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    margin-bottom: 9px;
  }

  .member__slide-text.is-open p {
    display: block;
    -webkit-line-clamp: unset;
  }

  .member__slide-readmore {
    margin-top: auto;
    margin-inline: auto;
    width: fit-content;
    padding-left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
    font-weight: 900;
    font-size: 12px;
    line-height: calc(21 / 14);
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  .member__slide-readmore::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-2px) rotate(45deg);
    transition: all 0.3s;
  }

  .member__slide-readmore.is-open::after {
    transform: translateY(2px) rotate(-135deg);
  }

  .member__nav {
    top: 215px;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }

  .member__nav-prev,
  .member__nav-next {
    width: min(calc(100vw / 375 * 38), 38px);
    height: min(calc(100vw / 375 * 38), 38px);
  }

  .member__nav-prev::before,
  .member__nav-next::before {
    width: min(calc(100vw / 375 * 10), 10px);
    height: min(calc(100vw / 375 * 10), 10px);
  }

  .member__pagination {
    margin-top: 5px;
  }

  .member__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

}


/* OUR TEAM */

.member__team {
  margin-top: 75px;
  position: relative;
  z-index: 2;
}

.member__team-title {
  padding: 10px 10px 15px;
  border-radius: 20px 20px 0 0;
  background-color: #000;
  text-align: center;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.member__team-body {
  border: 3px solid #000;
  background-color: #F0F0F0;
  border-radius: 0 0 20px 20px;
  padding: 60px 45px;
}

.member__team-cards {
  display: flex;
  column-gap: 27px;
}

.member__team-card {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 18px;
  padding: 40px 20px;
  position: relative;
  box-shadow: 0 0 20.5px rgba(0, 0, 0, 0.1);
}
.member__team-card:first-child {
  width: 298px;
  height: 286px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.member__team-card--wide {
  flex: 1;
  height: 286px;
}

.member__team-card-title {
  text-align: center;
  font-family: var(--NotoSansJP);
  font-weight: 900;
  font-size: 24px;
  line-height: calc(28 / 24);
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #000;
  border-radius: 50px;
  padding: 12px;
  width: 219px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.member__team-card-number {
  font-weight: 700;
  font-family: var(--Oswald);
  font-size: 102px;
  line-height: 1;
  color: #FF3E51;
  text-align: center;
}

.member__team-card-number .js-countUp {
  display: inline-block;
  width: 125px;
  text-align: right;
}

.member__team-card-unit {
  margin-top: 8px;
  font-family: var(--NotoSansJP);
  font-size: 24px;
}

.member__team-bar {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-inline: auto;
  max-width: 476px;
  height: 221px;
}

.member__team-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 11px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.js-slideUp-bar .member__team-bar-item::before {
  transform: translateY(100%);
  transition: all 1.2s;
}
.js-slideUp-bar.is-active .member__team-bar-item::before {
  transform: translateY(0);
}

.member__team-bar-item--cyan {
  height: 57%;
}
.member__team-bar-item--cyan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3EE5FF;
  border-radius: 18px 18px 0 0;
  z-index: -1;
}

.member__team-bar-item--red {
  padding-bottom: 10%;
  height: 100%;
  color: #fff;
}
.member__team-bar-item--red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FF3E51;
  border-radius: 18px 18px 0 0;
  z-index: -1;
}

.member__team-bar-label {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.member__team-bar-value {
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 51px;
  line-height: 1;
  padding-left: 16px;
}

.member__team-bar-value .js-countUp {
  display: inline-block;
  width: 55px;
  text-align: right;
}

.member__team-bar-percent {
  margin-left: 6px;
  font-size: 21px;
}

.member__team-age {
  margin-top: 55px;
  padding-bottom: 35px;
}

.member__team-age-content {
  margin-inline: auto;
  max-width: 780px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
}

.member__team-chart {
  flex-shrink: 0;
  position: relative;
  width: 440px;
  padding-left: 82px;
  padding-right: 88px;
  padding-top: 48px;
}

.member__team-donut {
  width: 100%;
  height: auto;
}

.member__team-donut circle {
  opacity: 0;
}

.member__team-donut.is-animated circle:nth-child(1) {
  opacity: 1;
  stroke-dasharray: 0 502.4;
  animation: drawDonut1 1.2s linear forwards;
}

.member__team-donut.is-animated circle:nth-child(2) {
  opacity: 1;
  stroke-dasharray: 0 502.4;
  stroke-dashoffset: -301.6;
  animation: drawDonut2 0.9s linear forwards;
  animation-delay: 1.2s;
}

.member__team-donut.is-animated circle:nth-child(3) {
  opacity: 1;
  stroke-dasharray: 0 502.4;
  stroke-dashoffset: -452.4;
  animation: drawDonut3 0.3s linear forwards;
  animation-delay: 2.1s;
}

@keyframes drawDonut1 {
  from {
    stroke-dasharray: 0 502.4;
  }
  to {
    stroke-dasharray: 301.6 502.4;
  }
}

@keyframes drawDonut2 {
  from {
    stroke-dasharray: 0 502.4;
  }
  to {
    stroke-dasharray: 150.8 502.4;
  }
}

@keyframes drawDonut3 {
  from {
    stroke-dasharray: 0 502.4;
  }
  to {
    stroke-dasharray: 50.24 502.4;
  }
}

.member__team-chart-center {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-55%, -50%);
  text-align: center;
}

.member__team-chart-label {
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #FF3E51;
  text-transform: uppercase;
}

.member__team-chart-value {
  margin-top: 8px;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: #FF3E51;
}

.member__team-chart-unit {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1;
  color: #FF3E51;
  text-transform: uppercase;
}

.member__team-legend {
  position: absolute;
}
.member__team-legend--20s {
  top: 128px;
  right: -5px;
}
.member__team-legend--30s {
  bottom: 74px;
  left: 3px;
}
.member__team-legend--40s {
  top: -5px;
  left: 111px;
}

.member__team-legend-label {
  text-align: center;
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
}
.member__team-legend--20s .member__team-legend-label {
  color: #FF3E51;
}
.member__team-legend--30s .member__team-legend-label {
  color: #3EE5FF;
}
.member__team-legend--40s .member__team-legend-label {
  font-size: 15px;
}

.member__team-legend-value {
  margin-top: 4px;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 41px;
  line-height: 1;
}
.member__team-legend--20s .member__team-legend-value {
  font-size: 51px;
  color: #FF3E51;
}
.member__team-legend--30s .member__team-legend-value {
  font-size: 51px;
  color: #3EE5FF;
}

.member__team-legend-percent {
  margin-left: 4px;
  font-family: var(--Oswald);
  font-size: 15px;
  line-height: 1;
}
.member__team-legend--20s .member__team-legend-percent,
.member__team-legend--30s .member__team-legend-percent {
  font-size: 21px;
}

.member__team-average {
  width: 300px;
}

.member__team-average-title {
  padding-right: 32%;
  text-align: right;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.member__team-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.member__team-list-item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.member__team-list-label {
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
  padding-bottom: 3px;
}

.member__team-list-value {
  margin-left: 18px;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 55px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.member__team-list-value .js-countUp {
  display: inline-block;
  width: 55px;
  text-align: right;
}

.member__team-list-value--red {
  color: #FF3E51;
}
.member__team-list-value--cyan {
  color: #3EE5FF;
}
.member__team-list-value--orange {
  color: #F9B862;
}

.member__team-list-unit {
  margin-left: 14px;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  text-transform: uppercase;
}

.member__team-back {
  margin-top: 60px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.member__team-back-image {
  padding-left: 2%;
}

@media screen and (max-width: 999.98px) {
  .member__team-age-content {
    padding-top: 20px;
    flex-direction: column;
    row-gap: 40px;
  }
}

@media screen and (max-width: 767.98px) {

  .member__team {
    margin-top: 32px;
  }

  .member__team-title {
    padding-block: 10px;
    border-radius: 10px;
    font-size: 28px;
    position: relative;
    z-index: 1;
  }

  .member__team-body {
    margin-top: -10px;
    padding: 46px min(calc(100vw / 375 * 12), 12px) 40px;
    border: 2px solid #000;
    border-radius: 0;
  }

  .member__team-card-title {
    width: max-content;
    padding: 8px 19px 10px;
    font-size: 18px;
  }

  .member__team-cards {
    column-gap: 9px;
  }

  .member__team-card {
    border-radius: 10px;
    padding: 0;
  }

  .member__team-card:first-child {
    width: min(calc(100vw / 375 * 110), 110px);
    height: 169px;
  }

  .member__team-card-number {
    font-size: min(calc(100vw / 375 * 60), 60px);
  }
  .member__team-card-number .js-countUp {
    width: min(calc(100vw / 375 * 75), 75px);
  }
  .member__team-card-unit {
    font-size: min(calc(100vw / 375 * 16), 16px);
  }

  .member__team-card--wide {
    height: 169px;
    padding-inline: 10px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 16px;
  }

  .member__team-bar {
    width: 100%;
    height: 116px;
  }

  .member__team-bar-label {
    font-size: min(calc(100vw / 375 * 12), 12px);
  }

  .member__team-bar-value {
    padding-left: 0;
    font-size: min(calc(100vw / 375 * 36), 36px);
  }
  .member__team-bar-value .js-countUp {
    width: min(calc(100vw / 375 * 40), 40px);
  }
  .member__team-bar-percent {
    margin-left: 0;
    font-size: min(calc(100vw / 375 * 16), 16px);
  }

  .member__team-bar-item {
    row-gap: 5px;
  }
  .member__team-bar-item--cyan::before,
  .member__team-bar-item--red::before {
    border-radius: 10px 10px 0 0;
  }

  .member__team-age {
    margin-top: 38px;
  }

  .member__team-chart {
    width: 100%;
    max-width: 306px;
    padding-inline: min(calc(100vw / 375 * 64), 64px);
    padding-top: min(calc(100vw / 375 * 49), 49px);
  }

  .member__team-chart-center {
    top: 60%;
    transform: translate(-52%, -50%);
  }

  .member__team-chart-label {
    font-size: min(calc(100vw / 375 * 11), 11px);
  }
  .member__team-chart-value {
    margin-top: 2px;
    font-size: min(calc(100vw / 375 * 34), 34px);
  }
  .member__team-chart-unit {
    font-size: min(calc(100vw / 375 * 11), 11px);
  }

  .member__team-legend--20s {
    top: 43%;
    right: 2%;
  }
  .member__team-legend--30s {
    bottom: 21%;
    left: 3%;
  }
  .member__team-legend--40s {
    top: 5%;
    left: 27%;
  }

  .member__team-legend-label {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
  .member__team-legend--40s .member__team-legend-label {
    font-size: 10px;
  }
  .member__team-legend-value {
    margin-top: 3px;
    font-size: min(calc(100vw / 375 * 27), 27px);
  }
  .member__team-legend--20s .member__team-legend-value,
  .member__team-legend--30s .member__team-legend-value {
    font-size: min(calc(100vw / 375 * 34), 34px);
  }
  .member__team-legend-percent {
    font-size: 10px;
  }
  .member__team-legend--20s .member__team-legend-percent,
  .member__team-legend--30s .member__team-legend-percent {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }

  .member__team-age-content {
    row-gap: 6px;
    padding-bottom: 25px;
  }

  .member__team-average {
    width: 100%;
    max-width: 300px;
  }

  .member__team-average-title {
    text-align: center;
    padding-right: 0;
    font-size: 23px;
  }

  .member__team-list {
    margin-top: 9px;
    row-gap: 7px;
  }

  .member__team-list-label {
    padding-bottom: min(calc(100vw / 375 * 8), 8px);
    font-size: min(calc(100vw / 375 * 20), 20px);
  }

  .member__team-list-value {
    margin-left: min(calc(100vw / 375 * 8), 8px);
    font-size: min(calc(100vw / 375 * 40), 40px);
  }

  .member__team-list-value .js-countUp {
    width: min(calc(100vw / 375 * 45), 45px);
  }

  .member__team-list-unit {
    margin-left: min(calc(100vw / 375 * 6), 6px);
    font-size: min(calc(100vw / 375 * 14), 14px);
  }

  .member__team-list-item {
    width: 100%;
    padding-right: min(calc(100vw / 375 * 47), 47px);
    margin-inline: auto;
    max-width: 298px;
  }

  .member__team-back {
    margin-top: 40px;
  }
  .member__team-back .member__team-card-title {
    padding-inline: 34px;
  }

  .member__team-back-image {
    padding: 42px 3% 34px;
  }

}





/*-------------------------------------
recruitment
-------------------------------------*/

.recruitment {
  margin-top: 75px;
}

.recruitment .common-titleZone {
  position: relative;
  z-index: 2;
}

.recruitment__content {
  margin-top: -80px;
  padding-top: 130px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.recruitment__content::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, #DCE3E7 0px, #DCE3E7 1px, transparent 1px, transparent 15px), repeating-linear-gradient(90deg, #DCE3E7 0px, #DCE3E7 1px, transparent 1px, transparent 15px);
  background-size: 15px 15px;
  z-index: -1;
}

.recruitment__lead {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
}

.recruitment__list {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.recruitment__item {
  width: 281px;
}

.recruitment__item-link {
  border-radius: 20px;
  border: 2px solid #000;
  background-color: #fff;
  overflow: hidden;
}

.recruitment__item-heading {
  height: 151px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.recruitment__item-title {
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.recruitment__item-text img {
  height: 66px;
  width: auto;
}

.recruitment__item-body {
  padding-top: 13px;
  padding-inline: 20px;
  padding-bottom: 19px;
}
.recruitment__item:nth-child(1) .recruitment__item-body {
  background-color: #3EE5FF;
}
.recruitment__item:nth-child(2) .recruitment__item-body {
  background-color: #23FFFF;
}
.recruitment__item:nth-child(3) .recruitment__item-body {
  background-color: #23FFD7;
}
.recruitment__item:nth-child(4) .recruitment__item-body {
  background-color: #44FE92;
}

.recruitment__item-desc {
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.6;
}
.recruitment__item-desc span {
  display: inline-block;
}

@media screen and (max-width: 1279.98px) {
  .recruitment__list {
    margin-inline: auto;
    width: 582px;
  }
}

@media screen and (max-width: 767.98px) {

  .recruitment {
    margin-top: 50px;
  }

  .recruitment .common-title {
    font-size: min(calc(100vw / 375 * 58), 58px);
  }
  .recruitment .common-title::after {
    left: -5px;
    font-size: min(calc(100vw / 375 * 58), 58px);
  }

  .recruitment__content {
    margin-top: -38px;
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .recruitment__lead {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.8;
  }

  .recruitment__list {
    margin-top: 20px;
    width: 100%;
    max-width: 335px;
  }

  .recruitment__item {
    width: 100%;
  }

  .recruitment__item-heading {
    height: 100px;
    padding-top: 10px;
  }

  .recruitment__item-text img {
    height: 58px;
  }

  .recruitment__item-body {
    padding-top: 13px;
    padding-inline: 5px;
    padding-bottom: 14px;
  }

  .recruitment__item-desc {
    font-size: min(calc(100vw / 375 * 16), 16px);
  }

}





/*-------------------------------------
flow
-------------------------------------*/

.flow {
  margin-top: 90px;
  padding-bottom: 120px;
  position: relative;
}

.flow .common-inner {
  position: relative;
  z-index: 2;
}

.flow__flex {
  padding-right: min(calc(100vw / 375 * 100), 100px);
  display: flex;
  column-gap: 10px;
}

.flow__heading {
  width: 380px;
}

.flow__heading .common-titleZone {
  padding-left: 20px;
}

.flow__body {
  flex: 1;
  padding-top: 50px;
}

.flow__heading-text {
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
}

.flow__list {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
}

.flow__item {
  border-radius: 10px;
  border: 1px solid #000;
  background-color: #fff;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.flow__item:not(:last-child)::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 48px;
  height: 20px;
  background-color: #000;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.flow__item-number {
  position: absolute;
  top: -15px;
  left: 18px;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}

.flow__item-body {
  padding: 22px 26px 23px 82px;
}

.flow__item-title {
  font-weight: 900;
  font-size: 22px;
  line-height: calc(32 / 22);
  letter-spacing: 0.05em;
  color: #FF73E6;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.flow__item-text {
  margin-top: 1px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
}

.flow__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(50% + 500px);
  height: 661px;
  z-index: 1;
}
.flow__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom left, #BB8DFF 0%, #E26BED 43%, #FF73E6 100%);
  border: 3px solid #000;
  border-left: none;
  border-radius: 0 100px 100px 0;
  z-index: -1;
}

@media screen and (max-width: 1039.98px) {
  .flow__flex {
    padding-right: 20px;
  }
  .flow__heading {
    width: 340px;
  }
  .flow__bg {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 767.98px) {

  .flow {
    margin-top: 50px;
    padding-bottom: 40px;
  }

  .flow__heading .common-titleZone {
    padding-left: 0;
  }

  .flow__flex {
    flex-direction: column;
    padding-right: 0;
  }

  .flow__heading {
    width: 100%;
  }

  .flow__heading-text {
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
  }

  .flow__body {
    width: 100%;
    padding-top: 85px;
  }

  .flow__list {
    row-gap: 41px;
  }

  .flow__item {
    min-height: 109px;
    justify-content: flex-start;
  }

  .flow__item-number {
    top: -18px;
    left: 7px;
    font-size: 42px;
  }

  .flow__item-title {
    font-size: 20px;
    line-height: calc(32 / 20);
  }

  .flow__item-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .flow__item-body {
    padding: 12px 12px 12px 60px;
  }

  .flow__bg {
    width: 75%;
    height: calc(100% - 214px);
  }
  .flow__bg::before {
    border-radius: 0 60px 60px 0;
  }

}





/*-------------------------------------
faq
-------------------------------------*/

.faq {
  margin-top: 62px;
}

.faq__content {
  margin-top: 42px;
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.faq__content::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(to bottom left, #FFBC5E 0%, #FF3E51 100%);
  border: 3px solid #000;
  z-index: -1;
}

.faq__tab-list {
  display: flex;
  justify-content: center;
  column-gap: 16px;
  margin-bottom: 12px;
}

.faq__tab-item {
  flex: 1;
}

.faq__tab-link {
  width: 100%;
  text-align: center;
  font-weight: 900;
  font-size: min(calc(100vw / 1000 * 22), 22px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 17px;
  background-color: #C5C5C5;
  border: 1px solid #000;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
  transition: all 0.3s;
}
.faq__tab-item.is-active .faq__tab-link {
  background-color: #000;
}

.faq__tab-link span {
  display: inline-block;
}

.faq__accordion-list {
  padding: 40px min(calc(100vw / 1280 * 60), 60px);
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}

.faq__accordion-item:not(:first-child) {
  padding-top: 25px;
  position: relative;
}
.faq__accordion-item:not(:first-child)::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #ff3e51, #ff3e51 6px, transparent 6px, transparent 12px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.faq__accordion-button {
  width: 100%;
  padding-right: 60px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  text-align: left;
}

.faq__accordion-flex {
  display: flex;
  align-items: flex-start;
  column-gap: 15px;
}

.faq__accordion-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FF3E51;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
.faq__accordion-icon--answer {
  background-color: unset;
  color: #FF3E51;
}

.faq__accordion-question {
  flex: 1;
  padding-top: 4px;
  font-weight: 900;
  font-size: 18px;
  line-height: calc(32 / 18);
}

.faq__accordion-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.faq__accordion-toggle::before,
.faq__accordion-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 26px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s;
}
.faq__accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__accordion-button.is-active .faq__accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__accordion-content {
  padding-top: 10px;
  padding-right: 60px;
}

.faq__accordion-answer {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
}

.faq__accordion-answer-dot {
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.faq__accordion-answer-dot::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

@media screen and (max-width: 767.98px) {

  .faq {
    margin-top: 45px;
  }

  .faq__content {
    margin-top: 16px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .faq__content::before {
    border-radius: 60px 60px 0 0;
    border: 2px solid #000;
    background: linear-gradient(to bottom right, #FFBC5E 0%, #FF3E51 100%);
  }

  .faq__tab-list {
    column-gap: 6px;
    margin-bottom: 7px;
  }

  .faq__tab-link {
    border-radius: 10px 10px 0 0;
    padding: 12px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: min(calc(100vw / 375 * 16), 16px);
    letter-spacing: 0;
    line-height: 1.4;
  }

  .faq__accordion-list {
    padding: 20px 10px 26px;
    row-gap: 14px;
  }

  .faq__accordion-item:not(:first-child) {
    padding-top: 16px;
  }
  .faq__accordion-item:not(:first-child)::before {
    height: 2px;
    background-image: repeating-linear-gradient(90deg, #000000, #000000 6px, transparent 6px, transparent 11px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 100% 2px;
  }

  .faq__accordion-button {
    padding-right: 25px;
  }

  .faq__accordion-flex {
    column-gap: 10px;
  }

  .faq__accordion-icon {
    width: 36px;
    height: 36px;
  }

  .faq__accordion-question {
    font-size: 16px;
    line-height: 2;
  }

  .faq__accordion-toggle {
    width: 22px;
    height: 22px;
  }

  .faq__accordion-toggle::before,
  .faq__accordion-toggle::after {
    width: 22px;
  }

  .faq__accordion-content {
    padding-top: 5px;
    padding-right: 12px;
  }

  .faq__accordion-answer {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
  }

}





/*-------------------------------------
sns
-------------------------------------*/

.sns {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #ECECEC;
  position: relative;
  z-index: 2;
}

.sns__flex {
  display: flex;
  justify-content: center;
  column-gap: 132px;
  padding-left: 10px;
}

.sns .common-title {
  font-size: min(calc(100vw / 1000 * 64), 64px);
}
.sns .common-title::before {
  width: calc(100% - 30px);
  height: 30px;
  bottom: -4px;
}
.sns .common-title::after {
  top: 5px;
  left: -5px;
  font-size: min(calc(100vw / 1000 * 64), 64px);
}

.sns__list {
  padding-top: 20px;
  display: flex;
  align-items: center;
  column-gap: 28px;
}

.sns__item {
  width: min(calc(100vw / 1000 * 60), 60px);
}

@media screen and (max-width: 767.98px) {

  .sns {
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .sns__flex {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .sns .common-title,
  .sns .common-title::after {
    font-size: min(calc(100vw / 375 * 44), 44px);
  }
  .sns .common-title::before {
    width: calc(100% - 16px);
    height: 16px;
    bottom: -2px;
  }

  .sns__list {
    padding-top: 30px;
    column-gap: 22px;
  }

  .sns__item {
    width: 47px;
  }

}





/*-------------------------------------
footer
-------------------------------------*/

.footer {
  position: relative;
  z-index: 2;
  padding: 50px 0 25px;
  background-color: #fff;
}

.footer .common-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.footer__nav-link {
  font-family: var(--Oswald);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__logo {
  margin-top: 73px;
}

.footer__copy {
  display: block;
  margin-top: 65px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.footer__copy a {
  text-decoration: underline;
}

@media screen and (max-width: 999.98px) {
  .footer__nav {
    margin-inline: auto;
    max-width: 450px;
  }
}

@media screen and (max-width: 767.98px) {

  .footer {
    padding: 70px 0 25px;
  }

  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }

  .footer__logo {
    margin-top: 50px;
  }
}



/*-------------------------------------
ページトップへ戻るボタン
-------------------------------------*/

.page-top {
  position: fixed;
  right: min(calc(100vw / 1280 * 100), 100px);
  bottom: 50px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}
.page-top::before {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%) rotate(45deg);
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transition: all 0.3s ease;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .page-top:hover {
    background-color: #000;
    color: #fff;
    opacity: 1;
  }
  .page-top:hover::before {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }
}

@media screen and (max-width: 767.98px) {
  .page-top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 15px;
  }
  .page-top::before {
    width: 8px;
    height: 8px;
  }
}
