@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", serif;
  font-feature-settings: "palt";
  background: var(--color-white);
  color: var(--color-font-black);
}


:root {
  --font-hina: "Hina Mincho", serif;
  --font-cabinet: 'Cabinet Grotesk', sans-serif;
  --color-blue: hsla(204, 100%, 38%, 1);
  --color-white: hsla(0, 0%, 100%, 1);
  --color-font-black: hsla(225, 8%, 9%, 1);
  --color-black: hsla(227, 9%, 9%, 1);
  --color-gray: hsla(0, 0%, 87%, 1);
  --color-lite-gray: hsla(0, 0%, 93%, 1);
  --color-font-gray: hsla(0, 0%, 64%, 1);
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

ul {
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}
.service_content_bottom.display_none {
display: none;
}

.common_container {
  padding: 0 20px;
}

@media (min-width:768px) {
  .common_container {
    /* padding: 0 11.428571428571429vw; */
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1160px;
  }
}

.common_hContainer {
  padding: 100px 0;
}

@media (min-width:768px) {
  .common_hContainer {
    padding: 180px 0;
  }
}

/* section_title */
.section_title_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width:768px) {
  .section_title_container {
    gap: 12px;
  }
}

.section_title_jp {
  color: var(--color-blue);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  /* text-align: center; */
}

@media (min-width:768px) {
  .section_title_jp {
    font-size: clamp(16px, 1.4285714285714286vw, 20px);
  }
}

.section_title {
  font-family: var(--font-cabinet);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  /* text-align: center; */
}

@media (min-width:768px) {
  .section_title {
    font-size: clamp(40px, 5.142857142857142vw, 72px);
  }
}

.top_page_text {
  font-size: 14px;
  line-height: 1.75;
  /* text-align: center; */
}

@media (min-width:768px) {
  .top_page_text {
    font-size: clamp(14px, 1.1428571428571428vw, 16px);
  }
}

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

.sp-text-align-center {
  text-align: center;
}

@media (min-width:768px) {
  .sp-text-align-center {
    text-align: left;
  }
}

.align-items-center {
  align-items: center;
}

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

.no_link {
  pointer-events: none;
}

.color_blue {
  color: var(--color-blue);
}

.br_sp {
  display: block;
}

@media (min-width:768px) {
  .br_sp {
    display: none;
  }
}

.no_link {
  pointer-events: none;
  text-decoration: none;
  cursor: default;
}

.letter-spacing-2 {
  letter-spacing: -0.02em;
}

@media (min-width:768px) {
  .letter-spacing-2 {
    letter-spacing: 0;
  }
}

/* READ MORE */
.read_more_btn {
  position: relative;
  max-width: 190px;
  background: var(--color-white);
  /* 通常時は白 */
  display: flex;
  align-items: center;
  padding: 12px 32px;
  border-radius: 999px;
  overflow: hidden;
  transition: background 0.3s ease-out;
  /* ← 色だけ変化 */
}

/* ★ hover のときだけ背景が青に */
.read_more_btn:hover {
  background: transparent;
}

.read_more_btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: hsla(204, 100%, 38%, 1);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.read_more_btn:hover span {
  width: calc(190px * 2);
  height: calc(190px * 2);
}


.read_more_btn_inner {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.read_more_btn_text {
  color: var(--color-font-black);
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
}

@media (min-width:768px) {
  .read_more_btn_text {
    font-size: clamp(14px, 1.2857142857142856vw, 18px);
  }
}

.read_more_btn:hover .read_more_btn_text {
  color: var(--color-white);
}

.read_more_btn_img {
  display: flex;
  align-items: center;
  justify-self: center;
}

.read_more_btn_img svg path {
  transition: stroke .3s ease;
}

.read_more_btn:hover .read_more_btn_img svg path {
  stroke: var(--color-white);
}

/* READ MORE */
/* ============================CONTACT======================= */

.contact_section {
  background: var(--color-gray);
  padding: 40px 0;
}

@media (min-width:768px) {
  .contact_section {
    padding: 100px 0;
  }
}

.contact_main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tv_cm_contact_title_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width:768px) {
  .tv_cm_contact_title_container {
    align-items: center;
  }
}

.contact_list {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width:920px) {
  .contact_list {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    margin: 0;
    max-width: none;
  }
}

.tel_and_fax {
  display: flex;
  justify-content: center;
}

@media (min-width:920px) {
  .tel_and_fax {
    justify-content: stretch;
  }
}

.contact_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width:920px) {
  .contact_item {
    gap: 16px;
    border-right: 1px solid hsla(0, 0%, 82%, 1);
    padding: 0 clamp(20px, 3.571428571428571vw, 50px);
  }
}

/* TEL FAX */

.tel_and_fax {
  padding-bottom: 16px;
}

@media (min-width:920px) {
  .tel_and_fax {
    padding-bottom: 0;
  }
}

.tel_and_fax .contact_item {
  padding-left: 16px;
  gap: 0;
}

@media (min-width:920px) {
  .tel_and_fax .contact_item {
    padding-left: 20px;
    padding-right: 20px;
    gap: 16px;
  }

}

@media (min-width:1030px) {
  .tel_and_fax .contact_item {
    padding-left: clamp(20px, 3.571428571428571vw, 50px);
  }

}

.tel_and_fax .contact_item:first-child {
  padding-left: 0;
  padding-right: 16px;
  border-right: 1px solid hsla(0, 0%, 82%, 1);
}

@media (min-width:920px) {
  .tel_and_fax .contact_item:first-child {
    padding: 0 20px 0 0;
  }
}

@media (min-width:1030px) {
  .tel_and_fax .contact_item:first-child {
    padding: 0 clamp(20px, 3.571428571428571vw, 50px) 0 0;
  }
}

/* MAIL */
.contact_item.mail_contact_item {
  padding-top: 16px;
  border-top: 1px solid hsla(0, 0%, 82%, 1);
}

@media (min-width:920px) {
  .contact_item.mail_contact_item {
    padding: 0 0 0 20px;
    border-right: none;
    border-top: none;
  }
}

@media (min-width:1030px) {
  .contact_item.mail_contact_item {
    padding: 0 0 0 clamp(20px, 3.571428571428571vw, 50px);
  }
}

.contact_item_name {
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
}

@media (min-width:920px) {
  .contact_item_name {
    font-size: clamp(18px, 1.7142857142857144vw, 24px);
  }
}

.contact_tel_inner {
  display: flex;
  flex-direction: column;
}

.contact_num {
  color: var(--color-blue);
  font-family: var(--font-cabinet);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  vertical-align: middle;
}

@media (min-width:390px) {
  .contact_num {
    font-size: 24px;
  }
}

@media (min-width:920px) {
  .contact_num {
    font-size: clamp(20px, 2.857142857142857vw, 40px);
  }
}

/* 電話番号スマホだけ機能 */
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.contact_small_text {
  font-weight: 400;
  font-size: 12px;
  text-box-edge: cap alphabetic;
  line-height: 1.5;
  text-align: center;
}

.read_more_btn.to_contact {
  min-width: 262px;
  padding: 15px 19px;
}

@media (min-width:920px) {
  .read_more_btn.to_contact {
    min-width: 222px;
  }
}

@media (min-width:1130px) {
  .read_more_btn.to_contact {
    min-width: 262px;
  }
}

.read_more_btn_text.to_contact {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: inherit;
}

@media (min-width:920px) {
  .read_more_btn_text.to_contact {
    font-size: clamp(14px, 1.1428571428571428vw, 16px);
  }
}

.read_more_btn.to_contact .read_more_btn_inner {
  justify-content: center;
}

.read_more_btn.to_contact svg {
  width: 24px;
  height: 24px;
}

@media (min-width:920px) {
  .read_more_btn.to_contact svg {
    width: clamp(18px, 1.7142857142857144vw, 24px);
    height: clamp(18px, 1.7142857142857144vw, 24px);
  }
}

@media (min-width:920px) {
  .read_more_btn_text.to_contact {
    font-size: clamp(14px, 1.1428571428571428vw, 16px)
  }
}

/* =======================ヘッダー=========================== */

/* 基本のヘッダー設定 */
.js-header {
  position: fixed;
  /* 固定表示 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;

  transition: transform 0.3s ease, background-color 0.3s ease;
}

@media (min-width:920px) {
  .js-header {
    border-bottom: 1px solid var(--color-white);
  }
}

/* スクロールしたら背景色を変更 */
.js-header.scroll-bg {
  background-color: rgba(0, 0, 0, 0.85);
}

/* ヘッダーを隠す */
.js-header.hide {
  transform: translateY(-100%);
}

/* ヘッダーを表示 */
.js-header.show {
  transform: translateY(0);
  background: var(--color-white);
}

@media (min-width:920px) {
  .site_header {
    padding: 22px 20px;
  }
}

@media (min-width:980px) {
  .site_header {
    padding: 22px clamp(20px, 2.857142857142857vw, 40px);
  }
}

.header-logo {
  max-width: 90px;
  transition: opacity .3s ease-out;
}

@media (min-width:920px) {
  .header-logo {
    max-width: none;
    max-width: 100px;
  }
}

@media (min-width:1030px) {
  .header-logo {
    max-width: none;
    width: clamp(90px, 11.071428571428571vw, 155px);
  }
}

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

.header-logo.-before {
  display: inline-block;
}

.header-logo.-after {
  display: none;
}

/* スクロール時：背景色変更 & ロゴ切り替え */
.js-header.scroll-bg {
  background-color: rgba(255, 255, 255, 0.95);
}

.js-header.scroll-bg .header-logo.-before {
  display: none;
}

.js-header.scroll-bg .header-logo.-after {
  display: inline-block;
}

/* pc用ナビ */
.global_nav_pc {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width:768px) {
  .global_nav_pc {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2857142857142856vw, 32px);
  }
}

.global_nav_list.pc_global_nav_list,
.contact_btn.pc_contact_btn,
.instagram.pc_instagram {
  display: none;
}

@media (min-width:920px) {

  .global_nav_list.pc_global_nav_list,
  .contact_btn.pc_contact_btn,
  .instagram.pc_instagram {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
  }
}

.instagram.pc_instagram {
  transition: opacity .3s ease-out;
}

.instagram.pc_instagram:hover {
  opacity: 0.6;
}

.global_nav_container {
  display: flex;
  flex-direction: column;
  padding-bottom: 96px;
}

@media (min-width:920px) {
  .global_nav_container {
    flex-direction: row;
    gap: 32px;
    align-items: center;
    padding-bottom: 0;
  }
}

.global_nav_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0;
}

@media (min-width:920px) {
  .global_nav_list {
    flex-direction: row;
    gap: 28px;
  }
}

.global_nav_list_link {
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: clamp(14px, 1.2857142857142856vw, 18px);
  line-height: 1.1;
  perspective: 300px;
  display: inline-block;
}

@media (min-width:920px) {
  .global_nav_list_link {
    font-size: clamp(14px, 1.2857142857142856vw, 18px);
  }
}

/* リンクhover */
.global_nav_list_link .global_nav_list_item_inner:first-child {
  /* 背面の要素（2個目のspanタグ）を非表示にする */
  backface-visibility: hidden;
  /* アニメーション効果を0.5秒間で適用 */
  transition: transform .5s;
  display: block;
  height: 20px;
  /* 10px下に移動し縦中央に表示する */
  transform: translateY(10px) rotateX(0deg);
}



.global_nav_list_link .global_nav_list_item_inner:last-child {
  /* 背面の要素（2個目のspanタグ）を非表示にする */
  backface-visibility: hidden;
  /* アニメーション効果を0.5秒間で適用 */
  transition: transform .5s;
  display: block;
  /* 90度回転させ非表示にする */
  transform: rotateX(-90deg);
}

.global_nav_list_link:hover .global_nav_list_item_inner:first-child {
  /* X軸周りに90度回転して非表示にする */
  transform: rotateX(90deg);
}

.global_nav_list_link:hover .global_nav_list_item_inner:last-child {
  /* 10px上に移動し表示する */
  transform: translateY(-10px) rotateX(0deg);
}

