@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: scroll;
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* ie,edge */
}

@media screen and (min-width: 769px) {
  html {
    min-width: 1080px;
  }
}

html.active {
  overflow: hidden;
}

.html::-webkit-scrollbar {
  display: none;
}

body {
  background-color: #fff;
  color: #000;
  font-family: 'Noto Sans JP',メイリオ,Meiryo,"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",sans-serif;
  font-size: 4.26667vw;
  font-weight: 400;
  line-height: 1.5;
}

body.active {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

a {
  color: #2D2D2D;
  text-decoration: none;
}

ul, ol {
  padding: 0;
  margin: 0;
}

ul li, ol li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

.sp {
  display: block;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

.inner {
  padding: 0 5.33333vw;
}

@media screen and (min-width: 769px) {
  .inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 0;
  }
}

@media screen and (min-width: 1080px) {
  .inner {
    padding: 0;
  }
}

/* header
-------------------------------------------------- */
/* sp */
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
    width: 100%;
  }
  .header_fixd {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1000;
    background-color: #fff;
  }
  /* ロゴ */
  .header_logo {
    width: 44.88px;
    height: 46px;
    margin: auto 0 auto 5.33333vw;
  }
  .header_logo:hover {
    opacity: .7;
  }
  .header_logo span {
    display: none;
  }
  /* お問い合わせボタン */
  .header_inquiry-btn {
    margin-left: auto;
    height: 100%;
  }
  .header_inquiry-btn a {
    display: block;
    padding: 21px 16.5px 22px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    background-color: #02408C;
    color: #fff;
    height: 100%;
  }
  .header_inquiry-btn:hover {
    opacity: .7;
  }
  /* ハンバーガーメニュー */
  .h-menu {
    background-color: #00275D;
    width: 60px;
    height: 100%;
    padding: 18px 16px;
    position: relative;
  }
  .h-menu span {
    width: calc(100% - 32px);
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all .25s;
    transition: all .25s;
  }
  .h-menu span:nth-of-type(1) {
    top: 18px;
  }
  .h-menu span:nth-of-type(2) {
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
  .h-menu span:nth-of-type(3) {
    position: absolute;
    bottom: 18px;
  }
  .h-menu.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
            transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  }
  .h-menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .h-menu.active span:nth-of-type(3) {
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
            transform: translateY(-50%) translateX(-50%) rotate(45deg);
  }
  /* グローバルナビ */
  .g-nav {
    background-color: #00275D;
    height: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 1500;
    width: 100%;
    position: fixed;
    top: 60px;
    right: 0;
  }
  .g-nav a {
    color: #fff;
  }
  .g-nav.active {
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .main_item {
    border-bottom: 1px solid #979EA6;
  }
  .main_item > a {
    display: block;
    padding: 14px 21px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
  }
  .underLayer1_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #979EA6;
    padding: 0 10px 14px 36px;
  }
  .underLayer1_list > li {
    width: 50%;
    margin-top: 14px;
  }
  .underLayer1_list > li a {
    font-size: 1.4rem;
    line-height: 2.14286;
    display: block;
  }
  .underLayer1-1_list,
  .underLayer1-2_list {
    display: none;
  }
}

