@charset "UTF-8";

/* ===================================================================
	/
	/	header
	/
	=================================================================== */
header.site-header {
  position: fixed;
  width: 100%;
  z-index: 200;
  padding: 25px 0;
  transition: 0.5s ease;
}
header.site-header .container_w {
  width: 95%;
  transition: 0.5s ease;
}
header .header_inner {

}
header .h_logo a:hover {
  opacity: 0.7;
}
header .h_menu ul {
  gap: 0 70px;
}
header .h_menu ul li {
  margin-bottom: 0;
}
header .h_menu ul li a {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 3px;
  display: block;
  font-weight: 500;
  text-align: center;
  transition: 0.3s ease;
}
header .h_menu ul li .en {
  opacity: 0.4;
  font-size: 9px;
  font-weight: normal;
  letter-spacing: 2px;
}
header .h_menu ul li a:hover {
  color: #e50050;
  text-decoration: none;
  transition: 0.3s ease;
}
header .h_menu ul .h_btn {
  margin: 20px 0 3px;
}
header .h_menu ul .h_btn a {
  color: #fff;
  background-color: #010101;
  border-radius: 5px;
  text-align: center;
  display: block;
  padding: 15px 20px;
  transition: 0.3s ease;
  font-size: 17px;
  letter-spacing: 2px;
}
header .h_menu ul .h_btn a i {
  margin-right: 5px;
}
header .h_menu ul .h_btn a:hover {
  color: #fff;
  background-color: #e50050;
  transition: 0.3s ease;
}
header .h_menu ul li p.s {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

/* h_wide */
header.h_wide {
  /*padding: 15px 0;*/
  padding: 5px 0 10px;
  transition: 0.5s ease;
  background-color: #fff;
}


/* under */
.under header.site-header {
  background-color: #fff;
  /*padding: 15px 0;*/
  padding: 5px 0 10px;
}
.under header.site-header .header_inner {
  box-shadow: unset;
}


.global-nav {
  position: fixed;
  right: -55%;
  /* これで隠れる */
  top: 0;
  width: 50%;
  /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 10px;
  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;
}

.global-nav ul li {
  margin-bottom: 0;
  line-height: unset;
}

.hamburger__line {
  position: absolute;
  right: 18px;
  width: 28px;
  height: 2px;
  background-color: #06062C;
  transition: all .6s;
}

ul.navsns {
  width: 100px;
  padding-right: 0;
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
}

.hamburger__line--1 {
  top: 15px;
}
.hamburger__line--2 {
  top: 24px;
}
.hamburger__line--3 {
  top: 33px;
}

.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:1400px) {
  header .h_menu ul {
    gap: 0 50px;
  }
}

@media screen and (max-width:1280px) {
  header.site-header {
    padding: 5px 0 15px;
  }
  header .h_logo img {
    width: 200px;
  }
  header .h_menu ul {
    gap: 0 30px;
  }
  header .h_menu ul li a {
    font-size: 13px;
    line-height: 1.3;
  }
  header .h_menu ul li .en {
    font-size: 7px;
  }
  header .h_menu ul .h_btn a {
    padding: 10px 20px;
    font-size: 15px;
  }
  header .h_menu ul li p.s {
    font-size: 10px;
    line-height: 1.3;
  }
}

@media screen and (max-width:1024px) {
  header.site-header {
    padding: 0;
  }
  .under header.site-header {
    padding: 0;
  }
  header .header_inner {
    /*padding: 20px 0px 15px 0px;*/
    padding: 5px 0 10px;
  }
  header .h_logo img {
    width: 160px;
  }
  header .h_menu ul li a {
    font-size: 12px;
    letter-spacing: 1px;
  }
  header .h_menu ul .h_btn a {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 8px;
  }
  header .h_menu ul .h_btn a i {
    margin-right: 2px;
  }
  header .h_menu ul li p.s {
    font-size: 9px;
  }
}

@media screen and (max-width:900px) {
  header .h_menu ul {
    gap: 0 20px;
  }
}

@media screen and (max-width:768px) {
  header .header_inner {
    padding: 20px 0px 15px 0px;
  }
  header .h_menu {
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
  }
}

