@charset "utf-8";
/* ==================================================
grobal sp用
================================================== */
:root {
  /* ----- コンテンツ系 ----- */
  /* コンテンツ幅 */
  --contentWidth: 100%;
  /* コンテンツ左右余白（片側） */
  --contentPaddingX: 10px;
  --contentPaddingXDouble: calc(var(--contentPaddingX) * 2);
  /* コンテンツ幅をはみ出した画面幅100% */
  --calcWideCont: calc(var(--contentPaddingX) * -1);
  /* ----- 文字系 ----- */
  --defFontSize: 16px;
  --smallFontSize: 14px;
  --largeFontSize: 18px;
  --xLargeFontSize: 20px;
  /* ----- 追従ボタンの高さ ----- */
  --fixedContH: 56px;
}


/* ==================================================
elements
================================================== */
/* ----- タグ指定 ----- */
body, input, textarea, select {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--defColor);
  font-size: var(--defFontSize);
  font-family: var(--defFontFamily);
  font-weight: var(--defFontWeight);
  line-height: var(--defLineHeight);
  letter-spacing: var(--defLetterSpacing);
}
body {
  overflow-wrap: anywhere;
  padding-top: var(--headerH, 48px);
  padding-bottom: var(--fixedContH, 56px);
}
body:has(.header-simple) {
  padding-top: 0;
}
a {
  color: var(--mainColor);
  text-decoration: none;
  text-underline-offset: 4px;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
  color: inherit;
  font-family: var(--defFontFamily);
}
strong {
  color: var(--colorRed);
}
/* sp時1カラムにする際に記述量を減らす */
caption { display: var(--tableDiplay, table-caption); }
thead { display: var(--tableDiplay, table-header-group); }
tbody { display: var(--tableDiplay, table-row-group); }
tr { display: var(--tableDiplay, table-row); }
th { display: var(--tableDiplay, table-cell); }
td { display: var(--tableDiplay, table-cell); }
summary { list-style-type: none; }
summary::-webkit-details-marker { display: none; }
/* ----- クラス指定 ----- */
.content_main {
  /* padding-bottom: 80px; */
}
.content_main > article {
  overflow: hidden;
}
/* - コンテンツ大枠 - */
.cntSec {
  --secGap: 56px;
  --secPaddingB: 0px;
}
.cntSec_inner {
  position: relative;
  width: var(--contentWidth);
  margin: auto;
  padding: var(--secGap) var(--contentPaddingX) var(--secPaddingB);
}
.cntSec[class*="bg"] { margin-top: var(--secGap); }
.cntSec[class*="bg"] .cntSec_inner { padding-bottom: var(--secGap); }
/* 背景が2こ続きのパターン */
.cntSec[class*="bg"] + .cntSec[class*="bg"] { margin-top: 0; }


/* ==================================================
SVGアイコン画像
================================================== */
/* svg画像（動的生成）デフォルトはサイトのメイン色 */
[data-svgIcon] {
}
[data-svgIcon]::after {
  content: var(--svgIconContent, none);
  width: 100%;
  height: 100%;
  display: block;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-image: var(--svgIcon, '');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: var(--svgIcon, '');
  background-color: var(--svgIconColor, var(--mainColor));
 }


/* ==================================================
汎用横並び
================================================== */
.flex {
  --gapY: 16px;
  --gapX: 8px;
  --col: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gapY) var(--gapX);
  margin-top: 24px;
}
.flex:first-child { margin-top: 0; }
.flex:not(.flex-auto).flex_item,
.flex:not(.flex-auto) > * {
  --tflexGap: calc(calc(var(--col) - 1) * var(--gapX));
  --tFlexWrap: calc(100% - var(--tflexGap));
  --tFlexW: calc(var(--tFlexWrap) / var(--col));
  flex: 0 0 auto;
  width: var(--tFlexW);
  margin: 0;
}


