@charset "UTF-8";
/*変数設定用*/
@font-face {
  font-family: "futura";
  src: url("./../fonts/futura.ttf");
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

input[type="text"],
input[type="password"],
textarea,
select {
  outline: none;
}

*:focus {
  outline: none;
}

a {
  color: #666666;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 62.5%;
  color: #666666;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  position: relative;
  /*topBtnの親要素に指定*/
}

header {
  height: auto;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
  }
}

header .logo {
  width: 13%;
  margin-right: 3%;
  padding: 25px 0;
}

@media screen and (max-width: 767px) {
  header .logo {
    width: 40%;
    padding: 10px;
  }
}

header .gnav-wrapper {
  position: relative;
  width: 67%;
}

header .gnav {
  padding-right: 2%;
  display: flex;
  margin-top: 30px;
  align-items: center;
}

header .gnav li {
  text-align: center;
  transition: all 0.3s ease-in-out;
}

header .gnav li:hover {
  background: #101e63;
}

header .gnav a {
  padding: 0 30px;
  font-size: 1.6rem;
  display: flex;
  color: #101e63;
  min-height: 60px;
  align-items: center;
}

header .gnav > li:hover .megamenu {
  max-height: 9999px;
  opacity: 1;
  padding: 20px 0;
}

header .gnav li:hover a {
  color: #fff;
}

header .megamenu {
  background: #101e63;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-in;
  z-index: 999;
  width: 110vw;
  left: 50%;
  transform: translate(-49%, 0);
}

header .megamenu .container {
  display: block;
  text-align: left;
}

header .megamenu .mega_cont dl {
  float: left;
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 20px;
}

header .megamenu .mega_cont .sm_txt {
  color: #fff;
  font-size: 1.2rem;
  padding-top: 10px;
}

header .megamenu .mega_cont a.thum {
  padding: 0;
  display: block;
}

header .megamenu h3 {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

header .megamenu h3 a {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  padding: 0 20px 10px;
  color: #101e63;
  font-size: 1.6rem;
  background: url(./../img/arrow_w.png);
  background-position: bottom right;
  background-repeat: no-repeat;
}

header .megamenu .arrow {
  display: block;
  padding: 15px 0;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  border-bottom: 1px solid #fff;
}

header .megamenu .arrow:after {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -5px;
  background: url(./../img/arrow_w.png);
  background-position: right;
  width: 30px;
  height: 10px;
  content: "";
  background-repeat: no-repeat;
}

header .megamenu .arrow.other:after {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -15px;
  background: url(./../img/link_icon.png);
  background-position: center;
  width: 30px;
  height: 30px;
  background-size: cover;
  content: "";
  background-repeat: no-repeat;
}

header .megamenu .btns {
  margin-top: 50px;
}

header .megamenu .btns a {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 0px 50px 0px 20px;
  background: #fff;
  border: 1px solid #fff;
  color: #101e63 !important;
  font-size: 1.6rem;
  position: relative;
  float: left;
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 20px;
  transition: 0.6s;
}

header .megamenu .btns a:after {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -5px;
  background: url(./../img/arrow.png);
  background-position: right;
  width: 30px;
  height: 10px;
  content: "";
  background-repeat: no-repeat;
}

header .megamenu .btns a:hover {
  background: #101e63;
  color: #fff !important;
  opacity: 1;
}

header .megamenu .btns a:hover:after {
  background: url(./../img/arrow_w.png);
  background-position: right;
  background-repeat: no-repeat;
}

@media all and (-ms-high-contrast: none) {
  header .megamenu .btns a {
    padding: 30px;
  }
  header .megamenu .btns a.lh {
    padding: 15px 30px;
  }
}

header .container {
  position: relative;
  display: flex;
}

header .container .change_lang {
  z-index: 100;
  position: absolute;
  right: 22%;
  display: flex;
}

@media screen and (max-width: 767px) {
  header .container .change_lang {
    display: none;
  }
}

header .container .change_lang a {
  color: #fff;
  background: #101e63;
  padding: 5px 15px;
  display: inline-block;
  font-size: 1.4rem;
  border: 1px solid #101e63;
  transition: 0.6s;
  margin-left: 2px;
}

header .container .change_lang a:hover {
  background: #fff;
  color: #101e63;
}

header .container .contact_btn {
  right: 0;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  background: #00bf15;
  border: 1px solid #00bf15;
  align-items: center;
  transition: 0.6s;
}

header .container .contact_btn:hover {
  background: #fff;
  color: #00bf15;
}

@media screen and (max-width: 767px) {
  header .container .contact_btn {
    display: none;
  }
}

nav.globalMenuSp {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  color: #000;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

nav.globalMenuSp .cover_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(16, 30, 99, 0.8);
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  font-size: 1.1em;
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  position: relative;
}

nav.globalMenuSp ul li.no_icon a:after, nav.globalMenuSp ul li.no_icon a:before {
  display: none;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li a {
  display: block;
  background: #101e63;
  color: #fff;
  padding: 20px 0;
  font-size: 1.4rem;
  position: relative;
}

nav.globalMenuSp ul li a:before {
  position: absolute;
  right: 40px;
  top: 30px;
  margin-top: -8px;
  content: "";
  background: #fff;
  height: 20px;
  width: 2px;
}

nav.globalMenuSp ul li a:after {
  position: absolute;
  right: 31px;
  top: 32px;
  margin-top: -1px;
  content: "";
  background: #fff;
  height: 2px;
  width: 20px;
  margin-top: -1px;
}

nav.globalMenuSp ul li a.op:before {
  display: none;
}

nav.globalMenuSp ul li.contact a {
  background: #00bf15;
}

nav.globalMenuSp ul li > ul {
  display: none;
}

nav.globalMenuSp ul li > ul li a {
  background: #344491;
}

nav.globalMenuSp ul li > ul li a:before, nav.globalMenuSp ul li > ul li a:after {
  display: none;
}

nav.globalMenuSp.active {
  transform: translateY(0%);
  margin-top: 56px;
}

nav.globalMenuSp .change_lang_sp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px;
  background: #fff;
  z-index: 100;
  position: relative;
  padding-bottom: 80px;
}

nav.globalMenuSp .change_lang_sp a {
  width: calc(50% - 20px);
  color: #fff;
  background: #101e63;
  padding: 5px 10px;
  margin: 0 10px 10px;
  display: inline-block;
  font-size: 1.4rem;
}

.navToggle {
  display: block;
  position: fixed;
  /* bodyに対しての絶対位置指定 */
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 3;
  text-align: center;
}

.navToggle span {
  display: block;
  position: absolute;
  /* .navToggleに対して */
  width: 30px;
  border-bottom: solid 2px #101e63;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  left: 6px;
}

.navToggle span:nth-child(1) {
  top: 9px;
}

.navToggle span:nth-child(2) {
  top: 18px;
}

.navToggle span:nth-child(3) {
  top: 27px;
}

.navToggle span:nth-child(4) {
  border: none;
  color: #eee;
  font-size: 9px;
  font-weight: bold;
  top: 34px;
}

.navToggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

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

@media screen and (max-width: 767px) {
  .vpc {
    display: none;
  }
}

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

@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.container {
  max-width: 1024px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .container {
    width: 95%;
  }
}

/* ページTOP */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  #page-top {
    bottom: 25vw;
  }
}

