@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

a {
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.6;
}

.main {
  overflow: hidden;
}

.row_main {
  background: url(../img/bg-main.webp) center center/cover no-repeat;
}

.container {
  width: 1280px;
  max-width: 100%;
  padding: 0 clamp(20px, 2.92825vw, 40px);
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.fade-in-text,
.fade-in-image {
  opacity: 0;
  filter: blur(10px);
  /* 初期状態はぼかし効果を追加 */
  transform: translateY(20px);
  /* 下からスライドイン */
  transition: opacity 1.5s ease-out, filter 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in-text-left {
  opacity: 0;
  filter: blur(10px);
  /* 初期状態はぼかし効果を追加 */
  transform: translateX(20px);
  /* 下からスライドイン */
  transition: opacity 1s ease-out, filter 1s ease-out, transform 1s ease-out;
}

.fade-in-visible {
  opacity: 1;
  filter: blur(0);
  /* ぼかしを解除 */
  transform: translateY(0);
  /* 元の位置に戻す */
}

/* ===============================================
# ローディングアニメーション
=============================================== */
/* 全体 */
:root {
  --loader-bg: rgba(7, 22, 43, 0.78);
}

#loader {
  display: none;
}

.needs-loader #loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: url(../img/bg-loader.webp) center center/cover no-repeat;
  display: grid;
  place-items: center;
}

.loader-wrap {
  width: clamp(200px, 26vw, 420px);
  aspect-ratio: 1/1;
}

@media screen and (max-width: 767px) {
  .loader-wrap {
    width: clamp(180px, 68vw, 360px);
  }
}

.ring {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .ring g {
    stroke-width: 22px;
  }
}

.loader-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 250px;
  height: auto;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85);
  filter: blur(4px);
}

@media screen and (max-width: 767px) {
  .loader-logo {
    width: 150px;
  }
}

/* 退場フェード */
#loader.is-out {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* 2回目以降は常に非表示（保険） */
.no-loader #loader {
  display: none !important;
}

/* 初回ローディング中は背面操作を抑止（SPケア） */
.is-loading,
.is-loading body {
  overflow: hidden;
  touch-action: none;
}

/* ===============================================
# 共通
=============================================== */
.sec_ttl {
  display: inline-block;
}

.sec_ttl .en_ttl {
  font-size: 60px;
  font-size: clamp(42px, 4.39238vw, 60px);
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .sec_ttl .en_ttl {
    font-size: 42px;
  }
}

.sec_ttl .ttl {
  text-align: right;
}

.sec_btn a {
  display: inline-block;
  background-color: #fff;
  color: #032987;
  font-size: clamp(16px, 1.46413vw, 20px);
  font-weight: 600;
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
  padding: 10px 50px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .sec_btn a {
    font-size: 16px;
  }
}

.content_en-ttl {
  font-size: clamp(60px, 6.5885vw, 90px);
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .content_en-ttl {
    font-size: 42px;
    line-height: 1.2;
  }
}

.content_ttl {
  font-size: clamp(24px, 2.19619vw, 30px);
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .content_ttl {
    margin-top: 20px;
    font-size: 24px;
  }
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, #01315d, rgba(1, 49, 93, 0.7), transparent);
  padding: 30px clamp(20px, 2.92825vw, 40px) 50px;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 15px 15px 40px;
  }
}

#header.change-color {
  background-color: #e81919;
  transition: 0.3s;
}

#header > .inner {
  padding-bottom: 10px;
  padding-top: 5px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #header > .inner {
    display: block;
    padding-bottom: 8px;
    padding-top: 5px;
  }
}

.header-left {
  margin-right: auto;
}

