@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 400px;
  }
}

/* タイトル
------------------------------*/
.c-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .c-section-title {
    display: block;
    margin-bottom: 0;
  }
}

.c-section-title__en {
  display: block;
  font-size: min(40px, 3.125vw);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-family: "brandon-grotesque", sans-serif;
}
@media (max-width: 767px) {
  .c-section-title__en {
    font-size: 40px;
    line-height: 1;
  }
}

.c-section-title__ja {
  display: block;
  font-size: min(18px, 1.5625vw);
  line-height: 2.2222222222;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 26px;
}
@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: 18px;
    margin-left: 0;
  }
}

/* 下層ページタイトル
------------------------------*/
.c-page-header {
  max-width: 1820px;
  width: 95%;
  margin-left: auto;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
  padding: 7vw 0;
  overflow: hidden;
}
.c-page-header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(51, 51, 51, 0.2);
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .c-page-header .inner {
    width: 1300px;
  }
}
@media (max-width: 767px) {
  .c-page-header {
    padding: 60px 0 60px;
  }
}

.c-page-title {
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.c-page-title__en {
  font-size: min(60px, 5.859375vw);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-family: "brandon-grotesque", sans-serif;
}
@media (max-width: 767px) {
  .c-page-title__en {
    font-size: 30px;
  }
}

.c-page-title__ja {
  font-size: min(18px, 1.8229166667vw);
  font-weight: 700;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-page-title__ja {
    font-size: 15px;
  }
}

/* ラベル
------------------------------*/
.c-block-label__en {
  display: block;
  color: #133391;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.8571428571;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-block-label__en {
    font-size: 10px;
  }
}

.c-block-label__ja {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
  color: #3ecc85;
}
@media (max-width: 767px) {
  .c-block-label__ja {
    font-size: 15px;
  }
}

/* 見出し
------------------------------*/
.c-box-heading {
  display: flex;
  flex-direction: column;
  font-size: min(34px, 2.34375vw);
  font-weight: 700;
  line-height: 1.3235294118;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (max-width: 767px) {
  .c-box-heading {
    font-size: min(20px, 4.333vw);
  }
}

.c-box-heading__text {
  width: -moz-fit-content;
  width: fit-content;
  background: #3ecc85;
  padding: 0.3em 0.5em;
}
.c-box-heading__text:nth-child(n+2) {
  margin-top: 8px;
}

.c-box-heading--wh .c-box-heading__text {
  color: #3ecc85;
  background: #fff;
}

.c-box-heading__subtext {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  background: #133391;
  padding: 0.5em 1em;
}
@media (max-width: 767px) {
  .c-box-heading__subtext {
    font-size: 15px;
  }
}

/* テキスト
------------------------------*/
.u-text-wh {
  color: #fff;
}

.u-text-bk {
  color: #000 !important;
}

.u-clor-accent {
  color: #3ecc85;
}

@media (min-width: 768px) {
  .c-letter[class] {
    width: 170px;
    display: flex;
    justify-content: space-between;
  }
  .entryBtnBox > a{
    right:1.2rem;
  }
}

/* ボタン
------------------------------*/
.c-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #3ecc85;
  font-family: "brandon-grotesque", sans-serif;
  position: relative;
  padding-right: 3em;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../recruit_images/icon_button-arrow.png) no-repeat center center/contain;
  width: 2.5em;
  aspect-ratio: 1/1;
}

.c-button--wh {
  color: #fff;
}
.c-button--wh::after {
  background: url(../recruit_images/icon_button-arrow_wh.png) no-repeat center center/contain;
}

/* パンくずリスト
------------------------------*/
.breadcrumb {
  max-width: 1820px;
  width: 95%;
  margin-left: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.8571428571;
  letter-spacing: 0.05em;
  padding: 10px 0 90px;
}
@media (max-width: 767px) {
  .breadcrumb {
    font-size: 10px;
    padding: 10px 0 40px;
  }
}

/* 背景グラデーション
------------------------------*/
.u-bg-container {
  background: linear-gradient(90deg, rgb(62, 204, 133) 0%, rgb(140, 229, 137) 100%);
}

/* インタビューカード
------------------------------*/
.c-interview-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-interview-cards {
    display: block;
  }
}

