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

ブレイクポイント

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

カラー

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

フォント

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

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.05em;
}

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

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

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

*****************************************************/
/* 使用例 */
.size_examplePar {
  width: 2.813%;
}

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

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

*****************************************************/
/* 使用例 */
.size_examplePar02 {
  width: 2.868%;
}

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

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

*****************************************************/
/* 使用例 */
.size_exampleVW {
  width: 4.6154vw;
}

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

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

*****************************************************/
/* 使用例 */
.size_exampleVH {
  width: 2.8125vh;
}

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

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

*****************************************************/
/* 使用例 */
.size_minVW {
  width: min(50vw, 320px);
}

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

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

*****************************************************/
/* 使用例 */
.size_maxVW {
  width: max(15.625vw, 100px);
}

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

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

*****************************************************/
/* 使用例 */
.size_clmpVW {
  font-size: clamp(14px, 1.3542vw, 26px);
}

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

line-heightの値 Photoshop 
行送りの数値（px）÷ フォントサイズ（px）

*****************************************************/
/* 使用例 */
.size_line-height {
  line-height: 1.667;
}

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

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

*****************************************************/
/* 使用例 */
.fontsize_example {
  font-size: clamp(1rem, 0.7rem + 0.78vw, 2.2rem) /* FontSizeClamp (10 - 22px, 375 - 1920px) */;
}

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

リセットここから

*****************************************************/
/* 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-start: 0;
  margin-block-end: 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/06/08 */
/* _typography.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec_tit


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec_tit {
  width: 100%;
}
.sec_tit .tit_en {
  width: min(21.1227vw, 365px);
  margin: auto;
}
.sec_tit .tit_ja {
  display: block;
  color: #0a13b6;
  font-size: clamp(22px, 1.5046vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: min(1.1574vw, 20px);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* /base/_base.scss */
/*アウトライン確認用*/
/* *,
*::before,
*::after {
  outline: 1px solid rgba(255, 0, 255, 0.5);
} */
/* 表示非表示設定 */
.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;
}

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

.main_contents.page_top img,
.main_contents.page_contents img {
  width: 100%;
  display: block;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .main_contents {
    margin-top: 65px;
  }
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* 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;
}

