  @charset "UTF-8";
:root {
  --visible_height: 100vh;
  --tan: 0.4;
}

/* -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -     */
/* Basic elements                                                                             */
/* -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -     */


body, button, input, textarea, select {
  font-family: "Yu Gothic", YuGothic, 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1A1D21;
  line-height: 1.6;
  letter-spacing: 0.025em;
}
html, body {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
body.scrollLock {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
body:not(.top) {
  padding-top: 64px;
}
video {
  width: 100%;
  vertical-align: bottom;
}
a {
  color: #1a1d21;
  text-decoration: none;
}
input,textarea{
  -webkit-appearance: none;
  border-radius: 0;
}
.opac {
  transition: opacity .3s ease;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  */
/* Common styles                                                                              */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  */


/* Main section
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  */

.mainSec {
  width: 100%;
}

/* Contents section
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  */

.cntSec {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border-top: 1px solid #003288;
}
body.plain-left .cntSec:not(.cntSec-support) {
  border-top: none;
}
.cntSec.bdrTN, .heroSec + .cntSec, .footer .cntSec, .ancSec + .cntSec {
  border-top: none;
}
.cntSec .innerWrap {
  position: relative;
  width: 100%;
  padding: 32px 20px 64px;
  margin: auto;
}
body.plain-left .cntSec:not(:last-of-type) .innerWrap {
  padding-bottom: 0;
}
body.plain-left .cntSec .heading2 + .innerWrap {
  padding-top: 24px;
}
.cntSec.nextHero .innerWrap, .heroSec + .cntSec .innerWrap,
.mainSec .heroSec + .cntSec .heading2 {
  padding-top: 48px;
}
.mainSec .cntSec:last-of-type .innerWrap {
  padding-bottom: 48px;
}
body.simple .cntSec .innerWrap {
  padding-top: 0;
}
.footer .cntSec .innerWrap {
  padding: 0 10px;
}
.cntSec .innerWrap::after {
  content: "";
  display: block;
  clear: both;
}
.cntSec .innerWrap > *:first-child {
  margin-top: 0;
}
.cntSec .innerWrap > *:last-child {
  margin-bottom: 0;
}


/* ------------------------------------------------------------------------------------------ */
/* Header                                                                                     */
/* ------------------------------------------------------------------------------------------ */


/* Header
------------------------------------------------------------------------------------------ */
.header {
  z-index: 1000;
  width: 100%;
  height: 64px;
  position: fixed;
  top: 0;
  background-color: #fff;
  transform: translateY(0%);
  transition: 0.5s all ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header.header-simple {
  position: fixed !important;
  background-color: #fff !important;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05) !important;
}
.header.header-simple .headerWrap {
  height: 100%;
}

.header_logo {
  width: 120px;
  height: auto;
}
body:not(.top) .header .headerWrap .header_heading .logo_normal {
  display: block;
}
.headerWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  transition: 0.3s all ease;
  height: 100%;
  z-index: 1;
  width: 100%;
}
.headerWrap.active,
.header:not(.scrollTop) .headerWrap {
  background: #fff;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
}
body:not(.top) header:not(.scrollTop) {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05) !important;
}
body:not(.top) header {
  transition: transform 0s, opacity 0s, box-shadow 0.3s ease;
}
.header_heading img {
  width: 119px;
  height: auto;
}
.header-simple-en .header_heading img {
  width: 117px;
  height: 28px;
}
.header_uprBox {
  height: 66px;
}
.header_uprBox .innerWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding-top: 16px;
}
.header_lwrBox {
  padding-top: 10px;
  height: 52px;
}
.header_lwrBox .innerWrap {
  display: flex;
  align-items: flex-start;
}
.header_nmlLink {
  color: #1A1D21;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.header_language {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  border: 1px solid #003288;
}
.header_language::before {
  content: "";
  position: absolute;
  bottom: 0;
  border: 5px solid #003288;
  left: 0;
  border-color: transparent transparent #003288 #003288;
}
.header_language::after {
  content: "";
  position: absolute;
  bottom: 0;
  border: 5px solid #003288;
  right: 0;
  border-color: transparent #003288 #003288 transparent;
}
.header_language_btn {
  width: 48px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #003288;
}
div.header_language_btn {
  background-color: #003288;
  color: #fff;
}
body.top .header.scrollTop {
  position: fixed;
  background: #fff;
  transition: transform 0s ease, opacity 1s ease;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
}
body.top .header.scrollTop:not(.header-simple) .headerWrap {
  width: calc(100% - 64px);
  transition-duration: 0s;
}
body.top .header.scrollTop .header_nmlLink {
  color: #1A1D21;
}
body.top .header.scrollTop .header_language {
  border: 1px solid #003288;
}
body.top .header.scrollTop .header_language::before {
  border-color: transparent transparent #003288 #003288;
}
body.top .header.scrollTop .header_language::after {
  border-color: transparent #003288 #003288 transparent;
}
body.top .header.scrollTop .header_language_btn {
  background-color: #fff;
  color: #003288;
}
body.top .header.scrollTop div.header_language_btn {
  background-color: #003288;
  color: #fff;
}
body.top .header.scrollTop .sideNav {
  display: block;
}

/* Side Navigation
------------------------------------------------------------------------------------------ */

.sideNav {
  z-index: 1;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  height: 64px;
  width: 64px;
  background: linear-gradient(-68.2deg,
    rgba(0,50,136,1),
    rgba(5,124,207,1)
  );
}
.sideNav.active {
  background: #fff;
}
.sideNav.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 6px;
  width: 105%;
  background: linear-gradient(rgba(0, 0, 0, 0.05), transparent);
}
.sideNav_nmlLink {
  position: relative;
  display: block;
}
.sideNav_nmlLink_inner {
  position: relative;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
.sideNav_nmlLink_inner img {
  width: 28px;
}
.sideNav_nmlLink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(0%);
  transition: 0.6s all ease;
  z-index: 0;
}
.sideNav_nmlLink .text-main {
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}
.sideNav_scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 76px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s all ease;
}
.sideNav_scroll::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 64px;
  bottom: 0;
  left: 31px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  animation: side_nav_scroll 5s linear infinite both;
}
@keyframes side_nav_scroll {
  0% {
    transform: translateX(-50%) scaleY(0);
  }
  20% {
    transform: translateX(-50%) scaleY(1);
  }
  100% {
    transform: translateX(-50%) scaleY(1);
  }

}
.sideNav_scroll .text-main {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  transform: rotate(90deg);
  position: relative;
  top: -10px;
  left: -1px;
}

/* Global navigation
------------------------------------------------------------------------------------------ */

.gNavBtn_list {
  display: flex;
  justify-content: flex-start;
  margin-left: 6px;
  gap: 32px;
}
.gNavBtn_list .gNavBtn_item {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.gNavBtn_list .gNavBtn_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 77px;
  font-size: 16px;
  font-weight: bold;
  color: #1A1D21;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  transition: all .3s ease;
}
.gNavBtn_list .gNavBtn_item.active {
  background-color: #EDF7FC;
  border-radius: 16px 16px 0 0;
}
.gNavBtn_list .gNavBtn_item.active .gNavBtn_inner {
  color: #007DAF;
}

/* Mega Drop Navigation
------------------------------------------------------------------------------------------ */

.dropNavWrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 0;
}
.dropNavWrap.active {
  height: 100vh;
}
.dropNav {
  position: absolute;
  top: -1px;
  left: 0;
  display: none;
  width: 100%;
  overflow-y: auto;
  background: #EDF7FC;
  border: none;
}
.dropNav.active {
  opacity: 1;
}
.dropNav_main .innerWrap {
  display: table;
  width: 1200px;
  padding: 40px 0 87px;
  margin: 0 auto;
}
.dropNav_closeBtn {
  width: 100%;
  height: 56px;
  line-height: 56px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #1A1D21;
}
.dropNav_closeBtn span {
  padding-left: 30px;
  background-size: 20px 20px;
}
header .dropNav_title {
  height: 48px;
}
header .dropNav_title span,
header .dropNav_title a {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #1A1D21;
}
header .dropNav_title.arrow-right a {
  padding-right: 20px;
  background: url(/common_v2/images/icon_arrow_right_blue.svg) right center no-repeat;
}
header .dropNav_login .dropNav_main .innerWrap {
  width: 1080px;
}

/* SP menu
------------------------------------------------------------------------------------------ */

.spMenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  display: none;
  width: 100%;
  height: var(--visible_height);
  background-color: #fff;
  color: #fff;
}
.spMenu .spMenu_wrapper {
  height: 100%;
  padding-top: 64px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.spMenu_listWrap{
  padding: 15px 0;
  border-top: 1px solid #C3C8D6;
}
.spMenu_listWrap:first-child{
  border-top: none;
}
.spMenu_listTitle {
  text-align: center;
  font-size: 16px;
  font-weight: bold; font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  color: #1A1D21;
}
.spMenu_listLink {
  padding-top: 15px;
  text-align: center;
}
.spMenu_list {
  display: flex;
  flex-wrap: wrap;
  background-color: #F2F2F2;
}
.spMenu_list.color-white {
  background-color: #fff;
}
.spMenu .spMenu_item {
  flex: 0 0 100%;
}
.spMenu .spMenu_list.color-white > .spMenu_item.arrow-blank > .spMenu_inner {
  background: #fff url(/common_v2/images/icon_blank_blue.svg) no-repeat right 5px center / 10px 10px;
}
.spMenu .spMenu_list.color-none > .spMenu_item.arrow-blank > .spMenu_inner {
  background:  url(/common_v2/images/icon_blank_blue.svg) no-repeat right 5px center / 12px 12px;
}
.spMenu .spMenu_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  letter-spacing: 0.08em;
  min-height: 56px;
  padding: 4px 13px 4px 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #003288;
  background-color: #fff;
  border-bottom: 1px solid #A9B7C1;
}
.spMenu .spMenu_item.active > .spMenu_inner {
  background-color: #E0F0FA;
}
.spMenu .spMenu_item.color-top > .spMenu_inner {
  color: #003288;
  background-color: #fff;
  border-bottom: 1px solid #A9B7C1;
}
.spMenu .spMenu_item.active.color-top > .spMenu_inner {
  color: #fff;
  background-color: #003288;
}
.spMenu .spMenu_list:after {
  display: block;
  clear: both;
  content: "";
}
/* arrow */
.spMenu .spMenu_item.arrow-right .spMenu_inner {
  background-image: url(/common_v2/images/icon_arrow_right_blue.svg);
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 24px;
}
.spMenu .spMenu_item.arrow-blank .spMenu_inner {
  background-image: url(/common_v2/images/icon_blank_blue.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.spMenu .spMenu_item.color-top.arrow-blank .spMenu_inner {
  background-image: url(/common_v2/images/icon_blank_white.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* ボタンエリア */
.spMenu .spMenu_btnWrap {
  padding: 0 20px;
  margin-top: 20px;
}

/* アコーディオン */
.spMenu .spMenu_acd {
  display: none;
}
.spMenu .spMenu_acd .spMenu_inner {
  background: #F2F2F2;
  color: #1A1D21;
  padding: 4px 20px;
}
.spMenu .spMenu_acd .spMenu_item.arrow-right .spMenu_inner {
  background-size: 14px;
  letter-spacing: 0.025em;
}
.spMenu .spMenu_item.lv3 .spMenu_acd {
  background: #fff;
}
.spMenu .spMenu_item.lv3 .spMenu_item .spMenu_inner {
  padding: 4px 20px 4px 30px;
  background: #fff url(/common_v2/images/icon_arrow_right_blue.svg) no-repeat right 20px center / 14px;
  color: #1A1D21;
  font-weight: normal;
}
.spMenu .spMenu_list.textSize-large > .spMenu_item > .spMenu_inner {
  padding-left: 10px;
  font-size: 18px;
}
.spMenu .spMenu_acdBtn > .spMenu_inner:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background-image: url(/common_v2/images/icon_plus_blue.svg);
  background-size: 100%;
  border-radius: 50%;
  transform: translateY(-50%);
}
.spMenu .spMenu_acdBtn.active > .spMenu_inner:after {
  background-image: url(/common_v2/images/icon_minus_blue.svg);
}
.spMenu .spMenu_item.color-top.spMenu_acdBtn > .spMenu_inner:after {
  background: url(/common_v2/images/icon_plus_blue.svg) no-repeat center / contain;
}
.spMenu .spMenu_item.color-top.spMenu_acdBtn.active > .spMenu_inner:after {
  background-image: url(/common_v2/images/icon_minus_white.svg);
}
.spMenuFoot {
  width: 100%;
  height: 60px;
  line-height: 1;
  background: #fff;
  color: #A9B7C1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spMenuFoot span {
  margin-left: 10px;
}

/* spMenu ナビ */
.spMenuNav .spMenuNav_list{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
  background-color: #fff;
  padding: 15px 2%;
}
.spMenuNav .spMenuNav_item {
  position: relative;
  flex: 0 0 29%;
  height: 80px
}
.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;
  border: 1px solid #C3C8D6;
  border-radius: 8px;
}
.spMenuNav .spMenuNav_icon{
  width: auto;
  height: 24px;
  text-align: center;
}
.spMenuNav .spMenuNav_title{
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold; font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  line-height: 1.3;
}

/* spMenuBtn */
body.top .header.scrollTop>.spMenuBtnWrap {
  display: none;
}
.spMenuBtnWrap {
  width: 64px;
  height: 64px;
  padding-top: 13px;
  text-align: center;
  z-index: 30;
  margin-left: auto;
  position: absolute;
  top: 0;
  right: 0;
}
.spMenuBtn_text {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  font-size: 9px;
  font-weight: bold; font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  text-align: center;
}
.sideNav .spMenuBtnWrap .spMenuBtnText {
  color: #fff;
}
.spMenuBtn,
.spMenuBtn span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}
.spMenuBtn {
  position: relative;
  width: 24px;
  height: 18px;
}
.spMenuBtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #003288;
  border-radius: 1px;
}
.sideNav .spMenuBtn span {
  background-color: #fff;
}
.sideNav.active .spMenuBtn span {
  background-color: #003288;
}
.spMenuBtn span:nth-of-type(1) {
  top: 0;
}
.spMenuBtn span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.spMenuBtn span:nth-of-type(3) {
  bottom: 0;
}
.spMenuBtn span:nth-of-type(1) {
  animation: menu-bar01 .75s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.spMenuBtn span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
.spMenuBtn span:nth-of-type(3) {
  animation: menu-bar03 .75s forwards;
}
@keyframes menu-bar03 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.spMenuBtnWrap.active .spMenuBtn span:nth-of-type(1) {
  animation: active-menu-bar01 .75s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(8.5px) rotate(0deg);
  }
  100% {
    transform: translateY(8.5px) rotate(45deg);
  }
}
.spMenuBtnWrap.active .spMenuBtn span:nth-of-type(2) {
  opacity: 0;
}
.spMenuBtnWrap.active .spMenuBtn span:nth-of-type(3) {
  animation: active-menu-bar03 .75s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.sideNav .spMenuBtnWrap .spMenuBtnText {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
.sideNav .spMenuBtnWrap.active .spMenuBtnText {
  color: #003288;
}
.header>.spMenuBtnWrap .spMenuBtnText {
  color: #003288;
  font-size: 12px;
  font-weight: bold;
}
.header>.spMenuBtnWrap.active .spMenuBtnText {
  color: #003288;
}
.spMenu_language {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  border: 1px solid #003288;
  width: 250px;
  margin: 40px auto 0;
  background: #fff;
}
.spMenu_language::before {
  content: "";
  position: absolute;
  bottom: 0;
  border: 5px solid #003288;
  left: 0;
  border-color: transparent transparent #003288 #003288;
}
.spMenu_language::after {
  content: "";
  position: absolute;
  bottom: 0;
  border: 5px solid #003288;
  right: 0;
  border-color: transparent #003288 #003288 transparent;
}
.spMenu_language_btn {
  width: 125px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #003288;
}
div.spMenu_language_btn {
  background-color: #003288;
  color: #fff;
}


/* ------------------------------------------------------------------------------------------ */
/* Footer                                                                                     */
/* ------------------------------------------------------------------------------------------ */


.footer {
  background: #fff;
  position: relative;
}
.footer .nmlLink {
  width: 100%;
}
.footer .nmlLink_item {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  min-height: 34px;
}
.footer .txtLink {
  font-size: 14px;
  display: inline;
}
.footer .nmlLink_itemLink {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  min-height: 34px;
  padding-bottom: 14px;
}
.footer .nmlLink_item.arrow-right .nmlLink_itemLink::after {
  width: 24px;
  background-size: 24px;
}
.footer .footer_logo img {
  width: 175px;
  height: auto;
}
/* Site Map
------------------------------------------------------------------------------------------ */
.siteMap {
  display: none;
}
.siteMap_col {
  flex: 0 0 340px;
}
.siteMap_lwr {
  background-color: #F2F2F2;
  padding: 32px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.siteMap_lwr .footer_logo {
}
.siteMap_lwr .siteMap_lwr_links {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.siteMap_lwr .siteMap_lwr_linkItem {
  position: relative;
  height: 16px;
  vertical-align: middle;
  line-height: 1;
  letter-spacing: 0.025em;
  font-size: 14px;
}
.siteMap_lwr .siteMap_lwr_linkItem.arrow-blank {
  padding-right: 20px;
  background: url(/common_v2/images/icon_blank_black.svg) right top 0px / 14px no-repeat;
}
/* Banner
------------------------------------------------------------------------------------------ */
.cntSec.banner .innerWrap {
  padding: 48px 10px;
}
.banner_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.footer .cntSec .innerWrap .banner {
  margin-top: 48px;
}
.banner_item {
  width: 100%;
}
.banner_item img {
  width: 100%;
}
.footer_copy {
  text-align: center;
  position: relative;
  color: #fff;
  background: #1A1D21;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1;
}


/* ========================================================================================== */
/* Module                                                                                     */
/* ========================================================================================== */


/* Hero
========================================================================================== */

.heroSec {
  min-height: 200px;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.heroSec:not(.type-img):not(.type-center)::before {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(
    -54deg,
    transparent 0%,
    transparent 41.2%,
    #007CCF 41.2%,
    #007CCF 50.9%,
    #003288 50.9%,
    #003288 100%
  );
  height: 900px;
  width: 625px;
}
.heroSec:not(.type-img):not(.type-center)::after {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  top: auto;
  content: "";
  background: linear-gradient(
    -68.2deg,
    #057CCF 15%,
    #003288
  );
  height: 900px;
  width: 100%;
}
.heroSec.type-center::after {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  content: "";
  background: linear-gradient(
    180deg,
    #003288,
    #057CCF
  );
  height: 100%;
  width: 100%;
}
.heroSec.type-img .heroSec_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroSec .innerWrap {
  z-index: 2;
  position: relative;
  max-width: 100%;
  padding: 40px 20px;
  width: 100%;
  margin: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.heroSec .heading1 + .heroSec_lead {
  margin-top: 28px;
}
.heroSec .heroSec_lead {
  font-size: 16px;
  position: relative;
  padding-top: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.heroSec .heroSec_lead::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  top: 0;
  left: 0;
  background: #fff;
}
.heroSec .nmlBtn {
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.heroSec .nmlBtn::-webkit-scrollbar {
  display:none;
}
.heroSec .nmlBtn.type-small {
  width: 100%;
}
.mainSec .heroSec .nmlBtn .nmlBtn_item {
  flex: 1 0 auto;
  max-height: 42px;
  width: 100%;
}

.heroSec .nmlBtn .nmlBtn_item .nmlBtn_itemLink {
  min-height: 35px;
}

/* Heading
========================================================================================== */

/* heading1 */
.heading1 {
  color: #fff;
}
.heading1 .text-main {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
.heading1 .text-en {
  display: block;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  margin-top: 10px;
  letter-spacing: 0.05em;
}
.heading1 .text-sub {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.025em;
}
.heading1 .text-sub + .text-main {
  margin-top: 12px;
}
.heading1-simple {
  color: #003288;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  padding: 40px 20px 32px;
}

/* heading2 */
body:not(.plain-left) .heading2 {
  color: #003288;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  padding: 40px 20px 0;
}
body.plain-left .heading2 {
  color: #003288;
  text-align: left;
  font-size: 22px;
  padding: 32px 0 0;
  font-weight: bold;
}
body.plain-left .heading2_text {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin: auto;
}
.heading2-simple {
  font-weight: 700;
  font-size: 20px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 32px;
}
.heading2-simple::before {
  content: "";
  display: block;
  width: 7px;
  height: calc(100% - 0.4em);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(-60deg,
    #057CCF,
    #003288
  )
}

/* heading3 */
.heading3 {
  font-weight: 700;
  font-size: 20px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 32px;
}
.heading3:not(.first-child) {
  margin-top: 48px;
}
.heading3:not(.type-center)::before {
  content: "";
  display: block;
  width: 7px;
  height: calc(100% - 0.4em);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(-60deg,
    #057CCF,
    #003288
  )
}
.heading3.type-center {
  padding-left: 0;
  padding-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 32px;
}
.heading3.type-center::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    #003288,
    #057CCF
  )
}
body.plain-left .heading3 {
  padding-left: 0;
  margin-bottom: 16px;
}
body.plain-left .heading3::before {
  content: none;
}
form.js-agree-required .heading3.heading3-small {
  padding-left: 0;
  font-size: 16px;
  margin: 0;
}
form.js-agree-required .heading3.heading3-small + *{
  margin-top: 10px;
}
form.js-agree-required .heading3.heading3-small::before {
  content: none;
}
form.js-agree-required .heading3.heading3-small:not(:first-child) {
  margin-top: 24px;
}

/* heading4 */
.heading4 {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #003288;
  color: #003288;
  padding-bottom: 10px;
}
.heading4:not(:first-child) {
  margin-top: 34px;
}
.heading4:not(.style-none) + * {
  margin-top: 20px;
}

/* heading5 */
.heading5 {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #003288;
  margin: 32px 0 22px;
}

/* Anchor box
================================================== */
/* .anchorBox:not(:first-child) {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
} */
.anchorBox {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.anchorBox_item {
  /* border-bottom: 1px solid #A9B7C1; */
  width: 50%;
}
.anchorBox_item:nth-child(n+3) {
  border-top: 1px solid #A9B7C1;
}
.anchorBox_item.w100p:first-child {
  border-bottom: none;
  border-right: none;
  border-left: none;
}
.anchorBox_item.w100p:nth-child(n+1):not(:first-child) {
  border-top: 1px solid #A9B7C1;
}
.anchorBox_item + .anchorBox_item:not(.w100p) {
  border-left: 1px solid #A9B7C1;
}
.w100p + .anchorBox_item {
  border-top: 1px solid #A9B7C1;;
  border-left: none !important;
}
.w100p + .anchorBox_item:not(.w100p):nth-child(even) {
  border-right: 1px solid #A9B7C1;
}
.anchorBox_item:nth-child(odd) {
  border-left: none !important;
}
.anchorBox_item.w100p {
  border-bottom: none;
  border-right: none;
  border-left: none;
}
.anchorBox_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 13px 16px 15px;
  text-decoration: none;
  background-color: #F2F2F2;
}
.anchorBox_inner:after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/common_v2/images/arrow_down_half_blue.svg) no-repeat right center / contain;
}
.anchorBox_text {
  font-size: 16px;
}

/* Panel
================================================== */

.panel {
  border: 1px solid #A9B7C1;
}
.panel.in-bgLBlue,.cntSec.bgLBlue .panel, .panel.type-link {
  border: none;
}
.panel_inner {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 22px;
  flex-direction: column;
  background-color: #fff;
  padding: 32px 20px;
}
.panel_img:first-child {
  margin: -32px -20px 0;
}
.panel_img:not(:first-child) {
  width: 100%;
}
.panel_img img {
  width: 100%;
  max-width: 100%;
}
.panel_txt {
  line-height: 1.77;
}
.panel_txt_main {
  color: #003288;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  letter-spacing: 0.03em;
}
.panel .panel_txt .nmlLink .nmlLink_item {
  width: 100%;
}
.panel .panel_txt .nmlLink .nmlLink_itemLink {
  padding-bottom: 12px;
}
.panel .panel_txt .nmlLink .nmlLink_itemLink .nmlLink_text {
  text-align: left;
}
.panel .panel_inner > .nmlLink {
  margin-top: 0;
}
.panel .panel_txt .nmlLink + .panel_txt_sub {
  margin-top: 16px;
}
.panel_txt_sub {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.03em;
}
.panel_txt_main + .panel_txt_sub {
  margin-top: 6px;
}
/* 見出し位置最初 */
.panel_txt:first-child .panel_txt_main {
  text-align: center;
}
.panel_txt:first-child .panel_txt_main + .panel_txt_sub {
  border-top: 1px solid #A9B7C1;
  padding-top: 20px;
  margin-top: 12px;
}
/*--- リンクバージョン ---*/
.panel.type-link a.panel_inner {
  position: relative;
  text-decoration: none;
  background-color: #F2F2F2;
}
.panel.type-link.in-bgLBlue a.panel_inner, .bgLBlue .panel.type-link a.panel_inner {
  background-color: #fff;
}
.panel.type-link a.panel_inner::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent #003288 transparent;
}
.panel.type-link.type-small a.panel_inner {
  padding: 16px;
  min-height: 54px;
  background-color: #E0F0FA;
}
.panel.type-link.type-small a.panel_inner::after {
  right: 8px;
  bottom: 8px;
  border-width: 0 0 8px 8px;
}
/*--- オプション ---*/
/* 画像 */
.panel_img-cover {
  aspect-ratio: 335 / 207;
  position: relative;
  overflow: hidden;
}
.panel_img-cover img {
  height: 100%;
  object-fit: cover;
}

/* アイコン：PDF */
.panel.type-link a.panel_inner.arrow-pdf::after {
  background: url(/common_v2/images/icon_pdf_blue.svg) center / 38px no-repeat;
  width: 38px;
  height: 19px;
  border: none;
}

/* Large Panel
========================================================================================== */
.largePanel {
  border: none;
}
.largePanel:not(:first-child) {
  margin-top: 24px;
}
.largePanel_inner {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 22px;
  flex-direction: column;
  padding: 32px 20px;
  position: relative;
  text-decoration: none;
  background-color: #F2F2F2;
}
.largePanel_inner::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent #003288 transparent;
}
.largePanel_img {
}
.largePanel_img {
  margin: -32px -20px 0;
}
.largePanel_img img {
  width: 100%;
  max-width: 100%;
}
.largePanel_txt {
  line-height: 1.77;
}
.largePanel_title {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #003288;
  color: #003288;
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.largePanel_description {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.025em;
  margin-bottom: 16px;
}
/* 見出し位置最初 */
.largePanel_txt:first-child .largePanel_txt_main {
  text-align: center;
}
.largePanel_txt:first-child .largePanel_txt_main + .largePanel_txt_sub {
  border-top: 1px solid #A9B7C1;
  padding-top: 20px;
  margin-top: 12px;
}
/*--- リンクバージョン ---*/
.largePanel.type-link a.largePanel_inner::after {
}
.largePanel.type-link.type-small a.largePanel_inner {
  padding: 16px;
  min-height: 54px;
  background-color: #E0F0FA;
}
.largePanel.type-link.type-small a.largePanel_inner::after {
  right: 8px;
  bottom: 8px;
  border-width: 0 0 8px 8px;
}
/*--- オプション ---*/
/* 画像 */
.largePanel_img-cover {
  aspect-ratio: 335 / 207;
  position: relative;
  overflow: hidden;
}
.largePanel_img-cover img {
  height: 100%;
  object-fit: cover;
}

/* Point
========================================================================================== */

.pointBox {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 100%;
}
.pointBox_inner {
  width: 100%;
  background-color: #E0F0FA;
  padding: 64px 24px 24px 24px;
}
.pointBox .numIcon_outer {
  position: relative;
  height: 36px;
  width: 100%;
}
.pointBox .numIcon {
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translate(-50%, 0);
}


/* Number Icon
========================================================================================== */

.numIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(
    180deg,
    #003288,
    #057CCF
  );
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.numIcon_text {
  display: block;
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.numIcon_no {
  margin-top: 4px;
  display: block;
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
  font-style: italic;
}
.numIcon > img {
  width: 100%;
  height: 100%;
}



/* Video
========================================================================================== */

.video {
  aspect-ratio: 16 / 9;
  max-width: 540px;
  position: relative;
  margin: auto;
}
.video:not(:first-child) {
  margin-top: 40px;
}
.video > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}


/* Box 1
================================================== */

.box1 {
  margin-top: 20px;
  padding: 20px 10px;
  background-color: #F2F2F2;
}
.box1.type-large {
  border-radius: 26px 0 26px 0;
  padding: 20px 24px;
}
.box1:first-child {
  margin-top: 0;
}
.box1_head {
  color: #003288;
  font-size: 16px;
  font-weight: 700;
}
.box1_head + * {
  margin-top: 12px;
}
.box1_body > *:first-child {
  margin-top: 0;
}
/* modifier - color-red */
.box1.color-red {
  background-color: #FFECED;
}
.box1.color-red .box1_head {
  color: #B9060E;
}
/* modifier - color-white */
.box1.color-white {
  background-color: #fff;
  border: 1px solid #003288;
}
.box1.color-white.in-bgLBlue, .cntSec.bgLBlue .box1.color-white {
  border: none;
}
.box1.color-white .box1_head {
  color: #003288;
}
/* アコーディオン付き */
.box1.acd {
}
.box1 .box1_head.js-acd_btn,
.box1 .box1_head.js-acd_btn-sp {
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  display: flex;
  align-items: center;
  vertical-align: middle;
  margin-bottom: 0;
}
.box1 .box1_head.js-acd_btn::before,
.box1 .box1_head.js-acd_btn-sp::before {
  content: '';
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  mask: url(/common_v2/images/icon_plus_white.svg) no-repeat center / 18px;
  -webkit-mask: url(/common_v2/images/icon_plus_white.svg) no-repeat center / 18px;
  background: #003288;
  z-index: 1;
}
.box1.color-red .box1_head.js-acd_btn::before,
.box2.color-red .box1_head.js-acd_btn-sp::before {
  background: #B9060E;
}
.box1 .box1_head.js-acd_btn.active::before,
.box1 .box1_head.js-acd_btn-sp.active::before {
  mask: url(/common_v2/images/icon_minus_white.svg) no-repeat center / 18px;
  -webkit-mask: url(/common_v2/images/icon_minus_white.svg) no-repeat center / 18px;
  background: #fff;
}
.box1 .box1_head.js-acd_btn::after,
.box1 .box1_head.js-acd_btn-sp::after {
  content: '';
  display: block;
  position: absolute;
  right: -2px;
  border-radius: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid #003288;
  z-index: 0;
}
.box1.color-red .box1_head.js-acd_btn::after,
.box1.color-red .box1_head.js-acd_btn-sp::after {
  border: 1px solid #B9060E;
}
.box1 .box1_head.js-acd_btn.active::after,
.box1 .box1_head.js-acd_btn-sp.active::after {
  background: #003288;
}
.box1.color-red .box1_head.js-acd_btn.active::after,
.box1.color-red .box1_head.js-acd_btn-sp.active::after {
  background: #B9060E;
}
.box1 .box1_head.js-acd_btn + .box1_body.js-acd_box,
.box1 .box1_head.js-acd_btn-sp + .box1_body.js-acd_box-sp {
  display: none;
}

/* Box 2
================================================== */

.box2 {
  margin-top: 20px;
  border-radius: 0 16px 0 16px;
}
.box2:first-child {
  margin-top: 0;
}
.box2_head {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #1A1D21;
  background-color: #F2F2F2;
}
.box2_head-icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.box2_body {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #F2F2F2;
}
/* color-blue */
.box2.color-blue {
  background-color: #fff;
}
.box2.color-blue .box2_head {
  color: #fff;
  background-color: #003288;
  border: 1px solid #003288;
}
.box2.color-blue .box2_body {
  background-color: #fff;
  border: 1px solid #003288;
}
.box2.color-blue.in-bgLBlue .box2_body, .cntSec.bgLBlue .box2.color-blue .box2_body {
  border: none;
}
/* color-aqua */
.box2.color-aqua {
  background-color: #fff;
}
.box2.color-aqua .box2_head {
  border: 1px solid #007CCF;
  background: #007CCF;
  color: #fff;
}
.box2.color-aqua .box2_body{
  background-color: #fff;
  border: 1px solid #007CCF;
}
.box2.color-aqua.in-bgLBlue .box2_body, .cntSec.bgLBlue .box2.color-aqua .box2_body {
  border: none;
}
/* color-red */
.box2.color-red {
  background-color: #fff;
}
.box2.color-red .box2_head {
  border: 1px solid #B9060E;
  background: #B9060E;
  color: #fff;
}
.box2.color-red .box2_body{
  background-color: #fff;
  border: 1px solid #B9060E;
}
.box2.color-red.in-bgLBlue .box2_body, .cntSec.bgLBlue .box2.color-red .box2_body {
  border: none;
}
/* アコーディオン付き */
.box2.acd {
}
.box2_head.js-acd_btn {
  cursor: pointer;
  padding-right: 50px;
}
.box2_head.js-acd_btn::before {
  content: '';
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  mask: url(/common_v2/images/icon_plus_white.svg) no-repeat center / 18px;
  -webkit-mask: url(/common_v2/images/icon_plus_white.svg) no-repeat center / 18px;
  background: #fff;
  z-index: 1;
}
.box2_head.js-acd_btn.active::before {
  mask: url(/common_v2/images/icon_minus_white.svg) no-repeat center / 18px;
  -webkit-mask: url(/common_v2/images/icon_minus_white.svg) no-repeat center / 18px;
}
.box2_head.js-acd_btn::after {
  content: '';
  position: absolute;
  right: 14px;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 8px;
  z-index: 0;
}
.box2_head.js-acd_btn + .box2_body.js-acd_box {
  display: none;
}

/* FAQ box(box2ベース)
========================================================================================== */
.type-faq .box2_head {
  position: relative;
  padding-left: 48px;
}
.type-faq .box2_body {
  position: relative;
  padding-left: 48px;
}
.type-faq .faqIcon-q {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 26px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  margin-right: 0.3em;
  font-weight: bold;
  transform: translateY(-50%);
}
.type-faq .faqIcon-a {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 26px;
  text-align: center;
  color: #EA610C;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: bold;
}
.type-faq .faqIcon-q .faqIcon-no {
  font-size: 14px;
  color: #fff;
}
.type-faq .faqIcon-a .faqIcon-no {
  font-size: 14px;
  color: #EA610C;
}



/* Note Box
================================================== */

.noteBox {
  margin-top: 20px;
  background-color: #F7E6E9;
  border-radius: 0 16px 0 16px;
}
.noteBox:first-child {
  margin-top: 0;
}
.noteBox_head {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #fff;
  background-color: rgba(185, 6, 6, 1);
  font-size: 16px;
  font-weight: bold; font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  line-height: 1.4;
  position: relative;
  border-radius: 0 16px 0 0;
}
.noteBox_body {
  padding: 16px 20px;
}

/* アコーディオン付き */
.noteBox_head.js-acd_btn, .noteBox_head.js-acd_btn-sp {
  border: 1px solid rgba(185, 6, 6, 1);
  cursor: pointer;
  border-radius: 0 16px 0 16px;
  transition: all .3s ease;
}
.noteBox_head.js-acd_btn::after, .noteBox_head.js-acd_btn-sp::after {
  content: '';
  display: block;
  position: absolute;
  right: 8px;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  transition: all .3s ease;
}
.noteBox_head.js-acd_btn.active, .noteBox_head.js-acd_btn-sp.active {
  border-radius: 0 16px 0 0;
}

/* Box 3 (scroll)
================================================== */

.box3 {
  border: 1px solid #003288;
  overflow-y: scroll;
  padding: 14px 18px;
  height: 249px;
}

/* Tab
================================================== */
.stdTab {
  width: 100%;
  margin-top: 20px;
}
.stdTab:first-child {
  margin-top: 0;
}
.stdTab_btnWrap {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.stdTab_btn {
  position: relative;
  display: flex;
  flex: 1;
  background-color: #fff;
  font-weight: bold; font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  border-top: 1px solid #373D42;
  border-bottom: 1px solid #373D42;
  border-right: 1px solid #373D42;
}
.stdTab_btn:first-child {
  border-left: 1px solid #373D42;
}
.stdTab_btn.active {
  background-color: #373D42;
  color: #fff;
}
.stdTab_btn.active:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 9px 0 9px;
  border-color: #373D42 transparent transparent transparent;
  z-index: 1;
}
.stdTab_btn>span, .stdTab_btn>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 8px;
  color: inherit;
  text-decoration: none;
}
.stdTab_bodyWrap {
  position: relative;
}
.stdTab_body {
  width: 100%;
  padding: 40px 0 0;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}
.stdTab_body.active {
  position: static;
}
.stdTab_body>*:first-child {
  margin-top: 0;
}
.stdTab_body>*:last-child {
  margin-bottom: 0;
}
/* col2 ～ col4 */
.stdTab.col2 .stdTab_btnWrap,
.stdTab.col3 .stdTab_btnWrap,
.stdTab.col4 .stdTab_btnWrap,
.stdTab.sp_col2 .stdTab_btnWrap,
.stdTab.sp_col3 .stdTab_btnWrap,
.stdTab.sp_col4 .stdTab_btnWrap {
  flex-wrap: wrap;
}
.stdTab.col2 .stdTab_btn:after,
.stdTab.col3 .stdTab_btn:after,
.stdTab.col4 .stdTab_btn:after,
.stdTab.sp_col2 .stdTab_btn:after,
.stdTab.sp_col3 .stdTab_btn:after,
.stdTab.sp_col4 .stdTab_btn:after {
  display: none;
}
.stdTab.col2 .stdTab_btn { flex: 0 0 calc(100% / 2);}
.stdTab.col3 .stdTab_btn { flex: 0 0 calc(100% / 3);}
.stdTab.col4 .stdTab_btn { flex: 0 0 calc(100% / 4);}
.stdTab.sp_col2 .stdTab_btn { flex: 0 0 calc(100% / 2);}
.stdTab.sp_col3 .stdTab_btn { flex: 0 0 calc(100% / 3);}
.stdTab.sp_col4 .stdTab_btn { flex: 0 0 calc(100% / 4);}

.stdTab.col2 .stdTab_btn:nth-child(2n+1) {
  border-left: 1px solid #373D42;
}
.stdTab.col3 .stdTab_btn:nth-child(3n+1) {
  border-left: 1px solid #373D42;
}
.stdTab.col4 .stdTab_btn:nth-child(4n+1) {
  border-left: 1px solid #373D42;
}
.stdTab.sp_col2 .stdTab_btn:nth-child(n),
.stdTab.sp_col3 .stdTab_btn:nth-child(n),
.stdTab.sp_col4 .stdTab_btn:nth-child(n) {
  border-left: none;
}
.stdTab.sp_col2 .stdTab_btn:nth-child(2n+1) {
  border-left: 1px solid #373D42;
}
.stdTab.sp_col3 .stdTab_btn:nth-child(3n+1) {
  border-left: 1px solid #373D42;
}
.stdTab.sp_col4 .stdTab_btn:nth-child(4n+1) {
  border-left: 1px solid #373D42;
}

.stdTab.col2 .stdTab_btn:nth-child(n+3),
.stdTab.col3 .stdTab_btn:nth-child(n+4),
.stdTab.col4 .stdTab_btn:nth-child(n+5),
.stdTab.sp_col2 .stdTab_btn:nth-child(n+3),
.stdTab.sp_col3 .stdTab_btn:nth-child(n+4),
.stdTab.sp_col4 .stdTab_btn:nth-child(n+5) {
  border-top:none;
}

/* Table
================================================== */
.nmlTable {
  width: 100%;
  margin-top: 20px;
  table-layout: fixed;
}
.nmlTable:first-child {
  margin-top: 0;
}
.nmlTable th {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #C3C8D6;
  text-align: center;
}
.nmlTable td {
  padding: 16px;
  border: 1px solid #ccc;
}
.nmlTable td *:last-child {
  margin-bottom: 0;
}
.nmlTable thead th {
  font-weight: bold; font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  color: #fff;
  background: #003288;
}
.nmlTable tbody th {
  font-weight: bold; font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  color: #fff;
  background: #003288;
}
.nmlTable tbody.vaM td {
  vertical-align: middle;
}
.nmlTable tbody td {
  background: #fff;
}
.nmlTable thead+tbody th {
  color: inherit;
  background: #fff;
}
.nmlTable caption {
  margin-bottom: 4px;
  font-size: 16px;
  text-align: left;
}

/* tdのテキストを上下中央 */
.nmlTable.vaM tbody td {
  vertical-align: middle;
}

/* --------------------------------------------------
SP1カラム化
-------------------------------------------------- */
.nmlTable.sp_col1,
.nmlTable.sp_col1>thead,
.nmlTable.sp_col1>thead>tr,
.nmlTable.sp_col1>thead>tr>th,
.nmlTable.sp_col1>thead>tr>td,
.nmlTable.sp_col1>tbody,
.nmlTable.sp_col1>tbody>tr,
.nmlTable.sp_col1>tbody>tr>th,
.nmlTable.sp_col1>tbody>tr>td {
  display: block;
  width: 100%;
}
.nmlTable.sp_col1>thead>tr>th,
.nmlTable.sp_col1>tbody>tr>th {
  border: none;
}
.nmlTable.sp_col1>thead>tr>td,
.nmlTable.sp_col1>tbody>tr>td {
  border-top: none;
  border-left: 1px solid #ccc;
}

/* ==================================================
SP オーバーフロースクロール
================================================== */
.scrollX_wrap {
  position: relative;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
}
.scrollX_wrap:first-child {
  margin-top: 0;
}
.scrollX_wrap .scrollX,
.scrollX_wrap .scrollX_sjis {
  width: 600px;
  min-width: 100%;
}
.scrollX_wrap .scrollX_overlay {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index:1;
}
.scrollX_wrap .scrollX_btn {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  padding-left: 72px;
  word-break: keep-all;
  z-index:2;
}
.scrollX_wrap .scrollX_btn span {
  font-weight: bold; font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  font-size: 16px;
  color: #fff;
}
.scrollX_wrap .scrollX_btn:after {
  position: absolute;
  left: 0;
  top: -30px;
  content: '';
  width: 75px;
  height: 82px;
  background: url(/common_v2/images/icon_swipe.svg) no-repeat center center / contain;
  animation-name: swipe;
  animation-duration: 1.2s;
  animation-delay: 0s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

@keyframes swipe {
  0% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(-5px);
  }
}

/* Inquiry
================================================== */


/* Search
================================================== */


/* SyncSearch SyncAnswer
================================================== */


/* Form
================================================== */

.form {
  width: 100%;
  overflow: hidden;
}

/* form error */
.formErrorBox {
  padding: 16px;
  background-color: #FFECED;
  margin-top: 48px;
}
.formError.formField:first-child {
  padding-top: 16px;
}
.formError.formField {
  padding-right: 10px;
  padding-left: 10px;
}
.formError.formField::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 120%;
  z-index: -1;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFECED;
}
.formError.formField .formMessage.formMessage-error {
  font-weight: 700;
  color: #B9060E;
}

/* form hr */
.formHr {
  width: 100%;
  height: 2px;
  background: #003288;
  margin: 32px 0;
}
.formHr.formHr-small {
  width: 100%;
  height: 1px;
  background: #A9B7C1;
  margin: 16px 0;
}

/* form step */
.formStep {
  display:flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.cntSec .innerWrap .formStep {
  margin-top: 30px;
}
.formStep:not(.style-none) + * {
  margin-top: 34px;
}
.formStep_item {
  flex: 1 1 auto;
  height: 68px;
  position: relative;
  color: #A9B7C1;
  border: none;
  padding: 0 10px;
}
.formStep_itemInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.formStep_itemInner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #A9B7C1;
}
.formStep_item.current .formStep_itemInner::after {
  background: #003288;
}
.formStep_num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  vertical-align: middle;
}
.formStep_s {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 3px;
}
.formStep_n {
  font-size: 24px;
  vertical-align: middle;
  font-style: italic;
}
.formStep_text {
  font-size: 18px;
  font-weight: 700;
}
.formStep_item.current .formStep_num,
.formStep_item.current .formStep_text {
  color: #003288;
}