/* pc */
@media screen and (min-width: 769px) {
  .header {
    height: 100px;
    width: 100%;
  }
  .header_fixd {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    padding: 0 9px 0 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1000;
    background-color: #fff;
    min-width: 1080px;
  }
  /* ロゴ */
  .header_logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_logo img {
    width: 55.69px;
    height: 57.29px;
  }
  .header_logo span {
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    font-size: 2.1rem;
    margin-left: 17px;
  }
  .header_logo:hover {
    opacity: .7;
  }
  /* グローバルナビ */
  .g-nav {
    margin-left: auto;
    height: 100%;
  }
  .g-nav .mainLayer_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .g-nav .main_item {
    height: 100%;
    margin-left: 40px;
  }
  .g-nav .main_item > a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 0 4px;
  }
  .g-nav .main_item > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #fff;
  }
  .g-nav .main_item > a:hover {
    color: #014099;
  }
  .g-nav .main_item > a:hover::after {
    background-color: #02408C;
  }
  /* お問い合わせボタン */
  .header_inquiry-btn {
    margin-left: 25px;
    margin: auto 0 auto 25px;
  }
  .header_inquiry-btn a {
    font-weight: bold;
    color: #fff;
    background-color: #02408C;
    padding: 24px 35px 25px;
    white-space: nowrap;
  }
  .header_inquiry-btn:hover {
    opacity: .7;
  }
  /*  */
  .underLayer1_list,
  .underLayer1-1_list,
  .underLayer1-2_list {
    display: none;
    position: absolute;
  }
  .underLayer1_list > li > a,
  .underLayer1-1_list > li > a,
  .underLayer1-2_list > li > a {
    display: block;
  }
  /* 下層が有る時の矢印 */
  .underLayer1_list > li > a {
    position: relative;
  }
  .underLayer1_list > li > a.arrow::after {
    content: "";
    width: 4.8px;
    height: 9.7px;
    background-image: url(../../img/cmn/arrow-right.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 19.7px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .underLayer1_list.active {
    display: block;
  }
  .underLayer1_list.active > li {
    background-color: #F0F3F5;
  }
  .underLayer1_list.active > li > a {
    position: relative;
    width: 254px;
    padding: 13px 30px 12px 28px;
  }
  .underLayer1_list.active > li:hover {
    background-color: #fff;
  }
  .underLayer1-1_list.active {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .underLayer1-1_list.active > li {
    position: relative;
  }
  .underLayer1-1_list.active > li > a {
    width: 310px;
    background-color: #F0F3F5;
    padding: 13px 29px 12px 28px;
  }
  .underLayer1-1_list.active > li > a:hover {
    background-color: #fff;
  }
  .h-menu {
    display: none;
  }
  .underLayer1-2_list.active {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .underLayer1-2_list.active > li {
    position: relative;
  }
  .underLayer1-2_list.active > li > a {
    width: 281px;
    background-color: #F0F3F5;
    padding: 13px 29px 12px 28px;
  }
  .underLayer1-2_list.active > li > a:hover {
    background-color: #fff;
  }
}

/* g-nav現在地のアンダーバー */
@media screen and (min-width: 769px) {
  .nav_business .mainLayer_list .item1 > a {
    color: #02408C;
  }
  .nav_business .mainLayer_list .item1 > a::after {
    background-color: #02408C;
  }
  .nav_service .mainLayer_list .item2 > a {
    color: #02408C;
  }
  .nav_service .mainLayer_list .item2 > a::after {
    background-color: #02408C;
  }
  .nav_faq .mainLayer_list .item3 > a {
    color: #02408C;
  }
  .nav_faq .mainLayer_list .item3 > a::after {
    background-color: #02408C;
  }
  .nav_news .mainLayer_list .item4 > a {
    color: #02408C;
  }
  .nav_news .mainLayer_list .item4 > a::after {
    background-color: #02408C;
  }
  .nav_company .mainLayer_list .item5 > a {
    color: #02408C;
  }
  .nav_company .mainLayer_list .item5 > a::after {
    background-color: #02408C;
  }
}

/* ナビ表示時のバックグラウンド */
.bg-b {
  background-color: #000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  display: none;
  opacity: 0;
}

.bg-b.active {
  opacity: .5;
  display: block;
}

/* footer
-------------------------------------------------- */
.sec-footer--contact {
  background-color: #343434;
  color: #fff;
  text-align: center;
}

.sec-footer--contact .inner {
  padding-top: 12.8vw;
  padding-bottom: 19.46667vw;
}

@media screen and (min-width: 769px) {
  .sec-footer--contact .inner {
    padding-top: 56px;
    padding-bottom: 64px;
    max-width: 900px;
  }
}

.contact_ttl {
  border-bottom: 1px solid #fff;
  font-size: 6.66667vw;
  font-weight: bold;
  line-height: 1.68;
  letter-spacing: 0.1em;
  padding: 0 1.86667vw 2.4vw;
  display: inline-block;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .contact_ttl {
    font-size: 2.5rem;
    padding: 0 7px 9px;
  }
}

.contact_txt {
  font-size: 3.73333vw;
  line-height: 1.5;
  margin-top: 4vw;
}

@media screen and (min-width: 769px) {
  .contact_txt {
    font-size: 1.4rem;
    margin-top: 8px;
  }
}

.contact_info-wrap {
  margin-top: 3.33333vw;
}

@media screen and (min-width: 769px) {
  .contact_info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-top: 9px;
  }
}

.contact_info-wrap .tel {
  font-size: 9.6vw;
  font-weight: bold;
  line-height: 1.33333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .contact_info-wrap .tel {
    font-size: 36px;
  }
}

.contact_info-wrap .tel::before {
  content: "";
  width: 7.61067vw;
  height: 7.61067vw;
  margin-right: 3.2vw;
  margin-top: 1.6vw;
  background-image: url(../../img/cmn/icon-tel--w.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .contact_info-wrap .tel::before {
    width: 28.5px;
    height: 28.5px;
    margin: 0 9px 0 0;
  }
}

.contact_info-wrap .time {
  font-size: 4.26667vw;
  line-height: 3;
}

@media screen and (min-width: 769px) {
  .contact_info-wrap .time {
    font-size: 16px;
    line-height: 2.6;
  }
}

/* contact_btn */
.contact_btn-list {
  margin-top: 12vw;
}

@media screen and (min-width: 769px) {
  .contact_btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 35px;
  }
}

.contact_btn {
  border: 1px solid #fff;
  width: 82.98507%;
  margin: 8vw auto 0;
}

@media screen and (min-width: 769px) {
  .contact_btn {
    width: 278px;
    margin: 0 0 0 31px;
  }
}

.contact_btn:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 769px) {
  .contact_btn:first-of-type {
    margin-left: 0;
  }
}

.contact_btn a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5.06667vw;
}

