@charset "UTF-8";
:root {
  --color-primary: #1C86FF;
  --color-primary-dark: #003F99;
  --color-primary-pale: #E8F2FF;
  --color-secondary: #EC407A;
  --color-secondary-dark: #A5950B;
  --color-secondary-pale: #FBF7D8;
  --color-base: #11111B;
  --font-family-main: "Montserrat", "Noto Sans JP", "Arial", sans-serif;
  --font-family-sub: "Montserrat", "Arial", sans-serif;
  --size-max: 60px;
  --size-mid: 48px;
  --size-min: 24px;
}

html {
  width: 100%;
  height: 100%;
  line-height: normal;
  -webkit-text-size-adjust: none;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  font-family: var(--font-family-main);
  color: var(--color-base);
}

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

p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: inherit;
}
a:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

button:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-feature-settings: "palt" 1;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

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

b,
strong {
  font-weight: bold;
}

/*----------------------------------------
  style
----------------------------------------*/
.main__wrap {
  padding-top: 1px;
  overflow-x: clip;
}

/* container */
.section {
  position: relative;
  padding-top: 200px;
  padding-bottom: 100px;
}

.container {
  position: relative;
  z-index: 1;
  width: 83.33%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container__btns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 40px;
}

.container__btns.wrap {
  flex-direction: column;
}

/* column */
.column__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.column__side {
  width: 33.53%;
  flex-shrink: 0;
}

.column__content {
  width: 100%;
}

.column__inner {
  margin: 80px 0;
}

.column__inner:first-of-type {
  margin-top: 0;
}

.column__inner:last-of-type {
  margin-bottom: 0;
}

.column__img {
  margin: 40px 0;
}

/*side*/
.side__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 50px 0;
}

.side__nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side__nav-item a,
.side__nav-item button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
  padding: 13px 22px 13px 24px;
  border-radius: 5px;
  background-color: var(--color-primary-pale);
  color: var(--color-primary);
  border: none;
  line-height: 1.2;
  font-size: 16px;
  font-weight: bold;
}
.side__nav-item a.active,
.side__nav-item button.active {
  background-color: var(--color-primary);
  color: #fff;
}
.side__nav-item a::after,
.side__nav-item button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #F85453;
}

/*detail*/
.page__detail {
  max-width: 774px;
}

.page__detail-inner {
  margin: 56px 0;
}
.page__detail-inner p {
  margin: 15px 0;
}

/* flex */
[class*=flex__] {
  display: flex;
}

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

.flex__center {
  justify-content: center;
}

.flex__start {
  align-items: flex-start;
}

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

.flex__wrap {
  flex-wrap: wrap;
}

/* align */
.text__center {
  text-align: center !important;
}

.text__right {
  text-align: right !important;
}

/*color*/
.text__primary {
  color: var(--color-primary) !important;
}

.text__secondary {
  color: var(--color-secondary) !important;
}

.text__asisstant {
  color: var(--color-asisstant) !important;
}

.text__highlight {
  position: relative;
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 0.8em;
  text-decoration-color: var(--color-asisstant);
  text-underline-offset: -0.8em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.text__asterisk {
  position: relative;
  display: block;
  padding-left: 1em;
  margin: 5px 0;
  text-indent: -1em;
  font-size: 14px;
}
.text__asterisk::before {
  content: "※";
}

/*size*/
.text__summary {
  letter-spacing: 0.02em;
}

.text__caption {
  line-height: 1.2;
  font-size: 14px;
  text-align: justify;
}

.text__caption--min {
  margin: 15px 0;
  font-size: 10px;
  text-align: justify;
}

/*acc*/
.acc__line {
  position: relative;
}
.acc__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 83.33%;
  max-width: 1200px;
  height: 1px;
  background-color: rgba(0, 0, 11, 0.24);
}

.acc__round-bottom {
  border-bottom-right-radius: 300px;
}

/*visible*/
.visible__md,
.visible__xs {
  display: none;
}

