  @charset "UTF-8";
:root {
  --tan: 0.5018;
  --hero_height_under: 530px;
  --hero_height_under-kv: 700px;
}


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


body, button, input, textarea, select {
  font-family: "Yu Gothic", YuGothic, 'ヒラギノ角ゴ Pro W3', 'ヒラギノ角ゴ W3', 'メイリオ', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1A1D21;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
html, body {
  width: 100%;
  min-width: 1280px;
  margin-left: 0;
  margin-right: 0;
}
body.scrollLock {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
body.simple {
  padding-top: 105px;
}
video {
  width: 100%;
  vertical-align: bottom;
}
a {
  color: #1a1d21;
  text-decoration: none;
}
a:hover {
  transition: .3s all ease;
}
input[type="text"],textarea{
  -webkit-appearance: none;
  border-radius: 0;
}
.opac {
  transition: opacity .3s ease;
}
.opac:hover {
  opacity: .7;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  */
/* 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;
  max-width: 1280px;
  padding: 80px 100px;
  margin: auto;
}
body.simple .cntSec .innerWrap {
  padding-top: 0;
}
body.plain-left .cntSec:not(:last-of-type) .innerWrap {
  padding-bottom: 0;
}
body.plain-left .cntSec .heading2 + .innerWrap {
  padding-top: 40px;
}
.cntSec.banner .innerWrap {
  padding: 48px 0;
}
.cntSec.large .innerWrap {
  padding: 80px 50px;
}
.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%;
  min-width: 1280px;
  height: 105px;
  position: fixed;
  top: 0;
  background-color: #fff;
  transform: translateY(0%);
  opacity: 1;
  transition: 0.5s all ease, 0s left;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
}
.header .headerWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  transition: 0.3s all ease;
  position: relative;
  z-index: 1;
}
.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 .header_heading img {
  width: 208px;
  height: auto;
}
.header-simple-en .header_heading img {
  width: 209px;
  height: 50px;
}
.header .header_uprBox {
  height: 58px;
}
.header .header_uprBox .innerWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding-top: 12px;
}
.header .header_lwrBox {
  padding-top: 10px;
  height: 47px;
}
.header .header_lwrBox .innerWrap {
  display: flex;
  align-items: flex-start;
}
.header .header_nmlLink {
  color: #1A1D21;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.header .header_nmlLink:hover {
  color: #007CCF !important;
}
.header .header_language {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  border: 1px solid #003288;
}
.header .header_language::after {
  content: "";
  position: absolute;
  bottom: 0;
  border: 5px solid #003288;
  right: 0;
  border-color: transparent #003288 #003288 transparent;
}
.header .header_language_btn {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #003288;
  transition: 0.3s all ease;
}
.header a.header_language_btn:hover,
.header div.header_language_btn {
  background-color: #003288;
  color: #fff;
}
.header.scrollTop {
  position: absolute;
  left: 0 !important;
  background-color: #fff;
  transition: transform 0.5s ease;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
}
.header.scrollTop .header_nmlLink {
  color: #1A1D21;
}
.header.scrollTop .header_language {
  border: 1px solid #003288;
}
.header.scrollTop .header_language::after {
  border-color: transparent #003288 #003288 transparent;
}
.header.scrollTop .header_language_btn {
  background-color: #fff;
  color: #003288;
}
.header.scrollTop a.header_language_btn:hover, .header.scrollTop div.header_language_btn {
  background-color: #003288;
  color: #fff;
}
.header.scrollTop .sideNav {
  display: block;
}
body:not(.top) .header.scrollTop .sideNav {
  visibility: hidden;
}
.header.scrollTop .headerWrap.hover,
.header.scrollTop .headerWrap:hover {
  background-color: #fff;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
}
.header .headerWrap.hover .header_nmlLink,
.header .headerWrap:hover .header_nmlLink {
  color: #1A1D21;
}
.header .headerWrap.hover .header_language,
.header .headerWrap:hover .header_language {
  border: 1px solid #003288;
}
.header .headerWrap.hover .header_language::before,
.header .headerWrap:hover .header_language::before {
  border: 5px solid #003288;
  border-color: transparent transparent #003288 #003288;
}
.header .headerWrap.hover .header_language::after,
.header .headerWrap:hover .header_language::after {
  border: 5px solid #003288;
  border-color: transparent #003288 #003288 transparent;
}
.header .headerWrap.hover .header_language_btn,
.header .headerWrap:hover .header_language_btn {
  background-color: #fff;
  color: #003288;
}
.header .headerWrap.hover a.header_language_btn:hover,
.header .headerWrap:hover a.header_language_btn:hover {
  background-color: #003288;
  color: #fff;
}
.header .headerWrap.hover div.header_language_btn,
.header .headerWrap:hover div.header_language_btn {
  background-color: #003288;
  color: #fff;
  transition-duration: 0s;
}


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

.header .sideNav {
  display: none;
  position: absolute;
  right: 0;
  top: 105px;
  background: rgba(0, 0, 0, 0.7);
  width: 104px;
  border-left: 1px solid #fff;
}
body.top .header .sideNav {
  height: calc(100vh - 105px);
}
body:not(.top) .header .sideNav {
  height: calc(var(--hero_height_under) - 105px);
}
body.heroSec-kv .header .sideNav {
  height: calc(var(--hero_height_under-kv) - 105px);
}
.header .sideNav_nmlLink {
  position: relative;
  display: block;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  transition: 0.3s all ease;
}
.header .sideNav_nmlLink_inner {
  position: relative;
  width: 100%;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
.header .sideNav_nmlLink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #003288, #057CCF);
  transition: 0.6s all ease;
  z-index: 0;
  opacity: 0;
}
.header .sideNav_nmlLink:hover::after,.header .sideNav_nmlLink.hover::after {
  opacity: 0;
}
.header .sideNav_nmlLink:hover {
  opacity: 0.7;
}
.header .sideNav_nmlLink .text-main {
  margin-top: 9px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}
.header .sideNav_scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 76px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s all ease;
}
.header .sideNav_scroll::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 64px;
  bottom: 0;
  left: 50px;
  transform: translateX(-50%) scaleY(1);
  transform-origin: top;
}
body.top .sideNav_scroll::before {
  transform: translateX(-50%) scaleY(0);
  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);
  }

}
.header .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: -3px;
}
.header .sideNav_scroll:hover {
  opacity: 0.7;
}

/* 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:hover .header_nmlLink,
.gNavBtn_list .gNavBtn_item.active .header_nmlLink {
  color: #007CCF
}


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

.header.scrollTop .dropNav {
  width: calc(100% - 104px);
  margin: 0 auto 0 0;
}
.dropNavWrap {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  left: 0;
  width: 100%;
  height: 0;
  z-index: 0;
}
.dropNavWrap.active {
  height: 100vh;
}
.dropNav {
  display: none;
  width: 100%;
  background-color: #fff;
  margin: 0;
}
.dropNav.active {
  opacity: 1;
}
.dropNav .innerWrap {
  display: flex;
  width: 1080px;
  padding: 48px;
  margin: 0 auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dropNav .innerWrap::-webkit-scrollbar {
  display:none;
}
.dropNav .innerWrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}
.dropNav_mainLink {
  width: 430px;
  flex: 0 0 430px;
  padding-bottom: 26px;
  position: relative;
  overflow: hidden;
}
.dropNav_mainLink::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 300%;
  background: linear-gradient(to right, #A9B7C1 0%, #A9B7C1 33.33%, transparent 33.33%, transparent 66.66%, #A9B7C1 66.66%, #A9B7C1 100%);
  transition: 0;
  transition: 1.2s right cubic-bezier(.46,.98,.5,-0.01);
}
.dropNav_mainLink:hover::before {
  right: -200%;
}
.dropNav_mainLink::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 63px;
  background: #003288;
}
.dropNav_mainLink_img {
}
.dropNav_mainLink_txt {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-right: 40px;
}
.dropNav_mainLink_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 24px;
  height: 24px;
  background: url(/common_v2/images/icon_arrow_right_blue.svg) center/24px no-repeat;
}
.dropNav_mainLink_txt .text-ja {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.dropNav_mainLink_txt .text-en {
  font-size: 24px;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-top: 22px;
  color: #003288;
}
.dropNav_underLinks {
  flex: 1 0 600px;
}
.dropNav_subLink1.nmlLink {
  gap: 24px;
}
.dropNav_subLink1.nmlLink .nmlLink_item {
  flex: 0 0 calc((100% - 24px) / 2);
}
.dropNav_subLink1.nmlLink .nmlLink_itemLink {
  padding-bottom: 19px;
  font-weight: bold;
}
.dropNav_subLink1.nmlLink .nmlLink_item.arrow-right .nmlLink_itemLink::after {
  position: relative;
  right: 20px;
  z-index: 1;
}
.dropNav_subLink2.nmlLink {
  align-items: center;
}
.dropNav_subLink2.nmlLink:not(:first-child) {
  margin-top: 28px;
}
.dropNav_subLink2.nmlLink .nmlLink_item:hover {
  opacity: .5;
}
.dropNav_subLink2.nmlLink .nmlLink_text {
  color: #0D69A7
}
.dropNav_subLink2.nmlLink .nmlLink_itemLink::before {
  background: none;
}
.dropNav_subLink2.nmlLink .nmlLink_item.arrow-right .nmlLink_itemLink::after {
  background: url(/common_v2/images/icon_arrow_right_aqua.svg) center/15px no-repeat;
}
.dropNav_subLink2.nmlLink .nmlLink_item.arrow-blank .nmlLink_itemLink::after {
  background: url(/common_v2/images/icon_blank_aqua.svg) center/15px no-repeat;
}
.dropNav_subLink2.nmlLink .nmlLink_item.arrow-pdf .nmlLink_itemLink::after {
  background: url(/common_v2/images/icon_pdf_aqua.svg) center/15px no-repeat;
}
.dropNav_closeBtn {
  background-color: #1A1D21;
  color: #fff;
  cursor: pointer;
  height: 48px;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.header .spMenuBtnWrap {
  display: none;
}
.header .spMenu {
  display: none;
}


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


.footer {
  background: #fff;
  position: relative;
}
.footer .cntSec .innerWrap {
  padding: 0 50px;
}
.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: 26px;
  background-size: 24px;
  margin-left: 0;
}

/* Site Map
------------------------------------------------------------------------------------------ */

.footer .siteMap {
  display: flex;
  gap: 80px;
  margin-top: 48px;
  padding-top: 56px;
}
.siteMap_lwr {
  margin-top: 56px;
}
.banner + .footer .siteMap {
  border-top: 1px solid #A9B7C1;
}
.footer .siteMap_col {
  flex: 0 0 340px;
}
.footer .siteMap_lwr {
  background-color: #F2F2F2;
  padding: 36px 40px;
  display: flex;
  align-items: center;
}
.footer .siteMap_lwr .footer_logo img {
  width: 150px;
}
.footer .siteMap_lwr .siteMap_lwr_links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  gap: 35px;
}
.footer .siteMap_lwr .siteMap_lwr_linkItem {
  position: relative;
  vertical-align: middle;
  line-height: 1;
  letter-spacing: 0.025em;
  font-size: 14px;
}
.footer .siteMap_lwr .siteMap_lwr_linkItem:hover {
  opacity: 0.5;
}
.footer .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;
}
.footer .siteMap_lwr .siteMap_lwr_linkItem:not(:first-child)::before {
  content: "";
  position:absolute;
  display: block;
  width: 1px;
  height: 16px;
  transform: translate(-50%, -50%);
  left: -18px;
  top: 45%;
  background-color: #BCBDBE;
}
.footer .footer_copy {
  text-align: center;
  position: relative;
  color: #fff;
  background: #1A1D21;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1;
}


/* Banner
------------------------------------------------------------------------------------------ */
.footer .cntSec .innerWrap .banner {
  margin-top: 48px;
}
.banner_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.banner_item {
  transition: 0.3s all ease;
}
.banner_item:hover {
  opacity: 0.5;
}

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


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

.heroSec {
  min-height: 480px;
  max-height: 1100px;
  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: -560px;
  top: 0;
  top: auto;
  content: "";
  background: linear-gradient(
      -63.35deg,
      transparent 0%,
      transparent 44.6%,
      #007CCF 44.6%,
      #007CCF 50.6%,
      #003288 50.6%,
      #003288 56.8%,
      #fff 56.8%,
      #fff 100%
  );
  height: 1800px;
  width: calc(1800px*var(--tan) + 225px);
}
.heroSec:not(.type-img):not(.type-center)::after {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  top: auto;
  content: "";
  background: linear-gradient(
    -63.35deg,
    #057CCF 15%,
    #003288
  );
  height: 1800px;
  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 .innerWrap {
  z-index: 2;
}
.heroSec.type-img {
  min-height: 700px;
}
.heroSec.type-center {
  min-height: 480px;
}
.heroSec.type-img .heroSec_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroSec .innerWrap {
  position: relative;
  max-width: 1180px;
  padding: 188px 90px 68px 50px;
  width: 100%;
  margin: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.heroSec.type-center .innerWrap {
  position: relative;
  max-width: 1180px;
  padding: 80px 90px 40px;
  width: 100%;
  margin: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 1580px) {
  .heroSec:not(.type-img) .innerWrap {
    max-width: 1080px;
  }
}
@media screen and (max-width: 1400px) {
  .heroSec:not(.type-img) .innerWrap {
    margin: 0 auto 0 170px;
  }
}
@media screen and (max-width: 1680px) {
  .heroSec.type-large:not(.type-img):not(.type-center) .innerWrap {
    margin: 0 auto 0 180px;
  }
}
.heroSec .heading1 + .heroSec_lead {
  margin-top: 38px;
}
.heroSec .heroSec_lead {
  position: relative;
  padding-top: 30px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.heroSec .heroSec_lead::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  top: 0;
  left: 0;
  background: #fff;
}

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

/* heading1 */
.heading1 {
}
.heading1 .text-main {
  display: block;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.05em;
}
.heading1 .text-sub {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.025em;
  margin-left: 5px;
}
.heading1 .text-sub + .text-main {
  margin-top: 8px;
}
.heading1 .text-en {
  display: block;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  margin-top: 20px;
  color: #fff;
  letter-spacing: 0.05em;
}
.heading1-simple {
  color: #003288;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  padding: 80px 0;
  font-weight: 700;
}

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

/* heading3 */
.heading3 {
  font-weight: 700;
  font-size: 32px;
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
  margin-bottom: 56px;
}
.heading3.heading3-bdrB::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background: #003288;
  position: absolute;
  left: 0;
  bottom: -56px;
}
.heading3:not(.first-child) {
  margin-top: 84px;
}
.heading3 strong{
  font-weight: bold;
  color: #007CCF;
  background-size: 100%;
  background-image: linear-gradient(transparent 0.85em, #FFD5B5 0.85em);
  background-repeat: no-repeat;
}
form.js-agree-required .heading3.heading3-small:not(:first-child) {
  margin-top: 24px;
}
.heading3:not(.type-center)::before {
  content: "";
  display: block;
  width: 7px;
  height: calc(100% - 0.2em);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(-60deg,
    #057CCF,
    #003288
  )
}
.heading3.type-center {
  padding-left: 0;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 42px;
}
.heading3.type-center::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    #003288,
    #057CCF
  )
}
body.plain-left .heading3 {
  padding-left: 0;
  margin-bottom: 32px;
}
body.plain-left .heading3::before {
  content: none;
}
form.js-agree-required .heading3.heading3-small {
  padding-left: 0;
  font-size: 18px;
  margin: 0;
}
form.js-agree-required .heading3.heading3-small::before {
  content: none;
}

/* heading4 */
.heading4 {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #003288;
  color: #003288;
  padding-bottom: 6px;
  margin-bottom: 28px;
}
.heading4.fcWhite {
  border-bottom: 1px solid #fff;
}
.heading4:not(:first-child) {
  margin-top: 43px;
}

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

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

.breadCrumb {
  width: 100%;
  background-color: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  gap: 10px;
  padding: 0 48px;
}
.breadCrumb li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 14px;
}
.breadCrumb li:not(:first-child)::before {
  content: "/";
  margin-right: 10px;
}
.breadCrumb li a {
  color: #003288;
}
.breadCrumb li a:hover {
  text-decoration: underline;
}

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

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