.header-logo {
  display: inline-block;
  line-height: 1;
  position: relative;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .header-logo {
    margin-top: 3px;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  .header-logo a {
    font-size: 20px;
  }
}

.header-logo a img {
  width: clamp(150px, 16.325vw, 223px);
}

@media screen and (max-width: 767px) {
  .header-logo a img {
    width: 150px;
  }
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-right {
  margin-left: auto;
}

.header-nav {
  top: 100px;
  left: 0;
  right: 0;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav ul {
  display: flex;
  gap: clamp(20px, 3.66vw, 50px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 30px;
  line-height: 30px;
}

.header-nav li {
  margin-bottom: 12px;
}

.header-nav li > a {
  color: #fff;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: clamp(16px, 1.3177vw, 18px);
}

.header-nav li > a span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.06em;
  text-align: left;
  font-weight: 500;
}

.header-nav li > a:hover {
  opacity: 0.6;
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

.drawer-icon {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 13px;
  z-index: 41;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background: url(../img/bg-main.webp) center center/cover no-repeat;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 80px 16px 150px;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 19;
}

.drawer-content .tel-icon {
  margin-top: 60px;
  text-align: center;
}

.drawer-content .tel-icon img {
  width: 60px;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  border-left: 6px solid transparent;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 19px;
  padding: 40px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}

.drawer-nav li a .ja {
  display: block;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.fa-times::before {
  color: #fff;
}

/* ===============================================
# fv
=============================================== */
.fv {
  height: calc(100vh + 160px);
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .fv {
    height: 650px;
    overflow: unset;
    background-position: 80% center;
  }
}

.fv_movie video {
  width: 100%;
  height: calc(100vh + 160px);
  object-fit: cover;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .fv_movie video {
    height: 650px;
  }
}

.fv_txt-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  text-align: center;
}

.fv_txt-box .fv-en_ttl {
  font-size: clamp(80px, 7.3206vw, 100px);
  font-weight: 700;
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .fv_txt-box .fv-en_ttl {
    font-size: 88px;
    margin-top: 0;
    line-height: 1.25;
  }
}

.fv_txt-box .txt {
  text-align: right;
  font-size: 26px;
  margin-right: -40px;
}

@media screen and (max-width: 767px) {
  .fv_txt-box .txt {
    font-size: 24px;
    margin-right: -10px;
  }
}

.sec1 {
  position: relative;
  margin-top: -160px;
  padding-bottom: 290px;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 90%);
  background: url(../img/sec1-layer1.webp) center center/cover no-repeat;
  z-index: 9;
}

@media screen and (max-width: 767px) {
  .sec1 {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 97%);
    padding-bottom: 180px;
  }
}

.sec1::after {
  position: absolute;
  content: "";
  background-color: rgba(1, 45, 92, 0.63);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.home_news {
  padding-top: clamp(280px, 25.6222vw, 350px);
}

@media screen and (max-width: 767px) {
  .home_news {
    padding-top: 250px;
  }
}

.home_news .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .home_news .wrapper {
    flex-direction: column;
    align-items: baseline;
  }
}

.home_news .wrapper .sec_btn {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .home_news .wrapper .sec_btn {
    margin: 40px auto 0;
  }
}

.home_news .wrapper .right {
  max-width: 830px;
  width: -webkit-fill-available;
}

@media screen and (max-width: 767px) {
  .home_news .wrapper .right {
    margin-top: 40px;
  }
}

.home_news .wrapper .right .list {
  border-bottom: 1px dotted #fff;
}

.home_news .wrapper .right .list li {
  border-top: 1px dotted #fff;
}

.home_news .wrapper .right .list li a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 40px 20px;
  padding: clamp(20px, 2.9282vw, 40px);
}

@media screen and (max-width: 767px) {
  .home_news .wrapper .right .list li a {
    padding: 20px 15px;
    flex-direction: column;
    align-items: baseline;
  }
}

.home_news .wrapper .right .list li a .published {
  font-size: 18px;
  font-weight: 600;
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
  width: 128px;
}

@media screen and (max-width: 767px) {
  .home_news .wrapper .right .list li a .published {
    font-size: 14px;
    width: 100%;
  }
}

.home_news .wrapper .right .list li a .ttl {
  letter-spacing: 0.06em;
  width: calc(100% - 128px);
}

@media screen and (max-width: 767px) {
  .home_news .wrapper .right .list li a .ttl {
    width: 100%;
    margin-top: 10px;
    text-align: justify;
  }
}

.home_about {
  margin-top: 160px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home_about .container {
  position: relative;
  z-index: 6;
}

.home_about .home_about-bg {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: url(../img/back-about-home.webp) center center/cover no-repeat;
  width: 100%;
  height: 120vh;
  pointer-events: none;
  will-change: transform;
  display: block;
}

.home_about .logo img {
  width: 260px;
}

@media screen and (max-width: 767px) {
  .home_about .logo img {
    width: 200px;
  }
}

.home_about .content_en-ttl {
  margin-top: 20px;
}

.home_about .content_ttl {
  margin-top: 5px;
}

.home_about .txt {
  margin-top: 55px;
  letter-spacing: 0.06em;
  line-height: 2.5;
  font-weight: 500;
  font-size: clamp(18px, 1.46412vw, 20px);
}

@media screen and (max-width: 767px) {
  .home_about .txt {
    font-size: inherit;
    margin-top: 30px;
  }
}

.home_overview {
  margin-top: -220px;
  padding-top: 280px;
  padding-bottom: 350px;
  position: relative;
  z-index: 8;
}

@media screen and (max-width: 767px) {
  .home_overview {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 97%);
    padding-bottom: 160px;
  }
}

.home_overview::before {
  position: absolute;
  content: "";
  background-color: rgba(1, 45, 93, 0.9);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.home_overview .home_overview-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url(../img/back-overview-home.webp) center center/cover no-repeat;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
  display: block;
}

@media screen and (max-width: 767px) {
  .home_overview .home_overview-bg {
    background-position: 65% center;
  }
}

.home_overview .wrapper {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper {
    margin-top: 60px;
  }
}

.home_overview .wrapper .item {
  display: flex;
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item {
    flex-direction: column;
  }
}

.home_overview .wrapper .item .left {
  width: 55%;
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item .left {
    width: 100%;
  }
}

.home_overview .wrapper .item .right {
  width: 60%;
  margin-left: -150px;
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item .right {
    width: 100%;
    margin-left: 0;
    margin-top: -100px;
  }
}

.home_overview .wrapper .item .right .home_overview-en_ttl {
  font-size: clamp(60px, 6.5885vw, 90px);
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item .right .home_overview-en_ttl {
    font-size: 38px;
  }
}

.home_overview .wrapper .item .right .home_overview-ttl {
  font-size: clamp(20px, 1.75695vw, 24px);
  letter-spacing: 0.06em;
  text-align: right;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item .right .home_overview-ttl {
    font-size: 20px;
  }
}

.home_overview .wrapper .item .right .txt {
  letter-spacing: 0.06em;
  line-height: 2.5;
  margin-top: clamp(30px, 3.66vw, 50px);
  margin-left: 60px;
  font-size: clamp(16px, 1.3177vw, 18px);
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item .right .txt {
    margin-top: 30px;
    margin-left: 0;
    font-size: inherit;
  }
}

.home_overview .wrapper .item .right .sec_btn {
  text-align: right;
  margin-top: clamp(40px, 4.39238vw, 60px);
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item .right .sec_btn {
    text-align: center;
    margin-top: 40px;
  }
}

.home_overview .wrapper .item:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item:nth-child(even) {
    flex-direction: column;
    margin-top: 80px;
  }
}

.home_overview .wrapper .item:nth-child(even) .right {
  margin-left: 0;
  margin-right: -150px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .home_overview .wrapper .item:nth-child(even) .right {
    margin-right: 0;
  }
}

.home_overview-ttl {
  position: relative;
}

.home_overview-ttl .en_ttl {
  font-size: clamp(80px, 8.41874vw, 115px);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.04;
}

@media screen and (max-width: 767px) {
  .home_overview-ttl .en_ttl {
    font-size: 42px;
  }
}

.home_overview-ttl .ttl-wrap {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  width: 60%;
  display: flex;
  align-items: center;
  min-height: 2.8em;
}

@media screen and (max-width: 767px) {
  .home_overview-ttl .ttl-wrap {
    left: 30%;
    width: 70%;
    transform: translateY(-50%);
  }
}

.home_overview-ttl .ttl-wrap .ttl {
  font-size: clamp(20px, 1.61vw, 22px);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .home_overview-ttl .ttl-wrap .ttl {
    font-size: 16px;
    white-space: nowrap;
    margin-top: 20px;
  }
}

.home_work {
  margin-top: -220px;
  padding-top: 300px;
  padding-bottom: clamp(150px, 19.033vw, 260px);
  position: relative;
  z-index: 8;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
}

@media screen and (max-width: 767px) {
  .home_work {
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%);
    margin-top: -65px;
    padding-top: 170px;
    padding-bottom: 150px;
  }
}

.home_work .home_work-bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  z-index: -1;
  background: url(../img/bg-main.webp) center/cover no-repeat;
  width: 100%;
  height: 120%;
  pointer-events: none;
  will-change: transform;
}

.home_work .top {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.home_work .top::before {
  position: absolute;
  content: "";
  border: 1px dotted #fff;
  width: clamp(200px, 73.2vw, 1000px);
  right: 100px;
  top: 15px;
}

@media screen and (max-width: 767px) {
  .home_work .top::before {
    right: 65px;
    width: 200px;
  }
}

.home_work .top::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 13px solid #ffffff;
  border-right: 0;
  right: 95px;
  top: 10px;
}

@media screen and (max-width: 767px) {
  .home_work .top::after {
    right: 55px;
  }
}

.home_work .top .home_work-ttl {
  transform: rotate(-90deg);
  transform-origin: left center;
  font-size: 60px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.06em;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .home_work .top .home_work-ttl {
    font-size: 42px;
    margin-left: 30px;
  }
}

.home_work .top .home_work-btn {
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .home_work .top .home_work-btn {
    margin-right: 0;
  }
}

.home_work .top .home_work-btn a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
}

.home_work-slider {
  --card-w: 380px;
  /* 1枚の幅（variableWidth用） */
  --card-w: clamp(250px, 27.81844vw, 380px);
  /* 1枚の幅（variableWidth用） */
  --gutter: clamp(10px, 1.46412vw, 20px);
  /* カード間の余白 */
  --peek: 120px;
  /* 右チラ見せ幅  */
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .home_work-slider {
    --card-w: 200px;
    /* 1枚の幅（variableWidth用） */
    --gutter: 10px;
    /* カード間の余白 */
  }
}

.home_work-slider ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home_work-slider ul li {
  height: 100%;
  margin: 0 15px;
  position: relative;
}

.home_work-slider ul li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home_work-slider ul li a .home_work-img {
  display: block;
  position: relative;
}

