@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;
}


/* ==================================================
elements
================================================== */
/* ----- タグ指定 ----- */
body, input, textarea, select {
  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, 56px);
  padding-top: 0;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body:has(.header-simple) {
  padding-top: 0;
}
a {
  text-decoration: none;
  color: #000;
  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: 48px;
}
.content_main > article {
  overflow: hidden;
}
/* - コンテンツ大枠 - */
.cntSec {
  --secGap: 48px;
}
.cntSec_inner {
  position: relative;
  width: var(--contentWidth);
  margin: auto;
  padding: var(--secGap) var(--contentPaddingX) 0;
}
.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 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 40;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.header a {
  text-decoration: none;
}
.header .innerWrap {
  padding: 0;
}
.header .headerWrap {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 10px 0;
  height: 48px;
}


/* header_nav
-------------------------------------------------- */
.header_nav {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 10px;
  padding-right: 50px;
  box-sizing: border-box;
}
.header_nav .header_logo {
  width: auto;
  height: auto;
  position: static;
}
.header_nav .header_uprBox {
  display: none;
}
.header_nav .header_lwrBox {
  height: 70px;
  box-sizing: border-box;
}


/* header_logo
-------------------------------------------------- */
.header_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
}
.header_logo .header_heading {
  height: 28px;
  width: auto;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: url(/top_v2/common/images/logo.png) no-repeat left top;
  background-size: contain;
}
.header_code {
  font-size: 9px;
  text-align: right;
}

/* spMenu
-------------------------------------------------- */
.spMenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  display: none;
  width: 100%;
  height: 100%;
  color: #fff;
}
.spMenu .spMenu_wrapper {
  height: 100%;
  padding-top: 48px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.spMenu_list {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
}
.spMenu .spMenu_item {
  flex: 0 0 100%;
  border-top: 1px solid #B2CBD8;
}
.spMenu .spMenu_list.size-half .spMenu_item {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
}
.spMenu .spMenu_list.size-half .spMenu_item:nth-child(2n) {
  border-left: 1px solid #B2CBD8;
}
.spMenu .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 .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 .spMenu_list.size-half .spMenu_item > .spMenu_inner {
  min-height: 44px;
}
.spMenu .spMenu_list.color-white > .spMenu_item > .spMenu_inner {
  color: #000;
  letter-spacing: 0.025em;
  line-height: 1.2;
  font-weight: 500;
}
.spMenu .spMenu_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 48px;
  padding: 4px 13px 4px 10px;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  background-color: #fff;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.spMenu .spMenu_item > .spMenu_inner.color-top {
  color: #fff;
  background-color: #0041B4;
}

.spMenu .spMenu_btnWrap {
  background-color: #DEEAFF;
  padding: 24px 10px;
}