/* form field */
.formField {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  padding: 32px 0;
  position: relative;
}
.formField:first-child, .formHr + .formField {
  padding-top: 0;
}
.formField::after {
  content: "";
  position: absolute;
  display: block;
  width: 200%;
  height: 1px;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #A9B7C1;
}
.formField.formField-agree {
  border: none;
  justify-content: center;
}
.formField.formField-agree .formLabel {
  flex: 0 0 auto;
}
.js-agree-required-message {
  display: none;
}
.formLegend {
  font-weight: bold;
  flex: 1 0 auto;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
}
.formLegend.formLegend-required::after {
  content: "必須";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 24px;
  color: #fff;
  line-height: 1;
  background-color: #B9060E;
  font-size: 14px;
  margin-left: 12px;
}
.formLabel {
  display: block;
  position: relative;
  padding: 0;
}
.formValue.formValue-radio .formLabel {
  padding: 16px;
}
.formLabel.formLabel-bgWhite {
  background: #fff !important;
}
label.formLabel {
  background: #F2F2F2;
}
label.formLabel.current {
  background: #E0F0FA;
}
.formLabel.formLabel-heading {
  display: block;
  margin-top: 20px;
}
.formLabel.formLabel-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
}
.formLabel.formLabel-heading .formLabel_text.formLabel_text-heading {
  display: block;
  margin-bottom: 16px;
}
.formLabel.formLabel-heading:not(:first-child) {
  margin-top: 20px;
}
.formHr:not(.pc) + .formLabel.formLabel-heading:not(:first-child) {
  margin-top: 0;
}
.formLabel.formLabel-heading .formLabel_text.formLabel_text-heading {
  font-weight: bold;
}
.formLabel_text {
  position: relative;
  max-width: 100%;
  flex: 1 0 auto;
  overflow-wrap: anywhere;
}
.formValue, .formValue_outer {
  flex: 1 1 auto;
}
.formValue.formValue-flex {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.formValue:not(.formValue-flex)  .formLabel:not(:first-child) {
  margin-top: 5px;
}
.formMessage {
  margin-top: 12px;
}
.formText {
  background-color: #F2F2F2;
  border: none;
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
}
.formCheck {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.formCheck + .formLabel_text {
  padding-left: 50px;
}
.formCheck + .formLabel_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background: url(/common_v2/images/icon_unchecked.svg) center / 100% no-repeat;
}
.formField-agree .formLabel {
  padding: 0;
}
.formField-agree {
  height: 20px;
}
.formField-agree .formCheck + .formLabel_text {
  display: flex;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  height: 20px;
}
.formField-agree .formCheck + .formLabel_text::before {
  display: inline-block;
  position: relative;
  top: 4px;
  margin-right: 10px;
}
.formCheck:checked + .formLabel_text::before {
  background: url(/common_v2/images/icon_checked.svg) center / 100% no-repeat;
}
.formRadio {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.formRadio + .formLabel_text {
  display: inline-block;
  max-width: 100%;
  padding-left: 34px;
  cursor: pointer;
}
.formRadio + .formLabel_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(/common_v2/images/radio_unchecked.svg) center / 100% no-repeat;
}
.formRadio:checked + .formLabel_text::before {
  background: url(/common_v2/images/radio_checked.svg) center / 100% no-repeat;
}
.radio-acd-box {
  overflow: hidden;
  max-height: 0;
  transition: 0.3s all ease;
}
.radio-acd-box.active {
  max-height: 1000px;
}
.formSelect {
  width: 100%;
  min-height: 40px;
  border: none;
  background: #F2F2F2 url(/common_v2/images/icon_select.svg) right 20px center / 16px 12px no-repeat;
  flex: 1 1 auto;
  padding: 13px 16px;
  font-size: 14px;
}
.formTextarea {
  background-color: #F2F2F2;
  border: none;
  width: 100%;
  resize: vertical;
  min-height: 54px;
  padding: 13px 16px;
}
.nmlBtn_item.formSubmit {
  width: 100%;
  height: 64px;
  font-size: 14px;
}
.nmlBtn_item.formBack {
}
.nmlBtn_item.formBack .nmlBtn_itemLink {
}
.nmlBtn_item.formBack .nmlBtn_text .text-main {
}
::-webkit-input-placeholder,
::placeholder,
:placeholder-shown {
  color: rgba(60, 73, 80, 0.5);
}
:-ms-input-placeholder {
  color: rgba(60, 73, 80, 0.5);
}

/* Normal figure
========================================================================================== */
.nmlFig img {
  width: 100%;
}
.nmlFig .nmlFig_caption {
  margin-top: 12px;
  font-size: 12px;
}

/* Normal text
================================================== */

.nmlText {
  margin-top: 4px;
  letter-spacing: 0.025em;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.nmlText.leftIcon {
  padding-left: 28px;
  position: relative;
}
.nmlText.leftIcon::before {
  position: absolute;
  content: "";
  top: 1em;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #003288;
}
.footer .nmlLink+.nmlText {
  margin-top: 20px;
}
.footer .nmlText {
  margin-top: 10px;
}
.nmlText strong {
  font-weight: 700;
}
.requiredLabel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;;
  width: 48px;
  height: 24px;
  font-size: 14px;
  color: #fff;
  background-color: #B9060E;
  margin: 0 10px;
  font-weight: 700;
}
.requiredLabel:first-child {
  margin-left: 0;
}
.nmlText:first-child {
  margin-top: 0;
}
.nmlText img {
  max-width: 100%;
}


/* Catch text
========================================================================================== */

.catch {
  margin: 40px auto;
  font-size: 22px;
  line-height: 1.45;
  text-align: center;
  color: #1A1D21;
  font-weight: bold;
}
.catch:first-child {
  margin-top: 0;
}
.catch.catch-small {
  margin-top: 36px;
  margin-bottom: 24px;
  font-size: 20px;
}
.catch > strong{
  font-weight: bold;
  color: #007CCF;
  background-size: 100%;
  background-image: linear-gradient(transparent 0.85em, #FFD5B5 0.85em);
  background-repeat: no-repeat;
}

/* Float layout
========================================================================================== */

.imgTxtFloat {
  margin-top: 20px;
}
.imgTxtFloat:first-child {
  margin-top: 0;
}
.imgTxtFloat .imgTxtFloat_item {
  margin-top: 12px;
}
.imgTxtFloat .imgTxtFloat_item img {
  object-fit: contain;
  width: 100%;
}
.imgTxtFloat .imgTxtFloat_item:first-child {
  margin-top: 0;
}

/* Telephone number
========================================================================================== */

.telNumber:not(.style-none) {
  margin-top: 20px;
}
.telNumber:not(.style-none):first-child {
  margin-top: 0;
}
.telNumber:not(.style-none) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.telNumber:not(.style-none) span,
.telNumber:not(.style-none) a {
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: #003288;
  line-height: 1.3;
  text-decoration: none;
  vertical-align: bottom;
}
.telNumber span,
.telNumber a {
  color: #007CCF;
  text-decoration: underline;
}
/* freedial */
.telNumber.icon-freedial span,
.telNumber.icon-freedial a {
  padding-left: 1.6em;
  background: url(/common_v2/images/icon_freedial.svg) no-repeat left center / auto .8em;
}
/* tel */
.telNumber.icon-tel span,
.telNumber.icon-tel a {
  padding-left: 1em;
  background: url(/common_v2/images/icon_tel.svg) no-repeat left center / auto .8em;
}
/* List
================================================== */

/* cirList */
.cirList:not(:first-child) {
  margin-top: 20px;
}
.cirList > li > ul:not(.style-none), .cirList > li > ol:not(.style-none) {
  margin-top: 8px;
}
.cirList > li > ul:not(.noteList):not(.noteNumList), .cirList > li > ol:not(.noteList):not(.noteNumList) {
  margin-left: 8px;
}
.cirList > li {
  position: relative;
  margin-top: 8px;
  padding-left: 1em;
  line-height: 1.5;
  text-indent: 0;
}
.cirList > li:first-child {
  margin-top: 0;
}
.cirList > li:before {
  position: absolute;
  left: 0;
  top: .5em;
  content: "";
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background: #003288;
}
.cirList > li.fcRed:before {
  background: #B9060E;
}
.formErrorBox .cirList>li {
  color: #B9060E;
  font-weight: 700;
}
.formErrorBox .cirList>li:before {
  background: #B9060E;
}

/* checkList */
.checkList:not(:first-child) {
  margin-top: 20px;
}
.checkList > li > ul:not(.style-none), .checkList > li > ol:not(.style-none) {
  margin-top: 8px;
}
.checkList > li > ul:not(.noteList):not(.noteNumList), .checkList > li > ol:not(.noteList):not(.noteNumList) {
  margin-left: 8px;
}
.checkList > li {
  position: relative;
  margin-top: 8px;
  padding-left: 1.3em;
  line-height: 1.5;
  text-indent: 0;
}
.checkList > li:first-child {
  margin-top: 0;
}
.checkList > li:before {
  position: absolute;
  left: 0;
  top: .25em;
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: url(/common_v2/images/icon_check.svg) no-repeat center center;
  background-size: 1em 1em;
}

/* numList */
.numList {
  margin-top: 20px;
  padding-left: 2em;
  counter-reset: num1;
}
.numList:first-child {
  margin-top: 0;
}
.numList > li > ul:not(.style-none), .numList > li > ol:not(.style-none) {
  margin-top: 8px;
}
.numList > li > ul:not(.noteList):not(.noteNumList), .numList > li > ol:not(.noteList):not(.noteNumList) {
  margin-left: 8px;
}
.numList > li {
  position: relative;
  margin-top: 8px;
  line-height: 1.5;
  list-style-type: none;
  list-style-position: inside;
  counter-increment: num1;
  text-indent: 0;
}
.numList > li:first-child {
  margin-top: 0;
}
.numList > li:before {
  position: absolute;
  left: -2em;
  top: 0;
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  color: #003288;
  display: marker;
  content: counter(num1) ".";
}
.box1.color-red .numList>li:before {
  color: #B9060E;
}

/* docNumList */
.docNumList {
  padding-left: 2em;
  counter-reset: docNum;
}
.docNumList:not(:first-child) {
  margin-top: 20px;
}
.docNumList > li > ul:not(.style-none), .docNumList > li > ol:not(.style-none) {
  margin-top: 8px;
}
.docNumList > li > ul:not(.noteList):not(.noteNumList), .docNumList > li > ol:not(.noteList):not(.noteNumList) {
  margin-left: 8px;
}
.docNumList > li {
  position: relative;
  margin-top: 8px;
  line-height: 1.5;
  list-style-type: none;
  list-style-position: inside;
  counter-increment: docNum;
  text-indent: 0;
}
.docNumList > li:first-child {
  margin-top: 0;
}
.docNumList > li:before {
  position: absolute;
  left: -2.5em;
  top: 0;
  font-weight: normal;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "Yu Gothic", 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  color: #1A1D21;
  display: marker;
  content: "（" counter(docNum) "）";
}

/* noteList */
.noteList:not(:first-child) {
  margin-top: 20px;
}
.noteList:not(:first-child) {
  margin-top: 8px;
}
.noteList > li > ul:not(.style-none), .noteList > li > ol:not(.style-none) {
  margin-top: 8px;
}
.noteList > li {
  position: relative;
  margin-top: 8px;
  padding-left: 1.8em;
  font-size: 12px;
  text-indent: 0;
}
.noteList > li:first-child {
  margin-top: 0;
}
.noteList > li:before {
  position: absolute;
  left: 0.5em;
  top: 0;
  content: "\203B";
  display: block;
}

/* noteNumList */
.noteNumList:not(:first-child) {
  margin-top: 20px;
  counter-reset: noteNum;
}
.noteNumList > li > ul:not(.style-none), .noteNumList > li > ol:not(.style-none) {
  margin-top: 8px;
}
.noteNumList > li {
  position: relative;
  margin-top: 8px;
  padding-left: 2.5em;
  font-size: 14px;
  list-style-type: none;
  list-style-position: inside;
  counter-increment: noteNum;
  text-indent: 0;
}
.noteNumList > li:first-child {
  margin-top: 0;
}
.noteNumList > li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "※" counter(noteNum);
}

/* nmlList */
.nmlList:not(:first-child) {
  margin-top: 20px;
}
.nmlList > li > ul:not(.style-none), .nmlList > li > ol:not(.style-none) {
  margin-top: 8px;
}
.nmlList > li > ul:not(.noteList):not(.noteNumList), .nmlList > li > ol:not(.noteList):not(.noteNumList) {
  margin-left: 8px;
}
.nmlList > li {
  margin-top: 8px;
  list-style-type: none;
  text-indent: 0;
  margin-top: 8px;
}
.nmlList > li:first-child {
  margin-top: 0;
}

/* News List
========================================================================================== */

.newsList {
  background-color: #fff;
  width: 100%;
}

/* News Item
========================================================================================== */

.newsItem {
  padding: 18px 0 14px;
  position: relative;
}
.newsItem_upr {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
  justify-content: flex-start;
}
.newsItem:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: bottom;
  background-color: #A9B7C1;
  position: absolute;
  left: 0;
  bottom: 0;
}
.newsItem_date {
  font-size: 12px;
  letter-spacing: 0.025em;
}
.newsItem_category {
  font-weight: bold;
  position: relative;
  font-size: 12px;
  min-width: 56px;
  min-height: 21px;
  color: #fff;
  padding: 0 8px;
  background: #003288;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsItem_title {
  line-height: 1.7;
}
.newsItem_icon img {
  vertical-align: text-top;
}
.newsItem_new {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #F4131D;
  margin-left: 0.5em;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}

