@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Roboto
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap");
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
  color: #323232;
  font-size: 13px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 640px) {
  html,
  body {
    font-size: 3.4666666667vw;
  }
}

html {
  overflow: auto;
}

body {
  line-height: 1.5;
  overflow-x: hidden;
}
@media screen and (min-width: 1920px) {
  body {
    min-width: 1920px;
  }
}
@media screen and (max-width: 640px) {
  body {
    line-height: 1.5;
    min-width: 320px;
  }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

/* ---------------------------------------------
*   
--------------------------------------------- */
.align_right {
  text-align: right;;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
  padding: 0 2.9166666667% 0 5%;
  background-color: #fff;
}
@media screen and (max-width: 1040px) {
  .header {
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .header {
    height: 63px;
    padding-top: 19px;
    padding-right: 4vw;
    padding-bottom: 19px;
    padding-left: 4vw;
  }
}

/*  header-container
--------------------------------------------- */
.header-container {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1041px) {
  .header-container {
    justify-content: center;
  }
}
@media screen and (max-width: 1040px) {
  .header-container {
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .header-container {
    height: auto;
  }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
  margin-right: 4.5248868778%;
}
.header-logo__link {
  display: block;
  overflow: hidden;
  padding-top: 35px;
  width: 201px;
  height: 0;
  background: url(/common/ver.1/img/logo_hokurikudenki.png) 0 0 no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 640px) {
  .header-logo__link {
    position: absolute;
    top: 26px;
    width: 185px;
  }
}

/*  header-grouplogo
--------------------------------------------- */
@media screen and (max-width: 640px) {
  .header-grouplogo {
    position: absolute;
    top: 7px;
    left: 15px;
  }
}
.header-grouplogo__link {
  display: block;
  overflow: hidden;
  padding-top: 20px;
  width: 140px;
  height: 0;
  background: url(/common/ver.1/img/logo_hokurikugroup.png) 0 0 no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 640px) {
  .header-grouplogo__link {
    width: 100px;
  }
}

/* ---------------------------------------------
*   menu-trigger
--------------------------------------------- */
.menu-trigger {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 63px;
  height: 63px;
  z-index: 999;
  transform: translateX(0);
  transition: transform .2s;
  background-color: #004DB0;
}
@media screen and (min-width: 1041px) {
  .menu-trigger {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .menu-trigger {
    width: 50px;
    height: 50px;
  }
}
.menu-trigger.active span:nth-of-type(1) {
  top: 31px;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 641px) {
  .menu-trigger.active span:nth-of-type(1) {
    top: 24px;
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  bottom: 30px;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 641px) {
  .menu-trigger.active span:nth-of-type(3) {
    bottom: 24px;
  }
}
.menu-trigger span {
  position: absolute;
  left: 50%;
  display: inline-block;
  box-sizing: border-box;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all .2s;
  transform: translateX(-50%);
}
@media screen and (min-width: 641px) {
  .menu-trigger span {
    width: 28px;
  }
}
.menu-trigger span:nth-of-type(1) {
  top: 24px;
}
@media screen and (min-width: 641px) {
  .menu-trigger span:nth-of-type(1) {
    top: 17px;
  }
}
.menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 24px;
}
@media screen and (min-width: 641px) {
  .menu-trigger span:nth-of-type(3) {
    bottom: 17px;
  }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
  padding-top: 50px;
}
@media screen and (max-width: 640px) {
  .wrapper {
    padding-top: 63px;
  }
}

/* ---------------------------------------------
*   gnav-menu
--------------------------------------------- */
.gnav-menu {
  display: flex;
  justify-content: center;
  margin-right: 0.4524886878%;
  width: 62.443438914%;
}
@media screen and (max-width: 1040px) {
  .gnav-menu {
    display: block;
    position: fixed;
    width: 100%;
    top: 50px;
    right: 0;
    left: 0;
    background-color: #fff;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu {
    top: 63px;
  }
}

/*  gnav-menu-lv1
--------------------------------------------- */
.gnav-menu-lv1 {
  width: 100%;
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv1 {
    display: block !important;
  }
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv1 {
    display: none;
    background-color: #DCF0FA;
    max-height: calc(100vh - 50px);
    overflow-y: scroll;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv1 {
    max-height: calc(100vh - 63px);
    padding-bottom: 5.3333333333vw;
  }
}
.gnav-menu-lv1__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv1__list {
    display: block;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv1__list {
    padding-top: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.gnav-menu-lv1__item {
  border-left: 1px solid #C8C8C8;
  width: 20%;
  box-sizing: border-box;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv1__item {
    position: relative;
    width: 100%;
    border-left: none;
    border-top: 1px solid #004DB0;
  }
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv1__item:last-child {
    border-bottom: 1px solid #004DB0;
  }
}
.gnav-menu-lv1__link {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 17px;
  padding-bottom: 17px;
  box-sizing: border-box;
  font-weight: bold;
  color: #646464;
  letter-spacing: .05em;
  font-size: 1.1rem;
  white-space: nowrap;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv1__link {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 0;
    color: #004DB0;
    font-size: 1.0769230769rem;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv1__link {
    padding-top: 2.9333333333vw;
    padding-bottom: 2.9333333333vw;
    font-size: 3.7333333333vw;
    letter-spacing: .03em;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv1__link-icon {
    display: none;
  }
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv1__link-icon {
    position: absolute;
    top: 2px;
    right: 0;
    width: 45px;
    height: 45px;
  }
  .gnav-menu-lv1__link-icon:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 15px;
    height: 16px;
    background-image: url(/common/ver.1/img/icon_menu_off.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: 1;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv1__link-icon {
    top: 1.0666666667vw;
    width: 33.3333333333vw;
    height: 9.3333333333vw;
  }
  .gnav-menu-lv1__link-icon:before {
    width: 3.8666666667vw;
    height: 4vw;
  }
}
.gnav-menu-lv1__link-icon.js-opened:before {
  background-image: url(/common/ver.1/img/icon_menu_on.png);
}

/*  gnav-menu-lv2
--------------------------------------------- */
.gnav-menu-lv2 {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: #DCF0FA;
  padding-left: 12.5%;
  display: none;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2 {
    padding-left: 0;
    position: static;
  }
}

/* -- gnav-menu-lv2-inner -- */
.gnav-menu-lv2-inner {
  display: flex;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-inner {
    display: block;
  }
}

/* -- gnav-menu-lv2-head -- */
.gnav-menu-lv2-head {
  width: 210px;
  padding: 30px 0;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-head {
    display: none;
  }
}
.gnav-menu-lv2-head__title {
  position: relative;
  padding-bottom: 37px;
  margin-bottom: 40px;
}
.gnav-menu-lv2-head__title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 4px;
  background-color: #004DB0;
  z-index: 1;
}
.gnav-menu-lv2-head__title-text {
  letter-spacing: .05em;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: #004DB0;
  font-size: 0.9230769231rem;
}
.gnav-menu-lv2-head__title-caption {
  font-weight: bold;
  font-size: 1.3846153846rem;
  letter-spacing: .03em;
}
.gnav-menu-lv2-head__title-outer {
  display: flex;
}
.gnav-menu-lv2-head__link {
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  background-color: #004DB0;
  width: 147px;
  height: 36px;
  box-sizing: border-box;
  padding-left: 8px;
  color: #fff;
  font-size: 0.9230769231rem;
  line-height: 1.2;
}
.gnav-menu-lv2-head__link:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 34px;
  height: 2px;
  background-color: #fff;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-head__link:before {
    width: 8.9333333333vw;
    height: 0.2666666667vw;
    min-height: 1px;
  }
}
.gnav-menu-lv2-head__link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  display: block;
  width: 28px;
  height: 2px;
  background-color: #004DB0;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-head__link:after {
    right: -7.4666666667vw;
    width: 7.4666666667vw;
    height: 0.2666666667vw;
    min-height: 1px;
  }
}

/* -- gnav-menu-lv2-contents -- */
.gnav-menu-lv2-contents {
  width: calc(100% - 210px);
  padding: 30px 13.2377859362% 50px 2.6475571872%;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents {
    width: 100%;
    background-color: transparent;
    padding: 0;
  }
}
.gnav-menu-lv2-contents__lineup {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__lineup {
    padding: 0;
  }
}
.gnav-menu-lv2-contents__lineup-item {
  position: relative;
  display: flex;
  width: 208px;
  margin-right: 1.1883188259%;
  margin-left: 1.1883188259%;
  margin-bottom: 18px;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__lineup-item {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-top: 1px solid #004DB0;
    margin-bottom: 0;
    padding: 10px 0;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__lineup-item {
    padding: 2.6666666667vw 0;
  }
}
.gnav-menu-lv2-contents__lineup-item:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  width: 25px;
  height: 5px;
  background: url(/common/ver.1/img/icon_link_arrow_blue.png) 0 0 no-repeat;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__lineup-item:before {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__lineup-item:before {
    width: 25px;
    height: 5px;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv2-contents__lineup-item--icon1 .gnav-menu-lv2-contents__lineup-link {
    background: url(/common/ver.1/img/icon1_content1.png) 17px 50% no-repeat #004DB0;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv2-contents__lineup-item--icon2 .gnav-menu-lv2-contents__lineup-link {
    background: url(/common/ver.1/img/icon1_content2.png) 17px 50% no-repeat #004DB0;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv2-contents__lineup-item--icon3 .gnav-menu-lv2-contents__lineup-link {
    background: url(/common/ver.1/img/icon1_content3.png) 17px 50% no-repeat #004DB0;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv2-contents__lineup-item--icon4 .gnav-menu-lv2-contents__lineup-link {
    background: url(/common/ver.1/img/icon1_content4.png) 17px 50% no-repeat #004DB0;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv2-contents__lineup-item--icon5 .gnav-menu-lv2-contents__lineup-link {
    background: url(/common/ver.1/img/icon1_content5.png) 17px 50% no-repeat #004DB0;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv2-contents__lineup-item--icon6 .gnav-menu-lv2-contents__lineup-link {
    background: url(/common/ver.1/img/icon1_content6.png) 17px 50% no-repeat #004DB0;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv2-contents__lineup-item--icon7 .gnav-menu-lv2-contents__lineup-link {
    background: url(/common/ver.1/img/icon1_content7.png) 17px 50% no-repeat #004DB0;
  }
}
@media screen and (min-width: 1041px) {
  .gnav-menu-lv2-contents__lineup-item--icon8 .gnav-menu-lv2-contents__lineup-link {
    background: url(/common/ver.1/img/icon1_content8.png) 17px 50% no-repeat #004DB0;
  }
}
.gnav-menu-lv2-contents__lineup-item--icon-none .gnav-menu-lv2-contents__lineup-link {
  padding-left: 14px;
  background: #004DB0;
}
.gnav-menu-lv2-contents__lineup-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 79px;
  padding-left: 60px;
  box-sizing: border-box;
  border: 1px solid #97B6DE;
  font-weight: bold;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__lineup-link {
    display: block;
    width: auto;
    height: auto;
    border: none;
    padding-left: 0;
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__lineup-link {
    padding: 0 5.3333333333vw;
  }
}
.gnav-menu-lv2-contents__lineup-text {
  line-height: 1.2;
  letter-spacing: -.05em;
  color: #FFFFFF;
  font-size: 0.9230769231rem;
  font-weight: bold;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__lineup-text {
    color: #004DB0;
    font-size: 14px;
    font-weight: normal;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__lineup-text {
    font-size: 3.7333333333vw;
    letter-spacing: normal;
  }
}
.gnav-menu-lv2-contents__lineup-text-small {
  font-size: 0.7692307692rem;
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__lineup-text-small {
    font-size: 3.4666666667vw;
  }
}
.gnav-menu-lv2-contents__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__list {
    padding: 0;
  }
}
.gnav-menu-lv2-contents__list-item {
  margin-right: 1.2110936175%;
  margin-bottom: 26px;
  margin-left: 1.2110936175%;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__list-item {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 10px 0;
    border-top: 1px solid #004DB0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__list-item {
    padding: 2.6666666667vw 0;
  }
}
.gnav-menu-lv2-contents__list-link {
  display: block;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__list-link {
    border: none;
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__list-link {
    padding: 0 5.3333333333vw;
  }
}
.gnav-menu-lv2-contents__list-image {
  position: relative;
  margin-bottom: 2px;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__list-image {
    display: none;
  }
}
.gnav-menu-lv2-contents__list-image:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #004DB0;
  z-index: 1;
}
.gnav-menu-lv2-contents__list-text {
  position: relative;
  color: #323232;
  font-size: 0.9230769231rem;
  font-weight: bold;
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__list-text {
    color: #004DB0;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__list-text {
    font-weight: normal;
    font-size: 3.7333333333vw;
  }
}
.gnav-menu-lv2-contents__list-text:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 25px;
  height: 5px;
  /*background: url(/common/ver.1/img/icon_link_arrow_blue.png) 0 0 no-repeat;*/
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 1040px) {
  .gnav-menu-lv2-contents__list-text:before {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .gnav-menu-lv2-contents__list-text:before {
    width: 25px;
    height: 5px;
  }
}

/* ---------------------------------------------
*   breadcrumb
--------------------------------------------- */
.breadcrumb {
  background-color: #F0F0F0;
  padding-right: 5%;
  padding-left: 5%;
}
@media screen and (max-width: 640px) {
  .breadcrumb {
    padding-right: 5.3333333333%;
    padding-left: 5.3333333333%;
  }
}
.breadcrumb__list-item {
  display: inline-block;
  letter-spacing: normal;
  color: #646464;
  font-size: 0.6923076923rem;
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .breadcrumb__list-item {
    padding: 0.2666666667vw 0 1.0666666667vw;
    font-size: 2.1333333333vw;
    margin-right: 2.2666666667vw;
  }
}
.breadcrumb__list-item:last-child {
  margin-right: 0;
}
.breadcrumb__list-item a {
  display: inline-block;
}
.breadcrumb__list-item a:hover {
  text-decoration: underline;
}
.breadcrumb__list-item + .breadcrumb__list-item {
  position: relative;
}
.breadcrumb__list-item + .breadcrumb__list-item:after {
  content: ">";
  position: absolute;
  top: 38%;
  left: -10px;
  display: block;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .breadcrumb__list-item + .breadcrumb__list-item:after {
    left: -2.1333333333vw;
  }
}

/*  breadcrumb-inner
--------------------------------------------- */
.breadcrumb-inner {
  width: 100%;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
  padding: 25px 0;
  background-color: #004DB0;
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 6.6666666667vw 0;
  }
}

/*  footer-container
--------------------------------------------- */
.footer-container {
  display: flex;
  justify-content: center;
  margin-right: 1.6666666667%;
  margin-left: 1.6666666667%;
}
@media screen and (max-width: 1040px) {
  .footer-container {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-right: 4vw;
    padding-left: 4vw;
    margin-right: 0;
    margin-left: 0;
  }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
  width: 90%;
}
@media screen and (min-width: 1041px) {
  .footer-nav {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1040px) {
  .footer-nav {
    width: 100%;
  }
}
.footer-nav__list {
  display: flex;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list {
    display: block;
  }
}
.footer-nav__list-item {
  position: relative;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-item {
    border-top: 1px solid #fff;
  }
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-item:last-child {
    border-bottom: 1px solid #fff;
  }
}
.footer-nav__list-item.footer-open .footer-nav__list-button-icon:before {
  background-image: url(/common/ver.1/img/icon_menu_white_on.png);
}
@media screen and (min-width: 1041px) {
  .footer-nav__list-item--1 {
    margin-right: 7%;
  }
  .footer-nav__list-item--2 {
    margin-right: 4%;
  }
  .footer-nav__list-item--3 {
    margin-right: 7%;
  }
  .footer-nav__list-item--4 {
    margin-right: 7%;
  }
}
.footer-nav__list-button {
  display: inline-block;
  letter-spacing: .03em;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 13px;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-button {
    width: 100%;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .footer-nav__list-button {
    padding-top: 2.9333333333vw;
    padding-bottom: 2.9333333333vw;
    font-size: 3.7333333333vw;
  }
}
.footer-nav__list-button:hover {
  text-decoration: underline;
}
.footer-nav__list-button-icon {
  display: none;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-button-icon {
    display: block;
    position: absolute;
    top: 2px;
    right: 0;
    width: 35px;
    height: 35px;
  }
  .footer-nav__list-button-icon:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 15px;
    height: 16px;
    background-image: url(/common/ver.1/img/icon_menu_white_off.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: 1;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 640px) {
  .footer-nav__list-button-icon {
    top: 1.0666666667vw;
    width: 33.3333333333vw;
    height: 9.3333333333vw;
  }
  .footer-nav__list-button-icon:before {
    width: 4vw;
    height: 4.1333333333vw;
  }
}
@media screen and (min-width: 1041px) {
  .footer-nav__list-sub {
    display: block !important;
  }
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-sub {
    display: none;
  }
}
.footer-nav__list-sub--space {
  margin-right: 15px;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-sub--space {
    margin-right: 0;
  }
}
.footer-nav__list-sub-text {
  letter-spacing: .03em;
  color: #C8C8C8;
  font-size: 1.1rem;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-sub-text {
    display: block;
    width: 100%;
    margin-right: 0;
    border-top: 1px solid #fff;
    margin-bottom: 0;
    padding: 10px 0;
  }
}
@media screen and (max-width: 640px) {
  .footer-nav__list-sub-text {
    padding: 2.6666666667vw 0;
  }
}
.footer-nav__list-sub-text:nth-child(n + 2) {
  margin-top: 7px;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-sub-text:nth-child(n + 2) {
    margin-top: 0;
  }
}
.footer-nav__list-sub-link {
  display: inline-block;
  line-height: 1.3;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-sub-link {
    display: block;
    font-size: 14px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 640px) {
  .footer-nav__list-sub-link {
    line-height: 1.5;
    padding: 0 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.footer-nav__list-sub-link:hover {
  text-decoration: underline;
}
.footer-nav__list-sub-break {
  display: flex;
}
@media screen and (max-width: 1040px) {
  .footer-nav__list-sub-break {
    display: block;
  }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
  height: 100%;
  max-width: 1000px;
  width: 100%;
  padding: 20px 0px;
  margin: auto;
}
@media screen and (max-width: 1040px) {
  .footer-copyright {
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .footer-copyright {
    margin-top: 4vw;
  }
}
.footer-copyright__text {
  color: #C8C8C8;
  font-size: 0.7692307692rem;
}
@media screen and (max-width: 1040px) {
  .footer-copyright__text {
    font-weight: bold;
  }
}
@media screen and (max-width: 640px) {
  .footer-copyright__text {
    font-size: 2.4vw;
  }
}

/* ---------------------------------------------
*   pagetop
--------------------------------------------- */
.pagetop__link {
  position: relative;
  text-align: center;
}
.pagetop__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 2px;
  height: 26px;
  background-color: #004DB0;
  z-index: 1;
  transform: translateX(-50%);
}
.pagetop__link-text {
  display: inline-block;
  color: #004DB0;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.8461538462rem;
  padding-bottom: 27px;
  font-weight: bold;
}

/* ---------------------------------------------
*   a
--------------------------------------------- */
.anchorColor {
  color: #3487eb;
}
