@charset "utf-8";
/* ==================================================
grobal pc用
================================================== */
:root {
  /* ----- コンテンツ系 ----- */
  /* コンテンツ幅 */
  --cntWidth: 1080px;
  /* コンテンツ左右余白（片側） */
  --cntPaddingX: 20px;
  --cntPaddingXDouble: calc(var(--cntPaddingX) * 2);
  /* コンテンツの最大幅 */
  --cntMaxWidth: calc(var(--cntWidth) + var(--cntPaddingXDouble));
  /* コンテンツ幅をはみ出した画面幅100% */
  --calcWideCnt: calc(50% - 50vw + (var(--scrollbarW, 0px) * .5));
  --calcWideCntP: calc(50vw - 50% - (var(--scrollbarW, 0px) * .5));
  /* ----- 文字系 ----- */
  --defFontSize: 16px;
  --smallFontSize: 18px;
  --largeFontSize: 18px;
}


/* ==================================================
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);
}
html, body {
  width: 100%;
  min-width: calc(var(--cntWidth) + var(--cntPaddingXDouble));
  margin: 0;
  padding: 0;
}
body {
  padding-top: var(--headerH, 110px);
  padding-top: 0;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  min-width: 1280px;
}
body.is-scrollLock {
  padding-right: var(--scrollbarW, 0);
}
body:has(.header-simple) {
  padding-top: 0;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover, a:focus {
  text-decoration: none;
}
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); }
summary { list-style-type: none; }
summary::-webkit-details-marker { display: none; }
hr {
  height: 1px;
  padding: 0;
  border: 0;
  margin: 0 0 20px;
  background: #ccc;
}
/* ----- クラス指定 ----- */
.content_main {
  padding-bottom: 80px;
}
.content_main > article {
  overflow: hidden;
}
/* - コンテンツ大枠 - */
.cntSec {
  --secGap: 80px;
  --secPaddingB: 0px;
}
.cntSec_inner {
  position: relative;
  width: calc(var(--cntWidth) + var(--cntPaddingXDouble));
  margin: auto;
  padding: var(--secGap) var(--cntPaddingX) 0;
}
.cntSec_inner::after {
  content: "";
  display: block;
  clear: both;
}
.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));
  transition: var(--transBg);
}


/* ==================================================
汎用横並び
================================================== */
.flex {
  --gapY: 24px;
  --gapX: 24px;
  --col: 2;
  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) > * {
  --tmp1: calc(calc(var(--col) - 1) * var(--gapX));
  --tmp2: calc(100% - var(--tmp1));
  --tmpW: calc(var(--tmp2) / var(--col));
  flex: 0 0 auto;
  width: var(--tmpW);
  margin: 0;
}


/* ==================================================
汎用transition、opacity
================================================== */
.tran { transition: all var(--defaultTrans); }
.opac { transition: var(--transOpac); }
.opac:hover, .opac:focus { opacity: var(--hoverOpac); }


/* header
================================================== */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
  background: #fff;
  min-width: 1240px;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.header_show {
  transition: transform 0.8s ease;
  transform: translateY(0);
}
.header_hide {
  transform: translateY(-100%);
  transition: transform 0.8s ease;
}

.header .headerWrap {
  padding: 0 23px 0 24px;
  box-sizing: border-box;
}
.spMenuBtnWrap {
  display: none;
}

/* header_nav
-------------------------------------------------- */
.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.header_nav .header_logo {
  height: 66px;
  padding: 14px 0;
  box-sizing: border-box;
}

/* header_nav - header_logo
-------------------------------------------------- */
.header_logo .header_heading {
height: 100%;
}
.header_logo .header_heading img {
  display: block;
  height: 100%;
}

/* headerParts
-------------------------------------------------- */

.headerParts .innerWrap {
  padding: 0;
  width: auto;
}
.headerParts_linkList {
  display: flex;
  gap: 0 33px;
}
.headerParts_linkItem {
}

.headerParts_linkItem a,
.headerParts_linkItem button {
  display: block;
  font-size: 14px;
  letter-spacing: 0.025em;
  color: #000;
  line-height: 1.57;
  text-decoration: none;
  padding: 22px 15px;
  cursor: pointer;
}

.headerParts_linkItem a {}
.headerParts_linkItem button {}

.headerParts_link {
  position: relative;
}
button.headerParts_link {
  display: flex;
}
.headerParts_link::before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #0041B4;
  bottom: 0;
  left: 0;
  transition: 300ms;
}
.headerParts_link:hover,
.headerParts_link:focus,
.headerParts_link.is-active {
  color: #0041B4;
}
.headerParts_link:hover::before,
.headerParts_link:focus::before,
.headerParts_link.is-active:before  {
   opacity: 1;
}

.headerParts_linkIcon {
  display: inline-block;
  width: 12px;
  height: 12px;
  transition: 300ms;
  margin-left: 6px;
  margin-top: 4px;
}
.headerParts_linkIcon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/top_v2/common/images/icon_down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 300ms;
}
button.headerParts_link.is-active .headerParts_linkIcon::before {
  transform: scaleY(-1);
  margin-top: 0;
}


