@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) 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 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 40;
}
.header a {
  text-decoration: none;
}
.header .innerWrap {
  padding: 15px 10px 0;
}
.header .headerWrap {
  position: relative;
  z-index: 1;
  background: #fff;
}


/* header_nav
-------------------------------------------------- */
.header_nav {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 100px;
  padding-right: 50px;
  box-sizing: border-box;
}
.header_nav .header_logo {
  height: 70px;
  box-sizing: border-box;
}
.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 {
  width: 52px;
  height: 30px;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-size: 52px 30px;
}

.header_code {
  font-size: 9px;
  text-align: right;
}
/* .header_lwrBox
-------------------------------------------------- */
.header_lwrBox {
  padding: 0;
}
.header_lwrBox .innerWrap {
  padding: 0;
}
.header_lwrBox .headerParts_linkList {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
.header_lwrBox .headerParts_linkItem {
  height: 70px;
  width: 60px;
  color: #444;
  font-size: 9px;
  background-size: 30px;
  text-align: center;
  padding-top: 54px;
}

/* 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: 70px;
  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:last-child {
  border-bottom: 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: #88aaaa;
  background-color: #fff;
}

.spMenu .spMenu_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 50px;
  padding: 4px 20px 4px 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: #88aaaa;
  background-color: #EDF7FC;
}
.spMenu .spMenu_item > .spMenu_inner.color-top {
  color: #fff;
  background-color: #88aaaa;
}
.spMenu .spMenu_acd .spMenu_item.color-white > .spMenu_inner,
.spMenu .spMenu_acd .spMenu_item.spMenu_acdBtn.active > .spMenu_inner {
}
.spMenu .spMenu_list:after {
  display: block;
  clear: both;
  content: "";
}
/* arrow */
.spMenu .spMenu_item.arrow-right .spMenu_inner {
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.spMenu .spMenu_item.arrow-blank .spMenu_inner {
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.spMenu .spMenu_item.arrow-pdf .spMenu_inner {
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.spMenu .spMenu_item.arrow-download .spMenu_inner {
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.spMenu .spMenu_item.arrow-pc .spMenu_inner {
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.spMenu .spMenu_item.arrow-right .spMenu_inner.color-top {
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.spMenu .spMenu_item.arrow-blank .spMenu_inner.color-top {
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.spMenu .spMenu_item.arrow-pdf .spMenu_inner.color-top {
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.spMenu .spMenu_item.arrow-download .spMenu_inner.color-top {
  background-repeat: no-repeat;
  background-position: right 10px center;
}


/* 検索エリア */
.spMenu .spMenu_searchWrap {
  padding: 20px 10px;
  background-color: #EDF7FC;
}
/* ボタンエリア */
.spMenu .spMenu_btnWrap {
  padding: 24px 10px;
  background-color: #EDF7FC;
}
.spMenu .spMenu_btnWrap .nmlBtn:not(.sp_col2) .nmlBtn_item:not(:first-child) {
  margin-top: 8px;
}
.spMenu .spMenu_btnWrap .nmlBtn_item.type-small .nmlBtn_text .main {
  font-size: 14px;
  color: #88aaaa;
}
.spMenu .spMenu_btnWrap .nmlBtn_item.type-small .nmlBtn_text .sub {
  font-size: 13px;
  color: #88aaaa;
}
.spMenu .spMenu_btnWrap .nmlBtn_item.color-white .nmlBtn_itemLink {
  border: 1px solid #88aaaa;
}



/* アコーディオン */
.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: 20px;
  height: 20px;
  content: "";
  background-color: #fff;
  background-size: 10px 10px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.spMenu .spMenu_acdBtn.active.spMenu_inner:not(.color-top) {
  background-color: #fff;
}
.spMenu .spMenu_acdBtn.active.spMenu_inner:after {
  background-color: #EDF7FC;
  background-size: 10px 1px;
}


.spMenuFoot {
  width: 100%;
  height: 44px;
  line-height: 44px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #3C4950;
}
.spMenuFoot span {
  padding-left: 30px;
  background-size: 20px 20px;
}

/* spMenu ナビ */
.spMenuNav {
  padding-bottom: 14px;
  background-color: #EDF7FC;
}
.spMenuNav .spMenuNav_list{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  background-color: #fff;
}
.spMenuNav .spMenuNav_item {
  position: relative;
  flex: 1 1 33%;
  height: 90px
}
.spMenuNav .spMenuNav_item-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
}
.spMenuNav .spMenuNav_icon{
  width: auto;
  height: 24px;
  text-align: center;
}
.spMenuNav .spMenuNav_title{
  height: 30px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: normal;
}


/* spMenuBtn
-------------------------------------------------- */
.spMenuBtnWrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 50px;
  height: 70px;
  text-align: center;
  background-color: #6EB92D;
}
.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: 16px;
  height: 20px;
}
.spMenuBtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 1px;
}
.spMenuBtn span:nth-of-type(1) {
  top: 14px;
  transform: translateY(0) rotate(0);
  animation: menu-bar01 .75s forwards;
}
.spMenuBtn span:nth-of-type(2) {
  top: 24px;
  transform: translateY(0) rotate(0);
  animation: menu-bar02 .75s forwards;
}
.spMenuBtnWrap.active .spMenuBtn span:nth-of-type(1) {
  animation: active-menu-bar01 .75s forwards;
}
.spMenuBtnWrap.active .spMenuBtn span:nth-of-type(2) {
  animation: active-menu-bar02 .75s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(5px) rotate(32deg);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-5px) rotate(-32deg);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(5px) rotate(32deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(-5px) rotate(-32deg);
  }
}

/* メガドロップ */
.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/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: #fff;
  background: #6A6A6A;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer .acd {
  border-radius: 0;
  border-top: none;
  border: 1px solid #000;
}

.footer .acd_box {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: #6A6A6A;
}

.footer .acd_box .innerWrap {
  padding: 20px 10px;
}

.footer .acd_btn {
  width: 100%;
  padding-left: 30px;
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

.footer .acd_btn::after {
  width: 10px;
  height: 100%;
  right: 35px;
  background: url(/common/images/arrow_right_half.svg) no-repeat center center / contain;
  transform: rotate(90deg);
}

.footer .acd_btn.active::after {
  transform: rotate(-90deg);
}

/* footer_sitemap
---------------------------------- */

.footer_sitemap {
  font-size: 12px;
}

/* footer_sitemapLwr */

.footer_sitemapLwr {
  text-align: left;
}

.footer_sitemapLwr:nth-child(n+2) {
  margin-top: 9px;
}

.footer_sitemapLwr_item:nth-child(n+2) {
  margin-top: 9px;
}

.footer_sitemapLwr_btn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #fff;
  padding: 25px 10px;
}

.footer_sitemapLwr_btn_item {
  width: calc(50% - 4px);
  display: flex;
  flex-direction: column;
}

.footer_sitemapLwr_btn_item:nth-child(even) {
  margin-left: 4px;
}

.footer_sitemapLwr_btn_item:nth-child(n+3) {
  margin-top: 16px;
}

.footer_sitemapLwr_btn_item .icon {
  margin-right: 1px;
}

.footer_sitemapLwr_btn_item .icon img {
  width: 19px;
  height: 17px;
}

.footer_sitemapLwr_btn_link {
  width: 100%;
  height: 100%;
  min-height: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #fff;
  border-radius: 40px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  transition: .2s all ease-in-out;
}

/* footer_copy
---------------------------------- */

.footer_copy {
  position: relative;
  color: #fff;
  background: #EB433C;
  padding: 14px 0;
  text-align: center;
}
.footer_copy_inner {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 0 10px;
}
.footer_copy_codes {
  font-size: 12px;
  letter-spacing: .4px;
}


/* 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;
}
