@charset "UTF-8";
/*
Theme Name:
License: うとね
License URI: https://utone.jp
Version : 1.0
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after,
blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

/* =====================================================
   変数・ミックスイン（案件ごとに color / font を調整）
   ===================================================== */
:root {
  --black: #000;
  --white: #fff;
  --color_key: #E68714;
  --color_key_light: #e4973a;
  --color_key_dark: #c27a34;
  --dark_gray: #484848;
  --gray: #EDEDED;
  --gray_text: #656565;
  --font_key: "Zen Old Mincho", serif;
  --font_base: "Zen Kaku Gothic New", sans-serif;
}

/* フェードイン
   ----------------------------------------------------- */
@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* セクション余白（上下 padding）
   ----------------------------------------------------- */
/* スペーシング（margin / padding ユーティリティの元データ）
   ----------------------------------------------------- */
/* ブレイクポイント
   ----------------------------------------------------- */
/* 全体的なサイト設定
========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 0.6944444444vw;
  margin: 0;
  padding: 0;
}
@media (min-width: 1441px) {
  html {
    font-size: clamp(10px, 0.65vw, 11px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 10px;
  }
}
html {
  line-height: 1.7;
}
html.scroll {
  scroll-behavior: auto;
}

html:has(main.is_front) {
  scroll-behavior: auto;
}

html {
  scroll-padding-top: 14rem;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 8rem;
  }
}

body {
  font-size: max(1.6rem, 15px);
  margin: 0;
  padding: 0;
  font-family: var(--font_base);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.02em;
  position: relative;
  background-color: var(--gray);
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  /* 英数字やURLの折り返し対策 */
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
body.open, body.modal_active {
  overflow: hidden !important;
}

main {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

i {
  font-weight: bold;
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--black);
  transition: 0.4s;
}
a.block {
  display: block;
}

strong {
  font-weight: bold;
}

button {
  border: none;
  background: none;
  padding: 0;
  outline: none;
  cursor: pointer;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* 英語テキスト専用の調整 */
body:lang(en), p:lang(en),
h1:lang(en), h2:lang(en), h3:lang(en),
h4:lang(en), h5:lang(en), h6:lang(en) {
  text-align: left;
  word-break: normal;
  letter-spacing: normal;
}

/* 日本語＋英語混在の見出し調整 */
h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
}

/* width関連
========================== */
.w_xl {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 95vw;
}
@media (max-width: 768px) {
  .w_xl {
    width: 94vw;
  }
}
.w_l {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 90vw;
  max-width: 1220px;
}
@media (min-width: 1701px) {
  .w_l {
    max-width: 134.2rem;
  }
}
@media (min-width: 2001px) {
  .w_l {
    max-width: 146.4rem;
  }
}
@media (max-width: 768px) {
  .w_l {
    width: 92vw;
  }
}
.w_m {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 88vw;
  max-width: 1150px;
}
@media (min-width: 1701px) {
  .w_m {
    max-width: 126.5rem;
  }
}
@media (min-width: 2001px) {
  .w_m {
    max-width: 138rem;
  }
}
@media (max-width: 768px) {
  .w_m {
    width: 90vw;
  }
}
.w_ms {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 88vw;
  max-width: 976px;
}
@media (min-width: 1701px) {
  .w_ms {
    max-width: 107.36rem;
  }
}
@media (min-width: 2001px) {
  .w_ms {
    max-width: 117.12rem;
  }
}
@media (max-width: 768px) {
  .w_ms {
    width: 90vw;
  }
}
.w_s {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 85vw;
  max-width: 850px;
}
@media (min-width: 1701px) {
  .w_s {
    max-width: 93.5rem;
  }
}
@media (min-width: 2001px) {
  .w_s {
    max-width: 102rem;
  }
}
@media (max-width: 600px) {
  .w_s {
    width: 90vw;
  }
}
.w_xs {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 80vw;
  max-width: 750px;
}
@media (min-width: 1701px) {
  .w_xs {
    max-width: 82.5rem;
  }
}
@media (min-width: 2001px) {
  .w_xs {
    max-width: 90rem;
  }
}
@media (max-width: 600px) {
  .w_xs {
    width: 90vw;
  }
}
.w_100 {
  width: 100%;
}
.w_l_left {
  margin-left: calc((100vw - min(90vw, 1220px)) / 2);
}
@media (min-width: 1701px) {
  .w_l_left {
    margin-left: calc((100vw - min(90vw, 134.2rem)) / 2);
  }
}
@media (min-width: 2001px) {
  .w_l_left {
    margin-left: calc((100vw - min(90vw, 146.4rem)) / 2);
  }
}
@media (max-width: 768px) {
  .w_l_left {
    margin-left: 4vw;
  }
}

/* 余白ユーティリティ
========================== */
.mb_xxxl {
  margin-bottom: 17.5rem;
}
@media (max-width: 768px) {
  .mb_xxxl {
    margin-bottom: 14rem;
  }
}
.mb_xxl {
  margin-bottom: 15rem;
}
@media (max-width: 768px) {
  .mb_xxl {
    margin-bottom: 12rem;
  }
}
.mb_xl {
  margin-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .mb_xl {
    margin-bottom: 10rem;
  }
}
.mb_l {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .mb_l {
    margin-bottom: 8rem;
  }
}
.mb_m {
  margin-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .mb_m {
    margin-bottom: 6rem;
  }
}
.mb_s {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .mb_s {
    margin-bottom: 4rem;
  }
}
.mb_xs {
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .mb_xs {
    margin-bottom: 2.8rem;
  }
}
.mb_xxs {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .mb_xxs {
    margin-bottom: 1.6rem;
  }
}
.mb_2 {
  margin-bottom: 2em;
}
.mb_15 {
  margin-bottom: 1.5em;
}
.mb_1 {
  margin-bottom: 1em;
}
.mb_075 {
  margin-bottom: 0.75em;
}
.mb_05 {
  margin-bottom: 0.5em;
}
.mb_025 {
  margin-bottom: 0.25em;
}
.mb_0 {
  margin-bottom: 0;
}
.mb_05vw {
  margin-bottom: 0.5vw;
}

.mt_xl {
  margin-top: 12.5rem;
}
@media (max-width: 768px) {
  .mt_xl {
    margin-top: 10rem;
  }
}
.mt_l {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .mt_l {
    margin-top: 8rem;
  }
}
.mt_m {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .mt_m {
    margin-top: 6rem;
  }
}
.mt_s {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .mt_s {
    margin-top: 4rem;
  }
}
.mt_05 {
  margin-top: 0.5em;
}
.mt_1 {
  margin-top: 1em;
}
.mt_15 {
  margin-top: 1.5em;
}

.pb_xl {
  padding-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .pb_xl {
    padding-bottom: 10rem;
  }
}
.pb_l {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .pb_l {
    padding-bottom: 8rem;
  }
}
.pb_m {
  padding-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .pb_m {
    padding-bottom: 6rem;
  }
}
.pb_s {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .pb_s {
    padding-bottom: 4rem;
  }
}
.pb_xs {
  padding-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .pb_xs {
    padding-bottom: 2.8rem;
  }
}
.pb_xxs {
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .pb_xxs {
    padding-bottom: 1.6rem;
  }
}

.pt_xl {
  padding-top: 12.5rem;
}
@media (max-width: 768px) {
  .pt_xl {
    padding-top: 10rem;
  }
}
.pt_l {
  padding-top: 10rem;
}
@media (max-width: 768px) {
  .pt_l {
    padding-top: 8rem;
  }
}
.pt_m {
  padding-top: 7.5rem;
}
@media (max-width: 768px) {
  .pt_m {
    padding-top: 6rem;
  }
}
.pt_s {
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .pt_s {
    padding-top: 4rem;
  }
}
.pt_xs {
  padding-top: 3.5rem;
}
@media (max-width: 768px) {
  .pt_xs {
    padding-top: 2.8rem;
  }
}
.pt_xxs {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .pt_xxs {
    padding-top: 1.6rem;
  }
}

