@charset "UTF-8";
/* ===============================================
# コンテナ幅
=============================================== */
/* ===============================================
# header
=============================================== */
/* ===============================================
# フォント
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* ===============================================
# ブレイクポイント
=============================================== */
/* ===============================================
# 画像ファイルパス
=============================================== */
/* ===============================================
# 共通
=============================================== */
/* ===============================================
# ブラウザ幅でフォントサイズを変える関数
=============================================== */
/* ===============================================
# フォントをremに変換
=============================================== */
/* ===============================================
# remのclamp
=============================================== */
/* ===============================================
# 外部アイコン
=============================================== */
:root {
  --lo1: 1440;
  --lo2: 100vw ;
}

@media only screen and (min-width: 1920px) {
  :root {
    --lo1: 1440;
    --lo2: 100vw ;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1400px) {
  :root {
    --lo1: 1440;
    --lo2: 100vw ;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --lo1: 375;
    --lo2: 100vw ;
  }
}
/* フェードアニメ
=========================================== */
/* 初期設定（全ての要素を非表示かつ少し小さい状態で配置） */
.content-item {
  opacity: 0;
  /* 初期状態で非表示 */
  /* 少し小さく表示 */
  transition: opacity 1s ease, transform 1s ease;
  /* アニメーションの設定 */
  /* アニメーション開始時 */
}
.content-item.animate {
  opacity: 1;
  transform: scale(1);
  /* 元のサイズに戻す */
}

.fadeDir__up,
.fadeDir__down,
.fadeDir__left,
.fadeDir__right {
  opacity: 0;
  transition: all 0.6s ease;
  will-change: transform, opacity;
}

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

.fadeDir__up {
  transform: translateY(40px);
}

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

.fadeDir__down {
  transform: translateY(-40px);
}

.fadeDir__left.is-inview {
  transform: translateX(0);
  opacity: 1;
}

.fadeDir__left {
  transform: translateX(40px);
}

.fadeDir__right.is-inview {
  transform: translateX(0);
  opacity: 1;
}

.fadeDir__right {
  transform: translateX(-40px);
}

/* top_section_title
=========================================== */
.top_section_title {
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .top_section_title {
    margin-bottom: 20px;
  }
}
.top_section_title h2 {
  font-size: 3.2rem;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 767px) {
  .top_section_title h2 {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
.top_section_title h2:before {
  display: block;
  color: #E84649;
  font-size: clamp(1.8rem, 1.4641288433vw, 2.4rem);
  content: attr(data-eng);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.top_section_title-center {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .top_section_title-center {
    margin-bottom: 20px;
  }
}
.top_section_title-center h2 {
  font-size: 3.2rem;
  line-height: 1.7;
  color: #E84649;
}
@media (max-width: 767px) {
  .top_section_title-center h2 {
    font-size: 2rem;
  }
}
.top_section_title-center h2:before {
  display: block;
  color: #093556;
  font-size: clamp(3rem, 2.9282576867vw, 6.4rem);
  content: attr(data-eng);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 7px;
}

.top_section_title-left {
  text-align: start;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .top_section_title-left {
    margin-bottom: 20px;
  }
}
.top_section_title-left h2 {
  font-size: 3.2rem;
  line-height: 1.7;
  color: #E84649;
}
@media (max-width: 767px) {
  .top_section_title-left h2 {
    font-size: 2rem;
  }
}
.top_section_title-left h2:before {
  display: block;
  color: #093556;
  font-size: clamp(3rem, 2.9282576867vw, 6.4rem);
  content: attr(data-eng);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 7px;
}

/* mv
=========================================== */
#mv {
  position: relative;
}
#mv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 37%;
  background-color: #E84649;
  -webkit-clip-path: polygon(77% 0, 100% 0, 100% 100%, 33% 100%);
          clip-path: polygon(77% 0, 100% 0, 100% 100%, 33% 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  #mv::before {
    top: 0;
    bottom: unset;
    right: -50%;
    width: 88%;
    height: 50vh;
    -webkit-clip-path: polygon(77% 0, 100% 0, 100% 100%, 4% 100%);
            clip-path: polygon(77% 0, 100% 0, 100% 100%, 4% 100%);
  }
}
#mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 53.5%;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 61% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 61% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  #mv::after {
    width: 39%;
    height: 38%;
    -webkit-clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
  }
}
#mv .copy-01 {
  position: absolute;
  top: 30%;
  left: 5%;
  z-index: 100;
}
@media (max-width: 767px) {
  #mv .copy-01 {
    position: static;
    margin: 1em 0 0.5em 0.5em;
  }
}
@media (max-width: 370px) {
  #mv .copy-01 {
    bottom: 36%;
  }
}
#mv .copy-01 p {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease, transform 1s ease;
}
@media (max-width: 1580px) {
  #mv .copy-01 p {
    font-size: 3rem;
  }
}
@media (max-width: 1080px) {
  #mv .copy-01 p {
    font-size: 2rem;
  }
}
@media (max-width: 530px) {
  #mv .copy-01 p {
    font-size: 1.8rem;
  }
}
@media (max-width: 370px) {
  #mv .copy-01 p {
    font-size: 1.6rem;
  }
}
#mv .copy-01 p.animate {
  opacity: 1;
  transform: translateX(0);
}
#mv .copy-01 p .txt-lg {
  font-size: 6.2rem;
  padding-inline: 6.5%;
  position: relative;
}
@media (max-width: 1580px) {
  #mv .copy-01 p .txt-lg {
    font-size: 5.2rem;
  }
}
@media (max-width: 1080px) {
  #mv .copy-01 p .txt-lg {
    font-size: 3.6rem;
  }
}
@media (max-width: 530px) {
  #mv .copy-01 p .txt-lg {
    font-size: 2.4rem;
  }
}
@media (max-width: 370px) {
  #mv .copy-01 p .txt-lg {
    font-size: 2.2rem;
  }
}
#mv .copy-01 p .txt-lg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 11px;
  width: 41px;
  height: 55px;
  background-image: url("/wp-content/uploads/copy_01.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 1580px) {
  #mv .copy-01 p .txt-lg::before {
    width: 36px;
    height: 50px;
  }
}
@media (max-width: 1080px) {
  #mv .copy-01 p .txt-lg::before {
    width: 20px;
    height: 34px;
  }
}
@media (max-width: 530px) {
  #mv .copy-01 p .txt-lg::before {
    width: 14px;
    height: 28px;
    left: 7px;
  }
}
#mv .copy-01 p .txt-lg::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 41px;
  height: 55px;
  background-image: url("/wp-content/uploads/copy_02.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 1580px) {
  #mv .copy-01 p .txt-lg::after {
    width: 36px;
    height: 50px;
  }
}
@media (max-width: 1080px) {
  #mv .copy-01 p .txt-lg::after {
    width: 20px;
    height: 34px;
  }
}
@media (max-width: 530px) {
  #mv .copy-01 p .txt-lg::after {
    width: 14px;
    height: 28px;
    right: 7px;
  }
}
#mv .copy-01 p .cl-red {
  color: #E84649;
}
#mv .copy-02 {
  position: absolute;
  top: 65%;
  left: 5%;
  z-index: 100;
}
@media (max-width: 1580px) {
  #mv .copy-02 {
    top: 50%;
  }
}
@media (max-width: 1080px) {
  #mv .copy-02 {
    top: 45%;
  }
}
@media (max-width: 767px) {
  #mv .copy-02 {
    position: static;
    margin: 1em 0 0.5em 0.5em;
  }
}
#mv .copy-02 p {
  font-size: 2.4rem;
  line-height: 1.8;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 1s ease;
}
@media (max-width: 1580px) {
  #mv .copy-02 p {
    font-size: 2rem;
  }
}
@media (max-width: 1080px) {
  #mv .copy-02 p {
    font-size: 1.6rem;
  }
}
@media (max-width: 530px) {
  #mv .copy-02 p {
    font-size: 1.2rem;
  }
}
@media (max-width: 370px) {
  #mv .copy-02 p {
    font-size: 1rem;
  }
}
#mv .copy-02 p.animate {
  opacity: 1;
  transform: translateX(0);
}