/* リンクhover */
.global_nav_right {
  display: flex;
  flex-direction: column;
}

@media (min-width:920px) {
  .global_nav_right {
    flex-direction: row;
    align-items: center;
  }
}

.contact_btn {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 12px 54px; */
  padding: 12px clamp(20px, 3.8571428571428568vw, 54px);
  max-width: 185px;
  margin-right: 16px;
  background-color: transparent;
  cursor: pointer;
  transition: border-color .3s ease, background-color .3s ease;
}

@media (min-width:920px) {
  .contact_btn {
    padding: 8px 16px;
    margin-right: 12px;
  }
}

@media (min-width:980px) {
  .contact_btn {
    margin-right: 16px;
  }
}

@media (min-width:1020px) {
  .contact_btn {
    padding: 12px clamp(20px, 3.8571428571428568vw, 54px);
  }
}

/* hover で border 色変更 */
.contact_btn:hover {
  border-color: var(--color-blue);
}

/* ★ 波紋用 span（さっきのボタンと全く同じ仕様） */
.contact_btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color-blue);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  z-index: 0;
  opacity: 0.8;
}

/* ★ hover で波紋が広がる（ボタン幅 × 2 くらいがちょうどいい） */
.contact_btn:hover span {
  width: calc(185px * 2);
  height: calc(185px * 2);
}

/* テキストは前に */
.contact_btn .header_text {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  transition: color .3s ease-out;
}

/* ホバーした時に文字を白くする */
.contact_btn:hover .header_text {
  color: var(--color-white) !important;
  transition: color 0.3s ease-out;
}

/* スクロール後も、ホバー時は白を維持 */
.js-header.scroll-bg .contact_btn:hover .header_text {
  color: var(--color-white) !important;
}

/* スクロール後 (.scroll-bg) の時も、ホバー時は白を維持 */
.js-header.scroll-bg .contact_btn:hover {
  border-color: var(--color-blue) !important;
}

/* 言語ボタン */
.language_btn {
  border-radius: 999px;
  background-color: transparent;
  cursor: pointer;
  transition: border-color .3s ease, background-color .3s ease;
  position: relative;
  z-index: 999 !important;
  overflow: hidden;
  position: relative;

  display: none;
}

@media (min-width:920px) {
  .language_btn {
    margin-right: 12px;
    display: block;
  }
}

@media (min-width:1020px) {
  .language_btn {
    margin-right: clamp(12px, 2.2857142857142856vw, 32px);

  }
}

.language_btn.sp_language_btn {
  display: block;
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 999;
}

@media (min-width:920px) {
  .language_btn.sp_language_btn {
    display: none;
  }
}

/* hover で border 色変更 */
.language_btn:hover {
  border-color: var(--color-blue) !important;
}

/* ★ 波紋用 span（さっきのボタンと全く同じ仕様） */
/* .language_btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color-blue);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  z-index: 0;
  opacity: 0.8;
} */
.language_btn span:not(.gt-lang-code) {
  /* GTranslateのコードと混同しないよう念のため除外 */
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color-blue) !important;
  /* ここに波紋の色 */
  transform: translate(-50%, -50%);
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out, opacity 0.3s;
  z-index: 0;
  /* テキスト(z-index: 1以上)より下に配置 */
  opacity: 0;
  /* 通常時は完全に見えないようにする */
  pointer-events: none;
  /* マウス反応を邪魔しない */
}

/* ★ hover で波紋が広がる（ボタン幅 × 2 くらいがちょうどいい） */
/* .language_btn:hover span {
  width: calc(100px * 2);
  height: calc(100px * 2);
} */
.language_btn:hover span:not(.gt-lang-code) {
  width: 200px;
  /* ボタンを覆い尽くす十分なサイズ */
  height: 200px;
  opacity: 1;
  /* ホバーした瞬間に見えるようにする */
}

.language_btn svg {
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  z-index: 2;
  transition: color .3s ease-out;
  width: 20px;
  height: 20px;
}

@media (min-width:920px) {
  .language_btn svg {
    left: 5px;
  }
}

@media (min-width:1020px) {
  .language_btn svg {
    left: 14px;
    width: 24px;
    height: 24px;
  }
}

.header_text {
  color: var(--color-white);
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
}

@media (min-width:768px) {
  .header_text {
    font-size: clamp(14px, 1.2857142857142856vw, 18px);
  }
}

/* 言語切り替え */

.gt_selector {
  margin: 0;
  position: relative;
  z-index: 1;
  background: transparent !important;
  border: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none !important;
  color: var(--color-white) !important;
  font-family: var(--font-cabinet);
  font-weight: 400;
  line-height: 1.35;
  font-size: 14px;
  padding: 7px 8px 7px 29px;
  transition: color .3s ease-out;
  max-width: 55px;
}

@media (min-width:920px) {
  .gt_selector {
    font-size: 16px;
    padding: 6px 6px 6px 24px;
    max-width: 60px;
  }
}

@media (min-width:1020px) {
  .gt_selector {
    font-size: 18px;
    padding: 10px 14px 10px 40px;
    max-width: 75px;
  }
}




/* =====================ハンバーガーメニュー========================================= */

.global_nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: hsla(225, 8%, 9%, 0.9);
  z-index: 200;
  transition: transform .3s ease-out;
  transform: scale(0);
  transform-origin: right bottom;
  overflow-y: auto;
}

.global_nav.is-active {
  transform: scale(1);
}

/* ハンバーガーアニメーション例 */


.global_nav_toggle.active .global_nav_toggle_bar-top {
  transform: rotate(45deg) translateY(8px);
}

.global_nav_toggle.active .global_nav_toggle_bar-btm {
  transform: rotate(-45deg) translateY(-8px);
}

@media (min-width:920px) {
  .global_nav_overlay {
    display: none;
  }
}

/* SPハンバーガーボタン */
.global_nav_toggle {
  width: 60px;
  height: 60px;
  border: none;
  z-index: 999;
  touch-action: manipulation;

  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-blue);
  padding: 24px;
  border: 1px solid var(--color-white);
  border-radius: 2px;
}

@media (min-width:920px) {
  .global_nav_toggle {
    display: none;
  }
}

.global_nav_toggle_bar {
  position: absolute;
  background-color: var(--color-white);
  width: 32px;
  height: 1px;
  transition: background-color 0.3s ease-out;
  left: 14px;
  transition: transform .3s ease-out, top .3s ease-out;
}

/* スクロール後（黒線） */

.global_nav_toggle_bar.global_nav_toggle_bar-top {
  top: 26px;
}

.global_nav_toggle_bar.global_nav_toggle_bar-btm {
  bottom: 26px;
}


/* ハンバーガークリック */
.global_nav_toggle.is-active .global_nav_toggle_bar.global_nav_toggle_bar-top {
  transform: rotate(45deg);
  top: 30px;
}

.global_nav_toggle.is-active .global_nav_toggle_bar.global_nav_toggle_bar-btm {
  transform: rotate(-45deg);
  top: 30px;
}

/* SPハンバーガーメニュー中身 */
.global_nav_overlay {
  padding: 60px 20px 40px;
  /* height: 100svh; */
  height: 100%;
}

@media (min-width:390px) {
  .global_nav_overlay {
    padding: 92px 20px 40px;
  }
}

.sp-header-logo {
  position: fixed;
  left: 16px;
  top: 12px;
}

.global_nav_container .global_nav_list.sp_global_nav_list:first-child {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-white);
}

@media (min-width:390px) {
  .global_nav_container .global_nav_list.sp_global_nav_list:first-child {
    padding-bottom: 32px;
  }
}

.global_nav_container .global_nav_list.sp_global_nav_list:last-child {
  padding-top: 16px;
  padding-bottom: 60px;
}

@media (min-width:390px) {
  .global_nav_container .global_nav_list.sp_global_nav_list:last-child {
    padding-top: 32px;
    padding-bottom: 80px;
  }
}

.global_nav_list.sp_global_nav_list {
  align-items: flex-start;
  gap: 16px;
}

@media (min-width:390px) {
  .global_nav_list.sp_global_nav_list {
    gap: 24px;
  }
}


.sp_global_nav_list_link {
  display: flex;
  flex-direction: column;
}

.sp_global_nav_list_linkEn {
  color: var(--color-white);
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
}

@media (min-width:390px) {
  .sp_global_nav_list_linkEn {
    font-size: 28px;
  }
}

.sp_global_nav_list_linkJp {
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}

.sp_global_nav_list_link p {
  pointer-events: none !important;
  /* 中の文字はクリックを貫通させる */
}

.global_nav_right.sp_global_nav_right {
  gap: 16px;
}

.sp_contact_btn {
  border: 1px solid var(--color-white);
  padding: 12px 20px;
  max-width: 200px;
  border-radius: 999px;
}

.sp_header_text {
  color: var(--color-white);
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
}

.sp_recruit_link_inner {
  position: relative;
}

.sp_recruit_link_inner svg {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  max-width: 20px;
}

.sp_recruit_link_inner svg path {
  stroke: var(--color-white);
}

.sp_instagram {
  max-width: 48px;
  width: 100%;
}

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

.global_nav_tel {
  display: block;
}

.global_tel_contact_container {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 32px;
}

.global_tel_en {
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.1;
  display: block;
  margin-bottom: 5px;
}

.global_tel_num {
  font-family: var(--font-cabinet);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}

.global_tel_accept_time {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  padding-left: 26px;
}

.read_more_btn.global_nav_to_contact_btn{
  max-width: none;
  margin-top: 24px;
  padding: 16px  26px 16px 40px;
}

.global_nav_to_contact_btn .read_more_btn_text{
  font-family: "Noto Sans JP", serif;
font-weight: 500;
font-size: 16px;
text-align: center;
}
.read_more_btn.global_nav_to_contact_btn:hover span {
width: 1000px;
height: 1000px;
}

/* ==============================フッター============================== */

.footer-container {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  position: relative;
  z-index: 10;
}

@media (min-width:1080px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer-gray {
  background: var(--color-lite-gray);
  padding: 40px 20px 16px;
}

@media (min-width:768px) {
  .footer-gray {
    padding: 60px 40px 36px;
  }
}

@media (min-width:1080px) {
  .footer-gray {
    width: 40.8%;
    padding: 100px clamp(20px, 4.285714285714286vw, 60px) 24px clamp(40px, 11.428571428571429vw, 160px);
  }
}

.footer-gray-top {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray);
}

@media (min-width:1080px) {
  .footer-gray-top {
    padding-bottom: 32px;
  }
}

.footer-gray-topInner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  max-width: 151px;
  transition: opacity .3s ease-out;
}