.c-interview-card {
  width: calc(20% - 12.8px);
}
.c-interview-card a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .c-interview-card:not(:nth-child(5n)) {
    margin-right: 16px;
  }
  .c-interview-card:nth-child(n+6) {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .c-interview-card {
    width: 260px;
    max-width: 100%;
    margin: 0 auto;
  }
  .c-interview-card:nth-child(n+2) {
    margin-top: 45px;
  }
}

.c-interview__thumbnail {
  width: 100%;
  aspect-ratio: 220/260;
}
.c-interview__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.c-interview__category {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #64a36f;
  border-radius: 12px;
  font-size: min(14px, 1.5625vw);
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0em 0.8em;
  margin-top: 16px;
}
@media screen and (max-width: 999px) {
  .c-interview__category {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .c-interview__category {
    font-size: 10px;
    margin-top: 2.5em;
  }
}

.c-interview__position {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7222222222;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 999px) {
  .c-interview__position {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .c-interview__position {
    font-size: 15px;
  }
}

.c-interview__name {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: min(18px, 1.8229166667vw);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 767px) {
  .c-interview__name {
    font-size: 15px;
  }
}

.c-interview__name-text {
  font-size: min(30px, 2.6041666667vw);
  margin-right: 10px;
}
@media screen and (max-width: 999px) {
  .c-interview__name-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .c-interview__name-text {
    font-size: 20px;
  }
}

/* エントリーナビゲーションバー
------------------------------*/
.c-entry-nav {
  background: #fff;
  border-radius: 10px;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.c-entry-nav li {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7222222222;
  letter-spacing: 0.05em;
  color: #3ecc85;
}
.c-entry-nav li:nth-child(n+2) {
  margin-left: 9%;
  position: relative;
}
.c-entry-nav li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translate(-50%, -50%);
  background: url(../recruit_images/icon_arrow_blue.png) no-repeat center center/contain;
  width: 18px;
  aspect-ratio: 1/1;
}
.c-entry-nav .current {
  color: #133391;
}
@media (max-width: 767px) {
  .c-entry-nav {
    padding: 5px 0;
  }
  .c-entry-nav li {
    font-size: 15px;
  }
  .c-entry-nav li:nth-child(n+2) {
    margin-left: 45px;
  }
  .c-entry-nav li:nth-child(n+2)::before {
    left: -22px;
    width: 12px;
  }
}

.c-entry-nav__number {
  margin-right: 10px;
}

/*------------------------------
header
------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  transition: all 0.3s;
}
header.act {
  background: #fff;
}
header.act .header__logo__img::after {
  background: #133391;
}
header.act .header__logo-subtext {
  color: #133391;
}

.header__inner {
  width: 100%;
  max-width: 100%;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .header__inner {
    padding-left: 20px;
  }
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo .header__logo__img {
  width: min(285px, 28.6458333333vw);
  position: relative;
}
.header__logo .header__logo__img::after {
  content: "";
  position: absolute;
  aspect-ratio: 382/124;
  width: 67%;
  right: 0%;
  top: 50%;
  transform: translate(0%, -50%);
  transition: background 0.7s;
  background: #fff;
  -webkit-mask-image: url(../recruit_images/logo_text_2025.png);
          mask-image: url(../recruit_images/logo_text_2025.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.header__logo .header__logo__img img {
  width: 28%;
}
.header__logo a {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__logo .header__logo__img {
    width: 140px;
  }
}

.header__logo-subtext {
  font-size: min(30px, 2.6041666667vw);
  font-weight: 500;
  line-height: 1.7333333333;
  color: #133391;
  color: #fff;
  margin-left: 15px;
  transition: color 0.7s;
}
@media (max-width: 767px) {
  .header__logo-subtext {
    font-size: 15px;
  }
}

.header__nav {
  display: flex;
}

.header__sns {
  display: flex;
}
.header__sns a {
  padding: 20px;
  background: #fff;
  display: inline-block;
  width: 100;
  height: 100%;
}
.header__sns a img {
  width: 60px;
}
@media (max-width: 767px) {
  .header__sns {
    display: none;
  }
}

.drawer-icon {
  width: 100px;
  height: 100px;
  background: #133391;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 300;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}
@media (max-width: 767px) {
  .drawer-icon {
    width: 50px;
    height: 50px;
  }
}

.drawer-icon__bars {
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 400;
}
@media (max-width: 767px) {
  .drawer-icon__bars {
    width: 20px;
  }
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 30px;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .drawer-icon__bar1,
  .drawer-icon__bar2,
  .drawer-icon__bar3 {
    width: 20px;
  }
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 100%;
  height: auto;
  position: fixed;
  top: 100px;
  right: 0;
  background: #133391;
  padding: 100px 20px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .drawer-content {
    top: 50px;
    height: 100vh;
    height: 100svh;
    padding: 30px 20px 80px;
  }
}

@media (max-width: 767px) {
  .drawer-content__inner {
    width: 100%;
    max-width: 100%;
  }
}

.drawer-menu {
  display: flex;
  flex-wrap: wrap;
}
.drawer-menu li {
  width: 28.9%;
}
.drawer-menu li a {
  display: block;
  font-size: min(30px, 2.34375vw);
  font-weight: 700;
  line-height: 1.3235294118;
  letter-spacing: 0.05em;
  color: #fff;
  padding-bottom: 1em;
  border-bottom: 1px dotted #fff;
}
@media (min-width: 768px) {
  .drawer-menu li:not(:nth-child(3n)) {
    margin-right: 6.6%;
  }
  .drawer-menu li:nth-child(n+4) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .drawer-menu {
    display: block;
  }
  .drawer-menu li {
    width: 100%;
  }
  .drawer-menu li a {
    font-size: 20px;
    padding: 15px 0;
  }
}

.drawer__button {
  margin-top: 100px;
}
.drawer__button a {
  display: inline-block;
  background: #3ecc85;
  border-radius: 20px;
  width: 100%;
  font-size: min(34px, 2.6041666667vw);
  font-weight: 700;
  line-height: 1.3235294118;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 1.5em 0;
}

.drawer__box {
  border-radius: 10px;
  background: #fff;
  padding: 17px;
  margin-top: 17px;
}
@media (max-width: 767px) {
  .drawer__box {
    border-radius: 5px;
    margin-top: 20px;
  }
}

.drawer__logo {
  width: 200px;
  margin: 0 auto;
  padding-bottom: 17px;
  border-bottom: 1px dotted #3ecc85;
  display: flex;
  align-items: center;
}
.drawer__logo::after {
  display: inline-block;
  content: "";
  position: relative;
  aspect-ratio: 382/124;
  width: 67%;
  transition: background 0.7s;
  background: #133391;
  -webkit-mask-image: url(../recruit_images/logo_text.png);
          mask-image: url(../recruit_images/logo_text.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.drawer__logo img {
  width: 28%;
}

.drawer__sns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.drawer__sns a {
  display: inline-block;
  width: 40px;
}
.drawer__sns a:first-child {
  margin-right: 25px;
}

/*------------------------------
entry
------------------------------*/
.entry {
  background: url(../recruit_images/entry_bg.jpg) no-repeat center center/cover;
  padding: 90px 0;
  margin-bottom: 185px;
  position: relative;
}
@media (max-width: 767px) {
  .entry {
    padding: 20px 0 55px;
    margin-bottom: 100px;
  }
}

.entry__title {
  flex-direction: column;
}
@media (max-width: 767px) {
  .entry__title {
    text-align: center;
  }
}

.entry__title-ja {
  margin-left: 0;
}

.entry__button {
  max-width: 1200px;
  width: 90%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 60%);
  text-align: center;
}
.entry__button a {
  display: inline-block;
  width: 100%;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background: #3ecc85;
  border-radius: 20px;
  padding: 1.5em 0;
}
.entry__button a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .entry__button a {
    font-size: 20px;
  }
}