.nmlText {
  letter-spacing: 0.025em;
  overflow-wrap: anywhere;
}
.nmlText.leftIcon {
  padding-left: 28px;
  position: relative;
}
.nmlText.leftIcon::before {
  position: absolute;
  content: "";
  top: 0.9em;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #003288;
}
.nmlText:not(:first-child) {
  margin-top: 16px;
}
.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;
  width: 52px;
  height: 26px;
  color: #fff;
  background-color: #B9060E;
  margin: 0 10px;
  font-weight: 700;
}
.requiredLabel:first-child {
  margin-left: 0;
}
.nmlText img {
  max-width: 100%;
}

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

.catch {
  margin: 64px auto;
  font-size: 48px;
  line-height: 1.41;
  text-align: center;
  color: #1A1D21;
  font-weight: bold;
}
.catch:first-child {
  margin-top: 0;
}
.catch.catch-small {
  margin-top: 42px;
  margin-bottom: 30px;
  font-size: 28px;
}
.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: 40px;
}
.imgTxtFloat:first-child {
  margin-top: 0;
}
.imgTxtFloat {
  display: block;
}
.imgTxFloat .imgTxtFloat_item {
  margin: 0;
}
.imgTxtFloat .imgTxtFloat_item.imgTxtFloat_left {
  float: left;
  margin: 0 40px 20px 0;
}
.imgTxtFloat .imgTxtFloat_item.imgTxtFloat_right {
  float: right;
  margin: 0 0 20px 40px;
}
.imgTxtFloat .imgTxtFloat_item img {
  object-fit: contain;
  width: 100%;
}
.imgTxtFloat .imgTxtFloat_item.imgTxtFloat_left:after, .imgTxFloat .imgTxtFloat_item.imgTxtFloat_right:after {
  display: block;
  clear: both;
  content: '';
}

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

