@charset "utf-8";
.all-wrapper {
  min-width: auto;
}
html {
  /* scroll-behavior: smooth;
  scroll-padding-top: 70px; */
}
/* ============ 変数宣言 ============ */
:root {
  /* color */
  --clr-main: #1f294a;
  --clr-sub01: #28427b;
  --clr-sub02: #221f49;
  --clr-accent: #ffff00;
  --clr-red: #ff0000;
  --clr-bg: #f8f8f8;
  --clr-white: #fff;
  --clr-txt: #111111;

  /* font-weight */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 900;

  /* 基本余白 */
  --sp-05: 1.03vw;
  /* 4px / 390px */
  --sp-1: 2.05vw;
  /* 8px / 390px */
  --sp-2: 4.1vw;
  /* 16px / 390px */
  --sp-3: 6.15vw;
  /* 24px / 390px */
  --sp-4: 8.21vw;
  /* 32px / 390px */
  --sp-5: 10.26vw;
  /* 40px / 390px */
  --sp-10: 20.51vw;
  /* 80px / 390px */

  /* 余白 */
  --gutter: var(--sp-2);
  /* 32px / 390px */
  /* コンテンツ幅 */
  --col-1: 100%;
  --col-2: calc((100% - (var(--gutter) * 1)) / 2);
  --col-3: calc((100% - (var(--gutter) * 2)) / 3);
  --col-4: calc((100% - (var(--gutter) * 3)) / 4);

  /* タイトルサイズ */
  --h2-fz: 5.1vw;
  /* 20px / 390px */
  --h3-fz: 6.67vw;
  /* 26px / 390px */
  --h4-fz: 6.15vw;
  /* 24px / 390px */
  --h5-fz: 4.62vw;
  /* 18px / 390px */
  --h6-fz: 4.1vw;
  /* 16px / 390px */
  --small-fz: 2.56vw;
  /* 10px / 390px */
  --body-fz: 3.6vw;
  /* 14px / 390px */
}

/* ============ style ============ */
body {
  color: var(--clr-txt);
  font-size: var(--body-fz);
  /* 16px / 390px */
  line-height: 1.5;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--regular);
}

main {
  overflow: hidden;
}

.bold {
  font-weight: var(--bold);
}

.txt-w {
  color: var(--clr-white);
}

.txt-r {
  color: var(--clr-accent);
}

small {
  font-size: inherit;
}

.sp {
  display: block;
}

.pc {
  display: none !important;
}

/* 背景色 */
.bg {
  background-color: var(--clr-bg);
}
/* 見出しセクション */
.sec-hed {
}

/* 見出し(h3) */
h2 {
  font-size: var(--h2-fz);
  font-weight: var(--bold);
}

h3 {
  font-size: var(--h3-fz);
  font-weight: var(--bold);
}

h4 {
  font-size: var(--h4-fz);
  font-weight: var(--bold);
}

h5 {
  font-size: var(--h5-fz);
  font-weight: var(--bold);
}

h6 {
  font-size: var(--h6-fz);
}

.title {
  line-height: 1;
  text-align: center;
}

h2.title {
  line-height: 1.5;
  font-size: var(--h2-fz);
  font-weight: var(--bold);
  text-decoration: underline;
  text-underline-offset: 15%;
  text-decoration-thickness: 6%;
  margin-bottom: var(--sp-5);
}

.cmn-h3 {
  position: relative;
  color: var(--clr-main);
  font-size: var(--h6-fz);
  text-align: left;
  margin-bottom: var(--sp-1);
  padding-left: 3.33vw;
  /* 13px / 390px */
  line-height: 7.69vw;
}

.cmn-h3::before {
  content: "";
  position: absolute;
  top: calc(50% - 3.85vw);
  /* 15px / 390px */
  border-radius: 3.85vw;
  /* 15px / 390px */
  left: 0;
  display: block;
  width: 1.28vw;
  /* 5px / 390px */
  height: 7.69vw;
  /* 30px / 390px */
  background: var(--clr-main);
}

.cmn-h3-w {
  position: relative;
  color: var(--clr-white);
  font-size: var(--h4-fz);
  text-align: left;
  margin-bottom: var(--sp-4);
  padding-left: 3.33vw;
  /* 13px / 390px */
}

.cmn-h3-w::before {
  content: "";
  position: absolute;
  top: calc(50% - 3.85vw);
  /* 15px / 390px */
  border-radius: 3.85vw;
  /* 15px / 390px */
  left: 0;
  display: block;
  width: 1.28vw;
  /* 5px / 390px */
  height: 7.69vw;
  /* 30px / 390px */
  background: var(--clr-white);
}
/* 強調マーカー */
.marker {
  background: linear-gradient(transparent 10%, var(--clr-accent) 10%, var(--clr-accent) 100%);
  display: inline;
  padding: 0 2px; /* テキストの左右に少し余白を追加 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* 画像 */
figure img {
  max-width: 100%;
}

/* ブラウザレンダリング制御 */
img {
  max-width: 100%;
  /* image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges; */
}

/* インナー */
.inner {
  width: calc(100% - var(--sp-4));
  margin: 0 auto;
  padding: var(--sp-5) 0;
}

/* リンク */
a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.6;
}

/* ボタン btn */
.btn {
}

/* ページネーション pagination */
.pagination {
}

/* =======================================
header
 ======================================= */
/* =======================================
main-visual
 ======================================= */
/* =======================================
breadcrumb
 ======================================= */
 .bc_bg {
  /* zoom: 80%; */
  font-family: YuGothic, 'Yu Gothic', '游ゴシック体', YuGothicM, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif, Helvetica, Arial;

  font-size: 15px;
  background-color: #f8f8f8;
}

    .bc_bg>.ddf_cw {
  /* width: calc(100% - var(--sp-2)); */
}

#ddf_gn+.bc_bg {
  padding-top: 70px;
}

.bc_bg+#main {
  padding-top: 0;
}

.bc_wrap {
  font-size: .6rem;
  padding: 15px 0;
  line-height: 2;
  letter-spacing: -0.2px;
}
.bc_wrap a {
  color: rgba(10, 100, 190, 1.00);
}

/* =======================================
CTA
 ======================================= */
.sec_cta {
  width: 100vw;
  margin-left: -4.1vw;
}
.sec_cta img{
  height: auto;
}
.sec_cta>* {
  line-height: 1;
}
.sec_cta .title {
  text-align: center;
  font-size: var(--h5-fz);
  margin-bottom: var(--sp-4);
  color: var(--clr-sub01);
  line-height: 1.5;
}
.sec_cta .title span {
  position: relative;
  width: fit-content;
  display: block;
  margin: 0 auto;
}