@charset "utf-8";
/* ==================================================
grobal pc用
================================================== */
:root {
  /* ----- コンテンツ系 ----- */
  /* コンテンツ幅 */
  --cntWidth: 1180px;
  /* コンテンツ左右余白（片側） */
  --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-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);
}
html, body {
  width: 100%;
  min-width: 1280px;
  margin: 0;
  padding: 0;
}
body {
  padding-top: var(--headerH, 66px);
}
body.is-scrollLock {
  padding-right: var(--scrollbarW, 0);
}
body:has(.header-simple) {
  padding-top: 0;
}
a {
  color: var(--mainColor);
  text-decoration: none;
  text-underline-offset: 4px;
}
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: 100px; */
}
.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) var(--secPaddingB);
}
.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 {
  min-width: calc(var(--contentWidth) + var(--contentPaddingXDouble));
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-sizing: border-box;
  transition: transform var(--defaultTrans);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.header_inner {
  padding: 0 24px;
}
.spMenuBtnWrap {
  display: none;
}


/* header_nav
-------------------------------------------------- */
.header_nav {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


/* header_nav - header_logo
-------------------------------------------------- */
.header_logo {
  box-sizing: border-box;
  max-width: 337px;
  flex: 1 1 0;
}
.header_logo_link {
  transition: var(--transOpac);
}
.header_logo_link:hover {
  opacity: var(--hoverOpac);
}


/* headerParts
-------------------------------------------------- */
.headerParts {
  white-space: nowrap;
  flex: 1 1 0;
}
.headerParts_linkList {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 46px;
}
.headerParts_linkItem {
  flex: 0 0 auto;
}
.headerParts_link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 66px;
  color: var(--defColor);
  font-size: 14px;
  transition: var(--transColor);
}
.headerParts_link::before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--mainColor);
  bottom: 0;
  left: 0;
  transition: var(--transOpac);
}
.headerParts_link:hover,
.headerParts_link.is-active {
  color: var(--mainColor);
}
.headerParts_link:hover::before,
.headerParts_link.is-active:before  {
 opacity: 1;
}
.headerParts_text {
  text-align: center;
  line-height: 1.28;
}


/* spMenu
-------------------------------------------------- */
.spMenu {
  display: none;
}


/* ==================================================
Footer
================================================== */
.footer {
  background-color: #fff;
}
.footer_sub {
  background-color: #2C2C2C;
  padding: 24px 20px;
}
.footer_sub_list {
  display: flex;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  margin: 16px 0 0;
}
.footer_sub_list:first-child { margin-top: 0; }
.footer_sub_item {
  border-right: 1px solid #fff;
  padding: 0 7px;
}
.footer_sub_item:last-child { border-right: none; }
.footer_sub_link {
  color: #fff;
  transition: var(--transOpac);
}
.footer_sub_link:hover {
  opacity: 0.7;
}
.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: 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_images {
  width: 300px;
}
.footer_copy_codes {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.025em;
  color: #000;
}


/* ==================================================
追従ボタン
================================================== */
.fixedCont {
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 9998;
  visibility: hidden;
}
/* floatingLinks
================================================== */
.floatingLinks {
  width: 412px;
  border-radius: 16px 0 0 16px;
  box-shadow: -3px -3px 3px rgba(0, 0, 0, 0.1);
  transform: translateX(268px);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    var(--transOpac),
    visibility var(--defTrans),
    transform var(--defTrans);
}
.floatingLinks.is-show {
  visibility: visible;
  opacity: 1;
}
@media (hover: hover) {
  .floatingLinks:hover,
  .floatingLinks:focus {
    transform: translateX(0);
  }
}
/* - タブレット用 - */
.floatingLinks.is-focus {
  transform: translateX(0);
}
.floatingBox {
  height: 80px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  background-color: #0041B4;
  padding: 12px 8px;
}
.floatingBox_head {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.floatingBox_btn {
  width: 260px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--defColor);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  border: 1px solid #BFC2D3;
  border-radius: 31px;
  padding: 4px 40px;
  transition: var(--transColor);
}
.floatingBox_btn:hover,
.floatingBox_btn:focus {
  color: #0041B4;
}
.floatingBox_btn_icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 15px;
  height: 15px;
  background: url(/common_v2/images/icon/icon_arrow.svg) no-repeat center center / contain;
  margin: auto;
}
.floatingBox_btn_icon-blank {
  background-image: url(/common_v2/images/icon/icon_blank.svg);
}
/* - 色違い - */
.floatingBox-color02 {
  background-color: #00A9E0;
}
/* btnPageTop
================================================== */
.btnPageTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1);
  margin: 16px 24px 0 auto;
  transition:
    var(--transOpac),
    visibility var(--defTrans),
    transform var(--defTrans);
}
.btnPageTop.is-show {
  opacity: 1;
  visibility: visible;
}
.btnPageTop img {
  width: 18px;
  height: 14px;
  transform: rotate(-90deg);
  transition: 300ms;
}
.btnPageTop:hover,
.btnPageTop:focus {
  background-color: #fff;
}
.btnPageTop:hover img {
  margin-bottom: 5px;
}


/* overlay
================================================== */
.overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}
