@charset "utf-8";
.all-wrapper {
  min-width: auto;
}
html {
  /* scroll-behavior: smooth;
  scroll-padding-top: 70px; */
}

/* ============ アニメーション ============ */
.c-fade-effect {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.c-fade-effect.is-appeared {
  opacity: 1;
}


/* ============ 変数宣言 ============ */
:root {
  /* color */
  --clr-main: #103e76;
  --clr-sub01: #1f3059;
  --clr-sub02: #28427b;
  --clr-sub03: #30a9cc;
  --clr-accent: #ffd800;
  --clr-red: #d10a18;
  --clr-bg: #f7f7f7;
  --clr-white: #fff;
  /* --clr-txt: #111111; */
  --clr-txt: #000;

  /* 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: 3.6vw;
  /* 14px / 390px */
  --body-fz: 4.1vw;
  /* 16px / 390px */

  /* px */
  --px-20: 5.12vw; /* 20px / 390px */
  --px-18: 4.61vw; /* 18px / 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-h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.13vw; /* 8px / 375px */
}
.cmn-h2 .ja {
  font-family: 'Roboto', sans-serif;
  font-size: 10.67vw; /* 40px / 375px */
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: var(--clr-sub01);
}
.cmn-h2 .en {
  font-size: 5.33vw; /* 20px / 375px */
  font-weight: bold;
  line-height: 1.52;
  text-align: center;
  color: #353738;
}

.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: 1vw;
  border-radius: 3.85vw;
  left: 0;
  display: block;
  width: 1.28vw;
  height: calc(100% - 2vw);
  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 {
}

/* パーツ */
.cmn-tel span {
  position: relative;
  white-space: nowrap;
  font-size: 25px;
  font-weight: 700;
  padding-left: 35px;
}
.cmn-tel span::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  margin-block: auto;
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: no-repeat center/contain url('../img/icon_tel.webp');
}

.cmn-mail {
  width: 206px;
  height: 35px;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff544b;
  filter: drop-shadow(0 4px 0 rgba(16, 62, 118, 0.25));
}
.cmn-mail:hover {
  background-color: #ff847e;
}
.cmn-mail span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.cmn-mail span::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  margin-block: auto;
  width: 16px;
  height: 16px;
  border-radius: 0;
  background: no-repeat center/contain url('../img/icon_mail.webp');
}

.cmn-textbox p {
  line-height: 150%;
}
.cmn-textbox p:not(:last-child) {
  margin-bottom: 16px;
}
.cmn-textbox p em {
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}
.cmn-textlboxeft {
  text-align: left;
}
.cmn-textbox--center {
  text-align: center;
}
.cmn-textrboxight {
  text-align: right;
}
.cmn-textbox--justify {
  text-align: justify;
}

/* =======================================
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: 0.6rem;
  padding: 15px 0;
  line-height: 2;
  letter-spacing: -0.2px;
}
.bc_wrap a {
  color: rgba(10, 100, 190, 1);
}

/* =======================================
CTA
 ======================================= */
.sec_cta {
  width: 100vw;
  /* margin-left: -4.1vw; */
}
.sec_cta img {
  height: auto;
}
.sec_cta > * {
  line-height: 1;
}

.cmn-cta {
  padding-bottom: calc((29 / 390) * 100vw);
  margin: 0 var(--sp-2) var(--sp-2);
  background: no-repeat bottom center / 1100px 17px url('../img/cmn-cta.webp');

  p {
    font-weight: var(--bold);
    color: var(--clr-main);
    text-align: center;
    font-size: var(--body-fz);

    em {
      font-style: normal;
      font-size: calc((20 / 390) * 100vw);
    }
  }
}
