@charset "UTF-8";
/* 変更履歴 */
/* 2025/09/20 */
/* /abstracts/_variables.scss */
/*****************************************************

ブレイクポイント

*****************************************************/
/*****************************************************

ブレイクポイント（mixin用）

*****************************************************/
/*****************************************************

カラー

*****************************************************/
/*****************************************************

フォント

*****************************************************/
/* noto明朝 */
/* 游明朝 */
/* 游ゴシック */
/* notoゴシック */
/* ヒラギノ */
/* 丸ゴシック */
/* Zen Kaku Gothic New */
.yakuhan_notomin {
  font-family: yakuhanmp, "Noto Serif JP", "Yu Mincho Light", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.no_yakuhan_notomin {
  font-family: "Noto Serif JP", "Yu Mincho Light", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.yakuhan_noto {
  font-family: yakuhanjp, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.no_yakuhan_noto {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.no_yakuhan_marugo {
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Yu Gothic UI", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.no-yakuhan-zen-kaku-go {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.oxygen {
  font-family: Oxygen, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: "palt";
}

.biz-udpgothic {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.albert-sans {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* 全体の基本フォント設定 */
body {
  color: #2c2623;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
}

/* 関数定義ここから */
/* Sass の数学モジュールの読み込み */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


固定値 rem 変換


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/*****************************************************
 px → rem 基準
*****************************************************/
/* 使用例 */
.size-example-rem {
  font-size: 1.8rem;
  margin-top: 3.2rem;
}

/*****************************************************

widthなどサイズ を px から vw にシンプル変換
min を使用して、最大値を設定
→ rem を上限値として出力

*****************************************************/
/* 使用例 */
.size-min-rem {
  width: min(50vw, 32rem);
  /* 要素幅, 画面幅 */
}

/*****************************************************

widthなどサイズ を px から vw にシンプル変換
max を使用して、最小値を設定
→ rem を下限値として出力

*****************************************************/
/* 使用例 */
.size-max-rem {
  width: max(10vw, 12rem);
  /* 要素幅, 画面幅 */
}

/*****************************************************

widthなどサイズ を px から vw にシンプル変換
clamp を使用して、最小と最大値を設定
→ rem を最小値・最大値として出力

*****************************************************/
/* 使用例 */
.size-clmp-rem {
  font-size: clamp(1.4rem, 1.3542vw, 2.6rem);
  /* 要素最小幅, 要素最大幅, 画面幅 */
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


px　から ％


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/*****************************************************

widthなどサイズ を　px　から % に シンプル

*****************************************************/
/* 使用例 */
.size-example-par {
  width: 2.813%;
}

/*****************************************************

widthなどサイズ を　px　から % に　微調整パラメータ入り

*****************************************************/
/* 使用例 */
.size-example-par02 {
  width: 2.868%;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


固定値 px 変換


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/*****************************************************

widthなどサイズ を　px　から vw に シンプル

*****************************************************/
/* 使用例 */
.size-example-vw {
  width: 4.6154vw;
}

/*****************************************************

widthなどサイズ を　px　から vh に シンプル

*****************************************************/
/* 使用例 */
.size-example-vh {
  width: 2.8125vh;
}

/*****************************************************

widthなどサイズ を　px　から vw に シンプル
min を使用して、最大値を設定

*****************************************************/
/* 使用例 */
.size-min-vw {
  width: min(50vw, 320px);
  /* 要素幅, 画面幅 */
}

/*****************************************************

widthなどサイズ を　px　から vw に シンプル
max を使用して、最小値を設定

*****************************************************/
/* 使用例 */
.size-max-vw {
  width: max(10vw, 120px);
  /* 要素幅, 画面幅 */
}

/*****************************************************

widthなどサイズ を　px　から vw に シンプル
clamp を使用して、最小と最大値を設定

*****************************************************/
/* 使用例 */
.size-clmp-vw {
  font-size: clamp(14px, 1.3542vw, 26px);
  /* 要素最小幅, 要素最大幅, 画面幅 */
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


その他


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/*****************************************************

line-heightの値 Photoshop

*****************************************************/
/* 使用例 */
.size-line-height {
  line-height: 1.667;
  /* 行送りの数値（px）÷ フォントサイズ（px） */
}

/*****************************************************

line-heightの値 figmaで行間が％の場合

*****************************************************/
/**
 * 単位なし line-height を計算
 * @param {number(px)} $fontSizePx  フォントサイズ(px)
 * @param {number(%)}  $percent     行間(％) 例：160
 * @return {number}                 単位なし line-height（例: 1.6）
 */
/* 使用例 */
.title {
  font-size: 38px;
  line-height: 1.6;
}

/* /abstracts/_mixins.scss */
/* abstracts/_mixins.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


メディアクエリ


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/*****************************************************

リセットここから

*****************************************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Remove default margin in favour of better control in authored CSS */
h1,
h2,
h3,
h4,
p {
  margin-block: 0;
}

figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

/* wordpress投稿用 */
img[width],
img[height],
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* 変更履歴 */
/* 2025/09/20 */
/* _typography.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec-tit


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.sec-tit {
  width: fit-content;
  position: relative;
}
.sec-tit .sec-tit__en {
  width: fit-content;
  display: block;
  color: #222584;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .sec-tit .sec-tit__en {
    font-size: 5.1282vw;
  }
}
.sec-tit .sec-tit__ja {
  display: block;
  color: #2c2623;
  font-size: clamp(26px, 2.0833vw, 36px);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.4em;
}
@media screen and (max-width: 768px) {
  .sec-tit .sec-tit__ja {
    font-size: 7.6923vw;
    margin-top: 0.3em;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


unit-tit


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.unit-tit {
  width: fit-content;
  position: relative;
}
.unit-tit .unit-tit__en {
  width: fit-content;
  display: block;
  color: #222584;
  font-size: clamp(14px, 1.2731vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .unit-tit .unit-tit__en {
    font-size: 5.1282vw;
  }
}
.unit-tit .unit-tit__ja {
  width: fit-content;
  display: block;
  color: #2c2623;
  font-size: clamp(22px, 1.8519vw, 32px);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0.4em auto 0;
}
@media screen and (max-width: 768px) {
  .unit-tit .unit-tit__ja {
    font-size: 7.6923vw;
    margin-top: 0.3em;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


リストマーク付きテキスト


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

　リスト　リストマーク１文字用 テキスト
html使用例
<ul class="list_mark_ul mark">
<li data-li_mark="※">プレゼント内容は</li>
========================================================= */
/* PC 表示
--------------------------------------------------------- */
.list_mark_ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* ----- リスト　リストマーク１文字用 ----- */
.list_mark_ul.mark li {
  display: flex;
  align-items: baseline;
}

.list_mark_ul.mark li::before {
  content: attr(data-li_mark);
  color: inherit;
  font-size: 0.9em;
  font-feature-settings: normal;
  text-align: center;
  margin: 0 0.3em 0 0;
}

.list_mark_ul.mark.no_yakuhan_list li::before {
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Yu Gothic UI", sans-serif;
}

/* =========================================================

　リスト　脚注マーク用 2文字　※1 など

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.list_mark_ul.numbered li {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.list_mark_ul.numbered li::before {
  content: attr(data-li_mark);
  display: inline-block;
  color: inherit;
  letter-spacing: 0;
  text-align: left;
  margin: 0 0.5em 0 0;
}

.list_mark_ul.numbered li p {
  flex: 1;
}

/* =========================================================

　リスト以外　マーク１文字用 テキスト
html使用例
<p class="marked_txt" data-li_mark="※">プレゼント内容は</p>
========================================================= */
/* PC 表示
--------------------------------------------------------- */
.marked_txt {
  display: flex;
  align-items: baseline;
}

.marked_txt::before {
  content: attr(data-li_mark);
  color: inherit;
  font-feature-settings: normal;
  text-align: center;
  margin: 0 0.2em 0 0;
}

/* 変更履歴 */
/* 2025/09/20 */
/* /base/_base.scss */
/* アウトライン確認用 */
/* *,
*::before,
*::after {
  outline: 1px solid rgb(255 0 255 / 50%);
} */
/* 表示非表示設定 */
.hide {
  display: none !important;
}

/* sp時に表示時 */
@media all and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
/* pc時に表示時 */
@media all and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* =========================================================

　リンク関係

========================================================= */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a img {
  transition: 0.3s;
}

/* リンクのホバー動作をPCのみに
--------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
  }
  a:hover img {
    opacity: 0.9;
  }
} /* end */
/* PC時の電話番号リンクを無効に
--------------------------------------------------------- */
/* @media (min-width: $sp_breakpoint) {
  a[href^='tel:'] {
    pointer-events: none;
  }
}  */ /* end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


サイト アンカースクロール設定 header高さ追従


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* ヘッダーデフォルト値（JSが走る前の保険） */
:root {
  --header-h: 100px;
}

/* サイドstickyメニュー 祖先に overflow: hidden/auto/scroll を付けると sticky が効かなくなることがあるので注意 */
/*
.l-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.l-side {
    position: sticky;
    top: var(--header-h, 80px);
    max-height: calc(100dvh - var(--header-h, 80px));
    overflow: auto;
  } */
/* サイドメニュー追従クラス付き */
/* #toc a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color .2s, color .2s;
  }

  #toc a.is-active {
    background: #222;
    color: #fff;
  } */
/* アンカー位置をヘッダー下に気持ちよく止める */
.js-section {
  scroll-margin-top: calc(var(--header-h, 80px) + 12px);
}

/* CSSスムーススクロール（JS無しでも効く） */
html {
  scroll-behavior: smooth;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


サイト 枠 設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.base {
  width: 100%;
  position: relative;
  z-index: 1;
}
.base::before {
  content: "";
  border-left: 10px solid #222584;
  width: 10px;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
}
.base::after {
  content: "";
  border-right: 10px solid #222584;
  width: 10px;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
}


@media screen and (max-width: 768px) {
  .base::before {
    border-left: 5px solid #222584;
    width: 5px;
  }
  .base::after {
    border-right: 5px solid #222584;
    width: 5px;
  }
}

.base-innner-col-2 {
  width: 100%;
  display: flex;
}

.main-contents {
  width: 100%;
  position: relative;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .main-contents {
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .main-contents.page-top {
    padding-top: 0;
  }
}

.main-contents.page-top img,
.main-contents.page-contents img {
  width: 100%;
  display: block;
}
.main-contents.page-contents img.icon {
    width: 3vw;
    height: 3.7vw;
}
@media screen and (max-width: 768px) {
.main-contents.page-contents img.icon {
    width: 60px;
    height: 75px;
}
}
/* 変更履歴 */
/* 2025/09/20 */
/* base/_animations.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


inview 汎用アニメーション関係


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* inviewのキー */
.js_fade {
  transition: 1s ease 0.1s;
  opacity: 0;
}

.js_fade_in {
  transform: translateY(15%);
  transition: 1s ease 0.1s;
  opacity: 0;
}

.fade {
  opacity: 1;
  transform: translate(0, 0);
  transform: scale(1, 1);
}

/* ボーダーアニメーションとフェードイン */
@keyframes expandWidth {
  to {
    width: 100%;
  }
}
@keyframes expandHeight {
  to {
    height: 100%;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* セクションタイトルアニメーション01 divは横から spanが上から下へフェードイン */
.js_sec_tit_anime div {
  transform: translateX(-40%);
  transition: 1s ease 0.1s;
  opacity: 0;
}

.js_sec_tit_anime.is-view div {
  transform: translateX(0);
  opacity: 1;
}

.js_sec_tit_anime span {
  transform: translateY(100%);
  transition: 1s ease 0.1s;
  opacity: 0;
}

.js_sec_tit_anime.is-view span {
  transform: translateY(0);
  opacity: 1;
}

/* セクションタイトルアニメーション02 上から下へフェードイン */
.js_sec_tit02_anime {
  opacity: 0;
  transition: 1s ease 0.1s;
}

.js_sec_tit02_anime span {
  transform: translateY(-100%);
  transition: 1s ease 0.1s;
  opacity: 0;
}

.js_sec_tit02_anime.is-view {
  padding: 29px 0;
  opacity: 1;
}

.js_sec_tit02_anime.is-view span {
  transform: translateY(0);
  opacity: 1;
}

@keyframes slideScale {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
.js_bg_slidein_l.look-unit::before {
  transform: scaleX(0);
  left: 0;
  transform-origin: 0% 50%;
}

.js_bg_slidein_l.slidein.look-unit::before {
  transform-origin: 0% 50%; /* 左端を起点に */
  animation: slideScale 0.6s ease-in-out forwards;
}

.js_bg_slidein_r.look-unit::before {
  transform: scaleX(0);
  right: 0;
  transform-origin: 100% 50%;
}

.js_bg_slidein_r.slidein.look-unit::before {
  transform-origin: 100% 50%; /* 右端を起点に */
  animation: slideScale 0.6s ease-in-out forwards;
}

/* 変更履歴 */
/* 2025/09/20 */
/* /layout/_header.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ ヘッダー
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

 メニュー 制御部分

========================================================= */
/* ----- toggle_btn ----- */
/* 初期値は非表示
--------------------------------------------------------- */
.js_nav_toggle,
.js_nav_toggle_menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.js_sp_view_navi .js_nav_toggle {
  background-image: url("../img/cmn/menu_open_black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 27px;
  aspect-ratio: 1/1;
  display: block;
  position: fixed;
  z-index: 9999;
  top: 17px;
  right: 20px;
  opacity: 1;
  cursor: pointer;
}
.js_sp_view_navi .js_nav_toggle.js_open_navi {
  background-image: url("../img/cmn/menu_close.svg");
}
.js_sp_view_navi.page-top .js_nav_toggle {
  background-image: url("../img/cmn/menu_open.svg");
}
.js_sp_view_navi.page-top .js_nav_toggle.js_open_navi {
  background-image: url("../img/cmn/menu_close.svg");
}

/* js_sp_view_navi */
/* ----- mask ----- */
.js_mask,
.js_mask02 {
  background: #000;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  animation: show 1s linear 0s;
  animation-direction: reverse;
}

.js_is_fixed .js_mask,
.js_is_fixed02 .js_mask02 {
  display: block;
  animation: show 0.5s linear 0s forwards;
}

.js_is_fixed .js_mask {
  z-index: 8888;
}

.js_is_fixed02 .js_mask02 {
  z-index: 8888;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
/* ----- 背景スクロール禁止 ----- */
body.js_is_fixed,
body.js_is_fixed02 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ メインメニューなど設定
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

 初期 JS着火前 表示崩れにならないように隠しておく。

========================================================= */
.js_header_origin {
  margin: 0;
  padding: 0;
  opacity: 0;
}

.js_header_origin .sp_only_menu {
  display: none;
}

/* =====================================================================

スマホ表示 ヘッダー

===================================================================== */
/* スマホ表示
--------------------------------------------------------- */
.js_header_origin.js_sp_view_navi {
  border-top: 5px solid #222584;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
}
.js_header_origin.js_sp_view_navi.js_fixed_sp_header {
  height: 60px;
}
.js_header_origin.js_sp_view_navi .header_inner {
  /* box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.25); */
  width: calc(100% - 10px);
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
  margin: auto;
  padding: 17px 12px;
}
.js_header_origin.js_sp_view_navi.js_fixed_sp_header .header_inner {
  background-color: rgba(255, 255, 255, 0.25);
}
.js_header_origin.js_sp_view_navi .header_logo {
  width: 264px;
  height: auto;
  position: relative;
  z-index: 9999;
}
.js_header_origin.js_sp_view_navi .header_logo a {
  display: flex;
}
.js_header_origin.js_sp_view_navi .header_logo.js_open_navi {
  /*  content: ''; */
  background-image: url("../img/cmn/header_company_logo_white.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  aspect-ratio: 264/28;
  width: 264px;
  display: block;
  position: relative;
}
.js_header_origin.js_sp_view_navi .header_logo.js_open_navi img {
  display: none;
}
.js_header_origin.js_sp_view_navi {
  /* =========================================================

   g_nav sp

  ========================================================= */
}
.js_header_origin.js_sp_view_navi .g_nav {
  background-color: #222584;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 9500;
  top: 0;
  left: 100%;
  padding: 100px 20px;
  overflow-y: auto;
  transition: all 0.2s ease;
}
.js_header_origin.js_sp_view_navi .g_nav.js_open_navi {
  left: 0;
}
.js_header_origin.js_sp_view_navi .g_nav > ul {
  width: 100%;
}
.js_header_origin.js_sp_view_navi .g_nav > ul li {
  border-bottom: 1px solid #fff;
  width: 100%;
}
.js_header_origin.js_sp_view_navi .g_nav > ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px 20px;
}
.js_header_origin.js_sp_view_navi .g_nav ul li a p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.js_header_origin.js_sp_view_navi .g_nav ul li a p span {
  display: inline-block;
  color: #fff;
  font-size: sizeconvertvw(15, 390);
  font-weight: 400;
  line-height: lineheight(15, 25);
}
.js_header_origin.js_sp_view_navi {
  /* =========================================================

   info_nav SP時 今回は非表示

  ========================================================= */
  /*  .info_nav {
    width: 100%;
  }

  .info_nav ul {
    width: 100%;
    height: 44px;
    display: flex;
  }

  .info_nav ul li {
    background-color: #df5d3d;
    width: 50%;
  }
  .info_nav ul li:nth-child(2) {
    background-color: #222222;
  }

  .info_nav ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info_nav ul li a span {
    display: block;
    color: $txt_color02;
    font-size: sizeClmpVW(10, 14, 390);
    font-weight: 700;
  } */
} /* /.js_header_origin.js_sp_view_navi */
/* =====================================================================
=====================================================================
=====================================================================

PC 表示 ヘッダー

===================================================================== */
/* PC 表示
--------------------------------------------------------- */
.js_header_origin.js_pc_view_navi {
  background-color: rgb(255, 255, 255);
  border-top: 10px solid #222584;
  border-left: 10px solid #222584;
  border-right: 10px solid #222584;
  /* box-shadow: 0 1px 4px -2px rgb(0 0 0 / 50%); */
  width: 100vw;
  height: 120px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 1;
  transition: all 0.3s ease;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header {
  background-color: rgba(255, 255, 255, 0.55);
  height: 80px;
}
.js_header_origin.js_pc_view_navi .header_inner {
  width: 94.213vw;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  margin: auto;
}
.js_header_origin.js_pc_view_navi .header_logo {
  align-self: center;
  width: min(19.989583vw, 380px);
  transition: all 0.3s ease;
}

.js_header_origin.js_pc_view_navi.js_fixed_pc_header .header_logo {
    width: min(16.5vw, 315px);
}

.js_header_origin.js_pc_view_navi .header_logo a {
  display: flex;
}
.js_header_origin.js_pc_view_navi {
  /* =========================================================

   g_nav PC

  ========================================================= */
}
.js_header_origin.js_pc_view_navi .g_nav {
  align-self: center;
  width: min(46.2963vw, 800px);
  margin-left: auto;
}
.js_header_origin.js_pc_view_navi .g_nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: min(1.7361vw, 30px);
}
.js_header_origin.js_pc_view_navi .g_nav ul li {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.js_header_origin.js_pc_view_navi .g_nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: sizeminvw(10, 1728);
}
.js_header_origin.js_pc_view_navi .g_nav ul li a p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.js_header_origin.js_pc_view_navi .g_nav ul li a .en-txt {
  color: #2c2623;
  font-size: clamp(12px, 0.9828vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.js_header_origin.js_pc_view_navi .g_nav ul li a .ja-txt {
  color: #222584;
  font-size: clamp(10px, 0.8102vw, 14px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.js_header_origin.js_pc_view_navi .g_nav ul li a p span {
  display: inline-block;
}
.js_header_origin.js_pc_view_navi {
  /* =========================================================

  info_nav PC

  ========================================================= */
}
.js_header_origin.js_pc_view_navi .info_nav {
  margin-left: min(1.7361vw, 30px);
}

/* /.js_header_origin.js_pc_view_navi */
/* 変更履歴 */
/* 2025/09/20 */
/* /base/_footer.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ フッター footer_contents
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.sec_footer {
  width: 100%;
  position: relative;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ footer01_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.footer01_wrap {
  background-color: #fff;
  width: 100%;
  position: relative;
  padding: min(5.2083vw, 90px) 0 min(10.4676vw, 140px);
}
@media screen and (max-width: 768px) {
  .footer01_wrap {
    padding: 17.9487vw 0;
  }
}
.footer01_wrap .footer_inner {
  width: min(100% - 80px, 1628px);
  display: flex;
  gap: min(1.1574vw, 20px);
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer01_wrap .footer_inner {
    width: 100%;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12.8205vw;
    padding: 0 5.1282vw;
  }
}
.footer01_wrap {
  /* company_info */
}
.footer01_wrap .company_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: clamp(12px, 0.9259vw, 16px);
  letter-spacing: 0.05em;
}
.footer01_wrap .footer_logo {
  width: min(23.2407vw, 450px);
}
@media screen and (max-width: 768px) {
  .footer01_wrap .footer_logo {
    width: 72.3077vw;
  }
}
.footer01_wrap .footer_logo a {
  display: flex;
}
.footer01_wrap .info_detail {
  width: 100%;
}
.footer01_wrap .info_detail a:hover {
  text-decoration: underline;
}
.footer01_wrap .info_detail .address_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}
.footer01_wrap .info_detail .address span {
  display: inline-block;
}
.footer01_wrap .info_detail .contact_num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  margin-top: 1em;
}
.footer01_wrap .info_detail .contact_num dl {
  display: flex;
  gap: 0 0.1em;
  align-items: center;
  justify-content: center;
}
.footer01_wrap .info_detail .contact_num dl dt {
  display: flex;
  gap: 0 0.5em;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 2px;
}
.footer01_wrap .info_detail .contact_num dl dd {
  margin: 0;
  line-height: 1;
}
.footer01_wrap .info_detail .mail-address {
  margin-top: 0.5em;
}
.footer01_wrap {
  /* footer_link */
}
.footer01_wrap .footer_link {
  width: fit-content;
  font-size: clamp(12px, 0.9259vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.footer01_wrap .footer_link .link_group {
  width: 100%;
}
.footer01_wrap .footer_link ul.group_menu {
  width: 100%;
  display: flex;
  gap: min(2.8935vw, 50px);
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer01_wrap .footer_link ul.group_menu {
    flex-direction: column;
    gap: 5.1282vw;
  }
}
.footer01_wrap .footer_link li {
  width: fit-content;
}
.footer01_wrap .footer_link li:first-child {
  border: none;
}
.footer01_wrap .footer_link li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer01_wrap .footer_link li a:hover {
  text-decoration: underline;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ footer02_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.footer02_wrap {
  background-color: #fff;
  border-bottom: 10px solid #222584;
  width: 100%;
  padding: 0 0 min(1.1574vw, 20px);
}
@media screen and (max-width: 768px) {
  .footer02_wrap {
    border-bottom: 5px solid #222584;
    padding-bottom: 5.1282vw;
  }
}
.footer02_wrap .footer_inner {
  width: min(100% - 80px, 1628px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;


  margin: auto;
  padding-top: min(1.1574vw, 20px);
}
@media screen and (max-width: 768px) {
  .footer02_wrap .footer_inner {
    width: 100%;
  }
}
.footer02_wrap .copy_right {
  display: flex;
  gap: 0 0.2em;
  align-items: center;
  font-size: clamp(10px, 0.6944vw, 12px);
  font-weight: 400;
  letter-spacing: 0.1em;

  flex-flow: column;
  flex-wrap: wrap;

    padding-top: min(1.1574vw, 20px);
      line-height: 2em;

    

}
@media screen and (max-width: 768px) {
  .footer02_wrap .copy_right {
    font-size: 3.0769vw;
    letter-spacing: 0;
  }
}
.footer02_wrap .copy_right span {
  display: inline-block;
  font-size: clamp(10px, 0.8102vw, 14px);
      line-height: 2em;

      
}
@media screen and (max-width: 768px) {
  .footer02_wrap .copy_right span {
    font-size: 2.5641vw;
  }
}

/* 変更履歴 */
/* 2025/09/20 */
/* /components/_buttons.scss */
/*
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


TOPに戻るボタン ver02


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top-btn {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 9999;
}

.move-page-top {
  background: #222584;
  /* border: 1px solid #fff; */
  border-radius: 9999px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  cursor: pointer;
}

.move-page-top .svg_wrap {
  width: 23px;
  position: relative;
  aspect-ratio: 23/22;
}

.move-page-top svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.move-page-top:hover {
  opacity: 0.7;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top-btn {
    right: 5.1282vw;
    bottom: 12.8205vw;
  }
  .move-page-top {
    width: 40px;
    height: 40px;
  }
  .move-page-top .svg_wrap {
    width: 14px;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


page-link-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-link-btn {
  width: min(20.8333vw, 360px);
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  .page-link-btn {
    width: 51.2821vw;
    margin: auto;
  }
}
.page-link-btn a {
  background-color: #222584;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #222584;
  padding: min(1.7361vw, 30px) min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-link-btn a {
    padding: 5.641vw 6.4103vw;
  }
}
.page-link-btn .btn-txt {
  color: #fff;
  font-size: clamp(12px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-link-btn .btn-txt {
    font-size: 4.1026vw;
  }
}
.page-link-btn .arrow {
  position: relative;
  display: inline-block;
  width: 9.1px;
  height: 16.1px;
}
.page-link-btn .arrow::before,
.page-link-btn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.page-link-btn .arrow::before {
  transform: rotate(45deg);
}
.page-link-btn .arrow::after {
  transform: rotate(-45deg);
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


form-link-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.form-link-btn {
  width: min(76.8519vw, 1328px);
  margin: min(2.8935vw, 50px) auto 0;
}
@media screen and (max-width: 768px) {
  .form-link-btn {
    width: 87.1795vw;
    margin-top: 12.8205vw;
  }
}
.form-link-btn a {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #222584;
  padding: min(3.3133vw, 44px) min(0.753vw, 10px);
}
@media screen and (max-width: 768px) {
  .form-link-btn a {
    padding: 9.2308vw 2.5641vw;
  }
}
.form-link-btn .icon {
  background-image: url("../img/cmn/icon_mail.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 41/31;
  width: 41px;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form-link-btn .icon {
    width: 30px;
  }
}
.form-link-btn .btn-txt {
  color: #2c2623;
  font-size: clamp(20px, 1.6204vw, 28px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .form-link-btn .btn-txt {
    font-size: 5.1282vw;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


header-contact-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.header-contact-btn {
  width: min(10.4167vw, 180px);
  min-width: 120px;
}
.header-contact-btn a {
  background-color: #222584;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  padding: min(5.5556vw, 10px);
}
.header-contact-btn .en-txt {
  color: #fff;
  font-size: clamp(12px, 0.9259vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.header-contact-btn .ja-txt {
  color: #fff;
  font-size: clamp(10px, 0.8102vw, 14px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


external-link-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.external-link-btn {
  width: min(17.5347vw, 303px);
  min-width: 150px;
}
@media screen and (max-width: 768px) {
  .external-link-btn {
    width: 64.1026vw;
    margin: auto;
  }
}
.external-link-btn a {
  background-color: #222584;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #222584;
  padding: min(1.2731vw, 22px) min(0.5787vw, 10px);
}
@media screen and (max-width: 768px) {
  .external-link-btn a {
    padding: 4.6154vw 2.5641vw;
  }
}
.external-link-btn .btn-txt {
  color: #fff;
  font-size: clamp(12px, 1.0417vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .external-link-btn .btn-txt {
    font-size: 4.1026vw;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


archive-back-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.archive-back-btn {
  width: min(14.4676vw, 250px);
  min-width: 150px;
}
@media screen and (max-width: 768px) {
  .archive-back-btn {
    width: 46.1538vw;
    
        width: 100%;
    margin: auto;
  }
}
.archive-back-btn a {
  background-color: #222584;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #222584;
  padding: min(1.2731vw, 22px) min(0.5787vw, 10px);
}
@media screen and (max-width: 768px) {
  .archive-back-btn a {
    padding: 4.1026vw 2.5641vw;
  }
}
.archive-back-btn .btn-txt {
  color: #fff;
  font-size: clamp(12px, 1.0417vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .archive-back-btn .btn-txt {
    font-size: 4.1026vw;
  }
}

/* /components/_carousel.scss */
/* 変更履歴 */
/* 2025/09/20 */
/* /components/_look.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


topics-section


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.topics-section {
  width: sizeminvw(1920, 1920);
  position: relative;
  margin: auto;
}
.topics-section .container {
  width: 100%;
  height: auto;
  position: relative;
  margin: auto;
  padding: sizeminvw(130, 1728) 0 0;
}
.topics-section .row {
  box-sizing: border-box;
  display: -webkit-box;
  display: flexbox;
  display: flex;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
}
.topics-section .col-xs-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.topics-section {
  /* 大枠設定 */
}
.topics-section .t-content .section-product__cards__item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: sizeminvw(50, 1728) 0 0;
  padding: sizeminvw(230, 1728) 0 0;
}
.topics-section .t-content .section-product__cards__item:first-child {
  margin-top: 0;
}
.topics-section .t-content .section-product__cards__item:nth-child(odd) .section-product__cards__item__bg {
  left: 0;
}
.topics-section .t-content .section-product__cards__item:nth-child(odd) .section-product__cards__item__content {
  margin: 0 0 0 sizeminvw(908, 1728);
}
.topics-section .t-content .section-product__cards__item:nth-child(2n) .section-product__cards__item__bg {
  right: 0;
}
.topics-section .t-content .section-product__cards__item:nth-child(2n) .section-product__cards__item__content {
  margin: 0 sizeminvw(908, 1728) 0 auto;
}
.topics-section {
  /* イメージ部分アニメーション */
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__image {
  opacity: 0;
  transition: opacity 0s ease 0.5s;
}
.topics-section {
  /* マスクアニメーション */
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask {
  transform: rotateY(90deg);
  transform-origin: left;
  background-color: #0b2166;
  transition: background-color 0s linear 0.35s, -webkit-transform 0.6s cubic-bezier(0.935, 0.015, 0.335, 0.92) 0s;
  transition: transform 0.6s cubic-bezier(0.935, 0.015, 0.335, 0.92) 0s, background-color 0s linear 0.35s, -webkit-transform 0.6s cubic-bezier(0.935, 0.015, 0.335, 0.92) 0s;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i {
  transform: rotateY(0deg);
  transition: -webkit-transform 0.5s cubic-bezier(0.935, 0.015, 0.335, 0.92);
  transition: transform 0.5s cubic-bezier(0.935, 0.015, 0.335, 0.92), -webkit-transform 0.5s cubic-bezier(0.935, 0.015, 0.335, 0.92);
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:first-child {
  transition-delay: 0.6s;
  transform-origin: left;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(2),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(3) {
  transition-delay: 0.6s;
  transform-origin: right;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(4) {
  transition-delay: 0.6s;
  transform-origin: left;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(5),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(6) {
  transition-delay: 0.6s;
  transform-origin: right;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(7),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(8) {
  transition-delay: 0.6s;
  transform-origin: left;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(9),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(10) {
  transition-delay: 0.6s;
  transform-origin: right;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(11) {
  transition-delay: 0.6s;
  transform-origin: left;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(12),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(13) {
  transition-delay: 0.6s;
  transform-origin: right;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(14),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(15) {
  transition-delay: 0.6s;
  transform-origin: left;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(16),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(17) {
  transition-delay: 0.6s;
  transform-origin: right;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(18) {
  transition-delay: 0.6s;
  transform-origin: left;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(19),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(20) {
  transition-delay: 0.6s;
  transform-origin: right;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(21),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(22) {
  transition-delay: 0.6s;
  transform-origin: left;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(23),
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(24) {
  transition-delay: 0.6s;
  transform-origin: right;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(25) {
  transition-delay: 0.6s;
  transform-origin: left;
}
.topics-section {
  /* コンテンツ部分アニメーション */
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__content {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease 1.5s;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__status {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease 1.75s;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__title {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease 2s;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__message {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease 2.25s;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__button {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease 2.5s;
}
.topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__button.-button-onrow {
  width: 100%;
  text-align: center;
}
.topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__image {
  opacity: 1;
}
.topics-section {
  /* アニメーション 表示された時のクラス追加時 */
}
.topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__mask {
  background-color: rgba(14, 25, 45, 0);
  transform: rotateY(0deg);
}
.topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__mask i {
  transform: rotateY(90deg);
}
.topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__button,
.topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__content,
.topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__message,
.topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__status,
.topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__title {
  opacity: 1;
  transform: translate(0);
}
.topics-section {
  /* イメージ部分あしらい */
}
.topics-section .t-content .section-product__cards__item__bg {
  position: absolute;
  top: 0;
  /* width: calc(100% - 678px); */ /* 全体幅1728px画像幅が1050px */
  width: sizeminvw(1050, 1728);
  height: auto;
  aspect-ratio: 1050/610;
}
.topics-section .t-content .section-product__cards__item__bg__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.topics-section .t-content .section-product__cards__item__bg__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.topics-section {
  /* マスクアニメーション部分 あしらい */
  /* マスク */
}
.topics-section .section-product__cards__item .section-product__cards__item__bg__mask {
  background-color: #0b7dc5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
}
.topics-section .section-product__cards__item:nth-child(2) .section-product__cards__item__bg__mask {
  background-color: #0b7dc5;
}
.topics-section .section-product__cards__item:nth-child(3) .section-product__cards__item__bg__mask {
  background-color: #0a13b6;
}
.topics-section {
  /* マスクタイル */
}
.topics-section .section-product__cards__item .section-product__cards__item__bg__mask i {
  background-color: #0b7dc5;
  width: 20%;
  height: 20%;
  display: block;
}
.topics-section .section-product__cards__item:nth-child(2) .section-product__cards__item__bg__mask i {
  background-color: #0a13b6;
}
.topics-section .section-product__cards__item:nth-child(3) .section-product__cards__item__bg__mask i {
  background-color: #0b7dc5;
}
.topics-section {
  /* コンテンツ部分あしらい */
}
.topics-section .section-product__cards__item .section-product__cards__item__content {
  background-color: #0b7dc5;
  width: sizeminvw(655, 1728);
  min-height: sizeminvw(430, 1728);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: sizeminvw(60, 1728);
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.topics-section .section-product__cards__item:nth-child(2) .section-product__cards__item__content {
  background-color: #0a13b6;
}
.topics-section .section-product__cards__item:nth-child(3) .section-product__cards__item__content {
  background-color: #0b7dc5;
}
.topics-section {
  /* タイトル */
}
.topics-section .section-product__cards__item .section-product__cards__item__title {
  width: sizeminvw(303, 1728);
}
.topics-section .section-product__cards__item:nth-child(2) .section-product__cards__item__title {
  width: sizeminvw(324, 1728);
}
.topics-section .section-product__cards__item:nth-child(3) .section-product__cards__item__title {
  width: sizeminvw(468, 1728);
}
.topics-section .t-content .section-product__cards__item__status {
  font-size: sizeclmpvw(14, 24, 1728);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  will-change: transform;
  margin-top: sizeminvw(20, 1728);
}
.topics-section .t-content .section-product__cards__item__status__number {
  display: block;
}
.topics-section .t-content .section-product__cards__item__status__number::before {
  content: "-";
  display: inline-block;
}
.topics-section .t-content .section-product__cards__item__status__name {
  display: block;
}
.topics-section .t-content .section-product__cards__item__message {
  font-size: sizeclmpvw(12, 16, 1728);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: sizeminvw(30, 1728);
  padding-bottom: 10px;
  will-change: transform;
}
.topics-section .t-content .section-product__cards__item__button {
  margin-top: auto;
}

/*
---------------------------------------------------------
---------------------------------------------------------
---------------------------------------------------------
---------------------------------------------------------
---------------------------------------------------------
*/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .topics-section {
    width: 100%;
    position: relative;
  }
  .topics-section .container {
    width: 100%;
    height: auto;
    position: relative;
    margin: auto;
    padding: 0;
  }
  .topics-section .row {
    box-sizing: border-box;
    display: -webkit-box;
    display: flexbox;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
  }
  .topics-section .col-xs-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .topics-section {
    /* 大枠設定 */
  }
  .topics-section .t-content {
    margin: auto;
  }
  .topics-section .t-content .section-product__cards__item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: sizeconvertvw(30, 390) auto 0;
    padding: sizeconvertvw(134, 390) 0 0;
  }
  .topics-section .t-content .section-product__cards__item:first-child {
    margin-top: 0;
  }
  .topics-section .t-content .section-product__cards__item:nth-child(odd) .section-product__cards__item__bg {
    left: 0;
  }
  .topics-section .t-content .section-product__cards__item:nth-child(odd) .section-product__cards__item__content {
    margin: 0 0 0 auto;
  }
  .topics-section .t-content .section-product__cards__item:nth-child(2n) .section-product__cards__item__bg {
    right: 0;
  }
  .topics-section .t-content .section-product__cards__item:nth-child(2n) .section-product__cards__item__content {
    margin: 0 auto 0 0;
  }
  .topics-section {
    /* イメージ部分アニメーション */
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__image {
    opacity: 0;
    transition: opacity 0s ease 0.5s;
  }
  .topics-section {
    /* マスクアニメーション */
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask {
    transform: rotateY(90deg);
    transform-origin: left;
    background-color: #0b2166;
    transition: background-color 0s linear 0.35s, -webkit-transform 0.6s cubic-bezier(0.935, 0.015, 0.335, 0.92) 0s;
    transition: transform 0.6s cubic-bezier(0.935, 0.015, 0.335, 0.92) 0s, background-color 0s linear 0.35s, -webkit-transform 0.6s cubic-bezier(0.935, 0.015, 0.335, 0.92) 0s;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i {
    transform: rotateY(0deg);
    transition: -webkit-transform 0.5s cubic-bezier(0.935, 0.015, 0.335, 0.92);
    transition: transform 0.5s cubic-bezier(0.935, 0.015, 0.335, 0.92), -webkit-transform 0.5s cubic-bezier(0.935, 0.015, 0.335, 0.92);
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:first-child {
    transition-delay: 0.6s;
    transform-origin: left;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(2),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(3) {
    transition-delay: 0.6s;
    transform-origin: right;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(4) {
    transition-delay: 0.6s;
    transform-origin: left;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(5),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(6) {
    transition-delay: 0.6s;
    transform-origin: right;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(7),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(8) {
    transition-delay: 0.6s;
    transform-origin: left;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(9),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(10) {
    transition-delay: 0.6s;
    transform-origin: right;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(11) {
    transition-delay: 0.6s;
    transform-origin: left;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(12),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(13) {
    transition-delay: 0.6s;
    transform-origin: right;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(14),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(15) {
    transition-delay: 0.6s;
    transform-origin: left;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(16),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(17) {
    transition-delay: 0.6s;
    transform-origin: right;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(18) {
    transition-delay: 0.6s;
    transform-origin: left;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(19),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(20) {
    transition-delay: 0.6s;
    transform-origin: right;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(21),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(22) {
    transition-delay: 0.6s;
    transform-origin: left;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(23),
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(24) {
    transition-delay: 0.6s;
    transform-origin: right;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(25) {
    transition-delay: 0.6s;
    transform-origin: left;
  }
  .topics-section {
    /* コンテンツ部分アニメーション */
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__content {
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s ease 1.5s;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__status {
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s ease 1.75s;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__title {
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s ease 2s;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__message {
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s ease 2.25s;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__button {
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s ease 2.5s;
  }
  .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__button.-button-onrow {
    width: 100%;
    text-align: center;
  }
  .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__image {
    opacity: 1;
  }
  .topics-section {
    /* アニメーション 表示された時のクラス追加時 */
  }
  .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__mask {
    background-color: rgba(14, 25, 45, 0);
    transform: rotateY(0deg);
  }
  .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__mask i {
    transform: rotateY(90deg);
  }
  .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__button,
  .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__content,
  .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__message,
  .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__status,
  .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__title {
    opacity: 1;
    transform: translate(0);
  }
  .topics-section {
    /* イメージ部分あしらい */
  }
  .topics-section .t-content .section-product__cards__item__bg {
    position: absolute;
    top: 0;
    width: calc(100% - 30px); /* 全体幅390pxで画像幅が360px幅なので */
    height: sizeconvertvw(310, 390);
  }
  .topics-section .t-content .section-product__cards__item__bg__inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .topics-section .t-content .section-product__cards__item__bg__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .topics-section {
    /* マスクアニメーション部分 あしらい */
  }
  .topics-section .section-product__cards__item .section-product__cards__item__bg__mask {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 0;
  }
  .topics-section .section-product__cards__item .section-product__cards__item__bg__mask i {
    width: 20%;
    height: 20%;
    display: block;
  }
  .topics-section {
    /* コンテンツ部分あしらい */
  }
  .topics-section .section-product__cards__item .section-product__cards__item__content {
    width: sizeconvertvw(295, 390);
    min-height: sizeconvertvw(295, 390);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: sizeconvertvw(24, 390);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
  }
  .topics-section {
    /* タイトル */
  }
  .topics-section .section-product__cards__item .section-product__cards__item__title {
    width: sizeminvw(197, 390);
  }
  .topics-section .section-product__cards__item:nth-child(2) .section-product__cards__item__title {
    width: sizeminvw(212, 390);
  }
  .topics-section .section-product__cards__item:nth-child(3) .section-product__cards__item__title {
    width: sizeminvw(197, 390);
  }
  .topics-section .t-content .section-product__cards__item__status {
    font-size: sizeconvertvw(16, 390);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.02em;
    will-change: transform;
  }
  .topics-section .t-content .section-product__cards__item__status__number {
    display: block;
  }
  .topics-section .t-content .section-product__cards__item__status__number::before {
    content: "-";
    display: inline-block;
  }
  .topics-section .t-content .section-product__cards__item__status__name {
    display: block;
  }
  .topics-section .t-content .section-product__cards__item__title {
    font-size: sizeconvertvw(24, 390);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-top: sizeconvertvw(6, 390);
    will-change: transform;
  }
  .topics-section .t-content .section-product__cards__item__message {
    font-size: sizeconvertvw(14, 390);
    font-weight: 400;
    line-height: lineheight(14, 24);
    letter-spacing: 0.1em;
    text-align: justify;
    margin-top: sizeconvertvw(12, 390);
    will-change: transform;
  }
  .topics-section .t-content .section-product__cards__item__button {
    margin-top: auto;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/09/20 */
/* /components/_template-parts.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.parts_g-map_embed


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.parts_g-map_embed {
  width: 100%;
}
.parts_g-map_embed .g-map-wrap {
  width: 100%;
  aspect-ratio: 1328/565;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .parts_g-map_embed .g-map-wrap {
    aspect-ratio: 350/285;
  }
}
.parts_g-map_embed .g-map-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.parts-contact-info


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.parts-contact-info {
  background-image: url("../img/cmn/contact-info_bg_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .parts-contact-info {
    background-image: url("../img/cmn/contact-info_bg_sp_2x.jpg");
  }
}
.parts-contact-info .sec-wrap {
  width: 100%;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(8.5995vw, 140px) 0 min(6.1425vw, 100px);
}
@media screen and (max-width: 768px) {
  .parts-contact-info .sec-wrap {
    margin-top: 17.4359vw;
    padding: 0 0 12.8205vw;
  }
}
.parts-contact-info .sec-tit {
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .parts-contact-info .sec-tit {
    width: 100%;
    padding-top: 12.8205vw;
  }
}
.parts-contact-info .sec-tit .sec-tit__en {
  color: #fff;
  margin: auto;
}
.parts-contact-info .sec-tit .sec-tit__ja {
  color: #fff;
}
.parts-contact-info .sec-tit .sec-tit-img {
  width: min(33.044vw, 571px);
  position: absolute;
  bottom: min(0.9838vw, 17px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .parts-contact-info .sec-tit .sec-tit-img {
    width: 100%;
    bottom: auto;
    top: 0;
  }
}
.parts-contact-info .sec-catch {
  color: #fff;
  font-size: clamp(12px, 1.1574vw, 20px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  margin: min(2.8935vw, 50px) auto 0;
}
@media screen and (max-width: 768px) {
  .parts-contact-info .sec-catch {
    font-size: 4.1026vw;
    margin-top: 7.6923vw;
  }
}
.parts-contact-info .contents-wrap {
  width: min(76.8519vw, 1328px);
  margin: min(2.8935vw, 50px) auto 0;
}
@media screen and (max-width: 768px) {
  .parts-contact-info .contents-wrap {
    width: 100%;
    margin: 8.7179vw auto 0;
    padding: 0 5.1282vw;
  }
}
.parts-contact-info .contact__unit {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 100%;
  padding: min(2.8935vw, 50px) min(1.1574vw, 20px);
}
@media screen and (max-width: 768px) {
  .parts-contact-info .contact__unit {
    font-size: 3.5897vw;
    margin-top: 12.3077vw;
    padding: 12.8205vw 5.1282vw;
  }
}
.parts-contact-info .contact-top-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .parts-contact-info .contact-top-wrap {
    flex-direction: column;
  }
}
.parts-contact-info .contact-head {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .parts-contact-info .contact-head {
    width: 100%;
  }
}
.parts-contact-info .contact-txt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(18px, 1.6204vw, 28px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .parts-contact-info .contact-txt {
    gap: 0.2em;
    font-size: 5.1282vw;
  }
}
.parts-contact-info .contact-txt::before {
  content: "";
  background-image: url("../img/cmn/icon_phone.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 49/48;
  width: min(2.8356vw, 49px);
  display: block;
  position: relative;
  top: min(0.2894vw, 5px);
}
@media screen and (max-width: 768px) {
  .parts-contact-info .contact-txt::before {
    width: 7.6923vw;
  }
}
.parts-contact-info .contact-btn {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 2.4306vw, 42px);
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .parts-contact-info .contact-btn {
    width: 100%;
    font-size: 9.7436vw;
  }
}
.parts-contact-info .contact-bottom-wrap {
  width: 100%;
  display: flex;
  gap: 20px;
  color: #fff;
  margin-top: min(1.3889vw, 24px);
}
@media screen and (max-width: 768px) {
  .parts-contact-info .contact-bottom-wrap {
    flex-direction: column;
    margin-top: 5.1282vw;
  }
}
.parts-contact-info .bottom-inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(12px, 0.9259vw, 16px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .parts-contact-info .bottom-inner {
    width: 100%;
    font-size: 3.0769vw;
    gap: 1em;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.parts-contact-info02


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.parts-contact-info02 {
  background-color: #f2f7f7;
  width: 100%;
  position: relative;
}
.parts-contact-info02 .sec-wrap {
  width: 100%;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(9.2138vw, 150px) min(0.6143vw, 10px);
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .sec-wrap {
    margin-top: 17.4359vw;
    padding: 12.8205vw 0;
  }
}
.parts-contact-info02 .contents-wrap {
  width: min(76.8519vw, 1328px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .contents-wrap {
    width: 82.0513vw;
  }
}
.parts-contact-info02 .contact__unit {
  background-color: #fff;
  width: 100%;
  padding: min(2.5463vw, 44px) min(1.1574vw, 20px);
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .contact__unit {
    font-size: 3.5897vw;
    padding: 12.8205vw 5.1282vw;
  }
}
.parts-contact-info02 .contact-top-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .contact-top-wrap {
    flex-direction: column;
  }
}
.parts-contact-info02 .contact-head {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .contact-head {
    width: 100%;
  }
}
.parts-contact-info02 .contact-txt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(18px, 1.6204vw, 28px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .contact-txt {
    gap: 0.2em;
    font-size: 5.1282vw;
  }
}
.parts-contact-info02 .contact-txt::before {
  content: "";
  background-image: url("../img/cmn/icon_phone02.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 49/48;
  width: min(2.8356vw, 49px);
  display: block;
  position: relative;
  top: min(0.2894vw, 5px);
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .contact-txt::before {
    width: 7.6923vw;
  }
}
.parts-contact-info02 .contact-btn-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .contact-btn-wrap {
    width: 100%;
  }
}
.parts-contact-info02 .contact-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222584;
  font-size: clamp(24px, 2.4306vw, 42px);
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .contact-btn {
    width: 100%;
    font-size: 9.7436vw;
  }
}
.parts-contact-info02 .bottom-inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(12px, 0.9259vw, 16px);
  margin: min(0.5787vw, 10px) auto;
}
@media screen and (max-width: 768px) {
  .parts-contact-info02 .bottom-inner {
    width: 100%;
    font-size: 3.0769vw;
    gap: 1em;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.parts-fixed-menu
固定メニュー


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.parts-fixed-menu {
  width: fit-content;
  position: absolute;
  top: min(2.8935vw, 50px);
  right: min(4.3403vw, 75px);
  z-index: 999;
}
.parts-fixed-menu .sec-wrap {
  width: 100%;
  position: relative;
}
.parts-fixed-menu .btn-wrap {
  width: 100%;
  display: flex;
  gap: min(1.1574vw, 20px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .parts-fixed-menu {
    width: 100%;
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
  }
  .parts-fixed-menu .btn-wrap {
    background-color: rgb(23, 44, 73);
    width: 100%;
    display: flex;
    gap: 0;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/09/20 */
/* /components/_wp_parts.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


パンくずリスト
wp側でも設定があるため「.sec__breadcrumb_trail」のクラスは変えない事

＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.sec__breadcrumb_trail {
  width: 100%;
  margin: auto;
  padding: 0 min(2.3148vw, 40px) min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .sec__breadcrumb_trail {
    padding: 2.5641vw 3.8462vw;
  }
}
.sec__breadcrumb_trail ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .sec__breadcrumb_trail ul {
    justify-content: flex-start;
    gap: 0.5em;
  }
}
.sec__breadcrumb_trail ul li {
  display: flex;
  align-items: flex-start;
  font-size: clamp(10px, 0.8102vw, 14px);
  font-weight: 500;
  line-height: 1.714;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .sec__breadcrumb_trail ul li {
    font-size: 3.0769vw;
    line-height: 2;
  }
}
.sec__breadcrumb_trail ul li + li::before {
  content: "＞";
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .sec__breadcrumb_trail ul li + li::before {
    margin-right: 0.5em;
  }
}
.sec__breadcrumb_trail ul li a {
  display: block;
  color: #222584;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  white-space: nowrap;
}
.sec__breadcrumb_trail ul li a:hover {
  text-decoration: none;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.post_page_pagination ページネーション


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.post_page_pagination {
  width: 100%;
  display: flex;
  gap: min(0.5787vw, 10px);
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: min(5.787vw, 100px) auto 0;
}
@media screen and (max-width: 768px) {
  .post_page_pagination {
    gap: 2.5641vw;
        flex-wrap: wrap;
  }
}
.post_page_pagination .page-numbers {
  background-color: #fff;
  width: 50px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222584;
}
@media screen and (max-width: 768px) {
  .post_page_pagination .page-numbers {
    width: 40px;
  }
}
.post_page_pagination .page-numbers:hover {
  background-color: #222584;
  color: #fff;
  /* text-decoration: underline;
  text-underline-offset: 10px; */
}
.post_page_pagination .current {
  opacity: 1;
  background-color: #222584;
  color: #fff;
  /* text-decoration: underline;
  text-underline-offset: 10px; */
}
.post_page_pagination .prev,
.post_page_pagination .next {
  opacity: 1;
  background-color: #fff;
  color: #222584;
}
.post_page_pagination .dots {
  background: transparent;
  color: #2c2623;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.postカテゴリーセレクトボックス


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.category-filter_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: sizeconvertvw(60, 1000);
}
.category-filter_wrap .filter_head {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.category-filter_wrap .category-filter {
  width: fit-content;
  position: relative;
  margin-left: 0.2em;
}
.category-filter_wrap .category-filter::after {
  content: "";
  border-top: 2px solid #2c2623;
  border-left: 2px solid #2c2623;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 46%;
  right: 14px;
  transform: translateY(-50%) rotate(-135deg);
  pointer-events: none;
}
.category-filter_wrap .category-filter .category-select {
  border: 1px solid #000;
  max-width: 400px;
  width: auto;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 34px 10px 14px;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (width <= 768px) {
  .category-filter_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 0;
  }
  .category-filter_wrap .filter_head {
    font-size: sizeconvertvw(14, 390);
    font-weight: 500;
    letter-spacing: 0.16em;
  }
  .category-filter_wrap .category-filter {
    width: fit-content;
    position: relative;
    margin-left: 0.2em;
  }
  .category-filter_wrap .category-filter::after {
    content: "";
    border-top: 2px solid #2c2623;
    border-left: 2px solid #2c2623;
    width: 9px;
    height: 9px;
    position: absolute;
    top: 46%;
    right: 14px;
    transform: translateY(-50%) rotate(-135deg);
    pointer-events: none;
  }
  .category-filter_wrap .category-filter .category-select {
    border: 1px solid #000;
    max-width: sizeconvertvw(240, 390);
    width: auto;
    font-size: sizeconvertvw(14, 390);
    font-weight: 500;
    padding: sizeconvertvw(8, 390) 32px sizeconvertvw(8, 390) 12px;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/09/20 */
/* /vendors/_form_style.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


page-contents コンテンツページ共通
sec__contact_form お問い合わせフォーム


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

全体

========================================================= */
/* mixin
--------------------------------------------------------- */
.page-contact .sec__contact_form {
  width: 100%;
  position: relative;
}
.page-contact .sec__contact_form .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(2.8935vw, 50px) 0 min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .sec-wrap {
    padding: 7.6923vw 0 25.641vw;
  }
}
.page-contact .sec__contact_form {
  /* =========================================================

  　フォーム部分

  ========================================================= */
  /* mixin
  --------------------------------------------------------- */
}
.page-contact .sec__contact_form .form_wrap {
  background-color: #f2f7f7;
  width: min(100% - 40px, 1328px);
  margin: auto;
  padding: min(4.6296vw, 80px) min(5.787vw, 100px) min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap {
    width: 100%;
    padding: 7.6923vw 7.6923vw 12.8205vw;
  }
}
.page-contact .sec__contact_form .form_wrap {
  /* 入力部分（共通） */
}
.page-contact .sec__contact_form .form_wrap input[type=text],
.page-contact .sec__contact_form .form_wrap input[type=tel],
.page-contact .sec__contact_form .form_wrap input[type=email],
.page-contact .sec__contact_form .form_wrap select,
.page-contact .sec__contact_form .form_wrap textarea {
  background-color: #fff;
  /* border: 1px solid $main-color; */
  border: none;
  border-radius: 0;
  width: 100%;
  font-size: clamp(14px, 1.8587vw, 20px);
  line-height: lineheight(20, 30);
  letter-spacing: 0.1em;
  padding: 0.85em 1em;
  outline: none; /* フォーカス時デフォルトのハイライト消す */
  transition: 0.1s;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap input[type=text],
  .page-contact .sec__contact_form .form_wrap input[type=tel],
  .page-contact .sec__contact_form .form_wrap input[type=email],
  .page-contact .sec__contact_form .form_wrap select,
  .page-contact .sec__contact_form .form_wrap textarea {
    font-size: 3.5897vw;
    line-height: lineheight(14, 26);
  }
}
.page-contact .sec__contact_form .form_wrap input[type=text]:focus,
.page-contact .sec__contact_form .form_wrap input[type=tel]:focus,
.page-contact .sec__contact_form .form_wrap input[type=email]:focus,
.page-contact .sec__contact_form .form_wrap select:focus,
.page-contact .sec__contact_form .form_wrap textarea:focus {
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.4); /* フォーカスした時に影をつける */
  border: solid 2px #008cff;
}
.page-contact .sec__contact_form .form_wrap .form_item {
  border-bottom: 1px solid #222584;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: min(2.5463vw, 44px);
  margin-top: min(2.3148vw, 40px);
  padding-bottom: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .form_item {
    flex-direction: column;
    gap: 2.5641vw;
    margin-top: 6.4103vw;
    padding-bottom: 6.4103vw;
  }
}
.page-contact .sec__contact_form .form_wrap .form_item:first-of-type {
  margin-top: 0;
}
.page-contact .sec__contact_form .form_wrap .form_item:last-of-type {
  border-bottom: none;
}
.page-contact .sec__contact_form .form_wrap {
  /* 項目名 */
}
.page-contact .sec__contact_form .form_wrap .form_item dt {
  flex-grow: 1;
  display: flex;
  gap: 2em;
  align-items: center;
}
.page-contact .sec__contact_form .form_wrap .form_item dt label {
  width: 100%;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .form_item dt label {
    gap: 1em;
    justify-content: flex-start;
  }
}
.page-contact .sec__contact_form .form_wrap .form_item dt .title_txt {
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .form_item dt .title_txt {
    font-size: 3.5897vw;
  }
}
.page-contact .sec__contact_form .form_wrap {
  /* .form_item dt .title_txt::before {
    content: '・';
    display: inline-block;
    margin-right: 0.2em;
  } */
  /* 必須マーク */
}
.page-contact .sec__contact_form .form_wrap .form_item dt .mandatory_mark {
  background-color: #f00;
  width: min(4.0509vw, 70px);
  aspect-ratio: 70/40;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(10px, 1.0417vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .form_item dt .mandatory_mark {
    width: 9.2308vw;
    aspect-ratio: 36/21;
    font-size: 3.0769vw;
  }
}
.page-contact .sec__contact_form .form_wrap {
  /* 入力部分（共通） */
}
.page-contact .sec__contact_form .form_wrap .form_item dd {
  width: min(43.8079vw, 757px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .form_item dd {
    width: 100%;
  }
}
.page-contact .sec__contact_form .form_wrap {
  /* テキストエリアパーツ */
}
.page-contact .sec__contact_form .form_wrap .form_item.textarea_parts {
  align-items: flex-start;
}
.page-contact .sec__contact_form .form_wrap .form_item.textarea_parts dt {
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .form_item.textarea_parts dt {
    margin-top: 0;
  }
}
.page-contact .sec__contact_form .form_wrap .form_item textarea {
  resize: vertical; /* 縦方向にだけ伸縮 */
}
.page-contact .sec__contact_form .form_wrap {
  /* 郵便番号パーツ（今回なし） */
}
.page-contact .sec__contact_form .form_wrap .form_item.post_code_unit .post_code_inner {
  display: flex;
  gap: 0 20px;
  align-items: center;
}
.page-contact .sec__contact_form .form_wrap .form_item.post_code_unit .post_code_inner span {
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 400;
}
.page-contact .sec__contact_form .form_wrap .form_item.post_code_unit .post_code_inner input {
  width: 246px;
}
.page-contact .sec__contact_form .form_wrap .form_item.post_code_unit .post_code_inner .post_code_note {
  font-size: clamp(12px, 1.0938vw, 14px);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-left: 53px;
}
.page-contact .sec__contact_form .form_wrap .form_item.post_code_unit .post_code_btn {
  width: 286px;
  aspect-ratio: 286/50;
  margin-top: 37px;
}
.page-contact .sec__contact_form .form_wrap .form_item.post_code_unit .post_code_btn button {
  background-color: #0b7dc5;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.page-contact .sec__contact_form .form_wrap .form_item.post_code_unit .btn_note {
  font-size: clamp(12px, 1.3011vw, 14px);
  letter-spacing: 0.04em;
  margin-top: 20px;
}
.page-contact .sec__contact_form .form_wrap {
  /* 都道府県パーツ（今回なし） */
}
.page-contact .sec__contact_form .form_wrap .form_item.prefectures_parts dd {
  flex-grow: 0;
  width: 280px;
}
.page-contact .sec__contact_form .form_wrap {
  /* セレクトボックスパーツ（今回なし） */
}
.page-contact .sec__contact_form .form_wrap .form_item .select_box {
  position: relative;
}
.page-contact .sec__contact_form .form_wrap .form_item .select_box::after {
  content: "";
  background-image: url("/form_parts/img/select_box_arrow02.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 18px;
  aspect-ratio: 18/14;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  pointer-events: none;
}
.page-contact .sec__contact_form .form_wrap .form_item .select_box select {
  appearance: none;
}
.page-contact .sec__contact_form .form_wrap {
  /* チェックボックス（今回なし） */
}
.page-contact .sec__contact_form .form_wrap .checkbox_parts {
  width: 100%;
}
.page-contact .sec__contact_form .form_wrap .checkbox_parts ul li {
  display: flex;
  align-items: center;
}
.page-contact .sec__contact_form .form_wrap .checkbox_parts ul li label {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.11em;
  margin-left: 1em;
}
.page-contact .sec__contact_form .form_wrap .checkbox_parts ul li + li {
  margin-top: 1em;
}
.page-contact .sec__contact_form .form_wrap {
  /* チェックボックス設定（共通）FireFox効かない */
}
.page-contact .sec__contact_form .form_wrap input[type=checkbox] {
  cursor: pointer;
  width: 20px; /* チェックボックスの横幅 */
  aspect-ratio: 1/1; /* ボックスの縦横比 */
  display: block;
  position: relative;
}
.page-contact .sec__contact_form .form_wrap input[type=checkbox]::before,
.page-contact .sec__contact_form .form_wrap input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
.page-contact .sec__contact_form .form_wrap input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #222584;
  width: 20px; /* チェックボックスの横幅 */
  aspect-ratio: 1/1; /* ボックスの縦横比 */
  top: 0;
  left: 0;
}
.page-contact .sec__contact_form .form_wrap input[type=checkbox]:checked::before {
  background-color: #f00; /* チェック時背景カラー */
}
.page-contact .sec__contact_form .form_wrap input[type=checkbox]::after {
  border-bottom: 3px solid #fff; /* チェックの太さ */
  border-left: 3px solid #fff; /* チェックの太さ */
  opacity: 0; /* チェック前は非表示 */
  height: 7px; /* チェックの高さ */
  width: 14px; /* チェックの横幅 */
  transform: rotate(-45deg);
  top: 4px; /* チェック時の位置調整 */
  left: 4px; /* チェック時の位置調整 */
}
.page-contact .sec__contact_form .form_wrap input[type=checkbox]:checked::after {
  opacity: 1; /* チェック後表示 */
}
.page-contact .sec__contact_form .form_wrap {
  /* 個人情報同意チェックパーツ */
}
.page-contact .sec__contact_form .form_wrap .agree_btn_wrap {
  width: fit-content;
  margin: min(2.8935vw, 50px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .agree_btn_wrap {
    width: 100%;
    margin-top: 7.6923vw;
  }
}
.page-contact .sec__contact_form .form_wrap .agree_btn_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-contact .sec__contact_form .form_wrap .agree_btn_wrap label {
  font-size: clamp(14px, 1.1574vw, 20px);
  letter-spacing: 0.05em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .agree_btn_wrap label {
    font-size: 4.1026vw;
  }
}
.page-contact .sec__contact_form .form_wrap {
  /* プライバシーチェックリンク */
}
.page-contact .sec__contact_form .form_wrap .agree_btn_wrap a {
  display: block;
  color: #005eb7;
  font-size: clamp(14px, 1.1574vw, 20px);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  margin-top: min(0.5787vw, 10px);
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .agree_btn_wrap a {
    font-size: 4.1026vw;
    margin-top: 0.5128vw;
  }
}
.page-contact .sec__contact_form .form_wrap {
  /* ラジオボタン（共通パーツ）(今回なし) */
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts dt {
  display: flex;
  align-items: center;
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.7361vw, 30px) 0;
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts ul li {
  width: 100%;
  font-size: clamp(14px, 1.0417vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts label {
  position: relative;
  cursor: pointer;
  padding-left: min(1.7361vw, 30px);
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts label::before,
.page-contact .sec__contact_form .form_wrap .radio_btn_parts label::after {
  content: "";
  border-radius: 9999px;
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts label::before {
  background-color: #fff;
  border: 1px solid #262727;
  width: 17px;
  height: 17px;
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts label::after {
  background-color: #008cff;
  border: 1px solid #008cff;
  opacity: 0;
  width: 9px;
  height: 9px;
  left: 4px;
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts input:checked + label::before {
  border: 1px solid #0068e1;
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts input:checked + label::after {
  opacity: 1;
}
.page-contact .sec__contact_form .form_wrap .radio_btn_parts .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.page-contact .sec__contact_form .form_wrap {
  /* 生年月日ドロップダウン（今回なし） */
}
.page-contact .sec__contact_form .form_wrap .form_item.birth_box dd {
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-contact .sec__contact_form .form_wrap .form_item.birth_box dd label {
  font-size: clamp(18px, 1.7188vw, 22px);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.page-contact .sec__contact_form .form_wrap .form_item.birth_box dd .select_box {
  position: relative;
}
.page-contact .sec__contact_form .form_wrap .form_item.birth_box dd .select_box::after {
  content: "";
  background-image: url("img/select_box_arrow02.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 18px;
  aspect-ratio: 18/14;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  pointer-events: none;
}
.page-contact .sec__contact_form .form_wrap {
  /* 送信ボタン */
}
.page-contact .sec__contact_form .form_wrap .submit_btn {
  background-color: #222584;
  border-color: #222584;
  border-radius: 0;
  width: min(16.2037vw, 280px);
  aspect-ratio: 280/65;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: clamp(12px, 1.0417vw, 18px);
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin: min(6.3657vw, 110px) auto 0;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .page-contact .sec__contact_form .form_wrap .submit_btn {
    width: 64.1026vw;
    aspect-ratio: 250/60;
    font-size: 4.1026vw;
    margin-top: 17.9487vw;
  }
}
.page-contact .sec__contact_form .form_wrap {
  /* .submit_btn::after {
    content: '';
    background-image: url('/form_parts/img/submit_btn_arrow03.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 24px;
    aspect-ratio: 1 / 1;
    display: block;
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
  } */
}
.page-contact .sec__contact_form .form_wrap .submit_btn:hover {
  opacity: 1;
  background-color: #fff;
  border-color: #222584;
  color: #222584;
}

/* 変更履歴 */
/* 2025/09/20 */
/* /vendors/_swiper.scss */
/*
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


全体


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* 初期状態：非表示 */
/*
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


TOP
#js-kv-slide


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.kv-slider {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .kv-slider .swiper-container {
    max-height: 100%;
    height: 100dvh;
  }
}
@media screen and (max-width: 768px) {
  .kv-slider .main-item-inner {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .kv-slider .unit-img {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .kv-slider .unit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.kv-slider {
  /* ページネーション */
}
.kv-slider .kv-bullet.swiper-pagination {
  width: 60%;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  bottom: 15.971%;
  left: 3.686%;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .kv-slider .kv-bullet.swiper-pagination {
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12.8205vw;
  }
}
.kv-slider .kv-bullet.swiper-pagination .swiper-bullet {
  background-color: #fff;
  display: block;
  width: 50px;
  height: 5px;
}
@media screen and (max-width: 768px) {
  .kv-slider .kv-bullet.swiper-pagination .swiper-bullet {
    height: 3px;
    width: 30px;
  }
}
.kv-slider .kv-bullet.swiper-pagination .is-active {
  background-color: #222584;
}
.kv-slider .kv-bullet.swiper-pagination .swiper-bullet:hover {
  opacity: 0.7;
}

/*
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


TOP
#js-recommend-slide


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.recommend-slider {
  width: 100%;
  /* ページネーション */
}
.recommend-slider .recommend-bullet.swiper-pagination {
  width: 60%;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  bottom: min(2.4884vw, 43px);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .recommend-slider .recommend-bullet.swiper-pagination {
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5.1282vw;
  }
}
.recommend-slider .recommend-bullet.swiper-pagination .swiper-bullet {
  background-color: #fff;
  display: block;
  width: 50px;
  height: 5px;
}
@media screen and (max-width: 768px) {
  .recommend-slider .recommend-bullet.swiper-pagination .swiper-bullet {
    width: 30px;
    height: 3px;
  }
}
.recommend-slider .recommend-bullet.swiper-pagination .is-active {
  background-color: #222584;
}
.recommend-slider .recommend-bullet.swiper-pagination .swiper-bullet:hover {
  opacity: 0.7;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊

page_serviceページ
js-sp-only-center-slide PC 3表示 スライドオフ SP 1表示 左右見切れ


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.sp-only-center-slide-wrap {
  width: min(71.6435vw, 1238px);
  position: relative;
  margin: min(-5.787vw, -100px) auto 0;
}
@media screen and (max-width: 768px) {
  .sp-only-center-slide-wrap {
    width: 100%;
    margin-top: -21.5385vw;
  }
}
.sp-only-center-slide-wrap .swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px; /* ドット分 */
}
.sp-only-center-slide-wrap .swiper-wrapper {
  width: 100%;
}
.sp-only-center-slide-wrap .swiper-slide {
  padding: 0 1.447%; /* spaceBetweenを％で指定するため */
}
@media screen and (max-width: 768px) {
  .sp-only-center-slide-wrap .swiper-slide {
    padding: 0 3.846%;
  }
}
.sp-only-center-slide-wrap .unit-inner {
  width: 100%;
}
.sp-only-center-slide-wrap .unit-img {
  width: 100%;
}
.sp-only-center-slide-wrap {
  /* アローの配置 */
}
.sp-only-center-slide-wrap .swiper-button-prev,
.sp-only-center-slide-wrap .swiper-button-next {
  display: none; /* 使用しないので非表示 */
  aspect-ratio: 52/52;
  width: min(2.7083vw, 52px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3; /* ← 擬似要素より大きく */
}
.sp-only-center-slide-wrap .swiper-button-prev {
  left: min(14.2708vw, 274px);
}
.sp-only-center-slide-wrap .swiper-button-next {
  right: min(16.3542vw, 314px);
}
.sp-only-center-slide-wrap .swiper-button-prev::after,
.sp-only-center-slide-wrap .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  aspect-ratio: 52/52;
  width: min(2.7083vw, 52px);
  margin: auto;
}
.sp-only-center-slide-wrap .swiper-button-prev::after {
  background-image: url("../img/cmn/slide_prev_arrow02.svg");
}
.sp-only-center-slide-wrap .swiper-button-next::after {
  background-image: url("../img/cmn/slide_next_arrow02.svg");
}
.sp-only-center-slide-wrap {
  /* ドットの配置（下側、外側に配置） */
}
.sp-only-center-slide-wrap .swiper-pagination {
  width: min(93.75vw, 1200px);
  display: none; /* 使用しないので非表示 */
  gap: 8px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.sp-only-center-slide-wrap {
  /* ドットの基本スタイル */
}
.sp-only-center-slide-wrap .swiper-pagination-bullet {
  background-color: #c7c7c7;
  border-radius: 100vmax;
  width: 15px;
  height: 15px;
  margin: 0 !important;
  opacity: 1; /* 初期状態は不透明 */
  transition: background-color 0.3s ease;
}
.sp-only-center-slide-wrap {
  /* アクティブなドットのスタイル */
}
.sp-only-center-slide-wrap .swiper-pagination-bullet-active {
  background-color: #ba2727;
}

/* 変更履歴 */
/* 2025/09/20 */
/* pages/_top.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top 全体設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-top ul {
  margin: 0;
  padding: 0;
}

.page-top ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-top .kv {
  width: 100%;
  position: relative;
}
.page-top .kv .kv-slide-wrap {
  width: 94.213vw;
  height: 85svh;
  max-height: 85svh;
  position: relative;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-top .kv .kv-slide-wrap {
    width: 100%;
    max-height: 100%;
    height: 100svh;
  }
}
.page-top .kv .swiper.kv-slider {
  height: 85svh;
  max-height: 85svh;
}
@media screen and (max-width: 768px) {
  .page-top .kv .swiper.kv-slider {
    max-height: 100%;
    height: 100svh;
  }
}
.page-top .kv .swiper.kv-slider .swiper-container {
  width: 100%;
  height: 100%;
}
.page-top .kv .swiper.kv-slider .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
}
.page-top .kv .swiper.kv-slider .swiper-container .swiper-slide .main-item-inner {
  width: 100%;
  height: 100%;
}
.page-top .kv .swiper.kv-slider .swiper-container .swiper-slide .main-item-inner .unit-img{
  width: 100%;
  height: 100%;
}
.page-top .kv .swiper.kv-slider .swiper-container .swiper-slide .main-item-inner .unit-img picture {
  width: 100%;
  height: 100%;
}
.page-top .kv .swiper.kv-slider .swiper-container .swiper-slide .main-item-inner .unit-img picture img {
  
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}





.page-top .kv .kv-catch {
  position: absolute;
  z-index: 2;
  top: 65%;
  left: 2.457%;
  transform: translateY(-50%);
  color: #fff;
}
.page-top .kv .catch-tit__en {
  display: block;
  font-size: clamp(20px, 3.4722vw, 60px);
  font-weight: 400;
  line-height: 1.167;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-top .kv .catch-tit__en {
    font-size: 7.6923vw;
    line-height: 1.333;
  }
}
.page-top .kv .catch-tit__ja {
  display: block;
  font-size: clamp(14px, 1.3889vw, 24px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-indent: 1rem;
  margin-top: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-top .kv .catch-tit__ja {
    font-size: 4.1026vw;
    text-indent: 0;
    margin-top: 5.1282vw;
  }
}
.page-top .kv {
  /* スクロール誘導アニメーション */
}
.page-top .kv .p-hero__scroll {
  position: absolute;
  z-index: 10;
  right: 50px;
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page-top .kv .p-hero__scroll {
    right: 25px;
    bottom: 10px;
  }
}
.page-top .kv .p-hero__scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-top .kv .p-hero__scroll p {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page-top .kv .p-hero__scroll p {
    font-size: 10px;
  }
}
.page-top .kv .p-hero__scroll .arrow-line {
  height: 100px;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .kv .p-hero__scroll .arrow-line {
    height: 40px;
  }
}
.page-top .kv .p-hero__scroll .arrow-line::after {
  background-color: #fff;
  content: "";
  width: 1px;
  position: absolute;
  left: 50%;
  margin-left: -0.5px;
  animation: scrollNotifierMotion 2s 0s infinite ease;
  transform: translate3d(0, 0, 0);
}
@keyframes scrollNotifierMotion {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    top: 0;
    height: 100%;
  }
  55% {
    height: 100%;
    bottom: 0;
    top: auto;
  }
  100% {
    height: 0;
    bottom: 0;
    top: auto;
  }
}
@keyframes scrollNotifierMotion {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    top: 0;
    height: 100%;
  }
  55% {
    height: 100%;
    bottom: 0;
    top: auto;
  }
  100% {
    height: 0;
    bottom: 0;
    top: auto;
  }
}
.page-top .kv .arrow {
  position: relative;
  display: inline-block;
  width: 13.3px;
  height: 7.7px;
  margin-left: -0.5px;
}
.page-top .kv .arrow::before,
.page-top .kv .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 10px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% calc(100% - 1px);
}
.page-top .kv .arrow::before {
  transform: rotate(45deg);
}
.page-top .kv .arrow::after {
  transform: rotate(-45deg);
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .about


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-top .about {
  width: 100%;
  position: relative;
  padding: 0 min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-top .about {
    padding: 0;
  }
}
.page-top .about .sec-wrap {
  background-image: url("../img/top/about_bg_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  width: 100%;
  position: relative;
  margin: min(11.5741vw, 200px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-top .about .sec-wrap {
    background-image: url("../img/top/about_bg_sp_2x.jpg");
    width: 100%;
    margin: 0;
    padding: 25.641vw 3.9474vw;
  }
}
.page-top .about .sec-wrap::after {
  content: "";
  background-image: url("../img/top/about_tit.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: min(25.6944vw, 444px);
  aspect-ratio: 444/125;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .page-top .about .sec-wrap::after {
    width: 74.6154vw;
    top: 25.641vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.page-top .about .contents-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: min(7.0602vw, 122px);
}
.page-top .about .about__unit {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: min(2.3148vw, 40px);
  justify-content: space-between;
  position: relative;
  padding: 0 min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-top .about .about__unit {
    flex-direction: column;
    gap: 17.9487vw;
    padding: 0;
  }
}
.page-top .about .unit-contents {
  width: min(36.2847vw, 627px);
  margin-top: min(6.1343vw, 106px);
}
@media screen and (max-width: 768px) {
  .page-top .about .unit-contents {
    width: 100%;
    margin-top: 8.7179vw;
  }
}
.page-top .about .sec-tit .sec-tit__ja {
  margin-top: min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-top .about .sec-tit .sec-tit__ja {
    margin-top: 12.8205vw;
  }
}
.page-top .about .sec-catch {
  font-size: clamp(12px, 1.1574vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: min(1.3889vw, 24px);
}
@media screen and (max-width: 768px) {
  .page-top .about .sec-catch {
    font-size: 4.1026vw;
    margin-top: 5.1282vw;
  }
}
.page-top .about .page-link-btn {
  margin-top: min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-top .about .page-link-btn {
    margin-top: 17.9487vw;
  }
}
.page-top .about .unit-img {
  width: min(35.0116vw, 605px);
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-16.529%);
}
@media screen and (max-width: 768px) {
  .page-top .about .unit-img {
    width: 100%;
    margin-top: 0;
    transform: translateY(0);
  }
}
.page-top .about {
  /* テキストスクロール */
}
.page-top .about .module {
  position: absolute;
  bottom: min(-1.794vw, -31px);
  left: 0;
}
@media screen and (max-width: 768px) {
  .page-top .about .module {
    bottom: -7.1795vw;
  }
}
@media screen and (max-width: 768px) {
  .page-top .about .module .scroll7 li img {
    width: 80%;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .service


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-top .service {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-top .service {
    padding: 0;
  }
}
.page-top .service .sec-wrap {
  width: 100%;
  margin: auto;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(5.787vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  .page-top .service .sec-wrap {
    background-color: #f4f1f1;
    width: 100%;
    margin-top: 0;
    padding: 25.641vw 0 0;
  }
}
.page-top .service .sec-tit {
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-top .service .sec-tit {
    padding: 0 3.8462vw;
  }
}
.page-top .service .sec-tit__en {
  margin: auto;
  position: relative;
  z-index: 2;
}
.page-top .service .sec-tit__ja {
  position: relative;
  z-index: 2;
}
.page-top .service .sec-tit-img {
  width: min(30.6134vw, 529px);
  position: relative;
  margin: min(-1.6204vw, -28px) auto 0;
  /* transform: translateY(-29.457%); */
}
@media screen and (max-width: 768px) {
  .page-top .service .sec-tit-img {
    width: 100%;
  }
}
.page-top .service .contents-wrap {
  width: min(76.8519vw, 1328px);
  display: flex;
  position: relative;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-top .service .contents-wrap {
    width: 100%;
    flex-direction: column;
    gap: 7.1795vw;
    padding: 0 3.8462vw;
  }
}
.page-top .service .service__unit {
  width: min(38.4259vw, 664px);
  /* aspect-ratio: 664 / 440;
  overflow: hidden; */
  min-height: min(25.463vw, 440px);
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .service .service__unit {
    width: 100%;
    aspect-ratio: 350/253;
  }
}
.page-top .service .service__unit::after {
  content: "";
  background-color: #222584;
  opacity: 0.6;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.page-top .service .service__unit.type-gas::after {
  background-color: #22847a;
}
.page-top .service .unit-img {
  width: 100%;
  aspect-ratio: 664/440;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .page-top .service .unit-img {
    width: 100%;
    aspect-ratio: 350/253;
  }
}
.page-top .service .unit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-top .service .service__unit a:hover {
  opacity: 1;
}
.page-top .service .service__unit a:hover .unit-img img {
  transform: scale(1.2);
}
.page-top .service .unit-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding-top: min(4.0509vw, 70px);
}
.page-top .service .unit-tit {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.page-top .service .unit-tit .unit-tit__en {
  width: fit-content;
  display: block;
  color: #fff;
  font-size: clamp(12px, 1.0417vw, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-top .service .unit-tit .unit-tit__en {
    font-size: 2.5641vw;
  }
}
.page-top .service .unit-tit .unit-tit__ja {
  display: block;
  color: #fff;
  font-size: clamp(22px, 1.6204vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .page-top .service .unit-tit .unit-tit__ja {
    font-size: 5.641vw;
    margin-top: 0.5rem;
  }
}
.page-top .service .unit-icon {
  width: min(6.0185vw, 104px);
  margin: min(2.0833vw, 36px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-top .service .unit-icon {
    width: 20.5128vw;
    margin-top: 6.4103vw;
  }
}
.page-top .service .unit-detail {
  background-color: #222584;
  width: 100%;
  display: block;
  color: #fff;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: min(3.3565vw, 58px);
  padding: min(1.3889vw, 24px) min(0.5787vw, 10px);
}
@media screen and (max-width: 768px) {
  .page-top .service .unit-detail {
    font-size: 4.1026vw;
    padding: 3.8462vw 2.5641vw;
  }
}
.page-top .service .service__unit.type-gas .unit-detail {
  background-color: #22847a;
}

/* end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .recommend


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-top .recommend {
  background-color: #f4f1f1;
  width: 100%;
  position: relative;
  margin-top: -10.417%;
}
@media screen and (max-width: 768px) {
  .page-top .recommend {
    margin-top: 0;
  }
}
.page-top .recommend .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(18.287vw, 316px) 0 min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-top .recommend .sec-wrap {
    padding: 25.641vw 0 12.8205vw;
  }
}
.page-top .recommend .sec-tit-img {
  width: min(52.2569vw, 903px);
  margin-left: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-top .recommend .sec-tit-img {
    width: 100%;
    margin: auto;
  }
}
.page-top .recommend .contents-wrap {
  width: 100%;
  display: flex;
  gap: min(5.5556vw, 96px);
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .page-top .recommend .contents-wrap {
    flex-direction: column;
    gap: 2.5641vw;
  }
}
.page-top .recommend .unit-contents {
  width: min(24.5949vw, 425px);
}
@media screen and (max-width: 768px) {
  .page-top .recommend .unit-contents {
    width: 100%;
    padding: 0 5.1282vw;
  }
}
@media screen and (max-width: 768px) {
  .page-top .recommend .sec-tit {
    margin: auto;
    text-align: center;
  }
}
.page-top .recommend .sec-tit span {
  margin: 1rem auto 0;
}
.page-top .recommend .sec-catch {
  font-size: clamp(12px, 1.1574vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: min(1.3889vw, 24px);
}
@media screen and (max-width: 768px) {
  .page-top .recommend .sec-catch {
    font-size: 4.1026vw;
    margin-top: 7.6923vw;
  }
}
.page-top .recommend .page-link-btn {
  margin-top: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-top .recommend .page-link-btn {
    margin-top: 10.2564vw;
  }
}
.page-top .recommend {
  /* スライド部分 中身はcrousel.scssに */
}
.page-top .recommend .unit-slide-wrap {
  width: 57.6968vw;
}
@media screen and (max-width: 768px) {
  .page-top .recommend .unit-slide-wrap {
    width: 100%;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .news


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-top .news {
  width: 100%;
  position: relative;
}
.page-top .news .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  .page-top .news .sec-wrap {
    padding: 12.8205vw 5.1282vw 0;
  }
}
.page-top .news .news__unit-wrap {
  background-color: #f4f4f9;
  width: 88.4259vw;
  display: flex;
  gap: 5.787vw;
  position: relative;
  margin-left: auto;
  padding: min(5.2083vw, 90px) min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-top .news .news__unit-wrap {
    width: 100%;
    flex-direction: column;
    gap: 7.6923vw;
    padding: 12.8205vw 5.1282vw;
  }
}
.page-top .news .news__unit-wrap::after {
  content: "";
  background-image: url("../img/top/news_tit.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 342/107;
  width: min(19.7917vw, 342px);
  display: block;
  position: absolute;
  bottom: -2px;
  left: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-top .news .news__unit-wrap::after {
    width: 61.2821vw;
    inset: 0 0 auto auto;
  }
}
.page-top .news .unit-contents {
  width: 17.9398vw;
  position: relative;
  z-index: 2;
  padding-top: min(1.6204vw, 28px);
}
@media screen and (max-width: 768px) {
  .page-top .news .unit-contents {
    width: 100%;
    padding-top: 0;
  }
}
.page-top .news .sec-tit__ja {
  margin-top: min(1.1574vw, 20px);
}
.page-top .news .page-link-btn {
  width: min(17.9398vw, 310px);
  margin-top: min(4.0509vw, 70px);
}
@media screen and (max-width: 768px) {
  .page-top .news .page-link-btn {
    width: 51.2821vw;
    margin-top: 5.1282vw;
  }
}
.page-top .news .news-list {
  width: 47.4537vw;
}
@media screen and (max-width: 768px) {
  .page-top .news .news-list {
    width: 100%;
  }
}
.page-top .news .news-list ul {
  width: 100%;
  margin: 0;
}
.page-top .news .news-list ul li {
  border-bottom: 1px solid #2c2623;
  width: 100%;
  display: flex;
  gap: min(0.5787vw, 10px);
  align-items: flex-start;
  padding: min(2.0833vw, 36px) 0;
}
@media screen and (max-width: 768px) {
  .page-top .news .news-list ul li {
    flex-direction: column;
    padding: 5.1282vw 0;
  }
}
.page-top .news .news-list ul li:first-child {
  padding-top: 0;
}
.page-top .news .unit-head {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-top .news .unit-head {
    width: 100%;
  }
}
.page-top .news .unit-date {
  color: #222584;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 700;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .page-top .news .unit-date {
    font-size: 3.5897vw;
  }
}
.page-top .news .unit-tit {
  flex-grow: 1;
}
.page-top .news .unit-tit a {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.5rem;
}
.page-top .news .tit-txt {
  display: -webkit-box;
  font-size: clamp(12px, 1.0417vw, 18px);
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-top .news .tit-txt {
    font-size: 3.5897vw;
  }
}
.page-top .news .news-unit-arrow {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 9.1px;
  height: 16.1px;
}
.page-top .news .news-unit-arrow::before,
.page-top .news .news-unit-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: calc(100% - 1px) 50%;
}
@media screen and (max-width: 768px) {
  .page-top .news .news-unit-arrow::before,
  .page-top .news .news-unit-arrow::after {
    width: 8px;
  }
}
.page-top .news .news-unit-arrow::before {
  transform: rotate(45deg);
}
.page-top .news .news-unit-arrow::after {
  transform: rotate(-45deg);
}

/* 変更履歴 */
/* 2025/09/20 */
/* pages/_page-contents.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contents .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-contents .kv {
  width: 100%;
  position: relative;
  padding: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-contents .kv {
    padding: 0;
  }
}
.page-contents .kv .kv-inner {
  display: flex;
  gap: min(1.7361vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-contents .kv .kv-inner {
    flex-direction: column;
    gap: 5.1282vw;
  }
}
.page-contents .kv {
  /* title */
}
.page-contents .kv .kv-title {
  flex-grow: 1;
  position: relative;
  padding: min(7.5231vw, 130px) 0 0 min(6.9444vw, 120px);
}
@media screen and (max-width: 768px) {
  .page-contents .kv .kv-title {
    padding: 12.8205vw 3.8462vw 0;
  }
}
.page-contents .kv .kv-title .kv-title-en {
  width: fit-content;
  display: block;
  color: #222584;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-contents .kv .kv-title .kv-title-en {
    font-size: 5.1282vw;
  }
}
.page-contents .kv .kv-title .kv-title-ja {
  display: block;
  color: #2c2623;
  font-size: clamp(26px, 2.0833vw, 36px);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .page-contents .kv .kv-title .kv-title-ja {
    font-size: 7.6923vw;
    margin-top: 0.3em;
  }
}
.page-contents .kv .kv-img {
  width: min(67.9398vw, 1174px);
  aspect-ratio: 1174/500;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-contents .kv .kv-img {
    width: 100%;
    aspect-ratio: 380/260;
  }
}
.page-contents .kv .kv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 変更履歴 */
/* 2025/09/20 */
/* pages/_service.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-service 全体設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-service ul {
  margin: 0;
  padding: 0;
}

.page-service ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-service .page-lead {
  width: min(76.8519vw, 1328px);
  text-align: center;
  margin: min(1.1574vw, 20px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-service .page-lead {
    width: 89.7436vw;
    text-align: left;
    margin-top: 15.3846vw;
  }
}
.page-service .page-lead .lead-ja {
  font-size: min(1.2731vw, 22px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.636;
}
@media screen and (max-width: 768px) {
  .page-service .page-lead .lead-ja {
    font-size: 4.1026vw;
    line-height: 2;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-service .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-service .kv {
  width: 100%;
  position: relative;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-service .kv {
    width: 100%;
    position: relative;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-service .main-services


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.page-service .main-services {
  width: 100%;
  position: relative;
}
.page-service .main-services .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .sec-wrap {
    padding-top: 17.9487vw;
  }
}
.page-service .main-services .sec-tit {
  margin: auto;
}
.page-service .main-services .sec-tit .sec-tit__en {
  margin: auto;
}
.page-service .main-services .unit-wrap {
  background-color: #d3d3e6;
  width: 100%;
  margin-top: min(4.0509vw, 70px);
  padding: min(11.5741vw, 200px) 0 min(3.4722vw, 60px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .unit-wrap {
    padding: 25.641vw 0 12.8205vw;
    margin-top: 12.8205vw;
  }
}
.page-service .main-services .unit-wrap.ver-gas-service {
  background-color: #d3e6e4;
  margin-top: min(2.8935vw, 50px);
  padding-bottom: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .unit-wrap.ver-gas-service {
    margin-top: 15.3846vw;
    padding-bottom: 12.8205vw;
  }
}
.page-service .main-services .unit-inner {
  width: 100%;
  position: relative;
  z-index: 1;
}
.page-service .main-services {
  /* lead-unit */
}
.page-service .main-services .lead-unit {
  background-color: #fff;
  width: min(76.8519vw, 1328px);
  display: flex;
  gap: min(4.0509vw, 70px);
  position: relative;
  margin-inline: auto;
  padding: min(4.0509vw, 70px) 0 min(10.5324vw, 182px);
  padding-left: min(4.0509vw, 70px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit {
    width: 89.7436vw;
    flex-direction: column-reverse;
    gap: 6.4103vw;
    padding: 6.4103vw 5.1282vw 37.1795vw;
  }
}
.page-service .main-services .lead-unit::after {
  content: "";
  background-image: url("../img/service/water-leak-repair_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 310/380;
  width: min(17.9398vw, 310px);
  display: block;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: min(-1.7361vw, -30px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit::after {
    width: 57.4359vw;
    inset: 62.0513vw -2.5641vw auto auto;
  }
}
.page-service .main-services .lead-unit.gas-service {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: min(4.0509vw, 70px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit.gas-service {
    flex-direction: column-reverse;
    padding: 6.4103vw 5.1282vw 37.1795vw;
  }
}
.page-service .main-services .lead-unit.gas-service::after {
  background-image: url("../img/service/gas-service_bg.svg");
  left: auto;
  right: 0;
  bottom: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit.gas-service::after {
    width: 38.4615vw;
    inset: 88.7179vw auto auto 2.5641vw;
  }
}
.page-service .main-services .lead-unit .unit-num {
  width: min(8.2176vw, 142px);
  position: absolute;
  z-index: -1;
  top: min(-5.787vw, -100px);
  left: 0;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit .unit-num {
    width: 21.2821vw;
    top: -15.3846vw;
  }
}
.page-service .main-services .lead-unit.gas-service .unit-num {
  width: min(11.0532vw, 191px);
  left: auto;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit.gas-service .unit-num {
    width: 28.4615vw;
    top: -16.6667vw;
    left: 0;
    right: auto;
  }
}
.page-service .main-services .lead-unit .unit-contents {
  flex-shrink: 0;
  width: min(30.3241vw, 524px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit .unit-contents {
    width: 100%;
  }
}
.page-service .main-services .lead-unit.gas-service .unit-tit__en {
  color: #22847a;
}
.page-service .main-services .lead-unit .unit-head {
  font-size: min(1.2731vw, 22px);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: min(2.1991vw, 38px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit .unit-head {
    font-size: 4.1026vw;
    margin-top: 5.1282vw;
  }
}
.page-service .main-services .lead-unit .unit-txt {
  font-size: min(1.0417vw, 18px);
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: min(1.1574vw, 20px);
}
.page-service .main-services .lead-unit .unit-txt strong {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit .unit-txt {
    font-size: 3.5897vw;
    line-height: 2.286;
    margin-top: 3.8462vw;
  }
}
.page-service .main-services .lead-unit .page-link-btn {
  width: min(18.5185vw, 320px);
  margin-top: min(1.7361vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit .page-link-btn {
    width: 100%;
    font-size: 3.5897vw;
    margin-top: 12.8205vw;
  }
}
.page-service .main-services .lead-unit .page-link-btn a {
  padding: min(1.2731vw, 22px) min(1.1574vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit .page-link-btn a {
    padding: 4.359vw 7.6923vw;
  }
}
.page-service .main-services .lead-unit .page-link-btn .btn-txt {
  font-size: clamp(10px, 1.0417vw, 18px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit .page-link-btn .btn-txt {
    font-size: 3.5897vw;
  }
}
.page-service .main-services .lead-unit.gas-service .page-link-btn a {
  background-color: #22847a;
}
.page-service .main-services .lead-unit .unit-img {
  width: min(49.4213vw, 854px);
  aspect-ratio: 854/569;
  overflow: hidden;
  position: relative;
  margin-top: min(-9.838vw, -170px);
  margin-right: min(-11.5741vw, -200px);
}
.page-service .main-services .lead-unit .unit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit .unit-img {
    width: 100%;
    aspect-ratio: 620/370;
    position: static;
    margin: 0;
  }
}
.page-service .main-services .lead-unit.gas-service .unit-img {
  margin-right: auto;
  margin-left: min(-11.5741vw, -200px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .lead-unit.gas-service .unit-img {
    margin: 0;
  }
}
.page-service .main-services {
  /* info-wrap */
}
.page-service .main-services .info-wrap {
  width: min(76.8519vw, 1328px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(1.6204vw, 28px);
  margin: min(3.4722vw, 60px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-wrap {
    width: 89.7436vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 7.6923vw;
    margin-top: 12.8205vw;
  }
}
.page-service .main-services .info-unit {
  width: 100%;
}
.page-service .main-services .info-unit .unit-head {
  color: #22847a;
  font-size: min(1.8519vw, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-unit .unit-head {
    font-size: 4.6154vw;
  }
}
.page-service .main-services .info-unit .unit-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: min(1.4468vw, 25px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-unit .unit-contents {
    margin-top: 3.8462vw;
  }
}
.page-service .main-services .info-unit .unit-item {
  width: 100%;
  display: flex;
}
.page-service .main-services .info-unit .unit-item dt {
  background-color: #22847a;
  width: min(12.7315vw, 220px);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: min(1.0417vw, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1em 0;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-unit .unit-item dt {
    width: 27.6923vw;
    font-size: 3.5897vw;
  }
}
.page-service .main-services .info-unit .unit-item dd {
  width: min(24.8843vw, 430px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-unit .unit-item dd {
    width: 62.0513vw;
  }
}
.page-service .main-services .info-unit .unit-item dd.type2col {
  width: min(24.8843vw, 430px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-unit .unit-item dd.type2col {
    width: 62.0513vw;
    display: flex;
  }
  .page-service .main-services .info-unit .unit-item dd.type2col span {
    flex-grow: 1;
    width: fit-content;
  }
}
.page-service .main-services .info-unit .unit-item dd span {
  background-color: #fff;
  border: 1px solid #22847a;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #22847a;
  font-size: min(1.0417vw, 18px);
  padding: 1em 0;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-unit .unit-item dd span {
    font-size: 3.5897vw;
    padding: 1em 0.5em;
  }
}
.page-service .main-services .info-unit .unit-item dd span.s-txt {
  font-size: min(0.8102vw, 14px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-unit .unit-item dd span.s-txt {
    font-size: 3.0769vw;
  }
}
.page-service .main-services {
  /* info-noto */
}
.page-service .main-services .info-noto {
  width: 100%;
  font-size: min(0.8102vw, 14px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.929;
  margin-top: min(1.1574vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-noto {
    width: 89.7436vw;
    font-size: 3.0769vw;
    margin: 7.6923vw auto 0;
  }
}
.page-service .main-services .info-noto li {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .info-noto li {
    justify-content: flex-start;
  }
}
.page-service .main-services {
  /* calculation-example-unit */
}
.page-service .main-services .calculation-example-unit {
  background-color: #fff;
  width: min(67.8819vw, 1173px);
  margin: min(2.8935vw, 50px) auto 0;
  padding: min(1.7361vw, 30px) min(6.3657vw, 110px);
}
@media screen and (max-width: 768px) {
  .page-service .main-services .calculation-example-unit {
    width: 89.7436vw;
    margin-top: 12.8205vw;
    padding: 12.8205vw 5.1282vw;
  }
}
.page-service .main-services .calculation-example-unit .unit-head {
  width: 100%;
  color: #22847a;
  font-size: min(1.2731vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .calculation-example-unit .unit-head {
    font-size: 4.1026vw;
  }
}
.page-service .main-services .calculation-example-unit .unit-contents {
  width: 100%;
  display: flex;
  gap: min(1.7361vw, 30px);
  align-items: stretch;
  margin: min(2.3148vw, 40px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .calculation-example-unit .unit-contents {
    flex-direction: column;
    gap: 5.1282vw;
    font-size: 3.5897vw;
    margin-top: 7.6923vw;
  }
}
.page-service .main-services .calculation-example-unit .unit-item {
  background-color: #22847a;
  flex-grow: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: min(1.0417vw, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5em;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .calculation-example-unit .unit-item {
    font-size: 3.5897vw;
  }
}
.page-service .main-services .calculation-example-unit .unit-mark {
  display: grid;
  place-items: center;
  color: #000;
  font-size: min(1.0417vw, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .calculation-example-unit .unit-mark {
    font-size: 4.6154vw;
  }
}
.page-service .main-services {
  /* reference-link */
}
.page-service .main-services .reference-link {
  width: min(67.8819vw, 1173px);
  display: flex;
  gap: 1em;
  flex-direction: column;
  margin: min(2.6042vw, 45px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .reference-link {
    gap: 3em;
    width: 89.7436vw;
    margin-top: 12.8205vw;
  }
}
.page-service .main-services .reference-link li {
  font-size: min(1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .reference-link li {
    font-size: 4.1026vw;
    text-align: center;
  }
}
.page-service .main-services .reference-link li a {
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .page-service .main-services .reference-link li a {
    display: block;
    font-size: 4.6154vw;
    margin: 1em auto 0;
  }
}
.page-service .main-services .reference-link li a:hover {
  opacity: 1;
  text-decoration: none;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-service .equipment-sales


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.page-service .equipment-sales {
  width: 100%;
  position: relative;
}
.page-service .equipment-sales .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 0;
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .sec-wrap {
    padding-top: 25.641vw;
  }
}
.page-service .equipment-sales .sec-tit {
  margin: auto;
}
.page-service .equipment-sales .sec-tit .sec-tit__en {
  margin: auto;
}
.page-service .equipment-sales .unit {
  width: min(78.588vw, 1358px);
  position: relative;
  margin: min(5.787vw, 100px) auto 0;
  padding-bottom: min(1.7361vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit {
    width: 89.7436vw;
    margin-top: 15.3846vw;
  }
}
.page-service .equipment-sales .unit + .unit {
  margin-top: min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit + .unit {
    margin-top: 15.3846vw;
  }
}
.page-service .equipment-sales .unit-inner {
  background-color: #f6f6f6;
  border-top: clamp(1px, 0.3765vw, 5px) solid #222584;
  width: min(76.8519vw, 1328px);
  display: flex;
  gap: min(4.0509vw, 70px);
  position: relative;
  padding: min(4.0509vw, 70px);
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit-inner {
    border-top-width: 1.2821vw;
    width: 87.6923vw;
    flex-direction: column-reverse;
    gap: 7.6923vw;
    padding: 7.6923vw 5.1282vw 12.8205vw;
  }
}
.page-service .equipment-sales .unit-inner::before {
  content: "";
  background-color: #d3d3e6;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  right: min(-1.7361vw, -30px);
  bottom: min(-1.7361vw, -30px);
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit-inner::before {
    height: calc(100% - 8.9744vw);
    right: -2.0513vw;
    bottom: -2.0513vw;
  }
}
.page-service .equipment-sales .unit.gas-equipment .unit-inner {
  border-color: #22847a;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit.gas-equipment .unit-inner {
    flex-direction: column-reverse;
  }
}
.page-service .equipment-sales .unit.gas-equipment .unit-inner::before {
  background-color: #d3e6e4;
}
.page-service .equipment-sales .unit-contents {
  flex-grow: 1;
}
.page-service .equipment-sales .unit-tit {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit-tit {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit-tit__en {
    font-size: 3.5897vw;
  }
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit-tit__ja {
    font-size: 4.1026vw;
    margin-top: 2.5641vw;
    margin-left: 0;
  }
}
.page-service .equipment-sales .unit.gas-equipment .unit-tit__en {
  color: #22847a;
}
.page-service .equipment-sales .unit-txt {
  font-size: min(1.0417vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: justify;
  margin-top: min(1.7361vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit-txt {
    font-size: 3.5897vw;
    line-height: 2.286;
    margin-top: 7.6923vw;
  }
}
.page-service .equipment-sales .unit-txt strong {
  font-weight: 600;
}
.page-service .equipment-sales .page-link-btn {
  width: min(14.4676vw, 250px);
  margin: min(1.7361vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .page-link-btn {
    width: 100%;
    margin-top: 12.8205vw;
  }
}
.page-service .equipment-sales .page-link-btn a {
  padding: min(1.1574vw, 20px) min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .page-link-btn a {
    padding: 5.641vw 6.4103vw;
  }
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .page-link-btn .btn-txt {
    font-size: 4.6154vw;
  }
}
.page-service .equipment-sales .unit.gas-equipment .page-link-btn a {
  background-color: #22847a;
}
.page-service .equipment-sales .btn-txt {
  font-size: clamp(10px, 1.0417vw, 18px);
}
.page-service .equipment-sales .unit-img-wrap {
  flex-shrink: 0;
  background-color: #fff;
  width: min(34.375vw, 594px);
  padding: min(1.1574vw, 20px);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit-img-wrap {
    width: 100%;
    padding: 3.8462vw;
  }
}
.page-service .equipment-sales .unit-img {
  width: 100%;
  aspect-ratio: 548/419;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-service .equipment-sales .unit-img {
    aspect-ratio: 280/170;
  }
}
.page-service .equipment-sales .unit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-service .other


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.page-service .other {
  width: 100%;
  position: relative;
}
.page-service .other .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-service .other .sec-wrap {
    padding: 25.641vw 0 20.5128vw;
  }
}
.page-service .other .sec-tit {
  margin: auto;
}
.page-service .other .sec-tit .sec-tit__en {
  margin: auto;
}
.page-service .other .unit-wrap {
  width: min(76.8519vw, 1328px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(0.5787vw, 10px);
  margin: min(4.0509vw, 70px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-service .other .unit-wrap {
    width: 89.7436vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 15.3846vw;
    margin-top: 15.3846vw;
  }
}
.page-service .other .unit {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-service .other .unit-img {
  width: 100%;
  aspect-ratio: 435/370;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-service .other .unit-img {
    aspect-ratio: 350/232;
  }
}
.page-service .other .unit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-service .other .unit-contents {
  flex-grow: 1;
  background-color: #12144d;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: min(3.4722vw, 60px) min(2.0833vw, 36px);
}
@media screen and (max-width: 768px) {
  .page-service .other .unit-contents {
    width: 89.7436vw;
    padding: 15.3846vw 5.1282vw;
  }
}
.page-service .other .unit-contents::after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: min(3.4722vw, 60px);
  display: block;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 768px) {
  .page-service .other .unit-contents::after {
    height: 15.3846vw;
  }
}
.page-service .other .ver02 .unit-contents {
  background-color: #124d49;
}
.page-service .other .unit-tit {
  margin: 0 auto;
}
.page-service .other .unit-tit__en {
  color: #fff;
  font-size: min(0.9259vw, 16px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-service .other .unit-tit__en {
    font-size: 3.5897vw;
  }
}
.page-service .other .unit-tit__ja {
  color: #fff;
  font-size: min(1.5046vw, 26px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-service .other .unit-tit__ja {
    font-size: 5.1282vw;
    margin-top: 2.5641vw;
  }
}
.page-service .other .unit-txt {
  width: 100%;
  color: #fff;
  font-size: min(1.0417vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.778;
  text-align: justify;
  margin-top: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-service .other .unit-txt {
    font-size: 3.5897vw;
    line-height: 2.286;
    margin-top: 7.6923vw;
  }
}

/* 変更履歴 */
/* 2025/09/20 */
/* pages/_recommend.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-recommend 全体設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-recommend ul {
  margin: 0;
  padding: 0;
}

.page-estimate ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-recommend .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-recommend .look


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-recommend .look {
  width: 100%;
  position: relative;
}
.page-recommend .look .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec-wrap {
    padding: 12.8205vw 0 0;
  }
}
.page-recommend .look .sec-lead {
  width: min(100% - 40px, 1728px);
  font-size: clamp(16px, 1.2731vw, 22px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.091;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec-lead {
    width: 89.7436vw;
    font-size: 4.1026vw;
    letter-spacing: 0.05em;
    line-height: 2;
    text-align: justify;
    margin-top: 7.6923vw;
  }
}
.page-recommend .look .contents-wrap {
  width: 100%;
  position: relative;
  margin-top: min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .contents-wrap {
    margin-top: 17.9487vw;
  }
}
.page-recommend .look .sec__outer {
  width: 100%;
  position: relative;
  padding-bottom: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec__outer {
    padding-bottom: 12.8205vw;
  }
}
.page-recommend .look .sec__outer::before {
  content: "";
  background-image: url("../img/recommend/look_toto_tit.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 481/123;
  width: min(27.8356vw, 481px);
  display: block;
  position: absolute;
  top: 0;
  right: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec__outer::before {
    width: 44.359vw;
    top: 9.2308vw;
    right: 1.5385vw;
  }
}
.page-recommend .look .sec__outer.ver__rinnai::before {
  content: "";
  background-image: url("../img/recommend/look_rinnai_tit.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 484/125;
  width: min(28.0093vw, 484px);
  display: block;
  position: absolute;
  top: 0;
  right: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec__outer.ver__rinnai::before {
    width: 45.3846vw;
    top: 9.2308vw;
    right: 1.5385vw;
  }
}
.page-recommend .look .sec__outer.ver__cleanup::before {
  content: "";
  background-image: url("../img/recommend/look_cleanup_tit.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 809/123;
  width: min(46.8171vw, 809px);
  display: block;
  position: absolute;
  top: 0;
  right: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec__outer.ver__cleanup::before {
    width: 74.1026vw;
    top: 9.2308vw;
    right: 1.5385vw;
  }
}
.page-recommend .look .sec__outer.ver__paloma::before {
  content: "";
  background-image: url("../img/recommend/look_paloma_tit.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 754/123;
  width: min(43.6343vw, 754px);
  display: block;
  position: absolute;
  top: 0;
  right: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec__outer.ver__paloma::before {
    width: 69.2308vw;
    top: 9.2308vw;
    right: 1.5385vw;
  }
}
.page-recommend .look .sec__outer.ver__enefarm::before {
  content: "";
  background-image: url("../img/recommend/look_enefarm_tit.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 821/119;
  width: min(47.5116vw, 821px);
  display: block;
  position: absolute;
  top: 0;
  right: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec__outer.ver__enefarm::before {
    width: 75.8974vw;
    top: 9.2308vw;
    right: 1.5385vw;
  }
}
.page-recommend .look .sec__outer::after {
  content: "";
  background-color: rgba(211, 230, 228, 0.3);
  aspect-ratio: 1618/618;
  width: min(93.6343vw, 1624px);
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec__outer::after {
    aspect-ratio: 365/624;
    width: 93.5897vw;
  }
}
.page-recommend .look .sec__outer + .sec__outer {
  margin-top: min(10.4167vw, 180px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .sec__outer + .sec__outer {
    margin-top: 25.641vw;
  }
}
.page-recommend .look .look__unit-wrap {
  width: min(76.8519vw, 1328px);
  position: relative;
  z-index: 2;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-recommend .look .look__unit-wrap {
    width: 100%;
  }
}
.page-recommend .look .unit__head {
  width: 100%;
  display: flex;
  gap: 0.8em;
  align-items: baseline;
  justify-content: flex-start;
  color: #222584;
  font-size: clamp(18px, 2.0833vw, 36px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-recommend .look .unit__head {
    width: 89.7436vw;
    gap: 0.3em;
    flex-direction: column;
    font-size: 6.1538vw;
    margin: 12.3077vw auto 0;
  }
}
.page-recommend .look .head-en {
  font-weight: 900;
}
.page-recommend .look .head-separator {
  background-color: #222584;
  width: 2px;
  height: 0.8em;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-recommend .look .head-separator {
    width: 15.3846vw;
    height: 2px;
  }
}
.page-recommend .look .head-ja {
  font-weight: 700;
}
.page-recommend .look .unit__img {
  width: 100%;
  aspect-ratio: 1328/513;
  overflow: hidden;
  margin-top: min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .unit__img {
    aspect-ratio: 380/303;
    margin-top: 2.5641vw;
  }
}
.page-recommend .look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.page-recommend .look .unit__contents {
  width: 100%;
  margin-top: min(4.0509vw, 70px);
  padding: 0 min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .unit__contents {
    width: 80vw;
    margin: 12.8205vw auto 0;
    padding: 0;
  }
}
.page-recommend .look .unit-tit {
  width: fit-content;
  position: relative;
}
.page-recommend .look .unit-tit .tit-en {
  width: fit-content;
  display: block;
  color: #222584;
  font-size: clamp(14px, 0.9259vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-recommend .look .unit-tit .tit-en {
    font-size: 4.1026vw;
  }
}
.page-recommend .look .unit-tit .tit-ja {
  display: block;
  color: #2c2623;
  font-size: clamp(24px, 1.6204vw, 28px);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.2em;
}
@media screen and (max-width: 768px) {
  .page-recommend .look .unit-tit .tit-ja {
    font-size: 7.1795vw;
    margin-top: 0.3em;
  }
}
.page-recommend .look .unit__note {
  font-size: clamp(13px, 1.0417vw, 18px);
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: justify;
  margin-top: min(1.7361vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .unit__note {
    font-size: 4.1026vw;
    margin-top: 7.6923vw;
  }
}
.page-recommend .look .external-link-btn {
  margin-top: min(4.6296vw, 80px);
}
@media screen and (max-width: 768px) {
  .page-recommend .look .external-link-btn {
    margin-top: 7.6923vw;
  }
}

/* 変更履歴 */
/* 2025/09/20 */
/* pages/_contact.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contact 全体設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/*
--------------------------------------------------------- */
.page-contact ul {
  margin: 0;
  padding: 0;
}

.page-contact ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-contact .parts-contact-info02 .sec-wrap {
  margin: 0;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contact .sec--kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contact .contact-lead


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contact .contact-lead {
  width: 100%;
  position: relative;
}
.page-contact .contact-lead .sec-wrap {
  width: min(100% - 40px, 1328px);
  position: relative;
  margin: auto;
  padding: min(5.787vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-lead .sec-wrap {
    width: 89.7436vw;
    padding: 25.641vw 0 0;
  }
}
.page-contact .contact-lead .sec-lead {
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-lead .sec-lead {
    width: 100%;
  }
}
.page-contact .contact-lead .sec-lead-ja {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-size: clamp(18px, 1.6204vw, 28px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-lead .sec-lead-ja {
    width: 100%;
    font-size: 5.1282vw;
  }
}
.page-contact .contact-lead .sec-lead-ja::before {
  content: "";
  background-image: url("../img/cmn/icon_mail.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  aspect-ratio: 41/31;
  width: min(2.3727vw, 41px);
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-lead .sec-lead-ja::before {
    width: 6.4103vw;
    margin-top: 0.25em;
  }
}
.page-contact .contact-lead .sec-catch {
  font-size: clamp(14px, 1.0417vw, 18px);
  letter-spacing: 0.05em;
  margin-top: min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-contact .contact-lead .sec-catch {
    font-size: 3.5897vw;
    margin-top: 7.6923vw;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contact .sec__contact_form
/vendors/_form_style.scss で定義

＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* 変更履歴 */
/* 2025/09/20 */
/* pages/_about.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about 全体設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-about ul {
  margin: 0;
  padding: 0;
}

.page-about ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about .sec--kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about .company-info


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-about .company-info {
  width: 100%;
  position: relative;
}
.page-about .company-info .sec-wrap {
  width: 100%;
  position: relative;
  margin: auto;
  padding: min(8.6806vw, 150px) 0 0;
}
@media screen and (max-width: 768px) {
  .page-about .company-info .sec-wrap {
    padding: 25.641vw 0 0;
  }
}
.page-about .company-info .sec-tit {
  margin: auto;
}
.page-about .company-info .sec-tit__en {
  margin: auto;
}
.page-about .company-info .info-wrap {
  width: min(76.8519vw, 1328px);
  margin: min(2.8935vw, 50px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-about .company-info .info-wrap {
    width: 89.7436vw;
    margin-top: 7.6923vw;
  }
}
.page-about .company-info .info-unit {
  border-bottom: 1px solid #d9d9d9;
  width: 100%;
  display: flex;
  font-size: clamp(12px, 1.0417vw, 18px);
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-about .company-info .info-unit {
    flex-direction: column;
    font-size: 3.5897vw;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
.page-about .company-info .info-unit:first-child {
  border-top: 1px solid #d9d9d9;
}
.page-about .company-info .info-unit span {
  display: inline-block;
}
.page-about .company-info .info-unit span + span {
  margin-left: 1em;
}
.page-about .company-info .info-unit span + br.sp + span {
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .page-about .company-info .info-unit span + br.sp + span {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-about .company-info .info-unit span.mark {
    font-feature-settings: normal;
  }
}
@media screen and (max-width: 768px) {
  .page-about .company-info .info-unit span.txt-indent {
    text-indent: 1em;
  }
}
.page-about .company-info .info-unit span.mark + span {
  margin-left: 0;
}
.page-about .company-info .info-head {
  flex-shrink: 0;
  background-color: #f9fcff;
  width: min(18.287vw, 316px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: min(1.8519vw, 32px) 0;
}
@media screen and (max-width: 768px) {
  .page-about .company-info .info-head {
    border-bottom: 1px solid #d9d9d9;
    width: 100%;
    justify-content: flex-start;
    padding: 3.8462vw 2.5641vw;
  }
}
.page-about .company-info .info-contents {
  flex-grow: 1;
  padding: min(1.8519vw, 32px) min(4.0509vw, 70px);
}
@media screen and (max-width: 768px) {
  .page-about .company-info .info-contents {
    padding: 3.8462vw 2.5641vw;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about .company-access


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-about .company-access {
  width: 100%;
  position: relative;
}
.page-about .company-access .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-about .company-access .sec-wrap {
    padding: 25.641vw 0 8.2051vw;
  }
}
.page-about .company-access .sec-tit {
  margin: auto;
}
.page-about .company-access .sec-tit__en {
  margin: auto;
}
.page-about .company-access .parts_g-map_embed-wrap {
  width: min(76.8519vw, 1328px);
  margin: min(2.8935vw, 50px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-about .company-access .parts_g-map_embed-wrap {
    width: 89.7436vw;
    margin-top: 7.6923vw;
  }
}
.page-about .company-access .access-info {
  width: min(76.8519vw, 1328px);
  margin: min(2.8935vw, 50px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-about .company-access .access-info {
    width: 89.7436vw;
    margin-top: 7.6923vw;
  }
}
.page-about .company-access .access-info-inner {
  width: 100%;
}
.page-about .company-access .access-info-inner + .access-info-inner {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .page-about .company-access .access-info-inner + .access-info-inner {
    margin-top: 1em;
  }
}
.page-about .company-access .access-info-inner p {
  font-size: clamp(12px, 1.0417vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.778;
}
@media screen and (max-width: 768px) {
  .page-about .company-access .access-info-inner p {
    font-size: 3.5897vw;
    line-height: 1.714;
  }
}
.page-about .company-access .access-info-inner p + p {
  margin-top: 0.1em;
}
.page-about .company-access .access-info-inner p.access-info-name {
  font-size: clamp(18px, 1.3889vw, 24px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-about .company-access .access-info-inner p.access-info-name {
    font-size: 5.1282vw;
  }
}
.page-about .company-access .access-info-inner p span {
  display: inline-block;
}
.page-about .company-access .access-info-inner p span + span {
  margin-left: 1em;
}
.page-about .company-access .access-info-maplink {
  margin-top: 2em;
}
.page-about .company-access .access-info-maplink a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: #222584;
  font-size: clamp(12px, 1.0417vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-about .company-access .access-info-maplink a {
    font-size: 4.1026vw;
  }
}
.page-about .company-access .access-info-maplink a::before {
  content: "";
  background-image: url("../img/cmn/icon_map_link.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 22/22;
  width: min(1.2731vw, 22px);
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-about .company-access .access-info-maplink a::before {
    width: 5.1282vw;
  }
}
.page-about .company-access .access-info-maplink a:hover {
  opacity: 1;
  text-decoration: none;
}

/* 変更履歴 */
/* 2025/09/20 */
/* pages/_archive.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-archive 全体設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-archive ul {
  margin: 0;
  padding: 0;
}

.page-archive ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-archive .parts-contact-info .sec-wrap {
  margin: 0;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-archive .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-archive .archive-news


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-archive .archive-news {
  width: 100%;
  position: relative;
  margin-top: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news {
    margin-top: 2.5641vw;
  }
}
.page-archive .archive-news .sec-wrap {
  background-color: #f2f7f7;
  width: 100%;
  position: relative;
  padding: min(3.4722vw, 60px) 0 min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .sec-wrap {
    padding: 12.8205vw 0 25.641vw;
  }
}
.page-archive .archive-news .news-list-wrap {
  width: min(76.8519vw, 1328px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .news-list-wrap {
    width: 84.6154vw;
  }
}
.page-archive .archive-news .news-list {
  background-color: #fff;
  width: 100%;
  padding: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .news-list {
    padding: 12.8205vw 3.8462vw;
  }
}
.page-archive .archive-news .news-list ul {
  width: 100%;
  margin: 0;
}
.page-archive .archive-news .news-list ul li {
  border-bottom: 1px solid #2c2623;
  width: 100%;
  display: flex;
  gap: min(0.5787vw, 10px);
  align-items: flex-start;
  padding: min(2.0833vw, 36px) 0;
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .news-list ul li {
    flex-direction: column;
    gap: 1.5385vw;
    padding: 7.6923vw 0;
  }
}
.page-archive .archive-news .news-list ul li:first-child {
  padding-top: 0;
}
.page-archive .archive-news .unit-head {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .unit-head {
    width: 100%;
  }
}
.page-archive .archive-news .unit-date {
  color: #222584;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 700;
  margin-top: 0.3em;
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .unit-date {
    font-size: 3.5897vw;
  }
}
.page-archive .archive-news .unit-tit {
  flex-grow: 1;
  width: 100%;
}
.page-archive .archive-news .unit-tit a {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .unit-tit a {
    padding-right: 0;
  }
}
.page-archive .archive-news .tit-txt {
  display: -webkit-box;
  font-size: clamp(12px, 1.0417vw, 18px);
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .tit-txt {
    font-size: 3.5897vw;
  }
}
.page-archive .archive-news .news-unit-arrow {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 9.1px;
  height: 16.1px;
}
.page-archive .archive-news .news-unit-arrow::before,
.page-archive .archive-news .news-unit-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: calc(100% - 1px) 50%;
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .news-unit-arrow::before,
  .page-archive .archive-news .news-unit-arrow::after {
    width: 8px;
  }
}
.page-archive .archive-news .news-unit-arrow::before {
  transform: rotate(45deg);
}
.page-archive .archive-news .news-unit-arrow::after {
  transform: rotate(-45deg);
}
.page-archive .archive-news .post_page_pagination {
  margin-top: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-archive .archive-news .post_page_pagination {
    margin-top: 12.8205vw;
  }
}

/* 変更履歴 */
/* 2025/09/20 */
/* pages/_single.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-single 全体設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.page-single .parts-contact-info .sec-wrap {
  margin: 0;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-single .single-news


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
.page-single .single-news {
  width: 100%;
  position: relative;
  margin-top: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-single .single-news {
    margin-top: 2.5641vw;
  }
}
.page-single .single-news .sec-wrap {
  background-color: #f2f7f7;
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0 min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-single .single-news .sec-wrap {
    padding: 12.8205vw 0 25.641vw;
  }
}
.page-single .single-news .single-news-wrap {
  width: min(76.8519vw, 1328px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-single .single-news .single-news-wrap {
    width: 84.6154vw;
  }
}
.page-single .single-news .single-news-unit {
  width: 100%;
}
.page-single .single-news .unit-head {
  width: 100%;
}
.page-single .single-news .unit-date {
  color: #222584;
  font-size: clamp(16px, 1.6204vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-single .single-news .unit-date {
    font-size: 3.5897vw;
  }
}
.page-single .single-news .unit-tit {
  font-size: clamp(18px, 1.8519vw, 32px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin-top: min(0.8681vw, 15px);
}
@media screen and (max-width: 768px) {
  .page-single .single-news .unit-tit {
    font-size: 6.1538vw;
    line-height: 1.667;
    margin-top: 2.5641vw;
  word-break: initial;
  overflow-wrap: initial;
  
  }
}
.page-single .single-news .unit-detail {
  background-color: #fff;
  width: 100%;
  font-size: clamp(14px, 1.0417vw, 18px);
  font-weight: 400;
  line-height: 3;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-top: min(5.787vw, 100px);
  padding: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-single .single-news .unit-detail {
    font-size: 3.5897vw;
    line-height: 2.286;
    margin-top: 12.8205vw;
    padding: 7.6923vw;
  }
}

/* 変更履歴 */
/* 2025/09/20 */
/* pages/_privacy-policy.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_privacy-policy .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊
＊
＊
＊
＊
＊　プライバシーポリシー ページ　　page_praivacy
＊
＊
＊
＊
＊
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_privacy-policy .sec__privacy-policy {
  width: 100%;
  position: relative;
}
.page_privacy-policy .sec__privacy-policy .sec_wrap {
  max-width: 1000px;
  width: 96vw;
  position: relative;
  margin: auto;
  padding: 6.25vw 0;
}
.page_privacy-policy .sec__privacy-policy .sec_tit {
  width: 100%;
  position: relative;
  text-align: center;
  margin: auto;
}
.page_privacy-policy .sec__privacy-policy .sec_tit::after {
  content: "";
  background-image: linear-gradient(to right, #2c2623 2px, transparent 2px);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 200px;
  height: 10px;
  display: block;
  margin: 20px auto 0;
}
.page_privacy-policy .sec__privacy-policy .sec_tit .en {
  display: block;
  color: #222584;
  font-size: sizeclmpvw(20, 24, 1000);
  letter-spacing: 0.05em;
}
.page_privacy-policy .sec__privacy-policy .sec_tit .ja {
  display: block;
  font-size: sizeclmpvw(30, 34, 1000);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 10px;
}
.page_privacy-policy .sec__privacy-policy .sec_lead {
  font-size: sizeclmpvw(14, 16, 1000);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-top: 100px;
}
.page_privacy-policy .sec__privacy-policy .signature {
  display: block;
  text-align: right;
  text-align-last: auto;
  margin-top: 20px;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap {
  width: 100%;
  margin: 100px auto 0;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap dl {
  letter-spacing: 0.08em;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap dl + dl {
  margin-top: 60px;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap dl dt {
  font-weight: 600;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap dl dd {
  margin-top: 1em;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (width <= 768px) {
  .page_privacy-policy .sec__privacy-policy {
    width: 100%;
    position: relative;
  }
  .page_privacy-policy .sec__privacy-policy .sec_wrap {
    max-width: 100%;
    width: 92.3077vw;
    position: relative;
    margin: auto;
    padding: 17.9487vw 0;
  }
  .page_privacy-policy .sec__privacy-policy .sec_tit {
    width: 100%;
    position: relative;
    text-align: center;
    margin: auto;
  }
  .page_privacy-policy .sec__privacy-policy .sec_tit::after {
    content: "";
    background-image: linear-gradient(to right, #2c2623 2px, transparent 2px);
    background-size: 4px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
    width: 25.641vw;
    height: 10px;
    display: block;
    margin: 5.1282vw auto 0;
  }
  .page_privacy-policy .sec__privacy-policy .sec_tit .en {
    display: block;
    color: #222584;
    font-size: 4.6154vw;
    letter-spacing: 0.05em;
  }
  .page_privacy-policy .sec__privacy-policy .sec_tit .ja {
    display: block;
    font-size: 6.1538vw;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-top: 2.5641vw;
  }
  .page_privacy-policy .sec__privacy-policy .sec_lead {
    font-size: 3.8462vw;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.05em;
    margin-top: 12.8205vw;
  }
  .page_privacy-policy .sec__privacy-policy .signature {
    display: block;
    text-align: right;
    text-align-last: auto;
    margin-top: 5.1282vw;
  }
  .page_privacy-policy .sec__privacy-policy .unit_wrap {
    width: 100%;
    margin: 20vw auto 0;
  }
  .page_privacy-policy .sec__privacy-policy .unit_wrap dl {
    letter-spacing: 0.08em;
  }
  .page_privacy-policy .sec__privacy-policy .unit_wrap dl + dl {
    margin-top: 16.9231vw;
  }
  .page_privacy-policy .sec__privacy-policy .unit_wrap dl dt {
    font-weight: 600;
  }
  .page_privacy-policy .sec__privacy-policy .unit_wrap dl dd {
    margin-top: 1em;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/09/20 */
/* pages/_404.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_404 .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_404 .sec__kv {
  width: 100%;
  position: relative;
}
.page_404 .sec__kv .sec_wrap {
  width: 100%;
  position: relative;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_404 .sec__lead


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_404 .sec__lead {
  width: 100%;
  position: relative;
}
.page_404 .sec__lead .sec_wrap {
  width: 100%;
  position: relative;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_404 .sec__look


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_404 .sec__look {
  width: 100%;
  position: relative;
}
.page_404 .sec__look .sec_wrap {
  width: 100%;
  position: relative;
}

/*# sourceMappingURL=style.css.map */