.telNumber:not(.style-none) {
  margin-top: 20px;
  vertical-align: middle;
}
.telNumber:not(.style-none):first-child {
  margin-top: 0;
}
.telNumber:not(.style-none) {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  text-align: center;
}
.telNumber:not(.style-none) span {
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  color: #003288;
  line-height: 1;
}
.telNumber.fcRed span {
  color: #B9060E !important;
}
.telNumber.size-medium span {
  font-size: 40px;
}

/* fleedial */
.telNumber.icon-freedial span {
  padding-left: 1.6em;
  background: url(/common_v2/images/icon_freedial.svg) no-repeat left center / 1.4em .8em;
}
/* tel */
.telNumber.icon-tel span {
  padding-left: 1.3em;
  background: url(/common_v2/images/icon_tel.svg) no-repeat left center / auto 1em;
}

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


/* 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;
  color: #003288;
  display: marker;
  content: counter(num1) ".";
  font-weight: 700;
}
.numList.in-bgRed>li:before, .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;
  display: marker;
  content: "（" counter(docNum) "）";
}

/* noteList */
.noteList:not(:first-child) {
  margin-top: 10px;
}
.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: 14px;
  text-indent: 0;
}
.noteList>li:first-child {
  margin-top: 0;
}
.noteList>li:before {
  position: absolute;
  left: 0.4em;
  top: 0;
  content: "\203B";
  display: block;
}

/* noteNumList */
.noteNumList {
  counter-reset: noteNum;
}
.noteNumList:not(:first-child) {
  margin-top: 20px;
}
.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: "\203B"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: 28px 10px 28px 0;
  position: relative;
}
.newsItem_upr {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  justify-content: flex-start;
}
.newsItem:first-child::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: top;
  background-color: #A9B7C1;
  position: absolute;
  left: 0;
  top: 0;
}
.newsItem::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: bottom;
  background-color: #A9B7C1;
  position: absolute;
  left: 0;
  bottom: 0;
}
.newsItem_date {
  font-size: 14px;
  letter-spacing: 0.025em;
}
.newsItem_category {
  font-weight: bold;
  color: #003288;
  transition: 0.3s all ease;
  position: relative;
}
.newsItem_category {
  margin-left: 32px;
}
.newsItem_category::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 20px;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #A9B7C1;
}
.newsItem_date+.newsItem_category {
  margin-left: 16px;
}
.newsItem_date+.newsItem_category::before {
  content: none;
}
.newsItem_title {
  line-height: 2;
}
.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: 12px;
  margin: 48px 0 34px;
}
.newsCategory_btn {
  border: 1px solid #003288;
  position: relative;
  flex: 0 1 170px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1D21;
  background: linear-gradient(160deg,
      #003288,
      #057CCF
  );
}
.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:hover,
.newsCategory_btn.current {
  color: #fff;
  border: none;
}
.newsCategory_btn:hover::before,
.newsCategory_btn.current::before {
  opacity: 0;
}

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