/* header
================================================== */
.header {
  --headerH: 48px;
  height: var(--headerH);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}


/* header_nav
-------------------------------------------------- */
.header_nav {
  height: var(--headerH);
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 48px 0 10px;
}


/* header_logo
-------------------------------------------------- */
.header_logo {
  width: 100%;
  max-width: 252px;
  height: auto;
  position: static;
  box-sizing: border-box;
}


/* spMenu
-------------------------------------------------- */
.spMenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  display: none;
  width: 100%;
  height: 100%;
  color: #fff;
}
.spMenu_wrapper {
  height: 100%;
  padding-top: 48px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.spMenu_list {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
}
.spMenu_item {
  flex: 0 0 100%;
  border-top: 1px solid #B2CBD8;
}
.spMenu_list.size-half .spMenu_item {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
}
.spMenu_list.size-half .spMenu_item:nth-child(2n) {
  border-left: 1px solid #B2CBD8;
}
.spMenu_list.size-half .spMenu_item:nth-child(2n+1):last-child:after {
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  content: '';
  background: #B2CBD8;
}
.spMenu_list.size-half .spMenu_item:nth-child(2n):nth-last-child(2):after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #B2CBD8;
}
.spMenu_list.size-half .spMenu_item > .spMenu_inner {
  min-height: 44px;
}
.spMenu_list.color-white > .spMenu_item > .spMenu_inner {
  color: #000;
  background-color: #fff;
  letter-spacing: 0.025em;
  line-height: 1.2;
  font-weight: 500;
  height: 100%;
  min-height: 48px;
  padding: 4px 16px 4px 10px;
}
.spMenu_list.color-white > .spMenu_item > .spMenu_inner.font-small {
  font-size: 12px;
}

.spMenu_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  min-height: 48px;
  padding: 4px 30px 4px 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.2;
  color: #000;
  background-color: #F5F5F5;
}

.spMenu_item > .spMenu_inner.color-top {
  color: #fff;
  background-color: #0041B4;
}

.spMenu_item .spMenu_innerIcon {
  position: absolute;
  bottom: 0;
  right: 0;
}

.spMenu_item .spMenu_innerIcon::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  background-color: transparent;
}
/* 矢印（右下三角） */
.spMenu_item .spMenu_innerIcon.arrow-triangle::after {
  border-top: 4px solid transparent;
  border-right: 4px solid #0041B4;
  border-bottom: 4px solid #0041B4;
  border-left: 4px solid transparent;
  bottom: 4px;
  right: 4px;
}

/* 矢印（白） */
.spMenu_item .spMenu_innerIcon.arrow-right {
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  width: 13px;
  height: 10px;
}
.spMenu_item .spMenu_inner .spMenu_innerIcon.arrow-right::after {
  background-image: url(/common_v2/images/icon/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 13px;
  height: 10px;
  right: 0;
  bottom: 0;
}

/* 別タブ（白） */
.spMenu_item .spMenu_innerIcon.arrow-blank {
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  width: 16px;
  height: 16px;
}
.spMenu_item .spMenu_inner .spMenu_innerIcon.arrow-blank::after {
  background-image: url(/common_v2/images/icon/icon_blank_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 16px;
  right: 0;
  bottom: 0;
}

/* PDF */
.spMenu_item .spMenu_innerIcon.arrow-pdf {
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  width: 15px;
  height: 20px;
}
.spMenu_item .spMenu_inner .spMenu_innerIcon.arrow-pdf::after {
  background-image: url(/common_v2/images/icon/icon_pdf_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 20px;
  right: 0;
  bottom: 0;
}


.spMenuFoot {
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: #000;
  text-align: center;
  cursor: pointer;
  background: #fff;
}
.spMenuFoot span {
  padding-left: 25px;
  background: url(/common_v2/images/icon/icon_close.svg) no-repeat left center;
  font-size: 16px;
  background-size: 16px 16px;
}


/* spMenuBtn
-------------------------------------------------- */
.spMenuBtnWrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  width: 48px;
  height: 48px;
  background-color: #0041B4;
}
.spMenuBtn_text {
  position: absolute;
  bottom: 3px;
  left: 0;
  display: block;
  width: 100%;
  font-size: 8px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .spMenuBtn_text {
    font-size: 10px;
    transform: scale(0.8);
  }
}
.spMenuBtn,
.spMenuBtn span {
  box-sizing: border-box;
  display: inline-block;
  transition: all .4s;
}
.spMenuBtn {
  position: relative;
  width: 20px;
  height: 16px;
}
.spMenuBtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.64px;
  background-color: #fff;
  border-radius: 1px;
}
.spMenuBtn span:nth-of-type(1) {
  top: 12px;
}
.spMenuBtn span:nth-of-type(2) {
  top: 20px;
}
.spMenuBtn span:nth-of-type(3) {
  top: 28px;
}
.spMenuBtnWrap.is-active .spMenuBtn span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.spMenuBtnWrap.is-active .spMenuBtn span:nth-of-type(2) {
  opacity: 0;
}
.spMenuBtnWrap.is-active .spMenuBtn span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}


