@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Ailerons";
  src: url(../font/Ailerons-Typeface.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  transition: font-size 0.2s ease-in-out;
}

/* PC: 769px以上 */
@media (min-width: 769px) {
  html {
    /* 1440pxで1rem = 10pxになるように計算 */
    font-size: 0.6944444444vw;
  }
}
/* SP: 768px以下 */
@media (max-width: 768px) {
  html {
    /* 390pxで1rem = 10pxになるように計算 */
    font-size: 2.3255813953vw;
  }
}
body {
  font-size: 1.2rem;
  font-family: "游ゴシック体", "Yu Gothic", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #111;
  overflow-x: hidden;
  background: #F1F1F1;
}

main {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.en {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jp {
  font-family: "游ゴシック体", "Yu Gothic", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

section {
  position: relative;
  /* margin: 10rem 0; */
}

p {
  font-size: 1.6rem;
}

a {
  display: block;
  text-decoration: none;
  color: #111;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 769px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

span {
  display: inline-block;
}

li {
  list-style: none;
}

.sp {
  display: none !important;
}
@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

.pc {
  display: block !important;
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
}
.header.hidden {
  transform: translateY(-100%);
}
.header_contain {
  padding: 1.7rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header_contain {
    padding: 1.5rem 2rem;
  }
}
.header__logo a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.header__logo_top {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.header__logo_top span {
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #111111;
}
.header__logo_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1rem;
  color: #111111;
  letter-spacing: 0.12em;
}
.header__logo img {
  width: 21rem;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 20rem;
  }
}
.header_right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header .nav {
    display: none;
  }
}
.header .nav__list {
  display: flex;
  align-items: center;
}
.header .nav__list li:last-child .nav__list_item {
  padding-right: 0;
}
.header .nav__list_item {
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 769px) {
  .header .nav__list_item:hover {
    opacity: 0.6;
  }
}
.header .nav__list_item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 2rem;
  background-color: #000;
}
.header .nav__list_item .en {
  font-weight: 400;
  font-size: 2rem;
  color: #111;
}
.header .nav__list_item .jp {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #111;
}
.header_recrut__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .header_recrut__links {
    display: none;
  }
}
.header_recrut__links_item {
  width: 16.5rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0.5rem;
  background: #00C7E3;
  color: #fff;
}
.header_recrut__links_item:nth-child(2) {
  background: #A54459;
}
.header_recrut__links_item .jp {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: center;
}
.header_recrut__links_item .en {
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.header__menubox {
  position: relative;
  z-index: 1004;
}
.header__menubox_btn {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  cursor: pointer;
}
.header__menubox_btn span {
  width: 4rem;
  height: 0.3rem;
  border-radius: 1rem;
  background-color: #111;
  transition: 0.2s;
}
@media (max-width: 768px) {
  .header__menubox_btn span {
    width: 3rem;
    height: 0.2rem;
  }
}
.header__menubox_btn.change .bar01 {
  transform: rotate(-35deg) translate(-0.5rem, 1rem);
  background-color: #fff;
}
@media (max-width: 768px) {
  .header__menubox_btn.change .bar01 {
    transform: rotate(-35deg) translate(-0.4rem, 0.9rem);
  }
}
.header__menubox_btn.change .bar02 {
  opacity: 0;
}
.header__menubox_btn.change .bar03 {
  transform: rotate(35deg) translate(-0.5rem, -1rem);
  background-color: #fff;
}
@media (max-width: 768px) {
  .header__menubox_btn.change .bar03 {
    transform: rotate(35deg) translate(-0.4rem, -0.9rem);
  }
}

.nav-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  -webkit-backdrop-filter: blur(3.5rem);
          backdrop-filter: blur(3.5rem);
  background: rgba(14, 16, 24, 0.8);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  padding: 11rem 5rem;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .nav-sp {
    padding: 10rem 1.5rem;
  }
}
.nav-sp.open {
  opacity: 1;
  z-index: 1002;
  visibility: visible;
}
.nav-sp .spnav_list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6rem 4rem;
}
@media (max-width: 768px) {
  .nav-sp .spnav_list {
    flex-direction: column;
    gap: 3.5rem;
  }
}
.nav-sp .spnav_list li {
  flex: none;
  position: relative;
}
@media (max-width: 768px) {
  .nav-sp .spnav_list li {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .nav-sp .spnav_list li .parentlink {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-sp .spnav_list li .parentlink {
    position: absolute;
    display: block;
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
  }
  .nav-sp .spnav_list li .parentlink::before {
    position: absolute;
    content: "";
    width: 1.3rem;
    height: 0.1rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
  }
  .nav-sp .spnav_list li .parentlink::after {
    position: absolute;
    content: "";
    width: 0.1rem;
    height: 1.3rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: 0.2s;
  }
}
.nav-sp .spnav_list li .parentlink.active::after {
  width: 0;
}
.nav-sp .spnav_list li .childlist {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 3rem;
}
@media (max-width: 768px) {
  .nav-sp .spnav_list li .childlist {
    margin-top: 1rem;
  }
}
.nav-sp .spnav_list li .childlist li {
  list-style: disc;
  color: #fff;
}
.nav-sp .spnav_list li .childlist li::marker {
  font-size: 1rem;
}
.nav-sp .spnav_list li .childlist__item {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #fff;
}
.nav-sp .spnav_list__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7rem;
}
.nav-sp .spnav_list__item .en {
  font-family: "Ailerons";
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: normal;
  color: #FFFFFF;
  text-align: center;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .nav-sp .spnav_list__item .en {
    font-size: 4.4rem;
    text-align: left;
  }
}
.nav-sp .spnav_list__item .jp {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #FFFFFF;
  transition: 0.3s;
  margin-left: 0.7rem;
}
@media (max-width: 768px) {
  .nav-sp .spnav_list__item .jp {
    font-size: 1.2rem;
    text-align: left;
  }
}

.main {
  margin-top: 10rem;
  position: relative;
}
@media (max-width: 768px) {
  .main {
    margin-top: 7rem;
  }
}

.footer {
  margin-top: 6rem;
  background: #1F1F1F;
  padding: 8rem 10rem 3rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 2rem 2rem;
  }
}
.footer__body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__body {
    flex-direction: column;
    gap: 4rem;
  }
}
.footer__left {
  max-width: 60rem;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo_top {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}
.footer__logo_top span {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
}
@media (max-width: 768px) {
  .footer__logo_top span {
    font-size: 1.2rem;
  }
}
.footer__logo_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.12em;
}
.footer__logo img {
  width: 42rem;
}
@media (max-width: 768px) {
  .footer__logo img {
    width: 20rem;
  }
}
.footer__address {
  margin-top: 4rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #fff;
}
.footer__nav {
  max-width: 55rem;
  width: 100%;
}
.footer__nav_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
}
.footer__nav_list li:nth-child(7) a {
  margin-top: 1.5rem;
}
.footer__nav_list li:nth-child(8) a {
  margin-top: 1.5rem;
}
.footer__nav_item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-bottom: 0.1rem solid #FFFFFF;
  padding: 0 1rem;
  padding-bottom: 1.5rem;
}
.footer__nav_item .en {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
}
.footer__nav_item .jp {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer .copyright {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .footer .copyright {
    margin-top: 8rem;
  }
}
.footer .footer__corporate {
        display: inline-block;
        margin-top: 4rem;
        font-family: "游ゴシック体", "Yu Gothic", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        line-height: 1;
        letter-spacing: 0.06em;
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 1rem;
        text-decoration-color: #fff;
}


.p-entry__inner {
  max-width: 130rem;
  width: 100%;
  margin: auto;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .p-entry__inner {
    padding: 4rem 2rem;
    margin-top: 0;
  }
}
.p-entry_body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media (max-width: 768px) {
  .p-entry_body {
    grid-template-columns: 1fr;
  }
}
.p-entry__itembox {
  border-radius: 2rem;
  padding: 3rem;
  background-image: url(../img/comon/entry-bg01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-entry__itembox {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
.p-entry__itembox:nth-child(2) {
  background-image: url(../img/comon/entry-bg02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.p-entry__itembox:nth-child(2) .p-entry__itembox_title_en {
  color: #A54459;
}
.p-entry__itembox:nth-child(2) .p-entry__itembox_title_jp {
  color: #A54459;
  border-color: #A54459;
}
.p-entry__itembox .contain {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-entry__itembox .contain {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1rem;
  }
}
.p-entry__itembox_link a {
  display: block;
  width: 5rem;
  min-width: 5rem;
}
.p-entry__itembox_title {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.p-entry__itembox_title_en {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #00C7E3;
}
.p-entry__itembox_title_en .txt01 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-entry__itembox_title_en .txt01 {
    font-size: 1.6rem;
  }
}
.p-entry__itembox_title_en .txt02 {
  font-weight: 500;
  font-size: 5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-entry__itembox_title_en .txt02 {
    font-size: 4.4rem;
  }
}
.p-entry__itembox_title_jp {
  border: 0.2rem solid #00C7E3;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.16em;
  color: #00C7E3;
  padding: 0.3rem 1.5rem;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .p-entry__itembox_title_jp {
    font-size: 1.4rem;
  }
}
.p-entry__itembox_txt {
  margin-top: 1rem;
}

.homepage .main {
  margin: 0;
  padding: 0;
}

.t-fv {
  padding: 2rem;
  background-color: #fff;
  z-index: 2;
  position: relative;
}
@media (max-width: 768px) {
  .t-fv {
    padding: 0;
  }
}
/* FV全体 */
.t-fv {
  position: relative;
}

/* 内側：背景img + オーバーレイ + コンテンツ */
.t-fv .t-fv_inner {
  position: relative;
  overflow: hidden;
}

/* 背景画像レイヤー */
.t-fv_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.t-fv_bg_pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
}

/* 暗いオーバーレイ */
.t-fv .t-fv_inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 16, 24, 0.7);
  z-index: 1;
}

/* 中身（ロゴ・テキスト・小さい画像） */
.t-fv_content {
  position: relative;
  z-index: 2;
}

/* 小さい画像 */
.t-fv_img {
  position: relative;
  width: 71.5rem;
  height: 42rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .t-fv_img {
    width: 37rem;
    height: 21rem;
  }
}

.t-fv_img_pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
}

/* CSS側では transition は持たせない（jQueryで制御する） */


.t-fv_content {
  position: relative;
  z-index: 3;
  padding: 3.5rem 2rem 2rem;
}
@media (max-width: 768px) {
  .t-fv_content {
    padding: 2rem 1rem;
  }
}
.t-fv_logo {
  margin: 0 auto;
  max-width: 20rem;
  width: 100%;
}
.t-fv_logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
}
.t-fv_img {
  max-width: 70rem;
  width: 100%;
  margin: 2rem auto;
}
@media (max-width: 768px) {
  .t-fv_img {
    max-width: 100%;
    margin: auto;
    margin-top: 2rem;
  }
}
.t-fv_navlist {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
@media (max-width: 768px) {
  .t-fv_navlist {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 0.5rem;
  }
}
.t-fv_navlist_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .t-fv_navlist_item {
    align-items: flex-start;
  }
}
.t-fv_navlist_item:hover {
  opacity: 1;
}
.t-fv_navlist_item:hover .en,
.t-fv_navlist_item:hover .jp {
  color: #fff;
}
.t-fv_navlist_item .en {
  font-family: "Ailerons";
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: 0.3s;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .t-fv_navlist_item .en {
    font-size: 4.8rem;
    text-align: left;
  }
}
.t-fv_navlist_item .jp {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .t-fv_navlist_item .jp {
    font-size: 1.2rem;
    text-align: left;
    margin-left: 0.5rem;
  }
}/*# sourceMappingURL=style.css.map */