/* dropNav
-------------------------------------------------- */
.dropNavWrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 0;
}
.dropNavWrap.active {
  height: 100vh;
}
.dropNav {
  display: none;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ccc;
  border: none;
  min-width: 1280px;
}
.dropNav.active {
  opacity: 1;
}
.dropNav_main .innerWrap {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 110px - 56px);
  margin: 0 auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 24px 0 26px;
  width: 1180px;
}
.dropNav_main .innerWrap::-webkit-scrollbar {
  display:none;
}
.dropNav_title {
  font-size: 26px;
  letter-spacing: 0.025em;
  font-weight: bold;
  border-bottom: 1px 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;
  padding-bottom: 23px;
  margin-bottom: 24px;
}
.dropNav_title .dropNav_title_main {
  position: relative;
  padding: 0 28px 4px 0;
  color: #000;
  transition: 300ms;
}
.dropNav_title .dropNav_title_main:hover {
  color: #0041B4;
}
.dropNav_icon {
  position: absolute;
  top: auto;
  right: 8px;
  bottom: 8px;
  margin: auto;
  width: 12px;
  height: 12px;
}
.dropNav_icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 6px solid transparent;
  border-right: 6px solid #0041B4;
  border-bottom: 6px solid #0041B4;
  border-left: 6px solid transparent;
  width: 12px;
  height: 12px;
}
.dropNav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.dropNav_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 280px;
  height: auto;
  min-height: 62px;
  border: 1px solid #BFC2D3;
  background-color: #fff;
}
.dropNav_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.025em;
  padding: 7px 24px 7px;
  transition: 300ms;
}
.dropNav_link:hover {
  color: #0041B4;
}
.dropNav_link .small {
  font-size: 12px;
}
.dropNav_icon {
  position: absolute;
  top: auto;
  right: 8px;
  bottom: 8px;
  margin: auto;
  width: 12px;
  height: 12px;
}
.dropNav_icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 6px solid transparent;
  border-right: 6px solid #0041B4;
  border-bottom: 6px solid #0041B4;
  border-left: 6px solid transparent;
  width: 12px;
  height: 12px;
}
.dropNav_icon-blank {
  width: 15px;
  height: 15px;
}
.dropNav_icon-blank::before {
  border: none;
  background-image: url(/top_v2/common/images/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
  bottom: 0;
  top: 0;
}

/* 閉じるボタン */
.dropNav_closeBtn {
  width: 100%;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #0041B4;
  height: 48px;
  line-height: 48px;
  transition: 300ms;
}
.dropNav_closeBtn:hover,
.dropNav_closeBtn:focus {
  opacity: .7;
}
.dropNav_closeBtn span {
  font-size: 15px;
  font-weight: bold;
  padding: 4px 0 4px 26px;
  background: url(/top_v2/common/images/icon_close_white.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px 16px;
}


/* spMenu
-------------------------------------------------- */
.spMenu {
  display: none;
}


/* breadcrumb
================================================== */
.breadcrumb {
  padding: 12px 0;
  background: #eee;
}
.breadcrumb .innerWrap {
  padding: 0 10px;
}
.breadcrumb_list {
  font-size: 0;
}
.breadcrumb_list li {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #1d3550;
}
.breadcrumb_list li:after {
  content: '>';
  display: inline-block;
  margin: 0 20px;
  font-weight: normal;
}
.breadcrumb_list li:last-child:after {
  content: '';
  display: none;
  margin: 0;
}
.breadcrumb_list li a {
  font-weight: normal;
  color: #6d7680;
  text-decoration: underline;
}
.breadcrumb_list li a:hover,
.breadcrumb_list li a:focus {
  text-decoration: none;
}


/* MV
================================================== */
.cntSec #mv {
  margin-top: -20px;
  margin-bottom: 40px;
}


/* ==================================================
Footer
================================================== */

.footer {
  width: 100%;
}
.footer .innerWrap {
  padding: 0;
}
.footer a {
  color: #000;
  display: block;
  line-height: 1.5;
  text-decoration: none;
}

/* footer_nav
---------------------------------- */
.footer_nav_list {
  display: flex;
  justify-content: space-between;
  margin: 0 -16px;
}
.footer_nav_item {
  flex: 0 0 calc(100% / 3);
  padding: 0 16px;
}
.footer_nav_title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #BFC2D3;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

/* お問い合わせ */
.footer_nav_tel {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin-top: 16px;
}
.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_telNumber {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* サイトマップ */
.footer_nav_mapList {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, max-content);
  gap: 14px 45px;
}
.footer_nav_mapItem {}
.footer_nav_mapLink {
  transition: 300ms;
}
.footer_nav_mapLink:hover {
  color: #0041B4;
}

/* 取得資格 */
.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;
  transition: 300ms;
}
.footer .footer_nav_certLink:hover {
  color: #0041B4;
}
.footer_nav_certLink img {
  width: 150px;
}
.footer_nav_certText {
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 1.71;
}