/* ==================================================
Footer
================================================== */
.footer {
  background-color: #fff;
}
.footer_sub {
  background-color: #2C2C2C;
  padding: 24px 10px;
}
.footer_sub_list {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 12px 0 0;
}
.footer_sub_list:first-child { margin-top: 0; }
.footer_sub_item {
  margin-top: 12px;
}
.footer_sub_item:first-child { margin-top: 0; }
.footer_sub_link {
  color: #fff;
}
.footer_sub_linkIcon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  background: no-repeat center;
  background-size: contain;
}
.footer_sub_linkIcon-blank {
  background-image: url(/common_v2/images/icon/icon_blank_white.svg);
}
/* footer_copy
---------------------------------- */
.footer_copy {
  position: relative;
  color: #fff;
  background: #2C2C2C;
  text-align: center;
}
.footer_copy_inner {
  position: relative;
  width: 100%;
  background-color: #fff;
  margin: auto;
  padding: 16px 10px;
}
.footer_copy_container {
  margin: 0 auto;
}
.footer_copy_images {
  width: 230px;
  display: block;
  margin: auto;
}
.footer_copy_codes {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.025em;
  color: #000;
  margin-top: 10px;
}


/* ==================================================
追従ボタン
================================================== */
.fixedCont {
  width: 100%;
  height: var(--fixedContH);
  display: grid;
  grid-template-columns: 1fr var(--fixedContH);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9998;
}
.floatingLinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    var(--transOpac),
    visibility var(--defTrans),
    transform var(--defTrans);
}
.floatingLinks.is-show {
  visibility: visible;
  opacity: 1;
}
.floatingBox {
  background-color: #0041B4;
}
.floatingBox_head {
  display: none;
}
.floatingBox_body {
  width: 100%;
  height: 100%;
  display: grid;
}
.floatingBox_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  padding: 0 12px;
}
.floatingBox_btn_icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #fff no-repeat center / contain;
  margin: auto;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
/* .floatingBox_btn_icon-blank {
  background-image: url(/common_v2/images/icon/icon_blank_white.svg);
  background-color: transparent;
  clip-path: none;
} */
/* - 色違い - */
.floatingBox-color02 {
  background-color: #00A9E0;
}
/* btnPageTop
================================================== */
.btnPageTop {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  transform: rotate(-90deg);
  opacity: 0;
  visibility: hidden;
  transition:
    var(--transOpac),
    visibility var(--defTrans),
    transform var(--defTrans);
}
.btnPageTop.is-show {
  opacity: 1;
  visibility: visible;
}

/* sideFloatNav
================================================== */
.sideFloatNav {
  display: none;
}


/* overlay
================================================== */
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 25;
}