body.newsDetail .cntSec .innerWrap {
  padding-bottom: 120px;
}
.newsDetail_body {
  margin-top: 70px;
}
.newsDetail_info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.newsDetail_category {
  font-weight: bold;
  color: #003288;
}
.newsDetail_date {
  font-size: 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;
  padding-left: 20px;
  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;
  padding-right: 30px;
  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_previous:hover::after,
.pagination .pagination_next:hover::after {
  background: #003288;
}
.pagination .pagination_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 1080px;
}
.pagination .pagination_item {
  position: relative;
  flex: 0 0 65px;
  min-width: 65px;
  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:hover .pagination_item-inner::before,
.pagination .pagination_item.current .pagination_item-inner::before,
.pagination .pagination_item:hover .pagination_item-inner::after,
.pagination .pagination_item.current .pagination_item-inner::after {
  content: none;
}
.pagination .pagination_item:hover::after,
.pagination .pagination_item.current::after {
  opacity: 0;
}
.pagination .pagination_item:hover .pagination_item-inner,
.pagination .pagination_item.current .pagination_item-inner {
  color: #fff;
}
.pagination .pagination_item:hover + .pagination_item .pagination_item-inner::after,
.pagination .pagination_item.current + .pagination_item .pagination_item-inner::after {
  opacity: 0;
}
.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;
}

/* FAQ List
========================================================================================== */

/* Text link
========================================================================================== */

.txtLink {
  color: #1A1D21;
  position: relative;
  background: url(/common_v2/images/line_blue.png) no-repeat left bottom;
  background-position: left bottom;
  background-size: 0% 1px;
  padding-bottom: 2px;
  transition: 1s all ease;
  word-break: break-all;
  letter-spacing: 0.025em;
}
a.txtLink:hover, .panel_inner:hover .txtLink {
  color: #003288;
  background-size: 100% 1px;
}
.txtLink.tdU,.txtLink.pc_tdU {
  text-decoration: none !important;
  background: url(/common_v2/images/line_blue.png) no-repeat left bottom;
  background-position: right bottom;
  background-size: 100% 1px;
  padding-bottom: 6px;
  line-height: 2.2em;
}
.txtLink.tdU:hover,.txtLink.pc_tdU {
  background-size: 100% 1px;
  animation: txtlink_underline 2s ease both;
}
@keyframes txtlink_underline {
  0% {
    background-size: 100% 1px;
  background-position: right bottom;
  }
  50% {
    background-size: 0% 1px;
  background-position: right bottom;
  }
  50.1% {
    background-position: left bottom;
    background-size: 0% 1px;
  }
  100% {
    background-position: left bottom;
    background-size: 100% 1px;
  }
}
.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-pdf .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: 14px;
  font-weight: 400;
  padding: 1px 8px;
  position: relative;
  top: -0.1em;
  margin: 0 0.3em 0 0.5em;
  transition: 0.3s all ease;
  word-break: keep-all;
}
a.txtLink.arrow-pdf:hover .file-size::before, .panel_inner:hover .txtLink.arrow-pdf .file-size::before {
  border: 1px solid #003288;
  color: #fff;
  background-color: #003288;
}
.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;
}
.nmlText .txtLink.arrow-right::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: 10px;
}
.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: 8px;
}

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

.inlineLink {
  text-decoration: underline;
  color: #007CCF;
  transition: 0.3s all ease;
  word-break: break-all;
}
.inlineLink.arrow-pdf {
}
.inlineLink:hover {
  text-decoration: none;
  opacity: 0.7;
}
.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;
}
.topNews_category + .nmlBtn {
  margin-top: 48px;
}
.topicsCnt_item .nmlBtn {
  margin-top: 30px;
}
/* nmlBtn_item */
.nmlBtn_item {
  width: 344px;
}
.nmlBtn_item .nmlBtn_itemLink {
  position: relative;
  min-height: 64px;
  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;
  background-color: #fff;
  transition: 0.2s all ease;
  cursor: pointer;
}
.nmlBtn_item.not-btn .nmlBtn_itemLink {
  cursor: initial;
  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;
}
.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;
}
.nmlBtn_item.arrow-right.type-center .nmlBtn_text {
  margin: 0 24px 0 0;
}
.nmlBtn_item.arrow-right.type-center .nmlBtn_itemLink::after {
  position: static;
  transform: translateY(0);
}
/* 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-left */
.nmlBtn_item.arrow-left .nmlBtn_itemLink::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  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: 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-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;
  transition: 0.2s all ease;
}
/* 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.padding-small .nmlBtn_itemLink, .heroSec .nmlBtn.type-small .nmlBtn_itemLink {
  padding: 4px 48px 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.padding-small .nmlBtn_itemLink:after, .heroSec .nmlBtn.type-small .nmlBtn_itemLink:after {
  right: 16px;
}
.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; }

.nmlBtn_item:not(.not-btn):hover .nmlBtn_itemLink                       { background-color: #003288; color: #fff;}
.nmlBtn_item:not(.not-btn).bg-fill:hover .nmlBtn_itemLink               { background-color: #082455; color: #fff;}
.nmlBtn_item:not(.not-btn).bg-transparent:hover .nmlBtn_itemLink        { background-color: #fff;    color: #003288;}
.nmlBtn_item:not(.not-btn).bg-aqua:hover .nmlBtn_itemLink               { background-color: #0C6CAC; color: #fff;}

.nmlBtn_item:not(.not-btn):hover .nmlBtn_itemLink::after                { background-color: #fff; }
.nmlBtn_item:not(.not-btn).bg-fill:hover .nmlBtn_itemLink::after        { background-color: #fff; }
.nmlBtn_item:not(.not-btn).bg-transparent:hover .nmlBtn_itemLink::after { background-color: #003288; }
.nmlBtn_item:not(.not-btn).bg-aqua:hover .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:hover .nmlBtn_itemLink::after,
.nmlBtn_item.arrow-pdf.bg-fill:hover .nmlBtn_itemLink::after,
.nmlBtn_item.arrow-pdf.bg-aqua:hover .nmlBtn_itemLink::after {
  background: url(/common_v2/images/icon_pdf_white.svg) center/43px no-repeat;
}
.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: 4px 24px;
}
.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: 14px;
  font-weight: 400;
  padding: 2px 8px;
  position: relative;
  top: -0.1em;
  margin: 0 0.3em 0 0.5em;
  transition: 0.3s all ease;
}

.nmlBtn.type-small .arrow-excel:hover .nmlBtn_itemLink .file-size::before {
  border: 1px solid #fff;
  color: #fff;
  background-color: #003288;
}
/* arrow-pdf */
.nmlBtn.type-small .arrow-pdf .nmlBtn_itemLink {
  padding: 4px 24px;
}
.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: 14px;
  font-weight: 400;
  padding: 2px 8px;
  position: relative;
  top: -0.1em;
  margin: 0 0.3em 0 0.5em;
  transition: 0.3s all ease;
}