/* news
=========================================== */
#news {
  padding: 65px 0 204px;
}
@media (max-width: 767px) {
  #news {
    padding: 40px 0 204px;
  }
}
#news .news-container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #news .news-container {
    flex-direction: column;
  }
}
#news .news-container .news-left {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  #news .news-container .news-left {
    flex-direction: unset;
    justify-content: space-between;
    align-items: center;
  }
}
#news .news-container .news-left .top_section_title {
  text-align: start;
}
#news .news-container .news-left .news-btn {
  padding-right: 30px;
}
#news .news-container .news-left .news-btn a {
  font-weight: 500;
  position: relative;
}
#news .news-container .news-left .news-btn a:hover {
  opacity: 1;
}
#news .news-container .news-left .news-btn a::after {
  position: absolute;
  border-right: 2.5px solid #E84649;
  border-top: 2.5px solid #E84649;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: -26px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.2s ease;
}
#news .news-container .news-left .news-btn a:hover::after {
  right: -30px;
}
#news .news-container .news-right {
  max-width: 794px;
}
#news .news-container .news-right .news_list li:not(:first-child) {
  margin-top: 15px;
}
#news .news-container .news-right .news_list li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 20px 24px;
  gap: 20px;
  background: #ECF3FA;
}
@media only screen and (max-width: 999px) {
  #news .news-container .news-right .news_list li a {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
#news .news-container .news-right .news_list li a .time {
  font-family: "Outfit", sans-serif;
}
#news .news-container .news-right .news_list li a .news_title {
  line-height: 1.5;
}
#news .news-container .news-right .news_list li a .category {
  display: inline-block;
  color: #fff;
  background: #E84649;
  font-size: 1.3rem;
  padding: 2px 8px;
  line-height: 1.6;
  transition: 0.3s all;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #news .news-container .news-right .news_list li a .category {
    font-size: 1.1rem;
  }
}

