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

ブレイクポイント

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

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

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

カラー

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

フォント

*****************************************************/
/* 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;
}

/* 全体の基本フォント設定 */
body {
  color: #2c2623;
  font-family: yakuhanjp, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
  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/07/16 */
/* _typography.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec-tit


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec-tit {
  position: relative;
}
.sec-tit .sec-tit__en {
  border-bottom: 1px dashed #2c2623;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: clamp(12px, 1.2731vw, 22px);
  font-weight: 700;
  letter-spacing: 0;
  padding-bottom: min(0.5787vw, 10px);
}
.sec-tit .sec-tit__ja {
  display: block;
  color: #131213;
  font-size: clamp(26px, 2.0833vw, 36px);
  font-weight: 500;
  line-height: 1.538;
  letter-spacing: 0.125em;
  margin-top: min(0.8681vw, 15px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec-tit {
    position: relative;
  }
  .sec-tit .sec-tit__en {
    border-bottom: 1px dashed #2c2623;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    font-size: 4.1026vw;
    font-weight: 700;
    letter-spacing: 0;
    padding-bottom: 2.5641vw;
  }
  .sec-tit .sec-tit__ja {
    display: block;
    color: #131213;
    font-size: 5.641vw;
    font-weight: 500;
    line-height: 1.909;
    letter-spacing: 0.1em;
    margin-top: 3.8462vw;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


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


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

　リスト　リストマーク１文字用 テキスト
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/07/16 */
/* /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 */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


サイト 枠 設定


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

.base {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.main-contents {
  width: 100%;
  position: relative;
  margin-top: 100px;
}

.main-contents.page-top img,
.main-contents.page-contents img {
  width: 100%;
  display: block;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .main-contents {
    width: 100%;
    position: relative;
    margin-top: 60px;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* 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/07/16 */
/* /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.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 40px;
  aspect-ratio: 1/1;
  display: block;
  position: fixed;
  z-index: 9999;
  top: 10px;
  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 */
/* ----- 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 {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  /* =========================================================

   g_nav sp

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

   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.js_fixed_sp_header {
  height: 60px;
}
.js_header_origin.js_sp_view_navi .header_inner {
  background-color: rgb(255, 255, 255);
  /* box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.25); */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
  padding: 17px 12px;
}
.js_header_origin.js_sp_view_navi.js_fixed_sp_header .header_inner {
  background-color: rgb(255, 255, 255);
}
.js_header_origin.js_sp_view_navi .header_logo {
  width: 189px;
  height: auto;
}
.js_header_origin.js_sp_view_navi .header_logo a {
  display: flex;
}
.js_header_origin.js_sp_view_navi .g_nav {
  background-color: #2c2623;
  width: 100%;
  height: 80vh;
  position: absolute;
  z-index: 9999;
  top: 60px;
  left: 100%;
  padding: 40px 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:first-child {
  border-top: 1px solid #fff;
}
.js_header_origin.js_sp_view_navi .g_nav > ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 30px 20px;
}
.js_header_origin.js_sp_view_navi .g_nav > ul li a::after {
  content: "";
  background-image: url("../img/cmn/header_menu_arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 6px;
  height: 14px;
  display: block;
}
.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 */
/* =====================================================================
=====================================================================
=====================================================================

PC 表示 ヘッダー

===================================================================== */
/* PC 表示
--------------------------------------------------------- */
.js_header_origin.js_pc_view_navi {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 1px 4px -2px rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 1;
  transition: all 0.3s ease;
  /* =========================================================

   g_nav PC

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

  info_nav PC

  ========================================================= */
}
.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: 100%;
  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(16.2037vw, 280px);
  margin-left: min(1.7361vw, 30px);
  transition: all 0.3s ease;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .header_logo {
  width: min(11.5741vw, 200px);
}
.js_header_origin.js_pc_view_navi .header_logo a {
  display: flex;
}
.js_header_origin.js_pc_view_navi .g_nav {
  align-self: center;
  width: min(57.8704vw, 1000px);
  margin-left: auto;
}
.js_header_origin.js_pc_view_navi .g_nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 sizeminvw(10, 1728);
}
.js_header_origin.js_pc_view_navi .g_nav ul li {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js_header_origin.js_pc_view_navi .g_nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  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 p span {
  display: inline-block;
  color: #2c2623;
  font-size: clamp(14px, 1.0417vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .g_nav ul li a p span {
  font-size: clamp(12px, 0.8102vw, 14px);
}
.js_header_origin.js_pc_view_navi .info_nav {
  width: 230px;
  margin-left: min(0.5787vw, 10px);
  margin-right: min(1.7361vw, 30px);
}

/* /.js_header_origin.js_pc_view_navi */
/* 変更履歴 */
/* 2025/07/16 */
/* /base/_footer.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ フッター footer_contents
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec_footer {
  width: 100%;
  position: relative;
  z-index: 99999;
  margin-top: -30px;
}
.sec_footer .back-to-top-bar {
  background-color: rgba(30, 30, 30, 0.9);
  width: 100%;
  height: 30px;
}
.sec_footer .back-to-top-bar a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_footer .back-to-top-bar a img {
  width: 24px;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_footer {
    width: 100%;
    position: relative;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ footer01_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer01_wrap {
  background-color: #2c2623;
  width: 100%;
  position: relative;
  /* company_info */
  /* footer_link */
}
.footer01_wrap .footer_inner {
  width: min(100% - 40px, 1329px);
  display: flex;
  flex-direction: column-reverse;
  gap: min(3.2407vw, 56px);
  align-items: center;
  margin: auto;
  padding: min(5.3819vw, 93px) 0;
}
.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(16.2037vw, 280px);
}
.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 {
  width: min(38.6574vw, 668px);
  color: #fff;
  font-size: clamp(14px, 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;
  justify-content: space-between;
}
.footer01_wrap .footer_link li {
  border-left: 1px solid #fff;
  width: 25%;
  display: flex;
  align-items: center;
  position: relative;
}
.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;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .footer01_wrap {
    background-color: #2c2623;
    width: 100%;
    position: relative;
    /* company_info */
    /* footer_link */
  }
  .footer01_wrap .footer_inner {
    width: 88.4615vw;
    display: flex;
    flex-direction: column-reverse;
    gap: 14.359vw;
    align-items: center;
    margin: auto;
    padding: 12.8205vw 0 7.6923vw;
  }
  .footer01_wrap .company_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 3.5897vw;
    letter-spacing: 0.05em;
  }
  .footer01_wrap .footer_logo {
    width: 53.0769vw;
  }
  .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;
    flex-direction: column;
    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;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    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 {
    width: 100%;
    color: #fff;
    font-size: 4.1026vw;
    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: 1em;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer01_wrap .footer_link li {
    border-left: none;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
  .footer01_wrap .footer_link li:first-child {
    border: none;
  }
  .footer01_wrap .footer_link li a {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer01_wrap .footer_link li a:hover {
    text-decoration: underline;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ footer02_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer02_wrap {
  background-color: #2c2623;
  width: 100%;
  padding: 0 0 min(1.1574vw, 20px);
}
.footer02_wrap .footer_inner {
  border-top: 1px solid #fff;
  width: min(100% - 40px, 1329px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-top: min(1.1574vw, 20px);
}
.footer02_wrap .copy_right {
  display: flex;
  gap: 0 0.2em;
  align-items: center;
  color: #fff;
  font-size: clamp(10px, 0.6944vw, 12px);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.footer02_wrap .copy_right span {
  display: inline-block;
  font-size: clamp(10px, 0.8102vw, 14px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .footer02_wrap {
    background-color: #2c2623;
    width: 100%;
    padding: 0 0 5.1282vw;
  }
  .footer02_wrap .footer_inner {
    width: 88.4615vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-top: min(5.1282vw, 20px);
  }
  .footer02_wrap .copy_right {
    display: flex;
    gap: 0 0.2em;
    align-items: center;
    color: #fff;
    font-size: 3.0769vw;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .footer02_wrap .copy_right span {
    display: inline-block;
    font-size: 3.0769vw;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* /components/_buttons.scss */
/*
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


TOPに戻るボタン ver02


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

.move-page-top {
  background: #c6d9f4;
  /* 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: sizeconvertvw(20, 390);
    bottom: 70px;
  }
  .move-page-top {
    width: 40px;
    height: 40px;
  }
  .move-page-top .svg_wrap {
    width: 14px;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


fixed-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.fixed-btn {
  width: min(17.2454vw, 298px);
  aspect-ratio: 298/75;
}
.fixed-btn a {
  background-color: rgba(23, 44, 73, 0.8);
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}
.fixed-btn a:hover {
  opacity: 1;
  background-color: rgb(23, 44, 73);
}
.fixed-btn span {
  display: flex;
  gap: 0.4em;
  align-items: center;
  font-size: clamp(13px, 1.5046vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
}
.fixed-btn.ver-contact span {
  font-size: clamp(13px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.fixed-btn span::before {
  content: "";
  background-image: url("../img/cmn/icon_phone_01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: min(1.7361vw, 30px);
  aspect-ratio: 1/1;
  display: block;
}
.fixed-btn.ver-contact span::before {
  background-image: url("../img/cmn/icon_mail_01.svg");
  margin-top: min(0.2894vw, 5px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .fixed-btn {
    width: 50%;
    height: 60px;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
  }
  .fixed-btn.ver-contact::before {
    content: "";
    background-color: #fff;
    width: 1px;
    height: 40px;
    display: block;
  }
  .fixed-btn a {
    background-color: rgb(23, 44, 73);
    border-radius: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
  }
  .fixed-btn a:hover {
    opacity: 1;
    background-color: rgb(23, 44, 73);
  }
  .fixed-btn span {
    display: flex;
    gap: 0.2em;
    align-items: center;
    font-size: 5.1282vw;
    font-weight: 700;
    letter-spacing: 0;
  }
  .fixed-btn.ver-contact span {
    font-size: 4.6154vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .fixed-btn span::before {
    content: "";
    background-image: url("../img/cmn/icon_phone_01.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 5.641vw;
    aspect-ratio: 1/1;
    display: block;
  }
  .fixed-btn.ver-contact span::before {
    background-image: url("../img/cmn/icon_mail_01.svg");
    margin-top: min(0.2894vw, 5px);
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


page-link-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-link-btn {
  width: min(13.3102vw, 230px);
}
.page-link-btn a {
  background-color: #2c2623;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #131213;
  padding: min(9.2199vw, 26px) min(7.0922vw, 20px);
}
.page-link-btn a::before {
  content: "";
  border: 1px solid #fff;
  width: calc(100% - 24px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 12px;
  transition: all 0.3s;
}
.page-link-btn a:hover::before {
  opacity: 1;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-link-btn span {
  color: #fff;
  font-size: clamp(14px, 1.0417vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-link-btn {
    width: 56.4103vw;
  }
  .page-link-btn a {
    background-color: #2c2623;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #131213;
    padding: 4.8718vw 5.1282vw;
  }
  .page-link-btn a::before {
    content: "";
    border: 1px solid #fff;
    width: calc(100% - 20px);
    height: calc(100% - 16px);
    position: absolute;
    top: 8px;
    left: 10px;
    transition: all 0.3s;
  }
  .page-link-btn a:hover::before {
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .page-link-btn span {
    color: #fff;
    font-size: 4.1026vw;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


page-anker-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-anker-btn {
  width: min(16.8056vw, 242px);
}
.page-anker-btn a {
  background-color: #fff;
  border: 1px solid #2c2623;
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  color: #131213;
  padding: min(3.5461vw, 10px) min(7.0922vw, 20px);
}
.page-anker-btn a:hover {
  opacity: 1;
}
.page-anker-btn span {
  display: flex;
  gap: min(1.1574vw, 20px);
  align-items: center;
  font-size: clamp(13px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.page-anker-btn span::before {
  content: "";
  background-color: #2c2623;
  background-image: url("../img/cmn/icon_arrow02.svg");
  background-repeat: no-repeat;
  background-size: min(1.2097vw, 15px) auto;
  background-position: center;
  border-radius: 9999px;
  overflow: hidden;
  width: min(3.7097vw, 46px);
  aspect-ratio: 1/1;
  display: block;
}
@keyframes btnArrowMove02 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}
.page-anker-btn:hover span::before {
  animation: btnArrowMove02 0.6s ease-in-out infinite;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-anker-btn {
    width: 37.9487vw;
  }
  .page-anker-btn a {
    background-color: #fff;
    border: 1px solid #2c2623;
    border-radius: 9999px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: #131213;
    padding: 2.5641vw;
  }
  .page-anker-btn a:hover {
    opacity: 1;
  }
  .page-anker-btn span {
    display: flex;
    gap: 5.1282vw;
    align-items: center;
    font-size: 4.1026vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .page-anker-btn span::before {
    content: "";
    background-color: #2c2623;
    background-image: url("../img/cmn/icon_arrow02.svg");
    background-repeat: no-repeat;
    background-size: 3.0769vw auto;
    background-position: center;
    border-radius: 9999px;
    overflow: hidden;
    width: 6.1538vw;
    aspect-ratio: 1/1;
    display: block;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


map-link-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.map-link-btn {
  width: min(14.2361vw, 205px);
}
.map-link-btn a {
  background-color: #2c2623;
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  padding: min(2.9268vw, 6px) min(4.878vw, 10px);
}
.map-link-btn a:hover {
  background-color: #fff;
  color: #131213;
  opacity: 1;
}
.map-link-btn span {
  display: flex;
  gap: min(1.1574vw, 20px);
  align-items: center;
  font-size: clamp(13px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .map-link-btn {
    width: 41.0256vw;
  }
  .map-link-btn a {
    background-color: #2c2623;
    border-radius: 9999px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    padding: 1.5385vw 2.5641vw;
  }
  .map-link-btn a:hover {
    background-color: #fff;
    color: #131213;
    opacity: 1;
  }
  .map-link-btn span {
    display: flex;
    gap: 5.1282vw;
    align-items: center;
    font-size: 4.1026vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


detail_btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.detail_btn .btn {
  border: 2px solid #fff;
  width: sizeminvw(290, 1728);
  height: sizeminvw(70, 1728);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}
.detail_btn .btn .btn_txt {
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: sizeclmpvw(12, 16, 1728);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.detail_btn .btn .btn_txt::after {
  content: "";
  background-image: url("../img/cmn/icon_arrow01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 16px;
  height: 16px;
  display: block;
}
@keyframes btnArrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
.detail_btn .btn:hover .btn_txt::after {
  animation: btnArrowMove 0.6s ease-in-out infinite;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .detail_btn .btn {
    border: 2px solid #fff;
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
  }
  .detail_btn .btn .btn_txt {
    display: flex;
    gap: 1em;
    align-items: center;
    font-size: sizeclmpvw(12, 14, 390);
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .detail_btn .btn .btn_txt::after {
    content: "";
    background-image: url("../img/cmn/icon_arrow01.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 16px;
    height: 16px;
    display: block;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


archive-back-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示  mixin記述法
--------------------------------------------------------- */
.archive-back-btn {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .archive-back-btn {
    width: 50%;
  }
}
.archive-back-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #131213;
  padding: min(7.8014vw, 22px) min(7.0922vw, 20px);
}
@media screen and (max-width: 768px) {
  .archive-back-btn a {
    padding: 0.5em;
  }
}
.archive-back-btn a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
.archive-back-btn span {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(13px, 1.1574vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .archive-back-btn span {
    font-size: 4.1026vw;
  }
}
.archive-back-btn span::after {
  flex-shrink: 0;
  content: "";
  background-image: url("../img/cmn/pagination-arrow-right.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 9999px;
  overflow: hidden;
  width: min(0.8vw, 8px);
  aspect-ratio: 8/14;
  display: block;
}
@media screen and (max-width: 768px) {
  .archive-back-btn span::after {
    width: 8px;
  }
}

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


contact-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.contact-btn {
  width: min(42.2222vw, 380px);
}
.contact-btn a {
  background-color: #2c2623;
  width: 100%;
  height: 100%;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #131213;
  padding: min(9.5745vw, 27px) min(7.0922vw, 20px);
}
.contact-btn a::before {
  content: "";
  border: 1px solid #fff;
  width: calc(100% - 24px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 12px;
  transition: all 0.3s;
}
.contact-btn a:hover::before {
  opacity: 1;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact-btn .txt-wrap {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.contact-btn .txt-wrap::before {
  content: "";
  background-image: url("../img/cmn/icon_phone.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: min(9.4737vw, 36px);
  height: min(9.4737vw, 36px);
  display: block;
}
.contact-btn.ver-mail .txt-wrap::before {
  content: "";
  background-image: url("../img/cmn/icon_mail.svg");
}
.contact-btn span {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.contact-btn span.small-txt {
  font-size: clamp(10px, 0.8102vw, 14px);
  font-weight: 400;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .contact-btn {
    width: 87.9487vw;
  }
  .contact-btn a {
    background-color: #2c2623;
    width: 100%;
    height: 100%;
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #131213;
    padding: 6.9231vw 5.1282vw;
  }
  .contact-btn a::before {
    content: "";
    border: 1px solid #fff;
    width: calc(100% - 24px);
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    left: 12px;
    transition: all 0.3s;
  }
  .contact-btn a:hover::before {
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .contact-btn .txt-wrap {
    display: flex;
    align-items: center;
    gap: 1.5em;
  }
  .contact-btn .txt-wrap::before {
    content: "";
    background-image: url("../img/cmn/icon_phone.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 9.2308vw;
    height: 9.2308vw;
    display: block;
  }
  .contact-btn.ver-mail .txt-wrap::before {
    content: "";
    background-image: url("../img/cmn/icon_mail.svg");
  }
  .contact-btn span {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05em;
    font-size: 4.6154vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  .contact-btn span.small-txt {
    font-size: 3.0769vw;
    font-weight: 400;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


footer_contact_btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer_contact_btn_wrap {
  width: min(100% - 40px, 526px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: sizeminvw(30, 526);
  margin: sizeminvw(50, 1728) auto 0;
}

.footer_contact_btn a.btn {
  background-color: #fff;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer_contact_btn a.btn span {
  display: flex;
  gap: 0.5em;
  align-items: center;
  color: #131213;
  font-size: sizeclmpvw(14, 16, 526);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer_contact_btn a.btn span::before {
  content: "";
  background-image: url("../img/cmn/icon_personal02.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 30px;
  display: block;
}
.footer_contact_btn a.btn.ver_corporate span::before {
  content: "";
  background-image: url("../img/cmn/icon_corporate02.svg");
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .footer_contact_btn_wrap {
    width: sizeconvertvw(248, 390);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: sizeconvertvw(15, 390);
    margin: sizeconvertvw(30, 390) auto 0;
  }
  .footer_contact_btn a.btn {
    background-color: #fff;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .footer_contact_btn a.btn span {
    display: flex;
    gap: 0.5em;
    align-items: center;
    color: #131213;
    font-size: sizeconvertvw(16, 390);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .footer_contact_btn a.btn span::before {
    content: "";
    background-image: url("../img/cmn/icon_personal02.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
    display: block;
  }
  .footer_contact_btn a.btn.ver_corporate span::before {
    content: "";
    background-image: url("../img/cmn/icon_corporate02.svg");
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


parts_contact_btn_wrap


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__parts_contact .sec_lead {
  width: min(100% - 40px, 1076px);
  font-size: sizeclmpvw(14, 20, 1728);
  line-height: lineheight(20, 30);
  letter-spacing: 0.1em;
  text-align: center;
  text-indent: 0.1em;
  margin: auto;
}

.parts_contact_btn_wrap {
  width: min(100% - 40px, 1076px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: sizeminvw(76, 1076);
  margin: sizeminvw(50, 1728) auto 0;
}

.parts_contact_btn a.btn {
  background-color: #fff;
  border: 2px solid #0a13b6;
  width: 100%;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 sizeminvw(40, 1076);
  /* &.ver_corporate .btn_txt,
  &.ver_personal .btn_txt {
    text-align: left;
  } */
}
.parts_contact_btn a.btn::before {
  flex-shrink: 0;
  content: "";
  background-image: url("../img/cmn/icon_contact_tel03.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: sizeminvw(70, 1076);
  height: sizeminvw(70, 1076);
  display: block;
}
.parts_contact_btn a.btn.ver_corporate::before {
  content: "";
  background-image: url("../img/cmn/icon_corporate03.svg");
}
.parts_contact_btn a.btn.ver_personal::before {
  content: "";
  background-image: url("../img/cmn/icon_personal03.svg");
}
.parts_contact_btn a.btn::after {
  flex-shrink: 0;
  content: "";
  background-image: url("../img/cmn/icon_arrow03.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 14px;
  height: 24px;
  display: block;
}
.parts_contact_btn a.btn.ver_tel::after {
  content: none;
}
.parts_contact_btn a.btn .btn_inner {
  width: 100%;
  margin-left: sizeminvw(30, 1076);
  margin-right: sizeminvw(20, 1076);
}
.parts_contact_btn a.btn span {
  display: block;
  text-align: center;
}
.parts_contact_btn a.btn .btn_head {
  color: #131213;
  font-size: sizeclmpvw(15, 20, 1076);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.parts_contact_btn a.btn .btn_num {
  font-size: sizeclmpvw(30, 35, 1076);
  font-weight: 500;
  letter-spacing: 0;
  text-indent: 0;
  margin-top: sizeminvw(5, 1728);
}
.parts_contact_btn a.btn .btn_txt {
  font-size: sizeclmpvw(12, 16, 1076);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin-top: sizeminvw(10, 1728);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__parts_contact .sec_lead {
    width: sizeconvertvw(330, 390);
    font-size: sizeconvertvw(14, 390);
    line-height: lineheight(14, 24);
    letter-spacing: 0.1em;
    text-align: center;
    text-indent: 0.1em;
    margin: auto;
  }
  .parts_contact_btn_wrap {
    width: sizeconvertvw(330, 390);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: sizeconvertvw(20, 390);
    margin: sizeconvertvw(30, 390) auto 0;
  }
  .parts_contact_btn a.btn {
    background-color: #fff;
    border: 1px solid #0a13b6;
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 sizeconvertvw(10, 390);
    /* &.ver_corporate .btn_txt,
    &.ver_personal .btn_txt {
      text-align: left;
    } */
  }
  .parts_contact_btn a.btn::before {
    flex-shrink: 0;
    content: "";
    background-image: url("../img/cmn/icon_contact_tel03.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: sizeconvertvw(40, 390);
    height: sizeconvertvw(40, 390);
    display: block;
  }
  .parts_contact_btn a.btn.ver_corporate::before {
    content: "";
    background-image: url("../img/cmn/icon_corporate03.svg");
  }
  .parts_contact_btn a.btn.ver_personal::before {
    content: "";
    background-image: url("../img/cmn/icon_personal03.svg");
  }
  .parts_contact_btn a.btn::after {
    flex-shrink: 0;
    content: "";
    background-image: url("../img/cmn/icon_arrow03.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 14px;
    height: 24px;
    display: block;
  }
  .parts_contact_btn a.btn.ver_tel::after {
    content: none;
  }
  .parts_contact_btn a.btn .btn_inner {
    width: 100%;
    margin-left: sizeconvertvw(10, 390);
    margin-right: sizeconvertvw(10, 390);
  }
  .parts_contact_btn a.btn span {
    display: block;
    text-align: center;
  }
  .parts_contact_btn a.btn .btn_head {
    color: #131213;
    font-size: sizeconvertvw(14, 390);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  .parts_contact_btn a.btn .btn_num {
    font-size: sizeconvertvw(20, 390);
    font-weight: 500;
    letter-spacing: 0;
    text-indent: 0;
    margin-top: sizeconvertvw(3, 390);
  }
  .parts_contact_btn a.btn .btn_txt {
    font-size: sizeconvertvw(12, 390);
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    margin-top: sizeconvertvw(6, 390);
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sales-site-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sales-site-btn {
  width: 100%;
}
.sales-site-btn a {
  background-color: #2c2623;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #131213;
  padding: min(1.8548vw, 23px);
}
.sales-site-btn span {
  color: #fff;
  font-size: clamp(14px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sales-site-btn {
    width: 100%;
  }
  .sales-site-btn a {
    background-color: #2c2623;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #131213;
    padding: 4.1026vw;
  }
  .sales-site-btn span {
    color: #fff;
    font-size: 4.6154vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* /components/_template-parts.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.parts-contact-info


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.parts-contact-info {
  background-image: url("../img/cmn/contact_bg01_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
}
.parts-contact-info .sec-wrap {
  width: 100%;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(5.787vw, 100px) 0;
}
.parts-contact-info .contact__unit {
  width: min(59.4907vw, 1028px);
  display: flex;
  align-items: center;
  gap: min(7.0602vw, 122px);
  margin: auto;
}
.parts-contact-info .unit-contents {
  width: min(30.4398vw, 526px);
}
.parts-contact-info .sec-tit .sec-tit__en {
  border-color: #fff;
  color: #fff;
}
.parts-contact-info .sec-tit .sec-tit__ja {
  color: #fff;
}
.parts-contact-info .sec-catch {
  color: #fff;
  font-size: clamp(12px, 1.1574vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: min(1.7361vw, 30px);
}
.parts-contact-info .btn-wrap {
  width: min(21.9907vw, 380px);
  display: flex;
  flex-direction: column;
  gap: min(2.3148vw, 40px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .parts-contact-info {
    background-image: url("../img/cmn/contact_bg01_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
  }
  .parts-contact-info .sec-wrap {
    width: 100%;
    position: relative;
    margin-top: 12.8205vw;
    padding: 14.1026vw 0 19.2308vw;
  }
  .parts-contact-info .contact__unit {
    width: 87.9487vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8.9744vw;
    margin: auto;
  }
  .parts-contact-info .unit-contents {
    width: 87.9487vw;
  }
  .parts-contact-info .sec-tit .sec-tit__en {
    border-color: #fff;
    color: #fff;
    text-align: center;
    margin: auto;
  }
  .parts-contact-info .sec-tit .sec-tit__ja {
    color: #fff;
    text-align: center;
  }
  .parts-contact-info .sec-catch {
    color: #fff;
    font-size: 4.1026vw;
    line-height: 1.875;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 3.5897vw;
  }
  .parts-contact-info .btn-wrap {
    width: 87.9487vw;
    display: flex;
    flex-direction: column;
    gap: 5.1282vw;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


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


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.parts-fixed-menu {
  width: -moz-fit-content;
  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/07/16 */
/* /components/_wp_parts.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.post_page_pagination ページネーション


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示 mixin記述法
--------------------------------------------------------- */
.post_page_pagination {
  width: 100%;
  display: flex;
  gap: min(2.3148vw, 40px);
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.2153vw, 21px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin: min(8.6806vw, 150px) auto 0;
}
@media screen and (max-width: 768px) {
  .post_page_pagination {
    gap: 2.5641vw;
    font-size: 4.1026vw;
    margin-top: 20.5128vw;
  }
}
.post_page_pagination .page-numbers {
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}
.post_page_pagination .page-numbers:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
}
.post_page_pagination .current {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 10px;
}
.post_page_pagination .prev,
.post_page_pagination .next {
  opacity: 1;
  background-color: #fff;
  color: #131213;
}
.post_page_pagination .dots {
  background: transparent;
  color: #2c2623;
}

/* 変更履歴 */
/* 2025/07/16 */
/* /components/_sticky-manu-page.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.


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

.l-wrap {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
  align-items: start;
}

.l-main {
  scroll-padding-top: calc(var(--header-h, 80px) + 12px);
}

/* サイドナビ設定 */
/* 祖先に overflow: hidden/auto/scroll を付けると sticky が効かなくなることがあるので注意 */
.l-side {
  position: sticky;
  top: var(--header-h, 80px);
  max-height: calc(100dvh - var(--header-h, 80px));
  overflow: auto;
}

.l-side .l-side__manu {
  display: flex;
  flex-direction: column;
  gap: min(1.7361vw, 30px);
}

#toc a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-size: clamp(20px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: 0.5s;
}

#toc a .menu-num {
  font-size: clamp(18px, 1.2731vw, 22px);
  font-weight: 700;
  margin-left: 0;
}

#toc a.is-active::before {
  content: "ー";
  display: block;
}

#toc a.is-active .menu-num {
  margin-left: 1rem;
}

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

/* レスポンシブ：モバイルは1カラムに */
@media (width <= 960px) {
  .l-wrap {
    grid-template-columns: 1fr;
  }
  .l-side {
    position: static;
    max-height: none;
    overflow: visible;
  }
}
/* 変更履歴 */
/* 2025/07/16 */
/* /vendors/_form_style.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊

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


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

全体

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.page-contents .sec__contact_form {
  width: 100%;
  position: relative;
}
.page-contents .sec__contact_form .sec-wrap {
  background-color: #f6f5ea;
  width: 100%;
  position: relative;
  padding: min(4.0509vw, 70px) 0 min(7.5231vw, 130px);
}
@media screen and (max-width: 768px) {
  .page-contents .sec__contact_form .sec-wrap {
    padding: 25.641vw 0 33.3333vw;
  }
}

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

　フォーム部分

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.form_wrap {
  width: min(100% - 40px, 1000px);
  margin: auto;
  /* 入力部分（共通） */
  /* 項目名 */
  /* .form_item dt .title_txt::before {
    content: '・';
    display: inline-block;
    margin-right: 0.2em;
  } */
  /* 必須マーク */
  /* 入力部分（共通） */
  /* テキストエリアパーツ */
  /* 郵便番号パーツ（今回なし） */
  /* 都道府県パーツ（今回なし） */
  /* セレクトボックスパーツ（今回なし） */
  /* チェックボックス（今回なし） */
  /* チェックボックス設定（共通）FireFox効かない */
  /* 個人情報同意チェックパーツ */
  /* プライバシーチェックリンク */
  /* ラジオボタン（共通パーツ）(今回なし) */
  /* 生年月日ドロップダウン（今回なし） */
  /* 送信ボタン */
  /* .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%);
  } */
}
@media screen and (max-width: 768px) {
  .form_wrap {
    width: 87.1795vw;
  }
}
.form_wrap input[type=text],
.form_wrap input[type=tel],
.form_wrap input[type=email],
.form_wrap select,
.form_wrap textarea {
  background-color: #fff;
  border: 1px solid #2c2623;
  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) {
  .form_wrap input[type=text],
  .form_wrap input[type=tel],
  .form_wrap input[type=email],
  .form_wrap select,
  .form_wrap textarea {
    font-size: 4.1026vw;
    line-height: lineheight(16, 26);
  }
}
.form_wrap input[type=text]:focus,
.form_wrap input[type=tel]:focus,
.form_wrap input[type=email]:focus,
.form_wrap select:focus,
.form_wrap textarea:focus {
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.4); /* フォーカスした時に影をつける */
  border: solid 2px #008cff;
}
.form_wrap .form_item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: min(0.5787vw, 10px);
  margin-top: min(2.3148vw, 40px);
  padding-bottom: min(2.3148vw, 40px);
}
@media screen and (max-width: 768px) {
  .form_wrap .form_item {
    flex-direction: column;
    gap: 2.5641vw;
    margin-top: 6.4103vw;
    padding-bottom: 6.4103vw;
  }
}
.form_wrap .form_item:first-of-type {
  margin-top: 0;
}
.form_wrap .form_item dt {
  display: flex;
  gap: 2em;
  align-items: center;
}
.form_wrap .form_item dt label {
  display: flex;
  gap: 1em;
  align-items: center;
}
.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) {
  .form_wrap .form_item dt .title_txt {
    font-size: 4.1026vw;
  }
}
.form_wrap .form_item dt .mandatory_mark {
  background-color: #F14747;
  width: min(4.2245vw, 73px);
  aspect-ratio: 73/33;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(10px, 1.1574vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_item dt .mandatory_mark {
    width: 18.9744vw;
    aspect-ratio: 74/30;
    font-size: 4.1026vw;
  }
}
.form_wrap .form_item dd {
  width: min(35.6481vw, 616px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_item dd {
    width: 100%;
  }
}
.form_wrap .form_item.textarea_parts {
  align-items: flex-start;
}
.form_wrap .form_item.textarea_parts dt {
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_item.textarea_parts dt {
    margin-top: 0;
  }
}
.form_wrap .form_item textarea {
  resize: vertical; /* 縦方向にだけ伸縮 */
}
.form_wrap .form_item.post_code_unit .post_code_inner {
  display: flex;
  gap: 0 20px;
  align-items: center;
}
.form_wrap .form_item.post_code_unit .post_code_inner span {
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 400;
}
.form_wrap .form_item.post_code_unit .post_code_inner input {
  width: 246px;
}
.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;
}
.form_wrap .form_item.post_code_unit .post_code_btn {
  width: 286px;
  aspect-ratio: 286/50;
  margin-top: 37px;
}
.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;
}
.form_wrap .form_item.post_code_unit .btn_note {
  font-size: clamp(12px, 1.3011vw, 14px);
  letter-spacing: 0.04em;
  margin-top: 20px;
}
.form_wrap .form_item.prefectures_parts dd {
  flex-grow: 0;
  width: 280px;
}
.form_wrap .form_item .select_box {
  position: relative;
}
.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;
}
.form_wrap .form_item .select_box select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form_wrap .checkbox_parts {
  width: 100%;
}
.form_wrap .checkbox_parts ul li {
  display: flex;
  align-items: center;
}
.form_wrap .checkbox_parts ul li label {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.11em;
  margin-left: 1em;
}
.form_wrap .checkbox_parts ul li + li {
  margin-top: 1em;
}
.form_wrap input[type=checkbox] {
  cursor: pointer;
  width: 20px; /* チェックボックスの横幅 */
  aspect-ratio: 1/1; /* ボックスの縦横比 */
  display: block;
  position: relative;
}
.form_wrap input[type=checkbox]::before,
.form_wrap input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
.form_wrap input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #2c2623;
  width: 20px; /* チェックボックスの横幅 */
  aspect-ratio: 1/1; /* ボックスの縦横比 */
  top: 0;
  left: 0;
}
.form_wrap input[type=checkbox]:checked::before {
  background-color: #F14747; /* チェック時背景カラー */
}
.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; /* チェック時の位置調整 */
}
.form_wrap input[type=checkbox]:checked::after {
  opacity: 1; /* チェック後表示 */
}
.form_wrap .agree_btn_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: min(5.787vw, 100px) auto 0;
}
@media screen and (max-width: 768px) {
  .form_wrap .agree_btn_wrap {
    width: 100%;
    margin-top: 7.6923vw;
  }
}
.form_wrap .agree_btn_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.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) {
  .form_wrap .agree_btn_wrap label {
    font-size: 4.1026vw;
  }
}
.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) {
  .form_wrap .agree_btn_wrap a {
    font-size: 4.1026vw;
    margin-top: 0.5128vw;
  }
}
.form_wrap .radio_btn_parts dt {
  display: flex;
  align-items: center;
}
.form_wrap .radio_btn_parts ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.7361vw, 30px) 0;
}
.form_wrap .radio_btn_parts ul li {
  width: 100%;
  font-size: clamp(14px, 1.0417vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.form_wrap .radio_btn_parts label {
  position: relative;
  cursor: pointer;
  padding-left: min(1.7361vw, 30px);
}
.form_wrap .radio_btn_parts label::before,
.form_wrap .radio_btn_parts label::after {
  content: "";
  border-radius: 9999px;
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.form_wrap .radio_btn_parts label::before {
  background-color: #fff;
  border: 1px solid #262727;
  width: 17px;
  height: 17px;
}
.form_wrap .radio_btn_parts label::after {
  background-color: #008cff;
  border: 1px solid #008cff;
  opacity: 0;
  width: 9px;
  height: 9px;
  left: 4px;
}
.form_wrap .radio_btn_parts input:checked + label::before {
  border: 1px solid #0068e1;
}
.form_wrap .radio_btn_parts input:checked + label::after {
  opacity: 1;
}
.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;
}
.form_wrap .form_item.birth_box dd {
  display: flex;
  gap: 10px;
  align-items: center;
}
.form_wrap .form_item.birth_box dd label {
  font-size: clamp(18px, 1.7188vw, 22px);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.form_wrap .form_item.birth_box dd .select_box {
  position: relative;
}
.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;
}
.form_wrap .submit_btn {
  background-color: #2c2623;
  border-color: #2c2623;
  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) {
  .form_wrap .submit_btn {
    width: 64.1026vw;
    aspect-ratio: 250/60;
    font-size: 4.1026vw;
    margin-top: 17.9487vw;
  }
}
.form_wrap .submit_btn:hover {
  opacity: 1;
  background-color: #fff;
  border-color: #2c2623;
  color: #2c2623;
}

/* 変更履歴 */
/* 2025/07/16 */
/* /vendors/_slick.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec__kv_slider   KV スライドver.


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .sec__kv_slider {
  width: 100%;
  position: relative;
  /* スライドの高さを指定　overflow: hidden;を入れる */
  /* スライドは背景画像にする */
  /* 画像明るさ調整する場合 */
  /* .slider-img::after {
    content: '';
    background-color: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  } */
  /* スライド画像を指定 */
  /* アニメーションを指定 */
  /* ズームのための追加クラス */
  /* スクロール誘導アニメーション */
}
.page-top .sec__kv_slider .kv_slider {
  width: 100%;
  /* height: calc(100dvh - 300px); */ /* header分下げる場合はcalcで引く */
  /* height: 100dvh; */
  height: auto;
  aspect-ratio: 1440/955;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.page-top .sec__kv_slider .slider-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  /* height: 100dvh; */ /* スライド画像の高さ 上に合わせる */
  height: auto;
  aspect-ratio: 1440/955;
  position: relative;
}
.page-top .sec__kv_slider .slider-img-01 {
  background-image: url("../img/top/kv_img01_pc.jpg");
}
.page-top .sec__kv_slider .slider-img-02 {
  background-image: url("../img/top/kv_img02_pc.jpg");
}
.page-top .sec__kv_slider .slider-img-03 {
  background-image: url("../img/top/kv_img03_pc.jpg");
}
.page-top .sec__kv_slider .slick-list {
  width: 100%;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
    /* 拡大率 */
  }
}
.page-top .sec__kv_slider .add-zoom {
  animation: fadezoom 10s 0s forwards;
}
@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 .sec__kv_slider .p-hero__scroll {
  position: absolute;
  right: 45px;
  bottom: 0;
}
.page-top .sec__kv_slider .p-hero__scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-top .sec__kv_slider .p-hero__scroll p {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 10px;
}
.page-top .sec__kv_slider .p-hero__scroll span {
  height: 90px;
  display: block;
  position: relative;
}
.page-top .sec__kv_slider .p-hero__scroll span::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);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .sec__kv_slider {
    width: 100%;
    position: relative;
    z-index: 1;
    /* スライドの高さを指定　overflow: hidden;を入れる */
    /* スライドは背景画像にする */
    /* .slider-img::after {
      content: '';
      background-color: rgba(0, 0, 0, 0.25);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    } */
    /* スライド画像を指定 */
    /* アニメーションを指定 */
    /* ズームのための追加クラス */
    /* スクロール誘導アニメーション */
  }
  .page-top .sec__kv_slider .kv_slider {
    width: 100%;
    aspect-ratio: 390/620;
    /* height: 80vh;
    height: 80svh;
    height: 80dvh; */
    height: auto;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .page-top .sec__kv_slider .slider-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    aspect-ratio: 390/620;
    /* height: 80vh;
    height: 80svh;
    height: 80dvh; */
    position: relative;
  }
  .page-top .sec__kv_slider .slider-img-01 {
    background-image: url("../img/top/kv_img01_sp_2x.jpg");
  }
  .page-top .sec__kv_slider .slider-img-02 {
    background-image: url("../img/top/kv_img02_sp_2x.jpg");
  }
  .page-top .sec__kv_slider .slider-img-03 {
    background-image: url("../img/top/kv_img03_sp_2x.jpg");
  }
  .page-top .sec__kv_slider .slick-list {
    width: 100%;
  }
  @keyframes fadezoom {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
      /* 拡大率 */
    }
  }
  .page-top .sec__kv_slider .add-zoom {
    animation: fadezoom 10s 0s forwards;
  }
  .page-top .sec__kv_slider .p-hero__scroll {
    position: absolute;
    right: 20px;
    bottom: 0;
  }
  .page-top .sec__kv_slider .p-hero__scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-top .sec__kv_slider .p-hero__scroll p {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 10px;
  }
  .page-top .sec__kv_slider .p-hero__scroll span {
    height: 50px;
    display: block;
    position: relative;
  }
  .page-top .sec__kv_slider .p-hero__scroll span::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);
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


#products-unit_slide 商品個別　スライド


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.products-unit_slide {
  width: 100%;
  /* 矢印 */
  /* サムネイル */
}
.products-unit_slide .slide_unit {
  width: min(35.8796vw, 620px);
}
.products-unit_slide .main_slide {
  width: 100%;
  padding: 0;
}
.products-unit_slide .main_slide li {
  list-style: none;
}
.products-unit_slide .main_slide .main_img {
  width: 100%;
  aspect-ratio: 400/486;
  overflow: hidden;
}
.products-unit_slide .main_slide .main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-unit_slide .slide_unit .prev-arrow,
.products-unit_slide .slide_unit .next-arrow {
  width: min(3.1829vw, 55px);
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  opacity: 0.75;
}
.products-unit_slide .slide_unit .prev-arrow {
  left: 0;
  z-index: 1;
}
.products-unit_slide .slide_unit .next-arrow {
  right: 0;
  z-index: 1;
}
.products-unit_slide .thumb-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1.1574vw, 20px);
  padding: 0;
}
.products-unit_slide .thumb-list li {
  width: 100%;
  list-style: none;
}
.products-unit_slide .thumb-list li a {
  width: 100%;
  aspect-ratio: 140/170;
  overflow: hidden;
  display: block;
  position: relative;
}
.products-unit_slide .thumb-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-unit_slide .thumb-list li.on a::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .products-unit_slide {
    width: 100%;
    /* 矢印 */
    /* サムネイル */
  }
  .products-unit_slide .slide_unit {
    width: 69.2308vw;
    margin: auto;
  }
  .products-unit_slide .main_slide {
    width: 100%;
    padding: 0;
  }
  .products-unit_slide .main_slide li {
    list-style: none;
  }
  .products-unit_slide .main_slide .main_img {
    width: 100%;
    aspect-ratio: 400/486;
    overflow: hidden;
  }
  .products-unit_slide .main_slide .main_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .products-unit_slide .slide_unit .prev-arrow,
  .products-unit_slide .slide_unit .next-arrow {
    width: 10.2564vw;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    opacity: 0.75;
  }
  .products-unit_slide .slide_unit .prev-arrow {
    left: 0;
    z-index: 1;
  }
  .products-unit_slide .slide_unit .next-arrow {
    right: 0;
    z-index: 1;
  }
  .products-unit_slide .thumb-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5641vw;
    padding: 0;
  }
  .products-unit_slide .thumb-list li {
    width: 100%;
    list-style: none;
  }
  .products-unit_slide .thumb-list li a {
    width: 100%;
    aspect-ratio: 140/170;
    overflow: hidden;
    display: block;
    position: relative;
  }
  .products-unit_slide .thumb-list li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .products-unit_slide .thumb-list li.on a::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* /vendors/_swiper.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec--top-slide トップスライド


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec--top-slide {
  width: 100%;
  position: relative;
  /* swiperのクラス名 */
  /* ドットの配置（下側、外側に配置） */
  /* ドットの基本スタイル */
  /* アクティブなドットのスタイル */
}
.sec--top-slide .swiper-container.top-slide {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
}
.sec--top-slide .swiper-wrapper {
  width: 100%;
  margin: 0 -0.694%; /* Swiper-slideのpadding分を相殺する */
}
.sec--top-slide .swiper-slide {
  padding: 0 0.694%;
}
.sec--top-slide .unit-img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 336/336;
  overflow: hidden;
}
.sec--top-slide .unit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec--top-slide .swiper-pagination.top-slide-pagination {
  width: min(31.25vw, 450px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px; /* スライダー外側に配置するため、下方向にずらす */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.sec--top-slide .swiper-pagination-bullet {
  flex-grow: 1;
  background-color: #d9d9d9;
  border-radius: 0;
  height: 2px;
  margin: 0 !important;
  opacity: 1; /* 初期状態は不透明 */
  transition: background-color 0.3s ease;
}
.sec--top-slide .swiper-pagination-bullet-active {
  background-color: #172c49;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec--top-slide {
    width: 100%;
    position: relative;
    /* swiperのクラス名 */
    /* ドットの配置（下側、外側に配置） */
    /* ドットの基本スタイル */
    /* アクティブなドットのスタイル */
  }
  .sec--top-slide .swiper-container.top-slide {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
  }
  .sec--top-slide .swiper-wrapper {
    width: 100%;
    margin: 0 -1.795%; /* Swiper-slideのpadding分を相殺する */
  }
  .sec--top-slide .swiper-slide {
    padding: 0 1.795%;
  }
  .sec--top-slide .unit-img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 336/336;
    overflow: hidden;
  }
  .sec--top-slide .unit-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sec--top-slide .swiper-pagination.top-slide-pagination {
    width: 87.1795vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 10px; /* スライダー外側に配置するため、下方向にずらす */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .sec--top-slide .swiper-pagination-bullet {
    flex-grow: 1;
    background-color: #d9d9d9;
    border-radius: 0;
    height: 2px;
    margin: 0 !important;
    opacity: 1; /* 初期状態は不透明 */
    transition: background-color 0.3s ease;
  }
  .sec--top-slide .swiper-pagination-bullet-active {
    background-color: #172c49;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec--products-list 商品一覧 SP時のみスライド


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
/* PC表示: 2×2グリッド */
.sec--products-list {
  width: 100%;
  position: relative;
  /* PC用グリッドレイアウト */
  /* スライドのスタイル */
  /* ページネーションのスタイル */
  /*   .products-list-pagination {
    position: static;
    margin-top: 20px;
  }

  .products-list-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgb(255 255 255 / 50%);
    opacity: 1;
    transition: all 0.3s ease;
  }

  .products-list-pagination .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
  } */
  /* ナビゲーションボタン */
  /* .products-nav-next,
  .products-nav-prev {
    color: white;
    background: rgb(255 255 255 / 20%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
  }

  .products-nav-next::after,
  .products-nav-prev::after {
    font-size: 16px;
  } */
  /* デバイス表示インジケーター */
}
.sec--products-list .swiper-container.products-swiper {
  width: min(100% - 40px, 1240px);
}
@media (width >= 769px) {
  .sec--products-list .swiper-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    transform: none !important;
  }
  .sec--products-list .swiper-slide {
    transform: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }
  .sec--products-list .products-list-pagination,
  .sec--products-list .products-nav-next,
  .sec--products-list .products-nav-prev {
    display: none !important;
  }
}
.sec--products-list .slide-content {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.sec--products-list .slide-content .slide-img {
  width: 100%;
  aspect-ratio: 605/350;
  overflow: hidden;
}
.sec--products-list .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec--products-list .device-indicator {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 1000;
}
@media (width >= 769px) {
  .sec--products-list .device-indicator::after {
    content: "PC (2×2グリッド)";
  }
}
@media (width <= 768px) {
  .sec--products-list .device-indicator::after {
    content: "SP (センターモードスライダー)";
  }
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  /* SP表示: センターモードスライダー */
  .sec--products-list {
    width: 100%;
    position: relative;
    /* SP表示: センターモードスライダー */
    /* スライドのスタイル */
    /* ページネーションのスタイル */
    /* ドットの基本スタイル */
    /* アクティブなドットのスタイル */
    /* ナビゲーションボタン */
    /* .products-nav-next,
    .products-nav-prev {
      color: white;
      background: rgb(255 255 255 / 20%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      backdrop-filter: blur(10px);
    }

    .products-nav-next::after,
    .products-nav-prev::after {
      font-size: 16px;
    } */
  }
  .sec--products-list .swiper-container.products-swiper {
    width: 93.5897vw;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) and (width <= 768px) {
  .sec--products-list .swiper-wrapper {
    display: flex;
  }
  .sec--products-list .swiper-slide {
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .sec--products-list .slide-content {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  .sec--products-list .slide-content .slide-img {
    width: 100%;
    aspect-ratio: 300/300;
    overflow: hidden;
  }
  .sec--products-list .slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sec--products-list .swiper-pagination-bullets.products-list-pagination {
    width: 87.1795vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 10px; /* スライダー外側に配置するため、下方向にずらす */
    left: 0;
    z-index: 10;
  }
  .sec--products-list .swiper-pagination-bullet {
    flex-grow: 1;
    background-color: #707070;
    border-radius: 0;
    height: 2px;
    margin: 0 !important;
    opacity: 1; /* 初期状態は不透明 */
    transition: background-color 0.3s ease;
  }
  .sec--products-list .swiper-pagination-bullet-active {
    background-color: #fff;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec__footer-slide


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__footer-slide {
  width: 100%;
  position: relative;
  /* swiperのクラス名 */
  /* ドットの配置（下側、外側に配置） */
  /* ドットの基本スタイル */
  /* アクティブなドットのスタイル */
}
.sec__footer-slide .sec_wrap {
  width: 100%;
  position: relative;
}
.sec__footer-slide .swiper-container.footer-slide {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}
.sec__footer-slide .swiper-wrapper {
  width: 100%;
  margin-left: sizeconvertpar(-20, 1728); /* Swiper-slideのpadding分を相殺する */
}
.sec__footer-slide .swiper-slide {
  padding: 0 sizeconvertpar(20, 1728);
}
.sec__footer-slide .unit_img {
  width: 100%;
  aspect-ratio: 550/350;
  overflow: hidden;
}
.sec__footer-slide .unit_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec__footer-slide .swiper-pagination.footer-slide_pagination {
  width: 50%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 15px; /* スライダー外側に配置するため、下方向にずらす */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.sec__footer-slide .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 9999px;
  width: 10px;
  height: 10px;
  margin: 0;
  opacity: 1; /* 初期状態は不透明 */
  transition: background-color 0.3s ease;
}
.sec__footer-slide .swiper-pagination-bullet-active {
  background-color: #000;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__footer-slide {
    width: 100%;
    position: relative;
    /* swiperのクラス名 */
    /* ドットの配置（下側、外側に配置） */
    /* ドットの基本スタイル */
    /* アクティブなドットのスタイル */
  }
  .sec__footer-slide .sec_wrap {
    width: 100%;
    position: relative;
  }
  .sec__footer-slide .swiper-container.footer-slide {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
  }
  .sec__footer-slide .swiper-wrapper {
    width: 100%;
    margin-left: 0; /* Swiper-slideのpadding分を相殺する */
  }
  .sec__footer-slide .swiper-slide {
    padding: 0;
  }
  .sec__footer-slide .unit_img {
    width: 100%;
    aspect-ratio: 390/235;
    overflow: hidden;
  }
  .sec__footer-slide .unit_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sec__footer-slide .swiper-pagination.footer-slide_pagination {
    width: 50%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 15px; /* スライダー外側に配置するため、下方向にずらす */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .sec__footer-slide .swiper-pagination-bullet {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 9999px;
    width: 10px;
    height: 10px;
    margin: 0;
    opacity: 1; /* 初期状態は不透明 */
    transition: background-color 0.3s ease;
  }
  .sec__footer-slide .swiper-pagination-bullet-active {
    background-color: #000;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_top.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top 全体設定


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

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

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


.page-top .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .kv {
  width: 100%;
  position: relative;
  padding: 0 0 min(5.787vw, 100px);
  /* スクロール誘導アニメーション */
}
.page-top .kv::before {
  content: "";
  background-color: #2c2623;
  width: 61.343%;
  height: auto;
  aspect-ratio: 1060/919;
  position: absolute;
  bottom: 0;
  right: 0;
}
.page-top .kv .kv-catch {
  width: min(25.3472vw, 438px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-top .kv .kv-img-wrap {
  width: 100%;
  height: calc(100dvh - 200px); /* header分下げる場合はcalcで引く */
  /* height: 100dvh; */
  /* height: auto; */
  /* aspect-ratio: 1728 / 919; */
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.page-top .kv .kv-img {
  background-image: url("../img/top/kv_img_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  /* height: 100dvh; */ /* スライド画像の高さ 上に合わせる */
  height: auto;
  aspect-ratio: 1440/955;
  position: relative;
}
.page-top .kv .p-hero__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.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: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 10px;
}
.page-top .kv .p-hero__scroll span {
  height: 90px;
  display: block;
  position: relative;
}
.page-top .kv .p-hero__scroll span::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;
  }
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .kv {
    width: 100%;
    position: relative;
    padding: 0 0 12.8205vw;
    /* スクロール誘導アニメーション */
  }
  .page-top .kv::before {
    content: "";
    background-color: #2c2623;
    width: 77.6923vw;
    height: auto;
    aspect-ratio: 303/563;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .page-top .kv .kv-catch {
    width: 85.641vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-top .kv .kv-img-wrap {
    width: 100%;
    /* height: calc(100dvh - 300px); */ /* header分下げる場合はcalcで引く */
    /* height: 100dvh; */
    height: auto;
    aspect-ratio: 766/1026;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .page-top .kv .kv-img {
    background-image: url("../img/top/kv_img_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    /* height: 100dvh; */ /* スライド画像の高さ 上に合わせる */
    height: auto;
    aspect-ratio: 766/1026;
    position: relative;
  }
  .page-top .kv .p-hero__scroll {
    position: absolute;
    left: auto;
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
  .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: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 10px;
  }
  .page-top .kv .p-hero__scroll span {
    height: 54px;
    display: block;
    position: relative;
  }
  .page-top .kv .p-hero__scroll span::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;
    }
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .works


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .works {
  width: 100%;
  position: relative;
}
.page-top .works .sec-wrap {
  width: 100%;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(5.787vw, 100px) 0 0;
}
.page-top .works .sec-wrap::before {
  content: "";
  background-color: #f6f5ea;
  width: min(94.213vw, 1628px);
  height: min(45.7176vw, 790px);
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}
.page-top .works .contents-wrap {
  width: min(88.4259vw, 1528px);
  margin-left: auto;
}
.page-top .works .sec-catch {
  font-size: clamp(12px, 1.1574vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: min(2.8935vw, 50px);
}
.page-top .works .works__unit-wrap {
  width: 100%;
  display: flex;
  gap: min(2.5463vw, 44px);
  position: relative;
  margin-top: min(5.2083vw, 90px);
}
.page-top .works .works__unit {
  width: min(20.1968vw, 349px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .works {
    width: 100%;
    position: relative;
  }
  .page-top .works .sec-wrap {
    width: 100%;
    position: relative;
    margin-top: 12.8205vw;
    padding: 12.8205vw 0 0;
  }
  .page-top .works .sec-wrap::before {
    content: "";
    background-color: #f6f5ea;
    width: 94.359vw;
    height: 202.5641vw;
    display: block;
    position: absolute;
    z-index: -1;
    right: auto;
    left: 0;
    top: 0;
  }
  .page-top .works .contents-wrap {
    width: 94.6154vw;
    margin-left: auto;
  }
  .page-top .works .sec-catch {
    width: 81.5385vw;
    font-size: 4.1026vw;
    line-height: 1.875;
    letter-spacing: 0.1em;
    margin-top: 7.6923vw;
  }
  .page-top .works .works__unit-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.1282vw;
    position: relative;
    margin-top: 7.6923vw;
  }
  .page-top .works .works__unit {
    width: 100%;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .about


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .about {
  width: 100%;
  position: relative;
}
.page-top .about .sec-wrap {
  width: min(100%, 1728px);
  margin: auto;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(5.787vw, 100px) 0 0;
}
.page-top .about .contents-wrap {
  width: 100%;
  position: relative;
  padding-bottom: min(5.787vw, 100px);
}
.page-top .about .about__unit {
  width: min(73.6111vw, 1272px);
  display: flex;
  flex-direction: row-reverse;
  gap: min(5.787vw, 100px);
  position: relative;
  padding-bottom: min(9.2593vw, 160px);
}
.page-top .about .about__unit::before {
  content: "";
  background-color: #f6f5ea;
  width: min(37.3264vw, 645px);
  height: min(33.3912vw, 577px);
  display: block;
  position: absolute;
  z-index: -1;
  left: min(5.787vw, 100px);
  bottom: 0;
}
.page-top .about .unit-contents {
  width: min(36.2847vw, 627px);
  margin-top: min(5.787vw, 100px);
}
.page-top .about .sec-tit .sec-tit__ja {
  margin-top: min(2.8935vw, 50px);
}
.page-top .about .sec-catch {
  font-size: clamp(12px, 1.1574vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: min(2.8935vw, 50px);
}
.page-top .about .page-link-btn {
  margin-top: min(2.8935vw, 50px);
}
.page-top .about .unit-img {
  width: min(31.5394vw, 545px);
}
.page-top .about .about__unit02 {
  width: min(34.5486vw, 597px);
  position: absolute;
  bottom: 0;
  right: 0;
  padding-top: min(9.1435vw, 158px);
}
.page-top .about .about__unit02::before {
  content: "";
  background-color: #f6f5ea;
  width: min(17.8819vw, 309px);
  height: min(16.7245vw, 289px);
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}
.page-top .about .about__unit02 .unit-img {
  width: min(28.7616vw, 497px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .about {
    width: 100%;
    position: relative;
  }
  .page-top .about .sec-wrap {
    width: min(100%, 1728px);
    margin: auto;
    position: relative;
    margin-top: 25.641vw;
    padding: 12.8205vw 0 0;
  }
  .page-top .about .contents-wrap {
    width: 100%;
    position: relative;
    padding-bottom: 12.8205vw;
  }
  .page-top .about .about__unit {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 12.8205vw;
    position: relative;
    padding-bottom: 0;
  }
  .page-top .about .about__unit::before {
    content: "";
    background-color: #f6f5ea;
    width: 81.5385vw;
    height: 77.9487vw;
    display: block;
    position: absolute;
    z-index: -1;
    left: 12.8205vw;
    bottom: auto;
    top: 26.9231vw;
  }
  .page-top .about .unit-contents {
    width: 87.9487vw;
    margin: 12.8205vw auto 0;
  }
  .page-top .about .sec-tit .sec-tit__ja {
    margin-top: 2.5641vw;
  }
  .page-top .about .sec-catch {
    font-size: 4.1026vw;
    line-height: 1.875;
    letter-spacing: 0.1em;
    margin-top: 7.6923vw;
  }
  .page-top .about .page-link-btn {
    margin: 12.8205vw auto 0;
  }
  .page-top .about .unit-img {
    width: 74.8718vw;
  }
  .page-top .about .about__unit02 {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 12.8205vw;
    padding-top: 24.359vw;
  }
  .page-top .about .about__unit02::before {
    content: "";
    background-color: #f6f5ea;
    width: 47.9487vw;
    height: 44.8718vw;
    display: block;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
  }
  .page-top .about .about__unit02 .unit-img {
    width: 87.9487vw;
    margin: auto;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .service


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .service {
  width: 100%;
  position: relative;
}
.page-top .service .sec-wrap {
  width: min(100%, 1728px);
  margin: auto;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(5.787vw, 100px) 0;
}
.page-top .service .sec-wrap::before {
  content: "";
  background-color: #f6f5ea;
  width: 92.593%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}
.page-top .service .contents-wrap {
  width: 100%;
  position: relative;
}
.page-top .service .service__unit {
  width: min(88.4259vw, 1528px);
  display: flex;
  gap: min(3.7037vw, 64px);
  position: relative;
  margin-left: auto;
}
.page-top .service .unit-contents {
  width: min(33.6806vw, 582px);
  margin-top: min(4.8611vw, 84px);
}
.page-top .service .sec-tit .sec-tit__ja {
  margin-top: min(2.8935vw, 50px);
}
.page-top .service .sec-catch {
  font-size: clamp(12px, 1.1574vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: min(2.8935vw, 50px);
}
.page-top .service .page-link-btn {
  margin-top: min(2.8935vw, 50px);
}
.page-top .service .unit-img {
  width: min(51.0417vw, 882px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .service {
    width: 100%;
    position: relative;
  }
  .page-top .service .sec-wrap {
    width: 100%;
    margin: auto;
    position: relative;
    margin-top: 12.8205vw;
    padding: 12.8205vw 0 0;
  }
  .page-top .service .sec-wrap::before {
    content: "";
    background-color: #f6f5ea;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
  }
  .page-top .service .contents-wrap {
    width: 100%;
    position: relative;
  }
  .page-top .service .service__unit {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16.4103vw;
    position: relative;
    margin-left: auto;
  }
  .page-top .service .unit-contents {
    width: 87.9487vw;
    margin: 0 auto;
  }
  .page-top .service .sec-tit .sec-tit__ja {
    margin-top: 2.5641vw;
  }
  .page-top .service .sec-catch {
    font-size: 4.1026vw;
    line-height: 1.875;
    letter-spacing: 0.1em;
    margin-top: 7.6923vw;
  }
  .page-top .service .page-link-btn {
    margin: 12.8205vw auto 0;
  }
  .page-top .service .unit-img {
    width: 100%;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .news


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .news {
  width: 100%;
  position: relative;
}
.page-top .news .sec-wrap {
  width: 100%;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(5.787vw, 100px) 0;
}
.page-top .news .news__unit-wrap {
  width: min(76.9097vw, 1329px);
  display: flex;
  gap: min(5.787vw, 100px);
  position: relative;
  margin: auto;
}
.page-top .news .unit-contents {
  width: min(13.3681vw, 231px);
}
.page-top .news .page-link-btn {
  margin-top: min(2.8935vw, 50px);
}
.page-top .news .news-list {
  width: min(57.7546vw, 998px);
}
.page-top .news .news-list ul {
  width: 100%;
  margin: 0;
}
.page-top .news .news-list ul li {
  border-top: 1px solid #b5b1ae;
  width: 100%;
  display: flex;
  gap: min(0.5787vw, 10px);
  align-items: flex-start;
  padding: min(1.5625vw, 27px) 0;
}
.page-top .news .news-list ul li:first-child {
  border-top: none;
}
.page-top .news .unit-head {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.page-top .news .unit-date {
  font-size: clamp(10px, 0.9259vw, 16px);
  margin-top: 0.5em;
}
.page-top .news .unit-tit {
  flex-grow: 1;
  display: -webkit-box;
  font-size: clamp(14px, 1.1574vw, 20px);
  line-height: 1.5;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .news {
    width: 100%;
    position: relative;
  }
  .page-top .news .sec-wrap {
    width: 100%;
    position: relative;
    margin-top: 12.8205vw;
    padding: 12.8205vw 0;
  }
  .page-top .news .news__unit-wrap {
    width: 87.9487vw;
    display: flex;
    flex-direction: column;
    gap: 2.5641vw;
    position: relative;
    margin: auto;
  }
  .page-top .news .unit-contents {
    width: 100%;
  }
  .page-top .news .page-link-btn {
    margin: 12.8205vw auto 0;
  }
  .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-top: 1px solid #b5b1ae;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5641vw;
    align-items: flex-start;
    padding: 6.9231vw 0;
  }
  .page-top .news .news-list ul li:first-child {
    border-top: none;
  }
  .page-top .news .news-list ul li:last-child {
    border-bottom: 1px solid #b5b1ae;
  }
  .page-top .news .unit-head {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .page-top .news .unit-date {
    font-size: 3.0769vw;
    margin-top: 0;
  }
  .page-top .news .unit-tit {
    flex-grow: 1;
    display: -webkit-box;
    font-size: 4.1026vw;
    line-height: 1.625;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_page-contents.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


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

＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__breadcrumb_trail {
  width: min(88.4259vw, 1528px);
  margin-top: 1rem;
  margin-left: auto;
  padding: 0 0 1rem;
}
.sec__breadcrumb_trail ul {
  display: flex;
  gap: 1em;
}
.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;
}
.sec__breadcrumb_trail ul li + li::before {
  content: "＞";
  margin-right: 1em;
}
.sec__breadcrumb_trail ul li a {
  display: block;
  color: #131213;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  white-space: nowrap;
}
.sec__breadcrumb_trail ul li a:hover {
  text-decoration: none;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__breadcrumb_trail {
    width: 87.1795vw;
    margin: auto;
    padding: 4.359vw 0;
  }
  .sec__breadcrumb_trail ul {
    display: flex;
    gap: 1em;
  }
  .sec__breadcrumb_trail ul li {
    display: flex;
    align-items: flex-start;
    font-size: 3.0769vw;
  }
  .sec__breadcrumb_trail ul li + li::before {
    content: "＞";
    margin-right: 1em;
  }
  .sec__breadcrumb_trail ul li a {
    display: block;
    color: #131213;
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
  .sec__breadcrumb_trail ul li a:hover {
    text-decoration: none;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contents .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contents .kv {
  width: 100%;
  position: relative;
  padding: 0 0 min(2.8935vw, 50px);
}
.page-contents .kv::before {
  content: "";
  background-color: #2c2623;
  width: 69.372%;
  height: auto;
  aspect-ratio: 1060/400;
  position: absolute;
  bottom: 0;
  right: 0;
}
.page-contents .kv .kv-inner {
  display: flex;
}
.page-contents .kv .kv-title {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-top: min(2.8935vw, 50px);
}
.page-contents .kv .page-title-ja {
  font-size: clamp(20px, 1.7361vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: min(1.1574vw, 20px);
}
.page-contents .kv .page-title-en {
  display: flex;
  gap: min(0.8681vw, 15px);
  align-items: center;
  font-size: clamp(12px, 1.2731vw, 22px);
  font-weight: 700;
  letter-spacing: 0;
}
.page-contents .kv .page-title-en::before {
  content: "";
  background-color: #2c2623;
  width: 2px;
  height: 30px;
  display: block;
}
.page-contents .kv .kv-img-wrap {
  width: 88.426%;
  /* height: calc(100dvh - 200px); */ /* header分下げる場合はcalcで引く */
  /* height: 100dvh; */
  /* height: auto; */
  aspect-ratio: 1528/500;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  padding: 0;
}
.page-contents .kv .kv-img {
  background-image: url("../img/service/kv_img_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  /* height: 100dvh; */ /* スライド画像の高さ 上に合わせる */
  height: auto;
  aspect-ratio: 1528/500;
  position: relative;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contents .kv {
    width: 100%;
    position: relative;
    padding: 0 0 6.4103vw;
  }
  .page-contents .kv::before {
    content: "";
    background-color: #2c2623;
    width: 58.974%;
    height: auto;
    aspect-ratio: 230/300;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .page-contents .kv .kv-inner {
    display: flex;
  }
  .page-contents .kv .kv-title {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding-top: 12.8205vw;
  }
  .page-contents .kv .page-title-ja {
    font-size: 6.1538vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-left: 2.5641vw;
  }
  .page-contents .kv .page-title-en {
    display: flex;
    gap: 2.5641vw;
    align-items: center;
    font-size: 4.1026vw;
    font-weight: 700;
    letter-spacing: 0;
  }
  .page-contents .kv .page-title-en::before {
    content: "";
    background-color: #2c2623;
    width: 2px;
    height: 25px;
    display: block;
  }
  .page-contents .kv .kv-img-wrap {
    width: 76.154%;
    /* height: calc(100dvh - 200px); */ /* header分下げる場合はcalcで引く */
    /* height: 100dvh; */
    /* height: auto; */
    aspect-ratio: 297/360;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    padding: 0;
  }
  .page-contents .kv .kv-img {
    background-image: url("../img/service/kv_img_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    /* height: 100dvh; */ /* スライド画像の高さ 上に合わせる */
    height: auto;
    aspect-ratio: 297/360;
    position: relative;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contents .sec--lead


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contents .sec--lead {
  width: 100%;
  position: relative;
}
.page-contents .sec--lead .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(4.6296vw, 80px) 0 0;
}
.page-contents .sec--lead .page-tit {
  width: min(100% - 40px, 1240px);
  color: #131213;
  font-size: clamp(24px, 3.2258vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-align: center;
  text-indent: 0.1em;
  margin: auto;
}
.page-contents .sec--lead .page-catch {
  width: min(100% - 40px, 1240px);
  font-size: clamp(14px, 1.6129vw, 20px);
  font-weight: 500;
  line-height: 1.714;
  letter-spacing: 0.1em;
  text-align: center;
  text-indent: 0.1em;
  margin: min(2.8935vw, 50px) auto 0;
}
.page-contents .sec--lead .btn-wrap {
  width: min(100% - 40px, 800px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.6129vw, 20px);
  justify-items: center;
  margin: min(4.0509vw, 70px) auto 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contents .sec--lead {
    width: 100%;
    position: relative;
  }
  .page-contents .sec--lead .sec-wrap {
    width: 100%;
    position: relative;
    padding: 10.2564vw 0 0;
  }
  .page-contents .sec--lead .page-tit {
    width: 87.1795vw;
    color: #131213;
    font-size: 7.1795vw;
    font-weight: 700;
    line-height: 1.357;
    letter-spacing: 0.1em;
    text-align: center;
    text-indent: 0.1em;
    margin: auto;
  }
  .page-contents .sec--lead .page-catch {
    width: 87.1795vw;
    font-size: 4.6154vw;
    font-weight: 500;
    line-height: 1.778;
    letter-spacing: 0.1em;
    text-align: justify;
    text-indent: 0.1em;
    margin: 7.6923vw auto 0;
  }
  .page-contents .sec--lead .btn-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5641vw;
    margin: 7.6923vw auto 0;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contents .sec__parts_contact


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contents .sec__parts_contact {
  width: 100%;
  position: relative;
}
.page-contents .sec__parts_contact .sec-wrap {
  background-color: #d9d9d9;
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contents .sec__parts_contact {
    width: 100%;
    position: relative;
  }
  .page-contents .sec__parts_contact .sec-wrap {
    background-color: #d9d9d9;
    width: 100%;
    position: relative;
    padding: 12.8205vw 0 0;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contents .sec__footer-slide


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contents .sec__footer-slide {
  width: 100%;
  position: relative;
}
.page-contents .sec__footer-slide .sec-wrap {
  background-color: #d9d9d9;
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contents .sec__footer-slide {
    width: 100%;
    position: relative;
  }
  .page-contents .sec__footer-slide .sec-wrap {
    background-color: #d9d9d9;
    width: 100%;
    position: relative;
    padding: 23.0769vw 0;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* 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 .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 .flow


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-service .flow {
  width: 100%;
  position: relative;
}
.page-service .flow .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(2.8935vw, 50px) 0 0;
  padding-left: min(2.8935vw, 50px);
}
.page-service .flow .sec-tit {
  width: min(79.7454vw, 1378px);
  margin: auto;
}
.page-service .flow .l-wrap {
  width: min(79.7454vw, 1378px);
  margin: min(5.787vw, 100px) auto 0;
}
.page-service .flow .flow__unit-wrap {
  width: 100%;
}
.page-service .flow .flow__unit {
  width: 100%;
}
.page-service .flow .unit__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-service .flow .unit__head-img {
  flex-shrink: 0;
  width: 63px;
}
.page-service .flow .unit__head-txt {
  width: min(53.588vw, 926px);
  font-size: clamp(20px, 1.6204vw, 28px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.page-service .flow .unit__contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.page-service .flow .unit__contents-line {
  flex-shrink: 0;
  width: 63px;
  display: block;
  position: relative;
}
.page-service .flow .unit__contents-line::before {
  content: "";
  background-color: rgba(44, 38, 35, 0.3);
  width: 3px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.page-service .flow .js-section:last-child .unit__contents-line::before {
  content: none;
}
.page-service .flow .unit__contents-inner {
  width: min(53.588vw, 926px);
  padding-bottom: min(5.787vw, 100px);
}
.page-service .flow .unit__contents-img {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 30px;
}
.page-service .flow .unit__contents-img::before {
  content: "";
  background-color: #f6f5ea;
  width: min(50.6944vw, 876px);
  aspect-ratio: 876/408;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
.page-service .flow .unit__contents-img figure {
  width: min(24.7685vw, 428px);
  aspect-ratio: 428/408;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page-service .flow .unit__contents-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-service .flow .unit_contents-txt {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.1574vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-align: justify;
  margin-top: min(1.1574vw, 20px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-service .flow {
    width: 100%;
    position: relative;
  }
  .page-service .flow .sec-wrap {
    width: 100%;
    position: relative;
    padding: 10.2564vw 0 5.1282vw;
    padding-left: 0;
  }
  .page-service .flow .sec-tit {
    width: 87.1795vw;
    margin: auto;
  }
  .page-service .flow .l-wrap {
    width: 87.1795vw;
    margin: 7.6923vw auto 0;
  }
  .page-service .flow .flow__unit-wrap {
    width: 100%;
  }
  .page-service .flow .flow__unit {
    width: 100%;
  }
  .page-service .flow .unit__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-service .flow .unit__head-img {
    flex-shrink: 0;
    width: 12.3077vw;
  }
  .page-service .flow .unit__head-txt {
    width: 100%;
    font-size: 5.1282vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-left: 3.8462vw;
  }
  .page-service .flow .unit__contents {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 5.1282vw;
  }
  .page-service .flow .unit__contents-line {
    flex-shrink: 0;
    width: 63px;
    display: block;
    position: relative;
  }
  .page-service .flow .unit__contents-line::before {
    content: "";
    background-color: rgba(44, 38, 35, 0.3);
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-service .flow .js-section:last-child .unit__contents-line::before {
    content: none;
  }
  .page-service .flow .unit__contents-inner {
    width: 100%;
    padding-bottom: 12.8205vw;
  }
  .page-service .flow .unit__contents-img {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    padding-bottom: 7.6923vw;
  }
  .page-service .flow .unit__contents-img::before {
    content: "";
    background-color: #f6f5ea;
    width: 87.1795vw;
    aspect-ratio: 343/340;
    display: block;
    position: absolute;
    bottom: 0;
    right: -6.4103vw;
  }
  .page-service .flow .unit__contents-img figure {
    width: 100%;
    aspect-ratio: 340/165;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .page-service .flow .unit__contents-img figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-service .flow .unit_contents-txt {
    position: relative;
    z-index: 1;
    font-size: 4.1026vw;
    letter-spacing: 0.1em;
    line-height: 1.938;
    text-align: justify;
    margin-top: 2.5641vw;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_estimate.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-estimate 全体設定


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

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

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


.page-estimate .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示 mixin記述法
--------------------------------------------------------- */
.page-estimate .kv {
  width: 100%;
  position: relative;
}
.page-estimate .kv .kv-img {
  background-image: url("../img/estimate/kv_img_pc.jpg");
}
@media screen and (max-width: 768px) {
  .page-estimate .kv .kv-img {
    background-image: url("../img/estimate/kv_img_sp.jpg");
  }
}

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


.page-estimate .estimate


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-estimate .estimate {
  width: 100%;
  position: relative;
  /* ヘッダー */
  /* 金額列 */
  /* 注意書き */
}
.page-estimate .estimate .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0 0;
}
.page-estimate .estimate .sec-lead {
  width: min(57.8704vw, 1000px);
  font-size: clamp(14px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.792;
  text-align: center;
  margin: auto;
}
.page-estimate .estimate .sec__outer {
  width: 100%;
  margin: min(8.6806vw, 150px) auto 0;
  padding-bottom: min(5.787vw, 100px);
}
.page-estimate .estimate .sec__outer + .sec__outer {
  margin-top: 0;
  padding-top: min(5.787vw, 100px);
}
.page-estimate .estimate .sec__outer:nth-child(even) {
  background-color: #f6f5ea;
}
.page-estimate .estimate .estimate__unit-wrap {
  width: min(57.8704vw, 1000px);
  position: relative;
  margin: auto;
}
.page-estimate .estimate .unit__head {
  width: 100%;
  background-color: #2c2623;
  color: #fff;
  font-size: clamp(14px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: min(1.4468vw, 25px) 10px;
}
.page-estimate .estimate .unit__contents {
  width: 100%;
}
.page-estimate .estimate .priceTable-wrap {
  /* 小さい画面で横スクロール可（はみ出し防止） */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page-estimate .estimate .priceTable {
  border: 1px solid #d9d9d9;
  border-top: 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 33.333%;
  font-size: clamp(12px, 1.1574vw, 20px);
  letter-spacing: 0.05em;
}
.page-estimate .estimate .priceTable__th,
.page-estimate .estimate .priceTable__cell {
  background-color: #b5b1ae;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  text-wrap: balance;
  padding: min(1.1574vw, 20px) 10px;
  vertical-align: middle;
}
.page-estimate .estimate .priceTable__row:last-child .priceTable__cell {
  border-bottom: 0;
}
.page-estimate .estimate .priceTable__row--head .priceTable__th {
  color: #fff;
  white-space: nowrap;
}
.page-estimate .estimate .priceTable__th:last-child,
.page-estimate .estimate .priceTable__cell:last-child {
  border-right: 0;
}
.page-estimate .estimate .priceTable__th--num,
.page-estimate .estimate .priceTable__cell--num {
  white-space: nowrap;
  font-variant-numeric: tabular-nums; /* 桁揃え綺麗に */
  text-align: center;
}
.page-estimate .estimate .priceTable__body .priceTable__row .priceTable__cell {
  background-color: #f6f5ea;
  font-weight: 400;
}
.page-estimate .estimate .sec__outer:nth-child(even) .priceTable__body .priceTable__row .priceTable__cell {
  background-color: #fff;
}
.page-estimate .estimate .unit__note-wrap {
  font-size: clamp(12px, 1.0417vw, 18px);
  letter-spacing: 0.1em;
  line-height: 1.667;
  margin-top: min(1.7361vw, 30px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-estimate .estimate {
    width: 100%;
    position: relative;
    /* ヘッダー */
    /* 金額列 */
    /* 注意書き */
  }
  .page-estimate .estimate .sec-wrap {
    width: 100%;
    position: relative;
    padding: 7.6923vw 0 0;
  }
  .page-estimate .estimate .sec-lead {
    width: 87.1795vw;
    font-size: 4.6154vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: center;
    margin: auto;
  }
  .page-estimate .estimate .sec__outer {
    width: 100%;
    margin: 12.8205vw auto 0;
    padding-bottom: 12.8205vw;
  }
  .page-estimate .estimate .sec__outer + .sec__outer {
    margin-top: 0;
    padding-top: 12.8205vw;
  }
  .page-estimate .estimate .sec__outer:nth-child(even) {
    background-color: #f6f5ea;
  }
  .page-estimate .estimate .estimate__unit-wrap {
    width: 87.1795vw;
    position: relative;
    margin: auto;
  }
  .page-estimate .estimate .unit__head {
    width: 100%;
    background-color: #2c2623;
    color: #fff;
    font-size: 4.1026vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 5.3846vw 10px;
  }
  .page-estimate .estimate .unit__contents {
    width: 100%;
  }
  .page-estimate .estimate .priceTable-wrap {
    /* 小さい画面で横スクロール可（はみ出し防止） */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .page-estimate .estimate .priceTable {
    border: 1px solid #d9d9d9;
    border-top: 0;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 33.333%;
    font-size: 4.1026vw;
    letter-spacing: 0.05em;
  }
  .page-estimate .estimate .priceTable__th,
  .page-estimate .estimate .priceTable__cell {
    background-color: #b5b1ae;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    text-wrap: balance;
    padding: 20px 10px;
    vertical-align: middle;
  }
  .page-estimate .estimate .priceTable__row:last-child .priceTable__cell {
    border-bottom: 0;
  }
  .page-estimate .estimate .priceTable__row--head .priceTable__th {
    color: #fff;
    white-space: nowrap;
  }
  .page-estimate .estimate .priceTable__th:last-child,
  .page-estimate .estimate .priceTable__cell:last-child {
    border-right: 0;
  }
  .page-estimate .estimate .priceTable__th--num,
  .page-estimate .estimate .priceTable__cell--num {
    white-space: nowrap;
    font-variant-numeric: tabular-nums; /* 桁揃え綺麗に */
    text-align: center;
  }
  .page-estimate .estimate .priceTable__body .priceTable__row .priceTable__cell {
    background-color: #f6f5ea;
    font-weight: 400;
  }
  .page-estimate .estimate .sec__outer:nth-child(even) .priceTable__body .priceTable__row .priceTable__cell {
    background-color: #fff;
  }
  .page-estimate .estimate .unit__note-wrap {
    font-size: 3.5897vw;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 5.1282vw;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_company.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-company .kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示 mixin記述法
--------------------------------------------------------- */
.page-company .kv {
  width: 100%;
  position: relative;
}
.page-company .kv .kv-img {
  background-image: url("../img/company/kv_img_pc.jpg");
}
@media screen and (max-width: 768px) {
  .page-company .kv .kv-img {
    background-image: url("../img/company/kv_img_sp.jpg");
  }
}

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


.page-company .company-info


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-company .company-info .sec-wrap {
  padding: min(5.787vw, 100px) 0 min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-company .company-info .sec-wrap {
    padding: 10.2564vw 0 25.641vw;
  }
}
.page-company .company-info .sec-tit {
  text-align: center;
}
.page-company .company-info .sec-tit__en {
  margin: auto;
}
.page-company .company-info .info-wrap {
  width: min(100% - 40px, 1000px);
  margin: min(2.8935vw, 50px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-company .company-info .info-wrap {
    width: 87.1795vw;
    margin-top: 7.6923vw;
  }
}
.page-company .company-info .info-unit {
  width: 100%;
  display: flex;
  font-size: clamp(12px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-company .company-info .info-unit {
    font-size: 4.1026vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2;
  }
}
.page-company .company-info .info-head {
  flex-shrink: 0;
  width: min(9.2593vw, 160px);
  border-bottom: 1px solid #2c2623;
  padding: min(2.3148vw, 40px) 0;
}
@media screen and (max-width: 768px) {
  .page-company .company-info .info-head {
    width: 28.2051vw;
    padding: 6.4103vw 0;
  }
}
.page-company .company-info .info-contents {
  flex-grow: 1;
  border-bottom: 1px solid #B5B1AE;
  font-weight: 400;
  padding: min(2.3148vw, 40px) min(2.8935vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-company .company-info .info-contents {
    padding: 6.4103vw min(2.5641vw, 10px);
  }
}

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


.page-company .contact-lead


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-company .contact-lead .sec-wrap {
  background-color: #f6f5ea;
  padding: min(8.6806vw, 150px) 0 0;
}
@media screen and (max-width: 768px) {
  .page-company .contact-lead .sec-wrap {
    padding-top: 25.641vw;
  }
}
.page-company .contact-lead .sec-tit {
  text-align: center;
}
.page-company .contact-lead .sec-tit__en {
  margin: auto;
}
.page-company .contact-lead .page-catch {
  font-size: clamp(14px, 1.1574vw, 20px);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  text-indent: 0.1em;
  margin-top: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-company .contact-lead .page-catch {
    width: 87.1795vw;
    margin: 7.6923vw auto 0;
  }
}

/* 変更履歴 */
/* 2025/07/16 */
/* 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 .sec--kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示 mixin記述法
--------------------------------------------------------- */
.page-archive .kv {
  width: 100%;
  position: relative;
}
.page-archive .kv .kv-img {
  background-image: url("../img/archive/kv_img_pc.jpg");
}
@media screen and (max-width: 768px) {
  .page-archive .kv .kv-img {
    background-image: url("../img/archive/kv_img_sp.jpg");
  }
}

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


.page-archive .sec__post_list


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示 mixin記述法
--------------------------------------------------------- */
.page-archive .sec--post-list {
  width: 100%;
  position: relative;
}
.page-archive .sec--post-list .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(3.4722vw, 60px) 0 min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .sec-wrap {
    font-size: 3.5897vw;
    padding: 2.5641vw 0 15.3846vw;
  }
}
.page-archive .sec--post-list .post_list_wrap {
  width: min(100% - 40px, 1000px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .post_list_wrap {
    width: 87.1795vw;
  }
}
.page-archive .sec--post-list .post_list_wrap ul {
  width: 100%;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .post_list_wrap ul {
    font-size: 4.1026vw;
    line-height: 2;
  }
}
.page-archive .sec--post-list .post_list_wrap ul li {
  border-bottom: 1px solid #B5B1AE;
  width: 100%;
  display: flex;
  gap: min(0.5787vw, 10px);
  align-items: baseline;
  padding: min(2.3148vw, 40px) min(1.1574vw, 20px);
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .post_list_wrap ul li {
    flex-direction: column;
    gap: 2.5641vw;
    padding: 6.4103vw 2.5641vw;
  }
}
.page-archive .sec--post-list .unit_head {
  flex-shrink: 0;
  width: min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .unit_head {
    width: 100%;
  }
}
.page-archive .sec--post-list .unit_date {
  font-size: clamp(10px, 0.9259vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .unit_date {
    font-size: 3.0769vw;
  }
}
.page-archive .sec--post-list .unit_tit {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-archive .sec--post-list .unit_tit a {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .unit_tit a {
    gap: 1rem;
  }
}
.page-archive .sec--post-list .unit_tit a::after {
  flex-shrink: 0;
  content: "";
  background-image: url("../img/cmn/list-arrow-right.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1/1;
  width: min(2.4306vw, 42px);
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .unit_tit a::after {
    width: 7.6923vw;
  }
}
.page-archive .sec--post-list .unit_tit a:hover {
  opacity: 1;
  text-decoration: underline;
}
.page-archive .sec--post-list .post_page_pagination {
  margin-top: min(5.787vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-archive .sec--post-list .post_page_pagination {
    margin-top: 12.8205vw;
  }
}

/* 変更履歴 */
/* 2025/07/16 */
/* pages/_single.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-single 全体設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.page-single .sec__breadcrumb_trail {
  margin-top: 0;
  padding-top: 1rem;
}

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


.page-single .sec__post_content


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示  mixin記述法
--------------------------------------------------------- */
.page-single .sec__post_content {
  width: 100%;
  position: relative;
}
.page-single .sec__post_content .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(9.2593vw, 160px) 0 min(8.6806vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-single .sec__post_content .sec-wrap {
    padding: 12.8205vw 0 e-convert-vw(100, 390);
  }
}
.page-single .sec__post_content .post_content_wrap {
  width: min(100% - 40px, 1000px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-single .sec__post_content .post_content_wrap {
    width: 87.1795vw;
  }
}
.page-single .sec__post_content .post_unit {
  width: 100%;
}
.page-single .sec__post_content .unit_head {
  flex-shrink: 0;
  border-bottom: 1px solid #B5B1AE;
  width: 100%;
  padding-bottom: min(1.7361vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-single .sec__post_content .unit_head {
    padding-bottom: 5.1282vw;
  }
}
.page-single .sec__post_content .unit_date {
  color: rgba(30, 30, 30, 0.6);
  font-size: clamp(12px, 1.1574vw, 20px);
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page-single .sec__post_content .unit_date {
    font-size: 3.0769vw;
  }
}
.page-single .sec__post_content .unit_tit {
  font-size: clamp(20px, 1.3889vw, 24px);
  font-weight: 500;
  line-height: 1.417;
  letter-spacing: 0.1em;
  margin-top: min(1.1574vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-single .sec__post_content .unit_tit {
    font-size: 4.6154vw;
    margin-top: 2.5641vw;
  }
}
.page-single .sec__post_content .unit_detail {
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: min(1.7361vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-single .sec__post_content .unit_detail {
    font-size: 4.1026vw;
    line-height: 2;
    margin-top: 7.6923vw;
  }
}
.page-single .sec__post_content .btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: min(8.6806vw, 150px) auto 0;
}
@media screen and (max-width: 768px) {
  .page-single .sec__post_content .btn-wrap {
    margin-top: 25.641vw;
  }
}

/* 変更履歴 */
/* 2025/07/16 */
/* pages/_privacy-policy.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_privacy-policy 全体


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.page_privacy-policy {
  padding: min(5.787vw, 100px) 0 min(11.5741vw, 200px);
}
@media screen and (max-width: 768px) {
  .page_privacy-policy {
    padding: 5.1282vw 5.1282vw 35.8974vw;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊
＊
＊
＊
＊
＊　プライバシーポリシー ページ　　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: sizeconvertvw(960, 1000);
  position: relative;
  margin: auto;
  padding: sizeconvertvw(120, 1920) 0;
}
@media screen and (max-width: 768px) {
  .page_privacy-policy .sec__privacy-policy .sec_wrap {
    max-width: 100%;
    width: 100%;
    padding-top: 15.3846vw;
  }
}
.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: #131213;
  font-size: sizeclmpvw(20, 24, 1000);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page_privacy-policy .sec__privacy-policy .sec_tit .en {
    font-size: 5.641vw;
  }
}
.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;
}
@media screen and (max-width: 768px) {
  .page_privacy-policy .sec__privacy-policy .sec_tit .ja {
    font-size: 4.6154vw;
  }
}
.page_privacy-policy .sec__privacy-policy .sec_lead {
  font-size: sizeclmpvw(14, 16, 1000);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-wrap: wrap;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .page_privacy-policy .sec__privacy-policy .sec_lead {
    font-size: 3.8462vw;
    margin-top: 10.2564vw;
  }
}
.page_privacy-policy .sec__privacy-policy .signature {
  display: block;
  text-align: right;
  -moz-text-align-last: auto;
       text-align-last: auto;
  margin-top: 20px;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap {
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .page_privacy-policy .sec__privacy-policy .unit_wrap {
    margin-top: 10.2564vw;
  }
}
.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;
}
@media screen and (max-width: 768px) {
  .page_privacy-policy .sec__privacy-policy .unit_wrap dl + dl {
    margin-top: 2em;
  }
}
.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: sizeconvertvw(360, 390);
    position: relative;
    margin: auto;
    padding: sizeconvertvw(70, 390) 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: sizeconvertvw(100, 390);
    height: 10px;
    display: block;
    margin: sizeconvertvw(20, 390) auto 0;
  }
  .page_privacy-policy .sec__privacy-policy .sec_tit .en {
    display: block;
    color: #131213;
    font-size: sizeconvertvw(18, 390);
    letter-spacing: 0.05em;
  }
  .page_privacy-policy .sec__privacy-policy .sec_tit .ja {
    display: block;
    font-size: sizeconvertvw(24, 390);
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-top: sizeconvertvw(10, 390);
  }
  .page_privacy-policy .sec__privacy-policy .sec_lead {
    font-size: sizeconvertvw(15, 390);
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.1em;
    text-align: justify;
    margin-top: sizeconvertvw(50, 390);
  }
  .page_privacy-policy .sec__privacy-policy .signature {
    display: block;
    text-align: right;
    -moz-text-align-last: auto;
         text-align-last: auto;
    margin-top: sizeconvertvw(20, 390);
  }
  .page_privacy-policy .sec__privacy-policy .unit_wrap {
    width: 100%;
    margin: sizeconvertvw(78, 390) 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: sizeconvertvw(66, 390);
  }
  .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/07/16 */
/* 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 */