/*slider*/
.swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.gallery__slider .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.gallery__slider .img {
  border-radius: 4px;
  overflow: hidden;
}

/*img*/
.img-box {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  overflow: hidden;
}

/*----------------------------------------
  common
----------------------------------------*/
/* title */
.title__sec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 50px;
}
.title__sec .sub {
  line-height: 1;
  color: var(--color-primary);
  font-size: 64px;
  font-weight: bold;
}
.title__sec .main {
  font-size: 20px;
}

.title__sec.min .sub {
  font-size: 48px;
}

.title__max {
  margin-bottom: 40px;
  line-height: 1.3;
  font-size: 48px;
  letter-spacing: -0.01em;
  font-weight: bold;
}

.title__mid {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 32px;
  letter-spacing: -0.01em;
  font-weight: bold;
}

.title__min {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 24px;
  font-weight: bold;
}

.title__read {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.title__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/*card*/
.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card .img-box {
  border-radius: 16px;
}

a.card:hover {
  opacity: 1;
  background-color: var(--color-primary-pale);
}
a.card:hover .card--headline .title {
  color: var(--color-primary);
}

.card--thumb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
}
.card--thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card--content .title__mid {
  display: block;
  margin-bottom: 15px;
}
.card--content p {
  line-height: 1.5;
}

.card--headline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card--headline .day {
  color: #72727B;
  font-size: 14px;
  font-weight: bold;
}
.card--headline .title {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.card--headline .description {
  line-height: 1.7;
  font-size: 12px;
}
.card--headline .summary {
  font-size: 16px;
}

.card--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.card--tags .tag {
  color: #7a7a80;
}

.card__list--ls .card {
  flex-direction: row;
}

.card--flow {
  font-size: 12px;
}

/* btn */
.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
  padding: 13px 22px 13px 24px;
  border-radius: 5px;
  outline: none;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #F85453;
}

.button:hover {
  background-color: var(--color-primary-dark);
  opacity: 1;
}

.button.white {
  background-color: #fff;
  color: var(--color-primary);
}

.button.white::after {
  background-color: #F85453;
}

.button.white:hover {
  background-color: var(--color-primary-pale);
}

.button.pale {
  background-color: var(--color-primary-pale);
  color: var(--color-primary);
}

.button.pale:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.button.min {
  padding: 7px 20px;
  font-size: 14px;
}

/* list */
.list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 80px 40px;
}

.list--3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  gap: 30px;
}

.list--4col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 30px;
}

.list--5col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 30px;
}

.list--check {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.list--check-item {
  position: relative;
  margin: 10px 0;
  padding-left: 34px;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
}
.list--check-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background: url(../img/icon_check.svg) no-repeat center/contain;
}

.list--number {
  counter-reset: number 0;
}

.list--number > li {
  position: relative;
  padding-left: 32px;
}
.list--number > li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.list--disc > li {
  position: relative;
  padding-left: 26px;
}
.list--disc > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.list--round > li {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 20px;
}
.list--round > li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.dl__max .dl-box {
  display: flex;
  align-items: center;
  border-top: 1px solid #c2c2c5;
  padding: 40px 0;
}
.dl__max .term {
  min-width: 120px;
  font-weight: bold;
  font-size: 16px;
}
.dl__max:not(:first-child) {
  margin-top: 46px;
}

.dl__min .dl-box {
  display: flex;
  align-items: center;
  border-top: 1px solid #c2c2c5;
  padding: 24px 0;
}
.dl__min .dl-box:first-of-type {
  padding-top: 0;
  border-top: none;
}
.dl__min .term {
  min-width: 120px;
  font-weight: bold;
  font-size: 16px;
}
.dl__min .sub {
  color: var(--color-primary);
  font-weight: bold;
}

/*タブ*/
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/*アコーディオン*/
.accordion__trigger {
  position: relative;
  padding-bottom: 20px;
  margin: 20px 0;
  border-bottom: 1px solid #c5c5c5;
}
.accordion__trigger:hover {
  cursor: pointer;
}
.accordion__trigger .icon__open {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 28px;
  height: 28px;
  background-color: var(--color-base-dark);
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.accordion__trigger .icon__open::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 16px;
  height: 1px;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}
