@charset "utf-8";

html {
  /* scroll-behavior: smooth;
  scroll-padding-top: 95px; */
}

/* ============ アニメーション ============ */
.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;

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

  /* 基本余白 */
  --sp-05: 4px;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-10: 80px;

  /* タイトルサイズ */
  --h2-fz: 48px;
  --h3-fz: 36px;
  --h4-fz: 28px;
  --h5-fz: 20px;
  --h6-fz: 18px;
  --small-fz: 14px;
  --body-fz: 16px;

  /* px */
  --px-20: 20px;
  --px-18: 18px;
}

/* ============ style ============ */
body {
  min-width: 1200px;
  color: var(--clr-txt);
  font-size: var(--body-fz);
  line-height: 1.5;
  /* letter-spacing: 0.04em; */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: var(--regular);
}

main {
  min-height: 70vh;
  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: none !important;
}
.pc {
  display: block;
}

/* 背景色 */
.bg {
  background-color: var(--clr-bg);
}

/* 見出し(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;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.cmn-h2 .ja {
  font-family: 'Roboto', sans-serif;
  font-size: 49px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: var(--clr-sub01);
}
.cmn-h2 .en {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.52;
  text-align: center;
  color: #353738;
}

.cmn-h3 {
  position: relative;
  color: var(--clr-main);
  font-size: var(--h4-fz);
  text-align: left;
  margin-bottom: var(--sp-4);
  padding-left: 13px;
}
.cmn-h3::before {
  content: '';
  position: absolute;
  top: calc(50% - 15px);
  border-radius: 15px;
  left: 0;
  display: block;
  width: 5px;
  height: 30px;
  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: 13px;
}
.cmn-h3-w::before {
  content: '';
  position: absolute;
  top: calc(50% - 15px);
  border-radius: 15px;
  left: 0;
  display: block;
  width: 5px;
  height: 30px;
  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;
}
.marker-r {
  background: linear-gradient(transparent 70%, #f9e9be 70%);
}

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

/* telリンク無効 */
/* a[href^="tel:"] {
  pointer-events: none;
} */

/* インナー */
.inner {
  width: 1100px;
  margin: 0 auto;
  padding: 96px 0;
}

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

/* ボタン btn */
.btn {
}
/* ページネーション pagination */
.pagination {
}
.pagination_list {
  display: flex;
  justify-content: center;
}
.pagination_list li {
  margin-right: 16px;
}
.pagination_list li:last-of-type {
  margin-right: 0;
}
.pagination_list li.dot,
.pagination_list li.next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination_list li.dot::before {
}
.pagination_list li.next {
  position: relative;
}
.pagination_list li.next a {
  width: 64px;
  height: 42px;
}
.pagination_list li.next::before {
  position: absolute;
  right: calc(24px + 4.5px);
  top: calc(16px - 4px);
  content: '';
  display: block;
  background: url('../img/common/arrow_blue.webp') no-repeat;
  background-size: contain;
  width: 9px;
  height: 16px;
  transition: 0.3s;
  filter: brightness(1000%);
}
.pagination_list li:not(.dot, .next) {
  border: 1px solid var(--clr-main);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: var(--small-fz);
}
.pagination_list li.current a,
.pagination_list li.next {
  background-color: var(--clr-main);
  color: var(--clr-white);
}

/* テーブルスタイル */
.cmn_table {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
.cmn_table tr {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 24px;
}
.cmn_table tr:last-of-type {
  margin-bottom: 0;
}
.cmn_table tr th,
.cmn_table tr td {
}

.cmn_table tr th {
  width: 136px;
  font-weight: var(--regular);
}
.cmn_table tr td {
  width: 560px;
}
.cmn_table tr td .pc {
  display: inline-block;
}
.cmn_table tr td ul {
}
.cmn_table tr td ul li {
}
.cmn_table tr td ul li::before {
  content: '■';
}
.cmn_table tr td ul li a {
  border-bottom: 1px solid var(--clr-txt);
  line-height: 1.2;
  display: inline-block;
}

/* パーツ */
.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: 65px;
  border-radius: 41px;
  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;
}
.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
 ======================================= */

/* =======================================
sub-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: 1375px;
  width: calc(1100px / 0.8);
}

.bc_wrap {
  padding: 15px 0;
  line-height: 2;
  letter-spacing: -0.2px;
}

.bc_wrap a {
  color: rgba(10, 100, 190, 1);
}

/* =======================================
cta section
 ======================================= */

/* =======================================
footer
 ======================================= */

/* =======================================
サイトマップ
 ======================================= */
#sitemap {
}
.site-map {
  width: 70%;
  margin: 0 auto;
}
.site-map li {
  text-align: left;
  margin-bottom: 30px;
  font-size: var(--h6-fz);
  font-weight: var(--bold);
  border-bottom: 1px solid var(--clr-main);
}
.site-map li a {
  padding: 15px;
  display: block;
}

/* =======================================
プライバシーポリシー
 ======================================= */
#policy {
}

#policy .title {
  line-height: 1.5;
}
.policy_wrap {
  margin-bottom: 80px;
}
.policy_box {
  margin-bottom: 50px;
}
.policy_box h4 {
  font-size: var(--h5-fz);
  margin-bottom: 20px;
}
.policy_box p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.policy_box p strong {
  font-weight: var(--bold);
  display: block;
  margin-bottom: 10px;
}
.policy_box a {
  color: var(--clr-main);
  text-decoration: underline;
}

/* =======================================
404ページ
 ======================================= */
#e404 {
}
#e404 .title {
  font-size: var(--h4-fz);
}

.e404_wrap {
}
.e404_wrap .txt {
  line-height: 2;
  text-align: center;
}
.e404_wrap .btn {
  margin: 0 auto;
  margin-top: 40px;
}

/* =======================================
CTA
 ======================================= */
.sec_cta {
}
.sec_cta .inner {
  padding: 0;
}
.sec_cta > * {
  line-height: 1;
}

.cmn-cta {
  padding-bottom: calc(var(--sp-1) * 6);
  margin-bottom: var(--sp-3);
  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: 24px;

    em {
      font-style: normal;
      font-size: 34px;
    }
  }
}