@media (min-width:768px) {
  .footer-logo:hover {
    opacity: 0.6;
  }
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-address-inner {
  color: var(--color-font-black);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}

.footer-address {
  display: block;
}

.footer-gray-bottom {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width:1080px) {
  .footer-gray-bottom {
    margin-top: 32px;
  }
}

.to_recruit_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruit_text {
  font-family: var(--font-cabinet);
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
}

.read_more_btn.to_recruit_btn {
  max-width: none;
  padding: 16px 24px;
}

@media (min-width:1080px) {
  .read_more_btn.to_recruit_btn {
    padding: 27px 24px;
    max-width: 350px;
  }
}

.read_more_btn.to_recruit_btn:hover span {
  width: 1200px;
  height: 1200px;
}
@media (min-width:1080px) {
  .read_more_btn.to_recruit_btn:hover span {
  width: calc(351px * 2);
  height: calc(78px * 2);
}
}

.copyright {
  color: var(--color-font-black);
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.75;
  margin-top: 32px;
}

@media (min-width:990px) {
  .copyright {
    margin-top: 78px;
  }
}

.read_more_btn .read_more_btn_inner {
  justify-content: space-between;
  width: 100%;
}

.footer-black {
  background: var(--color-font-black);
  width: 100%;
  padding: 40px 20px;
}

@media (min-width:768px) {
  .footer-black {
    padding: 80px 40px 80px 40px;
  }
}

@media (min-width:1150px) {
  .footer-black {
    padding: 80px 40px 80px clamp(40px, 7.142857142857142vw, 100px);
  }
}

@media (min-width:1080px) {
  .footer-black {
    width: 59.2%;
  }
}

.footer-black-wrapper {
  max-width: 350px;
  margin: 0 auto;
}

@media (min-width:768px) {
  .footer-black-wrapper {
    max-width: 569px;
  }
}

@media (min-width:1080px) {
  .footer-black-wrapper {
    max-width: 569px;
  }
}

.footer-link-list-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

@media (min-width:768px) {
  .footer-link-list-container {
    gap: 32px;
  }
}

@media (min-width:1080px) {
  .footer-link-list-container {
    justify-content: left;
    gap: clamp(16px, 2.857142857142857vw, 40px);
  }
}

.footer-link-list-wrapper {
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
  /* gap: 48px; */
  gap: 28px;
  width: calc((100% - 12px) / 2);
}

@media (min-width:768px) {
  .footer-link-list-wrapper {
    width: auto;
  }
}

@media (min-width:1080px) {
  .footer-link-list-wrapper {
    width: calc((100% - clamp(20px, 5.714285714285714vw, 80px)) / 3);
  }
}

.footer-link-list-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* @media (min-width:1020px) {
  .footer-link-list-inner {
    gap: 16px;
  }
} */

.footer-link-list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer-link {
  color: hsla(0, 0%, 82%, 1);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.1;
  position: relative;
  text-decoration: none;

  display: inline;
  background-image: linear-gradient(hsla(0, 0%, 82%, 1), hsla(0, 0%, 82%, 1));
  background-size: 0 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 改行した各行に背景を適用させる */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

  /* 文字との距離 */
  padding-bottom: 1px;

  transition: background-size 0.3s ease-out;
}

@media (min-width:1080px) {
  .footer-link {
    font-size: 14px;
  }
}

/* ホバー時 */
.footer-link:hover {
  background-size: 100% 1px;

}

.footer-link-bold {
  color: var(--color-white);
}

.footer-link-main {
  font-family: var(--font-cabinet);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;

  display: inline !important;
  position: relative;
  text-decoration: none;

  /* 背景で線を作る */
  background-image: linear-gradient(var(--color-gray), var(--color-gray));
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;

  /* 改行した各行に装飾を適用 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

  /* 文字と線の距離 */
  padding-bottom: 2px;

  transition: background-size 0.3s ease-out;
}

/* ホバー時 */
.footer-link-main:hover {
  background-size: 100% 1px;
  background-position: bottom left;
}

@media (min-width:1080px) {
  .footer-link-main {
    font-size: 18px;
  }
}

.footer-link-main.privacy-footer-link-main {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.75;
  text-decoration: underline;
  text-decoration-style: solid;
  position: static;
  transition: opacity 0.3s ease-out;
}

.footer-link-main.privacy-footer-link-main:hover {
  opacity: 0.6;
}

.footer-link-bold.instagram-footer-link {
  position: relative;
}

.footer-link-bold.instagram-footer-link svg {
  position: absolute;
  top: 50%;
  right: 74px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

@media (min-width:1080px) {
  .footer-link-bold.instagram-footer-link svg {
    right: 60px;
  }
}

.footer-link-bold.instagram-footer-link svg path {
  stroke: var(--color-white);
}

.pc-footer-link-list-wrapper {
  display: none;
}

@media (min-width:768px) {
  .pc-footer-link-list-wrapper {
    display: flex;
  }
}

.sp_footer-link-list-inner {
  display: block;
}

@media (min-width:768px) {
  .sp_footer-link-list-inner {
    display: none;
  }
}

.pc_footer-link-list-inner {
  display: none;
}

@media (min-width:768px) {
  .pc_footer-link-list-inner {
    display: flex;
  }
}



/* ===============================SP用言語切り替え =================================*/
/* 【通常時】一番上の透明な状態 */
.js-header {
  background-color: transparent !important;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* 【スクロール時】白背景の状態 */
.js-header.scroll-bg {
  background-color: var(--color-white) !important;
}

/* =================================================
   言語ボタンのスタイル切り替え
==================================================== */

/* 【通常時】てっぺん（背景が暗い想定：白枠・白文字） */
.language_btn.sp_language_btn {
  border: 1px solid var(--color-white);
  /* もしトップで枠線が不要ならここを transparent に */
  transition: all 0.3s ease;
}

.language_btn.sp_language_btn .gt_selector {
  color: var(--color-white) !important;
}

.language_btn.sp_language_btn svg path {
  fill: var(--color-white);
}

/* 【スクロール時】白背景用（黒枠・黒文字） */
.language_btn.sp_language_btn.scroll-bg {
  border: 1px solid var(--color-font-black) !important;
}

.language_btn.sp_language_btn.scroll-bg .gt_selector {
  color: var(--color-font-black) !important;
}

.language_btn.sp_language_btn.scroll-bg svg path {
  fill: var(--color-font-black);
}

/* --- 表示・非表示の制御（これはそのままでOK） --- */
.language_btn.sp_language_btn.hide {
  opacity: 0 !important;
  visibility: hidden !important;
}

.language_btn.sp_language_btn.show {
  opacity: 1 !important;
  visibility: visible !important;
}

/* メニューが開いているときは、hideが付いていても無視して表示 */
.language_btn.sp_language_btn.active-nav {
  opacity: 1 !important;
  visibility: visible !important;
  border: 1px solid var(--color-white) !important;
}

.language_btn.active-nav.sp_language_btn.scroll-bg .gt_selector {
  color: var(--color-white) !important;
}

.language_btn.active-nav.sp_language_btn.scroll-bg svg path {
  fill: var(--color-white);
}

/* ==================================PC時header色変更 ==========================*/
/* =================================================
   【共通設定】アニメーションの基盤
==================================================== */
.contact_btn,
.language_btn,
.global_nav_list_link,
.global_nav_list_item_inner,
.global_nav_list_item_inner span,
.header_text,
.gt_selector,
.language_btn svg path,
.instagram svg path {
  transition: all 0.3s ease-out;
}

/* =================================================
   【通常時（てっぺん）】背景なし・文字と枠は「白」
   ※ :not(.scroll-bg) でスクロール中以外を固定
==================================================== */
header.js-header:not(.scroll-bg) .contact_btn,
header.js-header:not(.scroll-bg) .language_btn {
  border: 1px solid #ffffff !important;
  background-color: transparent !important;
}

header.js-header:not(.scroll-bg) .global_nav_list_link,
header.js-header:not(.scroll-bg) .global_nav_list_item_inner,
header.js-header:not(.scroll-bg) .global_nav_list_item_inner span,
header.js-header:not(.scroll-bg) .header_text,
header.js-header:not(.scroll-bg) .gt_selector {
  color: #ffffff !important;
}

header.js-header:not(.scroll-bg) .language_btn svg path,
header.js-header:not(.scroll-bg) .instagram svg path {
  fill: #ffffff !important;
}

/* =================================================
   【スクロール後（scroll-bg）】背景白・文字と枠は「黒」
==================================================== */
header.js-header.scroll-bg .contact_btn,
header.js-header.scroll-bg .language_btn {
  border: 1px solid var(--color-font-black) !important;
}

header.js-header.scroll-bg .global_nav_list_link,
header.js-header.scroll-bg .global_nav_list_item_inner,
header.js-header.scroll-bg .global_nav_list_item_inner span,
header.js-header.scroll-bg .header_text,
header.js-header.scroll-bg .gt_selector {
  color: var(--color-font-black) !important;
}

header.js-header.scroll-bg .language_btn svg path,
header.js-header.scroll-bg .instagram svg path {
  fill: var(--color-font-black) !important;
}

/* =================================================
   【ホバー時（共通）】波紋に合わせた文字色変更
==================================================== */
/* どの状態でもホバーしたら文字とアイコンは「白」 */
.contact_btn:hover .header_text,
.language_btn:hover .gt_selector,
.language_btn:hover svg path {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* ホバー時の枠線色 */
.contact_btn:hover,
.language_btn:hover {
  border-color: var(--color-blue) !important;
}

/* ナビリンクのホバー色 */
header.js-header.scroll-bg .global_nav_list_item_inner:hover span {
  color: var(--color-blue) !important;
}


/* ホバーした瞬間、文字とアイコンを「白」に強制上書き */
header.js-header.scroll-bg .language_btn:hover .gt_selector,
header.js-header.scroll-bg .language_btn:hover svg path {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* =======================================ABOUT US============================================= */
/* ==========================下層ページ共通=============================== */
.subpage_top {
  background: var(--color-font-black);
  padding: 90px 0 50px;
}

@media (min-width:768px) {
  .subpage_top {
    padding: 180px 0 90px;
  }
}

/* swiper */
.subpage_top_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.subpage_top_swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.subpage_top_swiper .swiper-slide picture,
.subpage_top_swiper .swiper-slide img {
  display: block;
  width: auto;
  /* height: 90px; */
  flex-shrink: 0;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {

  .subpage_top_swiper .swiper-slide picture,
  .subpage_top_swiper .swiper-slide img {
    /* height: 126px; */
    width: auto;
  }
}

/* swiper */
.subpage_topBottom_container {
  margin: 20px 20px 0;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-white);
}

@media (min-width:768px) {
  .subpage_topBottom_container {
    margin: 24px 40px 0;
    padding-bottom: 80px;
  }
}

.subpage_topBottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width:768px) {
  .subpage_topBottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.subPage_main_title {
  color: var(--color-white);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

@media (min-width:768px) {
  .subPage_main_title {
    font-size: 28px;
  }
}


/* スライドの動き等速 */
.worksTop-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/* パンくずリスト */

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  /* 縦方向センタリング */
  justify-content: center;
  /* 横方向センタリング */
}

.breadcrumb-link {
  color: var(--color-white);
  font-family: var(--font-cabinet);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.35;
}

@media (min-width:768px) {
  .breadcrumb-link {
    font-size: 14px;
  }
}

.breadcrumb-link.breadcrumb-link-top {
  font-weight: 400;
}

.breadcrumb-border {
  width: 60px;
  height: 1px;
  background: var(--color-white);
}

/* パンくずリスト */

/* セクションタイトル */
.subpage_section_title_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subpage_section_title_jp {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.subpage_section_title {
  font-family: var(--font-cabinet);
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
  padding-left: 14px;
}

@media (min-width:768px) {
  .subpage_section_title {
    font-size: clamp(44px, 4.285714285714286vw, 60px);
    padding-left: 14px;
  }
}

.subpage_section_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.5em * 1);
  transform: translateY(-50%);
  background-color: var(--color-blue);
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.subpage-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}

@media (min-width:768px) {
  .subpage-text {
    font-size: clamp(14px, 1.1428571428571428vw, 16px);
  }
}

.subpage_middle_title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

@media (min-width:768px) {
  .subpage_middle_title {
    font-size: clamp(20px, 2vw, 28px);
  }
}

.subpage_small_title {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 1.75;
}

@media (min-width:768px) {
  .subpage_small_title {
    font-size: clamp(16px, 1.4285714285714286vw, 20px);
  }
}

/* ==========================下層ページ共通=============================== */
/* ==========================社長挨拶=============================== */
.topMessage_section {
  background: var(--color-font-black);
  padding: 50px 0 120px;
}

@media (min-width:768px) {
  .topMessage_section {
    padding: 90px 0 min(18vw, 252px);
  }
}

.topMessage_content_container {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width:768px) {
  .topMessage_content_container {
    margin-top: clamp(40px, 4.285714285714286vw, 60px);
    gap: clamp(40px, 5.714285714285714vw, 80px);
  }
}


.topMessage_content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width:768px) {
  .topMessage_content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 4.285714285714286vw, 60px);
    max-width: none;
    margin: 0;
  }
}

@media (min-width:768px) {
  .topMessage_content.topMessage_second_content {
    flex-direction: row-reverse;
  }
}

.topMessage_first_message {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
}

.top_message_mainText {
  color: var(--color-white);
  font-family: var(--font-hina);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

@media (min-width:768px) {
  .top_message_mainText {
    font-size: clamp(20px, 2.2857142857142856vw, 32px);
  }
}

.top_message_text_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.subpage_text_white {
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

@media (min-width:768px) {
  .subpage_text_white {
    font-size: clamp(14px, 1.2857142857142856vw, 18px);
  }
}

.subpage_text_white.third_subpage_text_white {
  font-size: 14px;
}
@media (min-width:768px) {
  .subpage_text_white.third_subpage_text_white {
  font-size: clamp(14px, 1.1428571428571428vw, 16px);
}
}
.letter_1_space {
  letter-spacing: -0.01em;
}

.letter_4_space {
  letter-spacing: -0.04em;
}

.topMessage_content_left {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width:768px) {
  .topMessage_content_left {
    max-width: none;
    margin: 0;
  }
}

.topMessage_img {
  flex-shrink: 0;
}

.topMessage_img_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.topMessage_img_inner {
  width: 100%;
  height: 120%;
}

.topMessage_img_inner img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  scale: 1.2;
  transform-origin: top;
}

@media (min-width:768px) {
  .topMessage_img.topMessage_img01 {
    width: min(28.214285714285715vw, 395px);
  }
}

.topMessage_img_container.topMessage_img_container01 {
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
}

.topMessage_img.topMessage_img02 {
  position: absolute;
  bottom: 0;
  left: 17%;
  max-width: 240px;
}

@media (min-width:768px) {
  .topMessage_img.topMessage_img02 {
    position: absolute;
    bottom: 0;
    left: 17%;
    width: min(17.142857142857142vw, 240px);
  }
}

.topMessage_img.topMessage_img03 {
  aspect-ratio: 1 / 1;
}

@media (min-width:768px) {
  .topMessage_img.topMessage_img03 {
    width: min(28.214285714285715vw, 395px);
  }
}

.topMessage_img.topMessage_img04 {
  aspect-ratio: 350 / 494;
}

@media (min-width:768px) {
  .topMessage_img.topMessage_img04 {
    width: min(25vw, 350px);
  }
}

.topMessage_img.topMessage_img05 {
  position: absolute;
  bottom: -14%;
  right: 0;
  max-width: 150px;
}

@media (min-width:768px) {
  .topMessage_img.topMessage_img05 {
    bottom: -13%;
    right: -13%;
    width: min(14.071428571428571vw, 197px);
    max-width: none;
  }
}

.topMessage_img_container.topMessage_img_container05 {
  /* 平行四辺形に切り抜く */
  clip-path: polygon(0 30%, 100% 0%, 100% 70%, 0% 100%);
}

/* ==========================企業理念=============================== */
.philosophy_section {
  background: var(--color-gray);
}

.philosophy_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width:768px) {
  .philosophy_main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
  }
}