/* footer_sitemap
---------------------------------- */

.footer_sitemap_wrap {
  background-image: url(/top_v2/common/images/deco.png);
  background-size: 711px 100px;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 80px 0 70px;
  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-color: #fff;
}

.footer_sitemap {
  width: 1280px;
  padding: 0 50px 30px;
  margin: 0 auto;
  font-size: 16px;
}


/* footer_copy
---------------------------------- */

.footer_copy {
  position: relative;
  color: #fff;
  text-align: center;
  background: #2C2C2C;
  padding: 29px 0 0;
}
.footer_sub {
  padding: 0 10px 10px;
}
.footer_sub_list {
  display: flex;
  justify-content: center;
  margin: 0 -5px 16px;
}
.footer_sub_item {
  border-right: 1px solid #fff;
  padding: 0 7px;
}
.footer_sub_item:last-child {
  border-right: none;
}
.footer_sub .footer_sub_link {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.025em;
  transition: 300ms;
}
.footer_sub .footer_sub_link:hover {
  opacity: 0.7;
} 

.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: 4px;
  background-size: contain;
  vertical-align: middle;
}

.footer_copy_inner {
  position: relative;
  margin: auto;
  width: 100%;
  background-color: #fff;
  padding: 15px 0;
}
.footer_copy_container {
  width: 1280px;
  padding: 0 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.footer_copy_codes {
  font-size: 12px;
  letter-spacing: .4px;
}
.footer_copy_images {
  width: 300px;
}
.footer_copy_codes {
  text-align: center;
  letter-spacing: 0.025em;
  color: #000;
}


/* btnPageTop
================================================== */
.footer a.btnPageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  z-index: 20;
  box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1);
  width: 48px;
  height: 48px;
  border-radius: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}
.footer .btnPageTop.is-show{
  opacity: 1;
  visibility: visible;
}
.btnPageTop img {
  width: 18px;
  height: 14px;
  transform: rotate(-90deg);
  vertical-align: initial;
  transition: 300ms;
}
.btnPageTop.footer_fixed {
  position: absolute;
  right: 20px;
  top: -34px;
}
.btnPageTop:hover,
.btnPageTop:focus {
  background-color: #fff;
}
.btnPageTop:hover img {
  margin-bottom: 5px;
}


/* sideFloatNav
================================================== */
.sideFloatNav {
  position: fixed;
  right: -150px;
  bottom: 108px;
  width: 220px;
  z-index: 30;
  background: #fff;
  border-radius: 3px 0 0 3px;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, .2);
  transition: all .2s ease-out;
}
.sideFloatNav a {
  text-decoration: none;
}
.sideFloatNav li {
  border-bottom: 1px solid #b7ccd9;
}
.sideFloatNav li:last-child {
  border-bottom: none;
}
.sideFloatNav li:after {
  content: "";
  display: block;
  clear: both;
}
.sideFloatNav li span {
  float: left;
  display: block;
  width: 70px;
  height: 62px;
  padding-top: 10px;
  font-size: 10px;
  font-weight: bold;
  color: #285184;
  text-align: center;
}
.sideFloatNav li div {
  float: left;
  width: 150px;
  height: 62px;
  font-size: 14px;
  font-weight: bold;
  color: #285184;
}
.sideFloatNav li div a {
  position: relative;
  display: block;
  color: #285184;
  background: #f8f8f8;
  transition: all .2s ease;
}
.sideFloatNav li div a:hover,
.sideFloatNav li div a:focus {
  color: #fff;
  background: #608ad8;
}
.sideFloatNav li div.row1 a {
  height: 62px;
  padding-left: 15px;
  line-height: 62px;
}
.sideFloatNav li div.row1.campaign a {
  height: 62px;
  padding-top: 12px;
  padding-left: 15px;
  line-height: 1.4;
}
.sideFloatNav li div.row2 a {
  height: 31px;
  padding-left: 15px;
  line-height: 31px;
  border-bottom: 1px solid #b7ccd9;
}
.sideFloatNav li div.row2 a:last-child {
  border-bottom: none;
}

.sideFloatNav li div a:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(http://placehold.jp/10/aaaaaa/ffffff/20x20.png?text=arrow) no-repeat right bottom;
  background-size: 20px 20px;
  transition: all .3s ease;
}

/* hover */
.sideFloatNav:hover,
.sideFloatNav:focus-within {
  right: 0;
}


/* ==================================================
追従コンバージョン
================================================== */
.fixedCnv {
  --gapX: 48px;
  width: 100%;
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 995;
  background-color: rgba(253, 251, 235, .9);
  padding: 16px 0;
}
.fixedCnv_inner {
  width: calc(var(--cntWidth) + var(--cntPaddingXDouble));
  margin: auto;
  padding: 0 var(--cntPaddingX);
}
.fixedCnv_flex {
  display: flex;
  gap: var(--gapX);
}
.fixedCnv_flex_item {
  flex: 1 1 auto;
}
.fixedCnv_flex_item-small {
  flex-grow: 0;
}


/* overlay
================================================== */
.overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}
