@charset "UTF-8";
html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: var(--black);
  background: var(--cream);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  width: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: 0;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------------
 * フォント
 * ------------------------- */
.ff-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-forum {
  font-family: "Forum", serif;
}

.ff-inter {
  font-family: "Inter", sans-serif;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.fwb {
  font-weight: bold;
}

.fwsb {
  font-weight: 600;
}

/* -------------------------
 * フォントサイズ
 * ------------------------- */
.f10 {
  font-size: 1rem;
}

.f12 {
  font-size: 1.2rem;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .f15 {
    font-size: 1.4rem;
  }
}

.f16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .f16 {
    font-size: 1.5rem;
  }
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f21 {
  font-size: 2.1rem;
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .f24 {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 450px) {
  .f24 {
    font-size: 4.5vw;
  }
}

.f28 {
  font-size: 2.8rem;
}

.f30 {
  font-size: 3rem;
}
@media screen and (max-width: 834px) {
  .f30 {
    font-size: 4vw;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 834px) {
  .f32 {
    font-size: 4.27vw;
  }
}

.f36 {
  font-size: 3.6rem;
}
@media screen and (max-width: 834px) {
  .f36 {
    font-size: 4vw;
  }
}

.f38 {
  font-size: 3.8rem;
}
@media screen and (max-width: 834px) {
  .f38 {
    font-size: 4.56vw;
  }
}

.f42 {
  font-size: 4.2rem;
}
@media screen and (max-width: 834px) {
  .f42 {
    font-size: 5.05vw;
  }
}
@media screen and (max-width: 450px) {
  .f42 {
    font-size: 6.2vw;
  }
}

.f60 {
  font-size: 6rem;
}

.f62 {
  font-size: 6.2rem;
}

.f100 {
  font-size: 10rem;
}
@media screen and (max-width: 834px) {
  .f100 {
    font-size: 12vw;
  }
}

/* -------------------------
 * 余白
 * ------------------------- */
.inner {
  max-width: 890px;
  width: 90%;
  margin: 0 auto;
}

/* -------------------------
 * カラー
 * ------------------------- */
:root {
  --white: #fff;
  --white-hover: #c8d4d9;
  --black: #222;
  --cream: #faf4ed;
  --taupe: #e6d9cd;
}

.fc--white {
  color: var(--white);
}

.fc--black {
  color: var(--black);
}

.bg--cream {
  background: var(--cream);
}

.bg--taupe {
  background: var(--taupe);
}

.link-underline {
  text-decoration: underline;
}
.link-underline:hover {
  text-decoration: underline;
  opacity: 0.6;
}

/* -------------------------
 * 改行
 * ------------------------- */
.br-834 {
  display: none;
}
@media (max-width: 834px) {
  .br-834 {
    display: block;
  }
}

.no-br-834 {
  display: block;
}
@media (max-width: 834px) {
  .no-br-834 {
    display: none;
  }
}

.br-639 {
  display: none;
}
@media (max-width: 639px) {
  .br-639 {
    display: block;
  }
}

.no-br-639 {
  display: block;
}
@media (max-width: 639px) {
  .no-br-639 {
    display: none;
  }
}

.br-499 {
  display: none;
}
@media (max-width: 499px) {
  .br-499 {
    display: block;
  }
}

.no-br-499 {
  display: block;
}
@media (max-width: 499px) {
  .no-br-499 {
    display: none;
  }
}

.br-450 {
  display: none;
}
@media (max-width: 450px) {
  .br-450 {
    display: block;
  }
}

.no-br-450 {
  display: block;
}
@media (max-width: 450px) {
  .no-br-450 {
    display: none;
  }
}

.br-399 {
  display: none;
}
@media (max-width: 399px) {
  .br-399 {
    display: block;
  }
}

.no-br-399 {
  display: block;
}
@media (max-width: 399px) {
  .no-br-399 {
    display: none;
  }
}

/* -------------------------
 * ヘッダー
 * ------------------------- */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* -------------------------
 * ボタン
 * ------------------------- */
/* デフォルト */
.base-btn {
  font-family: "Inter", sans-serif;
  width: 24rem;
  font-size: 1.6rem;
  padding-block: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  border: solid 0.5px #222;
  margin: 5rem auto 0;
  color: #222;
}
.base-btn.--bg-cream {
  background: var(--cream);
}
.base-btn.--bg-cream:hover {
  color: var(--cream);
}
.base-btn.--bg-taupe {
  background: var(--taupe);
}
.base-btn.--bg-taupe:hover {
  color: var(--taupe);
}
.base-btn:hover {
  background: #222;
}

/* 矢印 */
.link--arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.link--arrow:hover .link-icon--arrow:after {
  -webkit-animation: linkArrow 0.35s ease-out forwards;
          animation: linkArrow 0.35s ease-out forwards;
}

.link-icon--arrow::after {
  content: "";
  display: inline-block;
  aspect-ratio: 26/7;
  width: 1.8rem;
  background: url(../img/common/arrow.webp) no-repeat center;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@-webkit-keyframes linkArrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
    opacity: 0;
  }
  75% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes linkArrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
    opacity: 0;
  }
  75% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* -------------------------
 * コンテンツ
 * ------------------------- */
.layout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

:root {
  --menu-width: 19.7rem;
  --main-width: 59rem;
}

/* コンテンツ内容 */
.page-txt {
  font-size: 1.6rem;
  line-height: 1.9;
  font-weight: 200;
}
.page-txt--small {
  font-size: 1.4rem;
}

/* -------------------------
 * sp用セクション余白
 * ------------------------- */
:root {
  --sec-padding-sp: 5rem;
}

/* -------------------------
 * 見出し
 * ------------------------- */
.sec-ttl {
  position: relative;
  z-index: 10;
}
.sec-ttl.--blue {
  color: #b6c3c8;
}
.sec-ttl.--white {
  color: #fff;
}
.sec-ttl.--center {
  text-align: center;
}
.sec-ttl.--left {
  text-align: left;
  margin-bottom: 3rem;
}
.sec-ttl .sec-ttl__jp {
  line-height: 1;
  margin-bottom: 1rem;
}
.sec-ttl .sec-ttl__en {
  font-size: 10rem;
  line-height: 1;
}
@media (max-width: 639px) {
  .sec-ttl .sec-ttl__en {
    font-size: 6rem;
  }
}

/* -------------------------
 * メイン箇所
 * ------------------------- */
.layout__main {
  position: relative;
  width: min(100%, var(--main-width));
  margin-left: auto;
  margin-right: var(--menu-width);
  z-index: 2;
}
@media (max-width: 1024px) {
  .layout__main {
    width: 100%;
    margin-right: 0;
  }
}
.layout__main.active {
  display: block;
  z-index: unset;
}

/* -------------------------
 * サイド背景箇所（スライダー）
 * ------------------------- */
.layout__bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(100% - (var(--menu-width) + var(--main-width)));
  overflow: hidden;
}
@media (max-width: 1024px) {
  .layout__bg {
    display: none;
  }
}
.layout__bg .swiper {
  height: 100vh;
}
.layout__bg .swiper .swiper-wrapper,
.layout__bg .swiper .swiper-slide {
  height: 100%;
}
.layout__bg .swiper .swiper-img {
  height: 100vh;
}
.layout__bg .swiper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.top-aside .swiper-slide-active .swiper-img,
.top-aside .swiper-slide-duplicate-active .swiper-img,
.top-aside .swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

/* -------------------------
 * サイドメニュー箇所
 * ------------------------- */
.layout-menu {
  background: #8e9da3;
  position: fixed;
  top: 0;
  right: 0;
  width: var(--menu-width);
  height: 100vh;
}
@media (max-width: 1024px) {
  .layout-menu {
    min-width: unset;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, z-index 0s 0.4s;
    transition: opacity 0.4s ease, visibility 0.4s ease, z-index 0s 0.4s;
    padding: 3rem 2rem 10rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.layout-menu.active {
  opacity: 1;
  visibility: visible;
  z-index: 99;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, z-index 0s;
  transition: opacity 0.4s ease, visibility 0.4s ease, z-index 0s;
}

.layout-menu__ttl-img {
  max-width: 27rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .layout-menu__ttl-img {
    max-width: 12rem;
  }
}

.layout-menu__ttl {
  color: #fff;
  font-weight: normal;
  line-height: 1;
  margin-top: 0.5rem;
  font-size: 6.5rem;
}
@media (max-width: 1024px) {
  .layout-menu__ttl {
    font-size: 3rem;
  }
}

.layout-menu__ttl-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media (max-width: 1024px) {
  .layout-menu__ttl-wrap {
    display: block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 16vw;
  }
}

.layout-menu__gnav-list {
  color: #fff;
  font-size: 1.6rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  top: 50%;
}
@media (max-width: 1024px) {
  .layout-menu__gnav-list {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 3.2rem;
    text-align: center;
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  }
}
.layout-menu__gnav-list li + li {
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .layout-menu__gnav-list li + li {
    margin-top: 2rem;
  }
}

.layout-menu__gnav-item {
  letter-spacing: 0.05rem;
}
.layout-menu__gnav-item a:hover {
  color: var(--white-hover);
}

.layout-menu__btns {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  bottom: 7vh;
}
@media (max-width: 1024px) {
  .layout-menu__btns {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
}
@media (max-width: 834px) {
  .layout-menu__btns {
    gap: 2rem;
  }
}

.layout-menu__btn {
  padding-block: 0.5rem;
  border-radius: 50px;
  width: 11.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
@media (max-width: 1024px) {
  .layout-menu__btn {
    width: 44%;
    padding-block: 1.6rem;
    max-width: 30rem;
  }
}
@media (max-width: 639px) {
  .layout-menu__btn {
    width: 48%;
    margin: 0;
  }
}
.layout-menu__btn.--job-desc {
  background-color: #b8c3c7;
}
.layout-menu__btn.--job-desc:hover {
  background-color: #c6cfd2;
}
.layout-menu__btn.--entry {
  background-color: #dbbead;
}
.layout-menu__btn.--entry:hover {
  background-color: #e3ccbf;
}

.layout-menu__btn + .layout-menu__btn {
  margin-top: 1.2rem;
}
@media (max-width: 1024px) {
  .layout-menu__btn + .layout-menu__btn {
    margin-top: 0;
  }
}

.layout-menu__instagram {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  bottom: 6vh;
  margin-top: 4rem;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 4rem auto 0;
}
@media (max-width: 1024px) {
  .layout-menu__instagram {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 5rem;
    width: 2.4rem;
  }
}
.layout-menu__instagram svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 18px;
  height: 18px;
}
.layout-menu__instagram svg:hover {
  fill: var(--white-hover);
}

.layout-menu__bottom-links {
  display: none;
}
@media (max-width: 1024px) {
  .layout-menu__bottom-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5%;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    color: #fff;
    width: 100%;
    margin-top: 5rem;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
  }
}
@media (max-width: 1024px) {
  .layout-menu__bottom-links li a:hover {
    color: var(--white-hover);
  }
}

/* -------------------------
 * ハンバーガーボタン
 * ------------------------- */
.open-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  z-index: 100;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #000;
  display: none;
}
@media (max-width: 1024px) {
  .open-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.open-btn__bars:hover {
  cursor: pointer;
}

.open-btn__bars,
.open-btn__bars span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.open-btn__bars {
  position: relative;
  width: 30px;
  height: 18px;
}

.open-btn__bars span {
  position: absolute;
  width: 30px;
  height: 1px;
  background: #fff;
  left: 0;
}

.open-btn__bars span:nth-of-type(1) {
  top: 5px;
}

.open-btn__bars span:nth-of-type(2) {
  bottom: 5px;
}

.open-btn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.open-btn.active span {
  width: 90%;
}
.open-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(3px) translateX(2px) rotate(-30deg);
          transform: translateY(3px) translateX(2px) rotate(-30deg);
}
.open-btn.active span:nth-of-type(2) {
  -webkit-transform: translateY(-4px) translateX(2px) rotate(30deg);
          transform: translateY(-4px) translateX(2px) rotate(30deg);
}

.open-btn__txt {
  font-size: 1.1rem;
  color: #fff;
}

/* -------------------------
 * 画像の表示読み込み
 * ------------------------- */
.js-fade-img {
  overflow: hidden;
}
.js-fade-img img {
  opacity: 0;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.js-fade-img.active img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.js-fade-img--delay02 img {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.js-fade-img--delay04 img {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

/* -------------------------
 * フッター
 * ------------------------- */
.footer {
  padding-block: 9rem 5rem;
}

.footer__menu-link-txt {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__menu-link-txt--jp {
  font-weight: 200;
}

.footer__menu-link:hover .footer__menu-link-txt {
  opacity: 0.6;
}

.footer__menu-list li {
  border-bottom: 1px solid #ddd;
}
.footer__menu-list li:first-child {
  padding-bottom: 1rem;
}
.footer__menu-list li:not(:first-child) {
  padding-block: 2rem 1rem;
}

.footer__menu-link-txt {
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8rem;
}
@media (max-width: 639px) {
  .footer__menu-link-txt {
    font-size: 2rem;
    gap: 1rem;
  }
}
.footer__menu-link-txt span {
  font-size: 1.5rem;
}
@media (max-width: 639px) {
  .footer__menu-link-txt span {
    font-size: 1.3rem;
  }
}

.footer__btn-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-block: 7rem 8rem;
}
.footer__btn-list li {
  border-radius: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__btn-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  color: #fff;
  font-size: 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.footer__btn-list li:nth-child(1) {
  background-color: #b8c3c7;
}
.footer__btn-list li:nth-child(1):hover {
  background-color: #c6cfd2;
}
.footer__btn-list li:nth-child(2) {
  background-color: #dbbead;
}
.footer__btn-list li:nth-child(2):hover {
  background-color: #e3ccbf;
}

.footer__copy {
  text-align: center;
  font-size: 1.3rem;
}/*# sourceMappingURL=style.css.map */