/* News Category Button
================================================== */

.newsCategory {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}
.newsCategory_btn {
  border: 1px solid #003288;
  position: relative;
  flex: 1 1 40%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1D21;
  font-size: 14px;
  background: linear-gradient(100deg,
    #057CCF,
    #003288
  )
}
.newsCategory_btn .text-main {
  position: relative;
  z-index: 0;
  font-weight: 700;
}
.newsCategory_btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 0;
  opacity: 1;
  transition: 0.3s all ease;
}
.newsCategory_btn.current {
  color: #fff;
  border: none;
}
.newsCategory_btn.current::before {
  opacity: 0;
}

/* News Detail
========================================================================================== */

.newsDetail_body {
  margin-top: 30px;
}
.newsDetail_category {
  font-weight: bold;
  color: #003288;
}
.newsDetail_date {
  font-size: 14px;
}
.newsDetail_info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

/* Pagination
========================================================================================== */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
  margin-top: 40px;
}
.pagination .pagination_previous {
  position: relative;
  flex: 0 0 auto;
  margin-right: 20px;
  cursor: pointer;
}
.pagination .pagination_previous::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: #BCBDBE;
  mask: url(/common_v2/images/icon_arrow_left_white.svg) center / 24px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_arrow_left_white.svg) center / 24px no-repeat;
  transition: .3s all ease;
}
.pagination .pagination_next {
  position: relative;
  flex: 0 0 auto;
  margin-left: 20px;
  cursor: pointer;

}
.pagination .pagination_next::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: #BCBDBE;
  mask: url(/common_v2/images/icon_arrow_right_white.svg) center / 24px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_arrow_right_white.svg) center / 24px no-repeat;
  transition: .3s all ease;
}
.pagination .pagination_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 1080px;
}
.pagination .pagination_item {
  position: relative;
  flex: 0 0 56px;
  min-width: 56px;
  height: 48px;
  text-align: center;
  transition: all .3s ease;
  background: linear-gradient(100deg,
    #057CCF,
    #003288
  )
}
.pagination .pagination_item:nth-last-child(2) .pagination_item-inner::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 36px;
  top: 50%;
  transform: translateY(-50%);
  right: -1px;
  background-color: #A9B7C1;
  z-index: 0;
  opacity: 1;
  transition: 0.3s all ease;
}
.pagination .pagination_item .pagination_item-inner::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 36px;
  top: 50%;
  transform: translateY(-50%);
  left: -1px;
  background-color: #A9B7C1;
  z-index: 0;
  opacity: 1;
  transition: 0.3s all ease;
}
.pagination .pagination_item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 0;
  opacity: 1;
  transition: 0.3s all ease;
}