@media screen and (min-width: 769px) {
  .contact_btn a {
    padding: 19px;
  }
}

.contact_btn a::before {
  content: "";
  border-top: 1px solid #fff;
  width: 13.33333vw;
  margin-right: 4.53333vw;
  -webkit-transition: all .25s;
  transition: all .25s;
}

@media screen and (min-width: 769px) {
  .contact_btn a::before {
    width: 50px;
    margin-right: 17px;
  }
}

.contact_btn a:hover::before {
  margin-right: 0;
  opacity: 0;
  height: 0;
  margin-left: -13.33333vw;
}

@media screen and (min-width: 769px) {
  .contact_btn a:hover::before {
    margin-left: -50px;
  }
}

.contact_btn.bc-blue a:hover {
  background-color: #02408C;
}

.contact_btn.bc-orange a:hover {
  background-color: #E07B00;
}

.contact_btn.bc-orange a:hover::before {
  margin-left: calc((-1em) + (-4.53333vw));
}

@media screen and (min-width: 769px) {
  .contact_btn.bc-orange a:hover::before {
    margin-left: calc(-50px + (1em));
  }
}

.contact_btn.bc-lightGreen a:hover {
  background-color: #7ABA9B;
}

/* フッター下部 */
.footer-bottom .inner {
  padding-top: 10.13333vw;
  padding-bottom: 9.33333vw;
}

@media screen and (min-width: 769px) {
  .footer-bottom .inner {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.footer-bottom .footer-bottom_top-wrap {
  border-bottom: 1px solid #CDD6DD;
  padding-bottom: 5.33333vw;
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer-bottom_top-wrap {
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer-bottom_top-wrap .footer_g-nav {
    /* margin-left: auto; */
    padding-top: 18px;
  }
}

.footer-bottom .footer-bottom_top-wrap .footer_g-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 1.86667vw;
  column-gap: 2em;
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer-bottom_top-wrap .footer_g-nav ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-left: 0;
  }
}

/* .footer-bottom .footer-bottom_top-wrap .footer_g-nav li {
  margin-left: 2em;
} */

.footer-bottom .footer-bottom_top-wrap .footer_g-nav li:first-of-type {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .footer-bottom .footer-bottom_top-wrap .footer_g-nav li:nth-of-type(5) {
    margin: 0;
  }
}

.footer-bottom .footer-bottom_top-wrap .footer_g-nav li:hover {
  opacity: .7;
}

.footer-bottom .footer-bottom_top-wrap .footer_g-nav a {
  font-size: 3.73333vw;
  line-height: 2.85714;
  display: block;
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer-bottom_top-wrap .footer_g-nav a {
    font-size: 13px;
    line-height: 1.71429;
  }
}

.footer-bottom .footer-bottom_top-wrap .footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16.8vw;
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer-bottom_top-wrap .footer_logo {
    padding-left: 11px;
    margin-top: 0;
  }
}

.footer-bottom .footer-bottom_top-wrap .footer_logo img {
  width: 11.73333vw;
  height: 12vw;
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer-bottom_top-wrap .footer_logo img {
    width: 44px;
    height: 45px;
  }
}

.footer-bottom .footer-bottom_top-wrap .footer_logo span {
  font-family: 'Noto Serif JP', serif;
  font-size: 4.8vw;
  font-weight: bold;
  margin-left: 4.8vw;
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer-bottom_top-wrap .footer_logo span {
    font-size: 2.1rem;
    margin-left: 18px;
  }
}