.home_work-slider ul li a .home_work-img::after {
  position: absolute;
  content: "";
  background-color: rgba(19, 65, 105, 0.5);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.home_work-slider ul li a .home_work-img img {
  aspect-ratio: 340 / 440;
  object-fit: cover;
}

.home_work-slider ul li a .content {
  position: absolute;
  bottom: clamp(20px, 2.92826vw, 40px);
  margin: 0 30px;
  margin: 0 clamp(15px, 2.19619vw, 30px);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .home_work-slider ul li a .content {
    bottom: 20px;
    margin: 0 15px;
  }
}

.home_work-slider ul li a .content .info {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .home_work-slider ul li a .content .info {
    flex-direction: column;
    gap: 10px;
    align-items: baseline;
  }
}

.home_work-slider ul li a .content .info .published {
  font-family: "Antonio", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.home_work-slider ul li a .content .info .cat {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #012d5c;
  min-width: 200px;
  text-align: center;
  padding: 8px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  position: absolute;
  left: 0;
}

@media screen and (max-width: 767px) {
  .home_work-slider ul li a .content .info .cat {
    position: static;
    min-width: 150px;
    padding: 5px;
    margin-left: -20px;
  }
}

.home_work-slider ul li a .content .ttl {
  line-height: 1.857;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .home_work-slider ul li a .content .ttl {
    line-height: 1.5;
    margin-top: 10px;
  }
}

.home_work-slider ul li a .content .arrow_icon {
  margin-top: 10px;
  margin-left: 10px;
}

.home_work-slider ul li a .content .arrow_icon img {
  width: clamp(40px, 4.39238vw, 60px);
}

@media screen and (max-width: 767px) {
  .home_work-slider ul li a .content .arrow_icon img {
    width: 30px;
  }
}

.home_work-slider .slick-list {
  margin-right: -100px;
  /* 右にハミ出させる量（＝チラ見せ幅） */
  padding-right: 100px;
  /* レイアウト崩れ防止の相殺パディング */
}

/* Slick土台 */
.home_work-slider > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home_work-slider .slick-track {
  display: flex;
}

/* ▼ ここが肝：可視領域（.slick-list）を“常に”幅1120pxで右寄せ固定 */
.home_work-slider .slick-list {
  width: 81.99vw !important;
  /* ビュー幅を固定 */
  margin-left: auto;
  /* 右寄せ固定（画面右に吸着） */
  /* ガター相殺（左右対称） */
  margin-right: calc(var(--gutter) * -1);
  /* 右だけチラ見せ（peek）を確保 */
  padding-right: calc(var(--gutter) + var(--peek));
  /* 左はチラ見せ不要なら通常のガターだけ */
  padding-left: var(--gutter);
}

@media screen and (max-width: 767px) {
  .home_work-slider .slick-list {
    width: 100% !important;
  }
}

/* 1枚のカード（variableWidth前提で幅をCSSで指定） */
.home_work-slider .slick-slide {
  width: var(--card-w);
  margin: 0 var(--gutter);
  position: relative;
}

/* ===============================================
# バナーセクション
=============================================== */
.recruit_banner,
.company_banner,
.contact_banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  place-items: center;
}

.recruit_banner .sec_ttl .en_ttl,
.company_banner .sec_ttl .en_ttl,
.contact_banner .sec_ttl .en_ttl {
  font-size: clamp(60px, 6.5885vw, 90px);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .recruit_banner .sec_ttl .en_ttl,
  .company_banner .sec_ttl .en_ttl,
  .contact_banner .sec_ttl .en_ttl {
    font-size: 42px;
  }
}

.recruit_banner .sec_ttl .ttl,
.company_banner .sec_ttl .ttl,
.contact_banner .sec_ttl .ttl {
  font-size: clamp(20px, 1.7569vw, 24px);
  margin-right: -30px;
}

@media screen and (max-width: 767px) {
  .recruit_banner .sec_ttl .ttl,
  .company_banner .sec_ttl .ttl,
  .contact_banner .sec_ttl .ttl {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_banner .content,
  .company_banner .content,
  .contact_banner .content {
    margin-left: 30px;
  }
}

.banner-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  bottom: -12%;
  background: var(--bg) center/cover no-repeat;
  will-change: transform;
  transform: translateZ(0);
  /* GPU レイヤー昇格 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  contain: content;
}

@media screen and (max-width: 767px) {
  .banner-bg {
    background-position: 20% center;
  }
}

.banner .content {
  position: relative;
  z-index: 1;
}

.recruit_banner .content {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .recruit_banner .content {
    text-align: left;
  }
}

.recruit_banner .sec_btn {
  margin-top: 40px;
  margin-right: 40px;
}

.company_banner .content {
  text-align: left;
}

.company_banner .sec_btn {
  margin-top: 40px;
  margin-left: 40px;
}

.contact_banner .content {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .contact_banner .content {
    text-align: left;
  }
}

.contact_banner .sec_btn {
  margin-top: 40px;
  margin-right: 40px;
}

/* ===============================================
# footer
=============================================== */
.footer {
  background: url(../img/bg-main.webp) center center/cover no-repeat;
  padding: clamp(150px, 15.3733vw, 210px) clamp(20px, 2.92825vw, 40px);
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 100px 10px 10px;
  }
}

.footer::after {
  position: absolute;
  content: "";
  background: url(../img/logo-about.png) center center/cover no-repeat;
  width: clamp(400px, 74.67057vw, 1020px);
  height: clamp(135px, 24.89vw, 340px);
  opacity: 0.05;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .footer::after {
    width: 400px;
    height: 135px;
  }
}

.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .footer .wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .footer .wrapper .left {
    text-align: center;
  }
}

.footer .wrapper .left .logo img {
  width: 350px;
}

@media screen and (max-width: 767px) {
  .footer .wrapper .left .logo img {
    width: 250px;
  }
}

.footer .wrapper .left .footer-list {
  display: flex;
  gap: clamp(30px, 5.12445vw, 70px);
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .footer .wrapper .left .footer-list {
    flex-direction: column;
    gap: 20px;
  }
}

.footer .wrapper .left .footer-list li a {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer .wrapper .right {
    margin-top: 40px;
  }
}

.footer .wrapper .right .copy {
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ===============================================
# 下層共通
=============================================== */
.common_mv {
  padding: 195px 0 110px;
}

@media screen and (max-width: 767px) {
  .common_mv {
    padding: 100px 0 40px;
  }
}

.common_mv .mv_ttl {
  display: flex;
  align-items: center;
  gap: 25px;
}

.common_mv .mv_ttl .en_ttl {
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #2d4cb4 0%, #1277f0 50%, #74a6e5 100%);
  font-size: clamp(70px, 7.32vw, 100px);
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .common_mv .mv_ttl .en_ttl {
    font-size: 42px;
  }
}

.common_mv .mv_ttl .j_ttl {
  font-size: 20px;
  letter-spacing: 0.12em;
  color: #68a1e7;
  margin-top: 20px;
}

.common_mv-bg {
  padding: 17vw 0 3vw;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .common_mv-bg {
    padding-top: 100px;
  }
}

.common_mv-bg .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .common_mv-bg .container {
    display: block;
  }
}

.common_mv-bg .common_mv-para {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 55.63689vw;
  pointer-events: none;
  will-change: transform;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .common_mv-bg .common_mv-para {
    height: 500px;
  }
}

.common_mv-bg .mv_ttl {
  position: relative;
}