.philosophy_img {
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width:768px) {
  .philosophy_img {
    max-width: 327px;
    margin: 0;
  }
}

.philosophy_text_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--color-white);
  padding: 24px;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width:768px) {
  .philosophy_text_container {
    padding: clamp(24px, 2.857142857142857vw, 40px);
    max-width: none;
    margin: 0;
  }
}

.philosophy_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  text-align: justify;
}

@media (min-width:768px) {
  .philosophy_title {
    font-size: clamp(20px, 2.857142857142857vw, 40px);
  }
}

.philosophy_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  letter-spacing: -0.02em;
  text-align: justify;
}

@media (min-width:768px) {
  .philosophy_text {
    font-size: clamp(14px, 1.2857142857142856vw, 18px);
  }
}

.top_message_right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width:768px) {
  .top_message_right {
    gap: 24px;
  }
}

.sign_img {
  max-width: 150px;
  margin: 0 0 0 auto;
}

@media (min-width:768px) {
  .sign_img {
    max-width: 192px;
  }
}

/* ==========================企業行動規範=============================== */
.codeOfConduct_section {
  background: var(--color-font-black);
}

@media (min-width: 990px) {
  .codeOfConduct_section {
    position: relative;
    height: 300vh;
  }
}

.codeOfConduct_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width:990px) {
  .codeOfConduct_content {
    width: 100% !important;
    max-width: 1080px;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: min(6vw, 84px);
    padding-top: 80px;
    box-sizing: border-box;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .pin-spacer {
    width: 100% !important;
    padding: 0 !important;
  }
}

/* ベン図 */
@media (min-width:990px) {
  .venn-container {
    width: min(601px, 43vw);
    min-width: 380px;
    flex-shrink: 0;
    margin: 0 auto;
  }

  .venn-item.active {
    background: radial-gradient(circle at center, hsla(0, 0%, 85%, 0.4), hsla(0, 0%, 45%, 0.4));
    border-color: white;
    transition: background 0.3s ease-out, transform 0.3s ease-out;
  }

}

.venn {
  position: relative;
  width: 100%;
  aspect-ratio: 350 / 319;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

@media (min-width:990px) {
  .venn {
    aspect-ratio: 601 / 566;
    max-width: 601px;
  }
}

.venn>li {
  color: var(--color-white);
  position: absolute;
  width: 54.5%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-white);
  border-radius: 50%;
}

@media (min-width:990px) {
  .venn>li {
    width: 58.7%;
  }
}


.venn>li:nth-of-type(1) {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.venn>li:nth-of-type(2) {
  bottom: 0px;
  left: 0px;
}

.venn>li:nth-of-type(3) {
  bottom: 0px;
  right: 0px;
}


.venn-item-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  position: absolute;
}

.first-venn-item-inner {
  /* top: 40px; */
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width:1200px) {
  .first-venn-item-inner {
    /* top: 60px; */
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.second-venn-item-inner {
  /* bottom: 42px; */
  bottom: 25%;
  /* left: 28px; */
  left: 8%;
}

@media (min-width:390px) {
  .second-venn-item-inner {
    /* bottom: 42px; */
    bottom: 25%;
    /* left: 28px; */
    left: 15%;
  }
}

@media (min-width:990px) {
  .second-venn-item-inner {
    /* bottom: 95px; */
    bottom: 27%;
    /* left: 86px; */
    left: 9%;
  }
}

@media (min-width:1030px) {
  .second-venn-item-inner {
    /* bottom: 95px; */
    bottom: 27%;
    /* left: 86px; */
    left: 14%;
  }
}

@media (min-width:1280px) {
  .second-venn-item-inner {
    /* bottom: 95px; */
    bottom: 27%;
    /* left: 86px; */
    left: 25%;
  }
}

.third-venn-item-inner {
  /* bottom: 46px; */
  bottom: 25%;
  /* right: 28px; */
  right: 8%;
}

@media (min-width:390px) {
  .third-venn-item-inner {
    /* bottom: 46px; */
    bottom: 25%;
    /* right: 28px; */
    right: 15%;
  }
}

@media (min-width:990px) {
  .third-venn-item-inner {
    /* bottom: 94px; */
    bottom: 27%;
    /* right: 98px; */
    right: 7%;
  }
}

@media (min-width:1030px) {
  .third-venn-item-inner {
    /* bottom: 94px; */
    bottom: 27%;
    /* right: 98px; */
    right: 14%;
  }
}

@media (min-width:1280px) {
  .third-venn-item-inner {
    /* bottom: 94px; */
    bottom: 27%;
    /* right: 80px; */
    right: 23%;
  }
}

.venn-title {
  font-weight: 700;
  /* font-size: 40px; */
  font-size: max(10.256410256410255vw, 40px);
  line-height: 1.2;
  text-align: center;
}

@media (min-width:990px) {
  .venn-title {
    font-size: min(5.714285714285714vw, 80px);
  }
}

.venn-text-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 4px;
}

.venn-text {
  font-weight: 400;
  /* font-size: 10px; */
  font-size: max(2.564102564102564vw, 10px);
  line-height: 1.5;
  text-align: center;
}

@media (min-width:990px) {
  .venn-text {
    font-size: 12px;
  }
}

/*  */

.venn-detail {
  color: var(--color-white);
}

@media (min-width: 990px) {

  .venn-detail {
    height: 70vh;
    overflow: hidden;
    flex: 1;
    max-width: 395px;
    margin-top: 20px;
  }

  .venn-detail::-webkit-scrollbar {
    display: none;
  }
}

.venn-detail-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 32px;
}

@media (min-width: 990px) {
  .venn-detail-top {
    gap: 12px;
    padding-bottom: clamp(32px, 2.857142857142857vw, 40px);
  }
}

.venn-detail-title-container {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.venn-detail-title {
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}

@media (min-width:990px) {
  .venn-detail-title {
    font-size: clamp(28px, 3.428571428571429vw, 48px);
  }
}

.venn-detail-title rt {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.75;
  /* letter-spacing: -0.08em; */
  text-align: center;
}

.venn-detail-title-small {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 3px;
}

@media (min-width:990px) {
  .venn-detail-title-small {
    font-size: clamp(16px, 1.7142857142857144vw, 24px);
    margin-bottom: clamp(3px, 0.7142857142857143vw, 10px);
  }
}

.venn-detail-content-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
}

@media (min-width:990px) {
  .venn-detail-content-title {
    font-weight: 500;
    font-size: clamp(28px, 2.571428571428571vw, 36px);
    line-height: 1.5;
  }
}

.venn-detail-content {
  border-top: 1px solid var(--color-white);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 990px) {
  .venn-detail-content {
    padding: clamp(32px, 2.857142857142857vw, 40px) 0;
  }
}

@media (min-width: 990px) {
  .venn-detail-content:last-child {
    padding-bottom: 60vh !important;
    /* 画面の半分以上スクロールできるようにする */
  }
}

.subpage-text.venn-subpage_text {
  font-size: 16px;
}

@media (min-width: 990px) {
  .subpage-text.venn-subpage_text {
    font-size: clamp(14px, 1.1428571428571428vw, 16px);
  }
}

/* 事業・企業行動理念の時ヘッダー非表示 */
@media (min-width: 768px) {

  /* 通常の表示・非表示 */
  .js-header.show {
    transform: translateY(0);
  }

  .js-header.hide {
    transform: translateY(-100%);
  }

  /* 事業エリア専用：他のどんなクラスよりも優先して隠す */
  .js-header.force-hide {
    transform: translateY(-100%) !important;
    pointer-events: none;
    /* クリックもできないようにする */
  }
}
/* ==========================会社概要=============================== */
.overview_section {
  background: var(--color-gray);
}

.overview-table {
  width: 100%;
  margin-top: 40px;
}

@media (min-width:768px) {
  .overview-table {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-top: 60px;
  }
}

/* table01 */

.table-01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
  background: var(--color-white);
  display: block;
  width: 100%;
  text-align: left;
}

#table01 th {
  padding: 20px 0 0 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

#table01 td {
  padding: 0 0 20px 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.location-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.location-text {
  color: var(--color-font-black);
}


@media (min-width:768px) {
  .table-01 {
    max-width: 737px;
  }

  #table01 th,
  #table01 td {
    display: table-cell;
  }

  #table01 th {
    width: 21.7%;
    padding: 24px 0 24px 40px;
    font-size: 16px;
    vertical-align: top;
  }


  #table01 td {
    padding: 24px 24px 24px 12px;
    font-size: 16px;
  }

  .location-title {
    font-size: 16px;
  }
}

.table-01 .no_link {
  color: var(--color-font-black);
}

/* ==========================拠点・アクセス=============================== */
.access_section {
  background: var(--color-font-black);
}

.access_main {
  display: flex;
  flex-direction: column;
  gap: 51px;
  margin-top: 40px;
}

@media (min-width:768px) {
  .access_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
  }
}


/* リスト */
.access-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: hsla(225, 8%, 13%, 1);
  padding: 16px;
}

@media (min-width:768px) {
  .access-list {
    flex-direction: column;
    gap: 24px;
    background: none;
    position: sticky;
    top: 140px;
    flex-shrink: 0;
    align-self: flex-start;
  }
}