/* chosen
=========================================== */
#chosen {
  padding: 0 0 150px;
  position: relative;
}
#chosen .chosen-container {
  position: relative;
}
#chosen .chosen-container .center-content {
  text-align: center;
}
#chosen .chosen-container .center-content img {
  pointer-events: none;
  max-width: 741px;
  max-height: 741px;
}
@media (max-width: 767px) {
  #chosen .chosen-container .center-content img {
    max-width: 100%;
  }
}
#chosen .chosen-container .center-content .content-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
#chosen .chosen-container .center-content .content-item img {
  width: 160px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  #chosen .chosen-container .center-content .content-item img {
    width: 80px;
  }
}
@media (max-width: 610px) {
  #chosen .chosen-container .center-content .content-item img {
    width: 60px;
  }
}
#chosen .chosen-container .center-content .content-item .txt p {
  padding: 10px 20px;
  line-height: 1.8;
  background: #E84649;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #chosen .chosen-container .center-content .content-item .txt p {
    padding: 4px 8px;
    font-size: 1.4rem;
  }
}
@media (max-width: 610px) {
  #chosen .chosen-container .center-content .content-item .txt p {
    font-size: 1.2rem;
    padding: 4px 6px;
  }
}
@media (max-width: 470px) {
  #chosen .chosen-container .center-content .content-item .txt p {
    font-size: 1rem;
    padding: 2px 4px;
  }
}
#chosen .chosen-container .center-content .n01 {
  top: -5%;
  left: 4%;
}
@media (max-width: 767px) {
  #chosen .chosen-container .center-content .n01 {
    top: 0;
    left: 0;
  }
}
@media (max-width: 525px) {
  #chosen .chosen-container .center-content .n01 {
    top: 5%;
    left: 0;
  }
}
#chosen .chosen-container .center-content .n02 {
  top: 48%;
  left: 3%;
}
@media (max-width: 767px) {
  #chosen .chosen-container .center-content .n02 {
    top: 54%;
    left: 2%;
  }
}
@media (max-width: 525px) {
  #chosen .chosen-container .center-content .n02 {
    top: 58%;
    left: 0;
  }
}
#chosen .chosen-container .center-content .n03 {
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
}
#chosen .chosen-container .center-content .n04 {
  top: 42%;
  right: 6%;
}
@media (max-width: 767px) {
  #chosen .chosen-container .center-content .n04 {
    top: 52%;
    right: 5%;
  }
}
@media (max-width: 525px) {
  #chosen .chosen-container .center-content .n04 {
    top: 56%;
  }
}
#chosen .chosen-container .center-content .n05 {
  top: -8%;
  right: 8%;
}
@media (max-width: 767px) {
  #chosen .chosen-container .center-content .n05 {
    top: -1%;
    right: 6%;
  }
}
#chosen .chosen-element {
  position: absolute;
}
@media (max-width: 1650px) {
  #chosen .chosen-element .n1,
  #chosen .chosen-element .n2,
  #chosen .chosen-element .n3 {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  #chosen .chosen-element .n1,
  #chosen .chosen-element .n2,
  #chosen .chosen-element .n3 {
    max-width: 100px;
  }
}
#chosen .chosen-element .n1 {
  position: relative;
  top: 0;
  left: 4.5em;
  z-index: 100;
  opacity: 0;
  /* 最初は非表示 */
  transition: opacity 0.2s ease;
  /* opacityの変化にアニメーションを追加 */
}
@media (max-width: 1650px) {
  #chosen .chosen-element .n1 {
    top: 0;
    left: 3.5em;
  }
}
@media (max-width: 767px) {
  #chosen .chosen-element .n1 {
    top: 44px;
    left: 2.4em;
  }
}
#chosen .chosen-element .n1 img {
  animation: none;
  /* 初期状態ではアニメーションなし */
}
@keyframes elementAnime_xyz_2_1 {
  0% {
    transform: translate3d(calc(250 / var(--lo1) * var(--lo2)), calc(-300 / var(--lo1) * var(--lo2)), 80px) rotate3d(0.3, 0.6, 0.3, 270deg) scale(0);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg) scale(1);
  }
}
#chosen .chosen-element .n2 {
  position: relative;
  top: -15.5em;
  left: 0;
  z-index: 50;
  opacity: 0;
  /* 初期状態で非表示に */
  transition: opacity 0.2s ease;
  /* opacityが変わった時にフェードイン */
}
@media (max-width: 1650px) {
  #chosen .chosen-element .n2 {
    top: -10.5em;
  }
}
@media (max-width: 767px) {
  #chosen .chosen-element .n2 {
    top: -3.5em;
  }
}
#chosen .chosen-element .n2 img {
  animation: none;
  /* 初期状態ではアニメーションなし */
}
@keyframes elementAnime_xyz_2_2 {
  0% {
    transform: translate3d(calc(-800 / var(--lo1) * var(--lo2)), calc(500 / var(--lo1) * var(--lo2)), 100px) rotate3d(0.3, 0.6, 0.3, 360deg) scale(0);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg) scale(1);
  }
}
#chosen .chosen-element .n3 {
  position: relative;
  top: -31em;
  left: 6.7em;
  z-index: 0;
}
@media (max-width: 1650px) {
  #chosen .chosen-element .n3 {
    top: -21em;
    left: 4.4em;
  }
}
@media (max-width: 767px) {
  #chosen .chosen-element .n3 {
    top: -10em;
    left: 2.8em;
  }
}
#chosen .right {
  top: 0;
  left: 0;
}
@media (max-width: 1415px) {
  #chosen .right {
    top: -12%;
  }
}
@media (max-width: 695px) {
  #chosen .right {
    top: -20%;
  }
}
@media (max-width: 615px) {
  #chosen .right {
    top: -26%;
  }
}
@media (max-width: 565px) {
  #chosen .right {
    top: -218px;
  }
}
#chosen .left {
  right: 6.7em;
  bottom: -37%;
}
@media (max-width: 1650px) {
  #chosen .left {
    right: 4.5em;
  }
}
@media (max-width: 767px) {
  #chosen .left {
    right: 2.9em;
    bottom: -12%;
  }
}
@media (max-width: 565px) {
  #chosen .left {
    bottom: -180px;
  }
}