.pagination .pagination_item.current .pagination_item-inner::before,
.pagination .pagination_item.current .pagination_item-inner::after {
  content: none;
}
.pagination .pagination_item.current + .pagination_item .pagination_item-inner::after {
  opacity: 0;
}
.pagination .pagination_item.current::after {
  opacity: 0;
}
.pagination .pagination_item.current .pagination_item-inner {
  color: #fff;
}
.pagination .pagination_item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all .3s ease;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  color: #1A1D21;
  position: relative;
  z-index: 1;
}


/* Text Link
================================================== */

.txtLink {
  color: #1A1D21;
  position: relative;
  padding-bottom: 2px;
  font-size: 14px;
  word-break: break-all;
}
.txtLink.tdU,.txtLink.sp_tdU {
  text-decoration: none !important;
  background: url(/common_v2/images/line_blue.png) no-repeat left bottom;
  background-position: left bottom;
  background-size: 100% 1px;
  padding-bottom: 6px;
  line-height: 2.2em;
}
.txtLink .new {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #F4131D;
  margin-left: 0.5em;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}
.txtLink.arrow-right::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  padding-left: 1.3em;
  background: url(/common_v2/images/icon_arrow_right_blue.svg) no-repeat left 0.25em center/0.55em 1em;
}
.txtLink.arrow-down::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  padding-left: 1.3em;
  background: url(/common_v2/images/icon_hat_down_blue.svg) no-repeat left center/1em 0.55em;
}
.txtLink.arrow-right.tdU::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(/common_v2/images/icon_arrow_right_blue.svg) no-repeat left 0.25em center/1em 1.1em;
  position: relative;
  top: 0.1em;
  margin-left: 6px;
}
.txtLink.arrow-pdf .file-size::before {
  content: "PDF";
  width: 35px;
  height: 15px;
  border: 1px solid #003288;
  color: #003288;
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 1px 4px;
  position: relative;
  top: 0;
  margin: 0 0.3em 0 0.5em;
  word-break: keep-all;
}
.txtLink.arrow-blank .txtLink_icon {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1.1em;
  background: url(/common_v2/images/icon_blank_blue.svg) no-repeat center / 100%;
  position: relative;
  top: 0.1em;
  margin-left: 4px;
}