.access_link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.access_text {
  color: var(--color-white);

  font-weight: 500;
  font-size: 12px;
  line-height: 1.75;
  text-align: justify;
}

@media (min-width:768px) {
  .access_text {
    color: hsla(0, 0%, 51%, 1);
    font-size: 16px;
    transition: color 0.3s ease-out;
  }

  .access-list-item.is-active .access_text {
    color: var(--color-white);
  }
}

.access_arrow {
  max-width: 12px;
}

@media (min-width:768px) {
  .access_arrow {
    display: none;
  }
}

/*一覧 */
.access-item-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width:768px) {

  /* .access-item-container {

    padding-right: 16px;
  } */
  .access-item-container {
    gap: min(5.714285714285714vw, 80px);
    width: 100%;
    max-width: 737px;
    padding-right: 0;
  }
}

.access-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-white);
}

@media (min-width:768px) {
  .access-item {
    gap: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .access-item:last-child {
    padding-bottom: 40px;
    /* 判定位置まで押し上げられるようにする */
  }
}

.access-item-category {
  color: var(--color-blue);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
}


.access-item-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width:768px) {
  .access-item-bottom {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.access-map {
  aspect-ratio: 350 / 220;
  width: 100%;
  position: relative;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

@media (min-width:768px) {
  .access-map {
    aspect-ratio: 190 / 190;
    max-width: 190px;
    max-height: 190px;
    border-radius: 0%;
  }
}

.access-map iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.access-item-textContainer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access-item-textContainer h3,
.access-item-textContainer a {
  color: var(--color-white);
}

.access-item-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
}

@media (min-width:768px) {
  .access-item-title {
    font-size: clamp(18px, 1.7142857142857144vw, 24px);
  }
}

.access-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width:768px) {
  .access-item-wrapper {
    gap: 32px;
  }
}

.access-item-bottomContainer .access-item-bottom {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-white);
}

@media (min-width:768px) {
  .access-item-bottomContainer .access-item-bottom {
    padding: 32px 0;
  }
}

.access-item-bottomContainer .access-item-bottom:first-child {
  padding: 0 0 24px 0;
}

@media (min-width:768px) {
  .access-item-bottomContainer .access-item-bottom:first-child {
    padding: 0 0 32px 0;
  }
}

/* ==========================沿革=============================== */
.outline_section {
  overflow: hidden;
}
.outline_main {
  display: flex;
  flex-direction: column;
}

.outline_top_container {
  display: contents;
}

@media (min-width:768px) {
  .outline_top_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    position: relative;
    z-index: 20;
  }
}

.outline_top_container .subpage_section_title_container {
  order: 1;
}

/* swiper */
/* ボタンのコンテナ */
/* --- 1. ボタン全体のコンテナ --- */
.outline_swiper_btn_container {
  order: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 20;
  margin-top: 40px;
}

@media (min-width:768px) {
  .outline_swiper_btn_container {
    margin: 0;
  }
}

/* --- 1. ボタン全体のコンテナ --- */
.outline_swiper_btn_container {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 20;
}

/* --- 1. ボタン本体（外枠の丸） --- */
.outline-swiper-button-prev,
.outline-swiper-button-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px !important;
  border: 1px solid var(--color-gray);
  /* これで外枠が復活します */
  border-radius: 50%;
  background-color: transparent;
  /* 背景は透明 */
  cursor: pointer;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

/* --- 2. 矢印部分（疑似要素でマスクをかける） --- */
.outline-swiper-button-prev::before,
.outline-swiper-button-next::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  /* ここで「矢印の色」を指定 */
  background-color: var(--color-font-black);

  /* マスク設定 */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* 各ボタンのSVGを指定 */
.outline-swiper-button-prev::before {
  -webkit-mask-image: url('../img/about-us/swiper_arrow_prev.svg');
  mask-image: url('../img/about-us/swiper_arrow_prev.svg');
}

.outline-swiper-button-next::before {
  -webkit-mask-image: url('../img/about-us/swiper_arrow_next.svg');
  mask-image: url('../img/about-us/swiper_arrow_next.svg');
}


/* --- 4. 端に到達した時の状態（無効化） --- */
.outline-swiper-button-prev.swiper-button-disabled,
.outline-swiper-button-next.swiper-button-disabled {
  opacity: 1 !important;
  /* 透明度は1にして背景色をしっかり出す */
  border-color: var(--color-gray) !important;
  background-color: var(--color-gray) !important;
  /* ボタンの背景色（グレー） */
  cursor: not-allowed;
}

/* 無効化時の「中の矢印」の色を指定 */
.outline-swiper-button-prev.swiper-button-disabled::before,
.outline-swiper-button-next.swiper-button-disabled::before {
  background-color: var(--color-white) !important;
  /* ここを白（#ffffff）に固定 */
}

/* swiper本体 */
.outline_swiper {
  order: 2;
  margin-top: 40px;
}

@media (min-width:768px) {
  .outline_swiper {
    margin-top: 60px;
  }
}

.outline_swiper .swiper-slide {
  width: 286px;
  height: auto;
}

.outline_content {
  width: 100%;
  position: relative;
}

.outline_swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
}

.outline_swiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
}

.outline_content::after {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-font-black);
  z-index: 1;
}

.outline_content.first_outline_content::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  width: 72px;
  height: 0;
  border-top: 1px dashed var(--color-font-black);
  z-index: 2;
}

.outline_content.first_outline_content::after {

  left: auto;
  right: 0;
  width: calc(100% - 72px);
  background: var(--color-font-black);
}

.outline_mark {
  position: absolute;
  top: 0;
  left: 65px;
  width: 13px;
  height: 13px;
  background: var(--color-blue);
  z-index: 3;
}

.outline_text_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 37px;
  padding: 37px 20px 0;
}

.outline_text_container.first_outline_text_container {
  padding: 37px 40px 0 0;
}

.outline_text_container.second_outline_text_container {
  padding: 37px 20px 0 0;
}

.outline_year {
  font-family: var(--font-cabinet);
  font-weight: 300;
  font-style: Light;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.outline_year_inner {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

.outline_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
/* ================================SERVICE AND STRENGTH==================================================== */
.service_section {
  background-color: var(--color-font-black);
  padding: 50px 0;
}

@media (min-width:768px) {
  .service_section {
    padding: 90px 0;
  }
}

.service_main_text {
  color: var(--color-white);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  margin-top: 32px;
}

@media (min-width:768px) {
  .service_main_text {
    font-size: clamp(28px, 2.857142857142857vw, 40px);
    margin-top: min(4.285714285714286vw, 60px);
  }
}

.service_top_bottomContent {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 450px;
  margin: 40px auto 0;
}

@media (min-width:768px) {
  .service_top_bottomContent {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-between;
    max-width: none;
    margin: 0;
  }
}

.service_top_img {
  overflow: hidden;
  position: relative;
  /* transform の基準 */
}

@media (min-width:768px) {
  .service_top_img {
    margin: min(7.142857142857142vw, 100px) 0 0 0;
  }
}

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

.service_top_imgInner img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}

.service_top_textContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width:768px) {
  .service_top_textContainer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 49.2%;
  }
}

.service_content_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}

@media (min-width:768px) {
  .service_content_container {
    gap: min(5.714285714285714vw, 80px);
    margin-top: 180px;
  }
}

.service_content {
  background: var(--color-white);
  padding: 36px;
}

@media (min-width:768px) {
  .service_content {
    padding: min(5.714285714285714vw, 80px);
  }
}

.service_content_top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid hsla(0, 0%, 82%, 1);
}

@media (min-width:768px) {
  .service_content_top {
    gap: 20px;
    padding-bottom: 40px;
  }
}

.service_content_title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width:768px) {
  .service_content_title {
    font-size: clamp(20px, 2vw, 28px);
}
}
.service_content_middle {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}

@media (min-width:768px) {
  .service_content_middle {
    padding-top: 40px;
  }
}

.service_content_middle_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 450px;
  margin: 0 auto;
}

@media (min-width:768px) {
  .service_content_middle_inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
    max-width: none;
    margin: 0;
  }
}

.job_description {
  flex: 1;
}


.job_description_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  margin-top: 16px;
}

@media (min-width:768px) {
  .job_description_text {
    font-size: clamp(14px, 1.1428571428571428vw, 16px);
  }
}


.service_content_bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width:768px) {
  .service_content_bottom {
    /* margin-top: 40px; */
    margin-top: clamp(32px, 4.571428571428571vw, 64px);
  }
}

.flow_box_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 450px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .flow_box_container {
    max-width: none;
    margin: 0;
    align-items: stretch;
    gap: 8px;
  }
}

.flow_box_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .flow_box_wrapper {
    display: grid;
    grid-template-columns:
      1fr 32px 1fr 32px 1fr;
    align-items: center;
    gap: 8px;
  }
}

.flow_box {
  background: hsla(0, 0%, 97%, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 20px;
  max-width: 450px;

  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .flow_box {
    padding:20px 16px;
  }
}
@media (min-width: 1020px) {
  .flow_box {
    padding: clamp(20px, 2.857142857142857vw, 40px) 24px;
    max-width: 274px;
  }
}
.flow_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-blue);
  margin: 0;
}

@media (min-width:768px) {
  .flow_title {
    font-size: clamp(16px, 1.2857142857142856vw, 18px);
  }
}

.flow_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}

.flow_box_wrapper svg {
  min-width: 32px;
  flex-shrink: 0;
  transform: rotate(90deg);
}

@media (min-width:768px) {
  .flow_box_wrapper svg {
    transform: rotate(0deg);
  }
}

.flow_box_container_arrow {
  min-width: 32px;
  transform: rotate(90deg)
}

@media (min-width:768px) {
  .flow_box_container_arrow {
    display: none;
  }
}

/* ======================強み=========================== */
.strength_section {
  background-color: var(--color-font-black);
  padding: 50px 0 100px;
}

@media (min-width:768px) {
  .strength_section {
    padding: 90px 0 180px;
  }
}

.strength_content_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width:768px) {
  .strength_content_container {
    gap: clamp(40px, 4.285714285714286vw, 60px);
    margin-top: clamp(40px, 4.285714285714286vw, 60px);
  }
}

.strength_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width:768px) {
  .strength_content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.strength_img {
  flex-shrink: 0;
}

@media (min-width:768px) {
  .strength_img {
    flex-shrink: 0;
    max-width: 280px;
  }
}

@media (min-width:1020px) {
  .strength_img {
    max-width: 464px;
  }
}

.strength_content_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width:768px) {
  .strength_content_right {
    gap: 40px;
    max-width: 536px;
  }
}

.strength_content_rightTop {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strength_content_titleEn {
  color: hsla(0, 0%, 51%, 1);
  font-family: var(--font-cabinet);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width:768px) {
  .strength_content_titleEn {
    font-size: clamp(40px, 3.7142857142857144vw, 52px);
  }
}

.strength_content_title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

@media (min-width:768px) {
  .strength_content_title {
    font-size: clamp(20px, 2vw, 28px);
  }
}

.strength_content_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}

@media (min-width:768px) {
  .strength_content_text {
    font-size: clamp(14px, 1.2857142857142856vw, 18px);
  }
}
/* ==============================================SDGs======================================================= */


/* ===================WHAT’S SDGs========================= */
.aboutSDGs_section {
  background: var(--color-font-black);
  padding: 50px 0 100px;
}

@media (min-width:768px) {
  .aboutSDGs_section {
    padding: 90px 0 180px;
  }
}

@media (min-width:768px) {
  .aboutSDGs_main {
    max-width: 1080px;
    margin: 0 auto;
  }
}

.sdgs_topContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width:768px) {
  .sdgs_topContent {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(40px, 5.428571428571429vw, 76px);
  }
}

.sdgs_topText_container {
  background: var(--color-white);
  padding: 40px 20px;
}