.nmlBtn.type-small .arrow-pdf:hover .nmlBtn_itemLink .file-size::before {
  border: 1px solid #fff;
  color: #fff;
  background-color: #003288;
}
/* Small Button
========================================================================================== */

.smlBtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: 20px -10px 0;
}
.smlBtn:first-child {
  margin-top: 0;
}
.smlBtn_item {
  width: 200px;
  margin: 20px 10px 0;
  display: flex;
  flex-direction: column;
}
.smlBtn_itemLink {
  width: 100%;
  height: 100%;
  min-height: 40px;
  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%;
}
_:-ms-lang(x)::-ms-backdrop, .smlBtn_text {
  margin-top: .2em;
}
.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: 11pc;
  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: 28px 20px;}

/*--- 色別各種アイコン ---*/
/* デフォルト */
.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);}

/*--- hover アイコン ---*/
.smlBtn_item.arrow-right .smlBtn_itemLink:hover { background-image: url(/common_v2/images/arrow_right_half_white.svg);}
.smlBtn_item.arrow-down .smlBtn_itemLink:hover { background-image: url(/common_v2/images/arrow_down_half_white.svg);}
.smlBtn_item.arrow-blank .smlBtn_itemLink:hover { background-image: url(/common_v2/images/icon_blank_white.svg);}
.smlBtn_item.arrow-pdf .smlBtn_itemLink:hover { background-image: url(/common_v2/images/icon_pdf_white.svg);}

/*--- hover 各種色 ---*/
/* デフォルト */
.smlBtn_item .smlBtn_itemLink:hover { color: #fff; background-color: #C3C8D6;}

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

.nmlLink {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px 40px;
  flex-wrap: wrap;
}
.nmlLink:not(:first-child) {
  margin-top: 18px;
}
.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;
}
.nmlLink_itemLink::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  height: 10px;
  transform: scaleY(0.1);
  width: 300%;
  background: linear-gradient(to right, #003288 0%, #003288 33.33%, transparent 33.33%, transparent 66.66%, #003288 66.66%, #003288 100%);
  transform-origin: bottom;
}
.nmlLink_itemLink::after {
  content: "";
  height: 1em;
  margin-left: 10px;
}
.nmlLink_item:hover .nmlLink_text {
  color: #003288;
}
.nmlLink_item:hover .nmlLink_itemLink::before {
  right: -200%;
  transition: 1.2s right cubic-bezier(.46,.98,.5,-0.01);
}
.nmlLink_item.color-white .nmlLink_text {
  color: #fff;
}
.nmlLink_item.color-white .nmlLink_itemLink::before {
  background: linear-gradient(to right, #fff 0%, #fff 33.33%, transparent 33.33%, transparent 66.66%, #fff 66.66%, #fff 100%);
}
.nmlLink_text {
  flex: 1 0 calc(100% - 28px);
  vertical-align: middle;
}
.nmlLink_item.arrow-pdf .nmlLink_text {
  flex: 1 0 calc(100% - 50px);
}
.nmlLink_item.arrow-jpg .nmlLink_text,
.nmlLink_item.arrow-png .nmlLink_text {
  flex: 1 0 calc(100% - 50px);
}
.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;
}
.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;
}
.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;
}
.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;
}

/* Anchor box
========================================================================================== */
.anchorBox {
  margin-top: 40px;
  display: flex;
}
.anchorBox:first-child {
  margin-bottom: 0;
}
.anchorBox_item {
  flex: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anchorBox_item {
  border-left: 1px solid #A9B7C1;
}
.anchorBox_item:first-child {
  border-left: none;
}
.anchorBox_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 80px;
  padding: 8px 8px 30px;
  background: url(/common_v2/images/arrow_down_half_blue.svg) no-repeat center bottom 18px / 16px 16px #F2F2F2;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
}

/* カラム数指定 */
.anchorBox.col2 .anchorBox_item {
  flex-basis: calc(100% / 2);
  border-left: none;
  border-right: 1px solid #A9B7C1;
}
.anchorBox.col2 .anchorBox_item:nth-child(2n) {
  border-right: none;
}
.anchorBox.col2 .anchorBox_item:nth-child(n+3) {
  border-top: 1px solid #A9B7C1;
}
.anchorBox.col2 .anchorBox_item:last-child {
  border-right: none;
}
.anchorBox.col3 .anchorBox_item {
  flex-basis: calc(100% / 3);
  border-left: none;
  border-right: 1px solid #A9B7C1;
}
.anchorBox.col3 .anchorBox_item:nth-child(3n) {
  border-right: none;
}
.anchorBox.col3 .anchorBox_item:nth-child(n+4) {
  border-top: 1px solid #A9B7C1;
}
.anchorBox.col3 .anchorBox_item:last-child {
  border-right: none;
}
.anchorBox.col4 .anchorBox_item {
  flex-basis: calc(100% / 4);
  border-left: none;
  border-right: 1px solid #A9B7C1;
}
.anchorBox.col4 .anchorBox_item:nth-child(4n) {
  border-right: none;
}
.anchorBox.col4 .anchorBox_item:nth-child(n+5) {
  border-top: 1px solid #A9B7C1;
}
.anchorBox.col4 .anchorBox_item:last-child {
  border-right: none;
}
.anchorBox.col5 .anchorBox_item {
  flex-basis: calc(100% / 5);
  border-left: none;
  border-right: 1px solid #A9B7C1;
}
.anchorBox.col5 .anchorBox_item:nth-child(5n) {
  border-right: none;
}
.anchorBox.col5 .anchorBox_item:nth-child(n+6) {
  border-top: 1px solid #A9B7C1;
}
.anchorBox.col5 .anchorBox_item:last-child {
  border-right: none;
}

/* hover */
.anchorBox_inner:hover {
  background: url(/common_v2/images/arrow_down_half_white.svg) no-repeat center bottom 18px / 16px 16px #003288;
  color: #fff;
}


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

