@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";
}

/* 全体の基本フォント設定 */
body {
  color: #1c1c1e;
  font-family: yakuhanjp, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
}

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

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

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

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

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

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

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

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

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

フォントサイズ指定 詳細変換

*****************************************************/
/* 使用例 */
.fontsize_example {
  font-size: clamp(1rem, 0.7rem + 0.78vw, 2.2rem) /* font-size-clamp (10 - 22px, 375 - 1920px) */;
  /* 最小フォントサイズ, 最大フォントサイズ, 最小画面幅, 最大画面幅 */
}

/* /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 {
  width: 100%;
}
.sec_tit .tit_en {
  width: sizeminvw(365, 1728);
  margin: auto;
}
.sec_tit .tit_ja {
  display: block;
  color: #172c49;
  font-size: sizeclmpvw(22, 26, 1728);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: sizeminvw(20, 1728);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_tit {
    width: 100%;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 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: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
} /* end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


サイト 枠 設定


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.base {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.main-contents {
  width: 83.333%;
  position: relative;
}

.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;
  }
} /* スマホ 表示 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/header_btn_toggle_open.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 32px;
  height: 32px;
  display: block;
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 25px;
  opacity: 1;
  cursor: pointer;
}
.js_sp_view_navi .js_nav_toggle.js_open_navi {
  background-image: url("../img/cmn/header_btn_toggle_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: 67px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  /* =========================================================

   g_nav sp

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

  info_nav sp

  ========================================================= */
}
.js_header_origin.js_sp_view_navi.js_fixed_sp_header {
  height: 67px;
}
.js_header_origin.js_sp_view_navi .header_inner {
  /* 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: 0 10px;
}
.js_header_origin.js_sp_view_navi.js_fixed_sp_header .header_inner {
  background-color: rgba(0, 0, 0, 0.25);
}
.js_header_origin.js_sp_view_navi.js_open_navi .header_inner {
  background-color: #172c49;
}
.js_header_origin.js_sp_view_navi .header_logo {
  width: 122px;
  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: #172c49;
  width: 100%;
  height: 80vh;
  position: absolute;
  z-index: 9999;
  top: 67px;
  left: 100%;
  padding: 20px 20px 40px;
  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: 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: 4.6154vw;
  font-weight: 400;
  line-height: 1.556;
}
.js_header_origin.js_sp_view_navi .nav-info {
  width: 100%;
  margin-top: 12.8205vw;
}
.js_header_origin.js_sp_view_navi .phone-num {
  width: 100%;
}
.js_header_origin.js_sp_view_navi .phone-num a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js_header_origin.js_sp_view_navi .phone-num a span {
  color: #fff;
  font-size: 6.6667vw;
  font-weight: 700;
  letter-spacing: 0;
}
.js_header_origin.js_sp_view_navi .mail-address {
  margin-top: 5.1282vw;
}
.js_header_origin.js_sp_view_navi .mail-address a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js_header_origin.js_sp_view_navi .mail-address a span {
  color: #fff;
  font-size: 5.1282vw;
  font-weight: 500;
  letter-spacing: 0;
}
.js_header_origin.js_sp_view_navi .proceed-logo {
  width: 49.4872vw;
  margin: 7.6923vw auto 0;
}

/* /.js_header_origin.js_sp_view_navi */
/* =====================================================================
=====================================================================
=====================================================================

PC 表示 ヘッダー

===================================================================== */
/* PC 表示
--------------------------------------------------------- */
.js_header_origin.js_pc_view_navi {
  flex-shrink: 0;
  width: 16.667%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: all 0.3s ease;
  /* =========================================================

   g_nav PC

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

  info_nav PC

  ========================================================= */
}
.js_header_origin.js_pc_view_navi .header_inner {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: min(34.7222vw, 100px) min(0.5787vw, 10px);
  transition: all 0.3s ease;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .header_inner {
  position: fixed;
  top: 0;
}
.js_header_origin.js_pc_view_navi .header_logo {
  align-self: center;
  width: min(11.4583vw, 165px);
  transition: all 0.3s ease;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .header_logo {
  width: min(11.4583vw, 165px);
}
.js_header_origin.js_pc_view_navi .header_logo a {
  display: flex;
}
.js_header_origin.js_pc_view_navi .g_nav {
  width: 100%;
  margin-top: min(4.0509vw, 70px);
}
.js_header_origin.js_pc_view_navi .g_nav ul {
  width: 100%;
}
.js_header_origin.js_pc_view_navi .g_nav ul li {
  width: 100%;
}
.js_header_origin.js_pc_view_navi .g_nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: min(0.5787vw, 10px);
}
.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: #1c1c1e;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.js_header_origin.js_pc_view_navi .g_nav ul li a:hover p span {
  text-decoration: underline;
}
.js_header_origin.js_pc_view_navi .nav-info {
  width: 100%;
  margin-top: min(10.4167vw, 180px);
}
.js_header_origin.js_pc_view_navi .phone-num {
  width: 100%;
}
.js_header_origin.js_pc_view_navi .phone-num a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js_header_origin.js_pc_view_navi .phone-num a span {
  font-size: clamp(16px, 1.7361vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
}
.js_header_origin.js_pc_view_navi .mail-address a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js_header_origin.js_pc_view_navi .mail-address a span {
  font-size: clamp(11px, 1.0995vw, 19px);
  font-weight: 500;
  letter-spacing: 0;
}
.js_header_origin.js_pc_view_navi .proceed-logo {
  width: min(11.169vw, 193px);
  margin: min(1.7361vw, 30px) auto 0;
}

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

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_footer {
    width: 100%;
    position: relative;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ footer01_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer01_wrap {
  background-color: #333;
  width: 100%;
  position: relative;
  /* company_info */
  /* footer_link */
}
.footer01_wrap .footer_inner {
  width: min(100% - 40px, 1240px);
  display: flex;
  gap: min(3.2258vw, 40px);
  align-items: flex-start;
  justify-content: space-between;
  margin: auto;
  padding: min(4.0509vw, 70px) 0;
}
.footer01_wrap .company_info {
  color: #fff;
  font-size: clamp(14px, 1.6129vw, 20px);
  letter-spacing: 0;
}
.footer01_wrap .footer_logo {
  width: min(9.7222vw, 168px);
}
.footer01_wrap .footer_logo a {
  display: flex;
}
.footer01_wrap .info_detail {
  width: 100%;
  margin: min(1.1574vw, 20px) auto 0;
}
.footer01_wrap .info_detail a:hover {
  text-decoration: underline;
}
.footer01_wrap .info_detail .company-name {
  font-size: clamp(16px, 1.9355vw, 24px);
  font-weight: 500;
}
.footer01_wrap .info_detail .address_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 0.5em;
}
.footer01_wrap .info_detail .address span {
  display: inline-block;
}
.footer01_wrap .info_detail .contact_num {
  display: flex;
  align-items: center;
  gap: 3em;
  margin-top: 0.5em;
}
.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(45.1613vw, 560px);
  color: #fff;
  font-size: clamp(14px, 1.6129vw, 20px);
  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 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  position: relative;
}
.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: #333;
    width: 100%;
    position: relative;
    /* company_info */
    /* footer_link */
  }
  .footer01_wrap .footer_inner {
    width: 87.1795vw;
    display: flex;
    flex-direction: column-reverse;
    gap: 25.641vw;
    align-items: flex-start;
    justify-content: space-between;
    margin: auto;
    padding: 17.9487vw 0;
  }
  .footer01_wrap .company_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4.1026vw;
    letter-spacing: 0;
  }
  .footer01_wrap .footer_logo {
    width: 43.0769vw;
  }
  .footer01_wrap .footer_logo a {
    display: flex;
  }
  .footer01_wrap .info_detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5.1282vw auto 0;
  }
  .footer01_wrap .info_detail a:hover {
    text-decoration: underline;
  }
  .footer01_wrap .info_detail .company-name {
    font-size: 6.1538vw;
    font-weight: 500;
  }
  .footer01_wrap .info_detail .address_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-top: 0.5em;
  }
  .footer01_wrap .info_detail .address span {
    display: inline-block;
  }
  .footer01_wrap .info_detail .contact_num {
    display: flex;
    align-items: center;
    gap: 3em;
    margin-top: 0.5em;
  }
  .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: 87.1795vw;
    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: 1.5em;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer01_wrap .footer_link li {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
  }
  .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;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ footer02_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer02_wrap {
  background-color: #333;
  width: 100%;
  padding: 0 0 min(3.4722vw, 60px);
}
.footer02_wrap .footer_inner {
  width: min(100% - 40px, 1240px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: auto;
}
.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.05em;
}
.footer02_wrap .copy_right span {
  display: inline-block;
  font-size: clamp(14px, 1.0417vw, 18px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .footer02_wrap {
    background-color: #333;
    width: 100%;
    padding: 0 0 25.641vw;
  }
  .footer02_wrap .footer_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .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: -moz-fit-content;
  width: fit-content;
  min-width: min(16.3194vw, 282px);
}
.page-link-btn a {
  background-color: #fff;
  border: 1px solid #172c49;
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  color: #172c49;
  padding: min(5.3191vw, 15px) min(7.0922vw, 20px);
}
.page-link-btn a:hover {
  opacity: 1;
}
.page-link-btn span {
  display: flex;
  gap: min(1.7361vw, 30px);
  align-items: center;
  font-size: clamp(13px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: min(0.8681vw, 15px);
}
.page-link-btn span::before {
  content: "";
  background-color: #172c49;
  background-image: url("../img/cmn/icon_arrow01.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 btnArrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
.page-link-btn:hover span::before {
  animation: btnArrowMove 0.6s ease-in-out infinite;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-link-btn {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 72.3077vw;
  }
  .page-link-btn a {
    background-color: #fff;
    border: 1px solid #172c49;
    border-radius: 9999px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: #172c49;
    padding: 2.8205vw 4.359vw;
  }
  .page-link-btn a:hover {
    opacity: 1;
  }
  .page-link-btn span {
    display: flex;
    gap: 7.6923vw;
    align-items: center;
    font-size: 4.6154vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-indent: 3.8462vw;
  }
  .page-link-btn span::before {
    content: "";
    background-color: #172c49;
    background-image: url("../img/cmn/icon_arrow01.svg");
    background-repeat: no-repeat;
    background-size: 3.8462vw auto;
    background-position: center;
    border-radius: 9999px;
    overflow: hidden;
    width: 10.2564vw;
    aspect-ratio: 1/1;
    display: block;
  }
  @keyframes btnArrowMove {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(6px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .page-link-btn:hover span::before {
    animation: btnArrowMove 0.6s ease-in-out infinite;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


page-anker-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-anker-btn {
  width: min(16.8056vw, 242px);
}
.page-anker-btn a {
  background-color: #fff;
  border: 1px solid #172c49;
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  color: #172c49;
  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: #172c49;
  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 #172c49;
    border-radius: 9999px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: #172c49;
    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: #172c49;
    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: #172c49;
  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: #172c49;
  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: #172c49;
    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: #172c49;
    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 表示
--------------------------------------------------------- */
.archive-back-btn {
  width: min(16.3194vw, 282px);
}
.archive-back-btn a {
  background-color: #fff;
  border: 1px solid #172c49;
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #172c49;
  padding: min(7.8014vw, 22px) min(7.0922vw, 20px);
}
.archive-back-btn span {
  font-size: clamp(13px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.archive-back-btn.ver-prev span {
  margin-left: min(1.6129vw, 20px);
}
.archive-back-btn.ver-next span {
  margin-right: min(1.6129vw, 20px);
}
.archive-back-btn.ver-prev span::before {
  content: "";
  background-color: #172c49;
  background-image: url("../img/cmn/icon_arrow03.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;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: min(1.6129vw, 20px);
}
.archive-back-btn.ver-next span::after {
  content: "";
  background-color: #172c49;
  background-image: url("../img/cmn/icon_arrow01.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;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(1.6129vw, 20px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .archive-back-btn {
    width: 30.7692vw;
  }
  .archive-back-btn a {
    background-color: #fff;
    border: 1px solid #172c49;
    border-radius: 9999px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #172c49;
    padding: 2.5641vw 1.0256vw;
  }
  .archive-back-btn span {
    font-size: 3.0769vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .archive-back-btn.ver-prev span {
    margin-left: 6.4103vw;
  }
  .archive-back-btn.ver-next span {
    margin-right: 6.4103vw;
  }
  .archive-back-btn.ver-prev span::before {
    content: "";
    background-color: #172c49;
    background-image: url("../img/cmn/icon_arrow03.svg");
    background-repeat: no-repeat;
    background-size: 2.5641vw auto;
    background-position: center;
    border-radius: 9999px;
    overflow: hidden;
    width: 5.1282vw;
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1.2821vw;
  }
  .archive-back-btn.ver-next span::after {
    content: "";
    background-color: #172c49;
    background-image: url("../img/cmn/icon_arrow01.svg");
    background-repeat: no-repeat;
    background-size: 2.5641vw auto;
    background-position: center;
    border-radius: 9999px;
    overflow: hidden;
    width: 5.1282vw;
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.2821vw;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


contact_btn


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

.contact_btn a.btn {
  background-color: #0a13b6;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact_btn a.btn span {
  display: flex;
  gap: 1em;
  align-items: center;
  color: #fff;
  font-size: sizeclmpvw(18, 22, 968);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.contact_btn a.btn span::before {
  content: "";
  background-image: url("../img/cmn/icon_personal01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 30px;
  display: block;
}
.contact_btn a.btn.ver_corporate span::before {
  content: "";
  background-image: url("../img/cmn/icon_corporate01.svg");
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .contact_btn_wrap {
    width: sizeconvertvw(330, 390);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: sizeconvertvw(15, 390);
    margin: sizeconvertvw(30, 390) auto 0;
  }
  .contact_btn a.btn {
    background-color: #0a13b6;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .contact_btn a.btn span {
    display: flex;
    gap: 1em;
    align-items: center;
    color: #fff;
    font-size: sizeclmpvw(14, 16, 390);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .contact_btn a.btn span::before {
    content: "";
    background-image: url("../img/cmn/icon_personal01.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    display: block;
  }
  .contact_btn a.btn.ver_corporate span::before {
    content: "";
    background-image: url("../img/cmn/icon_corporate01.svg");
  }
} /* スマホ 表示 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: #172c49;
  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: #172c49;
    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: #172c49;
  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: #172c49;
    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: #172c49;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #172c49;
  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;
}

/* ====== 販売停止時 ====== */
.sales-site-btn.no-sales {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.sales-site-btn.no-sales span {
  background-color: #e5e5e5;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #777;
  padding: min(1.8548vw, 23px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sales-site-btn {
    width: 100%;
  }
  .sales-site-btn a {
    background-color: #172c49;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #172c49;
    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/_look.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


topics-section


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

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


.parts-contact-info


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.parts-contact-info {
  background-color: #d9d9d9;
  width: 100%;
  position: relative;
}
.parts-contact-info .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0;
}
.parts-contact-info .unit-wrap {
  background-color: #fff;
  width: min(100% - 40px, 1240px);
  display: flex;
  margin: auto;
  padding: min(2.8935vw, 50px) 0;
}
.parts-contact-info .tel-unit {
  width: 50%;
  display: flex;
  gap: min(0.9259vw, 16px);
  flex-direction: column;
  text-align: center;
  padding: min(2.8935vw, 50px) 0;
}
.parts-contact-info .tel-unit .unit-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  font-size: clamp(16px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.parts-contact-info .tel-unit .unit-head::before {
  content: "";
  background-image: url("../img/cmn/icon_phone_02.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 32px;
  height: 32px;
  display: block;
}
.parts-contact-info .tel-unit .unit-num {
  font-size: clamp(20px, 2.3148vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.parts-contact-info .tel-unit .unit-info-time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.parts-contact-info .mail-unit {
  border-left: 2px solid #172c49;
  width: 50%;
  display: flex;
  gap: min(1.7361vw, 30px);
  flex-direction: column;
  text-align: center;
  padding: min(2.8935vw, 50px) 0;
}
.parts-contact-info .mail-unit .unit-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  font-size: clamp(16px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.parts-contact-info .mail-unit .unit-head::before {
  content: "";
  background-image: url("../img/cmn/icon_mail_02.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 32px;
  height: 32px;
  display: block;
}
.parts-contact-info .mail-unit .btn-wrap .page-link-btn {
  margin: auto;
}
.parts-contact-info .mail-unit .btn-wrap .page-link-btn span {
  gap: min(0.5787vw, 10px);
  text-indent: 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .parts-contact-info {
    background-color: #d9d9d9;
    width: 100%;
    position: relative;
  }
  .parts-contact-info .sec-wrap {
    width: 100%;
    position: relative;
    padding: 12.8205vw 0;
  }
  .parts-contact-info .unit-wrap {
    background-color: #fff;
    width: 87.1795vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    padding: 12.8205vw 0;
  }
  .parts-contact-info .tel-unit {
    width: 76.9231vw;
    display: flex;
    gap: 4.1026vw;
    flex-direction: column;
    text-align: center;
    padding: 0 0 12.8205vw;
  }
  .parts-contact-info .tel-unit .unit-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    font-size: 5.641vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .parts-contact-info .tel-unit .unit-head::before {
    content: "";
    background-image: url("../img/cmn/icon_phone_02.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 50px;
    height: 50px;
    display: block;
  }
  .parts-contact-info .tel-unit .unit-num {
    font-size: 9.7436vw;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .parts-contact-info .tel-unit .unit-info-time {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.6154vw;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .parts-contact-info .mail-unit {
    border-top: 2px solid #172c49;
    border-left: none;
    width: 76.9231vw;
    display: flex;
    gap: 7.6923vw;
    flex-direction: column;
    text-align: center;
    padding: 12.8205vw 0 0;
  }
  .parts-contact-info .mail-unit .unit-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    font-size: 5.641vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .parts-contact-info .mail-unit .unit-head::before {
    content: "";
    background-image: url("../img/cmn/icon_mail_02.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 50px;
    height: 50px;
    display: block;
  }
  .parts-contact-info .mail-unit .btn-wrap .page-link-btn {
    margin: auto;
  }
  .parts-contact-info .mail-unit .btn-wrap .page-link-btn span {
    gap: 3.0769vw;
    font-size: 4.359vw;
    letter-spacing: 0;
    text-indent: 0vw;
  }
} /* スマホ 表示 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 表示
--------------------------------------------------------- */
.post_page_pagination {
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin: auto;
}
.post_page_pagination .page-numbers {
  background-color: #fff;
  border: 1px solid #172c49;
  border-radius: 9999px;
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post_page_pagination .page-numbers:hover {
  background-color: #172c49;
  color: #fff;
}
.post_page_pagination .current {
  background-color: #172c49;
  color: #fff;
}
.post_page_pagination .prev,
.post_page_pagination .next {
  background-color: #fff;
  color: #172c49;
}
.post_page_pagination .dots {
  background: transparent;
  color: #1c1c1e;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (width <= 768px) {
  .post_page_pagination {
    width: 100%;
    display: flex;
    gap: 5.1282vw;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin: auto;
  }
  .post_page_pagination .page-numbers {
    background-color: #fff;
    border-radius: 9999px;
    width: 36px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post_page_pagination .page-numbers:hover {
    background-color: #172c49;
    color: #fff;
  }
  .post_page_pagination .current {
    background-color: #172c49;
    color: #fff;
  }
  .post_page_pagination .prev,
  .post_page_pagination .next {
    background-color: #fff;
    color: #172c49;
  }
  .post_page_pagination .dots {
    background: transparent;
    color: #1c1c1e;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


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


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

/* スマホ 表示
--------------------------------------------------------- */
@media all and (width <= 768px) {
  .category-filter_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 0;
  }
  .category-filter_wrap .filter_head {
    font-size: 3.5897vw;
    font-weight: 500;
    letter-spacing: 0.16em;
  }
  .category-filter_wrap .category-filter {
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    margin-left: 0.2em;
  }
  .category-filter_wrap .category-filter::after {
    content: "";
    border-top: 2px solid #1c1c1e;
    border-left: 2px solid #1c1c1e;
    width: 9px;
    height: 9px;
    position: absolute;
    top: 46%;
    right: 14px;
    transform: translateY(-50%) rotate(-135deg);
    pointer-events: none;
  }
  .category-filter_wrap .category-filter .category-select {
    border: 1px solid #000;
    max-width: 61.5385vw;
    width: auto;
    font-size: 3.5897vw;
    font-weight: 500;
    padding: 2.0513vw 32px 2.0513vw 12px;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 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 {
  width: 100%;
  position: relative;
}
.page-contents .sec__contact_form .form-head {
  background-color: #172c49;
  border-radius: 10px 10px 0 0;
  width: min(100% - 40px, 1240px);
  color: #fff;
  font-size: clamp(16px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin: auto;
  padding: min(1.0417vw, 18px) 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contents .sec__contact_form {
    width: 100%;
    position: relative;
  }
  .page-contents .sec__contact_form .sec-wrap {
    width: 100%;
    position: relative;
  }
  .page-contents .sec__contact_form .form-head {
    background-color: #172c49;
    border-radius: 5px 5px 0 0;
    width: 87.1795vw;
    color: #fff;
    font-size: 5.641vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    margin: auto;
    padding: 4.6154vw 0;
  }
} /* スマホ 表示 end */
/* =========================================================

　フォーム部分

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.form_wrap {
  border: 2px solid #172c49;
  border-top: none;
  border-radius: 0 0 10px 10px;
  width: min(100% - 40px, 1240px);
  margin: auto;
  padding: min(4.0509vw, 70px) min(5.787vw, 100px);
  /* 入力部分 全体 */
  /* 項目名 */
  /* .form_item dt .title_txt::before {
    content: '・';
    display: inline-block;
    margin-right: 0.2em;
  } */
  /* 必須マーク */
  /* 入力部分 */
  /* テキストエリアパーツ */
  /* 郵便番号パーツ */
  /* 都道府県パーツ */
  /* セレクトボックスパーツ */
  /* チェックボックス */
  /* 個人情報同意チェックボックス */
  /* プライバシーチェックリンク */
  /* チェックボックス設定 */
  /* ラジオボタン */
  /* 生年月日ドロップダウン */
  /* 送信ボタン */
  /* .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%);
  } */
}
.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 #8c8c8c;
  border-radius: 0;
  width: 100%;
  font-size: clamp(14px, 1.6729vw, 18px);
  line-height: lineheight(18, 28);
  letter-spacing: 0.05em;
  padding: 10px 1em;
  outline: none; /* フォーカス時デフォルトのハイライト消す */
  transition: 0.1s;
}
.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 {
  border-bottom: 1px solid #1c1c1e;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  margin-top: min(2.3148vw, 40px);
  padding-bottom: min(2.3148vw, 40px);
}
.form_wrap .form_item:first-of-type {
  margin-top: 0;
}
.form_wrap .form_item dt {
  display: flex;
  gap: 1em;
  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.6729vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
}
.form_wrap .form_item dt .mandatory_mark {
  background-color: #e24b4b;
  border-radius: 9999px;
  overflow: hidden;
  color: #fff;
  font-size: clamp(10px, 0.8102vw, 14px);
  font-weight: 500;
  letter-spacing: 0;
  padding: 3px min(0.5787vw, 10px);
}
.form_wrap .form_item dd {
  width: min(40.5093vw, 700px);
  position: relative;
}
.form_wrap .form_item.textarea_parts {
  align-items: flex-start;
}
.form_wrap .form_item.textarea_parts dt {
  margin-top: 0.5em;
}
.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 .agree_btn_wrap {
  width: 100%;
  margin-top: 66px;
  padding-left: 350px;
}
.form_wrap .agree_btn_inner {
  display: flex;
  align-items: center;
}
.form_wrap .agree_btn_wrap label {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-left: 1em;
}
.form_wrap .agree_btn_wrap a {
  display: block;
  color: #001aff;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 6px;
  margin-top: 20px;
}
.form_wrap input[type=checkbox] {
  cursor: pointer;
  width: 20px; /* チェックボックスの横幅 */
  aspect-ratio: 1/1; /* ボックスの縦横比 */
  display: block;
  position: relative;
  margin-top: 2px;
}
.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 #3e1f00;
  width: 20px; /* チェックボックスの横幅 */
  aspect-ratio: 1/1; /* ボックスの縦横比 */
  top: 0;
  left: 0;
}
.form_wrap input[type=checkbox]:checked::before {
  background-color: #1cada1; /* チェック時背景カラー */
}
.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 .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: #172c49;
  border-radius: 9999px;
  overflow: hidden;
  width: 210px;
  aspect-ratio: 210/55;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
  margin: min(4.0509vw, 70px) auto 0;
  transition: 0.3s;
}
.form_wrap .submit_btn:hover {
  opacity: 1;
  background-color: #fff;
  border-color: #172c49;
  color: #172c49;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .form_wrap {
    border: 2px solid #172c49;
    border-top: none;
    border-radius: 0 0 5px 5px;
    width: 87.1795vw;
    margin: auto;
    padding: min(10.2564vw, 40px) min(6.4103vw, 25px);
    /* 入力部分 全体 */
    /* 項目名 */
    /* .form_item dt .title_txt::before {
      content: '・';
      display: inline-block;
      margin-right: 0.2em;
    } */
    /* 入力部分 */
    /* テキストエリアパーツ */
    /* 郵便番号パーツ */
    /* 都道府県パーツ */
    /* セレクトボックスパーツ */
    /* チェックボックス */
    /* 個人情報同意チェックボックス */
    /* プライバシーポリシーリンク */
    /* チェックボックス設定 */
    /* ラジオボタン */
    /* 送信ボタン */
    /*     .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%);
    } */
  }
  .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 #8c8c8c;
    border-radius: 0;
    width: 100%;
    font-size: 3.5897vw;
    line-height: lineheight(14, 24);
    letter-spacing: 0.1em;
    padding: 10px 1em;
    outline: none; /* フォーカス時デフォルトのハイライト消す */
    transition: 0.1s;
  }
  .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: column;
    gap: 20px;
    margin-top: min(5.1282vw, 20px);
    padding-bottom: min(5.1282vw, 20px);
  }
  .form_wrap .form_item:first-of-type {
    margin-top: 0;
  }
  .form_wrap .form_item dt {
    width: 100%;
  }
  .form_wrap .form_item dt label {
    display: flex;
    gap: 1em;
    align-items: center;
  }
  .form_wrap .form_item dt .title_txt {
    font-size: 4.1026vw;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .form_wrap .form_item dt .mandatory_mark {
    background-color: #e24b4b;
    border-radius: 9999px;
    overflow: hidden;
    color: #fff;
    font-size: 3.0769vw;
    font-weight: 500;
    letter-spacing: 0;
    padding: 3px 2.5641vw;
  }
  .form_wrap .form_item dd {
    width: 100%;
    position: relative;
  }
  .form_wrap .form_item.textarea_parts {
    align-items: flex-start;
  }
  .form_wrap .form_item.textarea_parts dt {
    margin-top: 0.5em;
  }
  .form_wrap .form_item textarea {
    resize: vertical; /* 縦方向にだけ伸縮 */
  }
  .form_wrap .form_item.post_code_unit .post_code_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
  }
  .form_wrap .form_item.post_code_unit .post_code_inner span {
    flex-shrink: 0;
    font-size: 3.5897vw;
    font-weight: 400;
  }
  .form_wrap .form_item.post_code_unit .post_code_inner input {
    flex-grow: 1;
    width: auto;
  }
  .form_wrap .form_item.post_code_unit .post_code_inner .post_code_note {
    font-size: 3.5897vw;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-left: 0;
  }
  .form_wrap .form_item.post_code_unit .post_code_btn {
    width: 286px;
    aspect-ratio: 286/44;
    margin-top: 20px;
  }
  .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: 3.5897vw;
    letter-spacing: 0.04em;
    margin-top: 10px;
  }
  .form_wrap .form_item.prefectures_parts dd {
    flex-grow: 0;
    width: 100%;
  }
  .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: 14px;
    font-weight: 400;
    letter-spacing: 0.11em;
    margin-left: 1em;
  }
  .form_wrap .checkbox_parts ul li + li {
    margin-top: 1em;
  }
  .form_wrap .agree_btn_wrap {
    width: 100%;
    margin-top: 4%;
    padding-left: 0;
  }
  .form_wrap .agree_btn_inner {
    display: flex;
    align-items: center;
  }
  .form_wrap .agree_btn_wrap label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-left: 1em;
  }
  .form_wrap .agree_btn_wrap a {
    display: block;
    color: #001aff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-underline-offset: 6px;
    margin-top: 20px;
  }
  .form_wrap input[type=checkbox] {
    cursor: pointer;
    width: 20px; /* チェックボックスの横幅 */
    aspect-ratio: 1/1; /* ボックスの縦横比 */
    display: block;
    position: relative;
    margin-top: 2px;
  }
  .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 #3e1f00;
    width: 20px; /* チェックボックスの横幅 */
    aspect-ratio: 1/1; /* ボックスの縦横比 */
    top: 0;
    left: 0;
  }
  .form_wrap input[type=checkbox]:checked::before {
    background-color: #1cada1; /* チェック時背景カラー */
  }
  .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 .radio_btn_parts dt {
    display: flex;
    align-items: center;
  }
  .form_wrap .radio_btn_parts ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .form_wrap .radio_btn_parts ul li {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .form_wrap .radio_btn_parts.ver01 ul li {
    width: 100%;
  }
  .form_wrap .radio_btn_parts.ver02 ul li {
    width: 20%;
  }
  .form_wrap .radio_btn_parts label {
    position: relative;
    cursor: pointer;
    padding-left: 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 .submit_btn {
    background-color: #172c49;
    border-radius: 9999px;
    overflow: hidden;
    width: 180px;
    aspect-ratio: 180/45;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
    margin: min(7.6923vw, 30px) auto 0;
    transition: 0.3s;
  }
  .form_wrap .submit_btn:hover {
    opacity: 0.6;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 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 */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


商品個別ページ 商品画像スライド


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* mixin
--------------------------------------------------------- */
/* コンテナ要素のスタイル */
.episode__mv-slider {
  width: min(35.8796vw, 620px);
  height: auto;
  /* メインのスタイル */
  /* メインスライドのスタイル */
  /* サムネイルのスタイル */
  /* サムネイルスライドのスタイル */
  /* アクティブなときのスタイル */
  /* 矢印ボタンの色を変更 */
}
@media screen and (max-width: 768px) {
  .episode__mv-slider {
    width: 100%;
  }
}
.episode__mv-slider .swiper-container {
  width: 100%;
  overflow: hidden;
}
.episode__mv-slider .main__slider {
  width: 100%;
  position: relative;
}
.episode__mv-slider .main__slider .swiper-wrapper {
  position: relative;
}
.episode__mv-slider .main__item-inner {
  width: 100%;
  aspect-ratio: 620/753;
  overflow: hidden;
}
.episode__mv-slider .mvSlider__main__item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.episode__mv-slider .thumb__slider {
  width: 100%;
  height: auto;
  margin-top: min(0.5787vw, 10px);
}
.episode__mv-slider .thumb__slider .swiper-wrapper {
  width: 100%;
}
.episode__mv-slider .thumb__item {
  width: 100%;
}
.episode__mv-slider .thumb__item-inner {
  width: 100%;
  aspect-ratio: 140/170;
  overflow: hidden;
}
.episode__mv-slider .mvSlider_thumb__item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.episode__mv-slider .thumb__slider .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.episode__mv-slider .thumb__slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.episode__mv-slider .episodeMv__swiper-button-next,
.episode__mv-slider .episodeMv__swiper-button-prev {
  content: "";
  background-image: url("../img/cmn/slide_next_arrow01.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 55/55;
  width: clamp(34px, 3.1829vw, 55px);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.episode__mv-slider .episodeMv__swiper-button-next {
  right: 2%;
}
.episode__mv-slider .episodeMv__swiper-button-prev {
  background-image: url("../img/cmn/slide_prev_arrow01.svg");
  left: 2%;
}

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


.page-top .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .sec__kv {
  width: 100%;
  position: relative;
}
.page-top .sec__kv .kv_tit {
  width: 291px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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


.page-top .sec--look


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .sec--look {
  width: 100%;
  position: relative;
}
.page-top .sec--look .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 0;
}
.page-top .sec--look .look-unit-wrap {
  width: 100%;
  display: flex;
  gap: min(8.6806vw, 150px);
  flex-direction: column;
  margin: auto;
}
.page-top .sec--look .look-unit {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 1;
  padding-bottom: min(5.787vw, 100px);
}
.page-top .sec--look .look-unit.ver-reverse {
  flex-direction: row-reverse;
}
.page-top .sec--look .look-unit::before {
  content: "";
  background-color: rgba(198, 217, 244, 0.4);
  border-radius: 0 10px 10px 0;
  width: min(50.3472vw, 870px);
  height: min(35.8796vw, 620px);
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}
.page-top .sec--look .look-unit.ver-reverse::before {
  border-radius: 10px 0 0 10px;
  left: auto;
  right: 0;
}
.page-top .sec--look .unit-img {
  width: min(47.4537vw, 820px);
  padding: 0 min(5.787vw, 100px);
}
.page-top .sec--look .unit-img-inner {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.page-top .sec--look .unit-contents {
  width: min(31.25vw, 540px);
  margin-top: min(5.787vw, 100px);
}
.page-top .sec--look .unit-tit {
  color: #172c49;
  font-size: clamp(20px, 2.3148vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
.page-top .sec--look .unit-txt {
  font-size: clamp(14px, 1.1574vw, 20px);
  line-height: 2.3;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: min(2.8935vw, 50px);
}
.page-top .sec--look .btn-wrap {
  margin-top: min(2.8935vw, 50px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .sec--look {
    width: 100%;
    position: relative;
  }
  .page-top .sec--look .sec-wrap {
    width: 100%;
    position: relative;
    padding: 17.9487vw 0 0;
  }
  .page-top .sec--look .look-unit-wrap {
    width: 100%;
    display: flex;
    gap: 17.9487vw;
    flex-direction: column;
    margin: auto;
  }
  .page-top .sec--look .look-unit {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 0;
  }
  .page-top .sec--look .look-unit.ver-reverse {
    flex-direction: column;
  }
  .page-top .sec--look .look-unit::before {
    content: "";
    background-color: rgba(198, 217, 244, 0.4);
    border-radius: 0 5px 5px 0;
    width: 87.1795vw;
    height: 82.0513vw;
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 20.5128vw;
    bottom: auto;
  }
  .page-top .sec--look .look-unit.ver-reverse::before {
    border-radius: 5px 0 0 5px;
    left: auto;
    right: 0;
  }
  .page-top .sec--look .unit-img {
    width: 87.1795vw;
    padding: 0;
  }
  .page-top .sec--look .unit-img-inner {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
  }
  .page-top .sec--look .unit-contents {
    width: 87.1795vw;
    margin-top: 12.8205vw;
  }
  .page-top .sec--look .unit-tit {
    color: #172c49;
    font-size: 7.1795vw;
    font-weight: 500;
    line-height: 1.357;
    letter-spacing: 0.1em;
  }
  .page-top .sec--look .unit-txt {
    font-size: 4.6154vw;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: justify;
    margin-top: 7.6923vw;
  }
  .page-top .sec--look .btn-wrap {
    margin-top: 12.8205vw;
  }
  .page-top .sec--look .page-link-btn {
    margin: auto;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .sec--top-slide
_swiper.scssで設定

＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .sec--top-slide {
  width: 100%;
  position: relative;
}
.page-top .sec--top-slide .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .sec--top-slide {
    width: 100%;
    position: relative;
  }
  .page-top .sec--top-slide .sec-wrap {
    width: 100%;
    position: relative;
    padding: 17.9487vw 0 0;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec--products-list 商品一覧 SP時のみスライド
_swiper.scssで設定

＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .sec--products-list {
  width: 100%;
  position: relative;
  margin-top: min(8.1019vw, 140px);
  /* スライド */
}
.page-top .sec--products-list .sec-wrap {
  background-color: #172c49;
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0;
}
.page-top .sec--products-list .sec-head-wrap {
  width: min(100% - 40px, 1240px);
  margin: auto;
}
.page-top .sec--products-list .sec-tit {
  color: #fff;
  font-size: clamp(20px, 2.3148vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
.page-top .sec--products-list .sec-catch-wrap {
  width: 100%;
  display: flex;
  gap: min(1.7361vw, 30px);
  justify-content: space-between;
  margin-top: min(1.7361vw, 30px);
}
.page-top .sec--products-list .sec-catch {
  width: min(41.1458vw, 711px);
  color: #fff;
  font-size: clamp(14px, 1.3889vw, 24px);
  line-height: 1.417;
  letter-spacing: 0.1em;
  text-align: justify;
}
.page-top .sec--products-list .products-swiper {
  margin: min(5.787vw, 100px) auto 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .sec--products-list {
    width: 100%;
    position: relative;
    margin-top: 15.3846vw;
    /* スライド */
    /* SP表示ボタン */
  }
  .page-top .sec--products-list .sec-wrap {
    background-color: #172c49;
    width: 100%;
    position: relative;
    padding: 12.8205vw 0;
  }
  .page-top .sec--products-list .sec-head-wrap {
    width: 87.1795vw;
    margin: auto;
  }
  .page-top .sec--products-list .sec-tit {
    color: #fff;
    font-size: 7.1795vw;
    font-weight: 500;
    line-height: 1.357;
    letter-spacing: 0.1em;
  }
  .page-top .sec--products-list .sec-catch-wrap {
    width: 100%;
    display: flex;
    gap: 7.6923vw;
    justify-content: space-between;
    margin-top: 7.6923vw;
  }
  .page-top .sec--products-list .sec-catch {
    width: 87.1795vw;
    color: #fff;
    font-size: 4.6154vw;
    line-height: 1.556;
    letter-spacing: 0.1em;
    text-align: justify;
  }
  .page-top .sec--products-list .products-swiper {
    margin: 7.6923vw auto 0;
    margin-right: 0;
  }
  .page-top .sec--products-list .btn-wrap {
    margin: 5.1282vw auto 0;
  }
  .page-top .sec--products-list .page-link-btn {
    margin: auto;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-top .sec--news-list


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-top .sec--news-list {
  width: 100%;
  position: relative;
}
.page-top .sec--news-list .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0;
}
.page-top .sec--news-list .sec-head-wrap {
  width: min(100% - 40px, 1240px);
  margin: auto;
}
.page-top .sec--news-list .sec-tit {
  color: #172c49;
  font-size: clamp(20px, 2.3148vw, 40px);
  line-height: 1.25;
  letter-spacing: 0.1em;
}
.page-top .sec--news-list .news-list {
  width: min(100% - 40px, 1240px);
  margin: min(1.1574vw, 20px) auto 0;
}
.page-top .sec--news-list .news-list ul {
  width: 100%;
  line-height: 1.714;
  margin: 0;
}
.page-top .sec--news-list .news-list ul li {
  border-top: 1px solid #172c49;
  width: 100%;
  display: flex;
  gap: min(0.5787vw, 10px);
  align-items: flex-start;
  padding: min(1.5625vw, 27px) 0;
}
.page-top .sec--news-list .news-list ul li:first-child {
  border-top: none;
}
.page-top .sec--news-list .unit-head {
  flex-shrink: 0;
  width: 390px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2em;
  align-items: center;
}
.page-top .sec--news-list .unit-category {
  background-color: #172c49;
  border-radius: 9999px;
  width: auto;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 500;
  padding: 0.4em 2em;
}
.page-top .sec--news-list .unit-category span {
  min-width: 0;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.page-top .sec--news-list .unit-date {
  font-size: clamp(16px, 1.3889vw, 24px);
  font-weight: 500;
}
.page-top .sec--news-list .unit-tit {
  flex-grow: 1;
  display: -webkit-box;
  font-size: clamp(14px, 1.1574vw, 20px);
  line-height: 1.714;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-top .sec--news-list .btn-wrap {
  margin: min(2.8935vw, 50px) auto 0;
}
.page-top .sec--news-list .btn-wrap .page-link-btn {
  margin-left: auto;
}
.page-top .sec--news-list .btn-wrap .page-link-btn span {
  gap: 1.2821vw;
  text-indent: 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top .sec--news-list {
    width: 100%;
    position: relative;
  }
  .page-top .sec--news-list .sec-wrap {
    width: 100%;
    position: relative;
    padding: 12.8205vw 0;
  }
  .page-top .sec--news-list .sec-head-wrap {
    width: 87.1795vw;
    margin: auto;
  }
  .page-top .sec--news-list .sec-tit {
    color: #172c49;
    font-size: 7.1795vw;
    line-height: 1.357;
    letter-spacing: 0.1em;
  }
  .page-top .sec--news-list .news-list {
    width: 87.1795vw;
    margin: 7.6923vw auto 0;
  }
  .page-top .sec--news-list .news-list ul {
    width: 100%;
    line-height: 1.625;
    margin: 0;
    padding: 0;
  }
  .page-top .sec--news-list .news-list ul li {
    border-top: 1px solid #172c49;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5641vw;
    align-items: flex-start;
    padding: 3.8462vw 0;
  }
  .page-top .sec--news-list .news-list ul li:first-child {
    border-top: none;
  }
  .page-top .sec--news-list .unit-head {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 2em;
    align-items: center;
  }
  .page-top .sec--news-list .unit-category {
    background-color: #172c49;
    border-radius: 9999px;
    width: auto;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4.1026vw;
    font-weight: 500;
    padding: 0.4em 2em;
  }
  .page-top .sec--news-list .unit-category span {
    min-width: 0;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
  }
  .page-top .sec--news-list .unit-date {
    font-size: 4.6154vw;
    font-weight: 500;
  }
  .page-top .sec--news-list .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;
  }
  .page-top .sec--news-list .btn-wrap {
    margin: 12.8205vw auto 0;
  }
  .page-top .sec--news-list .btn-wrap .page-link-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .page-top .sec--news-list .btn-wrap .page-link-btn span {
    gap: 5.1282vw;
    text-indent: 0;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_page-contents.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


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

＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__breadcrumb_trail {
  width: min(100% - 40px, 1240px);
  margin: auto;
  padding: min(2.3148vw, 40px) 0;
}
.sec__breadcrumb_trail ul {
  display: flex;
  gap: 1em;
}
.sec__breadcrumb_trail ul li {
  display: flex;
  align-items: flex-start;
  font-size: clamp(12px, 0.9259vw, 16px);
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0;
}
.sec__breadcrumb_trail ul li + li::before {
  content: "＞";
  margin-right: 1em;
}
.sec__breadcrumb_trail ul li a {
  display: block;
  color: #172c49;
  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: #172c49;
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
  .sec__breadcrumb_trail ul li a:hover {
    text-decoration: none;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contents .sec--kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contents .sec--kv {
  width: 100%;
  position: relative;
}
.page-contents .sec--kv .sec-wrap {
  background-image: url("../img/business/kv_img01_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 1440/437;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contents .sec--kv {
    width: 100%;
    position: relative;
  }
  .page-contents .sec--kv .sec-wrap {
    background-image: url("../img/business/kv_img01_sp_2x.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 780/570;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    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: #172c49;
  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: #172c49;
    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/_business.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-business 全体設定


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

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

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


.page-business .sec--kv


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

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


.page-business .sec--look


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-business .sec--look {
  width: 100%;
  position: relative;
}
.page-business .sec--look .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 0;
}
.page-business .sec--look .look-unit-wrap {
  width: 100%;
}
.page-business .sec--look .look-unit {
  background-color: rgba(198, 217, 244, 0.4);
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0;
}
.page-business .sec--look .ver-reverse.look-unit {
  background-color: #fff;
}
.page-business .sec--look .unit-inner {
  width: min(100% - 40px, 1240px);
  position: relative;
  z-index: 1;
  margin: auto;
}
.page-business .sec--look .unit-inner::before {
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: min(100% - 4.44vw, 1185px);
  height: calc(100% - 100px);
  display: block;
  position: absolute;
  z-index: -1;
  top: 50px;
  right: 0;
}
.page-business .sec--look .ver-reverse .unit-inner::before {
  content: "";
  background-color: rgba(198, 217, 244, 0.4);
  right: auto;
  left: 0;
}
.page-business .sec--look .unit-main-parts {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: min(4.4355vw, 55px);
}
.page-business .sec--look .ver-reverse .unit-main-parts {
  flex-direction: row-reverse;
}
.page-business .sec--look .unit-lead-img {
  border-radius: 10px;
  overflow: hidden;
  width: min(50vw, 620px);
  aspect-ratio: 620/395;
}
.page-business .sec--look .unit-lead-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-business .sec--look .unit-contents {
  width: min(41.129vw, 510px);
  padding: min(6.9444vw, 120px) 0;
}
.page-business .sec--look .look-unit.ver-btn .unit-contents {
  padding-bottom: min(2.3148vw, 40px);
}
.page-business .sec--look .unit-tit {
  font-size: clamp(22px, 1.7361vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.page-business .sec--look .unit-txt {
  border-top: 1px solid #172c49;
  font-size: clamp(14px, 1.1574vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: justify;
  margin-top: min(1.7361vw, 30px);
  padding-top: min(1.7361vw, 30px);
}
.page-business .sec--look .unit-sub-parts {
  width: min(55.5556vw, 960px);
  margin: min(4.6296vw, 80px) auto 0;
}
.page-business .sec--look .unit-thumb {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.4194vw, 30px);
}
.page-business .sec--look .unit-thumb-img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 300/200;
  overflow: hidden;
}
.page-business .sec--look .unit-thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-business .sec--look .btn-wrap {
  margin-top: min(2.4194vw, 30px);
}
.page-business .sec--look .page-link-btn {
  min-width: min(11.169vw, 193px);
}
.page-business .sec--look .page-link-btn a {
  padding: min(3.5461vw, 10px) min(7.0922vw, 20px);
}
.page-business .sec--look .page-link-btn span {
  gap: min(0.8681vw, 15px);
  font-size: clamp(13px, 0.9259vw, 16px);
  text-indent: min(0.2894vw, 5px);
}
.page-business .sec--look .page-link-btn span::before {
  content: "";
  background-size: min(0.9677vw, 12px) auto;
  width: min(2.5806vw, 32px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-business .sec--look {
    width: 100%;
    position: relative;
  }
  .page-business .sec--look .sec-wrap {
    width: 100%;
    position: relative;
    padding: 0;
  }
  .page-business .sec--look .look-unit-wrap {
    width: 100%;
  }
  .page-business .sec--look .look-unit {
    background-color: rgba(198, 217, 244, 0.4);
    width: 100%;
    position: relative;
    padding: 17.9487vw 0;
  }
  .page-business .sec--look .ver-reverse.look-unit {
    background-color: #fff;
  }
  .page-business .sec--look .unit-inner {
    width: 87.1795vw;
    min-height: 149.2308vw;
    display: flex;
    flex-direction: column;
    gap: 12.8205vw;
    position: relative;
    z-index: 1;
    margin: auto;
  }
  .page-business .sec--look .unit-inner::before {
    content: "";
    background-color: #fff;
    border-radius: 5px;
    width: 87.1795vw;
    height: calc(100% - 50px);
    display: block;
    position: absolute;
    z-index: -1;
    top: 25px;
    right: 0;
  }
  .page-business .sec--look .ver-reverse .unit-inner::before {
    content: "";
    background-color: rgba(198, 217, 244, 0.4);
    right: auto;
    left: 0;
  }
  .page-business .sec--look .unit-main-parts {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7.6923vw;
  }
  .page-business .sec--look .ver-reverse .unit-main-parts {
    flex-direction: column;
  }
  .page-business .sec--look .unit-lead-img {
    border-radius: 5px;
    overflow: hidden;
    width: 75.1282vw;
    aspect-ratio: 293/185;
  }
  .page-business .sec--look .unit-lead-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-business .sec--look .unit-contents {
    width: 75.1282vw;
    padding: 0;
  }
  .page-business .sec--look .unit-tit {
    font-size: 6.1538vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.667;
  }
  .page-business .sec--look .unit-txt {
    border-top: 1px solid #172c49;
    font-size: 4.6154vw;
    letter-spacing: 0.1em;
    line-height: 1.667;
    text-align: justify;
    margin-top: 3.8462vw;
    padding-top: 3.8462vw;
  }
  .page-business .sec--look .unit-sub-parts {
    width: 84.6154vw;
    margin-top: auto;
  }
  .page-business .sec--look .unit-thumb {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7692vw;
  }
  .page-business .sec--look .unit-thumb-img {
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 216/144;
    overflow: hidden;
  }
  .page-business .sec--look .unit-thumb-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-business .sec--look .btn-wrap {
    margin-top: 5.1282vw;
  }
  .page-business .sec--look .page-link-btn {
    min-width: 49.4872vw;
    margin: auto;
  }
  .page-business .sec--look .page-link-btn a {
    padding: 2.5641vw 5.1282vw;
  }
  .page-business .sec--look .page-link-btn span {
    gap: 2.5641vw;
    font-size: 4.6154vw;
    text-indent: 1.2821vw;
  }
  .page-business .sec--look .page-link-btn span::before {
    content: "";
    background-size: 3.0769vw auto;
    width: 8.2051vw;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_contact.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contact .sec--kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contact .sec--kv .sec-wrap {
  background-image: url("../img/contact/kv_img01_pc.jpg");
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contact .sec--kv .sec-wrap {
    background-image: url("../img/contact/kv_img01_sp_2x.jpg");
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contact .sec--lead


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contact .sec--lead .sec-wrap {
  padding: min(4.6296vw, 80px) 0 min(5.787vw, 100px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contact .sec--lead .sec-wrap {
    padding: min(4.6296vw, 80px) 0 0;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contact .sec--tel-info


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-contact .sec--tel-info {
  background-color: #d9d9d9;
  width: 100%;
  position: relative;
}
.page-contact .sec--tel-info .sec-wrap {
  background-color: #fafafa;
  width: 100%;
  position: relative;
  margin-top: min(5.787vw, 100px);
  padding: min(5.787vw, 100px) 0 0;
}
.page-contact .sec--tel-info .unit-wrap {
  background-color: #fff;
  border: 2px solid #172c49;
  border-radius: 10px;
  overflow: hidden;
  width: min(100% - 40px, 1240px);
  margin: auto;
  padding: min(2.8935vw, 50px) min(5.787vw, 100px);
}
.page-contact .sec--tel-info .tel-unit {
  width: 100%;
  display: flex;
  gap: min(1.1574vw, 20px);
  text-align: center;
  justify-content: center;
}
.page-contact .sec--tel-info .tel-unit .unit-head {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  font-size: clamp(16px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-contact .sec--tel-info .tel-unit .unit-head::before {
  content: "";
  background-image: url("../img/cmn/icon_phone_02.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 32px;
  height: 32px;
  display: block;
}
.page-contact .sec--tel-info .unit-inner {
  width: 50%;
  display: flex;
  gap: min(0.5787vw, 10px);
  flex-direction: column;
  text-align: center;
}
.page-contact .sec--tel-info .tel-unit .unit-num {
  color: #172c49;
  font-size: clamp(25px, 2.6042vw, 45px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.page-contact .sec--tel-info .tel-unit .unit-info-time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contact .sec--tel-info {
    background-color: #d9d9d9;
    width: 100%;
    position: relative;
  }
  .page-contact .sec--tel-info .sec-wrap {
    background-color: #fafafa;
    width: 100%;
    position: relative;
    margin-top: 12.8205vw;
    padding: 12.8205vw 0 0;
  }
  .page-contact .sec--tel-info .unit-wrap {
    background-color: #fff;
    border: 2px solid #172c49;
    border-radius: 10px;
    overflow: hidden;
    width: 87.1795vw;
    margin: auto;
    padding: 12.8205vw 2.5641vw;
  }
  .page-contact .sec--tel-info .tel-unit {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5.1282vw;
    text-align: center;
    justify-content: center;
  }
  .page-contact .sec--tel-info .tel-unit .unit-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-size: 5.641vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .page-contact .sec--tel-info .tel-unit .unit-head::before {
    content: "";
    background-image: url("../img/cmn/icon_phone_02.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 40px;
    height: 40px;
    display: block;
  }
  .page-contact .sec--tel-info .unit-inner {
    width: 100%;
    display: flex;
    gap: 2.5641vw;
    flex-direction: column;
    text-align: center;
  }
  .page-contact .sec--tel-info .tel-unit .unit-num {
    color: #172c49;
    font-size: 9.7436vw;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .page-contact .sec--tel-info .tel-unit .unit-info-time {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.6154vw;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊

page-contact
sec__contact_form お問い合わせフォーム共通


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

全体

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.page-contact .sec__contact_form .sec-wrap {
  background-color: #fafafa;
  padding: min(5.787vw, 100px) 0;
}
.page-contact .sec__contact_form .form_wrap {
  background-color: #fff;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-contact .sec__contact_form .sec-wrap {
    padding: 12.8205vw 0;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_about.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about 全体設定


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

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

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


.page-about .sec--kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-about .sec--kv {
  width: 100%;
  position: relative;
}
.page-about .sec--kv .sec-wrap {
  background-image: url("../img/about/kv_img01_pc.jpg");
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-about .sec--kv {
    width: 100%;
    position: relative;
  }
  .page-about .sec--kv .sec-wrap {
    background-image: url("../img/about/kv_img01_sp_2x.jpg");
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about .sec--lead


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


.page-about .sec--company-info


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-about .sec--company-info {
  width: 100%;
  position: relative;
}
.page-about .sec--company-info .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0;
}
.page-about .sec--company-info .company-info-unit {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.page-about .sec--company-info .unit-img {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 780 / 814; */
}
.page-about .sec--company-info .unit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .sec--company-info .unit-contents {
  background-color: rgba(198, 217, 244, 0.4);
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) min(4.0509vw, 70px);
}
.page-about .sec--company-info .unit-tit {
  font-size: clamp(22px, 1.7361vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.page-about .sec--company-info .unit-list {
  width: 100%;
  margin-top: min(1.7361vw, 30px);
}
.page-about .sec--company-info .unit-list dl {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #172c49;
  font-size: clamp(14px, 1.1574vw, 20px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: min(2.0255vw, 35px) min(1.1574vw, 20px);
}
.page-about .sec--company-info .unit-list dl:first-child {
  border-top: 1px solid #172c49;
}
.page-about .sec--company-info .unit-list dt {
  width: 30%;
  color: #172c49;
  font-weight: 500;
}
.page-about .sec--company-info .unit-list dd {
  flex-grow: 1;
}
.page-about .sec--company-info .unit-list dd span {
  display: inline-block;
}
.page-about .sec--company-info .unit-list dd span + span {
  margin-left: 1em;
}
.page-about .sec--company-info .unit-list dd .btn-wrap {
  margin-top: min(1.1574vw, 20px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-about .sec--company-info {
    width: 100%;
    position: relative;
  }
  .page-about .sec--company-info .sec-wrap {
    width: 100%;
    position: relative;
    padding: 17.9487vw 0;
  }
  .page-about .sec--company-info .company-info-unit {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .page-about .sec--company-info .unit-img {
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 390/406;
  }
  .page-about .sec--company-info .unit-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-about .sec--company-info .unit-contents {
    background-color: rgba(198, 217, 244, 0.4);
    width: 100%;
    position: relative;
    padding: 17.9487vw 6.4103vw;
  }
  .page-about .sec--company-info .unit-tit {
    font-size: 6.1538vw;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  .page-about .sec--company-info .unit-list {
    width: 100%;
    margin-top: 7.6923vw;
  }
  .page-about .sec--company-info .unit-list dl {
    border-bottom: 1px solid #172c49;
    width: 100%;
    display: flex;
    gap: 1em;
    font-size: 4.6154vw;
    letter-spacing: 0.05em;
    line-height: 1.556;
    padding: 8.9744vw 2.5641vw;
  }
  .page-about .sec--company-info .unit-list dl:first-child {
    border-top: 1px solid #172c49;
  }
  .page-about .sec--company-info .unit-list dt {
    flex-shrink: 0;
    width: 35%;
    color: #172c49;
    font-weight: 500;
  }
  .page-about .sec--company-info .unit-list dd {
    flex-grow: 1;
  }
  .page-about .sec--company-info .unit-list dd span {
    display: inline-block;
  }
  .page-about .sec--company-info .unit-list dd span + span {
    margin-left: 0;
  }
  .page-about .sec--company-info .unit-list dd .btn-wrap {
    margin-top: 3.8462vw;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about .sec--certification


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-about .sec--certification {
  width: 100%;
  position: relative;
}
.page-about .sec--certification .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0;
}
.page-about .sec--certification .sec-tit {
  width: min(100% - 40px, 1240px);
  font-size: clamp(20px, 2.4194vw, 30px);
  font-weight: 700;
  line-height: 1.333;
  letter-spacing: 0.1em;
  text-align: center;
  text-indent: 0.1em;
  margin: auto;
}
.page-about .sec--certification .certification-unit {
  width: min(100% - 40px, 1060px);
  display: flex;
  gap: min(4.0509vw, 70px);
  margin: min(4.0509vw, 70px) auto 0;
}
.page-about .sec--certification .unit-img {
  width: min(19.6181vw, 339px);
  aspect-ratio: 339/478;
}
.page-about .sec--certification .unit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .sec--certification .unit-contents {
  width: min(37.6157vw, 650px);
  position: relative;
  padding: min(1.1574vw, 20px) 0;
}
.page-about .sec--certification .unit-tit {
  border-bottom: 1px solid #172c49;
  font-size: clamp(16px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: min(0.8681vw, 15px);
}
.page-about .sec--certification .unit-txt {
  font-size: clamp(14px, 1.1574vw, 20px);
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: justify;
  margin-top: min(1.7361vw, 30px);
}
.page-about .sec--certification .unit-list {
  width: 100%;
  margin-top: min(1.1574vw, 20px);
}
.page-about .sec--certification .unit-list dl {
  width: 100%;
  font-size: clamp(10px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: min(1.7361vw, 30px) 0;
}
.page-about .sec--certification .unit-list dd {
  color: #1e5198;
  margin-top: min(0.2894vw, 5px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-about .sec--certification {
    width: 100%;
    position: relative;
  }
  .page-about .sec--certification .sec-wrap {
    width: 100%;
    position: relative;
    padding: 17.9487vw 0 0;
  }
  .page-about .sec--certification .sec-tit {
    width: 87.1795vw;
    font-size: 6.1538vw;
    font-weight: 700;
    line-height: 1.417;
    letter-spacing: 0.1em;
    text-align: center;
    text-indent: 0.1em;
    margin: auto;
  }
  .page-about .sec--certification .certification-unit {
    width: 87.1795vw;
    display: flex;
    flex-direction: column-reverse;
    gap: 0vw;
    margin: 7.6923vw auto 0;
  }
  .page-about .sec--certification .unit-img {
    width: 86.9231vw;
    aspect-ratio: 339/478;
  }
  .page-about .sec--certification .unit-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-about .sec--certification .unit-contents {
    width: 87.1795vw;
    position: relative;
    padding: 5.1282vw 0;
  }
  .page-about .sec--certification .unit-tit {
    border-bottom: 1px solid #172c49;
    font-size: 5.641vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-bottom: 3.8462vw;
  }
  .page-about .sec--certification .unit-txt {
    font-size: 4.6154vw;
    letter-spacing: 0.05em;
    line-height: 1.556;
    text-align: justify;
    margin-top: 7.6923vw;
  }
  .page-about .sec--certification .unit-list {
    width: 100%;
    margin-top: 5.1282vw;
  }
  .page-about .sec--certification .unit-list dl {
    width: 100%;
    font-size: 4.6154vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.556;
    padding: 5.1282vw 0;
  }
  .page-about .sec--certification .unit-list dd {
    color: #1e5198;
    margin-top: 1.2821vw;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about .sec--equipment-list


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-about .sec--equipment-list {
  width: 100%;
  position: relative;
}
.page-about .sec--equipment-list .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 min(7.5231vw, 130px);
}
.page-about .sec--equipment-list .sec-tit {
  width: min(100% - 40px, 1240px);
  font-size: clamp(20px, 2.4194vw, 30px);
  font-weight: 700;
  line-height: 1.333;
  letter-spacing: 0.1em;
  text-align: center;
  text-indent: 0.1em;
  margin: auto;
}
.page-about .sec--equipment-list .sec-lead {
  width: min(100% - 40px, 1240px);
  font-size: clamp(14px, 1.6129vw, 20px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  text-indent: 0.1em;
  margin: min(1.7361vw, 30px) auto 0;
}
.page-about .sec--equipment-list .sec-lead-img-wrap {
  width: min(100% - 40px, 1240px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.6129vw, 20px);
  margin: min(4.0509vw, 70px) auto 0;
}
.page-about .sec--equipment-list .sec-lead-img-wrap .lead-img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 400/261;
}
.page-about .sec--equipment-list .sec-lead-img-wrap .lead-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .sec--equipment-list .equipment-list-unit-wrap {
  width: min(100% - 40px, 1240px);
  margin: min(4.0509vw, 70px) auto 0;
}
.page-about .sec--equipment-list .equipment-list-unit {
  width: 100%;
}
.page-about .sec--equipment-list .equipment-list-unit + .equipment-list-unit {
  margin-top: min(4.0509vw, 70px);
}
.page-about .sec--equipment-list .equipment-list-unit .unit-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.6129vw, 20px);
  margin-top: min(1.1574vw, 20px);
}
.page-about .sec--equipment-list .equipment-list-unit .unit-tit {
  font-size: clamp(16px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-about .sec--equipment-list .equipment-list-unit .unit-list dl {
  background-color: rgba(198, 217, 244, 0.4);
  border-radius: 5px;
  width: 100%;
  display: flex;
  gap: min(0.2315vw, 4px);
  justify-content: space-between;
  font-size: clamp(16px, 1.2731vw, 22px);
  letter-spacing: 0.1em;
  line-height: 1.455;
}
.page-about .sec--equipment-list .equipment-list-unit .unit-list dt,
.page-about .sec--equipment-list .equipment-list-unit .unit-list dd {
  padding: min(1.1574vw, 20px);
}
.page-about .sec--equipment-list .equipment-list-unit .unit-list dd {
  flex-shrink: 0;
  border-left: 1px solid #fff;
  width: min(4.6296vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: min(0.8102vw, 14px);
  padding-right: min(0.8102vw, 14px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-about .sec--equipment-list {
    width: 100%;
    position: relative;
  }
  .page-about .sec--equipment-list .sec-wrap {
    width: 100%;
    position: relative;
    padding: 17.9487vw 0;
  }
  .page-about .sec--equipment-list .sec-tit {
    width: 87.1795vw;
    font-size: 6.1538vw;
    font-weight: 700;
    line-height: 1.417;
    letter-spacing: 0.1em;
    text-align: center;
    text-indent: 0.1em;
    margin: auto;
  }
  .page-about .sec--equipment-list .sec-lead {
    width: 87.1795vw;
    font-size: 4.6154vw;
    line-height: 1.556;
    letter-spacing: 0.05em;
    text-align: justify;
    text-indent: 0;
    margin: 3.8462vw auto 0;
  }
  .page-about .sec--equipment-list .sec-lead-img-wrap {
    width: 87.1795vw;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5.1282vw;
    margin: 7.6923vw auto 0;
  }
  .page-about .sec--equipment-list .sec-lead-img-wrap .lead-img {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 343/210;
  }
  .page-about .sec--equipment-list .sec-lead-img-wrap .lead-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-about .sec--equipment-list .equipment-list-unit-wrap {
    width: 87.1795vw;
    margin: 7.6923vw auto 0;
  }
  .page-about .sec--equipment-list .equipment-list-unit {
    width: 100%;
  }
  .page-about .sec--equipment-list .equipment-list-unit + .equipment-list-unit {
    margin-top: 17.9487vw;
  }
  .page-about .sec--equipment-list .equipment-list-unit .unit-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5641vw;
    margin-top: 3.8462vw;
  }
  .page-about .sec--equipment-list .equipment-list-unit .unit-tit {
    font-size: 5.1282vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .page-about .sec--equipment-list .equipment-list-unit .unit-list dl {
    background-color: rgba(198, 217, 244, 0.4);
    border-radius: 5px;
    width: 100%;
    display: flex;
    gap: 1.0256vw;
    justify-content: space-between;
    font-size: 4.6154vw;
    letter-spacing: 0.1em;
    line-height: 1.556;
  }
  .page-about .sec--equipment-list .equipment-list-unit .unit-list dt,
  .page-about .sec--equipment-list .equipment-list-unit .unit-list dd {
    padding: 3.8462vw;
  }
  .page-about .sec--equipment-list .equipment-list-unit .unit-list dd {
    flex-shrink: 0;
    border-left: 1px solid #fff;
    width: 20.5128vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 2.5641vw;
    padding-right: 2.5641vw;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 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 表示
--------------------------------------------------------- */
.page-archive .sec--kv {
  width: 100%;
  position: relative;
}
.page-archive .sec--kv .sec-wrap {
  background-image: url("../img/post/kv_img01_pc.jpg");
  width: 100%;
  position: relative;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-archive .sec--kv .sec-wrap {
    background-image: url("../img/post/kv_img01_sp_2x.jpg");
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-about .sec--lead


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


.page-archive .sec__post_list


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-archive .sec--post-list {
  width: 100%;
  position: relative;
}
.page-archive .sec--post-list .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0 min(8.6806vw, 150px);
}
.page-archive .sec--post-list .post_list_wrap {
  width: min(100% - 40px, 1240px);
  margin: auto;
}
.page-archive .sec--post-list .post_list_wrap ul {
  width: 100%;
  font-size: clamp(14px, 1.1574vw, 20px);
  line-height: 1.5;
}
.page-archive .sec--post-list .post_list_wrap ul li {
  border-bottom: 1px solid #172c49;
  width: 100%;
  display: flex;
  gap: min(0.5787vw, 10px);
  align-items: flex-start;
  padding: min(2.3148vw, 40px) min(0.5787vw, 10px);
}
.page-archive .sec--post-list .post_list_wrap ul li:first-child {
  border-top: 1px solid #172c49;
}
.page-archive .sec--post-list .unit_head {
  flex-shrink: 0;
  width: min(20.8333vw, 360px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2em;
  align-items: center;
}
.page-archive .sec--post-list .unit_category {
  background-color: #172c49;
  border-radius: 9999px;
  width: auto;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 500;
  padding: 0.2em 2em;
}
.page-archive .sec--post-list .unit_category span {
  min-width: 0;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.page-archive .sec--post-list .unit_date {
  font-size: clamp(14px, 1.3889vw, 24px);
  font-weight: 500;
}
.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 .post_page_pagination {
  margin-top: min(4.0509vw, 70px);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-archive .sec--post-list {
    width: 100%;
    position: relative;
  }
  .page-archive .sec--post-list .sec-wrap {
    width: 100%;
    position: relative;
    padding: 12.8205vw 0 25.641vw;
  }
  .page-archive .sec--post-list .post_list_wrap {
    width: 87.1795vw;
    margin: auto;
  }
  .page-archive .sec--post-list .post_list_wrap ul {
    width: 100%;
    font-size: 4.6154vw;
    line-height: 1.556;
  }
  .page-archive .sec--post-list .post_list_wrap ul li {
    border-bottom: 1px solid #172c49;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5641vw;
    align-items: flex-start;
    padding: 7.6923vw 2.5641vw;
  }
  .page-archive .sec--post-list .post_list_wrap ul li:first-child {
    border-top: 1px solid #172c49;
  }
  .page-archive .sec--post-list .unit_head {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 1em;
    align-items: center;
  }
  .page-archive .sec--post-list .unit_category {
    background-color: #172c49;
    border-radius: 9999px;
    width: auto;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4.1026vw;
    font-weight: 500;
    padding: 0.2em 2em;
  }
  .page-archive .sec--post-list .unit_category span {
    min-width: 0;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
  }
  .page-archive .sec--post-list .unit_date {
    font-size: 4.6154vw;
    font-weight: 700;
  }
  .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 .post_page_pagination {
    margin-top: 17.9487vw;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_archive.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-archive-products 全体設定


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

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

/* カテゴリページ用 */
.page-archive-products.taxonomy-products .archive-title {
  width: min(71.7593vw, 1240px);
  font-size: clamp(14px, 1.3889vw, 24px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  margin: min(1.1574vw, 20px) auto 0;
}

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


.page-archive-products .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-archive-products .sec--kv {
  width: 100%;
  position: relative;
}
.page-archive-products .sec--kv .sec-wrap {
  background-image: url("../img/products/kv_img01_pc.jpg");
  width: 100%;
  position: relative;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-archive-products .sec--kv .sec-wrap {
    background-image: url("../img/products/kv_img01_sp_2x.jpg");
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-contact .sec--lead


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-archive-products .sec--lead .sec-wrap {
  padding: min(2.8935vw, 50px) 0 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-archive-products .sec--lead .sec-wrap {
    padding: min(10.2564vw, 40px) 0 0;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　.page-archive-products .sec__page_filter_menu
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-archive-products .sec__page_filter_menu {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  position: relative;
  z-index: 1;
  /* カスタムチェックボックスのスタイル */
}
.page-archive-products .sec__page_filter_menu .filter_menu_wrap {
  width: min(71.7593vw, 1240px);
  margin: auto;
}
.page-archive-products .sec__page_filter_menu .filter_menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-archive-products .sec__page_filter_menu .filter_menu li {
  list-style: none;
  padding: 0 2em;
}
.page-archive-products .sec__page_filter_menu .filter_menu label {
  position: relative;
  cursor: pointer;
  font-size: clamp(16px, 1.1574vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-archive-products .sec__page_filter_menu {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: relative;
    z-index: 1;
    /* カスタムチェックボックスのスタイル */
  }
  .page-archive-products .sec__page_filter_menu .filter_menu_wrap {
    width: 87.1795vw;
    margin: auto;
  }
  .page-archive-products .sec__page_filter_menu .filter_menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5641vw;
    align-items: center;
    justify-content: center;
  }
  .page-archive-products .sec__page_filter_menu .filter_menu li {
    list-style: none;
    padding: 0 2em;
  }
  .page-archive-products .sec__page_filter_menu .filter_menu label {
    position: relative;
    cursor: pointer;
    font-size: 3.5897vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-archive-products .sec--products-contents


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-archive-products .sec--products-contents {
  width: 100%;
  position: relative;
}
.page-archive-products .sec--products-contents .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0;
}
.page-archive-products .sec--products-contents .products-list-wrap {
  width: min(100% - 40px, 1240px);
  margin: min(5.787vw, 100px) auto 0;
}
.page-archive-products .sec--products-contents .products-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(5.787vw, 100px) min(1.1574vw, 20px);
}
.page-archive-products .sec--products-contents .products-unit {
  width: 100%;
  position: relative;
}
.page-archive-products .sec--products-contents .products-unit a {
  width: 100%;
  height: 100%;
  display: block;
}
.page-archive-products .sec--products-contents .products-unit a:hover {
  opacity: 1;
}
.page-archive-products .sec--products-contents .unit-img {
  width: 100%;
  /* height: 100%; */
  aspect-ratio: 400/486;
  overflow: hidden;
}
.page-archive-products .sec--products-contents .unit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-archive-products .sec--products-contents .products-unit a:hover .unit-img img {
  transform: scale(1.1);
}
.page-archive-products .sec--products-contents .unit-contnets {
  width: 100%;
  position: relative;
  padding: min(0.5787vw, 10px) 0;
}
.page-archive-products .sec--products-contents .products-unit a:hover .unit-contnets {
  text-decoration: underline;
}
.page-archive-products .sec--products-contents .unit-tit {
  font-size: clamp(14px, 1.2731vw, 22px);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-archive-products .sec--products-contents .unit-price-parts {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5em;
  margin-top: min(0.5787vw, 10px);
}
.page-archive-products .sec--products-contents .unit-price-parts span {
  display: inline-block;
}
.page-archive-products .sec--products-contents .unit-price {
  font-size: clamp(16px, 2.0833vw, 36px);
  font-weight: 700;
  letter-spacing: 0;
}
.page-archive-products .sec--products-contents .unit-price-after {
  font-size: clamp(12px, 1.2731vw, 22px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-archive-products .sec--products-contents .post_page_pagination {
  margin-top: min(4.0509vw, 70px);
}
.page-archive-products .sec--products-contents .post_page_pagination ul {
  gap: 30px;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-archive-products .sec--products-contents {
    width: 100%;
    position: relative;
  }
  .page-archive-products .sec--products-contents .sec-wrap {
    width: 100%;
    position: relative;
    padding: 25.641vw 0;
  }
  .page-archive-products .sec--products-contents .products-list-wrap {
    width: 87.1795vw;
    margin: 10.2564vw auto 0;
  }
  .page-archive-products .sec--products-contents .products-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7.6923vw 1.2821vw;
  }
  .page-archive-products .sec--products-contents .products-unit {
    width: 100%;
    position: relative;
  }
  .page-archive-products .sec--products-contents .products-unit a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .page-archive-products .sec--products-contents .products-unit a:hover {
    opacity: 1;
  }
  .page-archive-products .sec--products-contents .unit-img {
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 169/190;
    overflow: hidden;
  }
  .page-archive-products .sec--products-contents .unit-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-archive-products .sec--products-contents .products-unit a:hover .unit-img img {
    transform: scale(1.1);
  }
  .page-archive-products .sec--products-contents .unit-contnets {
    width: 100%;
    position: relative;
    padding: 2.5641vw 0;
  }
  .page-archive-products .sec--products-contents .products-unit a:hover .unit-contnets {
    text-decoration: underline;
  }
  .page-archive-products .sec--products-contents .unit-tit {
    font-size: 4.1026vw;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
  }
  .page-archive-products .sec--products-contents .unit-price-parts {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5em;
    margin-top: 2.5641vw;
  }
  .page-archive-products .sec--products-contents .unit-price-parts span {
    display: inline-block;
  }
  .page-archive-products .sec--products-contents .unit-price {
    font-size: 5.641vw;
    font-weight: 700;
    letter-spacing: 0;
  }
  .page-archive-products .sec--products-contents .unit-price-after {
    font-size: 3.0769vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .page-archive-products .sec--products-contents .post_page_pagination {
    margin-top: 12.8205vw;
  }
  .page-archive-products .sec--products-contents .post_page_pagination ul {
    gap: 5.1282vw;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_single.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-single .sec--kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-single .sec--kv {
  width: 100%;
  position: relative;
}
.page-single .sec--kv .sec-wrap {
  background-image: url("../img/post/kv_img01_pc.jpg");
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-single .sec--kv {
    width: 100%;
    position: relative;
  }
  .page-single .sec--kv .sec-wrap {
    background-image: url("../img/post/kv_img01_sp_2x.jpg");
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-single .sec__post_content


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-single .sec__post_content {
  width: 100%;
  position: relative;
}
.page-single .sec__post_content .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(2.8935vw, 50px) 0 min(5.787vw, 100px);
}
.page-single .sec__post_content .post_content_wrap {
  width: min(100% - 40px, 1240px);
  margin: auto;
  padding: min(2.8935vw, 50px) 0;
}
.page-single .sec__post_content .post_unit {
  width: 100%;
  font-size: clamp(14px, 1.2731vw, 22px);
  letter-spacing: 0.05em;
  line-height: 1.455;
}
.page-single .sec__post_content .unit_head {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2em;
  align-items: center;
}
.page-single .sec__post_content .unit_date {
  font-weight: 700;
}
.page-single .sec__post_content .unit_category {
  background-color: #0a13b6;
  width: auto;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: min(3.5897vw, 14px);
  padding: 0.4em 2em;
}
.page-single .sec__post_content .unit_category span {
  min-width: 0;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.page-single .sec__post_content .unit_tit {
  font-size: clamp(20px, 1.3889vw, 24px);
  font-weight: 500;
  line-height: 1.417;
  letter-spacing: 0.05em;
  margin-top: min(1.1574vw, 20px);
}
.page-single .sec__post_content .unit_detail {
  text-align: justify;
  margin-top: min(2.8935vw, 50px);
}
.page-single .sec__post_content .btn-wrap {
  width: 100%;
  display: flex;
  gap: min(1.3889vw, 24px);
  justify-content: center;
  margin: min(8.6806vw, 150px) auto 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-single .sec__post_content {
    width: 100%;
    position: relative;
  }
  .page-single .sec__post_content .sec-wrap {
    width: 100%;
    position: relative;
    padding: 12.8205vw 0 25.641vw;
  }
  .page-single .sec__post_content .post_content_wrap {
    border-top: 1px solid #1c1c1e;
    width: 87.1795vw;
    margin: auto;
    padding: 5.1282vw 0;
  }
  .page-single .sec__post_content .post_unit {
    width: 100%;
    font-size: 4.6154vw;
    letter-spacing: 0.05em;
    line-height: 1.556;
  }
  .page-single .sec__post_content .unit_head {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 2em;
    align-items: center;
  }
  .page-single .sec__post_content .unit_date {
    font-weight: 700;
  }
  .page-single .sec__post_content .unit_category {
    background-color: #0a13b6;
    width: auto;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.5897vw;
    padding: 0.4em 2em;
  }
  .page-single .sec__post_content .unit_category span {
    min-width: 0;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
  }
  .page-single .sec__post_content .unit_tit {
    font-size: 5.1282vw;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 3.8462vw;
  }
  .page-single .sec__post_content .unit_detail {
    text-align: justify;
    margin-top: 5.1282vw;
  }
  .page-single .sec__post_content .btn-wrap {
    width: 100%;
    display: flex;
    gap: 2.8205vw;
    justify-content: center;
    margin: 25.641vw auto 0;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_single-products.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-single-products 全体設定


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

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

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


.page-single-products .sec--kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-single-products .sec--kv {
  width: 100%;
  position: relative;
}
.page-single-products .sec--kv .sec-wrap {
  background-image: url("../img/products/kv_img01_pc.jpg");
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-single-products .sec--kv {
    width: 100%;
    position: relative;
  }
  .page-single-products .sec--kv .sec-wrap {
    background-image: url("../img/products/kv_img01_sp_2x.jpg");
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-single-products .sec--products-contents


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-single-products .sec--products-contents {
  width: 100%;
  position: relative;
  /* .unit-size-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .unit-size-table tr {
    width: 100%;
    font-size: size-clmp-vw(12, 20, 1728);
    line-height: line-height(22, 32);
    letter-spacing: 0;
    text-align: center;
  }

  .unit-size-table tr:nth-child(odd) {
    background-color: #d9d9d9;
  }

  .unit-size-table tr:first-child {
    background-color: $main-color;
  }

  .unit-size-table tr th {
    width: 20%;
    color: $txt-color02;
    font-weight: 500;
    padding: size-min-vw(10, 1728) 0;
  }

  .unit-size-table tr td {
    width: 20%;
    padding: size-min-vw(10, 1728) 0;
  } */
}
.page-single-products .sec--products-contents .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(5.787vw, 100px) 0 0;
}
.page-single-products .sec--products-contents .products-unit {
  width: min(100% - 40px, 1240px);
  margin: auto;
}
.page-single-products .sec--products-contents .unit-head-wrap {
  width: 100%;
  display: flex;
  gap: min(1.4468vw, 25px);
  justify-content: space-between;
}
.page-single-products .sec--products-contents .unit-img-warp {
  width: min(50vw, 620px);
  margin: 0;
}
.page-single-products .sec--products-contents .unit-head {
  width: min(47.9839vw, 595px);
}
.page-single-products .sec--products-contents .unit-tit {
  border-bottom: 4px solid #1c1c1e;
  width: 100%;
  font-size: clamp(22px, 1.8519vw, 32px);
  font-weight: 500;
  line-height: 1.313;
  letter-spacing: 0;
  padding-bottom: min(0.8681vw, 15px);
}
.page-single-products .sec--products-contents .unit-info {
  width: 100%;
  margin-top: min(0.8681vw, 15px);
}
.page-single-products .sec--products-contents .unit-num-parts {
  width: 100%;
  display: flex;
  gap: 1em;
  font-size: clamp(12px, 1.2731vw, 22px);
  font-weight: 500;
  line-height: 1.455;
  letter-spacing: 0;
}
.page-single-products .sec--products-contents .unit-num-head {
  color: #e24b4b;
}
.page-single-products .sec--products-contents .unit-price-parts {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  margin-top: min(2.3148vw, 40px);
}
.page-single-products .sec--products-contents .unit-price-parts span {
  display: inline-block;
}
.page-single-products .sec--products-contents .unit-price {
  font-size: clamp(30px, 2.3148vw, 40px);
  font-weight: 700;
  letter-spacing: 0;
}
.page-single-products .sec--products-contents .unit-price-after {
  font-size: clamp(14px, 1.3889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-single-products .sec--products-contents .unit-detail {
  width: 100%;
  margin-top: min(2.3148vw, 40px);
}
.page-single-products .sec--products-contents .unit-description {
  width: 100%;
  font-size: clamp(14px, 1.1574vw, 20px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
  text-align: justify;
}
.page-single-products .sec--products-contents .unit-size-table {
  width: 100%;
  margin-top: min(2.8935vw, 50px);
}
.page-single-products .sec--products-contents .unit-spec-list {
  width: 100%;
  margin-top: min(2.3148vw, 40px);
}
.page-single-products .sec--products-contents .unit-spec-list dl {
  border-bottom: 2px solid #1c1c1e;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  font-size: clamp(12px, 1.0417vw, 18px);
  line-height: 1.889;
  letter-spacing: 0;
  padding: min(0.8681vw, 15px) 0;
}
.page-single-products .sec--products-contents .unit-spec-list dl:first-child {
  border-top: 2px solid #1c1c1e;
}
.page-single-products .sec--products-contents .unit-spec-list dl dt {
  flex-shrink: 0;
  width: 25%;
  color: #e24b4b;
}
.page-single-products .sec--products-contents .unit-spec-list dl dd {
  width: 75%;
}
.page-single-products .sec--products-contents .btn-wrap {
  width: 100%;
  margin: min(2.8935vw, 50px) auto 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-single-products .sec--products-contents {
    width: 100%;
    position: relative;
    /* .unit-size-table {
      width: 100%;
      margin-top: size-convert-vw(30, 390);
    }

    .unit-size-table table {
      width: 100%;
      border-collapse: collapse;
    }

    .unit-size-table tr {
      width: 100%;
      font-size: size-convert-vw(13, 390);
      line-height: line-height(13, 23);
      letter-spacing: 0;
      text-align: center;
    }

    .unit-size-table tr:nth-child(odd) {
      background-color: #d9d9d9;
    }

    .unit-size-table tr:first-child {
      background-color: $main-color;
    }

    .unit-size-table tr th {
      width: 20%;
      color: $txt-color02;
      font-weight: 500;
      padding: size-convert-vw(4, 390) 0;
    }

    .unit-size-table tr td {
      width: 20%;
      padding: size-convert-vw(4, 390) 0;
    } */
  }
  .page-single-products .sec--products-contents .sec-wrap {
    width: 100%;
    position: relative;
    padding: 10.2564vw 0 0;
  }
  .page-single-products .sec--products-contents .products-unit {
    width: 87.1795vw;
    margin: auto;
  }
  .page-single-products .sec--products-contents .unit-head-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12.8205vw;
    justify-content: space-between;
  }
  .page-single-products .sec--products-contents .unit-img-warp {
    width: 100%;
    margin: 0;
  }
  .page-single-products .sec--products-contents .unit-head {
    width: 100%;
  }
  .page-single-products .sec--products-contents .unit-tit {
    border-bottom: 2px solid #1c1c1e;
    width: 100%;
    font-size: 6.1538vw;
    font-weight: 500;
    line-height: 1.417;
    letter-spacing: 0;
    padding-bottom: 3.8462vw;
  }
  .page-single-products .sec--products-contents .unit-info {
    width: 100%;
    margin-top: 3.8462vw;
  }
  .page-single-products .sec--products-contents .unit-num-parts {
    width: 100%;
    display: flex;
    gap: 1em;
    font-size: 3.5897vw;
    font-weight: 500;
    line-height: 1.286;
    letter-spacing: 0;
  }
  .page-single-products .sec--products-contents .unit-num-head {
    color: #e24b4b;
  }
  .page-single-products .sec--products-contents .unit-price-parts {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    margin-top: 5.1282vw;
  }
  .page-single-products .sec--products-contents .unit-price-parts span {
    display: inline-block;
  }
  .page-single-products .sec--products-contents .unit-price {
    font-size: 8.7179vw;
    font-weight: 700;
    letter-spacing: 0;
  }
  .page-single-products .sec--products-contents .unit-price-after {
    font-size: 3.5897vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .page-single-products .sec--products-contents .unit-detail {
    width: 100%;
    margin-top: 5.1282vw;
  }
  .page-single-products .sec--products-contents .unit-description {
    width: 100%;
    font-size: 3.5897vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0;
    text-align: justify;
  }
  .page-single-products .sec--products-contents .unit-spec-list {
    width: 100%;
    margin-top: 7.6923vw;
  }
  .page-single-products .sec--products-contents .unit-spec-list dl {
    border-bottom: 2px solid #1c1c1e;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    font-size: 3.0769vw;
    line-height: 2;
    letter-spacing: 0;
    padding: 3.8462vw 0;
  }
  .page-single-products .sec--products-contents .unit-spec-list dl dt {
    flex-shrink: 0;
    width: 25%;
    color: #e24b4b;
  }
  .page-single-products .sec--products-contents .unit-spec-list dl dd {
    width: 75%;
  }
  .page-single-products .sec--products-contents .btn-wrap {
    width: 100%;
    display: flex;
    gap: 6.1538vw;
    justify-content: center;
    margin: 7.6923vw auto 0;
  }
} /* スマホ 表示 end */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page-single-products .sec--products-cmn-parts


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page-single-products .sec--products-cmn-parts {
  width: 100%;
  position: relative;
}
.page-single-products .sec--products-cmn-parts .sec-wrap {
  width: 100%;
  position: relative;
  padding: min(7.5231vw, 130px) 0;
}
.page-single-products .sec--products-cmn-parts .sales-site-info-warp {
  width: min(100% - 40px, 1240px);
  margin: auto;
}
.page-single-products .sec--products-cmn-parts .sales-site-info-list {
  width: 100%;
}
.page-single-products .sec--products-cmn-parts .sales-site-info-list li {
  border-bottom: 1px solid #1c1c1e;
  width: 100%;
}
.page-single-products .sec--products-cmn-parts .sales-site-info-list li:first-child {
  border-top: 1px solid #1c1c1e;
}
.page-single-products .sec--products-cmn-parts .sales-site-info-list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: min(1.4468vw, 25px) min(1.7361vw, 30px);
  padding-left: 0;
}
.page-single-products .sec--products-cmn-parts .sales-site-info-list a::after {
  content: "";
  background-image: url("../img/cmn/icon_arrow04.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 10px;
  aspect-ratio: 10/18;
  display: block;
}
.page-single-products .sec--products-cmn-parts .sales-site-info-list a span {
  display: inline-block;
  font-size: clamp(16px, 1.1574vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.page-single-products .sec--products-cmn-parts .products-list-wrap {
  width: min(100% - 40px, 1240px);
  margin: min(8.6806vw, 150px) auto 0;
}
.page-single-products .sec--products-cmn-parts .products-list-tit {
  width: 100%;
  font-size: clamp(20px, 1.7361vw, 30px);
  font-weight: 500;
  line-height: 1.333;
  letter-spacing: 0.05em;
  text-align: center;
  text-indent: 0.05em;
}
.page-single-products .sec--products-cmn-parts .products-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(2.6042vw, 45px);
  margin: min(2.8935vw, 50px) auto 0;
}
.page-single-products .sec--products-cmn-parts .products-unit {
  width: 100%;
  position: relative;
}
.page-single-products .sec--products-cmn-parts .products-unit a {
  width: 100%;
  height: 100%;
  display: block;
}
.page-single-products .sec--products-cmn-parts .products-unit a:hover {
  opacity: 1;
}
.page-single-products .sec--products-cmn-parts .unit-img {
  width: 100%;
  /* height: 100%; */
  aspect-ratio: 280/340;
  overflow: hidden;
}
.page-single-products .sec--products-cmn-parts .unit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-single-products .sec--products-cmn-parts .products-unit a:hover .unit-img img {
  transform: scale(1.1);
}
.page-single-products .sec--products-cmn-parts .unit-contnets {
  width: 100%;
  position: relative;
  padding: min(0.5787vw, 10px) 0;
}
.page-single-products .sec--products-cmn-parts .products-unit a:hover .unit-contnets {
  text-decoration: underline;
}
.page-single-products .sec--products-cmn-parts .unit-tit {
  font-size: clamp(14px, 1.2731vw, 22px);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-single-products .sec--products-cmn-parts .unit-price-parts {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5em;
  margin-top: min(0.5787vw, 10px);
}
.page-single-products .sec--products-cmn-parts .unit-price-parts span {
  display: inline-block;
}
.page-single-products .sec--products-cmn-parts .unit-price {
  font-size: clamp(16px, 1.7361vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
}
.page-single-products .sec--products-cmn-parts .unit-price-after {
  font-size: clamp(12px, 1.1574vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-single-products .sec--products-cmn-parts .btn-wrap {
  width: 100%;
  display: flex;
  gap: 6.1538vw;
  justify-content: center;
  margin: min(5.787vw, 100px) auto 0;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-single-products .sec--products-cmn-parts {
    width: 100%;
    position: relative;
  }
  .page-single-products .sec--products-cmn-parts .sec-wrap {
    width: 100%;
    position: relative;
    padding: 17.9487vw 0;
  }
  .page-single-products .sec--products-cmn-parts .sales-site-info-warp {
    width: 87.1795vw;
    margin: auto;
  }
  .page-single-products .sec--products-cmn-parts .sales-site-info-list {
    width: 100%;
  }
  .page-single-products .sec--products-cmn-parts .sales-site-info-list li {
    border-bottom: 1px solid #1c1c1e;
    width: 100%;
  }
  .page-single-products .sec--products-cmn-parts .sales-site-info-list li:first-child {
    border-top: 1px solid #1c1c1e;
  }
  .page-single-products .sec--products-cmn-parts .sales-site-info-list li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 3.8462vw;
    padding-left: 0;
  }
  .page-single-products .sec--products-cmn-parts .sales-site-info-list a::after {
    content: "";
    background-image: url("../img/cmn/icon_arrow04.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 7px;
    aspect-ratio: 10/18;
    display: block;
  }
  .page-single-products .sec--products-cmn-parts .sales-site-info-list a span {
    display: inline-block;
    font-size: 4.1026vw;
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: 0.05em;
  }
  .page-single-products .sec--products-cmn-parts .products-list-wrap {
    width: 87.1795vw;
    margin: 17.9487vw auto 0;
  }
  .page-single-products .sec--products-cmn-parts .products-list-tit {
    width: 100%;
    font-size: 6.1538vw;
    font-weight: 500;
    line-height: 1.417;
    letter-spacing: 0.05em;
    text-align: center;
    text-indent: 0.05em;
  }
  .page-single-products .sec--products-cmn-parts .products-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12.8205vw 1.2821vw;
    margin: 7.6923vw auto 0;
  }
  .page-single-products .sec--products-cmn-parts .products-unit {
    width: 100%;
    position: relative;
  }
  .page-single-products .sec--products-cmn-parts .products-unit a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .page-single-products .sec--products-cmn-parts .products-unit a:hover {
    opacity: 1;
  }
  .page-single-products .sec--products-cmn-parts .unit-img {
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 169/190;
    overflow: hidden;
  }
  .page-single-products .sec--products-cmn-parts .unit-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-single-products .sec--products-cmn-parts .products-unit a:hover .unit-img img {
    transform: scale(1.1);
  }
  .page-single-products .sec--products-cmn-parts .unit-contnets {
    width: 100%;
    position: relative;
    padding: 2.5641vw 0;
  }
  .page-single-products .sec--products-cmn-parts .products-unit a:hover .unit-contnets {
    text-decoration: underline;
  }
  .page-single-products .sec--products-cmn-parts .unit-tit {
    font-size: 4.1026vw;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
  }
  .page-single-products .sec--products-cmn-parts .unit-price-parts {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2em;
    margin-top: 2.5641vw;
  }
  .page-single-products .sec--products-cmn-parts .unit-price-parts span {
    display: inline-block;
  }
  .page-single-products .sec--products-cmn-parts .unit-price {
    font-size: 5.641vw;
    font-weight: 700;
    letter-spacing: 0;
  }
  .page-single-products .sec--products-cmn-parts .unit-price-after {
    font-size: 3.0769vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .page-single-products .sec--products-cmn-parts .btn-wrap {
    width: 100%;
    display: flex;
    gap: 6.1538vw;
    justify-content: center;
    margin: 17.9487vw auto 0;
  }
} /* スマホ 表示 end */
/* 変更履歴 */
/* 2025/07/16 */
/* pages/_privacy-policy.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_privacy-policy .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊
＊
＊
＊
＊
＊　プライバシーポリシー ページ　　page_praivacy
＊
＊
＊
＊
＊
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_privacy-policy .sec__privacy-policy {
  width: 100%;
  position: relative;
}
.page_privacy-policy .sec__privacy-policy .sec_wrap {
  max-width: 1000px;
  width: 96vw;
  position: relative;
  margin: auto;
  padding: 6.25vw 0;
}
.page_privacy-policy .sec__privacy-policy .sec_tit {
  width: 100%;
  position: relative;
  text-align: center;
  margin: auto;
}
.page_privacy-policy .sec__privacy-policy .sec_tit::after {
  content: "";
  background-image: linear-gradient(to right, #1c1c1e 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: #172c49;
  font-size: clamp(20px, 2.4vw, 24px);
  letter-spacing: 0.05em;
}
.page_privacy-policy .sec__privacy-policy .sec_tit .ja {
  display: block;
  font-size: clamp(30px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 10px;
}
.page_privacy-policy .sec__privacy-policy .sec_lead {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: 100px;
}
.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;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap dl {
  letter-spacing: 0.08em;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap dl + dl {
  margin-top: 60px;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap dl dt {
  font-weight: 600;
}
.page_privacy-policy .sec__privacy-policy .unit_wrap dl dd {
  margin-top: 1em;
}

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