/* 変更履歴 */
/* 2025/06/08 */
/* /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: 35px;
  height: 35px;
  display: block;
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 20px;
  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: 65px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  /* =========================================================

   g_nav sp

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

   info_nav SP時 今回は非表示

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

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

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

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

  .info_nav ul li a span {
    display: block;
    color: $txt_color02;
    font-size: sizeClmpVW(10, 14, 390);
    font-weight: 700;
  } */
}
.js_header_origin.js_sp_view_navi.js_fixed_sp_header {
  height: 65px;
}
.js_header_origin.js_sp_view_navi .header_inner {
  background-color: rgb(10, 19, 182);
  /*box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.25);*/
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
  padding: 17px 12px;
}
.js_header_origin.js_sp_view_navi.js_fixed_sp_header .header_inner {
  background-color: rgb(10, 19, 182);
}
.js_header_origin.js_sp_view_navi .header_logo {
  width: 89px;
  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: rgb(10, 19, 182);
  width: 100%;
  height: 80vh;
  position: absolute;
  z-index: 9999;
  top: 65px;
  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: 30px 20px;
}
.js_header_origin.js_sp_view_navi .g_nav > ul li a::after {
  content: "";
  background-image: url("../img/cmn/header_menu_arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 6px;
  height: 14px;
  display: block;
}
.js_header_origin.js_sp_view_navi .g_nav ul li a p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.js_header_origin.js_sp_view_navi .g_nav ul li a p span {
  display: inline-block;
  color: #fff;
  font-size: 3.8462vw;
  font-weight: 400;
  line-height: 1.667;
}

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

PC 表示 ヘッダー

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

   g_nav PC

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

  info_nav PC

  ========================================================= */
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header {
  background-color: rgba(10, 19, 182, 0.55);
  height: 60px;
}
.js_header_origin.js_pc_view_navi .header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  margin: auto;
}
.js_header_origin.js_pc_view_navi .header_logo {
  align-self: center;
  max-width: 294px;
  width: 17.0139vw;
  margin-left: min(1.7361vw, 30px);
  transition: all 0.3s ease;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .header_logo {
  width: 11.5741vw;
}
.js_header_origin.js_pc_view_navi .header_logo a {
  display: flex;
}
.js_header_origin.js_pc_view_navi .g_nav {
  align-self: center;
  max-width: 1000px;
  width: 57.8704vw;
  margin-left: auto;
}
.js_header_origin.js_pc_view_navi .g_nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 min(0.5787vw, 10px);
}
.js_header_origin.js_pc_view_navi .g_nav ul li {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js_header_origin.js_pc_view_navi .g_nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: min(0.5787vw, 10px) 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: #fff;
  font-size: clamp(14px, 0.9259vw, 16px);
  font-weight: 700;
  /*line-height: lineHeight(20,25);*/
  letter-spacing: 0.05em;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .g_nav ul li a p span {
  font-size: clamp(12px, 0.8102vw, 14px);
}
.js_header_origin.js_pc_view_navi .info_nav {
  width: 236px;
  margin-left: min(0.5787vw, 10px);
}
.js_header_origin.js_pc_view_navi .info_nav ul {
  width: 100%;
  height: 100%;
  margin: 0;
}
.js_header_origin.js_pc_view_navi .info_nav ul li {
  width: 100%;
  height: 100%;
}
.js_header_origin.js_pc_view_navi .info_nav ul li a {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js_header_origin.js_pc_view_navi .info_nav ul li a span {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  color: #0a13b6;
  font-size: clamp(11px, 0.8102vw, 14px);
  font-weight: 700;
}
.js_header_origin.js_pc_view_navi .info_nav ul li a span::before {
  content: "";
  background-image: url(../img/cmn/icon_contact_mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  width: 31px;
  height: 31px;
}

/*/.js_header_origin.js_pc_view_navi*/
/* 変更履歴 */
/* 2025/06/08 */
/* /base/_footer.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ フッター footer_contents
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec_footer {
  width: 100%;
  position: relative;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_footer {
    width: 100%;
    position: relative;
  }
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ footer01_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer01_wrap {
  background-color: #0a13b6;
  width: 100%;
  position: relative;
  /*company_info*/
  /*footer_link*/
  /*btn_group*/
}
.footer01_wrap .footer_inner {
  width: 100%;
  padding: min(3.4722vw, 60px) 0;
}
.footer01_wrap .company_info {
  width: min(100% - 40px, 526px);
  color: #fff;
  font-size: clamp(14px, 3.0418vw, 16px);
  letter-spacing: 0.05em;
  margin: auto;
}
.footer01_wrap .footer_logo {
  width: min(54.943vw, 289px);
  margin: auto;
}
.footer01_wrap .footer_logo a {
  display: flex;
}
.footer01_wrap .info_detail {
  width: 100%;
  margin: min(2.3148vw, 40px) auto 0;
}
.footer01_wrap .info_detail a:hover {
  text-decoration: underline;
}
.footer01_wrap .info_detail .address_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.footer01_wrap .info_detail .address span {
  display: inline-block;
}
.footer01_wrap .info_detail .contact_num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 3em;
  margin-top: 1em;
}
.footer01_wrap .info_detail .contact_num dl {
  display: flex;
  gap: 0 0.1em;
  align-items: center;
  justify-content: center;
}
.footer01_wrap .info_detail .contact_num dl dt {
  font-family: "YuGothic", "Yu Gothic Medium", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
  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 .footer_link {
  width: min(100% - 40px, 526px);
  color: #fff;
  font-size: clamp(14px, 3.0418vw, 16px);
  letter-spacing: 0.05em;
  margin: min(2.8935vw, 50px) auto 0;
}
.footer01_wrap .footer_link .link_group {
  width: 100%;
}
.footer01_wrap .footer_link ul.group_menu {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.footer01_wrap .footer_link li {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.footer01_wrap .footer_link li::before,
.footer01_wrap .footer_link li:last-child::after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 100%;
  display: block;
}
.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;
}
.footer01_wrap .btn_group {
  width: min(100% - 40px, 526px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(5.7034vw, 30px);
  color: #0a13b6;
  font-size: clamp(14px, 3.0418vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: min(2.8935vw, 50px) auto 0;
}
.footer01_wrap .btn_group .btn {
  width: 100%;
}
.footer01_wrap .btn_group .btn a {
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 24px 0.5em;
}
.footer01_wrap .btn_group .btn a span {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
}
.footer01_wrap .btn_group .btn a 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;
}
.footer01_wrap .btn_group .btn.ver_corporate a span::before {
  content: "";
  background-image: url(../img/cmn/icon_corporate02.svg);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .footer01_wrap {
    background-color: #0a13b6;
    width: 100%;
    position: relative;
    /*company_info*/
    /*footer_link*/
    /*btn_group*/
  }
  .footer01_wrap .footer_inner {
    width: 100%;
    padding: 15.3846vw 0;
  }
  .footer01_wrap .company_info {
    width: 100%;
    color: #fff;
    font-size: 3.0769vw;
    letter-spacing: 0.05em;
    margin: auto;
  }
  .footer01_wrap .footer_logo {
    width: 74.1026vw;
    margin: auto;
  }
  .footer01_wrap .footer_logo a {
    display: flex;
  }
  .footer01_wrap .info_detail {
    width: 100%;
    margin: 5.1282vw auto 0;
  }
  .footer01_wrap .info_detail a:hover {
    text-decoration: underline;
  }
  .footer01_wrap .info_detail .address_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
  }
  .footer01_wrap .info_detail .address span {
    display: inline-block;
  }
  .footer01_wrap .info_detail .contact_num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 3em;
    margin-top: 1em;
  }
  .footer01_wrap .info_detail .contact_num dl {
    display: flex;
    gap: 0 0.1em;
    align-items: center;
    justify-content: center;
  }
  .footer01_wrap .info_detail .contact_num dl dt {
    font-family: "YuGothic", "Yu Gothic Medium", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
    display: flex;
    gap: 0 0.5em;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 1px;
  }
  .footer01_wrap .info_detail .contact_num dl dd {
    margin: 0;
    line-height: 1;
  }
  .footer01_wrap .footer_link {
    width: 79.4872vw;
    color: #fff;
    font-size: 3.5897vw;
    letter-spacing: 0.05em;
    margin: 12.8205vw auto 0;
  }
  .footer01_wrap .footer_link .link_group {
    width: 100%;
  }
  .footer01_wrap .footer_link ul.group_menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer01_wrap .footer_link li {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
  .footer01_wrap .footer_link li::before,
  .footer01_wrap .footer_link li:last-child::after {
    content: "";
    background-color: #fff;
    width: 1px;
    height: 100%;
    display: block;
  }
  .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;
  }
  .footer01_wrap .btn_group {
    width: 63.5897vw;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.8462vw;
    color: #0a13b6;
    font-size: 4.1026vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 7.6923vw auto 0;
  }
  .footer01_wrap .btn_group .btn {
    width: 100%;
  }
  .footer01_wrap .btn_group .btn a {
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6.1538vw 0.5em;
  }
  .footer01_wrap .btn_group .btn a span {
    display: flex;
    gap: 0.5em;
    align-items: center;
    justify-content: center;
  }
  .footer01_wrap .btn_group .btn a span::before {
    content: "";
    background-image: url(../img/cmn/icon_personal02.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 26px;
    height: 26px;
    display: block;
  }
  .footer01_wrap .btn_group .btn.ver_corporate a span::before {
    content: "";
    background-image: url(../img/cmn/icon_corporate02.svg);
  }
  /**/
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊ footer02_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer02_wrap {
  background-color: #fff;
  width: 100%;
  padding: 20px 0;
}
.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;
  font-size: clamp(12px, 0.8681vw, 15px);
  font-weight: 500;
  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: #fff;
    width: 100%;
    padding: 2.5641vw 0;
  }
  .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;
    font-size: 2.8205vw;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .footer02_wrap .copy_right span {
    display: inline-block;
    font-size: 3.0769vw;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* /components/_buttons.scss */
/* 
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


TOPに戻るボタン ver02


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

.move-page-top {
  background: #d1d3eb;
  /*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 {
    right: 5.1282vw;
    bottom: 5.1282vw;
  }
  .move-page-top {
    width: 40px;
    height: 40px;
  }
  .move-page-top .svg_wrap {
    width: 14px;
  }
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


news-list_btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.news-list_btn .btn {
  border: 2px solid #0a13b6;
  width: 170px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #1c1c1e;
}
.news-list_btn .btn .btn_txt {
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: clamp(12px, 0.8102vw, 14px);
  font-weight: 700;
  letter-spacing: 0;
}
.news-list_btn .btn .btn_txt::after {
  content: "";
  background-image: url(../img/cmn/icon_arrow02.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 12px;
  height: 12px;
  display: block;
}
@keyframes btnArrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
.news-list_btn .btn:hover .btn_txt::after {
  animation: btnArrowMove 0.6s ease-in-out infinite;
}

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


detail_btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.detail_btn .btn {
  border: 2px solid #fff;
  width: min(16.7824vw, 290px);
  height: min(4.0509vw, 70px);
  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: clamp(12px, 0.9259vw, 16px);
  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: clamp(12px, 3.5897vw, 14px);
    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*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


contact_btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.contact_btn_wrap {
  width: min(100% - 40px, 968px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(9.0909vw, 88px);
  margin: min(2.8935vw, 50px) 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: clamp(18px, 2.2727vw, 22px);
  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: 84.6154vw;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.8462vw;
    margin: 7.6923vw 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: clamp(14px, 4.1026vw, 16px);
    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: min(5.7034vw, 30px);
  margin: min(2.8935vw, 50px) 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: #0a13b6;
  font-size: clamp(14px, 3.0418vw, 16px);
  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: 63.5897vw;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.8462vw;
    margin: 7.6923vw 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: #0a13b6;
    font-size: 4.1026vw;
    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: clamp(14px, 1.1574vw, 20px);
  line-height: 1.5;
  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: min(7.0632vw, 76px);
  margin: min(2.8935vw, 50px) 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 min(3.7175vw, 40px);
  /* &.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: min(6.5056vw, 70px);
  height: min(6.5056vw, 70px);
  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: min(2.7881vw, 30px);
  margin-right: min(1.8587vw, 20px);
}
.parts_contact_btn a.btn span {
  display: block;
  text-align: center;
}
.parts_contact_btn a.btn .btn_head {
  color: #0a13b6;
  font-size: clamp(15px, 1.8587vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.parts_contact_btn a.btn .btn_num {
  font-size: clamp(30px, 3.2528vw, 35px);
  font-weight: 500;
  letter-spacing: 0;
  text-indent: 0;
  margin-top: min(0.2894vw, 5px);
}
.parts_contact_btn a.btn .btn_txt {
  font-size: clamp(12px, 1.487vw, 16px);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin-top: min(0.5787vw, 10px);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__parts_contact .sec_lead {
    width: 84.6154vw;
    font-size: 3.5897vw;
    line-height: 1.714;
    letter-spacing: 0.1em;
    text-align: center;
    text-indent: 0.1em;
    margin: auto;
  }
  .parts_contact_btn_wrap {
    width: 84.6154vw;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5.1282vw;
    margin: 7.6923vw 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 2.5641vw;
    /* &.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: 10.2564vw;
    height: 10.2564vw;
    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: 2.5641vw;
    margin-right: 2.5641vw;
  }
  .parts_contact_btn a.btn span {
    display: block;
    text-align: center;
  }
  .parts_contact_btn a.btn .btn_head {
    color: #0a13b6;
    font-size: 3.5897vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  .parts_contact_btn a.btn .btn_num {
    font-size: 5.1282vw;
    font-weight: 500;
    letter-spacing: 0;
    text-indent: 0;
    margin-top: 0.7692vw;
  }
  .parts_contact_btn a.btn .btn_txt {
    font-size: 3.0769vw;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    margin-top: 1.5385vw;
  }
  /**/
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


archive-back-btn


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.archive-back-btn {
  width: 290px;
  height: 70px;
}
.archive-back-btn .btn {
  background-color: #fff;
  border: 2px solid #0a13b6;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  color: #1c1c1e;
  padding: 0 20px;
}
.archive-back-btn .btn_txt {
  width: 100%;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  color: #0a13b6;
  font-size: clamp(12px, 0.9259vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.archive-back-btn .btn_txt::after {
  content: "";
  background-image: url(../img/cmn/icon_arrow04.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 15px;
  height: 15px;
  display: block;
}
@keyframes btnArrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
.archive-back-btn:hover .btn_txt::after {
  animation: btnArrowMove 0.6s ease-in-out infinite;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .archive-back-btn {
    width: 160px;
    height: 50px;
  }
  .archive-back-btn .btn {
    padding: 0 10px;
  }
  .archive-back-btn .btn_txt {
    display: flex;
    gap: 1em;
    align-items: center;
    font-size: clamp(12px, 3.5897vw, 14px);
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  .archive-back-btn .btn_txt::after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* /components/_look.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


topics-section


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.topics-section {
  width: min(100vw, 1920px);
  position: relative;
  margin: auto;
  /*大枠設定*/
  /*イメージ部分アニメーション*/
  /*マスクアニメーション*/
  /*コンテンツ部分アニメーション*/
  /*アニメーション 表示された時のクラス追加時*/
  /*イメージ部分あしらい*/
  /*マスクアニメーション部分 あしらい*/
  /* マスク */
  /* マスクタイル */
  /*コンテンツ部分あしらい*/
  /* タイトル */
}
.topics-section .container {
  width: 100%;
  height: auto;
  position: relative;
  margin: auto;
  padding: min(7.5231vw, 130px) 0 0;
}
.topics-section .row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: 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: min(2.8935vw, 50px) 0 0;
  padding: min(13.3102vw, 230px) 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 min(52.5463vw, 908px);
}
.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 min(52.5463vw, 908px) 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: min(60.7639vw, 1050px);
  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: min(37.9051vw, 655px);
  min-height: min(24.8843vw, 430px);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: min(3.4722vw, 60px) min(3.4722vw, 60px);
  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: min(17.5347vw, 303px);
}
.topics-section .section-product__cards__item:nth-child(2) .section-product__cards__item__title {
  width: min(18.75vw, 324px);
}
.topics-section .section-product__cards__item:nth-child(3) .section-product__cards__item__title {
  width: min(27.0833vw, 468px);
}
.topics-section .t-content .section-product__cards__item__status {
  font-size: clamp(14px, 1.3889vw, 24px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  will-change: transform;
  margin-top: min(1.1574vw, 20px);
}
.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: clamp(12px, 0.9259vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: min(1.7361vw, 30px);
  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: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: 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: 7.6923vw auto 0;
    padding: 34.359vw 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: 79.4872vw;
  }
  .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: 75.641vw;
    min-height: 75.641vw;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 6.1538vw;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
  }
  .topics-section .section-product__cards__item .section-product__cards__item__title {
    width: min(50.5128vw, 197px);
  }
  .topics-section .section-product__cards__item:nth-child(2) .section-product__cards__item__title {
    width: min(54.359vw, 212px);
  }
  .topics-section .section-product__cards__item:nth-child(3) .section-product__cards__item__title {
    width: min(50.5128vw, 197px);
  }
  .topics-section .t-content .section-product__cards__item__status {
    font-size: 4.1026vw;
    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: 6.1538vw;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-top: 1.5385vw;
    will-change: transform;
  }
  .topics-section .t-content .section-product__cards__item__message {
    font-size: 3.5897vw;
    font-weight: 400;
    line-height: 1.714;
    letter-spacing: 0.1em;
    text-align: justify;
    margin-top: 3.0769vw;
    will-change: transform;
  }
  .topics-section .t-content .section-product__cards__item__button {
    margin-top: auto;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* /components/_php_parts.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.sec_contact-info


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec_contact-info {
  background-image: url(../img/top/contact-info_bg_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
}
.sec_contact-info .sec_wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 min(4.6296vw, 80px);
}
.sec_contact-info .sec_tit {
  width: 100%;
}
.sec_contact-info .tit_en {
  width: min(19.6181vw, 339px);
}
.sec_contact-info .sec_lead {
  display: block;
  font-size: clamp(12px, 0.9259vw, 16px);
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: min(2.8935vw, 50px);
}
.sec_contact-info .contact-info_tel {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: min(100% - 40px, 968px);
  display: flex;
  justify-content: space-between;
  gap: min(6.367vw, 68px);
  margin: min(3.4722vw, 60px) auto 0;
  padding: min(1.7361vw, 30px) min(4.919vw, 85px);
}
.sec_contact-info .tel_head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 0.9259vw, 16px);
  letter-spacing: 0.1em;
}
.sec_contact-info .tel_head::before {
  content: "";
  background-image: url(../img/cmn/icon_contact_tel.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 30px;
  display: block;
}
.sec_contact-info .tel_num {
  color: #0a13b6;
  font-size: clamp(24px, 1.7361vw, 30px);
  font-weight: 500;
}
.sec_contact-info .tel_info {
  display: flex;
  gap: min(4.0509vw, 70px);
  font-size: clamp(14px, 0.9259vw, 16px);
  letter-spacing: 0.1em;
}
.sec_contact-info .tel_info::before {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 100%;
  display: block;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_contact-info {
    background-image: url(../img/top/contact-info_bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
  }
  .sec_contact-info .sec_wrap {
    width: 100%;
    position: relative;
    padding: 12.8205vw 0;
  }
  .sec_contact-info .sec_tit {
    width: 100%;
  }
  .sec_contact-info .tit_en {
    width: 47.1795vw;
  }
  .sec_contact-info .sec_lead {
    display: block;
    font-size: 3.5897vw;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 7.6923vw;
  }
  .sec_contact-info .contact-info_tel {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 84.6154vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7.6923vw;
    margin: 7.6923vw auto 0;
    padding: 7.6923vw 0;
  }
  .sec_contact-info .tel_head {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.1026vw;
    letter-spacing: 0.1em;
  }
  .sec_contact-info .tel_head::before {
    content: "";
    background-image: url(../img/cmn/icon_contact_tel.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
    display: block;
  }
  .sec_contact-info .tel_num {
    color: #0a13b6;
    font-size: 7.6923vw;
    font-weight: 500;
  }
  .sec_contact-info .tel_info {
    display: flex;
    gap: 0;
    font-size: 4.1026vw;
    letter-spacing: 0.1em;
  }
  .sec_contact-info .tel_info::before {
    content: none;
  }
  .sec_contact-info .tel_info_innner {
    display: flex;
    gap: 2em;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* /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-radius: 9999px;
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post_page_pagination .page-numbers:hover {
  background-color: #0a13b6;
  color: #fff;
}
.post_page_pagination .current {
  background-color: #0a13b6;
  color: #fff;
}
.post_page_pagination .prev,
.post_page_pagination .next {
  background-color: #d1d3eb;
  color: #0a13b6;
}
.post_page_pagination .dots {
  background: transparent;
  color: #1c1c1e;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-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: #0a13b6;
    color: #fff;
  }
  .post_page_pagination .current {
    background-color: #0a13b6;
    color: #fff;
  }
  .post_page_pagination .prev,
  .post_page_pagination .next {
    background-color: #d1d3eb;
    color: #0a13b6;
  }
  .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 (max-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/06/08 */
/* /vendors/_form_style.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊

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


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

全体

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.page_contents .sec__contact_form {
  width: 100%;
  position: relative;
}
.page_contents .sec__contact_form .sec_wrap {
  background-color: #f5f5f5;
  width: 100%;
  position: relative;
  padding: 0;
}
.page_contents .sec__contact_form .sec_main_img {
  width: 100%;
}
.page_contents .sec__contact_form .sec_tit {
  margin-top: min(8.6806vw, 150px);
}
.page_contents .sec__contact_form .tit_en {
  width: min(19.6181vw, 339px);
}
.page_contents .sec__contact_form .tit_ja {
  font-size: clamp(20px, 1.3889vw, 24px);
  letter-spacing: 0.05em;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_contents .sec__contact_form {
    width: 100%;
    position: relative;
  }
  .page_contents .sec__contact_form .sec_wrap {
    background-color: #f5f5f5;
    width: 100%;
    position: relative;
    padding: 0;
  }
  .page_contents .sec__contact_form .sec_main_img {
    width: 100%;
  }
  .page_contents .sec__contact_form .sec_tit {
    margin-top: 17.9487vw;
  }
  .page_contents .sec__contact_form .tit_en {
    width: 53.8462vw;
  }
  .page_contents .sec__contact_form .tit_ja {
    font-size: 4.1026vw;
    letter-spacing: 0.05em;
    margin-top: 2.5641vw;
  }
  /**/
} /*スマホ 表示 end*/
/* =========================================================

　フォーム部分

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.form_wrap {
  width: min(100% - 40px, 1076px);
  margin: min(5.787vw, 100px) auto 0;
  /*入力部分 全体*/
  /*項目名*/
  /*.form_item dt .title_txt::before {
    content: '・';
    display: inline-block;
    margin-right: 0.2em;
  }*/
  /*必須マーク*/
  /*入力部分*/
  /*テキストエリアパーツ*/
  /*郵便番号パーツ*/
  /*都道府県パーツ*/
  /*セレクトボックスパーツ*/
  /* チェックボックス */
  /* 個人情報同意チェックボックス */
  /* プライバシーチェックリンク */
  /*チェックボックス設定*/
  /*ラジオボタン*/
  /*生年月日ドロップダウン*/
  /*送信ボタン*/
}
.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(16px, 1.8587vw, 20px);
  line-height: 2;
  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: 0px 2px 3px 0px 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: 40px;
}
.form_wrap .form_item:first-of-type {
  margin-top: 0;
}
.form_wrap .form_item dt {
  width: 100%;
  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(16px, 1.8587vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.form_wrap .form_item dt .mandatory_mark {
  font-size: clamp(16px, 1.8587vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.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;
  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: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
.form_wrap .radio_btn_parts ul li {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.form_wrap .radio_btn_parts.ver01 ul li {
  width: 25%;
}
.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 .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: #0a13b6;
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: clamp(16px, 1.8587vw, 20px);
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin: 70px auto 0;
  transition: 0.3s;
}
.form_wrap .submit_btn::after {
  content: "";
  background-image: url("/form_parts/img/submit_btn_arrow03.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 24px;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
}
.form_wrap .submit_btn:hover {
  opacity: 0.6;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .form_wrap {
    width: 84.6154vw;
    margin: 12.8205vw auto 0;
    /*入力部分 全体*/
    /*項目名*/
    /*.form_item dt .title_txt::before {
      content: '・';
      display: inline-block;
      margin-right: 0.2em;
    }*/
    /*必須マーク*/
    /*入力部分*/
    /*テキストエリアパーツ*/
    /*郵便番号パーツ*/
    /*都道府県パーツ*/
    /*セレクトボックスパーツ*/
    /* チェックボックス */
    /* 個人情報同意チェックボックス */
    /* プライバシーポリシーリンク */
    /*チェックボックス設定*/
    /*ラジオボタン*/
    /*送信ボタン*/
  }
  .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: 1.714;
    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: 0px 2px 3px 0px 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: 40px;
  }
  .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 {
    font-size: 4.1026vw;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .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: #0a13b6;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    font-size: 4.1026vw;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    margin: 40px auto 0;
    transition: 0.3s;
  }
  .form_wrap .submit_btn::after {
    content: "";
    background-image: url("/form_parts/img/submit_btn_arrow03.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 24px;
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
  }
  .form_wrap .submit_btn:hover {
    opacity: 0.6;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* /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: auto;
  aspect-ratio: 1728/956;
  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: 1278/956;
  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;
  }
}
.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: 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: 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*/
/* 変更履歴 */
/* 2025/06/08 */
/* /vendors/_swiper.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


sec__top-slide トップスライド


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__top-slide {
  width: 100%;
  position: relative;
  /* swiperのクラス名 */
  /* ドットの配置（下側、外側に配置） */
  /* ドットの基本スタイル */
  /* アクティブなドットのスタイル */
}
.sec__top-slide .sec_wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 0;
}
.sec__top-slide .swiper-container.top-slide {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}
.sec__top-slide .swiper-wrapper {
  width: 100%;
  margin: 0 -1.447%; /* Swiper-slideのpadding分を相殺する */
}
.sec__top-slide .swiper-slide {
  padding: 0 1.447%;
}
.sec__top-slide .unit_img {
  width: 100%;
  aspect-ratio: 400/350;
  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: 50%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 15px; /* スライダー外側に配置するため、下方向にずらす */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.sec__top-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__top-slide .swiper-pagination-bullet-active {
  background-color: #000;
}

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

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


.page_top .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_top .sec__kv {
  width: 100%;
  position: relative;
}
.page_top .sec__kv .kv_tit {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: min(4.6296vw, 80px);
  left: min(6.9444vw, 120px);
}
.page_top .sec__kv .kv_tit .en_txt {
  width: min(42.4769vw, 734px);
}
.page_top .sec__kv .kv_tit .en_txt02 {
  width: min(43.4028vw, 750px);
  margin-top: min(1.7361vw, 30px);
}
.page_top .sec__kv .kv_tit .ja_txt {
  display: flex;
  gap: 0.1em;
  justify-content: flex-start;
  overflow: hidden;
  color: #fff;
  font-size: clamp(25px, 2.0255vw, 35px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: min(1.7361vw, 30px);
}
.page_top .sec__kv .kv_tit .ja_txt span {
  display: inline-block;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_top .sec__kv {
    width: 100%;
    position: relative;
  }
  .page_top .sec__kv .kv_tit {
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    bottom: 11.7949vw;
    left: 5.1282vw;
  }
  .page_top .sec__kv .kv_tit .en_txt {
    width: 75.3846vw;
  }
  .page_top .sec__kv .kv_tit .en_txt02 {
    width: 77.6923vw;
    margin-top: 5.1282vw;
  }
  .page_top .sec__kv .kv_tit .ja_txt {
    display: flex;
    gap: 0.1em;
    justify-content: flex-start;
    overflow: hidden;
    color: #fff;
    font-size: 3.8462vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 5.1282vw;
  }
  .page_top .sec__kv .kv_tit .ja_txt span {
    display: inline-block;
  }
  /**/
} /*スマホ 表示 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(8.6806vw, 150px) 0 0;
}
.page_top .sec_news-list .news-list_wrap {
  width: min(100% - 40px, 1028px);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: auto;
}
.page_top .sec_news-list .news-list_head {
  width: min(27.5292vw, 283px);
  padding-top: min(1.5625vw, 27px);
}
.page_top .sec_news-list .sec_tit {
  width: 100%;
}
.page_top .sec_news-list .tit_en {
  width: min(8.2176vw, 142px);
  margin: 0;
}
.page_top .sec_news-list .tit_ja {
  font-size: clamp(14px, 0.9259vw, 16px);
  text-align: left;
  margin-top: min(0.8102vw, 14px);
}
.page_top .sec_news-list .btn_wrap {
  margin-top: min(2.0833vw, 36px);
}
.page_top .sec_news-list .news-list {
  width: min(72.4708vw, 745px);
  font-size: clamp(12px, 0.8102vw, 14px);
  line-height: 1.714;
}
.page_top .sec_news-list .news-list ul {
  width: 100%;
  margin: 0;
}
.page_top .sec_news-list .news-list ul li {
  border-top: 1px solid #0a13b6;
  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: 250px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2em;
  align-items: center;
}
.page_top .sec_news-list .unit_date {
  font-weight: 700;
}
.page_top .sec_news-list .unit_category {
  background-color: #0a13b6;
  width: auto;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: min(2.5641vw, 10px);
  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_tit {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@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: 17.9487vw 0 0;
  }
  .page_top .sec_news-list .news-list_wrap {
    width: 84.6154vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    margin: auto;
  }
  .page_top .sec_news-list .news-list_head {
    flex-grow: 1;
    padding-top: 0;
  }
  .page_top .sec_news-list .sec_tit {
    width: 100%;
  }
  .page_top .sec_news-list .tit_en {
    width: 26.6667vw;
    margin: 0;
  }
  .page_top .sec_news-list .tit_ja {
    font-size: 3.0769vw;
    text-align: left;
    margin-top: 2.5641vw;
  }
  .page_top .sec_news-list .btn_wrap {
    width: 84.6154vw;
    display: flex;
    justify-content: flex-end;
    margin: 12.8205vw auto 0;
  }
  .page_top .sec_news-list .news-list {
    width: 84.6154vw;
    font-size: min(3.5897vw, 14px);
    line-height: 1.714;
  }
  .page_top .sec_news-list .news-list ul {
    width: 100%;
    margin: 0;
  }
  .page_top .sec_news-list .news-list ul li {
    border-top: 1px solid #0a13b6;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: min(5.1282vw, 20px);
    align-items: flex-start;
    padding: 6.9231vw 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_date {
    font-size: 12, 390;
    font-weight: 700;
  }
  .page_top .sec_news-list .unit_category {
    background-color: #0a13b6;
    width: auto;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: min(2.5641vw, 10px);
    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_tit {
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /**/
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_top .sec__top-slide


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* 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*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_top .topics-section
// lookコンポーネント:
/components/_look.scss で設定


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


.page_top .sec_company


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_top .sec_company {
  width: 100%;
  position: relative;
  /*map_wrap*/
}
.page_top .sec_company .sec_wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0;
}
.page_top .sec_company .sec_main_img {
  width: 100%;
}
.page_top .sec_company .sec_tit {
  margin-top: min(8.6806vw, 150px);
}
.page_top .sec_company .tit_en {
  width: min(21.1227vw, 365px);
}
.page_top .sec_company .company_wrap {
  width: min(100% - 40px, 1068px);
  display: flex;
  justify-content: space-between;
  gap: min(6.367vw, 68px);
  margin: min(3.4722vw, 60px) auto 0;
}
.page_top .sec_company .company_unit {
  width: min(46.8165vw, 500px);
  font-size: clamp(12px, 0.8102vw, 14px);
  line-height: 1.714;
}
.page_top .sec_company .unit_head {
  color: #0a13b6;
  font-size: clamp(16px, 1.1574vw, 20px);
  padding: min(1.5625vw, 27px) min(1.1574vw, 20px);
}
.page_top .sec_company .unit_contents {
  width: 100%;
  margin: 0;
}
.page_top .sec_company .unit_contents dl {
  border-bottom: 1px solid #0a13b6;
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
  font-size: clamp(14px, 0.9259vw, 16px);
  padding: min(1.5625vw, 27px) 0;
}
.page_top .sec_company .unit_contents dl:first-child {
  border-top: 1px solid #0a13b6;
}
.page_top .sec_company .unit_contents dl.ver_2_line {
  padding: min(0.8681vw, 15px) 0;
}
.page_top .sec_company .unit_contents dt {
  flex-shrink: 0;
  width: 30%;
  padding-left: min(0.8681vw, 15px);
}
.page_top .sec_company .unit_contents dd {
  flex-grow: 1;
  text-align: justify;
  padding-right: min(0.8681vw, 15px);
}
.page_top .sec_company .map_wrap {
  width: min(100% - 40px, 1068px);
  height: auto;
  aspect-ratio: 1068/365;
  margin: min(5.787vw, 100px) auto 0;
}
.page_top .sec_company .map_wrap iframe {
  width: 100%;
  height: 100%;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_top .sec_company {
    width: 100%;
    position: relative;
    /*map_wrap*/
  }
  .page_top .sec_company .sec_wrap {
    width: 100%;
    position: relative;
    padding: 17.9487vw 0 12.8205vw;
  }
  .page_top .sec_company .sec_main_img {
    width: 100%;
  }
  .page_top .sec_company .sec_tit {
    margin-top: 14.6154vw;
  }
  .page_top .sec_company .tit_en {
    width: 50.7692vw;
  }
  .page_top .sec_company .company_wrap {
    width: 84.6154vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 7.6923vw;
    margin: 7.6923vw auto 0;
  }
  .page_top .sec_company .company_unit {
    width: 100%;
    font-size: 3.5897vw;
    line-height: 1.714;
  }
  .page_top .sec_company .unit_head {
    color: #0a13b6;
    font-size: 3.5897vw;
    padding: 3.8462vw 3.8462vw;
  }
  .page_top .sec_company .unit_contents {
    width: 100%;
    margin: 0;
  }
  .page_top .sec_company .unit_contents dl {
    border-bottom: 1px solid #0a13b6;
    width: 100%;
    display: flex;
    gap: 2em;
    align-items: center;
    font-size: 3.5897vw;
    padding: 3.8462vw 0;
  }
  .page_top .sec_company .unit_contents dl:first-child {
    border-top: 1px solid #0a13b6;
  }
  .page_top .sec_company .unit_contents dl.ver_2_line {
    padding: 3.8462vw 0;
  }
  .page_top .sec_company .unit_contents dt {
    width: 30%;
    padding-left: 3.8462vw;
  }
  .page_top .sec_company .unit_contents dd {
    flex-grow: 1;
    text-align: justify;
    padding-right: 3.8462vw;
  }
  .page_top .sec_company .map_wrap {
    width: 84.6154vw;
    height: auto;
    aspect-ratio: 330/220;
    margin: 10.2564vw auto 0;
  }
  .page_top .sec_company .map_wrap iframe {
    width: 100%;
    height: 100%;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* pages/_page_contents.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


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

＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__breadcrumb_trail {
  width: min(100% - 40px, 1398px);
  margin: auto;
  padding: min(0.5787vw, 10px) 0;
}
.sec__breadcrumb_trail ul {
  display: flex;
  gap: 1em;
}
.sec__breadcrumb_trail ul li {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
}
.sec__breadcrumb_trail ul li + li::before {
  content: "＞";
  font-size: 12px;
  margin-right: 1em;
}
.sec__breadcrumb_trail ul li a {
  display: block;
  color: #0a13b6;
  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: 84.6154vw;
    margin: auto;
    padding: 2.5641vw 0;
  }
  .sec__breadcrumb_trail ul {
    display: flex;
    gap: 1em;
  }
  .sec__breadcrumb_trail ul li {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
  }
  .sec__breadcrumb_trail ul li + li::before {
    content: "＞";
    font-size: 12px;
    margin-right: 1em;
  }
  .sec__breadcrumb_trail ul li a {
    display: block;
    color: #0a13b6;
    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/contact-personal_main01_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 1728/430;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.page_contents .sec__kv .kv_tit {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: min(9.5486vw, 165px);
}
.page_contents .sec__kv .kv_tit .en_txt {
  width: min(29.6296vw, 512px);
}
.page_contents .sec__kv .kv_tit .ja_txt {
  display: flex;
  gap: 0.3em;
  justify-content: flex-start;
  overflow: hidden;
  color: #fff;
  font-size: clamp(24px, 1.7361vw, 30px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: min(1.1574vw, 20px);
}
.page_contents .sec__kv .kv_tit .ja_txt span {
  display: inline-block;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@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/430;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
  }
  .page_contents .sec__kv .kv_tit {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 7.6923vw;
    margin-bottom: 7.1795vw;
  }
  .page_contents .sec__kv .kv_tit .en_txt {
    width: 62.3077vw;
  }
  .page_contents .sec__kv .kv_tit .ja_txt {
    display: flex;
    gap: 0.3em;
    justify-content: flex-start;
    overflow: hidden;
    color: #fff;
    font-size: 4.1026vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 2.5641vw;
  }
  .page_contents .sec__kv .kv_tit .ja_txt span {
    display: inline-block;
  }
  /**/
} /*スマホ 表示 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(8.6806vw, 150px) 0 0;
}
.page_contents .sec__lead .sec_unit {
  width: min(100% - 40px, 1198px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: min(8.6806vw, 150px);
  margin: auto;
}
.page_contents .sec__lead .sec_head {
  flex-shrink: 0;
  width: 400px;
  color: #0a13b6;
  font-size: clamp(24px, 1.8519vw, 32px);
  font-weight: 700;
  line-height: 1.313;
  letter-spacing: 0.1em;
}
.page_contents .sec__lead .sec_txt {
  font-size: clamp(14px, 0.9259vw, 16px);
  line-height: 1.875;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@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: 11.7949vw 0 0;
  }
  .page_contents .sec__lead .sec_unit {
    width: 84.6154vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7.6923vw;
    margin: auto;
  }
  .page_contents .sec__lead .sec_head {
    flex-shrink: 0;
    width: 84.6154vw;
    color: #0a13b6;
    font-size: 6.1538vw;
    font-weight: 700;
    line-height: 1.417;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .page_contents .sec__lead .sec_txt {
    font-size: 4.1026vw;
    line-height: 1.875;
    text-align: justify;
  }
  /**/
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_contents .sec__look


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_contents .sec__look {
  width: 100%;
  position: relative;
}
.page_contents .sec__look .sec_wrap {
  width: 100%;
  position: relative;
  padding: min(8.6806vw, 150px) 0 min(8.6806vw, 150px);
}
.page_contents .sec__look .look_unit_wrap {
  width: min(100% - 40px, 1398px);
  margin: auto;
}
.page_contents .sec__look .look_unit_wrap ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(7.01vw, 98px);
}
.page_contents .sec__look .unit_img {
  width: 100%;
  aspect-ratio: 650/380;
  overflow: hidden;
}
.page_contents .sec__look .unit_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_contents .sec__look .unit_contents {
  margin-top: 30px;
}
.page_contents .sec__look .unit_head {
  font-size: clamp(20px, 1.3889vw, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.page_contents .sec__look .unit_txt {
  font-size: clamp(12px, 0.9259vw, 16px);
  line-height: 1.625;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: 10px;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_contents .sec__look {
    width: 100%;
    position: relative;
  }
  .page_contents .sec__look .sec_wrap {
    width: 100%;
    position: relative;
    padding: 17.9487vw 0;
  }
  .page_contents .sec__look .look_unit_wrap {
    width: 84.6154vw;
    margin: auto;
  }
  .page_contents .sec__look .look_unit_wrap ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12.8205vw;
  }
  .page_contents .sec__look .unit_img {
    width: 100%;
    aspect-ratio: 330/230;
    overflow: hidden;
  }
  .page_contents .sec__look .unit_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page_contents .sec__look .unit_contents {
    margin-top: 14px;
  }
  .page_contents .sec__look .unit_head {
    font-size: 4.1026vw;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .page_contents .sec__look .unit_txt {
    font-size: 3.5897vw;
    line-height: 1.714;
    letter-spacing: 0.1em;
    text-align: justify;
    margin-top: 10px;
  }
  /**/
} /*スマホ 表示 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: #f5f5f5;
  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: #f5f5f5;
    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: #f5f5f5;
  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: #f5f5f5;
    width: 100%;
    position: relative;
    padding: 23.0769vw 0;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* pages/_business.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_business .sec__kv


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

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_business .sec__lead


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_business .sec__lead {
  width: 100%;
  position: relative;
}
.page_business .sec__lead .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;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_business .sec__contact-personal


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_business .sec__contact-personal {
  width: 100%;
  position: relative;
}
.page_business .sec__contact-personal .sec_wrap {
  width: 100%;
  position: relative;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_business .sec__footer-slide


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_business .sec__footer-slide {
  width: 100%;
  position: relative;
}
.page_business .sec__footer-slide .sec_wrap {
  width: 100%;
  position: relative;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* pages/_products.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_products .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_products .sec__kv {
  width: 100%;
  position: relative;
}
.page_products .sec__kv .sec_wrap {
  background-image: url(../img/products/kv_img01_pc.jpg);
  width: 100%;
  position: relative;
}
.page_products .sec__kv .kv_tit .en_txt {
  width: min(31.9444vw, 552px);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_products .sec__kv .sec_wrap {
    background-image: url(../img/products/kv_img01_sp_2x.jpg);
  }
  .page_products .sec__kv .kv_tit .en_txt {
    width: 62.3077vw;
  }
  /**/
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_products .sec__lead


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

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_products .sec__look


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

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


topics-section


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_products .topics-section {
  width: 100%;
  position: relative;
  /*大枠設定*/
  /*イメージ部分アニメーション*/
  /*マスクアニメーション*/
  /*コンテンツ部分アニメーション*/
  /*アニメーション 表示された時のクラス追加時*/
  /*イメージ部分あしらい*/
  /*マスクアニメーション部分 あしらい*/
  /* マスク */
  /* マスクタイル */
  /*コンテンツ部分あしらい*/
  /* タイトル */
}
.page_products .topics-section .container {
  width: min(100% - 40px, 1398px);
  height: auto;
  position: relative;
  margin: auto;
  padding: min(8.6806vw, 150px) 0;
}
.page_products .topics-section .row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}
.page_products .topics-section .col-xs-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  flex-basis: 100%;
  max-width: 100%;
}
.page_products .topics-section .t-content .section-product__cards__item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: min(2.8935vw, 50px) 0 0;
  padding: min(2.8935vw, 50px) 0 0;
}
.page_products .topics-section .t-content .section-product__cards__item:first-child {
  margin-top: 0;
}
.page_products .topics-section .t-content .section-product__cards__item:nth-child(odd) .section-product__cards__item__bg {
  left: 0;
  z-index: 2;
}
.page_products .topics-section .t-content .section-product__cards__item:nth-child(odd) .section-product__cards__item__content {
  margin: 0 0 0 min(9.4329vw, 163px);
}
.page_products .topics-section .t-content .section-product__cards__item:nth-child(even) .section-product__cards__item__bg {
  right: 0;
  z-index: 2;
}
.page_products .topics-section .t-content .section-product__cards__item:nth-child(even) .section-product__cards__item__content {
  margin: 0 min(9.4329vw, 163px) 0 auto;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__image {
  opacity: 0;
  transition: opacity 0s ease 0.5s;
}
.page_products .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;
}
.page_products .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);
}
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(2),
.page_products .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;
}
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(5),
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(7),
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(9),
.page_products .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;
}
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(12),
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(14),
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(16),
.page_products .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;
}
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(19),
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(21),
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(23),
.page_products .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;
}
.page_products .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;
}
.page_products .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;
}
.page_products .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;
}
.page_products .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;
}
.page_products .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;
}
.page_products .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;
}
.page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__button.-button-onrow {
  width: 100%;
  text-align: center;
}
.page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__image {
  opacity: 1;
}
.page_products .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);
}
.page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__mask i {
  transform: rotateY(90deg);
}
.page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__button,
.page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__content,
.page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__message,
.page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__status,
.page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__title {
  opacity: 1;
  transform: translate(0);
}
.page_products .topics-section .t-content .section-product__cards__item__bg {
  position: absolute;
  top: 0;
  /* width: calc(100% - 628px); */ /*全体コンテンツ幅1398px画像幅が770px*/
  width: min(55.0787vw, 770px);
  height: auto;
  aspect-ratio: 770/440;
}
.page_products .topics-section .t-content .section-product__cards__item__bg__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.page_products .topics-section .t-content .section-product__cards__item__bg__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page_products .topics-section .section-product__cards__item .section-product__cards__item__bg__mask {
  background-color: #0a13b6;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
}
.page_products .topics-section .section-product__cards__item:nth-child(odd) .section-product__cards__item__bg__mask {
  background-color: #0a13b6;
}
.page_products .topics-section .section-product__cards__item:nth-child(even) .section-product__cards__item__bg__mask {
  background-color: #0b7dc5;
}
.page_products .topics-section .section-product__cards__item .section-product__cards__item__bg__mask i {
  background-color: #0a13b6;
  width: 20%;
  height: 20%;
  display: block;
}
.page_products .topics-section .section-product__cards__item:nth-child(odd) .section-product__cards__item__bg__mask i {
  background-color: #0a13b6;
}
.page_products .topics-section .section-product__cards__item:nth-child(even) .section-product__cards__item__bg__mask i {
  background-color: #0b7dc5;
}
.page_products .topics-section .section-product__cards__item .section-product__cards__item__content {
  background-color: #0a13b6;
  width: min(88.3405vw, 1235px);
  min-height: min(31.4735vw, 440px);
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: min(2.5036vw, 35px) min(3.5765vw, 50px) min(3.2189vw, 45px) min(47.2103vw, 660px);
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.page_products .topics-section .section-product__cards__item:nth-child(odd) .section-product__cards__item__content {
  background-color: #0a13b6;
}
.page_products .topics-section .section-product__cards__item:nth-child(even) .section-product__cards__item__content {
  background-color: #0b7dc5;
  padding: min(2.5036vw, 35px) min(47.2103vw, 660px) min(3.2189vw, 45px) min(3.5765vw, 50px);
}
.page_products .topics-section .section-product__cards__item .section-product__cards__item__title {
  width: min(4.721vw, 66px);
}
.page_products .topics-section .t-content .section-product__cards__item__status {
  font-size: clamp(14px, 1.7167vw, 24px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  will-change: transform;
  margin-top: min(1.4306vw, 20px);
}
.page_products .topics-section .t-content .section-product__cards__item__status__number {
  display: block;
}
.page_products .topics-section .t-content .section-product__cards__item__status__number:before {
  content: "-";
  display: inline-block;
}
.page_products .topics-section .t-content .section-product__cards__item__status__name {
  display: block;
}
.page_products .topics-section .t-content .section-product__cards__item__status__name span {
  display: inline-block;
}
.page_products .topics-section .t-content .section-product__cards__item__message {
  font-size: clamp(12px, 1.1445vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: min(2.1459vw, 30px);
  will-change: transform;
}

/**/
/*
---------------------------------------------------------
---------------------------------------------------------
---------------------------------------------------------
---------------------------------------------------------
---------------------------------------------------------
*/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_products .topics-section {
    width: 100%;
    position: relative;
    /*大枠設定*/
    /*イメージ部分アニメーション*/
    /*マスクアニメーション*/
    /*コンテンツ部分アニメーション*/
    /*アニメーション 表示された時のクラス追加時*/
    /*イメージ部分あしらい*/
    /*マスクアニメーション部分 あしらい*/
    /*コンテンツ部分あしらい*/
    /* タイトル */
  }
  .page_products .topics-section .container {
    width: 100%;
    height: auto;
    position: relative;
    margin: auto;
    padding: 17.9487vw 0;
  }
  .page_products .topics-section .row {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page_products .topics-section .col-xs-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    flex-basis: 100%;
    max-width: 100%;
  }
  .page_products .topics-section .t-content {
    margin: auto;
  }
  .page_products .topics-section .t-content .section-product__cards__item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 7.6923vw auto 0;
    padding: 7.6923vw 0 0;
  }
  .page_products .topics-section .t-content .section-product__cards__item:first-child {
    margin-top: 0;
  }
  .page_products .topics-section .t-content .section-product__cards__item:nth-child(odd) .section-product__cards__item__bg {
    left: 0;
  }
  .page_products .topics-section .t-content .section-product__cards__item:nth-child(odd) .section-product__cards__item__content {
    margin: 0 0 0 auto;
  }
  .page_products .topics-section .t-content .section-product__cards__item:nth-child(even) .section-product__cards__item__bg {
    right: 0;
  }
  .page_products .topics-section .t-content .section-product__cards__item:nth-child(even) .section-product__cards__item__content {
    margin: 0 auto 0 0;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__image {
    opacity: 0;
    transition: opacity 0s ease 0.5s;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask {
    transform: rotateY(90deg);
    transform-origin: left;
    background-color: #0a13b6;
    transition: transform 0.6s cubic-bezier(0.935, 0.015, 0.335, 0.92) 0s, background-color 0s linear 0.35s;
  }
  .page_products .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);
  }
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(2),
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(5),
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(7),
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(9),
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(12),
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(14),
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(16),
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(19),
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(21),
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__bg__mask i:nth-child(23),
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .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;
  }
  .page_products .topics-section .t-content .section-product__cards__item.u-inview .section-product__cards__item__button.-button-onrow {
    width: 100%;
    text-align: center;
  }
  .page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__image {
    opacity: 1;
  }
  .page_products .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);
  }
  .page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__bg__mask i {
    transform: rotateY(90deg);
  }
  .page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__button,
  .page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__content,
  .page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__message,
  .page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__status,
  .page_products .topics-section .t-content .section-product__cards__item.is-view .section-product__cards__item__title {
    opacity: 1;
    transform: translate(0);
  }
  .page_products .topics-section .t-content .section-product__cards__item__bg {
    position: absolute;
    top: 0;
    width: 93.0769vw;
    aspect-ratio: 363/320;
  }
  .page_products .topics-section .t-content .section-product__cards__item__bg__inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .page_products .topics-section .t-content .section-product__cards__item__bg__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .page_products .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;
  }
  .page_products .topics-section .section-product__cards__item .section-product__cards__item__bg__mask i {
    width: 20%;
    height: 20%;
    display: block;
  }
  .page_products .topics-section .section-product__cards__item .section-product__cards__item__content {
    width: 92.3077vw;
    min-height: 123.0769vw;
    display: block;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: min(76.9231vw, 300px) min(7.6923vw, 30px) min(10.2564vw, 40px);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
  }
  .page_products .topics-section .section-product__cards__item:nth-child(even) .section-product__cards__item__content {
    padding: min(76.9231vw, 300px) min(7.6923vw, 30px) min(10.2564vw, 40px);
  }
  .page_products .topics-section .section-product__cards__item .section-product__cards__item__title {
    width: min(12.0513vw, 47px);
  }
  .page_products .topics-section .t-content .section-product__cards__item__status {
    font-size: 4.1026vw;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.02em;
    will-change: transform;
  }
  .page_products .topics-section .t-content .section-product__cards__item__status__number {
    display: block;
  }
  .page_products .topics-section .t-content .section-product__cards__item__status__number:before {
    content: "-";
    display: inline-block;
  }
  .page_products .topics-section .t-content .section-product__cards__item__status__name {
    display: block;
  }
  .page_products .topics-section .t-content .section-product__cards__item__status__name span + span {
    font-size: 3.0769vw;
  }
  .page_products .topics-section .t-content .section-product__cards__item__message {
    font-size: 3.5897vw;
    font-weight: 400;
    line-height: 1.714;
    letter-spacing: 0.1em;
    text-align: justify;
    margin-top: 2.5641vw;
    will-change: transform;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* pages/_corporate-contact.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_corporate-contact .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_corporate-contact .sec__kv .sec_wrap {
  background-image: url(../img/corporate-contact/kv_img01_pc.jpg);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_corporate-contact .sec__kv .sec_wrap {
    background-image: url(../img/corporate-contact/kv_img01_sp_2x.jpg);
  }
  /**/
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_corporate-contact .sec__parts_contact


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_corporate-contact .sec__parts_contact .sec_wrap {
  margin-top: min(5.787vw, 100px);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_corporate-contact .sec__parts_contact .sec_wrap {
    margin-top: 11.7949vw;
  }
  /**/
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊

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


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

全体

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.page_corporate-contact .sec__contact_form .sec_wrap {
  padding: min(5.787vw, 100px) 0 0;
}
.page_corporate-contact .sec__contact_form .sec_main_img {
  width: 100%;
  margin-top: min(8.6806vw, 150px);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_corporate-contact .sec__contact_form .sec_wrap {
    padding: 5.1282vw 0 0;
  }
  .page_corporate-contact .sec__contact_form .sec_main_img {
    width: 100%;
    margin-top: 17.9487vw;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* pages/_archive.scss */
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_archive .sec__kv


＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.page_archive .sec__kv {
  width: 100%;
  position: relative;
}
.page_archive .sec__kv .sec_wrap {
  background-image: url(../img/archive/kv_img01_pc.jpg);
  width: 100%;
  position: relative;
}
.page_archive .sec__kv .kv_tit .en_txt {
  width: min(18.3449vw, 317px);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_archive .sec__kv .sec_wrap {
    background-image: url(../img/archive/kv_img01_sp_2x.jpg);
  }
  .page_archive .sec__kv .kv_tit .en_txt {
    width: 35.3846vw;
  }
  /**/
} /*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.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(6.3657vw, 110px) 0 min(8.6806vw, 150px);
}
.page_archive .sec__post_list .post_list_wrap {
  background-color: #f5f5f5;
  width: min(100% - 40px, 1398px);
  margin: auto;
  padding: min(7.8684vw, 110px) min(11.8026vw, 165px);
}
.page_archive .sec__post_list .post_list_wrap ul {
  width: 100%;
  font-size: clamp(12px, 0.8102vw, 14px);
  line-height: 1.714;
  margin-top: min(7.1531vw, 100px);
}
.page_archive .sec__post_list .post_list_wrap ul li {
  border-top: 2px solid #fff;
  width: 100%;
  display: flex;
  gap: min(0.5787vw, 10px);
  align-items: flex-start;
  padding: min(2.3148vw, 40px) 0;
}
.page_archive .sec__post_list .post_list_wrap ul li:first-child {
  border-top: none;
}
.page_archive .sec__post_list .unit_head {
  flex-shrink: 0;
  width: 250px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2em;
  align-items: center;
}
.page_archive .sec__post_list .unit_date {
  font-weight: 700;
}
.page_archive .sec__post_list .unit_category {
  background-color: #0a13b6;
  width: auto;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: min(2.5641vw, 10px);
  padding: 0.4em 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_tit {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@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 17.9487vw;
  }
  .page_archive .sec__post_list .post_list_wrap {
    background-color: #f5f5f5;
    width: 84.6154vw;
    margin: auto;
    padding: 7.6923vw;
  }
  .page_archive .sec__post_list .post_list_wrap ul {
    width: 100%;
    font-size: 3.5897vw;
    line-height: 1.714;
    margin-top: 5.1282vw;
  }
  .page_archive .sec__post_list .post_list_wrap ul li {
    border-top: 1px solid #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5.1282vw;
    align-items: flex-start;
    padding: 6.9231vw 0;
  }
  .page_archive .sec__post_list .post_list_wrap ul li:first-child {
    border-top: none;
  }
  .page_archive .sec__post_list .unit_head {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 2em;
    align-items: center;
  }
  .page_archive .sec__post_list .unit_date {
    font-weight: 700;
  }
  .page_archive .sec__post_list .unit_category {
    background-color: #0a13b6;
    width: auto;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: min(2.5641vw, 10px);
    padding: 0.4em 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_tit {
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* 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/single/kv_img01_pc.jpg);
}
.page_single .sec__kv .kv_tit .en_txt {
  width: min(18.3449vw, 317px);
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page_single .sec__kv {
    width: 100%;
    position: relative;
  }
  .page_single .sec__kv .sec_wrap {
    background-image: url(../img/single/kv_img01_sp_2x.jpg);
  }
  .page_single .sec__kv .kv_tit .en_txt {
    width: 35.3846vw;
  }
  /**/
} /*スマホ 表示 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(6.3657vw, 110px) 0 min(8.6806vw, 150px);
}
.page_single .sec__post_content .post_content_wrap {
  background-color: #f5f5f5;
  width: min(100% - 40px, 1398px);
  margin: auto;
  padding: min(3.5765vw, 50px) min(11.8026vw, 165px);
}
.page_single .sec__post_content .post_unit {
  width: 100%;
  font-size: clamp(14px, 1.1445vw, 16px);
  line-height: 1.625;
}
.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 {
  border-bottom: 2px solid #fff;
  font-size: clamp(20px, 1.7167vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: min(4.0509vw, 70px);
  padding-bottom: min(1.1574vw, 20px);
}
.page_single .sec__post_content .unit_detail {
  font-size: clamp(14px, 1.1445vw, 16px);
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: min(1.7361vw, 30px);
}
.page_single .sec__post_content .archive-back-btn {
  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 17.9487vw;
  }
  .page_single .sec__post_content .post_content_wrap {
    background-color: #f5f5f5;
    width: 84.6154vw;
    margin: auto;
    padding: 7.6923vw;
  }
  .page_single .sec__post_content .post_unit {
    width: 100%;
    font-size: 3.5897vw;
    line-height: 1.714;
  }
  .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(2.5641vw, 10px);
    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 {
    border-bottom: 1px solid #fff;
    font-size: 4.1026vw;
    line-height: 1.625;
    letter-spacing: 0;
    margin-top: 7.6923vw;
    padding-bottom: 5.1282vw;
  }
  .page_single .sec__post_content .unit_detail {
    font-size: 3.5897vw;
    line-height: 1.714;
    letter-spacing: 0.1em;
    text-align: justify;
    margin-top: 5.1282vw;
  }
  .page_single .sec__post_content .archive-back-btn {
    margin: 17.9487vw auto 0;
  }
  /**/
} /*スマホ 表示 end*/
/* 変更履歴 */
/* 2025/06/08 */
/* 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: #0a13b6;
  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;
  margin-top: 20px;
}
.page_privacy-policy .sec__privacy-policy .signature {
  -moz-text-align-last: auto;
       text-align-last: auto;
}
.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 (max-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: #0a13b6;
    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;
    margin-top: 5.1282vw;
  }
  .page_privacy-policy .sec__privacy-policy .signature {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  .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/06/08 */
/* 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;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_404 .sec__lead


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

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊


.page_404 .sec__look


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

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/*# sourceMappingURL=style.css.map */