.common_mv-bg .mv_ttl .en_ttl {
  color: #fff;
}

.common_mv-bg .mv_ttl .j_ttl {
  color: #fff;
}

.common_mv-bg .mv_sub-ttl {
  position: relative;
  margin-top: 100px;
  text-align: right;
  font-size: clamp(60px, 5.8565vw, 80px);
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .common_mv-bg .mv_sub-ttl {
    margin-top: 50px;
    font-size: 38px;
  }
}

.common_mv-bg .common_mv-company {
  background: url(../img/mv-company.webp) center center/cover no-repeat;
}

.common_mv-bg .common_mv-business {
  background: url(../img/mv-business.webp) center center/cover no-repeat;
}

.common_mv-bg .common_mv-recruit {
  background: url(../img/mv-recruit.webp) center center/cover no-repeat;
  height: 74.67vw;
}

@media screen and (max-width: 767px) {
  .common_mv-bg .common_mv-recruit {
    height: 100vh;
  }
}

.mv-recruit {
  text-align: center;
  padding: 14.253vw 0 10vw;
}

@media screen and (max-width: 767px) {
  .mv-recruit {
    padding-top: 100px;
  }
}

.mv-recruit .container {
  flex-direction: column;
  align-items: center;
}

.mv-recruit .mv_ttl {
  flex-direction: column;
  gap: 0;
}

.mv-recruit .mv_ttl .en_ttl {
  font-size: 111px;
  font-size: clamp(60px, 8.1259vw, 111px);
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .mv-recruit .mv_ttl .en_ttl {
    font-size: 42px;
    line-height: 1.2;
    margin-top: 10px;
  }
}

.mv-recruit .mv_sub-ttl {
  font-size: clamp(20px, 2.63543vw, 36px);
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mv-recruit .mv_sub-ttl {
    font-size: 20px;
    text-align: center;
  }
}

.mv-recruit .mv_read {
  margin-top: clamp(30px, 4.02635vw, 55px);
  letter-spacing: 0.06em;
  line-height: 2.5;
  position: relative;
}

@media screen and (max-width: 767px) {
  .mv-recruit .mv_read {
    margin-top: 20px;
  }
}

.cat_tab ul {
  display: flex;
  justify-content: right;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .cat_tab ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.cat_tab ul li a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.cat_tab ul li a.is-active {
  opacity: 1;
  position: relative;
}

.cat_tab ul li a.is-active::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.pagination {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 40px;
  }
}

.pagination a {
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  opacity: 0.6;
}

.pagination a.next,
.pagination a.prev {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: transparent;
  width: 40px;
  height: 58px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .pagination a.next,
  .pagination a.prev {
    font-size: 14px;
  }
}

.pagination a.next {
  text-align: right;
  margin-left: 100px;
}

@media screen and (max-width: 767px) {
  .pagination a.next {
    margin-left: 10px;
  }
}

.pagination a.next::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 28px;
  background: url(../img/icon-next.png) center center/cover no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
}

.pagination a.prev {
  text-align: left;
  margin-right: 100px;
}

@media screen and (max-width: 767px) {
  .pagination a.prev {
    margin-right: 10px;
  }
}

.pagination a.prev::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 28px;
  background: url(../img/icon-prev.png) center center/cover no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  display: inline-block;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  margin-right: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 10px 17px;
}

@media screen and (max-width: 767px) {
  .page-numbers {
    padding: 10px 8px;
  }
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  border: 1px dotted #fff;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
  color: #fff;
}

/* ===============================================
# 新着・ブログ一覧
=============================================== */
.l_archive {
  margin-top: 60px;
  padding-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .l_archive {
    margin-top: 25px;
  }
}

.l_archive .wrapper ul {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.l_archive .wrapper ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.l_archive .wrapper ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 40px 60px;
}

@media screen and (max-width: 767px) {
  .l_archive .wrapper ul li a {
    flex-direction: column;
    align-items: baseline;
    padding: 15px 20px;
  }
}

.l_archive .wrapper ul li a .info {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 375px;
}

@media screen and (max-width: 767px) {
  .l_archive .wrapper ul li a .info {
    gap: 20px;
  }
}

.l_archive .wrapper ul li a .info .published {
  font-family: "Antonio", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .l_archive .wrapper ul li a .info .published {
    font-size: 14px;
  }
}

.l_archive .wrapper ul li a .info .cat {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #012d5c;
  min-width: 200px;
  text-align: center;
  padding: 8px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

@media screen and (max-width: 767px) {
  .l_archive .wrapper ul li a .info .cat {
    padding: 6px;
    font-size: 14px;
  }
}

.l_archive .wrapper ul li a .c_archive-ttl {
  width: calc(100% - 375px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .l_archive .wrapper ul li a .c_archive-ttl {
    width: 100%;
    margin-top: 20px;
    text-align: justify;
  }
}

/* ===============================================
# 施工実績一覧
=============================================== */
.work_archive {
  margin-top: 60px;
  padding-bottom: 110px;
}

.work_archive .wrapper ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .work_archive .wrapper ul {
    flex-direction: column;
  }
}

.work_archive .wrapper ul li {
  display: block;
  width: calc((100% - 6.77083vw) / 3);
  margin-right: 3.385416vw;
  position: relative;
}

@media screen and (max-width: 767px) {
  .work_archive .wrapper ul li {
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
  }
}

.work_archive .wrapper ul li:first-child {
  margin-top: 0;
}

.work_archive .wrapper ul li:nth-child(3n) {
  margin-right: 0;
}

.work_archive .wrapper ul li:nth-child(n + 4) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .work_archive .wrapper ul li:nth-child(n + 4) {
    margin-top: 30px;
  }
}

.work_archive .wrapper ul li a {
  color: #fff;
}

.work_archive .wrapper ul li a picture {
  display: block;
  position: relative;
}