@media (min-width:768px) {
  .sdgs_topText_container {
    padding: clamp(20px, 2.857142857142857vw, 40px);
    max-width: 669px;
  }
}

@media (min-width:768px) {
  .sdgs_topImg {
    width: 30%;
    flex-shrink: 0;
  }
}

.sdgs_topText {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

@media (min-width:768px) {
  .sdgs_topText {
    font-size: clamp(14px, 1.2857142857142856vw, 18px);
  }
}

/* ==================SUSTAINABLE FUTURE======================= */
.sustainable_section {
  background: var(--color-gray);
}

.sustainable_content {
  background: var(--color-white);
  padding: 20px;
}

@media (min-width:768px) {
  .sustainable_content {
    padding: clamp(20px, 5.714285714285714vw, 80px);
  }
}

@media (min-width:768px) {
  .sustainable_main {
    max-width: 1080px;
    margin: 0 auto;
  }
}

.sustainable_content_container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

@media (min-width:768px) {
  .sustainable_content_container {
    gap: 40px;
    margin-top: clamp(40px, 4.285714285714286vw, 60px);
  }
}

.sustainable_title_container {
  padding-bottom: 20px;
}

@media (min-width:768px) {
  .sustainable_title_container {
    /* padding-bottom: clamp(20px, 2.857142857142857vw, 40px); */
    padding-bottom: clamp(20px, 2.2857142857142856vw, 32px);
  }
}

.sustainable_content_textContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid hsla(0, 0%, 82%, 1);
  padding-top: 20px;
}

@media (min-width:768px) {
  .sustainable_content_textContainer {
    padding-top: clamp(20px, 2.857142857142857vw, 40px);
  }
}

/* 
.sustainable_content_imgContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px;
  background: hsla(0, 0%, 96%, 1);
  margin-top: 16px;
}

@media (min-width:768px) {
  .sustainable_content_imgContainer {
    padding: 24px 26px;
    margin-top: 24px;
  }
} */
.sustainable_content_imgContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px;
  background: hsla(0, 0%, 96%, 1);
  margin-top: 16px;
}


@media (min-width: 420px) {
  .sustainable_content_imgContainer {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 500px) {
  .sustainable_content_imgContainer {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 600px) {
  .sustainable_content_imgContainer {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (min-width: 768px) {
  .sustainable_content_imgContainer {
    grid-template-columns: repeat(6, 1fr);
    padding: 24px 26px;
        margin-top: 24px;
  }
}
.sustainable_content_img img {
  display: block;
  width: 100%;
  height: auto;
}
.subpage_section_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.subpage_section_list_item {
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
}

/* マーカー */
.subpage_section_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(1.6em / 2 - 0.12em);
  width: 4px;
  height: 4px;
  background-color: var(--color-blue);
  border-radius: 50%;
}

.sustainable_content_img {
  max-width: 80px;
  width: 100%;
}

@media (min-width:768px) {
  .sustainable_content_img {
    max-width: 138px;
  }
}

/* ===================ACCREDITATIONS====================== */
.accreditations_section {
  background: var(--color-font-black);
}

@media (min-width:768px) {
  .accreditations_main {
    margin: 0 auto;
    max-width: 1080px;
  }
}

.accreditations_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px auto 0;
  max-width: 500px;
}

@media (min-width:920px) {
  .accreditations_list {
    gap: 24px;
    margin: clamp(40px, 4.285714285714286vw, 60px) auto 0;
    max-width: none;
  }
}

.accreditations_content_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width:920px) {
  .accreditations_content_container {
    gap: 24px;
    flex-direction: row;
  }
}

.accreditations_content {
  background: var(--color-white);
  padding: 20px 20px 32px;

  opacity: 0;
  /* 最初は非表示にしておく */
  transition: opacity 2s;
  /* 動きを滑らかに */
}

.accreditations-fadeIn {
  opacity: 1;
}

/* フェードイン用のクラス */

@media (min-width:768px) {
  .accreditations_content {
    padding: 40px clamp(20px, 2.857142857142857vw, 40px);
    flex: 1;
  }
}

.accreditations_content_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width:768px) {
  .accreditations_content_inner {
    gap: 24px;
  }
}

.accreditations_img {
  max-width: 190px;
}

.accreditations_text_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.accreditations_title {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

@media (min-width:768px) {
  .accreditations_title {
    font-size: clamp(16px, 1.4285714285714286vw, 20px);
  }
}

/* ===========================================BLOG archive========================================================== */


.archive_section {
  background: var(--color-font-black);
  padding: 50px 0 100px;
}

@media (min-width:768px) {
  .archive_section {
    padding: 90px 0 180px;
  }
}

.archive-era-selectContainer {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (min-width:768px) {
  .archive-era-selectContainer {
    gap: 97px;
  }
}

.archive_selectText {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  flex-shrink: 0;
}

@media (min-width:768px) {
  .archive_selectText {
    font-size: 20px;
  }
}
/* ===========ドロップダウンメニュー========= */
/* リスト全体を非表示にしておく */
.custom-category-select-wrapper {
  background: var(--color-white);
  color: var(--color-font-black);
  position: relative;
  border-radius: 2px;

    /* padding: 12px 20px; */
  min-width: 154px;
}

@media (min-width:768px) {
  .custom-category-select-wrapper {
    min-width: 258px;
    /* padding: 16px 24px; */
  }
}
.selected-category-display {
    padding: 12px 20px;
}
@media (min-width:768px) {
  .selected-category-display {
    padding: 16px 24px;
}
}
/* リンク要素 a のスタイル */
.custom-category-select-wrapper .category-option a {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  justify-content: flex-start;
}

/* チェックマーク */
.custom-category-select-wrapper .check-mark {
  order: -1;
  margin-right: 4px;
  margin-left: 0;
}
/* メニュー（開） */
.custom-category-select-wrapper .category-options-list {
  display: none;
  position: absolute;
  z-index: 100;
left: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--color-white);
  width: 100%;
  overflow-y: auto;
  max-width: 200px;
  border-radius: 8px;
  border: 1px solid hsla(60, 4%, 79%, 1);
}

@media (min-width:768px) {
  .custom-category-select-wrapper .category-options-list {
    max-width: 316px;
  }
}

/* JavaScriptでリストが開いたときにこのクラスを付与する */
.custom-category-select-wrapper.is-open .category-options-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

/* リスト内の各アイテム */
.custom-category-select-wrapper .category-option {
  cursor: pointer;
  padding: 4px 6px;
}

.custom-category-select-wrapper .category-option a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  color: var(--color-font-black);
  padding-left: 20px;
}

.custom-category-select-wrapper .category-option.is-selected a {
  padding-left: 0;
}

/* ホバー */
.custom-category-select-wrapper .category-option:hover {
  background-color: #ffe7a0;
}

/* 現在選択中のアイテムの見た目 */
.custom-category-select-wrapper .category-option.is-selected {
  background: hsla(214, 100%, 67%, 1);
  border-radius: 4px;
}

.custom-category-select-wrapper .category-option.is-selected a {
  color: var(--color-white);
}
/* 矢印 */
.archive_select_arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  max-width: 16px;
}

@media (min-width:768px) {
  .archive_select_arrow {
    right: 24px;
    max-width: 20px;
  }
}


/* ======================================== */
.blog_archive_list {
  padding: 0;
  list-style: none;
  max-width: 500px;
  margin: 40px auto 0;

  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  grid-row-gap: 16px;
}

@media (min-width:768px) {
  .blog_archive_list {
    max-width: none;
    margin: 80px 0 0;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 60px;
  }
}

.blog_archive_list_item {
  flex: 1;
}

.blog_item {
  display: flex;
  flex-direction: column;
}

.blog_img {
  aspect-ratio: 344 / 200;
  width: 100%;
  overflow: hidden;
}

.blog_img img {
  height: 100%;
  transition: transform .6s ease;
  /* ゆっくり変化させる */
}

.blog_item:hover .blog_img img {
  transform: scale(1.05);
  /* 拡大 */
}