.accordion__trigger .icon__open::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 16px;
  height: 1px;
  background-color: #fff;
  transition: 0.2s ease-in-out;
  rotate: 90deg;
}

.is__open.accordion__trigger .icon__open {
  background-color: var(--color-base-middle);
}
.is__open.accordion__trigger .icon__open::after {
  rotate: 0deg;
}

.accordion__content {
  height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.accordion__content p:not(:first-child) {
  margin-top: 15px;
}

/*modal*/
.link__modal {
  display: block;
  transition: transform 0.3s ease-in-out;
}
.link__modal:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  opacity: 1;
}

/* モーダルと背景の指定 */
.modal__wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.modal__wrap.is__active {
  opacity: 1;
  visibility: visible;
}

.modal__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 95%;
  max-height: 95%;
}

.modal__btn--close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 32px;
  right: 32px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

/*タブ*/
.tabs {
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  gap: 20px;
  border-bottom: 4px double var(--color-base-dark);
  margin-bottom: 80px;
}

.tab {
  padding: 20px 0;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
}
.tab span {
  border-bottom: 2px solid transparent;
}
.tab.is-active {
  color: var(--color-secondary);
}
.tab.is-active span {
  border-color: var(--color-secondary);
}

.tab--content {
  display: none;
}

.tab--content.is-active {
  display: block;
}

/*scroll*/
.scroll {
  max-width: 100vw;
  overflow-x: auto;
}

/*bg*/
.bg__primary {
  background-color: var(--color-primary);
  color: #fff;
}
.bg__primary .title__sec .sub {
  color: #fff;
}

.bg__base {
  background-color: #fff;
}

.bg__pale {
  background-color: var(--color-primary-pale);
}

.acc__round {
  border-radius: 64px 64px 0 0;
}

.p-jon__item {
  transform: scale(1);
}

/*pager*/
.pager {
  margin-top: 80px;
}

.pager__number {
  display: flex;
  justify-content: center;
  margin: 24px 0;
  text-align: center;
  font-size: 16px;
}

.pager__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.pager__nav .prev {
  display: flex;
  gap: 8px;
}
.pager__nav .next {
  display: flex;
  gap: 8px;
}
.pager__nav .number {
  display: flex;
  gap: 8px;
}
.pager__nav .number .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.pager-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  gap: 8px;
  padding: 16px;
  background-color: var(--color-primary-pale);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.pager-button.prev-more {
  min-width: 56px;
  padding: 16px;
  border-radius: 8px 0 0 8px;
}
.pager-button.prev {
  border-radius: 0 8px 8px 0;
}
.pager-button.next-more {
  min-width: 56px;
  padding: 16px;
  border-radius: 0 8px 8px 0;
}
.pager-button.next {
  border-radius: 8px 0 0 8px;
}
.pager-button:hover, .pager-button.active {
  opacity: 1;
  background-color: var(--color-primary);
  color: #fff;
}

/**/
.recruit__inner {
  display: flex;
}

.recruit__slide {
  position: relative;
  display: flex;
  width: 50%;
  height: 650px;
  gap: 8px;
  overflow: hidden;
}

.image-collage-container {
  position: relative;
  width: 32%;
}

.moving-image {
  position: absolute;
  top: 0%;
  width: 100%;
  will-change: transform;
}

.parallax-down {
  top: -50% !important;
  /* もし3枚の画像の位置を個別にCSSで決めているなら、そのCSSを確認・調整 */
}

