@charset "utf-8";

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

/* ============ 変数宣言 ============ */
: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; */
  --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: 42px;
  --h3-fz: 36px;
  --h4-fz: 26px;
  --h5-fz: 22px;
  --h6-fz: 18px;
  --small-fz: 14px;
  --body-fz: 16px;
}

/* ============ 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-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;
  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.png") 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;
}

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

/* =======================================
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;
}
.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;
}
.sec_cta .title span::before {
  position: absolute;
  content: "";
  top: calc(50% - 11px);
  left: -42.5px;
  display: block;
  width: 32.5px;
  height: 22px;
  background: url("../img/icon_tr_cta.png") no-repeat;
  background-size: contain;
}
.sec_cta .title span::after {
  position: absolute;
  content: "";
  top: calc(50% - 11px);
  right: -42.5px;
  display: block;
  width: 32.5px;
  height: 22px;
  background: url("../img/icon_tr_cta.png") no-repeat;
  background-size: contain;
}