/* service
=========================================== */
#service {
  font-weight: 500;
}
@media (max-width: 767px) {
  #service {
    padding: 60px 0 0;
  }
}
#service .container {
  max-width: 100%;
}
#service .container .top_section_title-left {
  margin: 0 auto 60px;
  max-width: 1100px;
}
@media (max-width: 1150px) {
  #service .container .top_section_title-left {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  #service .container .top_section_title-left {
    margin: 0 auto 20px;
  }
}
#service .container .top_section_title-left p {
  line-height: 2;
}
#service .container .flex {
  justify-content: center;
  align-items: flex-end;
  gap: 10%;
}
@media (max-width: 767px) {
  #service .container .flex {
    gap: 16px;
    align-items: baseline;
  }
}
#service .container .service-category .reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  #service .container .service-category .reverse {
    flex-direction: column;
  }
}
#service .container .service-category .reverse .txt-area {
  position: relative;
  left: 50px;
}
@media (max-width: 767px) {
  #service .container .service-category .reverse .txt-area {
    left: 0;
  }
}
#service .container .service-category-box {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  #service .container .service-category-box {
    flex-direction: column;
  }
}
#service .container .service-category-box:not(:first-of-type) {
  margin-top: 60px;
}
@media (max-width: 767px) {
  #service .container .service-category-box:not(:first-of-type) {
    margin-top: 40px;
  }
}
#service .container .service-category-box .img-area {
  width: 50%;
  flex: 0 0 50%;
  height: auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  #service .container .service-category-box .img-area {
    width: 100%;
  }
}
#service .container .service-category-box .img-area img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
  display: block;
}
#service .container .service-category-box .txt-area {
  flex-grow: 1;
  text-align: center;
  background: #ECF3FA;
  position: relative;
  left: -50px;
  padding: 4% 7%;
  box-sizing: border-box;
}
@media (max-width: 1790px) {
  #service .container .service-category-box .txt-area {
    padding: 4% 4%;
  }
}
@media (max-width: 1400px) {
  #service .container .service-category-box .txt-area {
    padding: 4% 2%;
  }
}
@media (max-width: 767px) {
  #service .container .service-category-box .txt-area {
    position: static;
    margin-top: -150px;
    max-width: 95%;
    padding: 8% 6%;
  }
}
#service .container .service-category-box .txt-area h3 {
  font-size: clamp(2rem, 1.756954612vw, 3.2rem);
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #service .container .service-category-box .txt-area h3 {
    margin-bottom: 15px;
  }
}
#service .container .service-category-box .txt-area h3:before {
  display: block;
  color: #E84649;
  font-size: clamp(1.4rem, 1.1713030747vw, 2.4rem);
  content: attr(data-eng);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 7px;
}
#service .container .service-category-box .txt-area .card-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #service .container .service-category-box .txt-area .card-box {
    margin-bottom: 15px;
  }
}
#service .container .service-category-box .txt-area .card-box .card {
  margin: 0;
  padding: 4px 12px;
  background: #fff;
  display: block;
  width: auto;
  max-width: 100%;
  line-height: 1.8;
  font-size: 2rem;
}
@media (max-width: 767px) {
  #service .container .service-category-box .txt-area .card-box .card {
    font-size: 1.6rem;
  }
}
#service .container .service-category-box .txt-area .txt {
  line-height: 2;
  text-align: start;
}