/*----------------------------------------
  header 
----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.3s 0.15s ease-in-out;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 40px;
  background-color: var(--color-primary);
  border-radius: 0 0 32px 0;
  transition: all 0.3s ease-in-out;
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 40px;
  padding: 24px;
  transition: padding 0.3s ease-in-out;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__menu-item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.header__menu-item a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__menu-item a i {
  transition: all 0.2s ease-in-out;
}
.header__menu-item a.is-open i {
  rotate: 180deg;
}
.header__menu-item a:hover {
  color: var(--color-primary);
}

.header__menu--drop {
  position: absolute;
  top: 20px;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.header__menu--drop.is-open {
  display: block;
  visibility: visible;
  opacity: 1;
}

.header__menu--drop-item {
  border-bottom: 1px solid rgba(0, 0, 11, 0.24);
  font-size: 12px;
}
.header__menu--drop-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  line-height: 1;
}

.is-scroll .header {
  background-color: #fff;
}
.is-scroll .header__logo {
  background-color: transparent;
  padding: 12px 24px;
}
.is-scroll .header__nav {
  padding: 12px 24px;
}

.hamburger__wrap {
  display: none;
}

.header__hamburger {
  display: none;
}

/*----------------------------------------
  footer 
----------------------------------------*/
.footer {
  position: relative;
  padding: 120px 0 40px;
  background-color: #11111B;
  color: #FFFFFF;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 150px;
}

.footer__side {
  display: flex;
  flex-direction: column;
}

.footer__head {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer__head address {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__main .catch {
  line-height: 1;
  color: var(--color-primary);
  font-size: 64px;
}

.footer__address {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer__copyright small {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 3.92%;
  color: rgba(255, 255, 255, 0.48);
}

.footer__sns-icon {
  display: flex;
  gap: 8px;
}
.footer__sns-icon .sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 26px;
}
.footer__sns-icon .sns-icon img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* **************************************************************
 breadcrumb
*************************************************************** */
.breadcrumb {
  position: relative;
  padding: 16px 0;
  background-color: var(--color-base);
  color: #fff;
  font-size: 14px;
}
.breadcrumb::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 83.33%;
  max-width: 1200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.24);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb__list li:not(:last-child)::after {
  content: "\f105";
  margin-left: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

/* **************************************************************
 news
*************************************************************** */
.news--item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 40px 24px;
  border-top: 1px solid #d9d9da;
  overflow: hidden;
}

.news--item:last-of-type {
  border-bottom: 1px solid #d9d9da;
}

.news--headline {
  max-width: 74%;
  transition: all 0.3s ease-in-out;
}
.news--headline .title {
  font-size: 16px;
}

.news--tags {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}
.news--tags .tag {
  padding: 8px 16px;
  border-radius: 50rem;
  background-color: var(--color-primary-pale);
  line-height: 1;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}
.news--tags .day {
  color: #72727B;
  font-size: 14px;
  font-weight: bold;
}

.news--item:hover {
  background-color: var(--color-primary-pale);
  opacity: 1;
}
.news--item:hover .news--headline {
  color: var(--color-primary);
}
.news--item:hover .news--tags .tag {
  background-color: #fff;
}

/* **************************************************************
 about 
*************************************************************** */
.about {
  background-color: var(--color-primary);
  overflow: hidden;
  padding-top: 0;
}

/* **************************************************************
 recruit 
*************************************************************** */
.recruit {
  background-color: var(--color-primary);
  overflow: hidden;
  padding-top: 0;
}

.recruit__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  overflow: clip;
}
.recruit__inner .content {
  width: 50%;
  padding: 80px;
}
.recruit__inner .content .text__summary {
  font-size: 16px;
}

.recruit__img {
  flex-shrink: 0;
}

/* **************************************************************
 member
*************************************************************** */
.member__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.member__info {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 90%;
  max-width: 1200px;
  height: 100%;
}

.member__stiky {
  position: sticky;
  left: 0;
  top: 200px;
  width: 43%;
}

.member__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  width: 50vw;
  margin-left: auto;
}

.member__box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 420px;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  color: var(--color-base);
}
.member__box:hover {
  opacity: 1;
}
.member__box:hover .mamber__box--img img {
  scale: 1.1;
}

.mamber__box--img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mamber__box--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.member__box--inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}