/* セクション余白
========================== */
.sct_l {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .sct_l {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
.sct_m {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .sct_m {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.sct_s {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .sct_s {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
.sct_xs {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .sct_xs {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.sct_xxs {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .sct_xxs {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.bg_w {
  background-color: var(--white);
  margin-left: 0.5vw;
  margin-right: 0.5vw;
  border-radius: 1.5rem;
}
@media (max-width: 768px) {
  .bg_w {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

/* テキスト系ユーティリティ
========================== */
.fz_14 {
  font-size: 1.4em;
}
.fz_13 {
  font-size: 1.3em;
}
.fz_12 {
  font-size: 1.2em;
}
.fz_11 {
  font-size: 1.1em;
}
.fz_105 {
  font-size: 1.05em;
}
.fz_095 {
  font-size: 0.95em;
}
.fz_09 {
  font-size: 0.9em;
}
.fz_085 {
  font-size: 0.85em;
}
.fz_08 {
  font-size: 0.8em;
}
.fz_m {
  font-size: max(1.7rem, 16px);
}
@media (max-width: 768px) {
  .fz_m {
    font-size: 16px;
  }
}
.fz_s {
  font-size: max(1.4rem, 14px);
}
@media (max-width: 768px) {
  .fz_s {
    font-size: 14px;
  }
}

.lh_1 {
  line-height: 1;
}
.lh_19 {
  line-height: 1.9;
}
.lh_2 {
  line-height: 2;
}

.fw_700 {
  font-weight: 700;
}
.fw_500 {
  font-weight: 500;
}

.t_center {
  text-align: center;
}

.t_right {
  text-align: right;
}

.inline_block {
  display: inline-block;
}

.text_gray {
  color: var(--gray_text);
}

.text_key {
  color: var(--color_key);
}

.font_maru {
  font-family: var(--font_maru);
}

.border_top {
  border-top: 1px solid var(--light_gray);
}

.border_bottom {
  border-bottom: 1px solid var(--light_gray);
}

@media (max-width: 1250px) {
  .none_medium {
    display: none;
  }
}
@media (max-width: 1100px) {
  .none_1100 {
    display: none;
  }
}
@media (max-width: 960px) {
  .none_tb {
    display: none;
  }
}
@media (max-width: 768px) {
  .none_tbs {
    display: none;
  }
}
@media (max-width: 600px) {
  .none_sp {
    display: none;
  }
}
@media (max-width: 425px) {
  .none_sps {
    display: none;
  }
}

.block_medium {
  display: none;
}
@media (max-width: 1250px) {
  .block_medium {
    display: block;
  }
}
.block_1100 {
  display: none;
}
@media (max-width: 1100px) {
  .block_1100 {
    display: block;
  }
}
.block_tb {
  display: none;
}
@media (max-width: 960px) {
  .block_tb {
    display: block;
  }
}
.block_tbs {
  display: none;
}
@media (max-width: 768px) {
  .block_tbs {
    display: block;
  }
}
.block_sp {
  display: none;
}
@media (max-width: 600px) {
  .block_sp {
    display: block;
  }
}
.block_sps {
  display: none;
}
@media (max-width: 425px) {
  .block_sps {
    display: block;
  }
}

/* =====================================================
   サイト共通パーツ（見出し・ボタン・パンくず 等）
   ===================================================== */
/* セクションタイトル
   ----------------------------------------------------- */
.cmmn_section_title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font_base);
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 2.2;
  color: var(--gray_text);
}
@media (max-width: 768px) {
  .cmmn_section_title {
    gap: 0.9rem;
    font-size: max(1.4rem, 13px);
    line-height: 2.5;
  }
}
.cmmn_section_title .dot {
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--color_key);
}
@media (max-width: 768px) {
  .cmmn_section_title .dot {
    width: 0.6rem;
    height: 0.6rem;
  }
}

.cmmn_title {
  margin-bottom: 2.7rem;
  font-size: max(4rem, 27px);
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--font_key);
}
@media (max-width: 768px) {
  .cmmn_title {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
}

/* セクション見出しセット（title + 大見出し A/B）
   ----------------------------------------------------- */
.cmmn_section_head {
  display: flex;
  flex-direction: column;
}
.cmmn_section_head.is_a {
  align-items: flex-start;
  gap: 1.1rem;
}
@media (max-width: 768px) {
  .cmmn_section_head.is_a {
    align-items: center;
    text-align: center;
  }
  .cmmn_section_head.is_a .cmmn_section_title {
    justify-content: center;
  }
}
.cmmn_section_head.is_b {
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}
.cmmn_section_head.is_b .cmmn_section_title {
  justify-content: center;
}
@media (max-width: 768px) {
  .cmmn_section_head.is_b {
    gap: 0.7rem;
  }
}

.cmmn_heading_l {
  font-weight: 700;
  font-size: max(5.7rem, 35px);
  line-height: 1.3;
  color: var(--black);
}
@media (max-width: 768px) {
  .cmmn_heading_l {
    font-size: min(9vw, 35px);
  }
}

.cmmn_heading_m {
  font-family: var(--font_key);
  font-weight: 700;
  font-size: max(3.6rem, 22px);
  line-height: 1.47;
  color: var(--black);
}
@media (max-width: 768px) {
  .cmmn_heading_m {
    font-size: min(5vw, 2.1rem);
    line-height: 1.5;
  }
}
.cmmn_heading_m {
  /* 強調したい箱書き（下線状のキーカラー） */
}
.cmmn_heading_m .mark {
  background: linear-gradient(transparent calc(100% - 0.73em), var(--color_key) calc(100% - 0.73em));
}

/* 共通ボタン
   ----------------------------------------------------- */
.cmmn_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1.2em 3em;
  border-radius: 999px;
  font-size: max(1.5rem, 14px);
  transition: 0.4s;
}
.cmmn_btn.bg_key {
  background: var(--color_key);
  color: var(--white);
}
.cmmn_btn.bg_dark {
  background: var(--dark_gray);
  color: var(--white);
}
.cmmn_btn.bg_white {
  background: var(--white);
  color: var(--black);
}
.cmmn_btn.border {
  border: 1px solid currentColor;
}
.cmmn_btn.is_rect {
  gap: 0;
  padding: 0.7rem 1.9rem;
  min-height: 4rem;
  border-radius: 0.4rem;
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  line-height: 1.7;
}
.cmmn_btn.is_rect:hover {
  background-color: var(--color_key);
}
.cmmn_btn.arrow .arrow {
  width: 1em;
  height: 1px;
  background: currentColor;
  position: relative;
}
.cmmn_btn.arrow .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.cmmn_btn:hover {
  opacity: 0.7;
}

/* パンくず
   ----------------------------------------------------- */
.breadcrumb {
  font-size: max(1.2rem, 11px);
  padding: 1.5rem 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.breadcrumb li:last-child {
  color: var(--black);
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  transform: rotate(45deg);
}
.breadcrumb a {
  color: #B3B3B3;
}
.breadcrumb a:hover {
  color: var(--color_key);
}

/* =====================================================
   セクション共通レイアウト（汎用パーツ）
   本番テーマから案件固有を除いて汎用化したもの。
   案件ごとに不要なものは削除して使う。
   ===================================================== */
/* セクション土台（背景バリエーション付き）
   ----------------------------------------------------- */
.cmmn_sct {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .cmmn_sct {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cmmn_sct.bg_beige {
  background: var(--beige);
}
.cmmn_sct.bg_gray {
  background: var(--light_gray);
}
.cmmn_sct.bg_key {
  background: var(--color_key);
  color: var(--white);
}

/* ページ見出し
   ----------------------------------------------------- */
.headline_sct {
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
  padding: 19rem 0 2.2rem;
}
@media (max-width: 768px) {
  .headline_sct {
    padding: 11rem 0 0;
  }
}
.headline_sct .back_box {
  margin-bottom: 4.9rem;
}
@media (max-width: 768px) {
  .headline_sct .back_box {
    margin-bottom: 2.5rem;
  }
}
.headline_sct .back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: max(1.4rem, 14px);
  line-height: 1.44;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .headline_sct .back {
    font-size: 1.4rem;
  }
}
.headline_sct .back:hover {
  opacity: 0.7;
}
.headline_sct .back .arrow {
  flex-shrink: 0;
  width: 1.33rem;
  height: 1.33rem;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(-135deg);
}
.headline_sct .headline_box {
  position: relative;
  overflow: visible;
}
.headline_sct .headline_box .title {
  margin: 0;
  font-family: var(--font_key);
  font-size: max(5.5rem, 35px);
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .headline_sct .headline_box .title {
    font-size: min(9vw, 35px);
    line-height: 1.3;
  }
}
.headline_sct .headline_box .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 18.2rem;
  margin: 0;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (max-width: 960px) {
  .headline_sct .headline_box .image {
    width: 16rem;
  }
}
@media (max-width: 768px) {
  .headline_sct .headline_box .image {
    width: min(15vw, 6rem);
  }
}
.headline_sct .headline_box .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 0.55/1;
  transform: scale(1.1);
  animation: mv_zoom_out 10s ease-out forwards;
}
.headline_sct .breadcrumb_box {
  margin-top: 3.9rem;
}
@media (max-width: 768px) {
  .headline_sct .breadcrumb_box {
    margin-top: 1.5rem;
  }
}
@media (max-width: 600px) {
  .headline_sct.is_image_b .headline_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5vw;
  }
}
@media (max-width: 600px) {
  .headline_sct.is_image_b .headline_box .title {
    font-size: min(8.5vw, 35px);
  }
}
.headline_sct.is_image_b .headline_box .image {
  width: 34rem;
}
@media (max-width: 768px) {
  .headline_sct.is_image_b .headline_box .image {
    width: min(25vw, 12rem);
  }
}
@media (max-width: 600px) {
  .headline_sct.is_image_b .headline_box .image {
    position: unset;
  }
}
.headline_sct.is_image_b .headline_box .image img {
  aspect-ratio: 1/0.7;
}

/* カードグリッド（col2 / col3 / col4）
   ----------------------------------------------------- */
.cmmn_grid {
  display: grid;
  gap: 4rem 3rem;
}
@media (max-width: 768px) {
  .cmmn_grid {
    gap: 3rem 2.4rem;
  }
}
.cmmn_grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.cmmn_grid.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.cmmn_grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
  .cmmn_grid.col3, .cmmn_grid.col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cmmn_grid.col2, .cmmn_grid.col3, .cmmn_grid.col4 {
    grid-template-columns: 1fr;
  }
}

/* カード（画像＋テキスト）
   ----------------------------------------------------- */
.cmmn_card {
  display: block;
}
.cmmn_card .image {
  overflow: hidden;
  border-radius: 0.5em;
  margin-bottom: 1.5rem;
}
.cmmn_card .image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.7;
  object-fit: cover;
  transition: 0.4s;
}
.cmmn_card .title {
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  line-height: 1.5;
}
.cmmn_card .text {
  margin-top: 0.5em;
  font-size: max(1.4rem, 13px);
  color: var(--gray_text);
}
.cmmn_card:hover .image img {
  transform: scale(1.06);
}

/* お知らせ／投稿リスト（日付・カテゴリ・タイトル）
   ----------------------------------------------------- */
.cmmn_post_list {
  border-top: 1px solid var(--light_gray);
}
.cmmn_post_list .item {
  display: flex;
  align-items: flex-start;
  gap: 2em;
  padding: 1.5em 0;
  border-bottom: 1px solid var(--light_gray);
  font-size: max(1.6rem, 14px);
}
@media (max-width: 768px) {
  .cmmn_post_list .item {
    flex-direction: column;
    gap: 0.6em;
    padding: 1em 0;
  }
}
.cmmn_post_list .item .date {
  width: 6em;
  flex-shrink: 0;
  font-family: var(--font_key);
  color: var(--gray_text);
}
.cmmn_post_list .item .category {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: max(1.2rem, 10px);
  border: 1px solid var(--light_gray);
  border-radius: 5px;
  padding: 0.2em 0.8em;
  color: var(--gray_text);
}
.cmmn_post_list .item .title {
  flex: 1;
  transition: 0.3s;
}
.cmmn_post_list .item:hover .title {
  color: var(--color_key);
}

/* アコーディオン（FAQ 等。main.js の .js_acc とセット）
   ----------------------------------------------------- */
.cmmn_acc {
  border-bottom: 1px solid var(--light_gray);
}
.cmmn_acc .head {
  position: relative;
  cursor: pointer;
  padding: 1.2em 3em 1.2em 0;
  font-size: max(1.7rem, 16px);
  font-weight: 500;
  transition: 0.3s;
}
.cmmn_acc .head:hover {
  opacity: 0.7;
}
.cmmn_acc .head .plus {
  position: absolute;
  right: 0.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.5em;
  height: 1.5em;
  background: var(--color_key);
  border-radius: 50%;
}
.cmmn_acc .head .plus::before, .cmmn_acc .head .plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--white);
  border-radius: 10px;
}
.cmmn_acc .head .plus::before {
  width: 50%;
  height: 2px;
}
.cmmn_acc .head .plus::after {
  width: 2px;
  height: 50%;
  transition: 0.3s;
}
.cmmn_acc .body {
  display: none;
  padding: 0 0 1.5em;
  color: var(--gray_text);
}
.cmmn_acc.active .head .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* 連絡先ボックス
   ----------------------------------------------------- */
.cmmn_contact {
  border-radius: 0.5em;
  padding: 4.5rem 10%;
  background: var(--beige);
  text-align: center;
}
@media (max-width: 768px) {
  .cmmn_contact {
    padding: 3rem 5%;
  }
}
.cmmn_contact .title {
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  margin-bottom: 1em;
}
.cmmn_contact .tel {
  font-family: var(--font_key);
  font-size: max(2.8rem, 22px);
  font-weight: 500;
}

/* ページネーション（WP-PageNavi 対応）
   ----------------------------------------------------- */
.cmmn_pagenavi {
  margin-top: 8.4rem;
}
@media (max-width: 768px) {
  .cmmn_pagenavi {
    margin-top: 5rem;
  }
}
.cmmn_pagenavi .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1rem;
}
@media (max-width: 768px) {
  .cmmn_pagenavi .wp-pagenavi {
    gap: 0 0.7rem;
  }
}
.cmmn_pagenavi .wp-pagenavi .pages,
.cmmn_pagenavi .wp-pagenavi .extend {
  display: none;
}
.cmmn_pagenavi .wp-pagenavi a,
.cmmn_pagenavi .wp-pagenavi span {
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  line-height: 1.4;
  color: #A6A6A6;
  border: none;
}
@media (max-width: 768px) {
  .cmmn_pagenavi .wp-pagenavi a,
  .cmmn_pagenavi .wp-pagenavi span {
    font-size: 1.8rem;
  }
}
.cmmn_pagenavi .wp-pagenavi a {
  padding: 10px;
}
.cmmn_pagenavi .wp-pagenavi a:hover {
  color: var(--color_key);
}
.cmmn_pagenavi .wp-pagenavi .current {
  color: var(--black);
}
.cmmn_pagenavi .wp-pagenavi .current:hover {
  background: none;
  color: #A6A6A6;
}
.cmmn_pagenavi .wp-pagenavi .previouspostslink,
.cmmn_pagenavi .wp-pagenavi .nextpostslink {
  position: relative;
  flex-shrink: 0;
  width: 1.8rem;
  height: 2.8rem;
  font-size: 0;
  line-height: 0;
}
.cmmn_pagenavi .wp-pagenavi .previouspostslink::before,
.cmmn_pagenavi .wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: #A6A6A6;
  transition: color 0.3s;
}
.cmmn_pagenavi .wp-pagenavi .previouspostslink:hover::before,
.cmmn_pagenavi .wp-pagenavi .nextpostslink:hover::before {
  color: var(--color_key);
}
.cmmn_pagenavi .wp-pagenavi .previouspostslink::before {
  transform: translate(calc(-50% + 0.12rem), -50%) rotate(-135deg);
}
.cmmn_pagenavi .wp-pagenavi .nextpostslink::before {
  transform: translate(calc(-50% - 0.12rem), -50%) rotate(45deg);
}

/* 開発・取引実績
   ----------------------------------------------------- */
@media (max-width: 768px) {
  .cmmn_works_sct {
    margin-bottom: 0.5rem;
  }
}
.cmmn_works_sct .works_wrap {
  padding: 5.5rem 0 6rem;
}
@media (max-width: 768px) {
  .cmmn_works_sct .works_wrap {
    padding: 3.5rem 0 4rem;
  }
}
.cmmn_works_sct .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .cmmn_works_sct .head {
    margin-bottom: 2.4rem;
    justify-content: center;
  }
}
.cmmn_works_sct .head .cmmn_btn.is_rect {
  flex-shrink: 0;
  min-height: 4rem;
  padding: 0.7rem 1.7rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cmmn_works_sct .head .cmmn_btn.is_rect {
    display: none;
  }
}
.cmmn_works_sct .works_slider {
  position: relative;
  margin-left: calc((100vw - min(90vw, 1220px)) / 2 - (100vw - (100vw - 1rem)));
}
@media (min-width: 1701px) {
  .cmmn_works_sct .works_slider {
    margin-left: calc((100vw - min(90vw, 122rem)) / 2 - (100vw - (100vw - 1rem)));
  }
}
@media (min-width: 2001px) {
  .cmmn_works_sct .works_slider {
    margin-left: calc((100vw - min(90vw, 146.4rem)) / 2 - (100vw - (100vw - 1rem)));
  }
}
@media (max-width: 768px) {
  .cmmn_works_sct .works_slider {
    margin-left: 4vw;
  }
}
.cmmn_works_sct .swiper-container {
  overflow: hidden;
}
.cmmn_works_sct .item a {
  display: block;
  color: inherit;
}
.cmmn_works_sct .item .image {
  overflow: hidden;
  border-radius: 0.5rem;
}
.cmmn_works_sct .item .image img {
  display: block;
  width: 100%;
  height: 26.1rem;
  object-fit: cover;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .cmmn_works_sct .item .image img {
    height: 100%;
    aspect-ratio: 1/0.7;
  }
}
.cmmn_works_sct .item .ttl {
  margin-top: 1.6rem;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .cmmn_works_sct .item .ttl {
    font-size: 15px;
  }
}
.cmmn_works_sct .item a:hover .image img {
  transform: scale(1.05);
}
.cmmn_works_sct .item a:hover .ttl {
  color: var(--color_key);
}
.cmmn_works_sct .works_btns {
  position: relative;
}
.cmmn_works_sct .swiper-button-prev,
.cmmn_works_sct .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 13rem;
  width: 4.8rem;
  height: 4.8rem;
  transition: 0.3s;
  background-image: url("assets/images/icon/arrow.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .cmmn_works_sct .swiper-button-prev,
  .cmmn_works_sct .swiper-button-next {
    top: 14rem;
  }
}
@media (max-width: 768px) {
  .cmmn_works_sct .swiper-button-prev,
  .cmmn_works_sct .swiper-button-next {
    width: 3.6rem;
    height: 3.6rem;
    top: 10rem;
  }
}
.cmmn_works_sct .swiper-button-prev::after,
.cmmn_works_sct .swiper-button-next::after {
  content: none;
}
.cmmn_works_sct .swiper-button-prev .icon,
.cmmn_works_sct .swiper-button-next .icon {
  display: block;
  width: 1.2rem;
  height: auto;
}
@media (max-width: 768px) {
  .cmmn_works_sct .swiper-button-prev .icon,
  .cmmn_works_sct .swiper-button-next .icon {
    width: 1rem;
  }
}
.cmmn_works_sct .swiper-button-prev:hover,
.cmmn_works_sct .swiper-button-next:hover {
  opacity: 0.7;
}
.cmmn_works_sct .swiper-button-prev {
  left: -4.5rem;
}
@media (max-width: 960px) {
  .cmmn_works_sct .swiper-button-prev {
    left: -4rem;
  }
}
@media (max-width: 768px) {
  .cmmn_works_sct .swiper-button-prev {
    left: -2vw;
  }
}
.cmmn_works_sct .swiper-button-next {
  right: -4.5rem;
  transform: rotate(180deg);
}
@media (max-width: 960px) {
  .cmmn_works_sct .swiper-button-next {
    right: -4rem;
  }
}
@media (max-width: 768px) {
  .cmmn_works_sct .swiper-button-next {
    right: -2vw;
  }
}
@media (max-width: 768px) {
  .cmmn_works_sct .foot {
    margin-top: 4rem;
  }
}

/* 事業内容・強み（カード）
   ----------------------------------------------------- */
.cmmn_business_sct .cmmn_section_head.is_a {
  gap: 2.5rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .cmmn_business_sct .cmmn_section_head.is_a {
    gap: 1.2rem;
    margin-bottom: 3.5rem;
  }
}
.cmmn_business_sct .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.1rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .cmmn_business_sct .cards {
    grid-template-columns: 1fr;
    gap: 5.7rem;
  }
}
.cmmn_business_sct .item {
  position: relative;
  padding-top: 3.4rem;
}
.cmmn_business_sct .item .num {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.7rem;
  height: 6.7rem;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
  font-family: var(--font_key);
}
.cmmn_business_sct .item .card {
  display: flex;
  flex-direction: column;
  min-height: 41.7rem;
  padding: 4.7rem 2.4rem 2.4rem;
  background: var(--white);
  border-radius: 0.8rem;
}
@media (max-width: 768px) {
  .cmmn_business_sct .item .card {
    min-height: auto;
    padding: 4.7rem 5vw 2rem;
  }
}
.cmmn_business_sct .item .ttl {
  margin: 0 0 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  font-family: var(--font_key);
}
@media (max-width: 768px) {
  .cmmn_business_sct .item .ttl {
    margin-bottom: 1.5rem;
  }
}
.cmmn_business_sct .item .video {
  margin: 0 0 2rem;
}
.cmmn_business_sct .item .video video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.cmmn_business_sct .item .text {
  margin: auto 0 0;
  font-size: max(1.6rem, 15px);
  font-weight: 500;
  line-height: 1.4;
}
.cmmn_business_sct .item .text strong {
  color: var(--color_key);
}
.cmmn_business_sct .lead {
  margin: 3.7rem auto 0;
  font-size: max(1.6rem, 15px);
  font-weight: 500;
  line-height: 2.2;
}
@media (max-width: 768px) {
  .cmmn_business_sct .lead {
    margin-top: 4rem;
    line-height: 2.1;
  }
}

/* Swiper infinity loop（autoplay delay:0 連続スクロール）
   ----------------------------------------------------- */
.swiper-container.is_infinity_loop .swiper-wrapper {
  transition-timing-function: linear;
}

/* 会社概要ナビ
   ----------------------------------------------------- */
.cmmn_company_sct .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.3rem;
}
@media (max-width: 768px) {
  .cmmn_company_sct .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
}
.cmmn_company_sct .title {
  font-family: var(--font_key);
  font-size: max(3.2rem, 24px);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cmmn_company_sct .title {
    font-size: 2.4rem;
  }
}
.cmmn_company_sct .back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.44;
  transition: opacity 0.3s;
}
.cmmn_company_sct .back:hover {
  opacity: 0.7;
}
.cmmn_company_sct .back .arrow {
  flex-shrink: 0;
  width: 1.33rem;
  height: 1.33rem;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
}
.cmmn_company_sct .list {
  display: flex;
  gap: 1.7rem;
}
@media (max-width: 768px) {
  .cmmn_company_sct .list {
    flex-direction: column;
    gap: 1.7rem;
  }
}
.cmmn_company_sct .item {
  flex: 1;
  min-width: 0;
}
.cmmn_company_sct .link {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 8.55rem;
  padding-bottom: 1.2rem;
  padding-left: 1.7rem;
  padding-right: 53%;
  background: var(--white);
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.25);
  color: var(--black);
  font-family: var(--font_key);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.22;
  overflow: hidden;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .cmmn_company_sct .link {
    min-height: 8rem;
    padding-left: 1.5rem;
    font-size: 1.4rem;
  }
}
.cmmn_company_sct a.link:hover {
  opacity: 0.85;
}
.cmmn_company_sct .item.is_current .link {
  background: var(--gray);
  opacity: 0.6;
}
.cmmn_company_sct .text {
  position: relative;
  z-index: 1;
}
.cmmn_company_sct .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 53.4%;
  height: 100%;
  background-image: var(--company-nav-bg);
  background-size: cover;
  background-position: center;
}

/* リスト
   ----------------------------------------------------- */
.cmmn_dl {
  display: grid;
  grid-template-columns: 8.5em 1fr;
}
@media (max-width: 768px) {
  .cmmn_dl {
    grid-template-columns: 1fr;
  }
}
.cmmn_dl dt,
.cmmn_dl dd {
  padding-top: 1em;
  padding-bottom: 1em;
}
.cmmn_dl dt:first-of-type,
.cmmn_dl dd:first-of-type {
  padding-top: 0;
}
.cmmn_dl dt {
  font-weight: 700;
  border-bottom: 2px solid var(--black);
}
@media (max-width: 768px) {
  .cmmn_dl dt {
    padding-bottom: 0.5em;
  }
}
.cmmn_dl dt:first-of-type {
  padding-top: 1em;
  border-top: 2px solid var(--black);
}
@media (max-width: 768px) {
  .cmmn_dl dt:first-of-type {
    border-top: none;
    padding-top: 0.5em;
  }
}
.cmmn_dl dd {
  border-bottom: 1px dashed #989898;
}
.cmmn_dl dd:first-of-type {
  padding-top: 1em;
  border-top: 1px dashed #989898;
}
@media (max-width: 768px) {
  .cmmn_dl dd:first-of-type {
    border-top: none;
    padding-top: 0.5em;
  }
}

/* =====================================================
   お問い合わせ（Contact Form 7）
   Figma: 327:1090
   markup: dl.contactForm > dt + dd
   ===================================================== */