.blog_content {
  background: var(--color-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* 親の高さに合わせる */
  min-height: 173px;
}

@media (min-width:768px) {
  .blog_content {
    padding: 16px;
    min-height: 167px;
  }
}

.blog_content_inner {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 16px;
  flex: 1;
  /* これで高さを伸ばす */
  justify-content: flex-start;
  /* 上から積む */
}

@media (min-width:768px) {
  .blog_content_inner {
    gap: 20px;
  }
}

.blog_title {
  color: var(--color-font-black);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;

  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (min-width:768px) {
  .blog_title {
    font-size: clamp(14px, 1.2857142857142856vw, 18px);
  }
}

.blog_date {
  color: var(--color-font-gray);
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
  margin-top: auto;
  /* これで下に張り付く */
}

/* =====================ページネーション=======================- */
.pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width:768px) {
  .pagenation {
    margin-top: 80px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-numbers {
  color: hsla(0, 0%, 82%, 1);
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 16px;
  line-height: 0.9;
  /* letter-spacing: -0.02em; */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid hsla(0, 0%, 82%, 1);
}

@media (min-width:768px) {
  .page-numbers {
    font-size: 16px;
    width: 48px;
    height: 48px;
  }
}

.page-numbers.current {
  color: var(--color-white);
  background: var(--color-blue);
  border: none;
}

.prev.page-numbers,
.next.page-numbers {
  color: var(--color-white);
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  background: none;
  border: none;
}

.prev.page-numbers {
  margin-right: 12px;
}

@media (min-width:768px) {
  .prev.page-numbers {
    margin-right: 32px;
  }
}

.next.page-numbers {
  margin-left: 12px;
}

@media (min-width:768px) {
  .next.page-numbers {
    margin-left: 32px;
  }
}

.page-numbers.inactive {
color: hsla(0, 0%, 82%, 1);
}

/* ====================================BLOG single================================================================ */


.singlePage_section {
  background: var(--color-gray);
  padding-top: 160px;
}

@media (min-width:768px) {
  .singlePage_section {
    padding-top: min(20.357142857142858vw, 285px);
  }
}

.singlePage_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width:768px) {
  .singlePage_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.singlePage_left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width:768px) {
  .singlePage_left {
    gap: 77px;
    position: sticky;
    top: 150px;
  }
}

.to_archive_link {
  display: inline-block;
  position: relative;
  width: fit-content;
}

.to_archive_link::after {
  background-color: var(--color-font-black);
  /* 下線の色 */
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform .3s ease-out;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

/* リンクにホバーした際の下線の表示 */
.to_archive_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.back_archive {
  display: flex;
  align-items: center;
  gap: 8px;
}

.back_arrow {
  max-width: 20px;
}

/* 年で絞り込む */
.article_search_content .custom-category-select-wrapper {
  max-width: 154px;
}

@media (min-width:768px) {
  .article_search_content .custom-category-select-wrapper {
    max-width: 258px;
  }
}

.article_search_content .custom-category-select-wrapper .archive_select_arrow {
  right: 16px;
}

@media (min-width:768px) {
  .article_search_content .custom-category-select-wrapper .archive_select_arrow {
    right: 24px;
  }
}

/* 年で絞り込む */
.to_archive_linkText {
  color: var(--color-font-black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width:768px) {
  .to_archive_linkText {
    font-size: clamp(16px, 1.2857142857142856vw, 18px);
  }
}

.article_search_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width:768px) {
  .post_container {
    gap: min(4.285714285714286vw, 60px);
    width: 68.2%;
  }
}

.post_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width:768px) {
  .post_header {
    gap: 24px;
  }
}

.post_date {
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 14px;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

@media (min-width:768px) {
  .post_date {
    font-size: 16px;
  }
}

.post_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
}

@media (min-width:768px) {
  .post_title {
    font-size: clamp(24px, 2.2857142857142856vw, 32px);
  }
}

/* ==================記事の中身=================== */
.post_body h2 {
  background: hsla(0, 0%, 82%, 1);
  border-left: 2px solid var(--color-blue);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  padding: 6px 20px;
  margin-bottom: 20px;
}

@media (min-width:768px) {
  .post_body h2 {
    font-size: 24px;
    padding: 6px 24px;
    margin-bottom: 24px;
  }
}

.post_body h2:nth-child(n+2) {
  margin-top: 32px;
}

@media (min-width:768px) {
  .post_body h2:nth-child(n+2) {
    margin-top: 60px;
  }
}

.post_body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 20px;
}

@media (min-width:768px) {
  .post_body p {
    font-size: 16px;
    margin-top: 24px;
  }
}

.post_body strong {
  font-weight: 700;
}

.post_body a {
  color: var(--color-blue);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-decoration: underline;
}

@media (min-width:768px) {
  .post_body a {
    font-size: 16px;
  }
}

.post_body ul {
  padding-left: 14px;
}

@media (min-width:768px) {
  .post_body ul {
    padding-left: 16px;
  }
}

.post_body li {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}

@media (min-width:768px) {
  .post_body li {
    font-size: 16px;
  }
}

.post_body li strong {
  font-weight: 500;
}

.post_body h2:first-child,
.post_body p:first-child,
.post_body ul:first-child,
.post_body a:first-child {
  margin-top: 0;
}

/* post_body内のすべてのfigure（画像の外枠）の基本設定 */
.post_body figure {
  width: auto;
  margin: 0 auto;
  display: table;
}

/* figureの中に要素がある場合の調整 */
.post_body figure img {
  display: block;
  width: auto;
  height: auto;
}

/* 「何か」の後に登場する figure にだけマージン */
.post_body *+figure {
  margin-top: 40px;
}

@media (min-width:768px) {
  .post_body *+figure {
    margin-top: min(4.285714285714286vw, 60px);
  }
}



/* ==========================================
   1. グループ & カラム 全体設定（横並び・高さ揃え）
   ========================================== */
body .wp-block-group.is-layout-flex,
body .wp-block-columns.is-layout-flex {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important; /* 子要素の高さを揃える */
  gap: 0.5em;
  margin-bottom: 0 !important;
  margin-top: 0;
}

/* 隣接マージン（共通） */
.post_body * + .wp-block-group.is-layout-flex,
.post_body * + .wp-block-columns.is-layout-flex {
  margin-top: 40px !important;
}

@media (min-width: 768px) {
  .post_body * + .wp-block-group.is-layout-flex,
  .post_body * + .wp-block-columns.is-layout-flex {
    margin-top: min(4.285714285714286vw, 60px) !important;
  }
}

/* ==========================================
   2. 画像枠（wp-block-image）の高さを強制
   ========================================== */
/* グループ直下、またはカラム直下の画像枠をすべて高さいっぱいに */
body .wp-block-group.is-layout-flex > .wp-block-image,
body .wp-block-columns.is-layout-flex .wp-block-image {
  margin: 0 !important;
  display: flex !important;
  flex: 1 !important;      /* 横幅を均等に広げる */
  align-self: stretch !important; /* 親の高さいっぱいまで強制的に伸ばす */
}

/* 画像本体を枠いっぱいに広げる */
body .wp-block-group.is-layout-flex .wp-block-image img,
body .wp-block-columns.is-layout-flex .wp-block-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* ==========================================
   3. カラム専用（個別列の調整）
   ========================================== */
body .wp-block-columns.is-layout-flex > .wp-block-column {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  min-width: 0 !important;
}

/* カラム内の縦積み(Flow)マージン制御 */
.wp-block-column.is-layout-flow > :first-child,
.wp-block-column-is-layout-flow > :first-child {
  margin-top: 0 !important;
}

.wp-block-column.is-layout-flow > * + *,
.wp-block-column-is-layout-flow > * + * {
  margin-top: 0.5em !important;
}

/* ============================NEWS archive========================================================== */

@media (min-width:768px) {
  .news_archive_main {
    max-width: 943px;
    margin: 0 auto;
  }
}

.news_archive_list {
  margin-top: 40px;
  padding: 0;
}

@media (min-width:768px) {
  .news_archive_list {
    margin-top: 80px;
  }
}

.news_archive_list_item {
  border-top: 1px solid var(--color-white);
}

.news_archive_list_item:last-child {
  border-bottom: 1px solid var(--color-white);
}

.news_archive_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 24px 48px 24px 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}


@media (min-width:768px) {
  .news_archive_link {
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    gap: 32px;
    padding: 24px 88px 24px 24px;
  }
}

/* hover */
@media (min-width:768px) {
  .news_archive_link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-out;
    z-index: -1;
  }


  /* 上から入った場合 */
  .news_archive_link.hover-from-top::before {
    transform-origin: top;
    transform: scaleY(1);
  }

  /* 下から入った場合 */
  .news_archive_link.hover-from-bottom::before {
    transform-origin: bottom;
    transform: scaleY(1);
  }

  /* 離れるとき 上 */
  .news_archive_link.leave-to-top::before {
    transform-origin: top;
    transform: scaleY(0);
  }

  /* 離れるとき 下 */
  .news_archive_link.leave-to-bottom::before {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

/* hover */
.news_archive_date {
  color: var(--color-white);
  font-family: var(--font-cabinet);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
  transition: color .3s ease-out;
}

@media (min-width:768px) {
  .news_archive_date {
    font-weight: 400;
    font-size: 14px;
  }
}

@media (min-width:768px) {
  .news_archive_link:hover .news_archive_date {
    color: var(--color-font-black);
  }
}

.news_archive_title {
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
  transition: color .3s ease-out;

  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width:768px) {
  .news_archive_title {
    color: var(--color-white);
    font-size: 16px;
  }
}

@media (min-width:768px) {
  .news_archive_link:hover .news_archive_title {
    color: var(--color-font-black);
  }
}

.to_news_single {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (min-width:768px) {
  .to_news_single {
    right: 40px;
  }
}

.to_news_single path {
  stroke: var(--color-white);
  transition: stroke .3s ease-out;
}

@media (min-width:768px) {
  .news_archive_link:hover .to_news_single path {
    stroke: var(--color-font-black);
  }
}
/* =======================================WORKS archive=========================================================================== */


.works_archive_section {
  background: var(--color-font-black);
  padding: 50px 0 100px;
  overflow: hidden;
}

@media (min-width:768px) {
  .works_archive_section {
    padding: 90px 0 180px;
  }
}

@media (min-width:768px) {
  .works_archive_main {
    max-width: 806px;
    margin: 0 auto;
  }
}

.works_select_container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

@media (min-width:768px) {
  .works_select_container {
    gap: 32px;
    margin-bottom: min(8.571428571428571vw, 120px);
  }
}

.archive_category_selectContainer {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width:920px) {
  .archive_category_selectContainer {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

/* カテゴリー分類 */
/* 年代分類 */
.archive-era-selectContainer.works_era_select {
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

@media (min-width:920px) {
  .archive-era-selectContainer.works_era_select {
    flex-direction: row;
    align-items: center;
    gap: 72px;
  }
}

.archive-era-selectContainer.works_era_select .custom-category-select-wrapper {
  max-width: 154px;
}

@media (min-width:920px) {
  .archive-era-selectContainer.works_era_select .custom-category-select-wrapper {
    max-width: 258px;
  }
}

.archive-era-selectContainer.works_era_select .selected-category-display {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

/* 年代分類 */
.archive_category_list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  max-width: 252px;
}


@media (min-width:690px) {
  .archive_category_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: none;
  }
}

.archive_category {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;

  padding: 8px;
  border: 1px solid var(--color-white);
  /* width: 128px; */
  width: 120px;
  height: 40px;
  border-radius: 1px;
  transition: background-color 0.3s ease-out;
}

.archive_category_item.is-active .archive_category {
  background-color: var(--color-blue);
  color: var(--color-white);
  border: none;
}

.archive_category:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/*  */


.works_category_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.works_category_contentContainer .works_category_content:nth-child(n+2) {
  margin-top: 60px;
}

@media (min-width:768px) {
  .works_category_contentContainer .works_category_content:nth-child(n+2) {
    margin-top: min(12.857142857142856vw, 180px);
  }
}


.works_era_group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-white);
}

@media (min-width:768px) {
  .works_era_group {
    gap: 24px;
    padding-top: clamp(40px, 5.714285714285714vw, 80px);
    padding-bottom: clamp(40px, 5.714285714285714vw, 80px);
  }
}

.works_archive_inner .works_era_group:first-child {
  padding-top: 0;
}

.works_archive_inner:first-of-type {
  padding-top: 0;
}

.works_category {
  color: var(--color-blue);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

@media (min-width:768px) {
  .works_category {
    font-size: 20px;
  }
}

.works_era {
  font-family: var(--font-cabinet);
  color: var(--color-white);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
}

.works_era.is-japanese {
  font-family: "Noto Sans JP", sans-serif;
  /* 日本語用のフォントを指定 */
  font-size: 28px;
  /* 日本語に合わせて少し小さく調整 */
  font-weight: 400;
  /* 日本語は少し太めにするなど */
  line-height: 1.4;
  /* 日本語は少し行間があった方が綺麗です */
}

@media (min-width:768px) {
  .works_era {
    font-size: clamp(40px, 4.285714285714286vw, 60px);
  }

  /* 日本語のレスポンシブサイズ */
  .works_era.is-japanese {
    font-size: clamp(28px, 2.5vw, 40px);
    /* お好みのサイズ感に調整してください */
  }
}

.works_era_ja {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
}

.works_archive_list {
  color: var(--color-white);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding-left: 0;
}

@media (min-width:768px) {
  .works_archive_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 8px;
  }
}


.works_archive_list_item {
  position: relative;
  padding-left: 14px;
}

.works_archive_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.875em;
  /* ← 1行目の中央に合わせる */
  transform: translateY(-50%);
  line-height: 1;
  background: var(--color-white);
  width: 4px;
  height: 4px;
  border-radius: 999px;
}

.works_archive_list_item_title {
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}

.works_attention {
  color: var(--color-white);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.75;
  margin-top: 20px;
  position: relative;
  padding-left: 12px;
}

@media (min-width:768px) {
  .works_attention {
    margin-top: clamp(20px, 2.857142857142857vw, 40px);
  }
}

.works_attention::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
  font-size: 12px;
  color: var(--color-white);
}

/* swiper */
.works_img_slider {
  margin-top: 24px;
  overflow: visible;
  pointer-events: none;
}

/* スライドの動き等速 */
.works_img_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.works_img_slider .swiper-slide {
  width: auto !important;
}

.works_img_slider .swiper-slide img {
  height: 300px;
  width: auto !important;
  max-width: none !important;
  display: block;
}

@media (min-width: 768px) {
  .works_img_slider .swiper-slide img {
    height: 500px;
  }
}

/* ======================================CONTACT===================================================================== */
.subpage_top.contact_subpage_top {
  padding: 90px 0 100px;
}

@media (min-width:768px) {
  .subpage_top.contact_subpage_top {
    padding: 180px 0;
  }
}

/* ===================TEL/FAX================= */
.tel-fax_section {
  background: var(--color-gray);
  padding: 100px 0 50px;
}

@media (min-width:768px) {
  .tel-fax_section {
    padding: 180px 0 90px;
  }
}

.slash {
  font-weight: 300;
  font-size: clamp(32px, 3.1428571428571432vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;

}

.tel-fax_container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width:768px) {
  .tel-fax_container {
    flex-direction: row;
    align-items: center;
    gap: min(5.714285714285714vw, 80px);
    margin-top: 64px;
  }
}

@media (min-width:768px) {
  .tel-fax_img {
    /* max-width: 464px; */
    /* width: min(33.14285714285714vw, 464px); */
    width: 42.9%;
  }
}

.contact_topText_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width:768px) {
  .contact_topText_container {
    gap: 40px;
    max-width: 536px;
  }
}

.contact_telAndFax_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tel-fax_inner {
  display: flex;
  align-items: flex-end;
  gap: 23px;
}