.work_archive .wrapper ul li a picture::after {
  position: absolute;
  content: "";
  background-color: rgba(19, 65, 105, 0.5);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.work_archive .wrapper ul li a picture img {
  aspect-ratio: 340/440;
  object-fit: cover;
}

.work_archive .wrapper ul li a .content {
  position: absolute;
  margin: 0 30px 40px;
  bottom: 0;
}

.work_archive .wrapper ul li a .content .info {
  position: relative;
  width: 100%;
}

.work_archive .wrapper ul li a .content .info .cat {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.1713vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #012d5c;
  min-width: 200px;
  text-align: center;
  padding: 8px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: -20px;
}

@media screen and (max-width: 767px) {
  .work_archive .wrapper ul li a .content .info .cat {
    left: 0;
  }
}

.work_archive .wrapper ul li a .content .ttl {
  margin-top: 27px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.85;
}

.work_archive .wrapper ul li a .content .arrow_icon {
  margin-top: 15px;
  margin-left: 10px;
}

.work_archive .wrapper ul li a .content .arrow_icon img {
  width: clamp(30px, 4.39238vw, 60px);
}

/* ===============================================
# 詳細ページ
=============================================== */
.s_detail {
  padding-top: 260px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .s_detail {
    padding-top: 100px;
  }
}

.s_detail .top .info {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .s_detail .top .info {
    gap: 20px;
  }
}

.s_detail .top .info .published {
  font-family: "Antonio", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.s_detail .top .info .cat {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #012d5c;
  min-width: 200px;
  text-align: center;
  padding: 8px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

@media screen and (max-width: 767px) {
  .s_detail .top .info .cat {
    padding: 6px;
  }
}

.s_detail .top .info a {
  color: inherit;
}

.s_detail .top .s_ttl {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-top: 30px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .s_detail .top .s_ttl {
    font-size: 16px;
    margin-top: 20px;
    margin-left: 0;
  }
}

.s_detail picture {
  display: block;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .s_detail picture {
    margin-top: 30px;
  }
}

.s_detail picture img {
  display: block;
  object-fit: cover;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.s_detail .content {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .s_detail .content {
    margin-top: 20px;
  }
}

.s_detail .content p,
.s_detail .content h2,
.s_detail .content h3,
.s_detail .content h4,
.s_detail .content h5,
.s_detail .content img {
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

.s_detail .content p {
  line-height: 2.5;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .s_detail .content p {
    line-height: 2;
  }
}

.s_detail .content h2 {
  font-size: 20px;
  padding: 30px;
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .s_detail .content h2 {
    font-size: 18px;
    padding: 15px;
  }
}

.s_detail .content h3 {
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.203);
  padding: 20px;
  outline: 1px dotted #fff;
  outline-offset: 2px;
}

@media screen and (max-width: 767px) {
  .s_detail .content h3 {
    padding: 10px;
    font-size: 16px;
  }
}

.s_detail .content h4 {
  font-size: 18px;
  padding-left: 20px;
  border-left: 3px solid #fff;
}

@media screen and (max-width: 767px) {
  .s_detail .content h4 {
    font-size: 16px;
  }
}

.s_detail .content h5 {
  display: inline-block;
  font-size: 18px;
  border-bottom: 1px dotted #fff;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .s_detail .content h5 {
    font-size: 16px;
  }
}

.s_detail .content img {
  display: block;
  width: 80%;
  margin: 20px auto 0;
}

.s_detail .btn_wrapper {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .s_detail .btn_wrapper {
    margin-top: 60px;
  }
}

.s_detail .btn_wrapper a {
  color: #fff;
  letter-spacing: 0.06em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .s_detail .btn_wrapper a {
    font-size: 14px;
  }
}

.s_detail .btn_wrapper .prev a {
  position: relative;
  padding-left: 35px;
}

.s_detail .btn_wrapper .prev a::after {
  position: absolute;
  content: "";
  background: url(../img/icon-prev.png) center center/cover no-repeat;
  width: 18px;
  height: 28px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.s_detail .btn_wrapper .to_back a {
  padding: 10px 40px;
  border: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .s_detail .btn_wrapper .to_back a {
    padding: 10px 30px;
  }
}

.s_detail .btn_wrapper .next a {
  position: relative;
  padding-right: 35px;
}

.s_detail .btn_wrapper .next a::after {
  position: absolute;
  content: "";
  background: url(../img/icon-next.png) center center/cover no-repeat;
  width: 18px;
  height: 28px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ===============================================
# お問い合わせ
=============================================== */
.contact {
  padding-bottom: 150px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 60px;
  }
}

.contact-box {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .contact-box {
    margin-top: 40px;
  }
}

.contact-note-txt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .contact-note-txt {
    padding-left: 0;
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
  }
}

.contact-note-txt a {
  color: #fff;
  border-bottom: 1px dotted #fff;
}

.contact-required-txt {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.contact-required-txt span {
  color: #e81919;
}

.contact-contents__item--required {
  display: flex;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required {
    display: block;
    padding: 0 10px 15px;
  }
}

.contact-contents__item--required + .contact-contents__item--required {
  margin-top: 40px;
}

.contact-contents__item--required:last-child {
  border-bottom: none;
}

.contact-contents__item-title {
  width: 200px;
  height: 60px;
  line-height: 60px;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-title {
    font-size: 16px;
    margin-bottom: 5px;
    height: auto;
    line-height: 1;
  }
}

.contact-contents__item-input--text {
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-input--text {
    width: 100%;
    margin-top: 10px;
  }
}

.contact-contents__item-textarea {
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-textarea {
    width: 100%;
    margin-top: 10px;
  }
}

.contact_read {
  margin-top: 70px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .contact_read {
    margin-top: 0;
    font-size: 14px;
  }
}

.contact_btn-wrap {
  text-align: center;
}

.contact-contents__submit {
  display: inline-block;
  text-align: center;
  margin: 70px auto 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-contents__submit {
    margin-top: 20px;
  }
}

.contact-contents__btn {
  width: 200px;
  height: 80px;
  border: none;
  background-color: #1d2f5f;
  border-radius: unset;
  color: #fff;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.5s ease;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact-contents__btn {
    height: 50px;
  }
}

.contact-contents__btn:hover {
  opacity: 0.6;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  height: 60px;
  padding-left: 10px;
  background: #f4fbff;
}

@media screen and (max-width: 767px) {
  input[type="text"], input[type="email"], input[type="tel"] {
    height: 40px;
    border-radius: unset;
  }
}

textarea {
  width: 100%;
  min-height: 200px;
  resize: vertical;
  border: none;
  background: #f4fbff;
}

@media screen and (max-width: 767px) {
  textarea {
    min-height: 120px;
    border-radius: unset;
  }
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.form-privacy {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .form-privacy {
    margin-top: 30px;
  }
}

.form-privacy a {
  color: #fff;
  letter-spacing: 0.06em;
  border-bottom: 1px dotted #fff;
}

.form-privacy span.wpcf7-list-item-label {
  justify-content: center;
}

.form-privacy input[type="checkbox"] {
  display: none;
}

.form-privacy .wpcf7-list-item-label {
  position: relative;
  height: 20px;
  line-height: 20px;
  padding-left: 25px;
  display: inline-block;
}

.form-privacy .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid;
  background: #fff;
  position: absolute;
  left: -5px;
  top: 0;
  box-sizing: border-box;
}

.form-privacy input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  border-top: 3px solid #032987;
  border-right: 3px solid #032987;
  transform: rotate(135deg);
  position: absolute;
  left: 0;
  top: 4px;
}

.wpcf7-spinner {
  display: none !important;
}

/* ===============================================
# プライバシーポリシー
=============================================== */
@media screen and (max-width: 767px) {
  .common_mv .mv_ttl-policy {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
  }
}

.policy {
  padding-bottom: 180px;
}

@media screen and (max-width: 767px) {
  .policy {
    padding-bottom: 100px;
  }
}

.policy::before {
  top: -10%;
  right: 15%;
}

@media screen and (max-width: 767px) {
  .policy::before {
    top: -5%;
    right: 0;
  }
}

.policy::after {
  bottom: 0;
}

.policy .wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.policy .wrapper .item {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item {
    padding: 0 0 30px;
    margin-bottom: 30px;
  }
}

.policy .wrapper .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy .wrapper .item .ttl {
  font-size: 18px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item .ttl {
    font-size: 16px;
  }
}

.policy .wrapper .item .txt {
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 15px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item .txt {
    padding-left: 10px;
  }
}

/* ===============================================
# 会社概要
=============================================== */
.company_message {
  position: relative;
}

@media screen and (max-width: 767px) {
  .company_message {
    padding-top: 50px;
  }
}

.company_message .wrapper {
  display: flex;
}

@media screen and (max-width: 767px) {
  .company_message .wrapper {
    flex-direction: column-reverse;
  }
}

.company_message .wrapper .left {
  margin-right: 100px;
  margin-right: clamp(50px, 7.32vw, 100px);
}

@media screen and (max-width: 767px) {
  .company_message .wrapper .left {
    margin-right: 0;
    margin-top: 30px;
  }
}

.company_message .wrapper .left picture {
  display: block;
  width: 100%;
}

.company_message .wrapper .left picture img {
  max-width: 600px;
  width: 100%;
}

.company_message .wrapper .right {
  margin-top: clamp(50px, 7.32vw, 100px);
  max-width: 510px;
}

.company_message .wrapper .right .message_txt {
  line-height: 2.5;
  font-weight: 500;
  font-size: clamp(16px, 1.3177vw, 18px);
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .company_message .wrapper .right .message_txt {
    font-size: 16px;
    text-align: justify;
  }
}

.company_message .wrapper .right .name_group {
  display: block;
  margin-top: clamp(40px, 4.39238vw, 60px);
  text-align: right;
}

@media screen and (max-width: 767px) {
  .company_message .wrapper .right .name_group {
    margin-top: 40px;
  }
}

.company_message .wrapper .right .name_group .post {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-right: 70px;
}

.company_message .wrapper .right .name_group .name {
  font-size: clamp(22px, 1.97657vw, 27px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.company_message .wrapper .right .name_group .en_name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.38em;
}

.philosophy {
  text-align: center;
  padding: clamp(180px, 21.9619vw, 300px) 0 clamp(100px, 14.6412vw, 200px);
  margin-top: -80px;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .philosophy {
    margin-top: -30px;
    padding: 150px 0 40px;
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
  }
}

.philosophy::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, #114387, rgba(17, 67, 135, 0.7), transparent);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.philosophy .philosophy_ttl .en_ttl {
  font-size: clamp(42px, 5.8565vw, 80px);
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .philosophy .philosophy_ttl .en_ttl {
    font-size: 42px;
    line-height: 1.2;
  }
}

.philosophy .philosophy_ttl .ttl {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.philosophy .txt {
  margin-top: 50px;
  font-size: clamp(16px, 1.3177vw, 18px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .philosophy .txt {
    font-size: 16px;
    line-height: 2;
  }
}

.company_info {
  padding: 160px 0 260px;
  padding: clamp(80px, 11.713vw, 160px) 0 clamp(130px, 19.033vw, 260px);
  position: relative;
}

@media screen and (max-width: 767px) {
  .company_info {
    padding: 100px 0;
  }
}

.company_info .company_info-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(../img/bg-company-info.webp) center center/cover no-repeat;
  width: 100%;
  height: 200vh;
  pointer-events: none;
  will-change: transform;
  display: block;
}

.company_info .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 767px) {
  .company_info .wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .company_info .wrapper .sec_ttl {
    display: block;
    text-align: center;
  }
}

.company_info .wrapper .sec_ttl .en_ttl {
  font-size: clamp(42px, 6.58857vw, 90px);
}

@media screen and (max-width: 767px) {
  .company_info .wrapper .sec_ttl .en_ttl {
    font-size: 42px;
  }
}

.company_info .wrapper .sec_ttl .ttl {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .company_info .wrapper .sec_ttl .ttl {
    text-align: center;
  }
}

.company_info .wrapper .info {
  max-width: 610px;
  max-width: clamp(450px, 44.655vw, 610px);
  width: 100%;
}

@media screen and (max-width: 767px) {
  .company_info .wrapper .info {
    margin-top: 40px;
  }
}

.company_info .wrapper .info dl {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #fff;
  padding: 0 clamp(20px, 4.39238vw, 60px) 35px;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .company_info .wrapper .info dl {
    padding: 0 15px 20px;
    margin-bottom: 20px;
  }
}

.company_info .wrapper .info dl:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.company_info .wrapper .info dl dt {
  width: 100px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.company_info .wrapper .info dl dd {
  width: calc(100% - 100px);
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .company_info .wrapper .info dl dd {
    text-align: justify;
  }
}

.company_info .info_require {
  max-width: 1120px;
  margin: 100px auto 0;
  padding: 50px clamp(40px, 5.85651vw, 80px);
  border: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .company_info .info_require {
    margin-top: 60px;
  }
}

.company_info .info_require .wrap {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .company_info .info_require .wrap {
    display: block;
  }
}

.company_info .info_require .wrap .ttl {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-right: clamp(20px, 4.39239vw, 60px);
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .company_info .info_require .wrap .ttl {
    font-size: 18px;
    text-align: center;
    margin-right: 0;
  }
}

.company_info .info_require .wrap .list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.92825vw, 40px);
}

@media screen and (max-width: 767px) {
  .company_info .info_require .wrap .list_wrap {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .company_info .info_require .wrap .list_wrap .list {
    text-align: center;
  }
}

.company_info .info_require .wrap .list_wrap .list li {
  white-space: nowrap;
  margin-top: 20px;
}

.company_info .info_require .wrap .list_wrap .list li:first-child {
  margin-top: 0;
}

.company_map {
  position: relative;
  background-color: #114387;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  margin-bottom: -5px;
}

.company_map .content .map_wrapper iframe {
  aspect-ratio: 1366 / 820;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border: none;
  pointer-events: none;
}

.company_map .content .map_btn {
  position: absolute;
  bottom: 10vw;
  left: 50%;
  transform: translateX(-50%);
}

.company_map .content .map_btn a {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  background-color: #fff;
  color: #114387;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  padding: 10px 45px;
}

/* ===============================================
# 事業内容
=============================================== */
.business_about {
  margin-top: -28.1054vw;
  padding: 35.961vw 0 330px;
  background: url(../img/business-about.webp) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .business_about {
    padding-top: 200px;
    padding-bottom: 270px;
  }
}

.business_about .wrapper {
  position: relative;
  text-align: center;
}

.business_about .wrapper .business_about-ttl {
  font-size: clamp(30px, 3.07467vw, 42px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .business_about .wrapper .business_about-ttl {
    font-size: 22px;
  }
}

.business_about .wrapper .sub_ttl {
  display: inline-block;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #114387;
  background-color: #fff;
  padding: 13px 60px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .business_about .wrapper .sub_ttl {
    font-size: 18px;
    padding: 8px 60px;
  }
}

.business_about .wrapper .txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.06em;
  margin-top: clamp(30px, 3.66vw, 50px);
}

@media screen and (max-width: 767px) {
  .business_about .wrapper .txt {
    font-size: 16px;
    line-height: 2;
    margin-top: 30px;
  }
}

.sun {
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  background-color: #114387;
  padding: 300px 0;
  margin-top: -200px;
}

@media screen and (max-width: 767px) {
  .sun {
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    padding: 150px 0 80px;
  }
}

.sun .top_wrapper {
  display: flex;
}

@media screen and (max-width: 767px) {
  .sun .top_wrapper {
    flex-direction: column-reverse;
  }
}

.sun .top_wrapper .left {
  position: relative;
  width: 60%;
  margin-right: -22%;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .sun .top_wrapper .left {
    width: 100%;
    margin-top: -100px;
  }
}

.sun .top_wrapper .left .ja_ttl {
  font-size: clamp(32px, 3.14788vw, 43px);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-left: 120px;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sun .top_wrapper .left .ja_ttl {
    font-size: 28px;
    padding-left: 60px;
  }
}

.sun .top_wrapper .left .ja_ttl::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #fff;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .sun .top_wrapper .left .ja_ttl::before {
    width: 50px;
  }
}

