@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: 14px;
  --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);
}
body.is-scrollLock {
  padding-right: var(--scrollbarW, 0);
}
body:has(.header-simple) {
  padding-top: 0;
}
a {
  color: var(--mainColor);
  text-decoration: underline;
  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: 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) 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) > * {
  --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;
}


/* ==================================================
汎用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;
  border-bottom: 1px solid #91A8E6;
  min-width: 1240px;
  box-sizing: border-box;
}
.header_show {
  transition: transform 0.8s ease;
  transform: translateY(0);
}
.header_hide {
  transform: translateY(-100%);
  transition: transform 0.8s ease;
}

.header .headerWrap {
  height: 110px;
  padding: 0 20px;
  box-sizing: border-box;
}
.spMenuBtnWrap {
  display: none;
}

/* header_nav
-------------------------------------------------- */
.header_nav {
  position: relative;
  padding-left: 313px;
  box-sizing: border-box;
}
.header_nav .header_logo {
  height: 109px;
  box-sizing: border-box;
}
.header_nav .header_uprBox {
  height: 30px;
  box-sizing: border-box;
}
.header_nav .header_lwrBox {
  height: 80px;
  box-sizing: border-box;
}

/* header_nav - header_logo
-------------------------------------------------- */
.header_logo {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 20px 0;
}
.header_logo .header_heading {
  display: block;
  /* width: 240px;
  height: 52px; */
  overflow: hidden;
  /* text-indent: 100%; */
  /* white-space: nowrap; */
  /* background-size: 240px 52px; */
}
.header_codes {
  /* display: block; */
  margin-left: 10px;
  font-size: 10px;
  text-align: center;
}

/* header_nav - header_uprBox
-------------------------------------------------- */
.header_uprBox {
  position: relative;
  text-align: right;
  background: #fff;
  z-index: 2;
}
.header_uprBox .innerWrap {
  padding: 0;
}
.header_uprBox .headerParts_linkList {
  font-size: 0;
}
.header_uprBox .headerParts_linkItem {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  vertical-align: top;
}
.header_uprBox .headerParts_linkItem a {
  display: block;
  font-size: 13px;
  color: #6d7680;
  line-height: 1.2;
  border-bottom: 2px solid #fff;
  text-decoration: none;
  padding: 6px 0 5px;
}
.header_uprBox .headerParts_linkItem a:hover,
.header_uprBox .headerParts_linkItem a:focus {
  color: #285184;
  border-bottom: 2px solid #285184;
}
.header_uprBox .headerParts_linkItem a.current,
.header_uprBox .headerParts_linkItem a.active {
  color: #285184;
  font-weight: bold;
  border-bottom: 2px solid #285184;
}
.header_uprBox .headerParts_linkItem.hdr-searchBtn {
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  cursor: pointer;
}
.header_uprBox .headerParts_linkItem.hdr-searchBtn:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #285184 transparent transparent transparent;
  z-index: -1;
}

/* hover */
.header_uprBox .headerParts_linkItem.hdr-searchBtn:hover,
.header_uprBox .headerParts_linkItem.hdr-searchBtn:focus {
  opacity: 1;
}

/* active */
.header_uprBox .headerParts_linkItem.hdr-searchBtn.active:before {
  bottom: -8px;
  z-index: 1;
}

/* header_nav - header_lwrBox
-------------------------------------------------- */
.header_lwrBox {
  position: relative;
  vertical-align: top;
  background: #fff;
  z-index: 3;
}
.header_lwrBox .innerWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* overflow-x: hidden; */
  padding: 0;

}
.header_lwrBox .headerParts_linkList {
  padding: 15px 0;
  font-size: 0;
  text-align: right;
}
.header_lwrBox .headerParts_linkItem {
  display: inline-block;
}
.header_lwrBox .headerParts_linkItem a,
.header_lwrBox .headerParts_linkItem button {
  position: relative;
  padding: 0 15px;
  font-size: 18px;
  font-weight: bold;
  color: #1d3550;
  line-height: 50px;
  vertical-align: top;
  cursor: pointer;
  background: #fff;
  display: flex;
}
.header_lwrBox .headerParts_linkItem:not(:last-child) {
  margin-right: 10px;
}
.header_lwrBox .headerParts_linkItem a {
  text-decoration: none;
}
.header_lwrBox .headerParts_linkItem a:hover,
.header_lwrBox .headerParts_linkItem a:focus,
.header_lwrBox .headerParts_linkItem a.active,
.header_lwrBox .headerParts_linkItem button:hover,
.header_lwrBox .headerParts_linkItem button:focus,
.header_lwrBox .headerParts_linkItem button.active {
  color: #fff;
  background: #285184;
}
.header_lwrBox .headerParts_linkItem a:hover,
.header_lwrBox .headerParts_linkItem a:focus,
.header_lwrBox .headerParts_linkItem button:hover,
.header_lwrBox .headerParts_linkItem button:focus {
  color: #fff;
  background: #285184;
}
.header_lwrBox .headerParts_linkItem button[data-drop-nav-name]:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #285184 transparent transparent transparent;
  z-index: -1;
}
.header_lwrBox .headerParts_linkItem button:hover:before,
.header_lwrBox .headerParts_linkItem button:focus:before,
.header_lwrBox .headerParts_linkItem button.active:before {
  bottom: -8px;
  transition: bottom 0.2s ease;
}