.member__box--head {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-end;
  gap: 8px 16px;
}
.member__box--head .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #11111B;
  line-height: 1;
  color: #fff;
  font-size: 48px;
}
.member__box--head .year {
  line-height: 1;
  font-weight: bold;
}
.member__box--head .name {
  line-height: 1;
  padding-left: 24px;
  grid-column: 1/3;
}

.member__box--catch {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  background-color: var(--color-primary);
  line-height: 1.2;
  font-size: 48px;
  color: #fff;
  font-weight: bold;
}

.member__box--role {
  display: block;
  padding-left: 24px;
  margin: 5px 0 24px;
  line-height: 1;
  font-weight: bold;
}

.slide-catch {
  margin: 120px 0;
  overflow: hidden;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-distance, -50%));
  }
}
.slide-catch__inner {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}
.slide-catch__inner span {
  line-height: 1;
  font-size: 200px;
  font-weight: bold;
}

/* **************************************************************
 heading
*************************************************************** */
.heading {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 40px;
  background-color: var(--color-primary-pale);
}

.heading__inner {
  width: calc(100% - 40px);
  height: 260px;
  display: flex;
  align-items: center;
  margin-left: auto;
  background: #fff;
  border-radius: 0 0 0 64px;
  overflow: hidden;
  padding-top: 30px;
}

.heading__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.heading__nav .button {
  min-width: 180px;
  font-size: 16px;
}

/* **************************************************************
   animation
  *************************************************************** */
.a-head__bg {
  transform-origin: center center;
  opacity: 0;
  transform: scale(0.92) translateY(50px);
}