.sun .top_wrapper .left .ttl {
  font-size: clamp(42px, 6.8814vw, 94px);
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.255;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .sun .top_wrapper .left .ttl {
    font-size: 42px;
  }
}

.sun .top_wrapper .left .ttl span {
  margin-left: 40%;
}

@media screen and (max-width: 767px) {
  .sun .top_wrapper .left .ttl span {
    margin-left: 50%;
  }
}

.sun .top_wrapper .left .sub_ttl {
  text-align: center;
  font-size: clamp(18px, 1.46412vw, 20px);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 20px;
  margin-right: 25%;
}

@media screen and (max-width: 767px) {
  .sun .top_wrapper .left .sub_ttl {
    font-size: 18px;
    margin-right: 0;
    margin-top: 10px;
  }
}

.sun .top_wrapper .right {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .sun .top_wrapper .right {
    width: 100%;
  }
}

.sun .bottom {
  margin: 60px 50px 0;
}

@media screen and (max-width: 767px) {
  .sun .bottom {
    margin: 40px 0 0;
  }
}

.sun .bottom .txt {
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.5;
}

.sun .strong {
  margin-top: 120px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sun .strong {
    margin-top: 60px;
  }
}

.sun .strong .ttl {
  font-size: 50px;
  font-weight: 500;
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .sun .strong .ttl {
    font-size: 38px;
  }
}