.header_lwrBox .headerParts_linkItem .hdr-login,
.header_lwrBox .headerParts_linkItem button.hdr-login {
  padding-left: 40px;
  box-shadow: 0px 1px 0px 0px rgba(89,119,138,0.25);
}
.header_lwrBox .headerParts_linkItem .hdr-login:before,
.header_lwrBox .headerParts_linkItem button.hdr-login:before {
  border-color: #d39e20 transparent transparent transparent;
}
.header_lwrBox .headerParts_linkItem .hdr-login:hover,
.header_lwrBox .headerParts_linkItem .hdr-login:focus,
.header_lwrBox .headerParts_linkItem button.hdr-login:hover,
.header_lwrBox .headerParts_linkItem button.hdr-login:focus {
  background-color: #d39e20;
}

/* 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: #FFF5F5;
  border-top: 1px solid #ccc;
  border: none;
  min-width: 1280px;
}
.dropNav.active {
  opacity: 1;
}
.dropNav_main .innerWrap {
  display: flex;
  flex-direction: column;
  width: 1200px;
  max-height: calc(100vh - 110px - 56px);
  padding: 41px 0;
  margin: 0 auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dropNav_main .innerWrap::-webkit-scrollbar {
  display:none;
}
.dropNav_closeBtn {
  width: 100%;
  height: 56px;
  line-height: 56px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #6A6A6A;
}
.dropNav_closeBtn:hover,
.dropNav_closeBtn:focus {
  opacity: .7;
}
.dropNav_closeBtn span {
  padding: 4px 36px 4px 0;
  background-size: 16px 16px;
}

/* dropNav_search
-------------------------------------------------- */
.dropNav.dropNav_search {
  display: none;
  width: 100%;
  vertical-align: bottom;
  z-index: 1;
}
.dropNav.dropNav_search .innerWrap {
  padding: 20px 100px;
}
.dropNav.dropNav_search .searchtext {
  display: inline-block;
  width: 900px;
  height: 40px;
  margin-right: 14px;
  padding: 0 10px;
  font-size: 16px;
  vertical-align: top;
  background-size: 12px 12px;
  border: 1px solid #f3f5fa;
  border-radius: 6px;
}
.dropNav.dropNav_search .searchtext:focus {
  border: 2px solid #4676ce;
}
.dropNav.dropNav_search .search-btn {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 40px;
  padding: 0 0 0 40px;
  font-size: 14px;
  color: #1d3550;
  text-align: left;
  line-height: 28px;
  vertical-align: top;
  cursor: pointer;
  border: 1px solid #b7ccd9;
}
.dropNav.dropNav_search .search-btn:hover,
.dropNav.dropNav_search .search-btn:focus {
  background-color: #e8f5fd;
}

/* dropNav_loginSmall
-------------------------------------------------- */

.dropNav.dropNav_loginSmall {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 9;
  width: 400px;
  min-width: 400px;
  margin-right: 5px;
  background: #fff;
  filter:drop-shadow(0px 0px 4px rgba(0,0,0,0.5));
}
.dropNav.dropNav_loginSmall:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #fff transparent;
}
.dropNav.dropNav_loginSmall .dropNav_main .innerWrap {
  width: 400px;
}

/* 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%;
  background: #6A6A6A;
  color: #fff;
}

.footer .innerWrap {
  padding: 0;
}

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

.footer .acd {
  margin: 0;
  border: none;
}

.footer .acd_btn {
  display: none !important;
}

.footer .acd_box {
  display: block !important;
  background: none !important;
  padding: 0 !important;
}

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

.footer_sitemap {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  padding: 40px 0;
}

.footer_sitemapLwr {
  display: flex;
  justify-content: center;
}

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

.footer_sitemapLwr li {
  position: relative;
  padding: 0 25px;
}

.footer_sitemapLwr li:nth-child(n+2)::before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
}

.footer_sitemapLwr a:hover,
.footer_sitemapLwr a:focus {
  text-decoration: underline;
}

.footer_sitemapLwr_btn_list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.footer_sitemapLwr_btn_item {
  width: 100%;
  max-width: 160px;
  display: flex;
  flex-direction: column;
  margin: 0 12px;
}

.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: 38px;
  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_sitemapLwr_btn_item:hover .footer_sitemapLwr_btn_link,
.footer_sitemapLwr_btn_item:focus .footer_sitemapLwr_btn_link {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

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

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


/* btnPageTop
================================================== */
.btnPageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 68px;
  height: 68px;
  padding: 14px;
  background-color: #fff;
  z-index: 20;
  border-radius: 3px;
  box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1);
  transition: background-color .2s ease;
}
.btnPageTop img {
  vertical-align: top;
}
.btnPageTop.footer_fixed {
  position: absolute;
  right: 20px;
  top: -34px;
}
.btnPageTop:hover,
.btnPageTop:focus {
  background-color: #285184;
}


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