@media screen and (max-width:479px) {
  header .header_inner {
    padding: 10px 0 10px 0;
  }
  .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: 100px 0 0;
	background: #fff;
}
.under footer .container {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
}
footer .container {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
}
footer .footer_contents p {
  font-size: 15px;
}
footer .footer_contents p.small {
  font-size: 13px;
}
footer .footer_contents .f_l {
  width: 48%;
}
footer .footer_contents .f_l .f_logo {
  width: 40%;
}
footer .footer_contents .f_l .f_address {
  width: 55%;
}
footer .footer_contents .f_l .f_address .f_tel {
  margin: 25px 0;
}
footer .footer_contents .f_l .f_address .f_tel img {
  width: unset;
  margin-right: 10px;
}
footer .footer_contents .f_l .f_address .f_tel a {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 3px;
}
footer .footer_contents .f_l .f_address .f_tel a i {
  margin-right: 10px;
}
footer .footer_contents .f_l .f_address ul {
  margin-top: 40px;
}
footer .footer_contents .f_l .f_address ul li a {
  font-size: 13px;
}
footer .footer_contents .f_l .f_address ul li img {
  width: unset;
}
footer .footer_contents .f_l .f_address ul li:last-of-type {
  margin-top: 30px;
}
footer .footer_contents .f_r {
  width: 45%;
}
footer .footer_contents .f_r .f_menu {
  margin-bottom: 20px;
}
footer .footer_contents .f_r .f_menu li a {
  font-size: 15px;
}
footer .footer_contents a:hover {
  color: #e50050;
}
footer .copyright {
  margin-top: 50px;
  background: #343434;
}
footer .copyright p {
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding: 35px 0;
  margin: 0;
}




@media screen and (max-width:1280px) {
  footer .footer_contents .f_l {
    width: 52%;
  }
  footer .footer_contents p.small {
    font-size: 12px;
  }
  footer .footer_contents .f_l .f_address .f_tel a {
    font-size: 25px;
  }
  footer .footer_contents .f_r .f_menu li a {
    font-size: 14px;
  }
}


@media screen and (max-width:1024px) {
  footer {
    padding: 60px 0 0;
  }
  footer .footer_contents .f_l {
    width: 100%;
    margin-bottom: 50px;
  }
  footer .footer_contents .f_l .f_logo {
    width: 30%;
  }
  footer .footer_contents .f_l .f_address {
    width: 60%;
  }
  footer .footer_contents .f_r {
    width: 100%;
  }
  footer .footer_contents .f_r .f_menu {
    justify-content: center;
    gap: 15px 40px;
  }
}

@media screen and (max-width:768px) {
  footer {
    padding: 50px 0 0;
  }
  footer .footer_contents .f_l > div {
    -webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
    gap: 0 5%;
  }
  footer .footer_contents .f_l .f_address {
    width: unset;
  }
  footer .footer_contents .f_l .f_address .f_tel {
    margin: 15px 0;
  }
  footer .footer_contents .f_l .f_address ul {
    margin-top: 30px;
  }
  footer .footer_contents .f_l .f_address ul li:last-of-type {
    margin-top: 20px;
  }
  footer .footer_contents .f_l .f_address ul li img {
    width: 200px
  }
  footer .footer_contents .f_r .f_menu {
    gap: 15px 30px;
  }
  footer .footer_contents .f_r .f_menu li a {
    font-size: 13px;
  }
  footer .copyright p {
    font-size: 10px;
    padding: 20px 0;
  }
}

@media screen and (max-width:479px) {
  footer {
    padding: 30px 0 0;
  }
  footer .footer_contents .f_l > div {
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    -webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  }
  footer .footer_contents .f_l {
    margin-bottom: 30px;
  }
  footer .footer_contents .f_l .f_logo {
    width: unset;
    margin-bottom: 20px;
  }
  footer .footer_contents .f_l .f_logo img {
    width: 180px;
  }
  footer .footer_contents .f_l .f_address {
    width: 100%;
    text-align: center;
  }
  footer .footer_contents .f_l .f_address .f_tel a {
    font-size: 20px;
    letter-spacing: 1px;
  }
  footer .footer_contents .f_r .f_menu li a {
    font-size: 12px;
  }
}






/* ===================================================================
	/
	/	ページトップ
	/
	=================================================================== */
#page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 100;
}
#page-top a {
  background: #e50050;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  opacity: 0.9;
  transition: all .3s ease;
	border-radius: 50px;
}
#page-top a i {
  font-size: 20px;
  line-height: 60px;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  #page-top a {
    width: 45px;
    height: 45px;
  }
  #page-top a i {
    font-size: 16px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 768px) {
  #page-top {
    bottom: 4%;
  }
}