.sun .strong .sub_ttl {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .sun .strong .sub_ttl {
    font-size: 18px;
    margin-top: 10px;
  }
}

.sun .strong .txt {
  margin-top: 50px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .sun .strong .txt {
    margin-top: 30px;
    line-height: 2.5;
  }
}

.hihakai {
  padding: 300px 0 140px;
  margin-top: -200px;
}

@media screen and (max-width: 767px) {
  .hihakai {
    padding-bottom: 100px;
  }
}

.hihakai .top_wrapper {
  display: flex;
}

@media screen and (max-width: 767px) {
  .hihakai .top_wrapper {
    flex-direction: column;
  }
}

.hihakai .top_wrapper .right {
  position: relative;
  width: 60%;
  margin-left: -22%;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .hihakai .top_wrapper .right {
    width: 100%;
    margin-left: 0;
    margin-top: -100px;
  }
}

.hihakai .top_wrapper .right .ja_ttl-wrap {
  text-align: right;
}

.hihakai .top_wrapper .right .ja_ttl {
  display: inline-block;
  font-size: clamp(32px, 3.14788vw, 43px);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-left: 120px;
  line-height: 1;
  text-align: right;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hihakai .top_wrapper .right .ja_ttl {
    font-size: 28px;
    padding-left: 60px;
  }
}

.hihakai .top_wrapper .right .ja_ttl::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #fff;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .hihakai .top_wrapper .right .ja_ttl::before {
    width: 50px;
  }
}

.hihakai .top_wrapper .right .ttl {
  font-size: clamp(42px, 6.8814vw, 94px);
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.255;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .hihakai .top_wrapper .right .ttl {
    font-size: 42px;
  }
}

.hihakai .top_wrapper .right .ttl span {
  margin-left: 40%;
}

.hihakai .top_wrapper .right .sub_ttl {
  text-align: center;
  font-size: clamp(18px, 1.46412vw, 20px);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 20px;
  margin-left: 25%;
}

@media screen and (max-width: 767px) {
  .hihakai .top_wrapper .right .sub_ttl {
    margin-left: 0;
    margin-top: 10px;
    font-size: 18px;
  }
}

.hihakai .top_wrapper .left {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .hihakai .top_wrapper .left {
    width: 100%;
  }
}

.hihakai .bottom {
  margin: 60px 50px 0;
}

@media screen and (max-width: 767px) {
  .hihakai .bottom {
    margin: 40px 0 0;
  }
}

.hihakai .bottom .txt {
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.5;
  text-align: justify;
}

.hihakai .strong {
  margin-top: 120px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hihakai .strong {
    margin-top: 60px;
  }
}

.hihakai .strong .ttl {
  font-size: 50px;
  font-weight: 500;
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .hihakai .strong .ttl {
    font-size: 38px;
  }
}

.hihakai .strong .sub_ttl {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .hihakai .strong .sub_ttl {
    font-size: 18px;
    margin-top: 10px;
  }
}

.hihakai .strong .txt {
  margin-top: 50px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .hihakai .strong .txt {
    margin-top: 30px;
  }
}

.equipment {
  padding-bottom: 130px;
}

.equipment .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .equipment .wrapper {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .equipment .left .sec_ttl {
    display: block;
    text-align: center;
  }
}

.equipment .left .sec_ttl .en_ttl {
  font-size: clamp(42px, 5.12445vw, 70px);
}

@media screen and (max-width: 767px) {
  .equipment .left .sec_ttl .en_ttl {
    font-size: 42px;
  }
}

.equipment .left .sec_ttl .ttl {
  font-size: clamp(18px, 1.46412vw, 20px);
}

@media screen and (max-width: 767px) {
  .equipment .left .sec_ttl .ttl {
    font-size: 18px;
    text-align: center;
  }
}

.equipment .right {
  width: 55.83%;
}

@media screen and (max-width: 767px) {
  .equipment .right {
    width: 100%;
    margin-top: 60px;
  }
}

.equipment .right .equipment-box-item {
  padding-bottom: 30px;
  border-bottom: 1px dotted #fff;
  margin-bottom: 40px;
}

.equipment .right .equipment-box-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.equipment .right .equipment-box-content {
  cursor: pointer;
  padding: 0 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .equipment .right .equipment-box-content {
    padding: 0;
  }
}

.equipment .right .equipment-box-content::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  /* サイトの配色に合わせて変更可。currentColorでもOK */
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
  pointer-events: none;
  /* クリックは見出し全体で拾う */
}

@media screen and (max-width: 767px) {
  .equipment .right .equipment-box-content::after {
    top: 20%;
  }
}

.equipment .right .equipment-box-content .cat {
  display: inline-block;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  padding: 10px 40px;
  color: #114387;
  background-color: #fff;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

@media screen and (max-width: 767px) {
  .equipment .right .equipment-box-content .cat {
    font-size: 14px;
    padding: 7px 40px;
  }
}

.equipment .right .equipment-box-content .ttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .equipment .right .equipment-box-content .ttl {
    font-size: 18px;
    margin-left: 0;
  }
}

.equipment .right .equipment-acd-area {
  margin-top: 10px;
  padding: 0 clamp(20px, 2.9282vw, 40px);
}

@media screen and (max-width: 767px) {
  .equipment .right .equipment-acd-area {
    margin-top: 25px;
    padding: 0;
  }
}

