@charset "UTF-8";
@media screen and (min-width: 960px) {
  .is-sp {
    display: none;
  }
}

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

body, html {
  overflow-x: hidden;
}

body {
  background: #fff;
  font-family: din-2014, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.18em;
}

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

.ten {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}

.inner {
  width: clamp(320px, 0.682rem + 82.42vw, 1200px);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  border: 1px solid #1f4cf0;
  border-radius: 40px;
  padding: 10px 40px;
  margin-top: 23px;
  transition: 0.5s;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  font-size: clamp(0.8125rem, 0.7272727273rem + 0.3636363636vw, 1rem);
}
.btn:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  vertical-align: middle;
  background: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
header .header-inner {
  display: flex;
  box-sizing: border-box;
  padding: 0 15px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  z-index: 100;
  position: relative;
  /* 各アイテムの後に表示される英語テキスト */
}
header .header-inner .header-logo {
  width: 174px;
}
header .header-inner .header-nav ul {
  display: flex;
  align-items: center;
  vertical-align: middle;
  list-style: none;
  padding: 0;
  margin: 0;
}
header .header-inner .header-nav ul .active a {
  border-bottom: 5px solid #1f4cf0;
}
header .header-inner .nav_item {
  font-size: clamp(0.75rem, 0.6647727273rem + 0.3636363636vw, 0.9375rem);
  width: 120px;
  text-align: center;
  position: relative;
  border-left: 0.5px dotted #000;
}
@media (max-width: 768px) {
  header .header-inner .nav_item {
    width: auto; /* ナビゲーションアイテムの幅を自動調整 */
    padding: 0 10px; /* ナビゲーション内のスペースを縮小 */
  }
}
header .header-inner .nav_item a {
  width: 100px;
  margin: 0 auto;
  display: block;
  padding: 0;
  padding-top: 15px; /* 上部のスペース確保 */
  height: 60px;
  line-height: 1; /* 行の高さを調整 */
  white-space: nowrap;
  transition: 0.3s;
}
header .header-inner .nav_item a:hover {
  border-bottom: 5px solid #1f4cf0;
  transition: 0.3s;
}
header .header-inner .nav_item a::after {
  content: ""; /* デフォルトの状態では空にしておく */
  display: block;
  color: #c0c8dd;
  font-size: 12px;
  margin-top: 5px; /* 上に余白を作る */
}
header .header-inner .nav_item_top a::after {
  content: "TOP";
}
header .header-inner .nav_item_news a::after {
  content: "News";
}
header .header-inner .nav_item_service a::after {
  content: "Service";
}
header .header-inner .nav_item_work a::after {
  content: "Work";
}
header .header-inner .nav_item_company a::after {
  content: "Company";
}
header .header-inner .nav_item_recruit a::after {
  content: "Recruit";
}
header .header-inner .nav_item_contact a {
  background-image: url(../img/header-contact.png); /* 背景画像を指定 */
  background-size: cover; /* 画像を要素にフィット */
  background-position: center; /* 画像の位置を中央に */
  background-repeat: no-repeat; /* 画像の繰り返しを無効化 */
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-inner .nav_item_contact p {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
}

.menu-btn {
  position: fixed;
  top: 10px;
  right: 15px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #333;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 50%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  background-color: #fff;
}

.menu-content ul {
  padding: 70px 10px 0;
  text-align: center;
}
.menu-content ul img {
  margin-bottom: 20px;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 18px;
  box-sizing: border-box;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  margin-bottom: 15px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 100;
  background-color: #fff;
  transition: all 0.5s; /*アニメーション設定*/
}
.menu-content .contact-area {
  padding: 10px 0;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0%; /*メニューを画面内へ*/
}

.contact {
  background: url("../img/contact-bk.png") no-repeat center center/cover; /* 背景画像を設定 */
  padding: 60px 20px; /* 上下左右に余白を追加 */
}

.contact-inner {
  max-width: 900px; /* コンテンツの最大幅を900pxに設定 */
  margin: 0 auto; /* 中央に配置 */
  text-align: center; /* テキストを中央に揃える */
  position: relative;
}

.contact-title-en {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-size: clamp(2.4375rem, 1.3863636364rem + 4.4848484848vw, 4.75rem);
  color: #1f4cf0;
  text-align: center;
  white-space: nowrap;
  mix-blend-mode: multiply;
  z-index: 1;
  position: relative;
}

.contact-title {
  text-align: center;
  font-size: clamp(2.125rem, 1.6704545455rem + 1.9393939394vw, 3.125rem);
  margin-top: -60px;
  color: #fff;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-title {
    margin-top: -20px;
  }
}

.contact-text {
  margin-top: 40px;
  font-size: clamp(0.875rem, 0.7613636364rem + 0.4848484848vw, 1.125rem); /* テキストのフォントサイズ */
  margin-bottom: 40px; /* テキストの下に余白を追加 */
  color: #fff;
}

.contact-area {
  display: flex; /* フレックスボックスを使用 */
  flex-direction: column; /* 要素を縦に並べる */
  align-items: center; /* 要素を中央揃えに */
  background-color: #fff; /* 背景を半透明に設定 */
  padding: 40px; /* 内部の余白 */
  border-radius: 20px; /* 角を丸くする */
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-area {
    padding: 40px 20px;
  }
}

.tel {
  display: flex; /* 電話番号を画像と横並びに */
  align-items: center; /* 画像とテキストを中央揃えに */
}

