@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);
}
body:has(.header-simple) {
  padding-top: 0;
}
a {
  color: var(--mainColor);
  text-decoration: underline;
  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 .headerWrap {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 10px 0;
}


/* 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_uprBox {
  display: none;
}

/* header_logo
-------------------------------------------------- */
.header_logo {
  width: 100%;
  max-width: 274px;
  height: auto;
  padding-right: 10px;
  position: static;
  box-sizing: border-box;
}
.header_logo .header_heading {
  display: block;
  width: auto;
  height: 28px;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: url(/top_v2/images/logo_cs.png) no-repeat left top;
  background-size: contain;
}


/* 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;
  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 .spMenu_list.color-white > .spMenu_item > .spMenu_inner.font-small {
  font-size: 12px;
}

.spMenu .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 .spMenu_item > .spMenu_inner.color-top {
  color: #fff;
  background-color: #0041B4;
}

.spMenu .spMenu_item .spMenu_innerIcon {
  position: absolute;
  bottom: 0;
  right: 0;
}

.spMenu .spMenu_item .spMenu_innerIcon::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  background-color: transparent;
}
/* 矢印（右下三角） */
.spMenu .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 .spMenu_item .spMenu_innerIcon.arrow-right {
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  width: 13px;
  height: 10px;
}
.spMenu .spMenu_item .spMenu_inner .spMenu_innerIcon.arrow-right::after {
  background-image: url(/top_v2/images/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 13px;
  height: 10px;
  right: 0;
  bottom: 0;
}

/* 別タブ（白） */
.spMenu .spMenu_item .spMenu_innerIcon.arrow-blank {
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  width: 16px;
  height: 16px;
}
.spMenu .spMenu_item .spMenu_inner .spMenu_innerIcon.arrow-blank::after {
  background-image: url(/top_v2/images/icon_blank_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 16px;
  right: 0;
  bottom: 0;
}

/* PDF */
.spMenu .spMenu_item .spMenu_innerIcon.arrow-pdf {
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  width: 15px;
  height: 20px;
}
.spMenu .spMenu_item .spMenu_inner .spMenu_innerIcon.arrow-pdf::after {
  background-image: url(/top_v2/images/icon_pdf_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 20px;
  right: 0;
  bottom: 0;
}


/* spMenu_listSub
-------------------------------------------------- */
.spMenu_listSub {
  display: flex;
  align-items: center;
  background: #fff;
  gap: 0 7px;
  padding: 16px 10px;
  border-top: 1px solid #B2CBD8;
  border-bottom: 1px solid #B2CBD8;
}
.spMenu_itemSub {
  width: 100%;
}
.spMenu_innerSub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.29;
  color: #fff;
  padding: 9px;
  border-radius: 8px;
}

/* 盗難・紛失について */
.spMenu_itemSub-caution .spMenu_innerSub {
  background-color: #E60000;
}
.spMenu_itemSub-caution .spMenu_innerSub::before {
  content: '';
  display: block;
  background-image: url(/top_v2/images/icon_caution.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 24px;
  height: 24px;
  transition: 300ms;
}

/* お問い合わせ相談窓口 */
.spMenu_itemSub-inquiry .spMenu_innerSub {
  background-color: #00A9E0;
}
.spMenu_itemSub-inquiry .spMenu_innerSub::before {
  content: '';
  display: block;
  background-image: url(/top_v2/images/icon_inquiry.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 32px;
  height: 32px;
  transition: 300ms;
}



/* spMenu_acd
-------------------------------------------------- */

/* アコーディオン */
.spMenu .spMenu_acd {
  display: none;
}
.spMenu .spMenu_list.textSize-large > .spMenu_item > .spMenu_inner {
  font-size: 16px;
}
.spMenu .spMenu_acdBtn.spMenu_inner:after {
  content: "";
  position: absolute;
  display: block;
  background: url(/top_v2/images/icon_plus_white.svg) center no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 16px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.spMenu .spMenu_acdBtn.is-active.spMenu_inner:not(.color-top) {
  background-color: #fff;
}
.spMenu .spMenu_acdBtn.is-active.spMenu_inner:after {
  background: url(/top_v2/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/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 {
  display: none;
}

/* メガドロップ内リンクボタン */
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;
  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;
}

.footer a {
  color: #000;
  font-size: 16px;
  line-height: 1.625;
  text-decoration: none;
}

.footer .acd {
  border-radius: 0;
  border: none;
  margin-top: 0;
  margin-bottom: 22px;
}

.footer .acd_box {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background-color: #fff;
}

.footer .acd_box .innerWrap {
  padding: 20px 10px;
}

.footer .acd_btn {
  width: 100%;
  padding: 12px 20px 12px 0;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #0041B4;
}

.footer .acd_btn:after,
.footer .acd_btn_lv2:after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  display: block;
  width: 16px;
  height: 100%;
  background: url(/top_v2/images/icon_plus.svg) no-repeat center center / 16px 16px;
  transition: all .2s ease;
  transform: none;
  border: 0;
  padding: 0;
  border-radius: 0;
}
.footer .acd.is-active .acd_btn:after,
.footer .acd_v2.is-active .acd_btn_lv2:after {
  background-image: url(/top_v2/images/icon_minus.svg);
}



/* footer_sitemap
---------------------------------- */

.footer_sitemap_wrap {
  background: #fff;
  padding: 56px 10px 80px;
  background-image: url(/top_v2/images/deco.png);
  background-size: 295px 41px;
  background-position: bottom right;
  background-repeat: no-repeat;
}
.footer_sitemap {
  font-size: 12px;
}


/* footer_nav
---------------------------------- */
.footer_nav_list-top {
  margin-bottom: 14px;
}
.footer .acd_box .footer_nav_listItem {
  display: flex;
  align-items: center;
}
.footer .footer_nav_listItem {
  margin-top: 12px;
}
.footer .acd_box .footer_nav_listItem::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: #0041B4;
  margin-right: 8px;
}
.footer .footer_nav_link_lv1 {
  font-weight: bold;
  display: block;
}
.footer_nav_link_lv1 {
  display: block;
  font-size: 18px;
  letter-spacing: 0.025em;
  font-weight: bold;
  border-bottom: 1px solid #BFC2D3;
  padding-bottom: 14px;
  margin-bottom: 28px;
  transition: 300ms;
}

.footer .footer_nav_logo {
  display: block;
  width: 85%;
  max-width: 360px;
  margin: 0 auto 20px;
}
.footer .footer_nav_address {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.025em;
}
.footer .footer_nav_telWrap {
  font-size: 14px;
  line-height: 2;
  display: flex;
  justify-content: center;
  gap: 0 18px;
  letter-spacing: 0.025em;
  margin-bottom: 32px;
}

/* footer_copy
---------------------------------- */

.footer_copy {
  position: relative;
  color: #fff;
  background: #2C2C2C;
  padding: 22px 0 0;
  text-align: left;
}
.footer_copy_inner {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 16px 10px;
  background-color: #fff;
}
.footer_copy_images {
  display: block;
  width: 230px;
  margin: 0 auto 10px;
}
.footer_copy_codes {
  font-size: 12px;
  color: #000;
  text-align: center;
  letter-spacing: 0.025em;
}

/* footer_sub
---------------------------------- */
.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/images/icon_blank_white.svg) no-repeat;
  margin-left: 9px;
  background-size: contain;
}

/* btnPageTop
================================================== */
.footer a.btnPageTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  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;
}


/* 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;
}