.form_sct .wrap .lead {
  text-align: center;
  font-size: max(2rem, 20px);
  font-weight: 700;
  line-height: 3.5;
}
@media (max-width: 768px) {
  .form_sct .wrap .lead {
    font-size: 1.8rem;
    line-height: 1.7;
    text-align: left;
  }
}
.form_sct .wrap .note {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.9rem;
  margin-bottom: 0.7rem;
  font-size: max(1.3rem, 13px);
  line-height: 3.1;
  color: #D40000;
}
@media (max-width: 768px) {
  .form_sct .wrap .note {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
.form_sct .contactForm {
  display: grid;
  grid-template-columns: 15em minmax(0, 100%);
  column-gap: 0;
  row-gap: 2.4rem;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .form_sct .contactForm {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}
.form_sct .contactForm dt {
  min-height: 6.2rem;
  font-size: max(2rem, 18px);
  line-height: 2;
}
@media (max-width: 768px) {
  .form_sct .contactForm dt {
    min-height: 0;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    line-height: 1.7;
  }
}
.form_sct .contactForm dt:has(+ dd .wpcf7-validates-as-required) > p {
  display: flex;
  align-items: center;
}
.form_sct .contactForm dt:has(+ dd .wpcf7-validates-as-required) > p::after {
  content: "※";
  margin-left: 0.5em;
  color: #D40000;
  font-size: 0.6em;
}
.form_sct .contactForm dt:has(+ dd textarea) {
  align-items: flex-start;
  padding-top: 1.8rem;
  min-height: 0;
}
@media (max-width: 768px) {
  .form_sct .contactForm dt:has(+ dd textarea) {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .form_sct .contactForm dd {
    margin-bottom: 2.4rem;
  }
}
.form_sct .contactForm dd label {
  display: block;
}
.form_sct .contactForm dd .wpcf7-form-control-wrap {
  display: block;
}
.form_sct .contactForm input[type=text],
.form_sct .contactForm input[type=email],
.form_sct .contactForm input[type=tel],
.form_sct .contactForm input[type=number],
.form_sct .contactForm input[type=date],
.form_sct .contactForm select,
.form_sct .contactForm textarea {
  width: 100%;
  min-height: 6.2rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: 1px solid #DFDFDF;
  border-radius: 0.5rem;
  background: var(--white);
  font-size: max(1.6rem, 16px);
  font-family: inherit;
}
.form_sct .contactForm input[type=text]:focus,
.form_sct .contactForm input[type=email]:focus,
.form_sct .contactForm input[type=tel]:focus,
.form_sct .contactForm input[type=number]:focus,
.form_sct .contactForm input[type=date]:focus,
.form_sct .contactForm select:focus,
.form_sct .contactForm textarea:focus {
  outline: none;
  border-color: var(--color_key);
}
@media (max-width: 768px) {
  .form_sct .contactForm input[type=text],
  .form_sct .contactForm input[type=email],
  .form_sct .contactForm input[type=tel],
  .form_sct .contactForm input[type=number],
  .form_sct .contactForm input[type=date],
  .form_sct .contactForm select,
  .form_sct .contactForm textarea {
    min-height: 5rem;
    font-size: 1.6rem;
  }
}
.form_sct .contactForm textarea {
  min-height: 23.2rem;
  resize: vertical;
}
@media (max-width: 768px) {
  .form_sct .contactForm textarea {
    min-height: 18rem;
  }
}
.form_sct .wpcf7-form > p:has(.wpcf7-submit) {
  margin-top: 5.9rem;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .form_sct .wpcf7-form > p:has(.wpcf7-submit) {
    margin-top: 3rem;
  }
}
.form_sct .wpcf7-form > p:has(.wpcf7-submit) .wpcf7-submit {
  cursor: pointer;
  width: 33rem;
  max-width: 100%;
  min-height: 4rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border: none;
  border-radius: 0.4rem;
  background: var(--dark_gray);
  color: var(--white);
  font-size: max(1.5rem, 15px);
  font-weight: 700;
  line-height: 1.7;
  transition: 0.4s;
}
.form_sct .wpcf7-form > p:has(.wpcf7-submit) .wpcf7-submit:hover {
  background: var(--color_key);
}
@media (max-width: 768px) {
  .form_sct .wpcf7-form > p:has(.wpcf7-submit) .wpcf7-submit {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* =====================================================
   ヘッダー
   ===================================================== */
.header {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .header {
    top: 0;
  }
}
.header.is_hidden {
  transform: translateY(calc(-100% - 4rem));
}
@media (max-width: 768px) {
  .header.is_hidden {
    transform: translateY(-100%);
  }
}
.header .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header .inner {
    padding-top: 1.5rem;
  }
}
.header {
  /* ロゴ（マーク＋BRING＋社名＋キャッチの一体SVG） */
}
.header .logo {
  display: block;
}
.header .logo img {
  width: auto;
  height: 8rem;
}
@media (max-width: 768px) {
  .header .logo img {
    height: 6rem;
  }
}
.header {
  /* ---------- PC：ナビ＋CTA を白いピルにまとめる ---------- */
}
.header .gnav {
  display: flex;
  align-items: center;
  gap: 2.9rem;
  background: var(--white);
  border: 1px solid #E6E6E6;
  border-radius: 8.8rem;
  padding: 1.5rem 3.7rem 1.5rem 3.8rem;
  overflow: visible;
}
@media (max-width: 768px) {
  .header .gnav {
    display: none;
  }
}
.header .pc_nav .list {
  display: flex;
  align-items: center;
  gap: 2.9rem;
}
.header .pc_nav .list > li {
  position: relative;
}
.header .pc_nav .list li a {
  display: block;
  font-size: max(1.6rem, 13px);
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  transition: color 0.3s;
}
.header .pc_nav .list li a:hover {
  color: var(--color_key);
}
.header .pc_nav .list .current-menu-item > a,
.header .pc_nav .list .current_page_item > a,
.header .pc_nav .list .current-menu-ancestor > a {
  color: var(--color_key);
}
.header .pc_nav .list .menu-item-has-children {
  padding-bottom: 1.6rem;
  margin-bottom: -1.6rem;
}
.header .pc_nav .list .menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% - 0.4rem);
  left: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 18rem;
  margin: 0;
  padding: 1.8rem 2.2rem;
  list-style: none;
  background: var(--white);
  border: 1px solid #E6E6E6;
  border-radius: 1.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.4rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.header .pc_nav .list .menu-item-has-children > .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 2rem;
}
.header .pc_nav .list .menu-item-has-children.is_open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .header .pc_nav .list .menu-item-has-children:hover > .sub-menu,
  .header .pc_nav .list .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.header .pc_nav .list .sub-menu a {
  font-size: max(1.5rem, 13px);
  line-height: 1.5;
}
.header {
  /* お問い合わせボタン（CTA） */
}
.header .contact_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--dark_gray);
  color: var(--white);
  border-radius: 0.4rem;
  padding: 0.8rem 1.5rem;
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.3s;
}
.header .contact_btn:hover {
  background-color: var(--color_key);
}
.header .contact_btn .icon {
  width: 1.8rem;
}
.header {
  /* ---------- SP：メール＋バーガー（白いピル） ---------- */
}
.header .sp_actions {
  display: none;
}
@media (max-width: 768px) {
  .header .sp_actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border: 1px solid #E6E6E6;
    border-radius: 5rem;
    padding: 0.7rem 1.5rem 0.7rem 1.4rem;
  }
}
.header .sp_actions .mail_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.1rem;
  height: 3.5rem;
  border-radius: 5rem;
  background: var(--dark_gray);
  color: var(--white);
}
.header .sp_actions .mail_btn .icon {
  width: 1.8rem;
}
.header {
  /* バーガー（3本線＋「メニュー」ラベル） */
}
.header .burger {
  display: none;
}
@media (max-width: 768px) {
  .header .burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
  }
}
.header .burger .burger_box_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 20px;
}
.header .burger .burger_box {
  position: relative;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--black);
  transition: 0.3s;
}
.header .burger .burger_box::before, .header .burger .burger_box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 3px;
  background: var(--black);
  transition: 0.3s;
}
.header .burger .burger_box::before {
  top: -7px;
}
.header .burger .burger_box::after {
  top: 7px;
}
.header .burger .burger_label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}

/* ---------- SPメニュー（オーバーレイ・header外） ---------- */
.sp_nav {
  display: none;
}
@media (max-width: 768px) {
  .sp_nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    overflow-y: auto;
  }
}
.sp_nav .sp_nav_panel {
  position: absolute;
  top: 1.5rem;
  right: 3%;
  background: var(--white);
  border: 1px solid var(--dark_gray);
  border-radius: 2.5rem;
  padding: 5.5rem 3rem 3rem;
  width: 70%;
  max-width: 300px;
}
.sp_nav .list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sp_nav .list > .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sp_nav .list > .menu-item-has-children > a {
  flex: 1;
  min-width: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.sp_nav .list > .menu-item-has-children:has(> .submenu_toggle:hover) > a {
  color: var(--color_key);
}
.sp_nav .list > .menu-item-has-children > .submenu_toggle {
  flex-shrink: 0;
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 0.4rem;
  background: var(--white);
  cursor: pointer;
  appearance: none;
}
.sp_nav .list > .menu-item-has-children > .submenu_toggle::before, .sp_nav .list > .menu-item-has-children > .submenu_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  background: var(--dark_gray);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.sp_nav .list > .menu-item-has-children > .submenu_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sp_nav .list > .menu-item-has-children.is_open > .submenu_toggle::before {
  opacity: 0;
}
.sp_nav .list > .menu-item-has-children.is_open > .submenu_toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.sp_nav .list > .menu-item-has-children > .sub-menu {
  flex: 0 0 100%;
  width: 100%;
}
.sp_nav .list li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark_gray);
}
.sp_nav .list li a:hover {
  color: var(--color_key);
}
.sp_nav .list .sub-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0.2rem 0 0.6rem 1.2rem;
  list-style: none;
}
.sp_nav .list .sub-menu a {
  font-size: 1.4rem;
  font-weight: 500;
  pointer-events: auto;
  cursor: pointer;
}
.sp_nav .list .menu-item-has-children.is_open > .sub-menu {
  display: flex;
}
.sp_nav .sp_contact {
  display: block;
  margin-top: 1rem;
  padding: 0.6rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark_gray);
}
.sp_nav {
  /* 閉じる（×ボタン） */
}
.sp_nav .menu_close {
  position: fixed;
  top: 3rem;
  right: calc(2rem + 3%);
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--dark_gray);
  cursor: pointer;
}
.sp_nav .menu_close::before, .sp_nav .menu_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 3px;
  background: var(--white);
}
.sp_nav .menu_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sp_nav .menu_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* メニュー展開時（body.open） */
body.open {
  overflow: hidden;
}
body.open .header {
  transform: translateY(0) !important;
  z-index: 1200;
}
body.open .sp_nav {
  opacity: 1;
  pointer-events: auto;
}

/* =====================================================
   フッター
   ===================================================== */
.footer {
  margin-top: auto;
}
.footer.bg_w {
  background: var(--white);
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
}
@media (max-width: 768px) {
  .footer.bg_w {
    margin-bottom: 0;
  }
}
.footer .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}
.footer {
  /* 左：ロゴ */
}
.footer .info {
  flex: 1;
  min-width: 0;
}
.footer .info .logo {
  display: block;
  width: fit-content;
}
@media (max-width: 768px) {
  .footer .info .logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .info .logo img {
  width: auto;
  height: 8rem;
}
.footer {
  /* 右：gnav（ヘッダーと同じ白ピル） */
}
.footer .gnav {
  display: flex;
  align-items: center;
  gap: 2.9rem;
  flex-shrink: 0;
  overflow: visible;
}
@media (max-width: 768px) {
  .footer .gnav {
    display: none;
  }
}
.footer .pc_nav .list {
  display: flex;
  align-items: center;
  gap: 2.9rem;
}
.footer .pc_nav .list > li {
  position: relative;
}
.footer .pc_nav .list li a {
  display: block;
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  transition: color 0.3s;
}
.footer .pc_nav .list li a:hover {
  color: var(--color_key);
}
.footer .pc_nav .list .current-menu-item > a,
.footer .pc_nav .list .current_page_item > a,
.footer .pc_nav .list .current-menu-ancestor > a {
  color: var(--color_key);
}
.footer .pc_nav .list .menu-item-has-children {
  padding-bottom: 1.6rem;
  margin-bottom: -1.6rem;
}
.footer .pc_nav .list .menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% - 0.4rem);
  left: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 18rem;
  margin: 0;
  padding: 1.8rem 2.2rem;
  list-style: none;
  background: var(--white);
  border: 1px solid #E6E6E6;
  border-radius: 1.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.4rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.footer .pc_nav .list .menu-item-has-children > .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 2rem;
}
.footer .pc_nav .list .menu-item-has-children.is_open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .footer .pc_nav .list .menu-item-has-children:hover > .sub-menu,
  .footer .pc_nav .list .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.footer .pc_nav .list .sub-menu a {
  font-size: max(1.5rem, 13px);
  line-height: 1.5;
}
.footer .contact_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--dark_gray);
  color: var(--white);
  border-radius: 0.4rem;
  padding: 0.8rem 1.5rem;
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.3s;
}
.footer .contact_btn:hover {
  background-color: var(--color_key);
}
.footer .contact_btn .icon {
  width: 1.8rem;
}
.footer .address {
  margin-top: 6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--black);
}
@media (max-width: 768px) {
  .footer .address {
    font-size: 15px;
    width: fit-content;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 425px) {
  .footer .address {
    font-size: 14px;
  }
}
.footer .copyright {
  position: fixed;
  display: block;
  font-weight: 700;
  color: #AFAFAF;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: sideways-rl;
  left: 2.5%;
  font-size: 1.6rem;
  z-index: 3;
}
@media (max-width: 768px) {
  .footer .copyright {
    position: unset;
    writing-mode: unset;
    text-align: center;
    font-size: 1.2rem;
  }
}

/* ページトップへ戻る
   ----------------------------------------------------- */
/**
 * Swiper 4.5.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* =====================================================
   フロントページ
   ===================================================== */
/* メインビジュアル */
.front_mv_sct_wrapper {
  overflow: hidden;
}

.front_mv_sct {
  margin-top: 0.5vw;
}
@media (max-width: 768px) {
  .front_mv_sct {
    padding-top: 14rem;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
}
.front_mv_sct .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 75svh;
  min-height: 75rem;
}
@media (max-width: 768px) {
  .front_mv_sct .inner {
    width: 100%;
    height: auto;
    min-height: auto;
    flex-direction: column;
    margin-left: 0;
  }
}
.front_mv_sct .title_box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3.1rem;
  height: 100%;
  justify-content: center;
}
@media (max-width: 768px) {
  .front_mv_sct .title_box {
    width: 92%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
    padding-top: 0;
    margin-bottom: 0.5em;
  }
}
.front_mv_sct .title {
  margin: 0;
  font-family: var(--font_key);
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.38;
}
@media (max-width: 768px) {
  .front_mv_sct .title {
    font-size: min(12vw, 4.3rem);
    line-height: 1.3;
  }
}
.front_mv_sct .text {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.19;
}
@media (max-width: 768px) {
  .front_mv_sct .text {
    font-size: min(4.5vw, 1.6rem);
    line-height: 2;
  }
}
.front_mv_sct .mv_media {
  position: relative;
  overflow: hidden;
  width: 58%;
  height: 100%;
}
@media (max-width: 768px) {
  .front_mv_sct .mv_media {
    width: 100%;
    height: 36rem;
  }
}
.front_mv_sct .mv_media .mv_video,
.front_mv_sct .mv_media .image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}
.front_mv_sct .mv_media .mv_video {
  z-index: 1;
  transition: opacity 0.8s ease;
}
.front_mv_sct .mv_media .mv_video video {
  opacity: 0.6;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  animation: mv_video_zoom_out var(--mv-video-duration, 10s) ease-out forwards;
}
.front_mv_sct .mv_media .image {
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.front_mv_sct .mv_media .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front_mv_sct .mv_media.is_video_done .mv_video {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.front_mv_sct .mv_media.is_video_done .image {
  z-index: 1;
  opacity: 1;
}
.front_mv_sct .image_logo {
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  position: absolute;
  right: -8rem;
  z-index: 1;
  width: 49.1rem;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: mv_logo_slide_right 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@media (max-width: 768px) {
  .front_mv_sct .image_logo {
    width: 36.7rem;
    top: 9rem;
    right: -6rem;
  }
}
@media (max-width: 600px) {
  .front_mv_sct .image_logo {
    top: 11rem;
    right: -15rem;
  }
}
.front_mv_sct .image_logo img {
  display: block;
  width: 100%;
}

@keyframes mv_logo_slide_right {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-3rem, 0, 0);
  }
}
@keyframes mv_zoom_out {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes mv_video_zoom_out {
  from {
    transform: scale(1.3);
  }
  to {
    transform: scale(1);
  }
}
/* お知らせ
   ----------------------------------------------------- */
@media (max-width: 768px) {
  .front_news_sct {
    background-color: var(--gray);
  }
}
@media (max-width: 768px) {
  .front_news_sct .inner {
    width: 100%;
  }
}
.front_news_sct .news_bar {
  display: flex;
  align-items: center;
  gap: 6.8rem;
  min-height: 7.8rem;
  border-radius: 1.5rem;
}
@media (max-width: 768px) {
  .front_news_sct .news_bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    min-height: auto;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }
}
.front_news_sct .news_bar .cmmn_section_title {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .front_news_sct .news_bar .cmmn_section_title {
    width: 95%;
    padding-top: 1em;
    margin-left: auto;
    margin-right: auto;
  }
}
.front_news_sct .news_bar .post {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  min-width: 0;
  font-weight: 700;
  font-size: max(1.6rem, 14px);
  line-height: 2.2;
}
@media (max-width: 768px) {
  .front_news_sct .news_bar .post {
    width: 100%;
    gap: 1.9rem;
    padding: 0.85rem 1.8rem;
    font-size: max(1.4rem, 13px);
    line-height: 2.5;
    background: var(--white);
    border-radius: 0;
  }
}
.front_news_sct .news_bar .post:hover .date {
  color: var(--color_key);
}
.front_news_sct .news_bar .post:hover .ttl {
  color: var(--color_key);
}
.front_news_sct .news_bar .post .date {
  flex-shrink: 0;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .front_news_sct .news_bar .post .date {
    font-size: 1.4rem;
  }
}
.front_news_sct .news_bar .post .ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .front_news_sct .news_bar .post .ttl {
    font-size: 1.5rem;
    line-height: 2.3;
  }
}
.front_news_sct .news_bar .more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-left: auto;
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .front_news_sct .news_bar .more {
    margin-left: auto;
    margin-right: 2.5%;
  }
}
.front_news_sct .news_bar .more .arrow {
  flex-shrink: 0;
  width: 1.25rem;
}
.front_news_sct .news_bar .more:hover {
  opacity: 0.7;
}

