@charset "UTF-8";
/* ------------------------------------

colors setting

------------------------------------ */
/* ------------------------------------

colors setting の変数ではなく
下記の左側の変数をcssで指定する

×：$black
◯：$dark-text

------------------------------------ */
/*  text-color
*----------------------------------- */
/*  background-color
*----------------------------------- */
/*  border-color
*----------------------------------- */
/*  system-color
*----------------------------------- */
/*  cv
*----------------------------------- */
/*  footer
*----------------------------------- */
/*  menu
*----------------------------------- */
/*  new icon
*----------------------------------- */
/*  horizontal
*----------------------------------- */
/*  slick-color
*----------------------------------- */
.en {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.en02 {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.yakuhan {
  font-family: "YakuHanJP", source-han-sans-japanese, sans-serif;
}

/* ------------------------------------

cmn

------------------------------------ */
.page-top .p-header {
  text-align: center;
  max-width: 90%;
  margin: 0 auto 20px;
}
.page-top .p-header__title {
  font-size: 50px;
  line-height: 1;
}
.page-top .p-header__subtitle {
  font-size: 13px;
  margin-top: 4px;
}
.page-top .p-header__text {
  font-size: 15px;
  margin-top: 10px;
}

.l-main {
  padding-bottom: 0;
}

.anc_place {
  padding-top: 130px;
  margin-top: -130px;
}
@media print, screen and (max-width: 740px) {
  .anc_place {
    padding-top: 16vw;
    margin-top: -16vw;
  }
}

/* ------------------------------------

ロード動き

------------------------------------ */
/* ①灰色の背景 */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #4C4A4A; /* 灰色 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.loader-text {
  color: white;
  font-size: 36px;
  z-index: 10; /* 黄色の下、灰色の上の層 */
  animation: fadeOutText 0.2s 0.9s forwards; /* 黄色が重なった瞬間に消えるように設定 */
}
@media print, screen and (max-width: 740px) {
  .loader-text {
    font-size: 8.5vw;
    line-height: 1.3 !important;
  }
}

/* ②③黄色のパネル（共通設定） */
.yellow-panel {
  position: absolute;
  top: 0;
  width: 50%; /* 画面の半分 */
  height: 100%;
  background-color: #FBC200;
  z-index: 200000;
}

/* 左半分のパネル：左端からスタート */
.yellow-panel.left {
  left: 0;
  transform: translateY(-100%); /* 上に隠しておく */
}

/* 右半分のパネル：真ん中（50%）からスタート */
.yellow-panel.right {
  left: 50%;
  transform: translateY(100%); /* 下に隠しておく */
}

/* --- アニメーションの処理（変更なし） --- */
.is-loaded .yellow-panel.left {
  animation: slideLeft 2s forwards ease-in-out;
}

.is-loaded .yellow-panel.right {
  animation: slideRight 2s forwards ease-in-out;
}

@keyframes fadeOutText {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* 左半分の動き：45%〜60%の間で0（静止）をキープ */
@keyframes slideLeft {
  0% {
    transform: translateY(-100%);
  }
  45% {
    transform: translateY(0);
  } /* 画面を覆い切る */
  60% {
    transform: translateY(0);
  } /* ★ここで約0.3秒間静止（全体の2秒に対して） */
  100% {
    transform: translateY(100%);
  } /* 下へ消える */
}
/* 右半分の動き：同じく45%〜60%の間で静止 */
@keyframes slideRight {
  0% {
    transform: translateY(100%);
  }
  45% {
    transform: translateY(0);
  } /* 画面を覆い切る */
  60% {
    transform: translateY(0);
  } /* ★ここで約0.3秒間静止 */
  100% {
    transform: translateY(-100%);
  } /* 上へ消える */
}
/* アニメーション終了後にローダー自体を消す */
.is-loaded {
  animation: removeLoader 2.1s forwards;
}

@keyframes fadeOut {
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes removeLoader {
  /* 0.9秒（45%）で黄色が画面を完全に覆います */
  0%, 44% {
    background-color: #4C4A4A;
  }
  /* 45%（黄色が閉じきった瞬間）に背景を透明にする。
     これで、黄色が開き始めた時はもう後ろに灰色はいません。 */
  45%, 99% {
    background-color: transparent;
    visibility: visible;
  }
  /* 100%（2.1秒後）でローダー自体を完全に消してクリックを可能にする */
  100% {
    background-color: transparent;
    visibility: hidden;
    pointer-events: none;
  }
}
/* ------------------------------------

mv

------------------------------------ */
.mv {
  background: #EFEFEF;
}
.mv .mv_area {
  position: relative;
}
.mv .mv_img {
  display: flex;
}
@media print, screen and (max-width: 740px) {
  .mv .mv_img {
    display: flex;
    flex-direction: column-reverse;
  }
}
.mv .mv_img img {
  width: 50%;
}
@media print, screen and (max-width: 740px) {
  .mv .mv_img img {
    width: 100%;
  }
}
.mv .mv_img01 {
  border-radius: 0 0 0 140px;
}
@media print, screen and (max-width: 740px) {
  .mv .mv_img01 {
    border-radius: 0 0 15.38vw 15.38vw;
  }
}
.mv .mv_img02 {
  border-radius: 0 0 140px 0;
}
@media print, screen and (max-width: 740px) {
  .mv .mv_img02 {
    border-radius: 0;
  }
}
.mv .mv_text01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10.83%;
}
@media print, screen and (max-width: 740px) {
  .mv .mv_text01 {
    width: 80vw;
  }
}
@media print, screen and (min-width: 741px) {
  .mv .mv_text02 {
    width: 93.02%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: -0.2%;
  }
}
@media print, screen and (max-width: 740px) {
  .mv .mv_text02 {
    width: 10.51vw;
    top: 50%;
    transform: translate(0%, -50%);
    right: 0%;
    position: absolute;
  }
}

/* ------------------------------------

l-qol

------------------------------------ */
.l-qol {
  position: relative;
  padding: 109px 0 127px;
  background: #EFEFEF;
  overflow: hidden;
}
@media print, screen and (max-width: 740px) {
  .l-qol {
    padding: 16.8vw 5.5vw 17vw;
  }
}
.l-qol__inner {
  max-width: calc(1200px + 8%);
  margin: 0 auto;
  position: relative;
}
@media print, screen and (min-width: 741px) {
  .l-qol__inner {
    padding: 0 4%;
  }
}
@media print, screen and (max-width: 740px) {
  .l-qol__inner {
    font-size: 4.36vw;
  }
}
.l-qol__text {
  position: relative;
  text-align: left;
  z-index: 2;
}
.l-qol__text p {
  font-size: 24px;
  font-weight: 600;
  line-height: 2.2;
  margin-bottom: 51px;
}
@media print, screen and (max-width: 740px) {
  .l-qol__text p {
    font-size: 4.36vw;
    line-height: 2;
    margin-bottom: 8.8vw;
  }
}
.l-qol__highlight {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.55;
}
@media print, screen and (max-width: 740px) {
  .l-qol__highlight {
    font-size: 5.13vw;
    margin: 11vw auto 3vw;
    line-height: 1.59;
  }
}
.l-qol__highlight span {
  background: #FBC200;
}
.l-qol__visual {
  position: absolute;
  right: -25px;
  top: 1%;
  animation: rotateItem 30s linear infinite;
  width: 684px;
  z-index: 1;
}
@media print, screen and (max-width: 740px) {
  .l-qol__visual {
    width: 64%;
    top: 20.3%;
    right: -9vw;
  }
}
.l-qol__visual img {
  width: 100%;
  display: block;
}
@keyframes rotateItem {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.l-job {
  position: relative;
  background: #FBC200;
  padding: 120px 0 88px;
  overflow: hidden;
}
@media print, screen and (max-width: 740px) {
  .l-job {
    padding: 23.2vw 5vw 16vw;
  }
}
.l-job__inner {
  max-width: calc(1200px + 8%);
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media print, screen and (min-width: 741px) {
  .l-job__inner {
    padding: 0 4%;
  }
}
@media print, screen and (max-width: 740px) {
  .l-job__inner {
    width: 100%;
  }
}
.l-job {
  /* 背景の巨大文字 */
}
.l-job__bg {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 148px;
  letter-spacing: 0.3rem !important;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
}
@media print, screen and (max-width: 740px) {
  .l-job__bg {
    font-size: 18.46vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-job__bg {
    font-size: 14.8vw;
  }
}
.l-job__title {
  position: relative;
  margin-bottom: 73px;
  font-size: 36px;
  font-weight: 600;
  z-index: 1;
}
@media print, screen and (max-width: 740px) {
  .l-job__title {
    font-size: 6.15vw;
    margin-bottom: 17.4vw;
  }
}
.l-job {
  /* ボタン整列 */
}
.l-job__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 39px;
}
@media print, screen and (max-width: 740px) {
  .l-job__grid {
    margin-bottom: 10vw;
    gap: 2.31vw;
  }
}
.l-job__item {
  background: #fff;
  padding: 19.3px 15px;
  font-weight: 600;
  font-size: 22px;
  width: calc((100% - 72px) / 4);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 740px) {
  .l-job__item {
    font-size: 4.1vw;
    width: calc((100% - 2.31vw) / 2);
    padding: 4vw 3vw;
  }
}
.l-job__lead {
  font-size: 24px;
  font-weight: 600;
}
@media print, screen and (max-width: 740px) {
  .l-job__lead {
    font-size: 6.15vw;
  }
}

.l-about {
  padding: 166px 0 79px;
  position: relative;
  max-width: calc(1200px + 8%);
  margin: 0 auto;
}
@media print, screen and (max-width: 740px) {
  .l-about {
    padding: 30.8vw 0 12.5vw;
  }
}
.l-about__inner {
  max-width: calc(1200px + 8%);
  margin: 0 auto;
  position: relative;
}
@media print, screen and (min-width: 741px) {
  .l-about__inner {
    padding: 0 4%;
  }
}
@media print, screen and (max-width: 740px) {
  .l-about__inner {
    width: 100%;
  }
}
.l-about__bg {
  position: absolute;
  top: -0.36%;
  letter-spacing: 0.35rem !important;
  left: -4.8%;
  font-size: 180px;
  color: #EFEFEF;
}
@media print, screen and (max-width: 740px) {
  .l-about__bg {
    left: 0;
    font-size: 18.46vw;
    top: 0.2vw;
    line-height: 0.9 !important;
  }
}
@media screen and (min-width: 741px) and (max-width: 1145px) {
  .l-about__bg {
    font-size: 15.7vw;
    top: -0.3%;
  }
}
.l-about__head {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 89px;
}
@media print, screen and (max-width: 740px) {
  .l-about__head {
    font-size: 6.15vw;
    margin-left: 5vw;
    margin-bottom: 7.1vw;
  }
}
.l-about {
  /* =========================
     レイアウト
  ========================= */
}
.l-about__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 83px;
  position: relative;
}
@media print, screen and (max-width: 740px) {
  .l-about__item {
    flex-wrap: wrap;
    margin-bottom: 13vw;
  }
}
.l-about__item--reverse {
  flex-direction: row-reverse;
  margin-bottom: 211px;
}
@media print, screen and (max-width: 1000px) {
  .l-about__item--reverse {
    margin-bottom: 13vw;
  }
}
.l-about__item--reverse .l-about__point {
  color: #FBC200;
}
@media print, screen and (min-width: 741px) {
  .l-about__item--reverse .l-about__image {
    top: 89px;
  }
}
.l-about__item--reverse .l-about__content {
  padding: 55px 60px 55px 100px;
}
@media print, screen and (max-width: 740px) {
  .l-about__item--reverse .l-about__content {
    padding: 14.5vw 5vw 14vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-about__item--reverse .l-about__content {
    padding: 5.5vw 6vw 5.5vw 7vw;
  }
}
.l-about__content {
  width: 58.3%;
  padding: 55px 112px 55px 60px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 740px) {
  .l-about__content {
    width: 100%;
    order: 2;
    padding: 14.5vw 5vw 14vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-about__content {
    padding: 5.5vw 6.2vw 5.5vw 6vw;
  }
}
.l-about__content--yellow {
  background: #FBC200;
}
.l-about__content--dark {
  background: #4C4A4A;
  color: #fff;
}
.l-about__image {
  width: 45.8%;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 741px) {
  .l-about__image {
    top: -117px;
    margin-left: -80px;
  }
}
@media print, screen and (max-width: 740px) {
  .l-about__image {
    width: 100%;
    order: 1;
    z-index: 3;
  }
}
.l-about__image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
@media print, screen and (max-width: 740px) {
  .l-about__image img {
    width: 90vw;
    margin: 0 auto -7.3vw;
  }
}
@media print, screen and (min-width: 741px) {
  .l-about__item--reverse .l-about__image {
    margin-left: 0;
    margin-right: -80px;
  }
}
.l-about__point {
  margin-bottom: 7px;
  font-size: 36px;
  color: #fff;
}
@media print, screen and (max-width: 740px) {
  .l-about__point {
    font-size: 7.18vw;
    margin-bottom: 1.3vw;
  }
}
.l-about__title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
  line-height: 1.35;
  word-break: keep-all;
  text-align: left;
}
@media print, screen and (max-width: 740px) {
  .l-about__title {
    font-size: 6.15vw;
    margin-bottom: 4vw;
  }
}
.l-about__text {
  font-size: 16px;
  line-height: 1.75;
}
@media print, screen and (max-width: 740px) {
  .l-about__text {
    font-size: 4.1vw;
  }
}

.l-worklist {
  position: relative;
  background: #EFEFEF;
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
}
.l-worklist__label {
  width: 11.11%;
  position: relative;
  font-size: 36px;
  display: flex;
  align-items: center;
  padding: 80px 0 0;
  font-weight: 600;
}
@media screen and (min-width: 741px) {
  .l-worklist__label {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    border-right: 1px solid #242424;
    letter-spacing: 0.6rem;
  }
}
@media screen and (max-width: 740px) {
  .l-worklist__label {
    border-bottom: 1px solid #242424;
    width: 100%;
    justify-content: center;
    font-size: 6.15vw;
    padding: 11vw 0 12.4vw;
  }
}
.l-worklist__label p {
  z-index: 2;
  position: relative;
  color: #4C4A4A;
}
.l-worklist__label__bg {
  top: 3%;
  position: absolute;
  font-size: 148px;
  color: #FFFFFF;
  left: 41%;
  transform: translate(-50%, 0%);
  z-index: 1;
}
@media screen and (max-width: 740px) {
  .l-worklist__label__bg {
    font-size: 30.77vw;
    left: 50%;
    top: 13%;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-worklist__label__bg {
    font-size: 12.8vw;
  }
}
.l-worklist__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 740px) {
  .l-worklist__inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
.l-worklist__contents {
  width: 88.89%;
  position: relative;
}
@media screen and (max-width: 740px) {
  .l-worklist__contents {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    padding: 0;
  }
}
.l-worklist__contents:first-child {
  border-top: none;
}
.l-worklist__item {
  display: flex;
  gap: 42px;
  padding: 20px;
  border-bottom: 1px solid #242424;
}
@media screen and (max-width: 740px) {
  .l-worklist__item {
    gap: 2vw;
    flex-wrap: wrap;
    padding: 5vw 5vw 11.5vw;
  }
}
.l-worklist__item:last-child {
  border-bottom: none;
}
.l-worklist__photo {
  max-width: 452px;
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-worklist__photo {
    width: 31.39%;
  }
}
.l-worklist__photo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 740px) {
  .l-worklist__photo {
    flex: none;
    width: 100%;
  }
}
.l-worklist__body {
  flex: 1;
  position: relative;
  padding-right: 108px;
}
@media screen and (max-width: 740px) {
  .l-worklist__body {
    padding-right: 0;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-worklist__body {
    padding-right: 1.5%;
  }
}
.l-worklist__num {
  position: absolute;
  right: 29px;
  top: 23px;
  font-size: 148px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  pointer-events: none;
}
@media screen and (max-width: 740px) {
  .l-worklist__num {
    right: -1vw;
    top: 1vw;
    font-size: 25.64vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-worklist__num {
    font-size: 14.8vw;
  }
}
.l-worklist__title {
  font-size: 38px;
  font-weight: 700;
  margin: 33px 0 8px;
  z-index: 1;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 740px) {
  .l-worklist__title {
    font-size: 7.18vw;
    margin: 3.2vw 0 1.2vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-worklist__title {
    font-size: 3.8vw;
    margin: 0 0 1.2vw;
  }
}
.l-worklist__text {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 15px;
  z-index: 1;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 740px) {
  .l-worklist__text {
    font-size: 4.1vw;
    line-height: 1.75;
    margin: 0 0 2.1vw;
  }
}
.l-worklist__tags {
  color: #767676;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 600;
}
@media screen and (max-width: 740px) {
  .l-worklist__tags {
    font-size: 3.3vw;
    line-height: 1.7;
  }
}

.l-working {
  padding: 100px 0 99px;
}
@media screen and (max-width: 740px) {
  .l-working {
    padding: 18.9vw 0 20vw;
  }
}
.l-working__inner {
  max-width: calc(1200px + 8%);
  margin: -39px auto 0;
  text-align: center;
}
@media screen and (min-width: 741px) {
  .l-working__inner {
    padding: 0 4%;
  }
}
@media screen and (max-width: 740px) {
  .l-working__inner {
    width: 90%;
    margin: -4vw auto 0;
  }
}
.l-working__title {
  font-size: 90px;
  letter-spacing: 0.16rem !important;
  color: #FBC200;
  margin-bottom: 2px;
}
@media screen and (max-width: 740px) {
  .l-working__title {
    font-size: 12.31vw;
  }
}
.l-working__sub {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 48px;
}
@media screen and (max-width: 740px) {
  .l-working__sub {
    font-size: 5.13vw;
    margin-bottom: 8vw;
  }
}
.l-working__label {
  margin-bottom: 37px;
  background: #FBC200;
  padding: 12px 40px;
  font-weight: 700;
  border-radius: 5px;
  font-size: 28px;
}
@media screen and (max-width: 740px) {
  .l-working__label {
    margin-bottom: 6vw;
    font-size: 6.15vw;
    padding: 2.1vw 3vw;
  }
}
.l-working__items {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 740px) {
  .l-working__items {
    flex-direction: column;
    gap: 10.6vw;
  }
}
.l-working__item {
  flex: 1;
  text-align: left;
}
.l-working__photo {
  margin-bottom: 21px;
}
@media screen and (max-width: 740px) {
  .l-working__photo {
    margin-bottom: 4vw;
  }
}
.l-working__photo img {
  width: 100%;
  display: block;
}
.l-working__text {
  font-size: 16px;
  line-height: 1.75;
  color: #131313;
}
@media screen and (max-width: 740px) {
  .l-working__text {
    font-size: 4vw;
    line-height: 1.7;
  }
}

/* ------------------------------------

mv-slide-txt02

------------------------------------ */
.mv-slide-txt02 {
  overflow-x: clip;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 107.85px;
  position: relative;
  z-index: -1;
}
@media print, screen and (max-width: 740px) {
  .mv-slide-txt02 {
    height: 13.83vw;
  }
}
.mv-slide-txt02 > div {
  flex: 0;
  height: fit-content;
  animation: slideShowReverse 130s infinite linear;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transform: translateX(-100%);
}
@keyframes slideShowReverse {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.mv-slide-txt02 > div img {
  margin: 0 0.5rem;
  width: min(1924.35px, 246.71vw);
}
@media print, screen and (max-width: 740px) {
  .mv-slide-txt02 > div img {
    width: 246.71vw;
  }
}

.l-hr__inner {
  max-width: calc(1200px + 8%);
  margin: 0 auto;
}
@media screen and (min-width: 741px) {
  .l-hr__inner {
    padding: 0 4% 132px;
  }
}
@media screen and (max-width: 740px) {
  .l-hr__inner {
    width: 90%;
    margin: 0 auto 25.7vw;
  }
}
.l-hr__head {
  background: #4C4A4A;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 28px;
  border-radius: 5px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 740px) {
  .l-hr__head {
    margin-bottom: 6vw;
    font-size: 6.15vw;
    padding: 2.1vw 3vw;
  }
}
.l-hr__lead {
  margin-bottom: 40px;
  font-weight: 600;
  width: 56%;
}
@media screen and (max-width: 740px) {
  .l-hr__lead {
    width: 100%;
    margin-bottom: 8.7vw;
  }
}
.l-hr__lead-main {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 2px;
}
@media screen and (max-width: 740px) {
  .l-hr__lead-main {
    font-size: 4.1vw;
    line-height: 1.5;
    margin-bottom: 1.9vw;
  }
}
.l-hr__lead-list {
  margin-bottom: 5px;
}
@media screen and (max-width: 740px) {
  .l-hr__lead-list {
    margin-bottom: 2vw;
  }
}
.l-hr__lead-list li {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.9;
}
@media screen and (max-width: 740px) {
  .l-hr__lead-list li {
    font-size: 4.1vw;
    line-height: 1.5;
    padding-left: 3.9vw;
  }
}
.l-hr__lead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  background: #FBC200;
  border-radius: 50%;
  top: 50%;
  transform: translate(0%, -50%);
}
@media screen and (max-width: 740px) {
  .l-hr__lead-list li::before {
    width: 2.31vw;
    height: 2.31vw;
    top: 3.2vw;
  }
}
.l-hr__diagram {
  margin-top: -173px;
  margin-bottom: 60px;
}
@media screen and (max-width: 740px) {
  .l-hr__diagram {
    margin-top: 0;
    margin-bottom: 10.8vw;
  }
}
.l-hr__lead-sub {
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 740px) {
  .l-hr__lead-sub {
    font-size: 4.1vw;
    line-height: 1.5;
    margin-bottom: 1.9vw;
  }
}
.l-hr__note {
  background: #e9e9e9;
  padding: 34px 45px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 740px) {
  .l-hr__note {
    font-size: 3.6vw;
    padding: 7.7vw 5vw 6.6vw;
  }
}
.l-hr__note__text {
  font-size: 16px;
  margin-bottom: 11px;
}
@media screen and (max-width: 740px) {
  .l-hr__note__text {
    font-size: 4.1vw;
    line-height: 1.64;
    margin-bottom: 4vw;
  }
}
.l-hr__note .l-hr__lead-list li {
  font-size: 16px;
}
@media screen and (max-width: 740px) {
  .l-hr__note .l-hr__lead-list li {
    font-size: 4.1vw;
    line-height: 1.44;
  }
}
@media screen and (max-width: 740px) {
  .l-hr__note .l-hr__lead-list li:first-child {
    margin-bottom: 3vw;
  }
}

.l-welfare {
  position: relative;
  background: #FBC200;
  padding: 105px 0 72px;
  overflow: hidden;
}
@media screen and (max-width: 740px) {
  .l-welfare {
    padding: 7vw 0 18.3vw;
  }
}
.l-welfare__contents {
  position: relative;
  max-width: calc(1200px + 4%);
  margin: 0 auto;
}
@media screen and (min-width: 741px) {
  .l-welfare__contents {
    padding: 0 4%;
  }
}
@media screen and (min-width: 1001px) {
  .l-welfare__contents {
    padding: 0 129px 0 28px;
  }
}
.l-welfare__inner {
  margin: 0 auto;
}
@media screen and (max-width: 740px) {
  .l-welfare__inner {
    width: 90%;
  }
}
.l-welfare__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}
@media screen and (max-width: 740px) {
  .l-welfare__items {
    flex-direction: column;
    gap: 6.15vw;
    margin: 0 1.5vw 7vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-welfare__items {
    gap: 4vw;
  }
}
.l-welfare__item {
  background: #fff;
  border-radius: 5px;
  padding: 36px 28px 40px;
  width: calc((100% - 80px) / 3);
  text-align: center;
}
@media screen and (max-width: 740px) {
  .l-welfare__item {
    width: 100%;
    padding: 9vw 7.7vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-welfare__item {
    width: calc((100% - 8vw) / 3);
    padding: 3.6% 2.8% 4%;
  }
}
.l-welfare__icon {
  margin-bottom: 7px;
}
.l-welfare__icon img {
  height: 150px;
  width: auto;
}
@media screen and (max-width: 740px) {
  .l-welfare__icon img {
    height: 38.46vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-welfare__icon img {
    height: 15vw;
  }
}
.l-welfare__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 4px;
}
@media screen and (max-width: 740px) {
  .l-welfare__title {
    font-size: 6.15vw;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-welfare__title {
    line-height: 1.2;
  }
}
.l-welfare__text {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 740px) {
  .l-welfare__text {
    font-size: 4.1vw;
  }
}
.l-welfare__note {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 740px) {
  .l-welfare__note {
    font-size: 4.62vw;
  }
}
@media screen and (max-width: 1000px) {
  .l-welfare__side {
    position: relative;
  }
}
.l-welfare {
  /* 右縦タイトル */
}
.l-welfare__side-en {
  display: block;
  font-size: 148px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3rem !important;
  position: absolute;
}
@media screen and (min-width: 1001px) {
  .l-welfare__side-en {
    writing-mode: vertical-rl;
    right: -37px;
    top: -7%;
  }
}
@media screen and (max-width: 1000px) {
  .l-welfare__side-en {
    font-size: 19.23vw;
    left: 50%;
    transform: translate(-50%, 0%);
    top: -26%;
    letter-spacing: 0.2rem !important;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-welfare__side-en {
    font-size: 14.8vw;
  }
}
.l-welfare__side-ja {
  display: block;
  margin-top: 36px;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.6rem;
}
@media screen and (min-width: 1001px) {
  .l-welfare__side-ja {
    writing-mode: vertical-rl;
    position: absolute;
    right: -6px;
    top: -3.5%;
  }
}
@media screen and (max-width: 1000px) {
  .l-welfare__side-ja {
    position: relative;
    font-size: 6.15vw;
    text-align: center;
    margin-bottom: 8.4vw;
  }
}

.l-facilities {
  max-width: calc(1200px + 8%);
  margin: 0 auto;
}
@media screen and (min-width: 741px) {
  .l-facilities {
    padding: 158px 4%;
  }
}
.l-facilities__title {
  text-align: center;
  margin-bottom: 87px;
  position: relative;
}
@media screen and (max-width: 740px) {
  .l-facilities__title {
    margin: 22.5vw 0 8.6vw;
  }
}
.l-facilities__title .jp {
  z-index: 2;
  font-size: 36px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 740px) {
  .l-facilities__title .jp {
    font-size: 6.15vw;
  }
}
.l-facilities__title .en {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -47%;
  letter-spacing: 0.3rem !important;
  font-size: 148px;
  font-weight: 800;
  color: #EFEFEF;
  z-index: 1;
}
@media screen and (max-width: 740px) {
  .l-facilities__title .en {
    font-size: 17.18vw;
    top: -19%;
    letter-spacing: 0.1rem !important;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-facilities__title .en {
    font-size: 14.8vw;
  }
}
.l-facilities__tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 35px;
}
@media screen and (min-width: 741px) {
  .l-facilities__tabs {
    border-bottom: 1px solid #D5D5D5;
  }
}
@media screen and (max-width: 740px) {
  .l-facilities__tabs {
    flex-wrap: wrap;
    gap: 0.51vw;
    width: 90vw;
    margin: 0 auto 1.1vw;
  }
}
.l-facilities__tab {
  background: #EFEFEF;
  font-size: 20px;
  border: none;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  width: calc((100% - 18px) / 4);
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  text-align: center;
  word-break: keep-all;
  display: block;
}
@media screen and (min-width: 741px) {
  .l-facilities__tab {
    padding: 15px 5px 11px;
    min-height: 60px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 740px) {
  .l-facilities__tab {
    width: calc((100% - 0.51vw) / 2);
    font-size: 3.59vw;
    padding: 3.3vw 2vw;
  }
}
.l-facilities__tab.is-active {
  background: #fff;
  border: #D5D5D5 1px solid;
}
@media screen and (min-width: 741px) {
  .l-facilities__tab.is-active {
    border-bottom: none;
  }
}
.l-facilities__tab.is-active::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 8px;
  background: #FBC200;
  border-radius: 4px 4px 0 0;
  z-index: 1;
}
@media screen and (max-width: 740px) {
  .l-facilities__contents {
    width: 90vw;
    margin: 0 auto;
  }
}
.l-facilities__content {
  display: none;
}
.l-facilities__content.is-show {
  display: block;
}
.l-facilities__row {
  display: flex;
  justify-content: space-between;
  padding: 15px 26px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 740px) {
  .l-facilities__row {
    align-items: center;
  }
}
@media screen and (max-width: 740px) {
  .l-facilities__row {
    flex-wrap: wrap;
    padding: 5.7vw 0 6.7vw;
  }
}
@media screen and (max-width: 740px) {
  .l-facilities__row:last-child {
    border-bottom: none;
  }
}
.l-facilities__name {
  width: 20%;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 740px) {
  .l-facilities__name {
    font-size: 4.62vw;
    width: 100%;
    margin-bottom: 1.6vw;
  }
}
.l-facilities__address {
  width: 52%;
  font-size: 16px;
}
@media screen and (max-width: 740px) {
  .l-facilities__address {
    font-size: 4.1vw;
    width: 100%;
    line-height: 1.4;
    margin-bottom: 2.3vw;
  }
}
.l-facilities__tel {
  width: 20%;
  text-align: right;
  font-size: 18px;
}
@media screen and (max-width: 740px) {
  .l-facilities__tel {
    font-size: 4.62vw;
    width: 100%;
    text-align: left;
    line-height: 1.4;
  }
}
@media screen and (min-width: 741px) {
  .l-facilities__tel a {
    pointer-events: none;
  }
}

.l-flow {
  background: #efefef;
}
.l-flow__inner {
  position: relative;
  max-width: calc(1200px + 8%);
  margin: 0 auto;
}
@media screen and (min-width: 741px) {
  .l-flow__inner {
    padding: 132px 4% 139px;
  }
}
@media screen and (max-width: 740px) {
  .l-flow__inner {
    padding-bottom: 18.3vw;
  }
}
@media screen and (max-width: 740px) {
  .l-flow__item {
    display: block;
    width: 90vw;
    margin: 0 auto;
  }
}
.l-flow__title {
  position: relative;
  margin: 0 0 31px;
  font-size: 32px;
  font-weight: 700;
  z-index: 1;
}
@media screen and (max-width: 740px) {
  .l-flow__title {
    margin: 19.3vw 0 3vw;
    font-size: 6.15vw;
    padding: 16vw 0 2vw;
    text-align: center;
  }
}
.l-flow__bg {
  position: absolute;
  left: -72px;
  top: -7px;
  font-size: 148px;
  font-weight: 800;
  letter-spacing: 0.28rem !important;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 740px) {
  .l-flow__bg {
    font-size: 13.98vw;
    top: -1vw;
    left: 50%;
    transform: translate(-50%, 0%);
    letter-spacing: 0.1rem !important;
  }
}
@media screen and (min-width: 741px) and (max-width: 1000px) {
  .l-flow__bg {
    font-size: 14.8vw;
  }
}
.l-flow {
  /* ===== 黄色の帯 ===== */
}
.l-flow__steps {
  display: flex;
  gap: 20px;
  overflow: hidden;
  margin: 0 0 10px;
}
.l-flow__step {
  height: 56px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 38px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 741px) {
  .l-flow__step {
    flex: 1;
  }
}
@media screen and (max-width: 740px) {
  .l-flow__step {
    font-size: 6.15vw;
  }
}
.l-flow__step::before {
  position: absolute;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: calc(100% + 13px);
  height: 50.8%;
  background: #FBC200;
  bottom: 0;
  transform: skew(-36deg);
}
@media screen and (max-width: 740px) {
  .l-flow__step::before {
    left: 0;
    top: 0;
    width: 50.8%;
    height: 100%;
    transform: skewY(36deg);
    margin-top: 2vw;
  }
}
.l-flow__step::after {
  position: absolute;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: calc(100% + 13px);
  height: 50.8%;
  background: #FBC200;
  top: 0;
  transform: skew(36deg);
}
@media screen and (max-width: 740px) {
  .l-flow__step::after {
    left: auto;
    right: 0;
    top: 0;
    width: 50.8%;
    height: 100%;
    transform: skewY(-36deg);
    margin-top: 2vw;
  }
}
.l-flow__step span {
  position: relative;
  z-index: 5;
}
.l-flow__step:first-child {
  margin-left: -10px;
  padding-left: 10px;
}
@media screen and (max-width: 740px) {
  .l-flow__step:first-child {
    height: 100%;
    width: 12.47%;
    margin-left: 0;
    padding-left: 0;
  }
}
.l-flow__step:last-child::after {
  width: calc(100% - 11px);
}
.l-flow__step:last-child::before {
  width: calc(100% - 11px);
}
.l-flow {
  /* ===== 白カード ===== */
}
.l-flow__cards {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 740px) {
  .l-flow__cards {
    gap: 1.79vw;
    flex-wrap: wrap;
  }
}
.l-flow__card {
  background: #fff;
  border-radius: 4px;
  padding: 26px 26px;
}
@media screen and (min-width: 741px) {
  .l-flow__card {
    flex: 1;
    min-height: 140px;
    height: stretch;
  }
}
@media screen and (max-width: 740px) {
  .l-flow__card {
    width: calc(89.23% - 1.79vw);
    padding: 7.1vw 5vw;
  }
}
.l-flow__card h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin: 13px 0 18px;
  line-height: 1.1;
}
@media screen and (max-width: 740px) {
  .l-flow__card h3 {
    text-align: left;
    font-size: 4.62vw;
    margin: 0 0 2.4vw;
  }
}
.l-flow__card p {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 740px) {
  .l-flow__card p {
    font-size: 3.85vw;
    line-height: 1.6;
  }
}
.l-flow .p-item {
  width: calc((100% - 32px) / 5);
}
@media screen and (max-width: 740px) {
  .l-flow .p-item {
    display: flex;
    width: 100%;
    gap: 2.56vw;
  }
}
@media screen and (min-width: 741px) {
  .l-flow .p-item:first-child h3 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 8px;
  }
}
@media screen and (max-width: 740px) {
  .l-flow .p-item:first-child .l-flow__step {
    overflow: hidden;
    height: calc(100% + 4vw);
    padding-top: 0;
  }
}
.l-flow .p-item:first-child .l-flow__step::after, .l-flow .p-item:first-child .l-flow__step::before {
  margin-top: -2vw;
}
@media screen and (max-width: 740px) {
  .l-flow .p-item:last-child .l-flow__step {
    overflow: hidden;
    padding-top: 0;
  }
}
.l-flow .p-item:last-child .l-flow__step::after, .l-flow .p-item:last-child .l-flow__step::before {
  margin-top: 2vw;
  height: calc(100% - 4vw);
}
.l-flow {
  /* ボタン */
}
.l-flow__btn {
  margin-top: 62px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 740px) {
  .l-flow__btn {
    margin-top: 10.5vw;
  }
}
.l-flow__btn a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FBC200;
  padding: 12px 48px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.l-flow__btn a::before {
  position: absolute;
  top: 0px;
  right: 14px;
  bottom: 0;
  z-index: 1000;
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  content: "";
  background: url("../images/cmn/next_icon.svg") center/contain no-repeat;
}
.l-flow__btn-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/*# sourceMappingURL=top.css.map */