/* benefits
=========================================== */
#benefits {
  align-items: baseline;
  padding-bottom: 135px;
  position: relative;
}
@media (max-width: 767px) {
  #benefits {
    padding-bottom: 60px;
  }
}
#benefits::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #E84649;
  z-index: -1;
}
@media (max-width: 767px) {
  #benefits::before {
    height: 90%;
  }
}
#benefits .container {
  max-width: 1400px;
}
@media (max-width: 1400px) {
  #benefits .container {
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  #benefits .top_section_title-center {
    margin-bottom: 0;
  }
}
#benefits .benefits-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: baseline;
  padding: 0 150px 100px;
  background: #fff;
}
@media (max-width: 1340px) {
  #benefits .benefits-content {
    padding: 0 5% 5%;
  }
}
@media (max-width: 1180px) {
  #benefits .benefits-content {
    padding: 0 2% 5%;
  }
}
@media (max-width: 1080px) {
  #benefits .benefits-content {
    padding: 0 0 5%;
  }
}
@media (max-width: 767px) {
  #benefits .benefits-content {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 0 60px;
  }
}
#benefits .benefits-content-area {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
}
#benefits .benefits-content-area .thumbnail {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
@media (max-width: 1340px) {
  #benefits .benefits-content-area .thumbnail {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  #benefits .benefits-content-area .thumbnail {
    gap: 10px;
    margin-top: 40px;
  }
}
#benefits .benefits-content-area img {
  max-width: 280px;
}
#benefits .benefits-content-area .num {
  font-size: 5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #E84649;
  display: block;
}
#benefits .benefits-content-area h3 {
  font-size: 3.2rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-top: auto;
}
@media (max-width: 767px) {
  #benefits .benefits-content-area h3 {
    font-size: 2.6rem;
  }
}
#benefits .benefits-content-area p {
  margin-top: auto;
  padding-top: 40px;
  font-weight: 500;
}
@media (max-width: 1340px) {
  #benefits .benefits-content-area p {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  #benefits .benefits-content-area p {
    padding-top: 10px;
  }
}