.a-page {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.5s ease-in-out, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/*--------------------------------------------------------------------------------
  media 
--------------------------------------------------------------------------------*/
@media (max-width: 1439px) {
  /* **************************************************************
   style
  *************************************************************** */
  .container {
    width: 90%;
  }
  .column__wrap {
    gap: 0 50px;
  }
  /* **************************************************************
   header
  *************************************************************** */
  .header__nav {
    gap: 20px;
  }
  .header__menu {
    gap: 15px;
  }
  /* **************************************************************
   recruit
  *************************************************************** */
  .recruit__inner .content {
    padding: 60px 40px;
  }
}
@media (max-width: 1024px) {
  /*br*/
  .hidden__md {
    display: none;
  }
  .visible__md {
    display: block;
  }
  /*column*/
  .column__wrap {
    flex-direction: column;
    gap: 50px;
  }
  .column__side {
    width: 100%;
  }
  .side__nav {
    margin: 0;
  }
  .side__nav-list {
    flex-direction: row;
  }
  .card--2col {
    grid-column: 1/3;
  }
  .bg__mount::before,
  .bg__mount-pale::before {
    height: 245px;
  }
  .acc__round-bottom {
    border-bottom-right-radius: 150px;
  }
  /* **************************************************************
   header
  *************************************************************** */
  .header__nav {
    gap: 20px;
  }
  .header__menu {
    display: none;
  }
  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }
  .header__hamburger::before {
    content: "\f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 38px;
  }
  .is-open-menu .header__nav {
    padding: 24px;
  }
  .is-open-menu .header__logo {
    padding: 40px;
    background-color: var(--color-primary);
  }
  .is-open.header__hamburger::before {
    content: "\f00d";
  }
  /* ------------------------------------
   hamburger
  ------------------------------------ */
  .hamburger__wrap {
    display: block;
  }
  .hamburger__inner {
    position: fixed;
    top: 0;
    translate: 100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    padding: 120px 24px 24px;
    opacity: 0;
    background-color: #fff;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
  }
  .is-open .hamburger__inner {
    translate: 0;
    opacity: 1;
    visibility: visible;
  }
  .hamburger__menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  }
  .hamburger__menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 22px;
    font-weight: bold;
  }
  /* **************************************************************
   member
  *************************************************************** */
  .member__inner {
    flex-direction: column;
  }
  .member__info {
    position: relative;
  }
  .member__stiky {
    width: 100%;
  }
  .member__content {
    width: 90%;
    margin-right: auto;
  }
  .member__box {
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  /* **************************************************************
   style
  *************************************************************** */
  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .container__btns {
    margin-top: 30px;
  }
  /*column*/
  .column__wrap {
    flex-direction: column;
  }
  .column__wrap:not(:first-child) {
    margin-top: 56px;
    padding-top: 56px;
  }
  .column__side,
  .column__content {
    width: 100%;
  }
  /*side*/
  .side__nav-list {
    flex-direction: column;
  }
  .side__nav-item {
    width: 100%;
  }
  .side__nav-item a,
  .side__nav-item button {
    width: 100%;
  }
  /*card*/
  .card {
    gap: 15px;
  }
  .card__list--ls .card {
    flex-direction: column;
  }
  .card--2col {
    grid-column: 1/2;
  }
  /* **************************************************************
   common
  *************************************************************** */
  .title__sec {
    margin-bottom: 30px;
  }
  .title__sec.min .sub {
    font-size: 32px;
  }
  /*btn*/
  .button {
    width: 100%;
    font-size: 16px;
  }
  .visible__xs {
    display: block;
  }
  .hidden__xs {
    display: none;
  }
  /*list*/
  .list--2col {
    grid-template-columns: 1fr;
  }
  .list--3col,
  .list--4col,
  .list--5col {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .dl__max .dl-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .dl__min .dl-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px 0;
  }
  /*acc*/
  .acc__round {
    border-radius: 48px 48px 0 0;
  }
  /*pager*/
  .pager__nav {
    gap: 4px;
  }
  .pager__nav .prev,
  .pager__nav .next {
    gap: 4px;
  }
  .pager__nav .number {
    display: none;
  }
  .pager-button {
    font-size: 14px;
  }
  .pager-button.prev-more, .pager-button.next-more {
    min-width: 48px;
  }
  .pager-button.prev i, .pager-button.next i {
    display: none;
  }
  /* **************************************************************
   header
  *************************************************************** */
  .header__logo {
    padding: 24px;
  }
  .header__button {
    display: none;
  }
  .header__nav {
    padding: 16px 24px;
  }
  .is-open-menu .header__logo {
    padding: 24px;
  }
  .is-open-menu .header__nav {
    padding: 16px 24px;
  }
  /* **************************************************************
   footer
  *************************************************************** */
  .footer {
    padding: 120px 0 24px;
  }
  .footer__inner {
    align-items: center;
    gap: 120px;
  }
  .footer__main {
    align-items: center;
    width: 100%;
  }
  .footer__main .catch {
    font-size: 32px;
  }
  .footer__sns-icon .sns-icon {
    width: 48px;
    height: 48px;
  }
  .footer__address {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  /* **************************************************************
   instagram
  *************************************************************** */
  .instagram::before {
    height: 132px;
  }
  /* **************************************************************
   heading
  *************************************************************** */
  .heading {
    padding-top: 80px;
  }
  .heading__inner {
    width: calc(100% - 24px);
    height: 170px;
  }
  .heading__inner .title__sec .main {
    font-size: 16px;
  }
  .heading__inner .title__sec .sub {
    font-size: 32px;
  }
  /* **************************************************************
   news
  *************************************************************** */
  .news--item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 24px;
  }
  .news--headline {
    max-width: 100%;
  }
  .news--tags {
    margin-left: 0;
  }
  /* **************************************************************
   member
  *************************************************************** */
  .member__content {
    width: 90%;
  }
  .member__box {
    margin: 0 auto;
  }
  /* **************************************************************
   recruit
  *************************************************************** */
  .recruit__inner {
    flex-direction: column;
    align-items: center;
  }
  .recruit__inner .content {
    width: 100%;
    padding: 40px 24px;
  }
  .recruit__slide {
    width: 150%;
    height: 500px;
  }
  .other .slide-catch {
    margin: 0 0 120px;
  }
}/*# sourceMappingURL=common.css.map */