.tel img {
  width: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem); /* 電話アイコンの幅 */
  height: auto; /* 電話アイコンの高さ */
  margin-right: 20px; /* テキストとの間にスペースを追加 */
}

.tel a {
  font-size: clamp(1.5rem, 0.7613636364rem + 3.1515151515vw, 3.125rem); /* 電話番号のフォントサイズ */
  text-decoration: none; /* 下線を消す */
}

.tim {
  margin: 5px 0; /* 上下に余白を追加 */
  font-size: 16px; /* 営業時間テキストのフォントサイズ */
}

.contact-btn {
  display: flex; /* ボタンをフレックスで配置 */
  align-items: center; /* アイコンとテキストを中央揃えに */
  padding: 20px 80px; /* ボタンの内部余白 */
  background-image: url(../img/header-contact.png);
  background-size: cover;
  color: white; /* ボタンのテキスト色 */
  text-decoration: none; /* ボタンの下線を消す */
  border-radius: 40px; /* ボタンの角を丸くする */
  margin-top: 20px; /* ボタンの上に余白を追加 */
  font-size: clamp(0.875rem, 0.7613636364rem + 0.4848484848vw, 1.125rem);
}
@media screen and (max-width: 768px) {
  .contact-btn {
    padding: 15px 40px;
  }
}

.contact-btn img {
  width: 24px; /* メールアイコンの幅 */
  height: 24px; /* メールアイコンの高さ */
  margin-right: 10px; /* アイコンとテキストの間に余白を追加 */
}

.contact-btn:hover {
  background-color: #003f7f; /* ボタンにホバーした際の背景色 */
}

.footer {
  background-color: #f2f2f2; /* 背景色をグレーに */
  padding: 80px 0; /* 上下の余白 */
  border-top: 1px solid #ccc; /* 上部に境界線を追加 */
}

.footer-inner {
  max-width: 650px; /* コンテンツの最大幅を1200pxに制限 */
  margin: 0 auto; /* 中央揃え */
  text-align: center; /* コンテンツを中央に配置 */
}

.footer-content {
  display: flex; /* ロゴとナビゲーションメニューを横並びに */
  justify-content: space-between; /* ロゴとメニューを左右に配置 */
  align-items: center; /* 縦方向の中央揃え */
  flex-wrap: wrap; /* 小さな画面ではコンテンツを折り返す */
  margin-bottom: 40px; /* 下に余白を追加 */
}

.footer-logo img {
  max-width: 150px; /* ロゴの最大幅を150pxに制限 */
}

.footer-nav ul {
  padding: 0;
  margin: 0;
  display: flex; /* リンクを横並びに */
  flex-wrap: wrap; /* 小さな画面ではコンテンツを折り返す */
  max-width: 450px;
}

.footer-nav ul li {
  padding: 0 10px;
  line-height: 1;
  margin-top: 5px;
}

.r-border {
  border-right: 1px solid #000;
}

@media screen and (min-width: 960px) {
  .r-border-ispc {
    border-right: 1px solid #000;
  }
}

@media screen and (max-width: 768px) {
  .r-border-issp {
    border-right: 1px solid #000;
  }
}

.footer-nav ul li a {
  text-decoration: none; /* リンクの下線を非表示 */
  color: #333; /* リンクの色をダークグレーに */
  font-size: 14px; /* リンクのフォントサイズ */
  transition: color 0.3s ease; /* カラー変更のトランジションを追加 */
}

.footer-nav ul li a:hover {
  color: #1f4cf0; /* ホバー時のリンクの色 */
}

.footer-info {
  margin-bottom: 40px; /* 住所と連絡先に余白を追加 */
  font-size: 14px; /* フォントサイズを14pxに設定 */
  color: #333; /* テキストの色 */
}

.footer-info p {
  margin: 5px 0; /* 各行の間に余白を追加 */
}

.footer-copyright {
  font-size: 12px; /* コピーライトのフォントサイズを小さく */
}

/* スマホ対応（幅が768px以下のデバイス向け） */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column; /* 縦並びに変更 */
    text-align: center; /* 中央揃え */
  }
  .footer-nav ul {
    justify-content: center; /* リンクを中央揃え */
  }
  .footer-logo img {
    margin-bottom: 20px; /* ロゴの下に余白を追加 */
  }
}
.page-title-area {
  margin-top: 80px;
  background-image: url(../img/page-header.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  text-align: center;
  padding: clamp(2.5rem, 0.2272727273rem + 9.696969697vw, 7.5rem);
  padding-bottom: clamp(6.25rem, 4.2613636364rem + 8.4848484848vw, 10.625rem);
  position: relative;
}
.page-title-area .page-title {
  font-size: clamp(1.25rem, 0.5965909091rem + 2.7878787879vw, 2.6875rem);
}
.page-title-area .page-title-en {
  color: #6b6b6b;
  font-size: clamp(0.8125rem, 0.6136363636rem + 0.8484848485vw, 1.25rem);
}

.custom-shape-divider-bottom-1727023064 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1727023064 svg {
  position: relative;
  display: block;
  width: calc(300% + 1.3px);
  height: 147px;
}

.custom-shape-divider-bottom-1727023064 .shape-fill {
  fill: #ffffff;
}

/* パンくずリストのスタイル */
.breadcrumb {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  font-size: 12px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  margin-right: 0.5em;
}

/* 最後のアイテム（現在のページ）はリンクにしない */
.breadcrumb-item.active {
  pointer-events: none;
}

/* アイテム間に「>」を挿入 */
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  margin-right: 0.5em;
}/*# sourceMappingURL=style.css.map */