.panel {
  --panelPadding: 20px;
  border: 1px solid #A9B7C1;
}
.panel-gapWide {
  --panelPadding: 32px;
}
.panel.in-bgLBlue,.cntSec.bgLBlue .panel, .panel.type-link {
  border: none;
}
.panel_inner {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 18px;
  flex-direction: column;
  background-color: #fff;
  padding: 20px var(--panelPadding);
}
.panel_img:first-child {
  margin: -20px calc(var(--panelPadding) * -1) 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: 16px;
}
.panel .panel_txt .nmlLink .nmlLink_itemLink .nmlLink_text {
  text-align: left;
}
.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: 16px;
  margin-top: 16px;
}
/*--- リンクバージョン ---*/
.panel.type-link a.panel_inner {
  position: relative;
  text-decoration: none;
  background-color: #F2F2F2;
  padding-bottom: 47px;
  transition: box-shadow .3s ease;
}
.panel.type-link.in-bgLBlue a.panel_inner, .bgLBlue .panel.type-link a.panel_inner {
  background-color: #fff;
}
.panel.type-link a.panel_inner:hover {
  box-shadow: 0px 3px 15px rgba(18, 17, 17, 0.15);
}
.panel.type-link a.panel_inner::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  right: 16px;
  bottom: 20px;
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent #003288 transparent;
}
/*--- オプション ---*/
/* 画像 */
.panel_img-cover {
  aspect-ratio: 344 / 213;
  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 / 43px no-repeat;
  width: 43px;
  height: 22px;
  border: none;
}