#page-top a {
  text-decoration: none;
  color: #fff;
  width: 100px;
  text-align: center;
  display: block;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  #page-top a {
    width: 60px;
  }
}

.f_logo {
  border-top: 30px solid #101e63;
}

.f_logo .container {
  padding: 15px 0;
}

.f_logo .container img {
  max-width: 200px;
}

.footer_cont {
  background: #101e63;
  padding: 40px 0;
  color: #fff;
}

.footer_cont .container {
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer_cont .container {
    display: block;
  }
}

.footer_cont .address {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .footer_cont .address {
    width: 100%;
  }
}

.footer_cont .address dt {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.footer_cont .address dd {
  font-size: 1.6rem;
  max-width: 300px;
}

.footer_cont .foot_links {
  width: 55%;
}

@media screen and (max-width: 767px) {
  .footer_cont .foot_links {
    margin-top: 20px;
    width: 100%;
    display: block;
  }
}

.footer_cont .foot_links > div {
  width: 25%;
  float: left;
}

@media screen and (max-width: 767px) {
  .footer_cont .foot_links > div {
    width: 100%;
    float: none;
  }
}

.footer_cont .foot_links > div:nth-child(2) {
  margin: 0px 9%;
  width: 32%;
}

@media screen and (max-width: 767px) {
  .footer_cont .foot_links > div:nth-child(2) {
    margin: 20px 0;
    width: 100%;
  }
}

.footer_cont .foot_links > div p {
  margin-bottom: 30px;
}

.footer_cont .foot_links > div a {
  font-size: 1.6rem;
  color: #fff;
}

.footer_cont .foot_links > div dl {
  margin-bottom: 30px;
}

.footer_cont .foot_links > div dt {
  font-size: 1.8rem;
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.footer_cont .foot_links > div dt:before {
  content: "";
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 5%;
  transform: rotate(-225deg);
  width: 7px;
  height: 7px;
  top: 50%;
  margin-top: -8.5px;
  position: absolute;
  transition: 0.6s;
}

.footer_cont .foot_links > div dd p {
  margin-bottom: 10px;
}

.foot_policy {
  background: #191919;
  padding: 17px 0;
  text-align: right;
}

.foot_policy ul {
  display: inline-flex;
}

.foot_policy ul li a {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 100;
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .foot_policy ul li a {
    font-size: 1.2rem;
  }
}

.foot_policy ul li:last-child a {
  border-left: 1px solid #fff;
}

.breadcrumbs {
  padding: 20px 0;
}

.breadcrumbs a {
  font-size: 1.6rem;
  color: #000;
}

@media screen and (max-width: 767px) {
  .breadcrumbs a {
    font-size: 1.2rem;
  }
}

.breadcrumbs span {
  font-size: 1.6rem;
  color: #101e63;
}

@media screen and (max-width: 767px) {
  .breadcrumbs span {
    font-size: 1.2rem;
  }
}

.breadcrumbs .slash {
  padding: 0 10px;
}

.copy {
  text-align: center;
  padding: 10px;
  color: #101e63;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .copy {
    font-size: 1.2rem;
  }
}