/* trouble
=========================================== */
#trouble {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  #trouble {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#trouble .trouble-area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 1175px) {
  #trouble .trouble-area {
    flex-direction: column-reverse;
    align-items: center;
  }
}
#trouble .trouble-area .txt-area {
  position: relative;
  margin-top: 8%;
  z-index: 1;
  margin-right: -14px;
}
@media (max-width: 1175px) {
  #trouble .trouble-area .txt-area {
    margin-top: 0;
    margin-right: 0;
  }
}
#trouble .trouble-area .txt-area ul {
  list-style: none;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ECF3FA;
}
#trouble .trouble-area .txt-area ul li {
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 33px;
  position: relative;
}
#trouble .trouble-area .txt-area ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/uploads/icon_check.jpg");
  background-size: cover;
  background-position: center;
}
#trouble .trouble-area .trouble-img-area {
  max-width: 460px;
  position: relative;
  z-index: 0;
}
#trouble .suggest {
  margin-top: 38px;
  text-align: center;
}
#trouble .suggest p {
  display: inline-block;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
}
@media (max-width: 767px) {
  #trouble .suggest p {
    font-size: 3rem;
  }
}
@media (max-width: 615px) {
  #trouble .suggest p {
    font-size: 1.8rem;
  }
}
@media (max-width: 374px) {
  #trouble .suggest p {
    font-size: 1.6rem;
  }
}
#trouble .suggest p::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #093556;
  bottom: 35px;
  left: -60px;
  transform-origin: center;
  transform: translate(-50%, 0) rotate(-110deg);
}
@media (max-width: 767px) {
  #trouble .suggest p::before {
    width: 80px;
    left: -40px;
  }
}
@media (max-width: 615px) {
  #trouble .suggest p::before {
    height: 2px;
    width: 60px;
    left: -14px;
    bottom: 20px;
  }
}
#trouble .suggest p::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #093556;
  bottom: 35px;
  right: -132px;
  transform-origin: center;
  transform: translate(-50%, 0) rotate(110deg);
}
@media (max-width: 767px) {
  #trouble .suggest p::after {
    width: 80px;
    right: -102px;
  }
}
@media (max-width: 615px) {
  #trouble .suggest p::after {
    height: 2px;
    width: 60px;
    right: -60px;
    bottom: 20px;
  }
}
@media (max-width: 374px) {
  #trouble .suggest p::after {
    right: -72px;
  }
}

/* frow
=========================================== */
#flow {
  overflow: hidden;
  padding-top: 0;
  position: relative;
}
#flow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background: url("/wp-content/uploads/flow_bg.png") no-repeat center/cover;
}
#flow .top_section_title-left {
  margin-bottom: 0;
}
#flow .flow_top {
  margin-bottom: 60px;
  align-items: center;
}
#flow .flow_top .top_h2_title {
  margin: 0;
}
#flow .flow_top .flow_arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  #flow .flow_top .flow_arrows {
    gap: 12px;
  }
}
#flow .flow_top .flow_arrows .slick-arrow {
  position: relative;
  z-index: 2 !important;
  width: 77px;
  height: 77px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: none;
  border-radius: 50%;
  background: #ECF3FA;
}
@media (max-width: 767px) {
  #flow .flow_top .flow_arrows .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
#flow .flow_top .flow_arrows .slick-prev:before,
#flow .flow_top .flow_arrows .slick-next:before {
  position: absolute;
  border-right: 2.5px solid #093556;
  border-top: 2.5px solid #093556;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  transition: all 0.2s ease;
}
#flow .flow_top .flow_arrows .slick-prev:before {
  transform: translateY(-50%) translateX(-50%) rotate(-135deg);
}
#flow .flow_top .flow_arrows .slick-next:before {
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
#flow .slick-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
#flow .flow_slider {
  margin-right: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}
#flow .flow_slider .slick-slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 400px;
  background: #fff;
  width: 100%;
  margin-right: 30px;
  overflow: hidden;
  padding: 40px 30px;
  border: 1px solid #E84649;
  text-align: center;
  min-height: 300px;
}
@media (max-width: 767px) {
  #flow .flow_slider .slick-slide {
    padding: 30px 20px;
    gap: 15px;
  }
}
#flow .flow_slider .slick-slide .num {
  font-size: 3rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #E84649;
  display: block;
}
#flow .flow_slider .slick-slide h3 {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  flex-grow: 1;
}
@media (max-width: 767px) {
  #flow .flow_slider .slick-slide h3 {
    font-size: 1.8rem;
  }
}
#flow .flow_slider .slick-slide p {
  text-align: left;
  line-height: 1.8;
  margin-top: 0;
  flex-grow: 1;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #flow .flow_top {
    margin-bottom: 40px;
    flex-direction: row;
    align-items: center;
  }
  #flow .flow_arrows {
    flex-direction: row;
    gap: 20px;
  }
  #flow .flow_arrows .slick-arrow {
    width: 40px;
    height: 40px;
  }
  #flow .flow_arrows .slick-prev:before,
  #flow .flow_arrows .slick-next:before {
    width: 40px;
    height: 40px;
  }
  #flow .flow_slider .slick-slide {
    max-width: 310px;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  #flow .flow_slider {
    width: 100%;
    margin: 0;
  }
}