/* Inline link
========================================================================================== */

.inlineLink {
  text-decoration: underline;
  color: #007CCF;
  transition: 0.3s all ease;
  word-break: break-all;
}
.inlineLink.arrow-blank {
  padding-right: 1.6em;
  background: url(/common_v2/images/icon_blank_aqua.svg) no-repeat bottom 0.1em right 0.4em / 0.9em;
}
.inlineLink.arrow-pdf {
  padding-right: 2.5em;
  background: url(/common_v2/images/icon_pdf_aqua.svg) no-repeat bottom 0 right 0.2em / 2em;
}

/* Normal Button
================================================== */

.nmlBtn {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 24px;
  flex-wrap: wrap;
}
.nmlBtn:not(:first-child) {
  margin-top: 32px;
}
.nmlBtn + .nmlBtn {
  margin-top: 24px;
}
.topicsCnt_item .nmlBtn {
  margin-top: 30px;
}
/* nmlBtn_item */
.nmlBtn_item {
  width: 100%;
}
.nmlBtn_item .nmlBtn_itemLink {
  position: relative;
  min-height: 54px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.375;
  border: 1px solid #003288;
  padding: 8px 24px;
}
.nmlBtn_item.not-btn .nmlBtn_itemLink {
  border :none;
}

/* nmlBtn_icon */
.nmlBtn_icon {
  z-index: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
/* nmlBtn_text */
.nmlBtn_text {
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}
.nmlBtn_text .text-main {
  display: block;
  font-weight: bold;
  font-size: 14px;
}
.nmlBtn_text .text-sub {
  display: block;
  font-size: 14px;
}
/* arrow-right */
.nmlBtn_item.arrow-right .nmlBtn_itemLink::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  mask: url(/common_v2/images/icon_arrow_right_white.svg) center/24px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_arrow_right_white.svg) center/24px no-repeat;
  transition: 0.2s all ease;
}
/* arrow-down */
.nmlBtn_item.arrow-down .nmlBtn_itemLink::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  mask: url(/common_v2/images/icon_arrow_down_white.svg) center/24px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_arrow_down_white.svg) center/24px no-repeat;
  transition: 0.2s all ease;
}
/* arrow-blank */
.nmlBtn_item.arrow-blank .nmlBtn_itemLink::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 17px;
  height: 17px;
  mask: url(/common_v2/images/icon_blank_white.svg) center/17px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_blank_white.svg) center/17px no-repeat;
  transition: 0.2s all ease;
}
/* arrow-left */
.nmlBtn_item.arrow-left .nmlBtn_itemLink::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  background: url(/common_v2/images/icon_arrow_left_blue.svg) center/24px no-repeat;
}
.nmlBtn_item.bg-transparent.arrow-right .nmlBtn_itemLink::after {
  background: #fff;
}
.nmlBtn_item.arrow-right.type-center .nmlBtn_text {
  margin: 0 16px 0 0;
}
.nmlBtn_item.arrow-right.type-center .nmlBtn_itemLink::after {
  position: static;
  transform: translateY(0);
}
/* arrow-download */
.nmlBtn_item.arrow-download .nmlBtn_itemLink::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 23px;
  height: 23px;
  background: #003288;
  mask: url(/common_v2/images/icon_download_white.svg) center/23px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_download_white.svg) center/23px no-repeat;
}
/* type-small */
.nmlBtn.type-small {
  gap: 16px;
  width: auto;
  justify-content: flex-start;
}
.nmlBtn.type-small + .nmlBtn.type-small {
  margin-top: 16px;
}
.nmlBtn.type-small .nmlBtn_item {
  width: auto;
  min-width: 130px;
}
.nmlBtn.type-small .nmlBtn_itemLink {
  min-height: 40px;
  padding: 4px 54px 4px 24px;
}
.nmlBtn.type-small .nmlBtn_item.not-btn .nmlBtn_itemLink {
  padding: 4px 24px;
}
.nmlBtn.type-small .nmlBtn_item.arrow-right .nmlBtn_itemLink::after {
  width: 15px;
  height: 10px;
  mask: url(/common_v2/images/icon_arrow_right_white.svg) center/15px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_arrow_right_white.svg) center/15px no-repeat;
}
.nmlBtn.type-small .nmlBtn_item.arrow-down .nmlBtn_itemLink::after {
  width: 15px;
  height: 18px;
  mask: url(/common_v2/images/icon_arrow_down_white.svg) center/15px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_arrow_down_white.svg) center/15px no-repeat;
}
.nmlBtn.type-small .nmlBtn_item.arrow-download .nmlBtn_itemLink::after {
  width: 15px;
  height: 15px;
  mask: url(/common_v2/images/icon_download_white.svg) center/15px no-repeat;
  -webkit-mask: url(/common_v2/images/icon_download_white.svg) center/15px no-repeat;
}

