@charset "UTF-8";

/* ===================================================================
	/
	/	header
	/
	=================================================================== */
header {
  position: fixed;
  width: 100%;
  z-index: 200;
  padding: 35px 0;
  transition: 0.5s ease;
}
header .container {
  max-width: 1550px;
  width: 95%;
  transition: 0.5s ease;
}
header .h_logo a:hover {
  opacity: 0.7;
}
header .h_menu ul {
  gap: 0 35px;
}
header .h_menu ul li a {
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
  font-weight: 700;
  transition: 0.3s ease;
}
header .h_menu ul li a:hover {
  color: #0059B2;
  transition: 0.3s ease;
}
header .h_menu .h_btn > ul {
  gap: 0 20px;
}
header .h_menu .h_btn a {
  color: #fff;
  background-color: #000;
  border-radius: 3px;
  text-align: center;
  display: block;
  padding: 15px 30px;
}
header .h_menu .h_dl a:hover {
  color: #fff;
  background-color: #0059B2;
  transition: 0.3s ease;
}
header .h_menu .h_btn a:hover {
  color: #fff;
  transition: 0.3s ease;
}

/* h_wide */
header.h_wide {
  background-color: #fff;
  padding: 25px 0;
  transition: 0.5s ease;
  filter: drop-shadow(2px 2px 10px #006198);
}
header.h_wide .container {
  max-width: unset;
  width: 90%;
  transition: 0.5s ease;
}


.global-nav {
  position: fixed;
  right: -55%;
  /* これで隠れる */
  top: 0;
  width: 50%;
  /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 15px;
  background-color: #fff;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}

.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
  /* クリックしやすいようにちゃんと幅を指定する */
  height: 62px;
  /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
}

.hamburger > p {
  top: 40px;
  right: 12px;
  position: absolute;
  font-size: 10px !important;
  letter-spacing: 0px;
  color: #06062C;
}

.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav__img {
  padding: 0 10px 20px;
  margin: 0 auto;
}

.global-nav__item {
  text-align: center;
  padding: 0 15px;
}

.global-nav__item a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  color: #06062C;
}
.global-nav a .en {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}
.global-nav .insta {
  position: relative;
}
.global-nav .insta a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../images/insta_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
}

.global-nav .sub-nav {
  margin: 0 15px;
}
.global-nav .sub-nav li {
  width: 50%;
}
.global-nav .sub-nav li a {
  font-size: 13px;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  display: block;
}
.global-nav .sub-nav li:nth-child(1) a,
.global-nav .sub-nav li:nth-child(3) a {
  border-right: 1px solid #eee;
}

.hamburger__line {
  position: absolute;
  right: 18px;
  width: 28px;
  height: 2px;
  background-color: #06062C;
  transition: all .6s;
}

.hamburger__line--1 {
  top: 20px;
}
.hamburger__line--2 {
  top: 29px;
}
.hamburger__line--3 {
  top: 38px;
}

.black-bg {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}

.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 26px;
}

.nav-open .hamburger__line--2 {
  width: 0;
  right: 50%;
}

.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 26px;
}

.is-fixed {
  position: fixed;
  right: 0;
  top: 0;
  margin: 0;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 300;
  background: #fff;
}

.hamburger {
  display: none;
}



@media screen and (max-width:1280px) {
  header .h_menu ul {
    gap: 0 25px;
  }
  header .h_menu ul li a {
    font-size: 1.3rem;
  }
  header .h_menu .h_btn > ul {
    gap: 0 15px;
  }
  header .h_menu .h_btn a {
    padding: 12px 25px;
  }
}

@media screen and (max-width:1024px) {
  header .h_logo img {
    width: 120px;
  }
  header {
    padding: 25px 0;
  }
  header .h_menu ul {
    gap: 0 20px;
  }
  header .h_menu ul li a {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }
  header .h_menu .h_btn > ul {
    gap: 0 10px;
  }
  header .h_menu .h_btn a {
    padding: 12px 20px;
  }
}

@media screen and (max-width:900px) {
  header .h_logo img {
    width: 100px;
  }
  header .h_menu ul {
    gap: 0 15px;
  }
  header .h_menu .h_btn a {
    padding: 10px 12px;
    font-size: 11px;
  }
}

@media screen and (max-width:768px) {
  header {
    padding: 10px 0;
  }
  header.h_wide {
    padding: 10px 0;
  }
  header.h_wide .container {
    width: 95%;
  }
  header .h_logo img {
    width: 130px;
  }
  header .h_menu {
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
  }
}

@media screen and (max-width:479px) {

  .global-nav {
    right: -85%;
    /* これで隠れる */
    width: 80%;
    /* スマホに収まるくらい */
  }
  .global-nav__item a {
    font-size: 14px;
  }
}

@media screen and (max-width:370px) {
  .global-nav__item a {
    font-size: 13px;
  }
}




/* ===================================================================
	/
	/	footer
	/
	=================================================================== */
footer {
  padding: 50px 0 60px;
  border-top: 1px solid #535362;
}
footer .container {
  max-width: 1400px;
}
footer .copyright p {
  font-size: 13px;
  font-size: 1.3rem;
}
footer .f_wrap {
  gap: 30px 0;
}
footer .f_menu ul {
  gap: 15px 20px;
}
footer .f_menu ul li a {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  display: block;
}
footer .f_menu ul li a:hover {
  color: #0059B2;
}


@media screen and (max-width:1024px) {
  footer .f_wrap {
    -webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  }
}

@media screen and (max-width:768px) {
  footer {
    padding: 30px 0 20px;
  }
  footer .f_menu ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .f_menu ul li a {
    font-size: 1.2rem;
  }
  footer .copyright p {
    font-size: 1.1rem;
  }
}

@media screen and (max-width:479px) {
  footer .f_menu ul li a {
    font-size: 1.1rem;
  }
  footer .copyright p {
    font-size: 1rem;
  }
}