/* company
=========================================== */
#company .container {
  max-width: 1100px;
}
@media (max-width: 1140px) {
  #company .container {
    max-width: 94%;
  }
}
#company .flex {
  align-items: normal;
  flex-wrap: nowrap;
}
@media (max-width: 1140px) {
  #company .flex {
    flex-direction: column;
    gap: 30px;
  }
}
#company .cp-table {
  width: 100%;
}
#company .cp-table table {
  border-collapse: collapse;
  /* 既存：セル間余白をなくす */
  border-spacing: 0;
}
@media (max-width: 1140px) {
  #company .cp-table table {
    width: 100%;
  }
}
#company .cp-table table th,
#company .cp-table table td {
  padding: 20px 0;
  text-align: start;
  line-height: 1;
  border-bottom: 1px solid #093556;
  vertical-align: top;
}
#company .cp-table table tr {
  height: 100%;
}
#company .cp-table table th {
  min-width: 120px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  #company .cp-table table th {
    min-width: 100px;
  }
}
#company .cp-table table p:not(:last-child) {
  margin-bottom: 6px;
}
#company .cp-table table p {
  display: flex;
  gap: 10px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 575px) {
  #company .cp-table table p {
    flex-direction: column;
    gap: 5px;
  }
}
#company .cp-table table p span {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  min-width: 100px;
  height: 24px;
  background: #ECF3FA;
  padding-left: 12px;
}
@media (max-width: 575px) {
  #company .cp-table table p span {
    max-width: 100px;
  }
}
#company .map {
  padding-bottom: 52px;
}
@media (max-width: 1140px) {
  #company .map {
    padding-bottom: 0;
  }
}
@media (max-width: 1140px) {
  #company .map iframe {
    width: 100%;
  }
}

/* contact
=========================================== */
#contact {
  /* 縦方向のみリサイズ可能に */
  background-image: linear-gradient(90deg, #f0f4fa, #bdd3ed);
}
#contact #your-message {
  /* 縦のみリサイズ */
  resize: vertical;
  /* 親コンテナ幅を超えないように */
  width: 100%;
  /* ボーダー・パディングを含める */
  box-sizing: border-box;
  /* 縦の最大高さ（お好みで調整） */
  max-height: 300px;
  /* 内容がはみ出したらスクロール */
  overflow: auto;
}
#contact .wpcf7-response-output {
  text-align: center;
}
#contact .top_section_title-center {
  margin-bottom: 50px;
}
#contact .wpcf7-spinner {
  display: none;
}
#contact .contact-box {
  background: #fff;
  padding: 100px 0;
}
@media (max-width: 767px) {
  #contact .contact-box {
    padding: 60px 0;
  }
}
#contact .txt {
  text-align: center;
  padding: 0 4%;
  margin: 0 0 80px;
}
@media (max-width: 767px) {
  #contact .txt {
    margin: 0 0 40px;
  }
}
#contact .btn_wrapper {
  text-align: center;
}
#contact .btn_wrapper .primary-btn {
  margin-top: 80px;
}
@media (max-width: 767px) {
  #contact .btn_wrapper .primary-btn {
    margin-top: 40px;
  }
}
#contact .btn_wrapper input {
  padding: 17px 114px;
  background: #093556;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border: 2px solid #093556;
  transition: all 0.2s ease-in-out;
}
#contact .btn_wrapper input:hover {
  background: #fff;
  color: #093556;
}
#contact .wpcf7-form-control-wrap {
  display: block;
  width: 550px;
}
@media (max-width: 767px) {
  #contact .wpcf7-form-control-wrap {
    width: 100%;
  }
}

.contact main {
  padding-bottom: 100px;
}

.form_area,
.confirm_area {
  background: #fff;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .form_area,
  .confirm_area {
    padding: 0 16px;
  }
}
.form_area .row,
.confirm_area .row {
  max-width: 850px;
  margin: auto;
}
.form_area .row div,
.confirm_area .row div {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .form_area .row div,
  .confirm_area .row div {
    flex-direction: column;
  }
}
.form_area .row div dt p,
.confirm_area .row div dt p {
  display: flex;
  justify-content: space-between;
  width: 250px;
  font-size: 1.6rem;
  padding-top: 8px;
}
@media (max-width: 767px) {
  .form_area .row div dt p,
  .confirm_area .row div dt p {
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 0s;
  }
}
.form_area .row div dt dd p,
.confirm_area .row div dt dd p {
  width: 500px;
}

.form_area dl,
.confirm_area dl {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .form_area dl,
  .confirm_area dl {
    gap: 20px;
  }
}

.form_area dt,
.confirm_area dt {
  font-size: 1.8rem;
  font-weight: 600;
}

.form_area dt a,
.confirm_area dt a {
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
}

.form_area .required,
.form_area .optional,
.confirm_area .required,
.confirm_area .optional {
  font-size: 14px;
  line-height: 1;
  padding: 7px 15px 3px;
  background: #ECF3FA;
  color: #093556;
  border-radius: 2px;
  margin-left: 10px;
  display: inline-block;
}