.tel-fax_title {
  font-family: var(--font-cabinet);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media (min-width:768px) {
  .tel-fax_title {
    font-size: clamp(16px, 1.2857142857142856vw, 18px);
    margin-bottom: clamp(6px, 1.5vw, 21px);
  }
}

.contact-tel-fax {
  color: var(--color-blue);
  font-family: var(--font-cabinet);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.35;
  text-align: center;
  vertical-align: middle;
}

@media (min-width:768px) {
  .contact-tel-fax {
    font-size: min(4.285714285714286vw, 60px);
  }
}

.tel_container {
  position: relative;
}


.reception_time {
  position: absolute;
  left: 0;
  bottom: -7px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (min-width:768px) {
  .reception_time {
    bottom: -5px;
  }
}

@media (min-width:1020px) {
  .reception_time {
    bottom: 0;
  }
}

/* ===================FORM================= */
.form-section {
  background: var(--color-gray);
  padding: 50px 0 100px;
}

@media (min-width:768px) {
  .form-section {
    padding: 90px 0 180px;
  }
}

.contact_input_main {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width:768px) {
  .contact_input_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
  }
}

.contact_flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width:768px) {
  .contact_flow {
    gap: 24px;
    position: sticky;
    top: 150px;
    min-width: 178px;
  }
}

.contact_flow_content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact_flow_number {
  font-family: var(--font-cabinet);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;

  background: hsla(0, 0%, 82%, 1);
  border-radius: 999px;
  padding: 7px;
  width: 24px;
  height: 24px;
}

@media (min-width:768px) {
  .contact_input_container {
    /* フォーム側を広げる */
    flex: 1;
    max-width: 737px;
  }
}

.contact_flow_number.is-current {
  background: var(--color-blue);
  color: var(--color-white);
}

.subpage-text.is-current {
  font-weight: 500;
}

/* お問い合わせフォーム中身 */

.contact-item-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width:768px) {
  .contact-item-container {
    gap: 40px;
    margin-top: 60px;
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item-title-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
}

@media (min-width:768px) {
  .contact-item-title {
    font-size: 16px;
  }
}

/* 必須 */
.required-inner {
  color: hsla(359, 100%, 38%, 1);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border: 1px solid hsla(359, 100%, 38%, 1);
  border-radius: 2px;
  max-width: 41px;
}

/* 必須 */
/* 任意 */
.optional-inner {
  color: hsla(0, 0%, 51%, 1);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border: 1px solid hsla(0, 0%, 51%, 1);
  border-radius: 2px;
  max-width: 41px;
}

/* 任意 */

/* ラジオボタン */
.wpcf7-form-control.wpcf7-radio.contact-radio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wpcf7-form-control.wpcf7-radio.contact-radio .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control.wpcf7-radio.contact-radio label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wpcf7-form-control.wpcf7-radio.contact-radio .wpcf7-list-item-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

.wpcf7-form-control.wpcf7-radio.contact-radio input {
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--color-font-black);
}

input {
  padding: 14px 20px;
  width: 100%;
  border-radius: 2px;
  border: none;
}

@media (min-width: 768px) {
  input {
    padding: 14px 24px;
  }
}

textarea {
  padding: 14px 20px;
  width: 100%;
  max-height: 168px;
  border-radius: 2px;
  border: none;
}

@media (min-width: 768px) {
  textarea {
    padding: 14px 24px;
  }
}

/* Firefox用 */
::placeholder {
  color: hsla(0, 0%, 82%, 1);
  opacity: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

/* Safari / Chrome / Edge 用 */
::-webkit-input-placeholder {
  color: hsla(0, 0%, 82%, 1);
}

.contact_address_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ドロップダウンメニュー */

.custom-select {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  border: none;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
  /* 矢印消去 */
  appearance: none;
  -webkit-appearance: none;
  background-image: url('../img/common/archive_select_arrow.svg');
  background-repeat: no-repeat;
  background-position: right 16px center;
  max-width: 186px;
  padding: 16px 20px;
}

@media (min-width: 768px) {
  .custom-select {
    padding: 16px 24px;
    max-width: 258px;
    width: 100%;
    background-position: right 24px center;
  }
}

/* 4. 「選択してください（最初の項目）」だけ色を薄くする */
.custom-select:invalid,
.custom-select option[value="選択してください"] {
  color: var(--color-white);
  background: var(--color-blue);
}



/* プライバシーポリシー */
/* 親コンテナをフレックスボックスにする */
.privacy_check_container {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .privacy_check_container {
    margin-top: 60px;
    gap: 20px;
  }
}

.privacy_check_text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .privacy_check_text {
    font-size: 16px;
  }
}

.to_privacy {
  color: var(--color-font-black);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
}

@media (min-width: 768px) {
  .to_privacy {
    font-size: 16px;
  }
}


/* チェックボックスとラベルテキスト */
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}


/*ラベルの調整 */
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* CF7スパンタグリセット */
.wpcf7-form-control-wrap[data-name="acceptance"] {
  display: inline-block;
  vertical-align: middle;
}

.wpcf7-list-item {
  margin: 0;
  display: inline-block;
}

.wpcf7-list-item input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--color-blue);
}

/* リストアイテム自体の余白 */
.wpcf7-list-item {
  margin: 0 !important;
  display: inline-flex !important;
}

/* ラベル内の隙間を最小限にする */
.wpcf7-list-item label {
  margin: 0 !important;
  padding: 0 !important;
  gap: 16px !important;
  display: flex !important;
  align-items: center;
}

/* チェックボックス自体の外側の余白を消す */
.wpcf7-list-item input[type="checkbox"] {
  margin: 0 !important;
  padding: 0 !important;
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
}

/* CF7が自動挿入する「span」に幅がある場合の対策 */
.wpcf7-form-control-wrap {
  display: inline !important;
}

/* CF7特有の余計なマージンを消す */
.wpcf7-list-item {
  margin: 0;
  display: inline-block;
}

/* 送信ボタン */
/* ボタンの土台（外枠） */
.to_confirmation_btn.hover-btn {
  margin: 40px auto 0;
  max-width: 250px;
}

@media (min-width: 768px) {
  .to_confirmation_btn.hover-btn {
    max-width: 351px;
    margin: 60px auto 0;
  }
}

/* ボタン本体 */
/*未完了時 */
.to_confirmation_btn.hover-btn .send_btn_input {
  border: none !important;
  border-radius: 999px;
  box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  appearance: none;
  padding: 27px 0;
  color: var(--color-white);
  background: hsla(0, 0%, 82%, 1);
  transition: background 0.3s ease-out;
}

/* 完了時 */
.to_confirmation_btn.is-active .send_btn_input {
  background: var(--color-blue);
}

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

/* 送信エラー */
.wpcf7-response-output {
  border: none !important;
}

/* ====================お問い合わせ確認================================== */
.confirmation_section {
  background: var(--color-gray);
  padding: 100px 0;
}

@media (min-width: 768px) {
  .confirmation_section {
    background: var(--color-gray);
    padding: 180px 0;
  }
}

.confirmation-item-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-white);
  padding: 40px;
}

@media (min-width: 768px) {
  .confirmation-item-container {
    padding: min(5.714285714285714vw, 80px);
    gap: 24px;
  }
}

.confirmation-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .confirmation-item {
    flex-direction: row;
    align-items: flex-start;
  }
}

.confirmation-item-title,
.confirmation-item-text {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}

@media (min-width: 768px) {

  .confirmation-item-title,
  .confirmation-item-text {
    font-size: clamp(14px, 1.1428571428571428vw, 16px);
  }
}

.confirmation-item-title {
  font-weight: 500;
}

@media (min-width: 768px) {
  .confirmation-item-title {
    width: 27.7%;
    flex-shrink: 0;
  }
}

.confirmation-item-text {
  font-weight: 400;
}


.confirmation-item-text.no_link {
  color: var(--color-font-black);
}

/* 送信ボタン */
.to_send_btn {
  margin: 40px auto 0;
  max-width: 250px;
}

@media (min-width: 768px) {
.to_send_btn {
    max-width: 351px;
    margin: 60px auto 0;
  }
}

.to_send_btn .send_btn_input {
  border: none !important;
  border-radius: 999px;
  box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  appearance: none;
  padding: 27px 0;
  color: var(--color-white);
background: var(--color-blue);
  transition: background 0.3s ease-out;
}


/* 戻るボタン */
.back-button-container {
  max-width: 112px;
  margin: 0 auto;
  margin-top: 24px;
}

.back-button-container input {
  padding: 0;
  background: transparent;
  text-decoration: underline;
  color: var(--color-font-black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  text-decoration-style: solid;
}
/* ================thanks================== */


.contactComplete_section {
  background-color: var(--color-gray);
  padding: 160px 0 60px;
}

@media (min-width:768px) {
  .contactComplete_section {
    padding: 180px 0 80px;
  }
}

.contact_complete_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact_complete {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.75;
  text-align: center;
}

@media (min-width:768px) {
  .contact_complete {
    font-size: 28px;
  }
}

.subpage-text.contact_complete_inner {
  text-align: center;
}
@media (min-width:400px) {
.contact_complete_br {
display: none;
}
}

.contactComplete_bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width:768px) {
  .contactComplete_bottom {
  margin-top: 40px;
  gap: 60px;
}
}
.nonReceived_mail_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  padding: 20px;
  max-width: 440px;
  margin: 0 auto;
}
@media (min-width:768px) {
  .nonReceived_mail_container {
  padding: 24px;
  max-width: 669px;
}
}
.nonReceived_mail {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width:768px) {
  .nonReceived_mail {
    font-size: 20px;
  }
}

.to_contact_link {
  color: var(--color-blue);
  text-decoration: underline;
}

.read_more_btn.back_to_top {
  min-width: 190px;
}

.read_more_btn.back_to_top .read_more_btn_inner {
  justify-content: center;
}
/* ===============================================PRIVACY======================================================== */


.privacy_section {
  background: var(--color-font-black);
  padding: 50px 0 100px;
}

@media (min-width:768px) {
  .privacy_section {
    padding: 90px 0 180px;
  }
}

.privacy_body {
  color: var(--color-white);
  max-width: 806px;
  margin: 0 auto;
}

.privacy_content_container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width:768px) {
  .privacy_content_container {
    gap: clamp(32px, 4.285714285714286vw, 60px);
    margin-top: min(5.714285714285714vw, 80px);
  }
}

.privacy_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy_title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

@media (min-width:768px) {
  .privacy_title {
    font-size: clamp(20px, 1.7142857142857144vw, 24px);
  }
}

.privacy_list {
  padding-left: 16px;
  margin: 0;
}

.privacy_list_second {
  list-style-type: lower-alpha;
  padding-left: 16px;
    margin: 0;
}


.privacy_list_third {
  list-style-type: lower-roman;
  padding-left: 16px;
    margin: 0;
}

.privacy_list_item {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}

@media (min-width:768px) {
  .privacy_list_item {
    font-size: clamp(14px, 1.1428571428571428vw, 16px);
  }
}

.privacy_contact_text {
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}

@media (min-width:768px) {
  .privacy_contact_text {
    font-size: clamp(14px, 1.1428571428571428vw, 16px);
  }
}
/* ===============================================404========================================================== */

.notFound_section {
  background-color: var(--color-gray);
  padding: 160px 0 60px;
}

@media (min-width:768px) {
  .notFound_section {
    padding: 180px 0 80px;
  }
}

.notFound_container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notFound_num {
  color: var(--color-blue);
  font-family: var(--font-cabinet);
  font-weight: 500;
  font-size: 90px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
}
@media (min-width:768px) {
  .notFound_num {
    font-size: 120px;
  }
}
.notFound_blueText {
  color: var(--color-blue);
  font-family: var(--font-cabinet);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width:768px) {
  .notFound_blueText {
  font-size: 20px;
}
}
.notFound_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 28px;
}
@media (min-width:768px) {
  .notFound_bottom {
  gap: 60px;
  margin-top: 39px;
}
}
.not_found_text {
font-weight: 400;
font-size: 14px;
line-height: 2;
text-align: center;
}
@media (min-width:768px) {
  .not_found_text {
font-size: 16px;
}
}