/* bg-fill */
.nmlBtn_item.bg-fill:not(.arrow-pdf) .nmlBtn_itemLink::after {
  background: #fff;
}
.nmlBtn_item.bg-transparent .nmlBtn_itemLink::after {
  background: #fff;
}

.nmlBtn_item .nmlBtn_itemLink::after                      { background: #003288;}
.nmlBtn_item.not-btn .nmlBtn_itemLink                     { color: #003288; }
.nmlBtn_item .nmlBtn_itemLink                             { background-color: #fff;    color: #1A1D21;  }
.nmlBtn_item.bg-fill .nmlBtn_itemLink                     { background-color: #003288; color: #fff; border-color: #003288; }
.nmlBtn_item.bg-transparent .nmlBtn_itemLink              { background: transparent;     color: #fff; border-color: #fff; }
.nmlBtn_item.bg-aqua .nmlBtn_itemLink                     { background: #007CCF;       color: #fff; border-color: #007CCF; }

.nmlBtn_item .nmlBtn_itemLink::after                      { background-color: #003288; }
.nmlBtn_item.bg-fill .nmlBtn_itemLink::after              { background-color: #fff; }
.nmlBtn_item.bg-transparent .nmlBtn_itemLink::after       { background-color: #fff; }
.nmlBtn_item.bg-aqua .nmlBtn_itemLink::after              { background-color: #fff; }

/* arrow-pdf */
.nmlBtn_item.arrow-pdf .nmlBtn_itemLink::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 43px;
  height: 22px;
  background: url(/common_v2/images/icon_pdf_fill_blue.svg) center/43px no-repeat;
  transition: 0.2s all ease;
}
.nmlBtn_item.arrow-pdf.bg-fill .nmlBtn_itemLink::after,
.nmlBtn_item.arrow-pdf.bg-aqua .nmlBtn_itemLink::after {
  background: url(/common_v2/images/icon_pdf_white.svg) center/43px no-repeat;
}

/* arrow-excel */
.nmlBtn.type-small .arrow-excel .nmlBtn_itemLink {
  padding: 8px 10px;
}
.nmlBtn.type-small .arrow-excel .nmlBtn_itemLink .file-size::before {
  content: "Excel";
  width: 42px;
  height: 15px;
  border: 1px solid #003288;
  color: #003288;
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 2px 6px;
  position: relative;
  top: -0.1em;
  margin: 0 0.3em 0 0.5em;
  transition: 0.3s all ease;
}

/* arrow-pdf */
.nmlBtn.type-small .arrow-pdf .nmlBtn_itemLink {
  padding: 8px 10px;
}
.nmlTable .nmlBtn.type-small .arrow-pdf .nmlBtn_itemLink::after {
  content: none;
}
.nmlBtn.type-small .arrow-pdf .nmlBtn_itemLink .file-size::before {
  content: "PDF";
  width: 42px;
  height: 15px;
  border: 1px solid #003288;
  color: #003288;
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 2px 6px;
  position: relative;
  top: -0.1em;
  margin: 0 0.3em 0 0.5em;
  transition: 0.3s all ease;
}
/* Small button
================================================== */

.smlBtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: 24px;
  gap: 16px;
}
.smlBtn:first-child {
  margin-top: 0;
}
.smlBtn_item {
  min-width: 215px;
  display: flex;
  flex-direction: column;
}
.smlBtn_itemLink {
  width: 100%;
  height: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: no-repeat right 12px center;
  border: 1px solid ;
  padding: 4px 12px;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
}
.smlBtn_item[class*="arrow-"] .smlBtn_itemLink {
  padding-right: 28px;
}
.smlBtn_text {
  width: 100%;
}
.smlBtn_text .text-main {
  display: block;
  margin: 2px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.smlBtn_text .text-sub {
  display: block;
  margin: 2px 0;
  font-size: 11px;
  line-height: 1;
}

/*--- 各種color ---*/
/* デフォルト */
.smlBtn_item .smlBtn_itemLink { color: #1A1D21; background-color: #fff; border-color: #A9B7C1;}

/*--- 各種アイコン  ---*/
/* 通常 */
.smlBtn_item.arrow-right .smlBtn_itemLink { background-size: 6px 12px;}
/* 下向き */
.smlBtn_item.arrow-down .smlBtn_itemLink { background-size: 12px 6px;}
/* 別窓 */
.smlBtn_item.arrow-blank .smlBtn_itemLink { background-size: 16px 16px;}
/* PDF */
.smlBtn_item.arrow-pdf .smlBtn_itemLink { background-size: 24px;}

/*--- 色別各種アイコン ---*/
/* デフォルト */
.smlBtn_item.arrow-right .smlBtn_itemLink { background-image: url(/common_v2/images/arrow_right_half_gray.svg);}
.smlBtn_item.arrow-down .smlBtn_itemLink { background-image: url(/common_v2/images/arrow_down_half_gray.svg);}
.smlBtn_item.arrow-blank .smlBtn_itemLink { background-image: url(/common_v2/images/icon_blank_gray.svg);}
.smlBtn_item.arrow-pdf .smlBtn_itemLink { background-image: url(/common_v2/images/icon_pdf_gray.svg);}

/* Image Open Button
================================================== */

.imgOpen_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
  width: 200px;
  height: 30px;
  background: url(/common_v2/images/icon_search_blue.svg) no-repeat center right 10px / 16px;
  border: 1px solid;
  font-size: 14px;
  font-weight: bold;
}

/* Normal Link
================================================== */

.nmlLink {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
.nmlLink:not(:first-child) {
  margin-top: 20px;
}
.footer .nmlLink {
  gap: 34px 40px;
}
.nmlLink.col1 {
  flex-direction: column;
}
.nmlLink_itemLink {
  min-height: 28px;
  padding-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.05em;
  min-height: 30px;
  word-break: break-all;
}
.nmlLink_itemLink::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background: #003288;
}
.nmlLink_itemLink::after {
  content: "";
  height: 1.3em;
  margin-left: 6px;
  flex: 0 0 auto;
}
.nmlLink_item.color-white .nmlLink_text {
  color: #fff;
}
.nmlLink_item.color-white .nmlLink_itemLink::before {
  background: #fff;
}
.nmlLink_text {
  vertical-align: middle;
}
.nmlLink_item.arrow-right .nmlLink_itemLink::after {
  display: inline-block;
  width: 15px;
  background: url(/common_v2/images/icon_arrow_right_blue.svg) center/15px no-repeat;
}
.nmlLink_item.arrow-right.color-white .nmlLink_itemLink::after {
  background: url(/common_v2/images/icon_arrow_right_white.svg) center/15px no-repeat;
}
.nmlLink_item.arrow-down .nmlLink_itemLink::after {
  display: inline-block;
  width: 15px;
  background: url(/common_v2/images/icon_arrow_down_blue.svg) center/15px no-repeat;
}
.nmlLink_item.arrow-down.color-white .nmlLink_itemLink::after {
  background: url(/common_v2/images/icon_arrow_down_white.svg) center/15px no-repeat;
}
.nmlLink_item.arrow-pdf .nmlLink_itemLink::after {
  display: inline-block;
  width: 37px;
  height: 19px;
  background: url(/common_v2/images/icon_pdf_blue.svg) center/37px 19px no-repeat;
  bottom: -4px;
}
.nmlLink_item.arrow-jpg .nmlLink_itemLink::after {
  display: inline-block;
  width: 37px;
  height: 19px;
  background: url(/common_v2/images/icon_jpg_blue.svg) center/37px 19px no-repeat;
  bottom: -4px;
}
.nmlLink_item.arrow-png .nmlLink_itemLink::after {
  display: inline-block;
  width: 37px;
  height: 19px;
  background: url(/common_v2/images/icon_png_blue.svg) center/37px 19px no-repeat;
  bottom: -4px;
}
.nmlLink_item.arrow-pdf.color-white .nmlLink_itemLink::after {
  background: url(/common_v2/images/icon_pdf_white.svg) center/37px 19px no-repeat;
}
.nmlLink_item.arrow-blank .nmlLink_itemLink::after {
  display: inline-block;
  width: 15px;
  background: url(/common_v2/images/icon_blank_blue.svg) center/15px no-repeat;
}
.nmlLink_item.arrow-blank.color-white .nmlLink_itemLink::after {
  background: url(/common_v2/images/icon_blank_white.svg) center/15px no-repeat;
}

/* --------------------------------------------------
parts margin
-------------------------------------------------- */

.siteMap {
  margin-top: 48px;
  padding-top: 56px;
}

/* Bread Crumb
================================================== */

.breadCrumb {
  display: block;
  padding: 0 20px 24px;
  background: #fff;
}
.breadCrumb li {
  margin-top: 4px;
  padding-left: 14px;
  color: #1A1D21;
  position: relative;
}
.breadCrumb li:first-child {
  margin-top: 0;
}
.breadCrumb li:last-child {
  padding-left: 0;
}
.breadCrumb li::before {
  content: '>';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #003288;
}
.breadCrumb li:last-child::before {
  content: "";
}
.breadCrumb li a {
  color: #003288;
}

/* Search
========================================================================================== */

.search {
  position: relative;
  width: 100%;
  height: 54px;
  margin: 0 auto;
  border-radius: 0;
}
.spMenu_searchWrap .search {
  margin-top: 32px;
  width: calc(100% - 40px);
}
.search_input {
  position: relative;
  height: 100%;
}
.search_input input {
  background-color: #F2F2F2;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 13px 76px 13px 16px;
  font-size: 14px;
  transition: all .3s ease;
  border: none;
}
::-webkit-input-placeholder {
  color: #3C4950;
  opacity: .5;
}
:-ms-input-placeholder {
  color: #3C4950;
}
:placeholder-shown {
  color: #3C4950;
}
.search_input.focused,
.search_input.focused+.search_submit,
.search_input.entered input,
.search_input.entered+.search_submit {
  background-color: rgba(255, 255, 255, 1);
  transition: all .3s ease;
}
.search_input.focused,
.search_input.entered input {
  border-radius: 0;
}
.search_submit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 60px;
  height: 100%;
  background-color: transparent;
  transition: all .3s ease;
  background: transparent url(/common_v2/images/icon_search_blue.svg) no-repeat center / 20px 20px;
}
.search_submit input {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* 下層ナビ
========================================================================================== */

.underNav {
  display: flex;
  gap: 5px;
}
.nmlBtn.underNav:not(:first-child) {
  margin-top:20px
}
.underNav_title {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
}

.underNav .nmlBtn_item {
  width: calc((100% - 10px) / 3);
}
.underNav .nmlBtn_icon {
  position: static;
  transform: translateY(0);
}
.underNav .nmlBtn_icon img {
  width: 46px;
}
.underNav .nmlBtn_itemLink {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 85px;
  padding: 5px;
}
.underNav .nmlBtn_itemLink::after {
  content: none !important;
}

/* モーダル
========================================================================================== */
.modal_wrapper {
  display: none;
  width: calc(100% - 40px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 1001;
}
.modal_wrapper .modal .modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  padding: 24px 24px 0px;
  margin: 0 auto;
}
.modal_wrapper .modal .modal_closeBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 32px;
  margin-top: 24px;
  background-color: #1A1D21;
}
.modal_wrapper .modal .modal_closeBtn img {
  width: 15px;
  height: 15px;
}
.modal_wrapper .modal .modal_closeBtn .closeModal {
  color: #fff;
}
.modal_overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}
.modal_wrapper.modal_video .modal .modal-content {
  width: auto;
  padding: 0;
}
.modal_wrapper.modal_video .modal .video {
  max-width: none;
  width: 100%;
}
.modal .video > iframe {
  position: static;
}
.modal_wrapper.modal_video .modal .modal_closeBtn {
  margin-top: 0;
}

/* MV再生/停止ボタン: header.html内に配置されているため全ページで読み込まれるが、トップページ以外では不要なので非表示にする。トップページではJSで表示を制御する。 */
.mvAutoplay_btn {
  display: none;
}