.form_area .optional,
.confirm_area .optional {
  background: #CCD4D9;
  color: #333;
}

.form_area dd,
.confirm_area dd {
  margin-top: 0;
}
@media (max-width: 767px) {
  .form_area dd,
  .confirm_area dd {
    margin-top: 14px;
  }
}

.form_area dd input[type=text],
.form_area dd input[type=email],
.form_area dd input[type=tel],
.form_area dd textarea,
.form_area dd .wpcf7-select,
.confirm_area dd input[type=text],
.confirm_area dd input[type=email],
.confirm_area dd input[type=tel],
.confirm_area dd textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 550px;
  border-radius: 2px;
  background: #ECF3FA;
  border: 1px solid #CCD4D9;
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, sans-serif;
  font-size: 1.6rem;
  padding: 10px;
}
@media (max-width: 767px) {
  .form_area dd input[type=text],
  .form_area dd input[type=email],
  .form_area dd input[type=tel],
  .form_area dd textarea,
  .form_area dd .wpcf7-select,
  .confirm_area dd input[type=text],
  .confirm_area dd input[type=email],
  .confirm_area dd input[type=tel],
  .confirm_area dd textarea {
    width: 100%;
  }
}

.form_area dd input[type=checkbox],
.form_area dd input[type=radio],
.confirm_area dd input[type=checkbox],
.confirm_area dd input[type=radio] {
  display: none;
}

.form_area dd input[type=radio] + span,
.confirm_area dd input[type=radio] + span {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  padding: 10px 30px;
  border-radius: 2px;
  color: #093556;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

.form_area dd input[type=radio] + span::before,
.confirm_area dd input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  margin-top: -10px;
  border: 1px solid #CCD4D9;
  background: #fff;
  border-radius: 50%;
}

.form_area dd input[type=radio]:checked + span::after,
.confirm_area dd input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  width: 12px;
  height: 12px;
  margin-top: -5px;
  background: #1D50A2;
  border-radius: 50%;
}

.form_area dd input[type=checkbox] + span.wpcf7-list-item-label,
.confirm_area dd input[type=checkbox] + span.wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  border-radius: 2px;
  cursor: pointer;
}

.form_area dd input[type=checkbox] + span.wpcf7-list-item-label::before,
.confirm_area dd input[type=checkbox] + span.wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  margin-top: -10px;
  border: 1px solid #CCD4D9;
  background-color: #fff;
  content: "";
}

.form_area dd input[type=checkbox]:checked + span.wpcf7-list-item-label::after,
.confirm_area dd input[type=checkbox]:checked + span.wpcf7-list-item-label::after {
  content: "";
  top: 50%;
  left: 5px;
  width: 10px;
  height: 6px;
  margin-top: -4px;
  position: absolute;
  border-left: 2px solid #1D50A2;
  border-bottom: 2px solid #1D50A2;
  transform: rotate(-45deg);
}

.form_area dd .wpcf7-list-item,
.confirm_area dd .wpcf7-list-item {
  margin-left: 0;
}

.form_area dd.add input[type=text],
.confirm_area dd.add input[type=text] {
  max-width: 240px;
}

.form_area .birth dd p,
.confirm_area .birth dd p {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form_area .birth dd p > span,
.confirm_area .birth dd p > span {
  display: flex;
  gap: 5px;
  align-items: center;
}

@media (max-width: 479px) {
  .form_area .birth dd p,
  .confirm_area .birth dd p {
    align-items: flex-start;
    flex-direction: column;
  }
}
.form_area .birth dd select,
.confirm_area .birth dd select {
  border-radius: 2px;
  background: #fff;
  border: 1px solid #CCD4D9;
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, sans-serif;
  font-size: 1.6rem;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.group-recruit div + div {
  margin-top: 32px;
}

.inquiry .primary-btn input[type=button]:disabled {
  color: #333;
  background: #CCD4D9;
  cursor: not-allowed;
}

/* cta
=========================================== */
#cta .cta_box {
  background: #eee;
  text-align: center;
  padding: 60px 0;
}
#cta .cta_box .cta_flex.flex {
  justify-content: center;
  gap: 16px;
  max-width: 500px;
  flex-wrap: nowrap;
  margin: auto;
}
#cta .cta_box .cta_flex.flex .primary-btn {
  width: 100%;
}
#cta .cta_box .cta_flex.flex .primary-btn a {
  margin: auto;
}/*# sourceMappingURL=top.css.map */