/* 事業内容・強み
   ----------------------------------------------------- */
.front_about_sct_wrapper {
  overflow: hidden;
}
.front_about_sct_wrapper .front_about_sct {
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .front_about_sct {
    padding-bottom: 3.5rem;
  }
}
.front_about_sct_wrapper .about_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 6.3rem 0 5rem;
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .about_wrap {
    align-items: center;
    gap: 2rem;
    padding: 3.5rem 0 4.8rem;
  }
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .about_wrap .cmmn_section_title {
    justify-content: center;
  }
}
.front_about_sct_wrapper .about_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8rem;
  width: 100%;
}
@media (max-width: 960px) {
  .front_about_sct_wrapper .about_box {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .about_box {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }
}
.front_about_sct_wrapper .cmmn_heading_l {
  flex-shrink: 0;
  margin: 0;
  font-family: var(--font_key);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.15;
}
@media (max-width: 960px) {
  .front_about_sct_wrapper .cmmn_heading_l {
    font-size: max(4.2rem, 28px);
  }
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .cmmn_heading_l {
    font-size: min(9vw, 3.5rem);
    text-align: center;
    line-height: 1.3;
  }
}
.front_about_sct_wrapper .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4rem;
  width: 65rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .content {
    align-items: center;
    width: 100%;
    gap: 2.6rem;
  }
}
.front_about_sct_wrapper .lead {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.94;
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .lead {
    font-size: max(1.6rem, 15px);
    line-height: 2;
  }
}
.front_about_sct_wrapper .lead p:not(:last-child) {
  margin-bottom: 1em;
}
.front_about_sct_wrapper .cmmn_btn {
  flex-shrink: 0;
}
.front_about_sct_wrapper .about_images {
  position: relative;
}
.front_about_sct_wrapper .swiper-container {
  overflow: visible;
}
.front_about_sct_wrapper .item {
  width: 48.9rem;
  height: 32.6rem;
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .item {
    width: min(70vw, 32rem);
    height: min(47vw, 21rem);
  }
}
.front_about_sct_wrapper .item .image {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.front_about_sct_wrapper .item .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front_about_sct_wrapper .about_catch {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 1.2rem;
  z-index: 2;
  margin: auto;
  font-family: var(--font_key);
  font-size: 6.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  pointer-events: none;
}
@media (max-width: 960px) {
  .front_about_sct_wrapper .about_catch {
    bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .front_about_sct_wrapper .about_catch {
    font-size: 4.6vw;
    bottom: 0;
  }
}
@media (max-width: 425px) {
  .front_about_sct_wrapper .about_catch {
    font-size: 10.5vw;
  }
}

/* 私たちの強み
   ----------------------------------------------------- */
.front_business_sct {
  position: relative;
  padding-bottom: 15rem;
}
.front_business_sct .bring_image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 5vw;
}
@media (max-width: 768px) {
  .front_business_sct .bring_image {
    display: none;
  }
}
.front_business_sct .inner {
  position: relative;
  z-index: 1;
}
.front_business_sct .cmmn_section_head.is_a {
  gap: 2.5rem;
  position: absolute;
  z-index: 2;
}
@media (max-width: 768px) {
  .front_business_sct .cmmn_section_head.is_a {
    margin-bottom: 3.5rem;
    position: unset;
  }
}
.front_business_sct .cards {
  display: flex;
  flex-direction: column;
  padding-top: 30rem;
  margin-bottom: 15rem;
  overflow-anchor: none;
}
@media (max-width: 768px) {
  .front_business_sct .cards {
    margin-bottom: 8rem;
    padding-top: 0;
  }
}
.front_business_sct .item:not(:last-child) {
  margin-bottom: 6.5rem;
}
@media (max-width: 768px) {
  .front_business_sct .item {
    position: relative;
    top: auto;
    z-index: auto;
  }
  .front_business_sct .item:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.front_business_sct .item .card {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: var(--gray);
}
@media (max-width: 768px) {
  .front_business_sct .item .card {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    background: #fff;
    padding: 3vw;
    border-radius: 0.8em;
  }
}
@media (max-width: 425px) {
  .front_business_sct .item .card {
    padding: 2rem 4vw;
  }
}
.front_business_sct .item .content {
  position: absolute;
  bottom: 5rem;
}
@media (max-width: 768px) {
  .front_business_sct .item .content {
    position: static;
    order: 2;
    width: 100%;
  }
}
.front_business_sct .item .head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .front_business_sct .item .head {
    gap: 1rem;
    margin-bottom: 1.4rem;
    justify-content: center;
  }
}
.front_business_sct .item .head .num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.7rem;
  height: 6.7rem;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font_key);
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .front_business_sct .item .head .num {
    width: 4.2rem;
    height: 4.2rem;
    font-size: 2.4rem;
  }
}
.front_business_sct .item .head .ttl {
  font-family: var(--font_key);
  font-size: max(4.5rem, 25px);
  font-weight: 700;
  line-height: 1.44;
}
@media (max-width: 768px) {
  .front_business_sct .item .head .ttl {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
@media (max-width: 425px) {
  .front_business_sct .item .head .ttl {
    font-size: 7vw;
  }
}
.front_business_sct .item .text {
  font-size: max(1.6rem, 12px);
  font-weight: 500;
  line-height: 1.44;
  width: 23em;
}
@media (max-width: 768px) {
  .front_business_sct .item .text {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    max-width: 600px;
    margin: auto;
  }
}
.front_business_sct .item .text strong {
  color: var(--color_key);
  font-weight: 700;
}
.front_business_sct .item:nth-child(odd) .video {
  margin-left: auto;
}
.front_business_sct .item:nth-child(even) .content {
  right: 0;
}
.front_business_sct .item .video {
  width: 60%;
  padding: 3rem 1%;
  background-color: #fff;
  border-radius: 0.8em;
}
@media (max-width: 768px) {
  .front_business_sct .item .video {
    order: 1;
    width: 100%;
    margin: 0 0 2.6rem;
    padding: 0;
    background-color: transparent;
  }
}
.front_business_sct .item .video video {
  display: block;
  width: 100%;
  aspect-ratio: 309/174;
  object-fit: cover;
}
.front_business_sct .story {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .front_business_sct .story {
    flex-direction: column;
    align-items: center;
    gap: 8rem;
  }
}
.front_business_sct .story .story_body {
  width: 60rem;
  max-width: 100%;
  margin-left: 2%;
}
@media (max-width: 960px) {
  .front_business_sct .story .story_body {
    width: 52%;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .front_business_sct .story .story_body {
    align-items: center;
    width: 100%;
    gap: 2.6rem;
  }
}
.front_business_sct .story .story_body .cmmn_btn {
  width: 17em;
}
@media (max-width: 768px) {
  .front_business_sct .story .story_body .cmmn_btn {
    margin: auto;
    display: flex;
  }
}
.front_business_sct .story .lead {
  margin-bottom: 3.5rem;
  font-size: max(1.9rem, 14px);
  font-weight: 500;
  line-height: 2.05;
}
@media (max-width: 768px) {
  .front_business_sct .story .lead {
    font-size: max(1.6rem, 15px);
    line-height: 2.1;
  }
}
.front_business_sct .story .lead p:not(:last-child) {
  margin-bottom: 2rem;
}
.front_business_sct .story .story_images {
  position: relative;
  flex-shrink: 0;
  width: 46.7rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .front_business_sct .story .story_images {
    width: min(90vw, 40rem);
  }
}
.front_business_sct .story .story_images .image {
  margin: 0;
  overflow: hidden;
}
.front_business_sct .story .story_images .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front_business_sct .story .story_images .image.is_large {
  width: 42.5rem;
  max-width: 90%;
  aspect-ratio: 425/572;
}
@media (max-width: 768px) {
  .front_business_sct .story .story_images .image.is_large {
    width: 90%;
    max-width: none;
  }
}
.front_business_sct .story .story_images .image.is_small {
  position: absolute;
  right: 0;
  bottom: -9rem;
  width: 15.2rem;
  aspect-ratio: 152/170;
}
@media (max-width: 768px) {
  .front_business_sct .story .story_images .image.is_small {
    width: min(32vw, 14rem);
    bottom: -19%;
  }
}
.front_business_sct .bg_logo {
  position: absolute;
  width: 68rem;
  height: 68rem;
  bottom: -6rem;
  left: -6rem;
  max-width: unset;
}
@media (max-width: 768px) {
  .front_business_sct .bg_logo {
    position: absolute;
    width: 100vw;
    height: 100vw;
    bottom: 0;
    left: -8vw;
  }
}
@media (max-width: 425px) {
  .front_business_sct .bg_logo {
    width: 180vw;
    height: 180vw;
    left: unset;
    right: -10vw;
  }
}

/* 会社概要
   ----------------------------------------------------- */
@media (max-width: 768px) {
  .front_company_sct .inner {
    width: 90vw;
  }
}
.front_company_sct .company_wrap {
  display: flex;
  align-items: center;
  gap: 9.7rem;
  padding-top: 6.8rem;
  padding-bottom: 5rem;
}
@media (max-width: 960px) {
  .front_company_sct .company_wrap {
    gap: 5rem;
  }
}
@media (max-width: 768px) {
  .front_company_sct .company_wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 4.4rem;
    padding-top: 8.5rem;
    padding-bottom: 10rem;
  }
}
.front_company_sct .image {
  flex-shrink: 0;
  width: 43.2rem;
  max-width: 100%;
  margin: 0;
}
.front_company_sct .image img {
  aspect-ratio: 431.66/470.35;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .front_company_sct .image {
    order: 2;
    width: 100%;
  }
  .front_company_sct .image img {
    aspect-ratio: 313/211.08;
  }
}
.front_company_sct .content {
  display: flex;
  flex-direction: column;
  gap: 14.1rem;
  width: 68.6rem;
  max-width: 100%;
}
@media (max-width: 960px) {
  .front_company_sct .content {
    flex: 1;
    gap: 8rem;
  }
}
@media (max-width: 768px) {
  .front_company_sct .content {
    order: 1;
    width: 100%;
    gap: 2.5rem;
  }
}
.front_company_sct .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .front_company_sct .head {
    align-items: center;
  }
}
.front_company_sct .head .title {
  margin: 0;
  font-family: var(--font_key);
  font-size: max(4.3rem, 32px);
  font-weight: 700;
  line-height: 1.51;
}
@media (max-width: 768px) {
  .front_company_sct .head .title {
    font-size: 2.8rem;
    line-height: 2.32;
  }
}
.front_company_sct .head .cmmn_btn {
  flex-shrink: 0;
  width: 14.9rem;
  min-height: 4rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.front_company_sct .nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.3rem 6rem;
}
@media (max-width: 768px) {
  .front_company_sct .nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.front_company_sct .link {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
  color: inherit;
  text-decoration: none;
}
.front_company_sct .link:hover .label {
  color: var(--color_key);
}
.front_company_sct .link:hover .line {
  border-color: var(--color_key);
}
.front_company_sct .link:hover .arrow {
  filter: brightness(0) saturate(100%) invert(55%) sepia(85%) saturate(2000%) hue-rotate(360deg) brightness(95%) contrast(90%);
}
@media (max-width: 768px) {
  .front_company_sct .link {
    gap: 1rem;
  }
}
.front_company_sct .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.front_company_sct .label {
  font-family: var(--font_key);
  font-size: max(2.4rem, 20px);
  font-weight: 700;
  line-height: 1.63;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .front_company_sct .label {
    font-size: 2rem;
    line-height: 1.95;
  }
}
.front_company_sct .arrow {
  flex-shrink: 0;
  width: 2.1rem;
  height: auto;
  transition: filter 0.3s;
}
.front_company_sct .line {
  display: block;
  width: 100%;
  border-top: 1px solid #8F8F8F;
  transition: border-color 0.3s;
}

/* =====================================================
   事業内容
   ===================================================== */
/* ページ内リンク
   ----------------------------------------------------- */
.service_nav_sct {
  margin-bottom: 0.5vw;
  padding-top: 8.4rem;
  padding-bottom: 6.6rem;
}
@media (max-width: 768px) {
  .service_nav_sct {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.service_nav_sct .list {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
}
@media (max-width: 768px) {
  .service_nav_sct .list {
    gap: 3vw;
  }
}
@media (max-width: 600px) {
  .service_nav_sct .list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
.service_nav_sct .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 35.75rem;
  min-width: 210px;
  min-height: 7.63rem;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border: 1px solid var(--black);
  border-radius: 3.8rem;
  background: var(--white);
  font-family: var(--font_key);
  font-size: max(1.9rem, 11px);
  font-weight: 700;
  line-height: 1.2;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .service_nav_sct .link {
    width: 100%;
    max-width: 36rem;
    min-height: 6rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: min(3vw, 1.4rem);
    min-width: unset;
    padding: 0 3vw;
  }
}
@media (max-width: 425px) {
  .service_nav_sct .link {
    font-size: 1.4rem;
    padding: 0 2.5rem;
  }
}
.service_nav_sct .link:hover {
  opacity: 0.7;
}
.service_nav_sct .text {
  text-align: center;
}
.service_nav_sct .arrow {
  flex-shrink: 0;
  width: 1.23rem;
  height: 1.23rem;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transform: rotate(45deg);
}

/* 事業紹介の2カラム（冒頭のイントロ・各事業カードで共通）
   左にテキスト、右に画像。幅の比率は Figma の 666 : 74 : 477 に対応
   ----------------------------------------------------- */
.service_biz_cols {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .service_biz_cols {
    display: block;
  }
}
.service_biz_cols .content {
  width: 54.7%;
}
@media (max-width: 768px) {
  .service_biz_cols .content {
    width: 100%;
  }
}
.service_biz_cols .heading_box {
  position: relative;
  margin-bottom: 6.8rem;
}
@media (max-width: 768px) {
  .service_biz_cols .heading_box {
    margin-bottom: 3rem;
  }
}
.service_biz_cols .heading {
  position: relative;
  z-index: 1;
  font-family: var(--font_key);
  font-size: max(4.6rem, 28px);
  font-weight: 700;
  line-height: 1.41;
}
@media (max-width: 768px) {
  .service_biz_cols .heading {
    font-size: min(6.5vw, 30px);
    line-height: 1.3;
  }
}
.service_biz_cols {
  /* 見出しの背後を通って左へはみ出す装飾アイコン */
}
.service_biz_cols .icon {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -7.1rem;
  width: 13.2rem;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .service_biz_cols .icon {
    left: -1.5rem;
    width: 8.2rem;
  }
}
.service_biz_cols .icon img {
  width: 100%;
  height: auto;
}
.service_biz_cols .catch {
  margin-bottom: 4.1rem;
  font-size: max(2.3rem, 18px);
  line-height: 1.52;
}
@media (max-width: 768px) {
  .service_biz_cols .catch {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.service_biz_cols .lead {
  line-height: 2.13;
}
@media (max-width: 768px) {
  .service_biz_cols .lead {
    line-height: 2;
  }
}
.service_biz_cols .image {
  flex-shrink: 0;
  width: 39.2%;
  border-radius: 0.7rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service_biz_cols .image {
    width: 100%;
    margin-top: 3rem;
    aspect-ratio: 4/2.1;
  }
}
.service_biz_cols .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_top_sct {
  padding: 7.4rem 0 7rem;
  margin-bottom: 0.5vw;
  position: relative;
}
@media (max-width: 960px) {
  .service_top_sct {
    padding: 5rem 0 6rem;
  }
}
@media (max-width: 768px) {
  .service_top_sct {
    border-width: 0;
    border-radius: 0;
    padding: 3.5rem 0 4rem;
  }
}
.service_top_sct .bring_image {
  position: absolute;
  top: 5%;
  right: 0;
  width: 5vw;
}
@media (max-width: 768px) {
  .service_top_sct .bring_image {
    top: 21.5rem;
    width: 5.2rem;
    top: 2rem;
  }
}
.service_top_sct .service_biz_cols {
  margin-bottom: 7.6rem;
}
@media (max-width: 768px) {
  .service_top_sct .service_biz_cols {
    margin-bottom: 4rem;
  }
}
.service_top_sct .service_biz_cols .cmmn_section_title {
  margin-bottom: 0.9rem;
}
.service_top_sct .service_biz_cols .catch {
  margin-bottom: 5.4rem;
}
@media (max-width: 768px) {
  .service_top_sct .service_biz_cols .catch {
    margin-bottom: 2rem;
  }
}
.service_top_sct {
  /* 番号付きポイント
    ----------------------------------------------------- */
}
.service_top_sct .service_points .list {
  display: flex;
  flex-direction: column;
  gap: 7.9rem;
}
@media (max-width: 960px) {
  .service_top_sct .service_points .list {
    gap: 5rem;
  }
}
@media (max-width: 768px) {
  .service_top_sct .service_points .list {
    gap: 3.5rem;
  }
}
.service_top_sct .service_points .item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .service_top_sct .service_points .item {
    display: block;
  }
}
.service_top_sct .service_points .head {
  display: flex;
  align-items: flex-start;
  gap: 2.2rem;
  flex-shrink: 0;
  width: 28%;
}
@media (max-width: 768px) {
  .service_top_sct .service_points .head {
    width: 100%;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.service_top_sct .service_points .num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 6.7rem;
  height: 6.7rem;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font_key);
  font-size: max(3.7rem, 24px);
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 768px) {
  .service_top_sct .service_points .num {
    width: 5rem;
    height: 5rem;
    font-size: 2.4rem;
  }
}
.service_top_sct .service_points .ttl {
  font-family: var(--font_key);
  font-size: max(2.4rem, 15px);
  font-weight: 700;
  line-height: 1.71;
}
@media (max-width: 768px) {
  .service_top_sct .service_points .ttl {
    font-size: 1.9rem;
    line-height: 1.5;
  }
}
.service_top_sct .service_points .text {
  font-size: max(1.5rem, 14px);
  line-height: 2.13;
}
@media (max-width: 768px) {
  .service_top_sct .service_points .text {
    font-size: 1.5rem;
    line-height: 2;
  }
}

/* 事業カード（1枚ごとに全幅の白パネル）
   ----------------------------------------------------- */
.service_cards_sct {
  padding: 10.8rem 0 6.8rem;
  margin-bottom: 0.5vw;
}
@media (max-width: 960px) {
  .service_cards_sct {
    padding: 7rem 0 6rem;
  }
}
@media (max-width: 768px) {
  .service_cards_sct {
    padding: 4rem 0;
  }
}

/* 5つの強み
   円のサイズは「×」の高さにも使うため変数で持つ
   ----------------------------------------------------- */
.service_strengths_sct {
  padding-top: 8.5rem;
  padding-bottom: 9.5rem;
}
@media (max-width: 768px) {
  .service_strengths_sct {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}
.service_strengths_sct .section_head {
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .service_strengths_sct .section_head {
    margin-bottom: 4rem;
    text-align: center;
  }
}
.service_strengths_sct .section_head .cmmn_section_title {
  margin-bottom: 0.9rem;
}
@media (max-width: 768px) {
  .service_strengths_sct .section_head .cmmn_section_title {
    justify-content: center;
  }
}
.service_strengths_sct .section_head .heading {
  font-family: var(--font_key);
  font-size: max(4.7rem, 32px);
  font-weight: 700;
  line-height: 1.38;
}
@media (max-width: 768px) {
  .service_strengths_sct .section_head .heading {
    font-size: min(8vw, 32px);
  }
}
.service_strengths_sct .lead {
  margin-bottom: 2.1rem;
  font-size: max(2.3rem, 18px);
  font-weight: 700;
  line-height: 1.61;
  text-align: center;
}
@media (max-width: 768px) {
  .service_strengths_sct .lead {
    margin-bottom: 2rem;
    font-size: min(4vw, 20px);
  }
}
.service_strengths_sct {
  /* 5つの円が乗る白パネル */
}
.service_strengths_sct .powers {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4.3rem 3.6rem 4.6rem;
  border-radius: 0.8rem;
  background: var(--white);
}
@media (max-width: 768px) {
  .service_strengths_sct .powers {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0 3.5rem;
  }
}
.service_strengths_sct .powers .group {
  /* 見極める側は末尾の「×」を含むため、見出しを円の中央に戻す */
}
.service_strengths_sct .powers .group.is_left .label {
  padding-right: 4.6rem;
}
@media (max-width: 768px) {
  .service_strengths_sct .powers .group.is_left .label {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .service_strengths_sct .powers .group.is_left .row {
    justify-content: center;
  }
}
.service_strengths_sct .powers .label {
  margin-bottom: 0.9rem;
  font-size: max(3rem, 20px);
  font-weight: 700;
  line-height: 2.1;
  text-align: center;
}
@media (max-width: 768px) {
  .service_strengths_sct .powers .label {
    font-size: min(4.6vw, 20px);
    line-height: 1.6;
  }
}
.service_strengths_sct .powers .row {
  display: flex;
  align-items: flex-start;
}
.service_strengths_sct .powers .item {
  flex-shrink: 0;
  width: 19.4rem;
}
@media (max-width: 768px) {
  .service_strengths_sct .powers .item {
    width: 22vw;
  }
}
.service_strengths_sct .powers .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 19.4rem;
  margin-bottom: 1.8rem;
  border-radius: 50%;
  background: var(--color_key);
  color: var(--white);
  font-family: var(--font_key);
  font-size: max(4.54rem, 28px);
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
}
@media (max-width: 768px) {
  .service_strengths_sct .powers .circle {
    height: 22vw;
    margin-bottom: 1rem;
    font-size: min(6vw, 2.4rem);
  }
}
.service_strengths_sct .powers .caption {
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.69;
  text-align: center;
}
@media (max-width: 768px) {
  .service_strengths_sct .powers .caption {
    max-width: none;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .service_strengths_sct .powers .caption br {
    display: none;
  }
}
.service_strengths_sct .powers .mark {
  font-size: max(0.9rem, 9px);
}
.service_strengths_sct .powers {
  /* 円と同じ高さを持たせて「×」を円の中心に揃える */
}
.service_strengths_sct .powers .arrow {
  flex-shrink: 0;
  position: relative;
  width: 4.06rem;
  height: 19.4rem;
  margin-left: 0.58rem;
  margin-right: 0.58rem;
}
@media (max-width: 768px) {
  .service_strengths_sct .powers .arrow {
    width: 3vw;
    height: 22vw;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
  }
}
.service_strengths_sct .powers .arrow::before, .service_strengths_sct .powers .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20.7%;
  width: 141.4%;
  height: 1px;
  background-color: var(--black);
}
.service_strengths_sct .powers .arrow::before {
  transform: rotate(45deg);
}
.service_strengths_sct .powers .arrow::after {
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .service_strengths_sct .powers .arrow.is_between {
    display: none;
  }
}
.service_strengths_sct .note {
  margin-top: 1.8rem;
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  line-height: 1.85;
}

/* =====================================================
   個別ページ（404 等・専用 scss を分けないもの）
   ===================================================== */
/* 404、thanks
   ----------------------------------------------------- */
.page_sct.thanks_sct .text {
  text-align: center;
}
@media (max-width: 768px) {
  .page_sct.thanks_sct .text {
    text-align: left;
  }
}
.page_sct {
  padding-top: 5rem;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .page_sct {
    padding-top: 3rem;
    padding-bottom: 7rem;
  }
}
.page_sct .text {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 2.3;
}
@media (max-width: 768px) {
  .page_sct .text {
    font-size: 1em;
    line-height: 2;
  }
}
.page_sct .text p:not(:last-child) {
  margin-bottom: 1em;
}
.page_sct .btn_wrap {
  margin-top: 17.1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .page_sct .btn_wrap {
    margin-top: 4rem;
  }
}
.page_sct .cmmn_btn {
  min-width: 24.9rem;
  min-height: 4rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

/* 採用情報（page-recruit.php）
   ----------------------------------------------------- */
.recruit_top_sct .head_cols {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .recruit_top_sct .head_cols {
    display: block;
  }
}
.recruit_top_sct .head_cols .image {
  width: 51%;
}
@media (max-width: 768px) {
  .recruit_top_sct .head_cols .image {
    width: 100%;
  }
}
.recruit_top_sct .head_cols .image img {
  width: 100%;
  aspect-ratio: 612.85/241.46;
  object-fit: cover;
}
.recruit_top_sct .catch {
  width: 43%;
  font-family: var(--font_key);
  font-size: max(3.2rem, 19px);
  font-weight: 700;
  line-height: 1.72;
}
@media (max-width: 768px) {
  .recruit_top_sct .catch {
    width: 100%;
    margin-top: 2.5rem;
    font-size: min(5.8vw, 2.4rem);
    line-height: 1.6;
  }
}
.recruit_top_sct .body_cols {
  display: flex;
  justify-content: space-between;
  margin-top: 9rem;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .recruit_top_sct .body_cols {
    display: block;
    margin-top: 4rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.recruit_top_sct .images {
  width: 30%;
}
@media (max-width: 768px) {
  .recruit_top_sct .images {
    display: flex;
    gap: 2rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .recruit_top_sct .images .image {
    flex: 1;
    min-width: 0;
  }
}
.recruit_top_sct .images .image:not(:last-child) {
  margin-bottom: 5.3rem;
}
@media (max-width: 768px) {
  .recruit_top_sct .images .image:not(:last-child) {
    margin-bottom: 0;
  }
}
.recruit_top_sct .images .image img {
  width: 100%;
  object-fit: cover;
}
.recruit_top_sct .images .image.is_01 img {
  aspect-ratio: 294.28/180.12;
}
.recruit_top_sct .images .image.is_02 img {
  aspect-ratio: 294.28/196.58;
}
.recruit_top_sct .text {
  width: 62%;
  line-height: 2;
  font-size: max(1.6rem, 15px);
}
@media (max-width: 960px) {
  .recruit_top_sct .text {
    font-size: max(1.6rem, 12px);
  }
}
@media (max-width: 768px) {
  .recruit_top_sct .text {
    width: 100%;
    margin-top: 3rem;
    line-height: 1.9;
  }
}
@media (max-width: 600px) {
  .recruit_top_sct .text {
    font-size: 1.5rem;
  }
  .recruit_top_sct .text br {
    display: none;
  }
}
.recruit_top_sct .text p:not(:last-child) {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .recruit_top_sct .text p:not(:last-child) {
    margin-bottom: 2rem;
  }
}

/* 募集要項（page-recruit.php）
   ----------------------------------------------------- */
.recruit_info_sct {
  position: relative;
  overflow: hidden;
}
.recruit_info_sct .bring_image {
  position: absolute;
  top: 14%;
  left: -7%;
  width: 80%;
}
@media (max-width: 768px) {
  .recruit_info_sct .bring_image {
    top: 3rem;
    width: 87%;
    left: unset;
    right: -35%;
  }
}
.recruit_info_sct .wrap {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .recruit_info_sct .wrap {
    display: block;
    gap: 0;
  }
}
.recruit_info_sct .side {
  position: sticky;
  top: 14rem;
  align-self: start;
  flex-shrink: 0;
  width: fit-content;
}
@media (max-width: 768px) {
  .recruit_info_sct .side {
    position: static;
    width: 100%;
    margin-bottom: 5rem;
  }
}
@media (max-width: 425px) {
  .recruit_info_sct .side {
    margin-bottom: 3rem;
  }
}
.recruit_info_sct .cmmn_title {
  margin-bottom: 7.3rem;
  font-size: max(3.6rem, 24px);
  line-height: 1.53;
}
@media (max-width: 768px) {
  .recruit_info_sct .cmmn_title {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
}
.recruit_info_sct .nav {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .recruit_info_sct .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.recruit_info_sct .nav_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2.4rem;
  background-color: var(--gray);
  border-radius: 5rem;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.4;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 768px) {
  .recruit_info_sct .nav_link {
    padding: 0.6rem 1.6rem;
    font-size: 1.5rem;
  }
}
.recruit_info_sct .nav_link:hover {
  background-color: var(--color_key);
  color: var(--white);
}
.recruit_info_sct .content {
  margin-top: 13rem;
  width: 70%;
}
@media (max-width: 768px) {
  .recruit_info_sct .content {
    margin-top: 0;
    width: 100%;
  }
}
.recruit_info_sct .item:not(:last-child) {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .recruit_info_sct .item:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.recruit_info_sct .job {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 3rem;
  font-size: max(2.7rem, 27px);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .recruit_info_sct .job {
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
}
.recruit_info_sct .job::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color_key);
}
@media (max-width: 768px) {
  .recruit_info_sct .job::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.recruit_info_sct .detail {
  background-color: var(--white);
  border: 1px solid #898989;
  border-radius: 1rem;
}
.recruit_info_sct .list {
  margin: 0;
}
.recruit_info_sct .list .row {
  display: grid;
  grid-template-columns: 10em 1fr;
  padding: 1em;
  border-bottom: 1px solid #898989;
}
@media (max-width: 768px) {
  .recruit_info_sct .list .row {
    grid-template-columns: 1fr;
  }
}
.recruit_info_sct .list .row:last-child {
  border-bottom: none;
}
.recruit_info_sct .list dt,
.recruit_info_sct .list dd {
  line-height: 1.5;
}
@media (max-width: 768px) {
  .recruit_info_sct .list dt {
    font-weight: 700;
    padding-bottom: 0.75em;
  }
}

.recruit_bottom_sct .lead {
  font-size: max(2.1rem, 21px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit_bottom_sct .lead {
    font-size: 1.8rem;
  }
}
.recruit_bottom_sct .btn_wrap {
  margin-top: 3.8rem;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit_bottom_sct .btn_wrap {
    margin-top: 2.4rem;
  }
}
.recruit_bottom_sct .btn_wrap .contact_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--dark_gray);
  color: var(--white);
  border-radius: 0.4rem;
  padding: 0.5em 1em;
  font-size: max(2rem, 18px);
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .recruit_bottom_sct .btn_wrap .contact_btn {
    font-size: 1.8rem;
  }
}
.recruit_bottom_sct .btn_wrap .contact_btn img {
  width: 1.2em;
}

/* 財務情報（page-financial-info.php）
   ----------------------------------------------------- */
.financial_info_sct .chart_wrap {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .financial_info_sct .chart_wrap {
    margin-bottom: 3rem;
  }
}
.financial_info_sct .chart_title {
  margin: 0 0 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 1.6;
}
.financial_info_sct .financial_chart .bars {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 28rem;
  margin: 0;
  padding: 0;
  list-style: none;
  background-image: repeating-linear-gradient(to top, transparent, transparent calc(20% - 1px), rgba(0, 0, 0, 0.06) calc(20% - 1px), rgba(0, 0, 0, 0.06) 20%);
}
@media (max-width: 768px) {
  .financial_info_sct .financial_chart .bars {
    min-height: 22rem;
    gap: 0.4rem;
  }
}
.financial_info_sct .financial_chart .bar_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.financial_info_sct .financial_chart .chart_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 24rem;
}
@media (max-width: 768px) {
  .financial_info_sct .financial_chart .chart_col {
    min-height: 18rem;
  }
}
.financial_info_sct .financial_chart .value {
  margin-bottom: 0.6rem;
  font-size: max(1.3rem, 11px);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .financial_info_sct .financial_chart .value {
    font-size: max(1rem, 10px);
    margin-bottom: 0.4rem;
  }
}
.financial_info_sct .financial_chart .bar {
  display: block;
  width: 72%;
  max-width: 5.2rem;
  height: var(--bar-height, 0%);
  background-color: var(--color_key);
}
@media (max-width: 768px) {
  .financial_info_sct .financial_chart .bar {
    width: 80%;
    max-width: 3.6rem;
  }
}
.financial_info_sct .financial_chart .bar_item.is_last .bar {
  background-color: #e8c9a8;
}
.financial_info_sct .financial_chart .label {
  flex-shrink: 0;
  box-sizing: content-box;
  min-height: 2.8em;
  margin-top: 1rem;
  font-size: max(1.3rem, 11px);
  line-height: 1.4;
  text-align: center;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .financial_info_sct .financial_chart .label {
    margin-top: 0.6rem;
    font-size: max(1rem, 10px);
  }
}
.financial_info_sct .table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.financial_info_sct .financial_table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
  font-size: max(1.6rem, 14px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .financial_info_sct .financial_table {
    font-size: 1.4rem;
  }
}
.financial_info_sct .financial_table caption {
  margin-bottom: 1.6rem;
  font-size: max(1.4rem, 13px);
  line-height: 1.6;
  color: var(--gray_text);
  text-align: right;
}
.financial_info_sct .financial_table thead th {
  padding: 0.5em 1em;
  border-bottom: 1px solid #989898;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  border-left: 1px solid #989898;
  border-top: 1px solid #989898;
  background-color: var(--color_key);
  color: #fff;
  letter-spacing: 0.05em;
}
.financial_info_sct .financial_table thead th:last-child {
  border-right: 1px solid #989898;
}
.financial_info_sct .financial_table tbody td {
  padding: 0.5em 1em;
  border-bottom: 1px solid #989898;
  border-left: 1px solid #989898;
  text-align: center;
}
.financial_info_sct .financial_table tbody td:last-child {
  border-right: 1px solid #989898;
}
.financial_info_sct .financial_table tbody td:first-child {
  font-weight: 700;
  white-space: nowrap;
}
.financial_info_sct .note {
  line-height: 1.9;
  color: var(--gray_text);
}
.financial_info_sct .note p:not(:last-child) {
  margin-bottom: 1em;
}

/* アクセス（page-access.php）
   ----------------------------------------------------- */
.access_sct .map_frame {
  display: block;
  width: 100%;
  height: 45rem;
  border: 0;
}
@media (max-width: 768px) {
  .access_sct .map_frame {
    height: 28rem;
  }
}
.access_sct .map_btn_wrap {
  text-align: center;
}
.access_sct .map_btn {
  min-width: 23.6rem;
  min-height: 4rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: max(1.5rem, 15px);
  line-height: 1.67;
}
@media (max-width: 768px) {
  .access_sct .map_btn {
    min-width: auto;
    width: 100%;
    max-width: 23.6rem;
  }
}

/* お知らせ一覧（category.php）
   ----------------------------------------------------- */
.category_sct .list {
  border-top: 1px solid #A6A6A6;
}
.category_sct .list .item {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  padding: 3rem 1rem;
  border-bottom: 1px solid #A6A6A6;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 768px) {
  .category_sct .list .item {
    gap: 1.6rem;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
.category_sct .list .item .text {
  flex: 1;
  min-width: 0;
}
.category_sct .list .item .date {
  display: block;
  margin-bottom: 1rem;
  font-size: max(1.5rem, 13px);
  font-weight: 400;
  line-height: 1.5;
  color: #909090;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .category_sct .list .item .date {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }
}
.category_sct .list .item .ttl {
  display: block;
  font-size: max(1.8rem, 16px);
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .category_sct .list .item .ttl {
    font-size: 1.6rem;
  }
}
.category_sct .list .item .arrow {
  flex-shrink: 0;
  position: relative;
  width: 2.2rem;
  height: 5.7rem;
  background-color: #EBEBEB;
  transition: background-color 0.3s;
  border-radius: 10rem;
}
@media (max-width: 768px) {
  .category_sct .list .item .arrow {
    width: 1.6rem;
    height: 4rem;
  }
}
.category_sct .list .item .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 0.9rem solid var(--white);
}
@media (max-width: 768px) {
  .category_sct .list .item .arrow::before {
    border-top-width: 0.5rem;
    border-bottom-width: 0.5rem;
    border-left-width: 0.7rem;
  }
}
.category_sct .list .item:hover .date,
.category_sct .list .item:hover .ttl {
  color: var(--color_key);
}
.category_sct .list .item:hover .arrow {
  background-color: var(--color_key);
}
.category_sct .list .empty {
  padding-top: 3.1rem;
  padding-bottom: 3.1rem;
  border-bottom: 1px solid #A6A6A6;
  text-align: center;
  color: #909090;
}

/* お知らせ詳細（single.php）
   ----------------------------------------------------- */
.single_sct .single_head {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #A6A6A6;
}
@media (max-width: 768px) {
  .single_sct .single_head {
    padding-bottom: 2.4rem;
  }
}
.single_sct .single_head .date {
  display: block;
  margin-bottom: 1.4rem;
  font-size: max(1.5rem, 15px);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .single_sct .single_head .date {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
}
.single_sct .single_head .ttl {
  font-size: max(3rem, 30px);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .single_sct .single_head .ttl {
    font-size: 2.4rem;
  }
}

/* 代表者挨拶
   ----------------------------------------------------- */
.message_greeting_sct {
  margin-bottom: 0.5vw;
}
.message_greeting_sct .cols {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .message_greeting_sct .cols {
    display: block;
  }
}
.message_greeting_sct .content {
  position: relative;
  width: 53.75%;
}
@media (max-width: 768px) {
  .message_greeting_sct .content {
    width: 100%;
  }
}
.message_greeting_sct .content::before, .message_greeting_sct .content::after {
  content: "";
  position: absolute;
  z-index: 0;
  aspect-ratio: 198/209;
  background: #F5F5F5;
}
.message_greeting_sct .content::before {
  top: 6.1rem;
  left: 58.9%;
  width: 21.8%;
}
.message_greeting_sct .content::after {
  bottom: 8.4rem;
  left: -11.6%;
  width: 29.8%;
}
@media (max-width: 768px) {
  .message_greeting_sct .content::after {
    left: -5vw;
  }
}
.message_greeting_sct .title,
.message_greeting_sct .catch,
.message_greeting_sct .text,
.message_greeting_sct .name {
  position: relative;
  z-index: 1;
}
.message_greeting_sct .title {
  margin-bottom: 8.6rem;
  font-family: var(--font_key);
  font-size: max(4.2rem, 28px);
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .message_greeting_sct .title {
    margin-bottom: 3rem;
    font-size: 3.5rem;
  }
}
.message_greeting_sct .catch {
  margin-bottom: 6.9rem;
  font-size: max(2.9rem, 22px);
  font-weight: 700;
  line-height: 0.86;
}
@media (max-width: 768px) {
  .message_greeting_sct .catch {
    margin-bottom: 2.5rem;
    font-size: min(5.5vw, 2.2rem);
    line-height: 1.4;
  }
}
.message_greeting_sct .text {
  font-size: max(1.6rem, 15px);
  line-height: 1.75;
}
.message_greeting_sct .text p:not(:last-child) {
  margin-bottom: 3rem;
}
.message_greeting_sct .name {
  font-size: max(2rem, 18px);
  line-height: 1.9;
  font-family: var(--font_key);
  font-weight: 700;
}
@media (max-width: 768px) {
  .message_greeting_sct .name {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
}
.message_greeting_sct .name img {
  width: 10em;
}
.message_greeting_sct .images {
  position: relative;
  width: 40.87%;
  aspect-ratio: 505.78/1164.35;
}
@media (max-width: 768px) {
  .message_greeting_sct .images {
    width: 100%;
    max-width: 28rem;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.message_greeting_sct .images::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 20.11%;
  left: 38.16%;
  width: 49.35%;
  height: 69.88%;
  background: #F5F5F5;
}
.message_greeting_sct .image {
  position: absolute;
  overflow: hidden;
}
.message_greeting_sct .image img,
.message_greeting_sct .image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message_greeting_sct .image.is_01 {
  z-index: 3;
  top: 0;
  left: 5.34%;
  width: 41.32%;
  height: 40.23%;
}
.message_greeting_sct .image.is_02 {
  z-index: 2;
  top: 36%;
  left: 20%;
  width: 85%;
  height: 47%;
}
.message_greeting_sct .image.is_03 {
  z-index: 1;
  top: 79.83%;
  left: 0;
  width: 54.61%;
  height: 20.17%;
}

/* 代表略歴・社歴
   ----------------------------------------------------- */
.message_history_sct {
  --history-date-width: 6em;
  --history-gap: 5rem;
  margin-bottom: 0.5vw;
  position: relative;
}
@media (max-width: 768px) {
  .message_history_sct {
    --history-gap: 2.5em;
  }
}
.message_history_sct .wrap {
  position: unset;
}
.message_history_sct .cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .message_history_sct .cols {
    display: block;
  }
}
.message_history_sct .image {
  aspect-ratio: 483.45/1018.42;
  overflow: hidden;
  position: absolute;
  left: -0.5vw;
  width: 48rem;
}
@media (max-width: 768px) {
  .message_history_sct .image {
    aspect-ratio: 1/1.3;
    top: 1%;
    right: 0;
    left: unset;
    width: 31%;
  }
}
.message_history_sct .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message_history_sct .content {
  width: 58.54%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .message_history_sct .content {
    width: 100%;
    margin-top: 5rem;
  }
}
.message_history_sct .title {
  font-family: var(--font_key);
  font-size: max(4.2rem, 28px);
  font-weight: 700;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .message_history_sct .title {
    font-size: 3.5rem;
  }
}
.message_history_sct .history {
  position: relative;
  margin-top: 7.6rem;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .message_history_sct .history {
    margin-top: 3rem;
  }
}
.message_history_sct .history::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--history-date-width) + var(--history-gap) / 2);
  width: 1px;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(to bottom, #989898 0, #989898 2px, transparent 2px, transparent 4px);
}
.message_history_sct .item {
  position: relative;
  display: grid;
  grid-template-columns: var(--history-date-width) 1fr;
  column-gap: var(--history-gap);
}
.message_history_sct .item:not(:last-child) {
  margin-bottom: 4.3rem;
}
.message_history_sct .item::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: calc(var(--history-date-width) + var(--history-gap) / 2);
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--color_key);
}
.message_history_sct .date {
  font-size: max(1.6rem, 15px);
  font-weight: 700;
  line-height: 1.19;
}
@media (max-width: 768px) {
  .message_history_sct .date {
    font-size: 1.5rem;
  }
}
.message_history_sct .detail {
  font-size: max(1.6rem, 15px);
  line-height: 1.19;
}
.message_history_sct .detail p:not(:last-child) {
  margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .message_history_sct .detail {
    font-size: 1.5rem;
  }
}
.message_history_sct .notes {
  margin-top: 10rem;
  font-size: max(1.6rem, 15px);
  line-height: 1.44;
}
.message_history_sct .notes p:not(:last-child) {
  margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .message_history_sct .notes {
    margin-top: 4rem;
    font-size: 1.5rem;
  }
}

/* 会社概要トップ（page-company.php 上部）
   ----------------------------------------------------- */
.company_top_sct {
  position: relative;
  margin-bottom: 0.5vw;
}
@media (max-width: 768px) {
  .company_top_sct {
    overflow: hidden;
    padding-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  .company_top_sct .wrap {
    width: 100%;
  }
}
.company_top_sct .bring_image {
  position: absolute;
  top: 2%;
  right: 0;
  width: 5vw;
}
@media (max-width: 768px) {
  .company_top_sct .bring_image {
    top: 21.5rem;
    width: 5.2rem;
  }
}
.company_top_sct .deco {
  position: absolute;
  left: -5%;
  bottom: -2%;
  width: 62.5rem;
  max-width: 45%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .company_top_sct .deco {
    bottom: 1%;
    width: 84%;
    max-width: none;
  }
}
.company_top_sct .box {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  gap: 10rem;
}
@media (max-width: 768px) {
  .company_top_sct .box {
    flex-direction: column;
    gap: 0;
  }
}
.company_top_sct .swipers {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  gap: 3.6rem;
  margin-left: 3rem;
}
@media (max-width: 768px) {
  .company_top_sct .swipers {
    display: contents;
    margin-left: 0;
  }
}
.company_top_sct .swiper_col {
  width: 21rem;
  height: 115rem;
  overflow: hidden;
  min-height: 850px;
}
.company_top_sct .swiper_col .swiper-container {
  height: 100%;
}
@media (max-width: 768px) {
  .company_top_sct .swiper_col {
    width: 100%;
    height: auto;
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .company_top_sct .swiper_col.is_01 {
    order: 1;
    margin-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  .company_top_sct .swiper_col.is_02 {
    order: 3;
    margin-top: 8rem;
  }
}
@media (max-width: 768px) {
  .company_top_sct .swiper_col.is_02 .swiper-slide .image {
    border-radius: 0.3rem;
  }
}
.company_top_sct .swiper-slide {
  width: 21rem;
  height: auto;
}
@media (max-width: 768px) {
  .company_top_sct .swiper-slide {
    width: 12.7rem;
  }
}
.company_top_sct .swiper-slide .image {
  overflow: hidden;
  border-radius: 0.8rem;
}
@media (max-width: 768px) {
  .company_top_sct .swiper-slide .image {
    border-radius: 0.5rem;
  }
}
.company_top_sct .swiper-slide .image img {
  width: 100%;
  aspect-ratio: 210/307.24;
  object-fit: cover;
}
@media (max-width: 768px) {
  .company_top_sct .swiper-slide .image img {
    aspect-ratio: 127/186;
  }
}
.company_top_sct .philosophy {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .company_top_sct .philosophy {
    order: 2;
    padding-top: 0;
    padding-bottom: 0;
    margin: auto;
    width: 85vw;
    max-width: 600px;
  }
}
.company_top_sct .philosophy .title {
  margin-bottom: 5rem;
  font-family: var(--font_key);
  font-size: max(4.2rem, 28px);
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .company_top_sct .philosophy .title {
    margin-bottom: 1.5em;
    font-size: 4.2rem;
  }
}
.company_top_sct .philosophy .list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 768px) {
  .company_top_sct .philosophy .list {
    gap: 5rem;
  }
}
.company_top_sct .item {
  display: flex;
  flex-direction: column;
}
.company_top_sct .head {
  display: flex;
  align-items: baseline;
  gap: 3.3rem;
  min-height: 11rem;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .company_top_sct .head {
    gap: 1.1rem;
    min-height: 0;
    margin-bottom: 0.5em;
  }
}
.company_top_sct .num {
  flex-shrink: 0;
  width: 6.6rem;
  font-family: var(--font_key);
  font-size: 7.6rem;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 768px) {
  .company_top_sct .num {
    width: fit-content;
    font-size: 3.7rem;
  }
}
.company_top_sct .label {
  font-family: var(--font_key);
  font-size: max(3.9rem, 24px);
  font-weight: 500;
  line-height: 0.9;
}
@media (max-width: 768px) {
  .company_top_sct .label {
    font-size: 3.4rem;
    line-height: 0.9;
  }
}
.company_top_sct .text {
  margin-top: 1.1rem;
  padding-left: 9.7rem;
  font-size: max(1.6rem, 15px);
  font-weight: 500;
  line-height: 2.13;
}
@media (max-width: 768px) {
  .company_top_sct .text {
    margin-top: 0.5rem;
    padding-left: 0;
    font-size: 1.6rem;
    line-height: 2.13;
  }
}

/* 企業情報（page-company.php）
   ----------------------------------------------------- */
.company_logo_sct {
  overflow: hidden;
}
.company_logo_sct .wrap {
  position: relative;
}
@media (max-width: 768px) {
  .company_logo_sct .wrap {
    display: flex;
    flex-direction: column;
  }
}
.company_logo_sct .content {
  position: relative;
  z-index: 1;
  max-width: 57rem;
  min-width: 380px;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .company_logo_sct .content {
    max-width: none;
    display: contents;
  }
}
.company_logo_sct .catch {
  font-family: var(--font_key);
  font-size: max(5.6rem, 32px);
  font-weight: 700;
  line-height: 1.52;
}
@media (max-width: 768px) {
  .company_logo_sct .catch {
    font-size: min(9vw, 3.5rem);
    line-height: 1.4;
    order: 0;
  }
}
.company_logo_sct .text {
  margin-top: 9.3rem;
  padding-left: 4.7rem;
  font-size: max(1.6rem, 15px);
  font-weight: 500;
  line-height: 1.88;
}
@media (max-width: 768px) {
  .company_logo_sct .text {
    margin-top: 2.4rem;
    padding-left: 0;
    max-width: none;
    order: 2;
  }
}
.company_logo_sct .text p:not(:last-child) {
  margin-bottom: 1em;
}
.company_logo_sct .image {
  position: absolute;
  top: 0;
  right: -5%;
  width: 69.6%;
  max-width: 82.5rem;
  margin: 0;
}
@media (max-width: 768px) {
  .company_logo_sct .image {
    position: static;
    order: 1;
    width: 80%;
    max-width: none;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.company_logo_sct .image img {
  width: 100%;
  aspect-ratio: 824.63/642.15;
  object-fit: contain;
}
@media (max-width: 768px) {
  .company_logo_sct .image img {
    transform: scale(1.45) translateX(-8%);
  }
}

/* 会社概要リンク（page-company.php）
   ----------------------------------------------------- */
.company_link_sct .list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem 5.4rem;
}
@media (max-width: 768px) {
  .company_link_sct .list {
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
  }
}
@media (max-width: 768px) {
  .company_link_sct .item {
    order: var(--sp-order);
  }
}
.company_link_sct .link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 17.1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2.8rem;
  padding-right: 31rem;
  background: var(--white);
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.25);
  color: var(--black);
  font-family: var(--font_key);
  font-size: max(2.9rem, 22px);
  font-weight: 700;
  line-height: 1.34;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
@media (max-width: 768px) {
  .company_link_sct .link {
    min-height: 10.5rem;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 54.6%;
    line-height: 1.35;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
    font-size: min(4.5vw, 1.8rem);
    padding-left: min(4vw, 1.7rem);
    gap: min(4vw, 1.7rem);
  }
}
.company_link_sct a.link:hover {
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .company_link_sct a.link:hover {
    box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.3);
  }
}
.company_link_sct .text {
  position: relative;
  z-index: 1;
}
.company_link_sct .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 54.6%;
  height: 100%;
  background-image: var(--company-nav-bg);
  background-size: cover;
  background-position: center;
}

/* 企業理念（page-company-info.php ）
   ----------------------------------------------------- */
.company_philosophy_sct .list {
  padding-left: 30rem;
}
@media (max-width: 768px) {
  .company_philosophy_sct .list {
    padding-left: 0;
  }
}
.company_philosophy_sct .item {
  display: flex;
  align-items: flex-start;
}
.company_philosophy_sct .item:not(:first-child) {
  margin-top: 1.2rem;
}
.company_philosophy_sct .num {
  flex-shrink: 0;
  width: 6.2rem;
  font-size: max(4rem, 28px);
  font-weight: 900;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .company_philosophy_sct .num {
    width: 1em;
    font-size: 2.8rem;
  }
}
.company_philosophy_sct .text {
  flex: 1;
  padding-top: 2rem;
  font-size: max(1.9rem, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .company_philosophy_sct .text {
    font-size: 1.6rem;
    padding-top: 0.6em;
  }
}

/* 企業情報（page-company-info.php）
   ----------------------------------------------------- */
.company_info_sct .title {
  margin-bottom: 7rem;
  font-family: var(--font_key);
  font-size: max(4.2rem, 28px);
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .company_info_sct .title {
    margin-bottom: 3.5rem;
    font-size: 3.5rem;
  }
}
.company_info_sct .cols {
  display: flex;
  align-items: flex-start;
  gap: 7.9rem;
}
@media (max-width: 768px) {
  .company_info_sct .cols {
    flex-direction: column;
    gap: 4rem;
  }
}
.company_info_sct .col {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .company_info_sct .col.is_01 {
    display: contents;
  }
  .company_info_sct .col.is_01 .cmmn_dl {
    order: 2;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .company_info_sct .col.is_02 {
    order: 3;
    width: 100%;
  }
}
.company_info_sct .cmmn_dl {
  grid-template-columns: 12.9rem 1fr;
  font-size: max(1.6rem, 15px);
  line-height: 1.69;
}
@media (max-width: 768px) {
  .company_info_sct .cmmn_dl {
    grid-template-columns: 1fr;
  }
}
.company_info_sct .cmmn_dl dt {
  font-weight: 700;
}
.company_info_sct .image {
  margin-top: 7.9rem;
  max-width: 40.5rem;
}
@media (max-width: 768px) {
  .company_info_sct .image {
    order: 1;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }
}
.company_info_sct .image img {
  width: 100%;
  aspect-ratio: 405/413;
  object-fit: cover;
}
@media (max-width: 768px) {
  .company_info_sct .image img {
    aspect-ratio: 16/9;
  }
}

/* 取引・開発実績：headline タブ切替
   ----------------------------------------------------- */
@media (max-width: 768px) {
  .headline_sct.is_works {
    padding-bottom: 2rem;
  }
}
.headline_sct.is_works .headline_box .page_title {
  position: absolute;
  left: 19.5rem;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 1.7rem;
  line-height: 1;
}
@media (max-width: 960px) {
  .headline_sct.is_works .headline_box .page_title {
    left: 16rem;
  }
}
@media (max-width: 768px) {
  .headline_sct.is_works .headline_box .page_title {
    display: none;
  }
}
.headline_sct.is_works .headline_box .page_title .current {
  position: relative;
  padding-top: 1.6rem;
  font-size: max(1.9rem, 14px);
  font-weight: 900;
  line-height: 1.58;
  white-space: nowrap;
}
.headline_sct.is_works .headline_box .page_title .current .dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color_key);
  transform: translateX(-50%);
}
.headline_sct.is_works .headline_box .page_title .sep {
  margin-bottom: 0.2rem;
  font-size: max(1.9rem, 14px);
  font-weight: 500;
  line-height: 1.58;
}
.headline_sct.is_works .headline_box .page_title .link {
  margin-bottom: 0.1rem;
  font-size: max(1.9rem, 14px);
  font-weight: 500;
  line-height: 1.58;
  color: #9a9a9a;
  white-space: nowrap;
  transition: color 0.3s;
}
.headline_sct.is_works .headline_box .page_title .link:hover {
  color: var(--color_key);
}

/* 取引・開発実績アーカイブ
   ----------------------------------------------------- */
.transaction_sct,
.development_sct {
  padding-bottom: 0.5vw;
}
@media (max-width: 768px) {
  .transaction_sct,
  .development_sct {
    padding-top: 2rem;
  }
}
@media (max-width: 768px) {
  .transaction_sct .wrap,
  .development_sct .wrap {
    width: 100%;
    margin-left: 0;
  }
}
.transaction_sct .transaction_layout,
.development_sct .transaction_layout {
  display: flex;
  gap: 10rem;
}
@media (max-width: 768px) {
  .transaction_sct .transaction_layout,
  .development_sct .transaction_layout {
    flex-direction: column;
    gap: 3rem;
    min-width: 0;
  }
}
.transaction_sct .sticky_box,
.development_sct .sticky_box {
  position: sticky;
  top: var(--sticky-box-top, 5rem);
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: var(--sticky-box-max-height, calc(100vh - 7rem));
  overflow: hidden;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box,
  .development_sct .sticky_box {
    z-index: 100;
    width: 100%;
    min-width: 0;
    background-color: var(--gray);
    padding: 1.2rem 5vw;
    overflow: visible;
  }
}
.transaction_sct .sticky_box .page_title,
.development_sct .sticky_box .page_title {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .page_title,
  .development_sct .sticky_box .page_title {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.transaction_sct .sticky_box .page_title .current,
.development_sct .sticky_box .page_title .current {
  position: relative;
  padding-top: 1.7rem;
  font-size: max(2.5rem, 18px);
  font-weight: 700;
  line-height: 1.44;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .page_title .current,
  .development_sct .sticky_box .page_title .current {
    font-size: 18px;
  }
}
.transaction_sct .sticky_box .page_title .current .dot,
.development_sct .sticky_box .page_title .current .dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color_key);
  transform: translateX(-50%);
}
.transaction_sct .sticky_box .page_title .sep,
.development_sct .sticky_box .page_title .sep {
  margin-bottom: 0.2rem;
  font-size: max(1.9rem, 14px);
  font-weight: 500;
  line-height: 1.58;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .page_title .sep,
  .development_sct .sticky_box .page_title .sep {
    font-size: 14px;
  }
}
.transaction_sct .sticky_box .page_title .link,
.development_sct .sticky_box .page_title .link {
  margin-bottom: 0.1rem;
  font-size: max(1.9rem, 14px);
  font-weight: 500;
  line-height: 1.58;
  color: #9a9a9a;
  transition: color 0.3s;
}
.transaction_sct .sticky_box .page_title .link:hover,
.development_sct .sticky_box .page_title .link:hover {
  color: var(--color_key);
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .page_title .link,
  .development_sct .sticky_box .page_title .link {
    font-size: 14px;
  }
}
.transaction_sct .sticky_box .period_nav_wrap,
.development_sct .sticky_box .period_nav_wrap {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 5.9rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .period_nav_wrap,
  .development_sct .sticky_box .period_nav_wrap {
    flex: none;
    position: relative;
    margin-top: 1rem;
    overflow: visible;
    display: block;
  }
}
.transaction_sct .sticky_box .scroll_hint,
.development_sct .sticky_box .scroll_hint {
  display: none;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .scroll_hint,
  .development_sct .sticky_box .scroll_hint {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    background-color: var(--white);
    transform: translateY(-50%);
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .transaction_sct .sticky_box .scroll_hint img,
  .development_sct .sticky_box .scroll_hint img {
    display: block;
    width: 0.8rem;
    height: auto;
    transform: rotate(180deg);
  }
  .transaction_sct .sticky_box .scroll_hint.is_hidden,
  .development_sct .sticky_box .scroll_hint.is_hidden {
    opacity: 0;
  }
}
.transaction_sct .sticky_box .period_nav,
.development_sct .sticky_box .period_nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .period_nav,
  .development_sct .sticky_box .period_nav {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .transaction_sct .sticky_box .period_nav::-webkit-scrollbar,
  .development_sct .sticky_box .period_nav::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .period_nav ul,
  .development_sct .sticky_box .period_nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: max-content;
  }
}
.transaction_sct .sticky_box .period_nav li:not(:last-child),
.development_sct .sticky_box .period_nav li:not(:last-child) {
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .period_nav li:not(:last-child),
  .development_sct .sticky_box .period_nav li:not(:last-child) {
    margin-bottom: 0;
  }
}
.transaction_sct .sticky_box .period_nav .period_link,
.development_sct .sticky_box .period_nav .period_link {
  display: inline-flex;
  align-items: center;
  padding: 0.4em 1.4em;
  border-radius: 5rem;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .transaction_sct .sticky_box .period_nav .period_link,
  .development_sct .sticky_box .period_nav .period_link {
    padding: 0.2em 1em;
    font-size: 15px;
    min-width: auto;
    white-space: nowrap;
  }
}
.transaction_sct .sticky_box .period_nav .period_link.is_current,
.development_sct .sticky_box .period_nav .period_link.is_current {
  background-color: var(--white);
}
.transaction_sct .sticky_box .period_nav .period_link:hover,
.development_sct .sticky_box .period_nav .period_link:hover {
  background-color: var(--white);
}
.transaction_sct .content_box,
.development_sct .content_box {
  flex: 1;
  min-width: 0;
  padding: 8.9rem 7.6rem;
  background-color: var(--white);
  border-radius: 1.5rem;
}
@media (max-width: 768px) {
  .transaction_sct .content_box,
  .development_sct .content_box {
    padding: 3rem 5vw 4rem;
    border-radius: 0;
  }
}
.transaction_sct .content_box .term,
.development_sct .content_box .term {
  scroll-margin-top: var(--transaction-scroll-offset, 8px);
}
.transaction_sct .content_box .term:not(:last-child),
.development_sct .content_box .term:not(:last-child) {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .transaction_sct .content_box .term:not(:last-child),
  .development_sct .content_box .term:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.transaction_sct .content_box .term_head,
.development_sct .content_box .term_head {
  display: flex;
  align-items: center;
  min-height: 5.6rem;
  padding: 1.3rem 3rem;
  background-color: #f2f2f2;
  border-radius: 5rem;
  font-size: max(2.1rem, 18px);
  font-weight: 700;
  line-height: 1.43;
}
.transaction_sct .content_box .term_body,
.development_sct .content_box .term_body {
  margin-top: 1.7rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .transaction_sct .content_box .term_body,
  .development_sct .content_box .term_body {
    padding-left: 0;
    padding-right: 0;
  }
}
.transaction_sct .content_box .list,
.development_sct .content_box .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.6rem 7.6rem;
}
@media (max-width: 960px) {
  .transaction_sct .content_box .list,
  .development_sct .content_box .list {
    gap: 2rem 4rem;
  }
}
@media (max-width: 600px) {
  .transaction_sct .content_box .list,
  .development_sct .content_box .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.transaction_sct .content_box .item,
.development_sct .content_box .item {
  min-width: 0;
}
.transaction_sct .content_box .photos .image_l,
.transaction_sct .content_box .photos .image_s,
.development_sct .content_box .photos .image_l,
.development_sct .content_box .photos .image_s {
  overflow: hidden;
  cursor: pointer;
}
.transaction_sct .content_box .photos .image_l img,
.transaction_sct .content_box .photos .image_s img,
.development_sct .content_box .photos .image_l img,
.development_sct .content_box .photos .image_s img {
  display: block;
  transition: transform 0.4s;
}
.transaction_sct .content_box .photos .image_l:hover img,
.transaction_sct .content_box .photos .image_s:hover img,
.development_sct .content_box .photos .image_l:hover img,
.development_sct .content_box .photos .image_s:hover img {
  transform: scale(1.05);
}
.transaction_sct .content_box .photos .image_l,
.development_sct .content_box .photos .image_l {
  border-radius: 0.5rem;
}
.transaction_sct .content_box .photos .image_l img,
.development_sct .content_box .photos .image_l img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/0.8;
}
@media (max-width: 768px) {
  .transaction_sct .content_box .photos .image_l img,
  .development_sct .content_box .photos .image_l img {
    height: auto;
    aspect-ratio: 228/182;
  }
}
.transaction_sct .content_box .photos .image_s,
.development_sct .content_box .photos .image_s {
  display: inline-block;
  margin-top: 0.9rem;
  margin-right: 0.9rem;
  border-radius: 0.3rem;
  vertical-align: top;
}
.transaction_sct .content_box .photos .image_s img,
.development_sct .content_box .photos .image_s img {
  width: 6.2rem;
  height: 4.9rem;
  object-fit: cover;
}
.transaction_sct .content_box .detail,
.development_sct .content_box .detail {
  margin-top: 2.4rem;
}
.transaction_sct .content_box .detail dt,
.development_sct .content_box .detail dt {
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .transaction_sct .content_box .detail dt,
  .development_sct .content_box .detail dt {
    font-size: 15px;
  }
}
.transaction_sct .content_box .detail dd,
.development_sct .content_box .detail dd {
  margin-top: 0.4rem;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.875;
}
@media (max-width: 768px) {
  .transaction_sct .content_box .detail dd,
  .development_sct .content_box .detail dd {
    line-height: 1.5;
  }
}
@media (max-width: 600px) {
  .transaction_sct .content_box .detail dd,
  .development_sct .content_box .detail dd {
    font-size: 14px;
  }
}
.transaction_sct .content_box .empty,
.development_sct .content_box .empty {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.875;
}

/* 販売物件一覧（archive-handling.php）
   ----------------------------------------------------- */
.handling_sct {
  /* 3カラムのカードグリッド（Figma の 317px 幅・93px 間隔に対応） */
}
.handling_sct .handling_items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6rem 9.3rem;
}
@media (max-width: 768px) {
  .handling_sct .handling_items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem 4vw;
  }
}
@media (max-width: 600px) {
  .handling_sct .handling_items {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}
.handling_sct .handling_link {
  display: block;
  color: inherit;
}
.handling_sct .handling_figure {
  margin: 0 0 2.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .handling_sct .handling_figure {
    margin-bottom: 1.8rem;
  }
}
.handling_sct .handling_figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}
.handling_sct .handling_article_ttl {
  margin-bottom: 1.9rem;
  font-size: max(2.2rem, 18px);
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .handling_sct .handling_article_ttl {
    margin-bottom: 1.4rem;
    font-size: 1.8rem;
  }
}
.handling_sct .handling_article_dl {
  display: flex;
  align-items: flex-start;
  font-size: max(1.6rem, 14px);
  line-height: 1.94;
}
@media (max-width: 768px) {
  .handling_sct .handling_article_dl {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.handling_sct .handling_article_dt {
  flex-shrink: 0;
}
.handling_sct .handling_article_dd {
  flex: 1;
  min-width: 0;
}
.handling_sct .handling_link:hover .handling_article_ttl {
  color: var(--color_key);
}
.handling_sct .handling_link:hover .handling_figure img {
  transform: scale(1.05);
}
.handling_sct .empty {
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  color: #909090;
}

/* 販売物件詳細（single-handling.php）
   ----------------------------------------------------- */
.handling_single .handling_single_ttl {
  font-size: max(3.5rem, 25px);
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--font_key);
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .handling_single .handling_single_ttl {
    font-size: 2.8rem;
  }
}
.handling_single .sub_title {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 0.4rem solid var(--color_key);
  font-size: max(2.4rem, 20px);
  line-height: 1.5;
  font-family: var(--font_key);
}
@media (max-width: 768px) {
  .handling_single .sub_title {
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
}
.handling_single .cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem 5rem;
}
.handling_single .cols .col {
  min-width: 0;
}
@media (max-width: 768px) {
  .handling_single .cols {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.handling_single .gallery_main {
  position: relative;
}
.handling_single .gallery_main .swiper-container {
  overflow: hidden;
}
.handling_single .gallery_main .slide {
  margin: 0;
}
.handling_single .gallery_main .slide .img_wrap {
  background-color: var(--gray);
  border-radius: 0.8rem;
}
.handling_single .gallery_main .slide img {
  width: 80%;
  aspect-ratio: 1/0.72;
  object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .handling_single .gallery_main .slide img {
    width: 100%;
  }
}
.handling_single .gallery_main .caption {
  margin-top: 1.2rem;
  font-size: max(1.6rem, 15px);
  line-height: 1.6;
  font-family: var(--font_key);
}
@media (max-width: 768px) {
  .handling_single .gallery_main .caption {
    font-size: 1.5rem;
  }
}
.handling_single .gallery_main .swiper-button-prev,
.handling_single .gallery_main .swiper-button-next {
  top: 43%;
  width: 4.5rem;
  height: 4.5rem;
  margin-top: 0;
  border-radius: 50%;
  background-color: var(--color_key);
  background-image: none;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .handling_single .gallery_main .swiper-button-prev,
  .handling_single .gallery_main .swiper-button-next {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.handling_single .gallery_main .swiper-button-prev::before,
.handling_single .gallery_main .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--white);
  transform: translate(-50%, -50%);
  mask: url("assets/images/icon/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("assets/images/icon/arrow.svg") center/contain no-repeat;
}
@media (max-width: 768px) {
  .handling_single .gallery_main .swiper-button-prev::before,
  .handling_single .gallery_main .swiper-button-next::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.handling_single .gallery_main .swiper-button-prev::after,
.handling_single .gallery_main .swiper-button-next::after {
  content: none;
}
.handling_single .gallery_main .swiper-button-prev:hover,
.handling_single .gallery_main .swiper-button-next:hover {
  opacity: 0.75;
}
.handling_single .gallery_main .swiper-button-prev {
  left: 1.6rem;
}
@media (max-width: 768px) {
  .handling_single .gallery_main .swiper-button-prev {
    left: 1rem;
  }
}
.handling_single .gallery_main .swiper-button-next {
  right: 1.6rem;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .handling_single .gallery_main .swiper-button-next {
    right: 1rem;
  }
}
.handling_single .gallery_thumbs {
  margin-top: 1.6rem;
}
.handling_single .gallery_thumbs .swiper-slide.thumb {
  flex-shrink: 0;
  width: 10rem;
  margin: 0;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .handling_single .gallery_thumbs .swiper-slide.thumb {
    width: 8rem;
  }
}
.handling_single .gallery_thumbs .swiper-slide.thumb .thumb_figure {
  display: block;
  overflow: hidden;
  border-radius: 0.4rem;
  aspect-ratio: 1/1;
}
.handling_single .gallery_thumbs .swiper-slide.thumb .thumb_figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.handling_single .gallery_thumbs .swiper-slide.thumb .thumb_caption {
  margin-top: 0.6rem;
  font-size: max(1.3rem, 12px);
  line-height: 1.4;
  text-align: center;
  font-family: var(--font_key);
}
@media (max-width: 768px) {
  .handling_single .gallery_thumbs .swiper-slide.thumb .thumb_caption {
    margin-top: 0.4rem;
    font-size: 1.2rem;
  }
}
.handling_single .gallery_thumbs .swiper-slide.thumb.swiper-slide-thumb-active, .handling_single .gallery_thumbs .swiper-slide.thumb:hover {
  opacity: 1;
}
.handling_single .gallery_thumbs .swiper-slide.thumb.swiper-slide-thumb-active .thumb_caption {
  font-weight: 700;
}
.handling_single .handling_single_floor_sct .gallery {
  position: relative;
  min-width: 0;
}
@media (max-width: 768px) {
  .handling_single .handling_single_floor_sct .gallery {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}
.handling_single .handling_single_floor_sct .gallery .swiper-container {
  overflow: hidden;
  border-radius: 0.8rem;
}
@media (max-width: 768px) {
  .handling_single .handling_single_floor_sct .gallery .swiper-container {
    border-radius: 0.6rem;
  }
}
.handling_single .handling_single_floor_sct .gallery .slide {
  margin: 0;
}
.handling_single .handling_single_floor_sct .gallery .slide img {
  display: block;
  width: 100%;
  height: auto;
}
.handling_single .handling_single_floor_sct .gallery .swiper-button-prev,
.handling_single .handling_single_floor_sct .gallery .swiper-button-next {
  top: 50%;
  width: 3.6rem;
  height: 3.6rem;
  margin-top: -1.8rem;
  border-radius: 50%;
  background-color: var(--color_key);
  background-image: none;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .handling_single .handling_single_floor_sct .gallery .swiper-button-prev,
  .handling_single .handling_single_floor_sct .gallery .swiper-button-next {
    width: 3.2rem;
    height: 3.2rem;
    margin-top: -1.6rem;
  }
}
.handling_single .handling_single_floor_sct .gallery .swiper-button-prev::before,
.handling_single .handling_single_floor_sct .gallery .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--white);
  transform: translate(-50%, -50%);
  mask: url("assets/images/icon/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("assets/images/icon/arrow.svg") center/contain no-repeat;
}
@media (max-width: 768px) {
  .handling_single .handling_single_floor_sct .gallery .swiper-button-prev::before,
  .handling_single .handling_single_floor_sct .gallery .swiper-button-next::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.handling_single .handling_single_floor_sct .gallery .swiper-button-prev::after,
.handling_single .handling_single_floor_sct .gallery .swiper-button-next::after {
  content: none;
}
.handling_single .handling_single_floor_sct .gallery .swiper-button-prev:hover,
.handling_single .handling_single_floor_sct .gallery .swiper-button-next:hover {
  opacity: 0.75;
}
.handling_single .handling_single_floor_sct .gallery .swiper-button-prev {
  left: 1rem;
}
@media (max-width: 768px) {
  .handling_single .handling_single_floor_sct .gallery .swiper-button-prev {
    left: 0.5rem;
  }
}
.handling_single .handling_single_floor_sct .gallery .swiper-button-next {
  right: 1rem;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .handling_single .handling_single_floor_sct .gallery .swiper-button-next {
    right: 0.5rem;
  }
}
@media (max-width: 768px) {
  .handling_single .handling_single_floor_sct .cmmn_dl dt {
    padding-top: 1.2rem;
    padding-bottom: 0.4rem;
  }
  .handling_single .handling_single_floor_sct .cmmn_dl dt:first-of-type {
    padding-top: 0;
  }
  .handling_single .handling_single_floor_sct .cmmn_dl dd {
    padding-top: 0;
    padding-bottom: 1.2rem;
  }
}
.handling_single .map_frame {
  overflow: hidden;
  border-radius: 0.8rem;
  min-height: 42rem;
}
@media (max-width: 768px) {
  .handling_single .map_frame {
    min-height: 28rem;
  }
}
.handling_single .map_frame > p {
  margin: 0;
  height: 100%;
}
.handling_single .map_frame iframe {
  display: block;
  width: 100%;
  height: 40rem;
  border: 0;
}
@media (max-width: 768px) {
  .handling_single .map_frame iframe {
    height: 28rem;
  }
}
.handling_single .map_link {
  margin-top: 1.6rem;
  text-align: right;
}
.handling_single .map_link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
}
.handling_single .map_link a::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.handling_single .map_link a:hover {
  color: var(--color_key);
}
.handling_single .handling_single_contact_sct .lead {
  font-size: max(2.1rem, 18px);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .handling_single .handling_single_contact_sct .lead {
    font-size: 1.8rem;
  }
}
.handling_single .handling_single_contact_sct .btn_wrap {
  margin-top: 3.8rem;
}
@media (max-width: 768px) {
  .handling_single .handling_single_contact_sct .btn_wrap {
    margin-top: 2.4rem;
  }
}
.handling_single .handling_single_contact_sct .btn_wrap .contact_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-width: 21.8rem;
  min-height: 6.1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.8rem;
  padding-right: 2rem;
  background-color: var(--dark_gray);
  border-radius: 0.6rem;
  color: var(--white);
  font-size: max(2.3rem, 18px);
  font-weight: 700;
  line-height: 1.7;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .handling_single .handling_single_contact_sct .btn_wrap .contact_btn {
    min-width: auto;
    min-height: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1.8rem;
  }
}
.handling_single .handling_single_contact_sct .btn_wrap .contact_btn:hover {
  background-color: var(--color_key);
}
.handling_single .handling_single_contact_sct .back_wrap {
  margin-top: 3.8rem;
}
@media (max-width: 768px) {
  .handling_single .handling_single_contact_sct .back_wrap {
    margin-top: 2.8rem;
  }
}
.handling_single .handling_single_contact_sct .back_wrap .icon {
  width: 2.75rem;
}
@media (max-width: 768px) {
  .handling_single .handling_single_contact_sct .back_wrap .icon {
    width: 2.2rem;
  }
}
.handling_single .handling_single_contact_sct .back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: max(1.6rem, 15px);
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s;
}
.handling_single .handling_single_contact_sct .back::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.handling_single .handling_single_contact_sct .back:hover {
  color: var(--color_key);
}
.handling_single .handling_single_recommend_sct .items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.4rem 2rem;
}
@media (max-width: 960px) {
  .handling_single .handling_single_recommend_sct .items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .handling_single .handling_single_recommend_sct .items {
    gap: 2rem 1.6rem;
  }
}
.handling_single .handling_single_recommend_sct .link {
  display: block;
  color: inherit;
}
.handling_single .handling_single_recommend_sct .link:hover .item_ttl {
  color: var(--color_key);
}
.handling_single .handling_single_recommend_sct .link:hover .figure img {
  transform: scale(1.05);
}
.handling_single .handling_single_recommend_sct .figure {
  overflow: hidden;
  margin-bottom: 1.2rem;
  border-radius: 0.8rem;
}
.handling_single .handling_single_recommend_sct .figure img {
  width: 100%;
  aspect-ratio: 1/0.72;
  object-fit: cover;
  transition: transform 0.4s;
}
.handling_single .handling_single_recommend_sct .item_ttl {
  display: block;
  font-size: max(1.6rem, 15px);
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .handling_single .handling_single_recommend_sct .item_ttl {
    font-size: 1.5rem;
  }
}
.handling_single .handling_single_recommend_sct .foot {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .handling_single .handling_single_recommend_sct .foot {
    margin-top: 3rem;
  }
}

/* lightGallery テーマ調整（BRING）
   vendor: assets/lightgallery/css/lightgallery.min.css を上書き
   ----------------------------------------------------- */
.lg-backdrop {
  background-color: rgba(72, 72, 72, 0.94);
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-backdrop {
  background-color: rgba(255, 255, 255, 0.95);
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: var(--color_key_dark);
  color: var(--white);
}
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: var(--white);
  opacity: 0.85;
}

.lg-toolbar {
  background-color: rgba(172, 106, 3, 0.2);
}
.lg-toolbar .lg-icon {
  color: var(--color_key_dark);
}
.lg-toolbar .lg-icon:hover {
  color: var(--white);
}

.lg-sub-html {
  background-color: rgba(172, 106, 3, 0.4);
  color: var(--white);
}

#lg-counter {
  color: var(--color_key_dark);
}

.lg-thumb-item {
  border-color: rgba(255, 255, 255, 0.2);
}
.lg-thumb-item.active, .lg-thumb-item:hover {
  border-color: var(--color_key_dark);
}

.lg-progress-bar {
  background-color: var(--color_key_dark);
}

.lg-outer .lg-item {
  background: transparent;
}
.lg-outer .lg-thumb-outer {
  background-color: var(--color_key_dark);
}
.lg-outer .lg-toogle-thumb {
  background-color: var(--color_key_dark);
  color: #fff;
}

/* 管理画面エディタ専用（iframe 内レイアウト）
   ----------------------------------------------------- */
html .mce-content-body {
  width: 90%;
  max-width: 760px;
  margin: 0 auto 0;
  font-family: sans-serif;
}

body.mce-content-body {
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  vertical-align: baseline;
  padding-top: 10px !important;
  text-align: left;
}

/* 本文エリア（管理画面・フロント共通）
   ----------------------------------------------------- */
.mce-content-body,
.mceContentBody {
  color: #000;
}
.mce-content-body a,
.mceContentBody a {
  color: #0769e4;
  text-decoration: underline;
}
.mce-content-body a:hover,
.mceContentBody a:hover {
  color: #2d60a0;
  text-decoration: none;
}
.mce-content-body h2,
.mceContentBody h2 {
  font-size: 1.4em;
  color: var(--color_key);
}
.mce-content-body h3,
.mceContentBody h3 {
  font-size: 1.3em;
  position: relative;
  padding-left: 1.3em;
}
.mce-content-body h3::before,
.mceContentBody h3::before {
  content: "";
  display: block;
  width: 0.35em;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color_key);
}
.mce-content-body h4,
.mceContentBody h4 {
  font-size: 1.2em;
  color: var(--color_key);
}
.mce-content-body h2,
.mce-content-body h3,
.mce-content-body h4,
.mceContentBody h2,
.mceContentBody h3,
.mceContentBody h4 {
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1.5em;
}
.mce-content-body p,
.mceContentBody p {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 2em;
}
.mce-content-body ul,
.mce-content-body ol,
.mceContentBody ul,
.mceContentBody ol {
  margin-bottom: 2em;
  padding: inherit;
}
.mce-content-body ul ul,
.mce-content-body ul ol,
.mce-content-body ol ul,
.mce-content-body ol ol,
.mceContentBody ul ul,
.mceContentBody ul ol,
.mceContentBody ol ul,
.mceContentBody ol ol {
  margin-bottom: 0;
}
.mce-content-body ul li,
.mce-content-body ol li,
.mceContentBody ul li,
.mceContentBody ol li {
  margin-bottom: initial;
  list-style: none;
}
.mce-content-body ul,
.mce-content-body ol,
.mceContentBody ul,
.mceContentBody ol {
  background: #FFF2ED;
  padding: 2em;
  border-radius: 1.2em;
}
@media (max-width: 600px) {
  .mce-content-body ul,
  .mce-content-body ol,
  .mceContentBody ul,
  .mceContentBody ol {
    padding: 1.5em 4vw;
  }
}
.mce-content-body ul li,
.mce-content-body ol li,
.mceContentBody ul li,
.mceContentBody ol li {
  padding-left: 1.2em;
  position: relative;
}
.mce-content-body ul li:not(:last-child),
.mce-content-body ol li:not(:last-child),
.mceContentBody ul li:not(:last-child),
.mceContentBody ol li:not(:last-child) {
  margin-bottom: 1em;
}
.mce-content-body ul li::before,
.mceContentBody ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0.2em;
  width: 0.3em;
  height: 0.3em;
  background-color: var(--color_key);
  border-radius: 50%;
}
.mce-content-body ol,
.mceContentBody ol {
  counter-reset: number 0;
}
.mce-content-body ol li::before,
.mceContentBody ol li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  font-weight: bold;
}
.mce-content-body ul ul,
.mce-content-body ol ul,
.mceContentBody ul ul,
.mceContentBody ol ul {
  list-style-type: circle;
}
.mce-content-body strong,
.mceContentBody strong {
  font-weight: bold;
  position: relative;
  background: linear-gradient(transparent 50%, rgba(239, 156, 150, 0.2) 0%);
  display: inline;
}
.mce-content-body figure,
.mceContentBody figure {
  margin-bottom: 2em;
}
.mce-content-body figure img,
.mceContentBody figure img {
  max-width: 100%;
}
.mce-content-body img,
.mceContentBody img {
  margin-top: 2em;
  margin-bottom: 2em;
}
.mce-content-body .wp-block-quote,
.mceContentBody .wp-block-quote {
  border-left: 4px solid #000;
  margin: 0 0 28px;
  padding-left: 1em;
}
.mce-content-body pre,
.mceContentBody pre {
  background: #fff;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.mce-content-body blockquote,
.mceContentBody blockquote {
  font-size: 16px;
  font-weight: 300;
  margin: 0 auto 30px;
  width: 92%;
  background: #fff;
  padding: 20px 20px;
  box-sizing: border-box;
  border: 1px dotted #e6e6e6;
  position: relative;
}
.mce-content-body blockquote::before,
.mceContentBody blockquote::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: block;
  position: absolute;
  left: -20px;
  top: 10px;
  width: 30px;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  background: #cccccc;
  color: #fff;
  border: 1px solid #aaa;
  text-align: center;
  border-radius: 50%;
}
.mce-content-body blockquote p,
.mceContentBody blockquote p {
  margin: 0 auto 30px;
  width: auto !important;
  font-size: 0.9em;
}
.mce-content-body blockquote p:last-child,
.mceContentBody blockquote p:last-child {
  margin-bottom: 0 !important;
}
.mce-content-body blockquote blockquote,
.mceContentBody blockquote blockquote {
  margin-right: 0;
}
.mce-content-body blockquote cite,
.mce-content-body blockquote small,
.mceContentBody blockquote cite,
.mceContentBody blockquote small {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
}
.mce-content-body cite,
.mceContentBody cite {
  border-bottom: 0;
}
.mce-content-body abbr[title],
.mceContentBody abbr[title] {
  border-bottom: 1px dotted;
}
.mce-content-body address,
.mceContentBody address {
  font-style: italic;
  margin: 0 0 24px;
}
.mce-content-body del,
.mceContentBody del {
  color: #333;
}
.mce-content-body ins,
.mceContentBody ins {
  background: #fff9c0;
  border: none;
  color: #333;
  text-decoration: none;
}
.mce-content-body table,
.mceContentBody table {
  border-top: 1px solid #333;
  width: 100%;
  margin-bottom: 2em;
}
.mce-content-body table tr,
.mceContentBody table tr {
  border-bottom: 1px solid #333;
}
.mce-content-body table tr td,
.mceContentBody table tr td {
  padding: 1em 0.5em;
}
.mce-content-body div.shopTable_bttomLink,
.mceContentBody div.shopTable_bttomLink {
  margin-top: -30px;
}
.mce-content-body div.shopTable_bttomLink a,
.mceContentBody div.shopTable_bttomLink a {
  display: block;
  text-align: right;
  color: #f4901e;
  font-weight: bold;
  font-size: 0.9em;
}
.mce-content-body div.shopTable_bttomLink a i,
.mceContentBody div.shopTable_bttomLink a i {
  margin-left: 5px;
}
.mce-content-body div.shopTable_bttomLink a:hover,
.mceContentBody div.shopTable_bttomLink a:hover {
  color: #ff5e00;
}
.mce-content-body div.column,
.mceContentBody div.column {
  width: 95%;
  margin: auto;
}
.mce-content-body div.column div.wp-caption,
.mceContentBody div.column div.wp-caption {
  max-width: 100% !important;
}
.mce-content-body div.column img,
.mceContentBody div.column img {
  max-width: 100%;
  height: auto;
}
.mce-content-body iframe,
.mceContentBody iframe {
  width: 100%;
  max-height: 490px;
  height: 35vw;
}
@media (max-width: 600px) {
  .mce-content-body table tr,
  .mceContentBody table tr {
    display: block;
    height: auto !important;
  }
  .mce-content-body table tr td,
  .mceContentBody table tr td {
    display: block;
    width: 100% !important;
    height: auto !important;
    padding: 0.5em;
  }
  .mce-content-body table tr td:first-child,
  .mceContentBody table tr td:first-child {
    padding-bottom: 0;
  }
}