.footer-bottom .footer_add {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer_add {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-bottom .footer_add > div {
  margin-top: 1em;
}

@media screen and (min-width: 769px) {
  .footer-bottom .footer_add > div {
    margin: 0 0 0 20px;
    width: calc(33.33333% - 13.33333px);
  }
  .footer-bottom .footer_add > div:first-of-type {
    margin: 0;
  }
}

.footer-bottom .cop {
  font-size: 2.66667vw;
  line-height: 2;
  margin-top: 12vw;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .footer-bottom .cop {
    font-size: 10px;
    margin-top: 40px;
  }
}

/* トップに戻る */
.goTop {
  width: 70px;
  height: 70px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: all .25s;
  transition: all .25s;
}

@media screen and (min-width: 769px) {
  .goTop {
    bottom: 51px;
  }
}

.goTop.fixed {
  opacity: 1;
}

.goTop a {
  opacity: .83;
}

.goTop a:hover {
  opacity: 1;
}

/* main
-------------------------------------------------- */
.kv {
  max-width: 2000px;
  margin: 0 auto;
  width: 100%;
  height: 125px;
}

@media screen and (min-width: 769px) {
  .kv {
    height: 250px;
  }
}

.kv ul, .kv li, .kv img {
  height: 100%;
}

.kv img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: 'object-fit: cover;';
}

/* 下層キービジュアル共通 */
/* imgサイズ調整用 */
.img-of {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: 'object-fit: cover;';
}

/* リスト用インデント */
.list-indent {
  padding-left: 1em;
}

.list-indent li {
  text-indent: -1em;
}

/* アンカー */
.anchor {
  padding-top: 60px;
  margin-top: -60px;
}

@media screen and (min-width: 769px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

.home-sec-ttl {
  font-size: 6.66667vw;
  font-weight: bold;
  line-height: 1.68;
  letter-spacing: 0.1em;
}

/* 共通ボタン */
.btn {
  border: 1px solid #02408C;
  width: 55.73333vw;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .btn {
    width: 209px;
  }
}

.btn a {
  color: #014099;
  font-weight: bold;
  padding: 3.46667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3.46667vw;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .btn a {
    padding: 14px;
    font-size: 14px;
  }
}

.btn a::before {
  content: "";
  border-top: 1px solid #014099;
  width: 12.05867vw;
  margin-right: 3.2vw;
  display: block;
  -webkit-transition: all .25s;
  transition: all .25s;
}

@media screen and (min-width: 769px) {
  .btn a::before {
    width: 45.22px;
    margin-right: 12px;
  }
}

.btn a:hover {
  background-color: #00275D;
  color: #fff;
}

.btn a:hover::before {
  margin-right: 0;
  opacity: 0;
  height: 0;
  margin-left: -12.05867vw;
}

@media screen and (min-width: 769px) {
  .btn a:hover::before {
    margin-left: -45.22px;
  }
}

/* 下層ページ共通
-------------------------------------------------- */
.under-kv {
  position: relative;
}

.under-kv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(1, 64, 153, 0.49);
}

.under-kv::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 31.784vw 31.784vw;
  border-color: transparent transparent #014099 transparent;
  position: absolute;
  right: 0;
  bottom: -5.6vw;
}

@media screen and (min-width: 769px) {
  .under-kv::after {
    width: 0;
    border-width: 0 0 160.69px 160.69px;
    bottom: -21px;
  }
}

.under-kv .txt-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}

.under-kv .kv-ttl {
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 8vw;
  line-height: 1.4;
  text-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .under-kv .kv-ttl {
    font-size: 2.19619vw;
    text-shadow: 0 0.21962vw 0.43924vw rgba(0, 0, 0, 0.16);
  }
}

.breadcrumbsList {
  margin-top: 7.73333vw;
  margin: 7.73333vw 0 10.66667vw;
}

@media screen and (min-width: 769px) {
  .breadcrumbsList {
    margin-top: 17px;
    margin-bottom: 15px;
  }
}

.breadcrumbsList .inner {
  max-width: 1166px;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 auto;
}

.breadcrumbsList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumbsList li, .breadcrumbsList a {
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",sans-serif;
  color: #707070;
  font-size: 3.73333vw;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .breadcrumbsList li, .breadcrumbsList a {
    font-size: 14px;
    line-height: 1.71429;
  }
}
/*# sourceMappingURL=style.css.map */


/* 追加CSS */
@media screen and (min-width: 769px) {
  .mainLayer_list .main_item > a.active {
	  color: #02408C;
  }
  .mainLayer_list .main_item > a.active::after {
	  background-color: #02408C;
  }
}

@media screen and (min-width: 769px) {
  .underLayer1_list li:nth-of-type(2) .underLayer1-1_list.active > li > a {
    width: 281px;
  }
}

.breadcrumbsList {
  color: #707070;
}

.breadcrumbsList span {
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",sans-serif;
  color: #707070;
  font-size: 3.73333vw;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .breadcrumbsList span {
    font-size: 14px;
    line-height: 1.71429;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1420px){
  .main_item > a {
    font-size: 1.3rem;
  }

  .g-nav .main_item {
    margin-left: 10px;
  }

  .header_logo span {
    width: 203px;
  }
}