/*------------------------------
footer
------------------------------*/
footer {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 120px;
  }
}

.footer__content {
  padding-bottom: 55px;
}
@media (max-width: 767px) {
  .footer__content {
    padding-bottom: 20px;
  }
}

.footer__logo {
  width: 360px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 200px;
  }
}

.footer__menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__menu li {
  margin-top: 30px;
}
.footer__menu li:nth-child(n+2) {
  margin-left: 50px;
}
.footer__menu li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .footer__menu {
    display: none;
  }
}

.footer__bottom {
  padding-top: 30px;
  border-top: 2px dotted #3ecc85;
}
@media (max-width: 767px) {
  .footer__bottom {
    padding-top: 25px;
  }
}

.footer__button {
  text-align: center;
}
.footer__button a {
  display: inline-block;
  width: 286px;
  border-radius: 30px;
  background: linear-gradient(90deg, rgb(62, 204, 133) 0%, rgb(140, 229, 137) 100%);
  font-size: 14px;
  font-weight: 700;
  line-height: 2.8571428571;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 0.7em 0;
}
@media (max-width: 767px) {
  .footer__button a {
    font-size: 15px;
  }
}

.footer__copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1.3em;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
    margin-top: 25px;
  }
}

/*------------------------------
float
------------------------------*/
.float {
  position: fixed;
  z-index: 500;
  right: 0;
  background: #133391;
  border-radius: 30px 0 0 30px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  aspect-ratio: 70/250;
  width: 70px;
  padding-top: 2em;
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-size: 14px;
  font-weight: 700;
}
.float span, .float p {
  color: #fff;
}
.float span {
  color: #3ECC85;
}
.float img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: 5%;
  width: 70%;
}
@media (min-width: 768px) {
  .float {
    top: 50%;
    transform: translateY(-50%);
  }
  .float span, .float p {
    writing-mode: vertical-lr;
  }
}
@media (max-width: 767px) {
  .float {
    border-radius: 10px 10px 0 0;
    width: 100%;
    aspect-ratio: 750/100;
    top: unset;
    bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    padding-left: 13%;
  }
  .float span {
    font-size: 2.6666666667vw;
  }
  .float p {
    font-size: 5.3333333333vw;
    margin-left: 0.2em;
  }
  .float img {
    left: 82%;
    width: 10%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/*------------------------------
menu
------------------------------*/
.menu {
  background: #8CE589;
  padding: 50px 0;
}

@media (min-width: 768px) {
  .menu__list {
    display: flex;
    justify-content: space-between;
  }
}

.menu__item {
  width: 32.5%;
  border-radius: 10px;
  background: #fff;
}
.menu__item a {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .menu__item {
    width: 100%;
  }
  .menu__item:nth-child(n+2) {
    margin-top: 10px;
  }
}

.menu__body {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 63%;
}
.menu__body--ja,
.menu__body--en {
  font-weight: bold;
  color: #3ECC85;
  display: block;
}

.menu__body--ja {
  margin-top: 1em;
  font-size: min(14px, 1.1666666667vw);
}
@media (max-width: 767px) {
  .menu__body--ja {
    font-size: 15px;
  }
}

.menu__body--en {
  font-size: min(26px, 2.1666666667vw);
}
@media (max-width: 767px) {
  .menu__body--en {
    font-size: 22px;
  }
}

.menu__image {
  width: 37%;
  padding: 1%;
}

/*------------------------------
アンカー
------------------------------*/
.c-anc {
  scroll-margin-top: 100px;
}

/*------------------------------
アニメ
------------------------------*/
.fade {
  opacity: 0;
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}

.common__pageLinks {
  padding: 50px 0;
  background: #3ecc85;
  background: linear-gradient(90deg, #3ecc85 0%, #8ce589 100%);
}
.common__pageLinks ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .common__pageLinks ul {
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.common__pageLinks ul li {
  background-color: #fff;
  border-radius: 1rem;
  max-width: 393px;
  width: 33%;
  height: 120px;
}
@media (max-width: 767px) {
  .common__pageLinks ul li {
    border-radius: 0.5rem;
    max-width: inherit;
    width: 100%;
    height: auto;
  }
}
.common__pageLinks ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
}
@media (max-width: 767px) {
  .common__pageLinks ul li a {
    padding: 4px;
  }
}
.common__pageLinks ul li picture {
  display: block;
  overflow: hidden;
  border-radius: 0 5px 5px 0;
  aspect-ratio: 136/110;
  max-width: 136px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .common__pageLinks ul li picture {
    aspect-ratio: 232/187;
    width: 34.6268656716%;
    max-width: 232px;
    border-radius: 0 3px 3px 0;
  }
}
.common__pageLinks ul li picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.common__pageLinks ul li .info {
  width: 65%;
}
.common__pageLinks ul li .info p {
  color: #3ECC85;
}
.common__pageLinks ul li .info p:nth-of-type(1) {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .common__pageLinks ul li .info p:nth-of-type(1) {
    font-size: 2.25rem;
  }
}
.common__pageLinks ul li .info p:nth-of-type(2) {
  line-height: 1;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 9px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media (max-width: 767px) {
  .common__pageLinks ul li .info p:nth-of-type(2) {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}/*# sourceMappingURL=common.css.map */