/* Large Panel
========================================================================================== */
.largePanel {
  background-color: #F2F2F2;
}
.largePanel:not(:first-child) {
  margin-top: 32px;
}
.largePanel_inner {
  display: flex;
  min-height: 390px;
  padding: 32px;
  gap: 36px;
  position: relative;
}
.largePanel_inner::before {
  z-index: 0;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 100px 100px;
  border-color: transparent transparent #003288 transparent;
}
.largePanel_inner::after {
  z-index: 1;
  position: absolute;
  bottom: 12px;
  right: 24px;
  content: "";
  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;
  background-color: #fff;
  transition: 0.2s all ease;
}
.largePanel.type-left .largePanel_txt {
  order: 1;
}
.largePanel.type-left .largePanel_img {
  order: 2;
}
.largePanel_img img {
  width: 528px;
  object-fit: cover;
}
.largePanel_title {
  position: relative;
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #003288;
  padding-bottom: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.largePanel_title::after {
  content: "";
  position: absolute;
  width: calc(100% + 56px);
  height: 1px;
  bottom: 0;
  background: #003288;
}

.largePanel.type-left:hover .largePanel_title::after {
  animation: largePanel_title_underline_left 2s ease both;
}
@keyframes largePanel_title_underline_left {
  0% {
    width: calc(100% + 56px);
    right: -56px;
    left: auto;
  }
  50% {
    width: 0%;
    right: -56px;
    left: auto;
  }
  50.1% {
    width: 0%;
    left: 0;
    right: auto;
  }
  100% {
    background-size: calc(100% + 56px);
    right: 0;
    right: auto;
  }
}
.largePanel.type-right:hover .largePanel_title::after {
  animation: largePanel_title_underline_right 2s ease both;
}
@keyframes largePanel_title_underline_right {
  0% {
    width: calc(100% + 56px);
    right: 0;
    left: auto;
  }
  50% {
    width: 0%;
    right: 0;
    left: auto;
  }
  50.1% {
    width: 0%;
    left: -56px;
    right: auto;
  }
  100% {
    background-size: calc(100% + 56px);
    left: -56px;
    right: auto;
  }
}
.largePanel.type-left .largePanel_title::after {
  left: 0;
}
.largePanel.type-right .largePanel_title::after {
  right: 0;
}
.largePanel_description {
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

/* 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;
  height: calc(100% - 56px);
}
.pointBox .numIcon_outer {
  position: relative;
  height: 56px;
  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: 94px;
  height: 94px;
  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: 24px;
  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;
  padding-top: 27%;
}
.video:not(:first-child) {
  margin-top: 40px;
}
.video > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

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

.box1 {
  padding: 24px;
  background-color: #F2F2F2;
  margin-top: 24px;
}
.box1:first-child {
  margin-top: 0;
}
.box1.after-heading, .heading2 + .box1, .heading3 + .box1, .heading4 + .box1 {
  margin-top: 0;
}
.box1_head {
  color: #003288;
  font-size: 24px;
  font-weight: 700;
}
.box1_head + * {
  margin-top: 14px;
}
.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 {
  padding: 0;
}
.box1.acd .box1_head.js-acd_btn,
.box1.acd .box1_head.js-acd_btn-pc {
  padding: 24px;
}
.box1.acd .box1_body.js-acd_box,
.box1.acd .box1_body.js-acd_box-pc {
  padding: 0 24px 24px;
}
.box1.acd .box1_head.js-acd_btn,
.box1.acd .box1_head.js-acd_btn-pc {
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  margin-bottom: 0;
}
.box1.acd .box1_head.js-acd_btn::before,
.box1.acd .box1_head.js-acd_btn-pc::before {
  content: '';
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  mask: url(/common_v2/images/icon_plus_white.svg) no-repeat 0 0 / 100% 100%;
  -webkit-mask: url(/common_v2/images/icon_plus_white.svg) no-repeat 0 0 / 100% 100%;
  background: #003288;
  transition: all .3s ease;
  z-index: 1;
}
.box1.acd.color-red .box1_head.js-acd_btn::before,
.box1.acd.color-red .box1_head.js-acd_btn-pc::before {
  background: #B9060E;
}
.box1.acd .box1_head.js-acd_btn.active::before,
.box1.acd .box1_head.js-acd_btn-pc.active::before,
.box1.acd .box1_head.js-acd_btn:hover::before,
.box1.acd .box1_head.js-acd_btn-pc:hover::before {
  background: #fff;
}
.box1.acd .box1_head.js-acd_btn.active::before,
.box1.acd .box1_head.js-acd_btn-pc.active::before {
  mask: url(/common_v2/images/icon_minus_white.svg) no-repeat 0 0 / 100% 100%;
  -webkit-mask: url(/common_v2/images/icon_minus_white.svg) no-repeat 0 0 / 100% 100%;
  background: #fff;
}
.box1.acd .box1_head.js-acd_btn::after,
.box1.acd .box1_head.js-acd_btn-pc::after {
  content: '';
  display: block;
  position: absolute;
  right: 15px;
  border-radius: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid #003288;
  z-index: 0;
}
.box1.acd .box1_head.js-acd_btn.active::after,
.box1.acd .box1_head.js-acd_btn-pc.active::after,
.box1.acd .box1_head.js-acd_btn:hover::after,
.box1.acd .box1_head.js-acd_btn-pc:hover::after {
  background: #003288;
}
.box1.acd.color-red .box1_head.js-acd_btn::after,
.box1.acd.color-red .box1_head.js-acd_btn-pc::after {
  border: 1px solid #B9060E;
}
.box1.acd.color-red .box1_head.js-acd_btn.active::after,
.box1.acd.color-red .box1_head.js-acd_btn-pc.active::after,
.box1.acd.color-red .box1_head.js-acd_btn:hover::after,
.box1.acd.color-red .box1_head.js-acd_btn-pc:hover::after {
  background: #B9060E;
}
.box1.acd .box1_head.js-acd_btn + .box1_body.js-acd_box,
.box1.acd .box1_head.js-acd_btn-pc + .box1_body.js-acd_box-sp {
  display: none;
}

/* Box 2
========================================================================================== */
.box2 {
  margin-top: 24px;
}
.box2:first-child {
  margin-top: 0;
}
.box2.after-heading, .heading2 + .box2, .heading3 + .box2, .heading4 + .box2 {
  margin-top: 0;
}
.box2_head {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 24px;
  min-height: 72px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #1A1D21;
  background-color: #F2F2F2;
}
.box2_head-icon {
  width: 28px;
  height: 28px;
  margin-right: 16px;
}
.box2_body {
  padding: 32px;
  background-color: #fff;
  border: 1px solid #F2F2F2;
}
.box2_head.js-acd_btn + .box2_body.js-acd_box {
  display: none;
}
/* 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
}
.box2_head.js-acd_btn::before {
  content: '';
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  mask: url(/common_v2/images/icon_plus_white.svg) no-repeat 0 0 / 100% 100%;
  -webkit-mask: url(/common_v2/images/icon_plus_white.svg) no-repeat 0 0 / 100% 100%;
  background: #fff;
  transition: all .3s ease;
  z-index: 1;
}
.box2_head.js-acd_btn.active::before {
  mask: url(/common_v2/images/icon_minus_white.svg) no-repeat 0 0 / 100% 100%;
  -webkit-mask: url(/common_v2/images/icon_minus_white.svg) no-repeat 0 0 / 100% 100%;
}
.box2_head.js-acd_btn::after {
  content: '';
  position: absolute;
  right: 14px;
  display: block;
  width: 48px;
  height: 46px;
  border: 1px solid #fff;
  border-radius: 8px;
  z-index: 0;
}
.box2.color-blue .box2_head.js-acd_btn:hover::before {
  background: #003288;
}
.box2.color-aqua .box2_head.js-acd_btn:hover::before {
  background: #007CCF;
}
.box2.color-red .box2_head.js-acd_btn:hover::before {
  background: #B9060E;
}
.box2_head.js-acd_btn:hover::after {
  background: #fff;
}



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

.box3 {
  border: 1px solid #003288;
  overflow-y: scroll;
  padding: 24px;
  height: 324px;
}

/* FAQ box(box2ベース)
========================================================================================== */
.type-faq .box2_head {
  position: relative;
  padding-left: 80px;
}
.type-faq .box2_body {
  position: relative;
  padding-left: 80px;
}
.type-faq .faqIcon-q {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 40px;
  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: 20px;
  left: 25px;
  font-size: 32px;
  text-align: center;
  color: #EA610C;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: bold;
}
.type-faq .faqIcon-q .faqIcon-no {
  font-size: 24px;
  color: #fff;
}
.type-faq .faqIcon-a .faqIcon-no {
  font-size: 16px;
  color: #EA610C;
}


/* Note box
========================================================================================== */

.noteBox {
  margin-top: 40px;
  background-color: #F7E6E9;
  border-radius: 0 16px 0 16px;
}
.noteBox:first-child {
  margin-top: 0;
}
.noteBox_head {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  color: #fff;
  background-color: rgba(185, 6, 6, 1);
  font-size: 24px;
  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: 32px 40px;
}

/* アコーディオン付き */
.noteBox_head.js-acd_btn {
  cursor: pointer;
  transition: all .3s ease;
}
.noteBox_head.js-acd_btn::after {
  content: '';
  display: block;
  position: absolute;
  right: 24px;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  transition: all .3s ease;
}
.noteBox_head.js-acd_btn.active {
  border-radius: 0 16px 0 0;
}
/* ボタンホバー時 */
.noteBox_head:not(.active).js-acd_btn:hover {
  background-color: #fff;
  color: rgba(185, 6, 6, 1);
  border: 1px solid rgba(185, 6, 6, 1);
}

/* Tab
========================================================================================== */
.stdTab {
  width: 100%;
  margin-top: 40px;
}
.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: 18px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  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, .stdTab_btn:hover {
  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: 15px 16px 0 16px;
  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: 66px;
  padding: 8px 16px;
  color: inherit;
  text-decoration: none;
  transition: all .3s ease;
}
.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 {
  flex-wrap: wrap;
}
.stdTab.col2 .stdTab_btn:after,
.stdTab.col3 .stdTab_btn:after,
.stdTab.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.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.col2 .stdTab_btn:nth-child(n+3),
.stdTab.col3 .stdTab_btn:nth-child(n+4),
.stdTab.col4 .stdTab_btn:nth-child(n+5) {
  border-top:none;
}



/* Table
========================================================================================== */
.nmlTable {
  width: 100%;
  margin-top: 40px;
  table-layout: fixed;
}
.nmlTable:first-child {
  margin-top: 0;
}
.nmlTable th {
  padding: 28px 24px;
  vertical-align: middle;
  border: 1px solid #C3C8D6;
  text-align: center;
}
.nmlTable td {
  padding: 28px 24px;
  border: 1px solid #C3C8D6;
}
.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: 8px;
  font-size: 13px;
  text-align: left;
}
/* tdのテキストを上下中央 */
.nmlTable.vaM tbody td {
  vertical-align: middle;
}

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


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


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


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


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

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

/* form error */
.formErrorBox {
  padding: 24px;
  background-color: #FFECED;
  margin-top: 84px;
}
.formError.formField {
  background-color: #FFECED;
}
.formError.formField .formMessage.formMessage-error {
  font-weight: 700;
  color: #B9060E;
}

/* form hr */
.formHr {
  width: 100%;
  height: 3px;
  background: #003288;
  margin: 40px 0 20px;
}
.formHr.formHr-small {
  width: 100%;
  height: 1px;
  background: #A9B7C1;
  margin: 24px 0;
}

/* form step */
.formStep {
  display:flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.cntSec .innerWrap .formStep {
  margin-top: 84px;
}
.formStep:not(.style-none) + * {
  margin-top: 66px;
}
.formStep_item {
  width: 375px;
  flex: 0 0 375px;
  height: 64px;
  position: relative;
  color: #003288;
  border: 1px solid #003288;
  padding: 0 20px;
  clip-path: polygon(
    0% 100%,
    11% 0%,
    100% 0%,
    88.8% 100%
  )
}
.formStep_item::before {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  bottom: 0;
  width: 1px;
  height: 120%;
  background: #003288;
  transform: rotate(33deg);
  transform-origin: bottom;
}
.formStep_item::after {
  content: "";
  display: block;
  position: absolute;
  right: -0.5px;
  top: 0;
  width: 1.5px;
  height: 120%;
  background: #003288;
  transform: rotate(33deg);
  transform-origin: top;
}
.formStep_itemInner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}
.formStep_itemInner::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 50px;
  background: #003288;
  transform: translate(-50%, -50%) rotate(33deg);
  transform-origin: center;
}
.formStep_item.current .formStep_itemInner::after {
  background: #fff;
}
.formStep_item.current {
  background: linear-gradient(99.598deg, #003288, #057CCF);
  color: #fff;
}
.formStep_item:nth-child(2) {
  left: -22px;
}
.formStep_item:nth-child(3) {
  left: -44px;
}
.formStep_num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  vertical-align: middle;
}
.formStep_s {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.formStep_n {
  font-size: 32px;
  vertical-align: middle;
  font-style: italic;
}
.formStep_text {
  font-size: 24px;
  font-weight: 700;
}

/* form field */
.formField {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #A9B7C1;
  padding: 40px 24px;
}
.formField.formField-agree {
  border: none;
  justify-content: center;
  padding-bottom: 0;
}

/* form legend */
.formLegend {
  font-weight: bold;
  flex: 0 0 360px;
  padding-right:48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.formLegend.formLegend-required::after {
  content: "必須";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 26px;
  color: #fff;
  background-color: #B9060E;
}

/* form label */
.formLabel {
  display: block;
  position: relative;
}
.formField.formField-agree .formLabel {
  flex: 0 0 auto;
}
.formLabel.formLabel-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
}
.formLabel.formLabel-heading {
  display: block;
}
.formLabel.formLabel-heading .formLabel_text.formLabel_text-heading {
  display: block;
  margin-bottom: 12px;
}
.formLabel.formLabel-heading:not(:first-child) {
  margin-top: 46px;
}
.formHr + .formLabel.formLabel-heading:not(:first-child) {
  margin-top: 0;
}
.formLabel.formLabel-heading .formLabel_text.formLabel_text-heading {
  font-weight: bold;
}
.formLabel_text {
  position: relative;
  overflow-wrap: anywhere;
}

/* form value */
.formValue, .formValue_outer {
  flex: 1 1 auto;
}
.formValue_outer {
  max-width: calc(100% - 360px);
}
.formValue.formValue-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 16px;
}
.formValue.formValue-flex.col3 > * {
  flex: 0 0 calc(33% - (32px / 3));
  margin-top: 0;
}
.formValue.formValue-flex:not(.col3) .formLabel {
  min-width: calc(50% - (16px / 2));
}
.formValue:not(.formValue-flex)  .formLabel:not(:first-child) {
  margin-top: 24px;
}
/* form value - text */
.formText {
  background-color: #F2F2F2;
  border: none;
  width: 100%;
  min-height: 52px;
  padding: 17px 24px;
}
/* form value - checkbox */
.formCheck {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.formCheck + .formLabel_text {
  padding-left: 38px;
  cursor: pointer;
}
.formCheck + .formLabel_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(/common_v2/images/icon_unchecked.svg) center / 100% no-repeat;
}
.formCheck:checked + .formLabel_text::before {
  background: url(/common_v2/images/icon_checked.svg) center / 100% no-repeat;
}
/* form value - radio */
.formRadio {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.formRadio + .formLabel_text {
  padding-left: 38px;
  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;
}
/* form value - select */
.formSelect {
  width: 100%;
  min-height: 52px;
  border: none;
  background: #F2F2F2 url(/common_v2/images/icon_select.svg) right 20px center / 16px 12px no-repeat;
  flex: 1 1 auto;
  padding: 17px 24px;
}
/* form value - textarea */
.formTextarea {
  background-color: #F2F2F2;
  border: none;
  width: 100%;
  resize: vertical;
  min-height: 52px;
  padding: 17px 24px;
}
/* form value - submit */
.nmlBtn_item.formSubmit {
  width: 540px;
  height: 80px;
  font-size: 22px;
}

/* placeholder */
::-webkit-input-placeholder,
::placeholder,
:placeholder-shown {
  color: rgba(60, 73, 80, 0.5);
}
:-ms-input-placeholder {
  color: rgba(60, 73, 80, 0.5);
}

/* form message */
.formMessage {
  margin-top: 16px;
}

/* agree */
.js-agree-required-message {
  margin-top: 28px;
  display: none;
}

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

.search {
  position: relative;
  width: 100%;
  height: 54px;
}
.search_input {
  position: relative;
  width: 100%;
  height: 100%;
}
.search_input input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 17px 74px 17px 24px;
  border: none;
  transition: all .3s ease;
  background-color: #F2F2F2;
  border: none;
  width: 100%;
}
.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_submit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 54px;
  height: 54px;
  cursor: pointer;
  transition: all .3s ease;
  background: transparent url(/common_v2/images/icon_search_blue.svg) no-repeat center / 24px 24px;
}
.search_submit:hover {
  background: #003288 url(/common_v2/images/icon_search_white.svg) no-repeat center / 24px 24px;
}
.search_submit input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  font-weight: bold;
  letter-spacing: .1em;
}
_:-ms-lang(x)::-ms-backdrop, .search_submit input {
  padding-top: 0.2em;
}


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