.equipment .right .equipment-acd-area .ttl {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.equipment .right .equipment-acd-area picture {
  display: block;
  text-align: center;
  margin-top: 30px;
}

.equipment .right .equipment-acd-area picture img {
  width: 243px;
}

@media screen and (max-width: 767px) {
  .equipment .right .equipment-acd-area picture img {
    width: 200px;
  }
}

.equipment .right .equipment-acd-area .txt {
  margin-top: 30px;
  line-height: 2.285;
  letter-spacing: 0.06em;
  text-align: justify;
}

.equipment .right .equipment-acd-area .acd_btn {
  text-align: right;
}

.equipment .right .equipment-acd-area .acd_btn a {
  display: inline-block;
  color: #114387;
  background-color: #fff;
  padding: 15px 30px 15px 50px;
  border-radius: 999px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 15px;
  position: relative;
}

.equipment .right .equipment-acd-area .acd_btn a::before {
  position: absolute;
  content: "";
  background: url(../img/icon-btn.png) center center/cover no-repeat;
  width: 15px;
  height: 15px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.equipment .right .equipment-box-item.open .equipment-box-content::after {
  content: "−";
}

/* ===============================================
# 採用情報
=============================================== */
.ideal {
  padding: clamp(150px, 21.961vw, 300px) 0 clamp(100px, 14.64128vw, 200px);
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .ideal {
    padding: 150px 0 100px;
  }
}

.ideal .wrapper {
  display: flex;
}

@media screen and (max-width: 767px) {
  .ideal .wrapper {
    flex-direction: column-reverse;
  }
}

.ideal .wrapper .left {
  width: 75%;
  margin-right: -20%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .ideal .wrapper .left {
    width: 100%;
    margin-right: 0;
    margin-top: -100px;
  }
}

.ideal .wrapper .left .ideal_ttl {
  display: inline-block;
}

.ideal .wrapper .left .ideal_ttl .en_ttl {
  font-size: clamp(42px, 5.85651vw, 80px);
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .ideal .wrapper .left .ideal_ttl .en_ttl {
    font-size: 42px;
  }
}

.ideal .wrapper .left .ideal_ttl .en_ttl span {
  margin-left: clamp(150px, 18.3016vw, 250px);
}

@media screen and (max-width: 767px) {
  .ideal .wrapper .left .ideal_ttl .en_ttl span {
    margin-left: 75px;
  }
}

.ideal .wrapper .left .ideal_ttl .ja_ttl {
  font-size: clamp(22px, 2.19619vw, 30px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: right;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .ideal .wrapper .left .ideal_ttl .ja_ttl {
    font-size: 22px;
  }
}

.ideal .wrapper .left .read_txt {
  margin-top: clamp(40px, 4.39238vw, 60px);
  letter-spacing: 0.06em;
  line-height: 2.85;
}

@media screen and (max-width: 767px) {
  .ideal .wrapper .left .read_txt {
    margin-top: 40px;
    line-height: 2.5;
    text-align: justify;
  }
}

.ideal .wrapper .right {
  width: 51%;
}

@media screen and (max-width: 767px) {
  .ideal .wrapper .right {
    width: 100%;
  }
}

.timeline {
  padding-bottom: clamp(80px, 10.98vw, 150px);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .timeline {
    padding-bottom: 70px;
  }
}

.timeline::after {
  position: absolute;
  content: "";
  background-color: #114387;
  width: 100%;
  height: 1100px;
  height: clamp(1800px, 80.527vw, 1100px);
  left: 0;
  top: -40%;
  right: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

@media screen and (max-width: 767px) {
  .timeline::after {
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    height: 900px;
  }
}

.timeline .top .timeline_ttl {
  text-align: center;
}

.timeline .top .timeline_ttl .en_ttl {
  font-size: 13vw;
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.06em;
}

.timeline .top .timeline_ttl .ja_ttl {
  font-size: clamp(22px, 2.19619vw, 30px);
  font-weight: 500;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
  .timeline .top .timeline_ttl .ja_ttl {
    font-size: 20px;
  }
}

.timeline .timeline_slider {
  margin-top: 50px;
}

.timeline .timeline_slider ul li {
  width: clamp(300px, 31.47877vw, 430px);
  margin: 0 clamp(30px, 4.39238vw, 60px);
}

@media screen and (max-width: 767px) {
  .timeline .timeline_slider ul li {
    width: 250px;
    margin: 0 15px;
  }
}

.timeline .timeline_slider ul li picture {
  display: block;
  position: relative;
}

.timeline .timeline_slider ul li picture .time_wrap {
  position: absolute;
  right: 20px;
  bottom: -20px;
  background-color: #fff;
  color: #032987;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  gap: 30px;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

@media screen and (max-width: 767px) {
  .timeline .timeline_slider ul li picture .time_wrap {
    gap: 20px;
    padding: 5px 20px;
    bottom: -15px;
  }
}

.timeline .timeline_slider ul li picture .time_wrap .time {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 3px;
}

.timeline .timeline_slider ul li picture .time_wrap .work {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .timeline .timeline_slider ul li picture .time_wrap .work {
    font-size: inherit;
  }
}

.timeline .timeline_slider ul li .read_txt {
  margin-top: 40px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.85;
}

.guide {
  position: relative;
  z-index: 1;
}

.guide::after {
  position: absolute;
  content: "";
  background: url(../img/bg-guide_parts.webp) center center/cover no-repeat;
  width: clamp(321px, 47.07174vw, 643px);
  height: clamp(670px, 98.0966vw, 1340px);
  right: clamp(-300px, -8.78477vw, -120px);
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .guide::after {
    position: static;
  }
}

.guide .guide_inner {
  background: url(../img/bg-guide.webp) center center/cover no-repeat;
  padding: 116px 0 220px;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

@media screen and (max-width: 767px) {
  .guide .guide_inner {
    padding: 200px 0 150px;
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    margin-top: -95px;
  }
}

.guide .wrapper {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: clamp(30px, 4.39238vw, 60px);
}

@media screen and (max-width: 767px) {
  .guide .wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.guide .wrapper .en_ttl {
  font-size: clamp(60px, 9.29721vw, 127px);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
  /* 右から左へ縦組み */
  text-orientation: mixed;
  /* 英数字も縦に立たせる（mixedにすると横倒し） */
  line-height: 1;
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .guide .wrapper .en_ttl {
    font-size: 42px;
    writing-mode: unset;
    transform: unset;
  }
}

.guide .wrapper .content {
  margin-top: 100px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .guide .wrapper .content {
    margin-top: 0;
  }
}

.guide .wrapper .content .ja_ttl {
  font-size: clamp(24px, 2.1961vw, 30px);
  font-weight: 500;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
  .guide .wrapper .content .ja_ttl {
    font-size: 20px;
  }
}

.guide .wrapper .content .list {
  margin: 60px auto 0;
  max-width: 610px;
}

.guide .wrapper .content .list dl {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #fff;
  padding: 0 30px 24px 40px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .guide .wrapper .content .list dl {
    flex-direction: column;
    align-items: normal;
    padding: 0 15px 20px 15px;
    margin-bottom: 20px;
  }
}

.guide .wrapper .content .list dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.guide .wrapper .content .list dl dt {
  width: 170px;
}

@media screen and (max-width: 767px) {
  .guide .wrapper .content .list dl dt {
    width: 100%;
    font-weight: 700;
  }
}

.guide .wrapper .content .list dl dd {
  width: calc(100% - 170px);
}

@media screen and (max-width: 767px) {
  .guide .wrapper .content .list dl dd {
    width: 100%;
    margin-top: 10px;
    margin-left: 15px;
  }
}

.guide .wrapper .content .read_txt {
  margin-top: 60px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .guide .wrapper .content .read_txt {
    font-size: 16px;
  }
}

.guide .wrapper .content .guide_btn {
  margin-top: 25px;
  text-align: center;
}

.guide .wrapper .content .guide_btn a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  border-radius: 999px;
}