/* arrow */
.spMenu .spMenu_item.arrow-right .spMenu_inner {
  position: relative;
}
.spMenu .spMenu_item.arrow-right .spMenu_inner::before {
  content: '';
  position: absolute;
  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 .spMenu_item.arrow-blank .spMenu_inner::before {
  content: '';
  position: absolute;
  background-image: url(/top_v2/common/images/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  width: 12px;
  height: 12px;
  bottom: 4px;
  right: 4px;
}
.spMenu .spMenu_item.arrow-pdf .spMenu_inner::before {
  content: '';
  position: absolute;
  background-image: url(/top_v2/common/images/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  width: 12px;
  height: 16px;
  bottom: 4px;
  right: 4px;
}
/* .spMenu .spMenu_item.arrow-download .spMenu_inner {
  background-image: url(http://placehold.jp/10/ccccccc/ffffff/30x30.png?text=icon);
  background-repeat: no-repeat;
  background-position: right 10px center;
} */
/* .spMenu .spMenu_item.arrow-pc .spMenu_inner {
  background-image: url(http://placehold.jp/10/ccccccc/ffffff/30x30.png?text=icon);
  background-repeat: no-repeat;
  background-position: right 10px center;
} */
/* .spMenu .spMenu_item.arrow-right .spMenu_inner.color-top {
  background-image: url(http://placehold.jp/10/ccccccc/ffffff/30x30.png?text=icon);
  background-repeat: no-repeat;
  background-position: right 10px center;
} */
/* .spMenu .spMenu_item.arrow-blank .spMenu_inner.color-top {
  background-image: url(http://placehold.jp/10/ccccccc/ffffff/30x30.png?text=icon);
  background-repeat: no-repeat;
  background-position: right 10px center;
} */
/* .spMenu .spMenu_item.arrow-pdf .spMenu_inner.color-top {
  background-image: url(http://placehold.jp/10/ccccccc/ffffff/30x30.png?text=icon);
  background-repeat: no-repeat;
  background-position: right 10px center;
} */
/* .spMenu .spMenu_item.arrow-download .spMenu_inner.color-top {
  background-image: url(http://placehold.jp/10/ccccccc/ffffff/30x30.png?text=icon);
  background-repeat: no-repeat;
  background-position: right 10px center;
} */
.spMenu .spMenu_item.arrow-white .spMenu_inner.color-top {
  background-image: url(/top_v2/common/images/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 13px 10px;
}

/* アコーディオン */
.spMenu .spMenu_acd {
  display: none;
}
.spMenu .spMenu_list.textSize-large > .spMenu_item > .spMenu_inner {
  font-size: 16px;
}
.spMenu .spMenu_acdBtn.spMenu_inner:after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background: url(/top_v2/common/images/icon_plus_white.svg) center no-repeat;
  border-radius: 50%;
  transform: translateY(-50%);
}
.spMenu .spMenu_acdBtn.spMenu_inner.is-active:after {
  background: url(/top_v2/common/images/icon_minus_white.svg) center no-repeat;
}
.spMenuFoot {
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: #000;
  text-align: center;
  cursor: pointer;
  background: #fff;
}
.spMenuFoot span {
  padding-left: 25px;
  background: url(/top_v2/common/images/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);
}

/* メガドロップ */
.dropNavWrap {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
}
.dropNav {
  position: absolute;
  top: 1px;
  left: 0;
  display: none;
  width: 100%;
  overflow-y: auto;
  color: #fff;
  background-color: #EDF7FC;
}
.dropNav.active {
  opacity: 1;
}
.dropNav_main .innerWrap {
  display: table;
  width: 100%;
  padding: 20px 10px;
}

.dropNav_closeBtn {
  width: 100%;
  height: 44px;
  line-height: 44px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #3C4950;
}
.dropNav_closeBtn span {
  padding-left: 30px;
  background: url(/common_v2/images/icon_close.svg) no-repeat left center;
  background-size: 20px 20px;
}
/* メガドロップ内リンクボタン */
header .topNmlBtn .topNmlBtn_wrapper {
  margin-top: -8px;
  margin-left: -8px;
}
header .topNmlBtn .topNmlBtn_item {
  width: calc(50% - 8px);
  height: 50px;
  margin-top: 8px;
  margin-left: 8px;
}
header .topNmlBtn .topNmlBtn_item.size-login {
  width: calc(50% - 8px);
  min-height: 136px;
}
header .dropNav_title {
  height: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
}
header .dropNav_title span,
header .dropNav_title a {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  color: #3C4950;
}



/* breadcrumb
================================================== */
.breadcrumb {
  display: none;
}


/* MV
================================================== */
.cntSec .mv {
  margin-top: -20px;
  margin-bottom: 20px;
}
.cntSec .mv img {
  width: 100%;
}


/* ==================================================
Footer
================================================== */

.footer {
  width: 100%;
  color: #000;
  background: #fff;
}

.footer a {
  color: #000;
  font-size: 16px;
  line-height: 1.625;
  text-decoration: none;
}



/* footer_nav
---------------------------------- */
.footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.footer_nav_item {}
.footer_nav_title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #BFC2D3;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

/* お問い合わせ */
.footer_nav_item .text {
  font-size: 14px;
}
.footer_nav_tel {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin-top: 11px;
}
.footer_nav_telIcon {
  display: inline-block;
  border-radius: 100%;
  padding: 9px;
  background: #F5F5F5;
}
.footer_nav_telIcon img {
  display: block;
  width: 22px;
  height: 22px;
}
.footer_nav_tel a {
  font-size: 20px;
  font-weight: bold;
  font-family: Roboto, sans-serif;
}

/* サイトマップ */
.footer_nav_mapList {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, max-content);
  gap: 15px 81px;
}
.footer_nav_mapItem {}
.footer a.footer_nav_mapLink {
  font-size: 14px;
  letter-spacing: 0.025em;
}

/* 取得資格 */
.footer_nav_certList {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.footer_nav_certItem {}
.footer .footer_nav_certLink {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
.footer_nav_certLink img {
  width: 120px;
}
.footer_nav_certText {
  font-size: 12px;
  letter-spacing: 0.025em;
  line-height: 1.75;
}




/* footer_sitemap
---------------------------------- */

.footer_sitemap {
  font-size: 12px;
}

.footer_sitemap_wrap {
  border-top: 3px solid;
  border-image: linear-gradient(90deg, rgba(230,0,0,1) 0%, rgba(242,205,0,1) 36%, rgba(0,169,224,1) 69%, rgba(0,65,180,1) 100%) 1;
  background: #fff;
  padding: 46px 10px 56px;
  background-image: url(/top_v2/common/images/deco.png);
  background-size: 295px 41px;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: #fff;
}

/* footer_copy
---------------------------------- */

.footer_copy {
  position: relative;
  color: #fff;
  background: #2C2C2C;
  text-align: left;
  padding: 22px 0 0;
}
.footer_sub {
  padding: 0 10px 14px;
}
.footer_sub_item {
  margin-bottom: 10px;
}
.footer_sub .footer_sub_link {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.025em;
  word-break: auto-phrase;
}
.footer_sub_linkIcon {}
.footer_sub_linkIcon-blank {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(/top_v2/common/images/icon_blank_white.svg) no-repeat;
  margin-left: 9px;
  background-size: contain;
  vertical-align: middle;
}
.footer_copy_inner {
  width: 100%;
  position: relative;
  margin: auto;
  background-color: #fff;
  padding: 16px 10px;
}
.footer_copy_images {
  display: block;
  width: 230px;
  margin: 0 auto 10px;
}
.footer_copy_codes {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.025em;
  color: #000;
}


/* btnPageTop
================================================== */
.btnPageTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: none;
  width: 50px;
  height: 50px;
  background-color: #fff;
  padding: 10px;
  z-index: 20;
  border-radius: 3px;
  box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1);
}
.btnPageTop.footer_fixed {
  position: absolute;
  right: 10px;
  top: -25px;
}


/* 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;
}



/* ==================================================
          共通スタイル追記
================================================== */

/* アコーディオン
================================================== */
.js-spAcdBtn{
  position: relative;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-top: 1px solid #f0f0f0;
}
.js-spAcdBtn:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 40px;
  height: 100%;
  background: url(/top_v2/common/images/icon_plus.svg) no-repeat center center;
  background-size: 16px 16px;
}
.js-spAcdBody{
  border-top: 1px solid #f0f0f0;
  padding: 15px;
  display: none;
}
/* アクティブ */
.js-spAcdBtn.active:after {
  background-image: url(/top_v2/common/images/icon_minus.svg);
  background-size: 16px 2px;
}