.nmlBtn.underNav:not(:first-child) {
  margin-top:35px
}
.underNav_title {
  font-size: 28px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.5;
}

.underNav .nmlBtn_itemLink {
  height: 80px;
}

/* モーダル
========================================================================================== */
.openModal ,
.modal_wrapper .modal .modal_closeBtn .closeModal {
  cursor: pointer;
}
.modal_wrapper {
  display: none;
  position: fixed;
  top: 125px;
  left: 50%;
  transform: translate(-50%, 0);
  /* background-color: #fff; */
  z-index: 1001;
  max-width: 1080px;
  width: 100%;
  /* height: 100%; */
  /* margin-bottom: 40px; */
}
.modal_wrapper .modal {
  background-color: #fff;
  max-height: calc(100vh - 125px);
  overflow: scroll;
}
.modal_wrapper .modal .modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: fit-content;
  padding: 48px;
  margin: 0 auto;
  height: calc(100% - 125px);
  margin-bottom: 48px;
}
.modal_wrapper .modal .modal-content img {
  max-height: 60vh;
}
.modal_wrapper .modal .modal_closeBtn {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  background-color: #1A1D21;
  position: absolute;
  bottom: 0;
}
.modal_wrapper .modal .modal_closeBtn img {
  width: 20px;
  height: 20px;
}
.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 {
  width: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1001;
  max-width: none;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background: rgba(0, 0, 0, .5);
}
.modal_wrapper.modal_video .modal {
  overflow: hidden;
  background-color: #000;
  max-height: none;
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1002;
  max-width: 1080px;
  width: 100%;
}
.modal_wrapper.modal_video .modal .modal-content {
  width: auto;
  padding: 0;
  max-width: 1080px;
}
.modal_wrapper.modal_video .modal .video {
  position: relative;
  max-width: 1080px;
  overflow: hidden;
  padding-top: 56.25%;
}
.modal_wrapper.modal_video .modal .video > iframe {
  position: absolute;
}

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