@charset "UTF-8";

/* ===================================================================
	/
	/	header
	/
	=================================================================== */
header.site-header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 200;
  transition: 0.5s ease;
}
header .header_inner {
  margin-left: 3%;
}
header .h_logo img {
  width: unset;
}
header .h_logo a:hover {
  opacity: 0.7;
}
header .h_menu ul li {
  margin-bottom: 0;
  position: relative;
}
header .h_menu ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  display: block;
  text-align: center;
  line-height: 1.2;
  transition: 0.3s ease;
  padding: 25px 0;
  width: 165px;
}
header .h_menu ul li:not(.h_contact)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #dddddd;
}
header .h_menu ul li:first-of-type::before {
  display: none;
}
header .h_menu ul li a .en {
  font-size: 9px;
  color: #868686;
  transition: 0.3s ease;
}
header .h_menu ul li a:hover,
header .h_menu ul li a:hover .en {
  color: #4BA1BE;
  text-decoration: none;
  transition: 0.3s ease;
}
header .h_menu ul .h_contact a {
  color: #fff;
  background-color: #004C66;
}
header .h_menu ul .h_contact a .en {
  color: #fff;
}
header .h_menu ul .h_contact a:hover {
  color: #fff !important;
  background-color: #4BA1BE;
  transition: 0.3s ease;
}
header .h_menu ul .h_contact a:hover .en {
  color: #fff;
}


.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: 38px;
  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 10px;
  margin: 0 auto;
}

.global-nav__item {
  text-align: center;
  padding: 0 15px;
}

.global-nav__item a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  font-size: 15px;
}
.global-nav__item a .en {
  font-size: 10px;
}
.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;
}
.hamburger__line--1 {
  top: 14px;
}
.hamburger__line--2 {
  top: 23px;
}
.hamburger__line--3 {
  top: 32px;
}

.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: 25px;
}

.nav-open .hamburger__line--2 {
  width: 0;
  right: 50%;
}

.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 25px;
}

.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) {

}

@media screen and (max-width:1280px) {
  header .h_logo img {
    width: 250px;
  }
  header .h_menu ul li a {
    width: 150px;
  }
}

@media screen and (max-width:1024px) {
  header .header_inner {
    margin-left: 2%;
  }
  header .h_logo img {
    width: 200px;
  }
  header .h_menu ul li a {
    font-size: 13px;
    width: 105px;
    padding: 20px 0;
  }
  header .h_menu ul li:first-of-type a,
  header .h_menu ul li:last-of-type a {
    width: 125px;
  }
  header .h_menu ul li a .en {
    font-size: 8px;
  }
  header .h_menu ul li:not(.h_contact)::before {
    height: 35px;
  }
}

@media screen and (max-width:768px) {
  header .header_inner {
    margin-left: 3%;
    padding: 18px 0px 12px 0px;
  }
  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;
  }
  .hamburger > p {
    right: 14px;
    font-size: 9px !important;
  }
}

@media screen and (max-width:370px) {
  header .header_inner {
    margin-left: 3%;
  }
  header .h_logo img {
    width: 170px;
  }
}




/* ===================================================================
	/
	/	footer
	/
	=================================================================== */
footer {
  color: #fff;
}
footer .footer_bg {
  padding: 80px 0;
  background-image: url(../images/footer_bg.jpg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
footer .footer_contents {

}
footer .footer_company p {
  font-size: 14px;
}
footer .footer_company .name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px !important;
}
footer .footer_company a {
  color: #fff;
}
footer .footer_company a:hover {
  color: #004C66;
}
footer .footer_menu {
  margin-top: 50px;
}
footer .footer_menu > div {
  gap: 0 50px;
}
footer .footer_menu ul.f_menu li + li {
  margin-top: 15px !important;
}
footer .footer_menu ul.f_menu li a {
  font-size: 14px;
  color: #fff;
  display: block;
}
footer .footer_menu ul.f_menu li a:hover {
  color: #4BA1BE;
}
footer .footer_contact {
  width: 60%;
  text-align: center;
  padding: 0 60px;
}
footer .footer_contact .footer_contact_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px !important;
}
footer .footer_contact .footer_contact_inner {
  padding: 30px 0;
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
}
footer .footer_contact .footer_contact_inner h2 {
  font-size: 34px;
  font-family: 'franklin';
  letter-spacing: 2px;
  margin-bottom: 20px !important;
}
footer .footer_contact .btn_wrap {
  gap: 10px 40px;
  margin-top: 30px;
}
footer .footer_contact a.contact_btn {
  font-size: 20px;
  color: #004C66;
  background-color: #fff;
  text-align: center;
  border: 2px solid #004C66;
  border-radius: 50px;
  width: calc( 100% / 2 - 20px );
  font-weight: 500;
  height: 55px;
  line-height: 55px;
}
footer .footer_contact a.contact_btn.tel {
  font-size: 28px;
}
footer .footer_contact a.contact_btn i {
  margin-right: 10px;
  font-size: 18px;
  color: #4BA1BE;
  transition: 0.3s ease;
}
footer .footer_contact a.contact_btn:hover {
  color: #fff !important;
  background-color: #004C66;
  border-color: #4BA1BE;
}
footer .copyright {
  background-color: #001729;
  padding: 10px 0;
}
footer .copyright p {
  font-size: 10px;
  color: #fff;
  text-align: center;
}

.under footer {
  margin-top: 100px;
}
#info footer,
#case footer {
  margin-top: 0;
}



@media screen and (max-width:1280px) {
  footer .footer_contact {
    width: 65%;
    padding: 0 0 0 40px;
  }
}

@media screen and (max-width:1024px) {
  footer .footer_company .name {
    font-size: 18px;
  }
  footer .footer_menu ul.f_menu li a {
    font-size: 13px;
  }
  footer .footer_contact .footer_contact_title {
    font-size: 18px;
  }
  footer .footer_contact .footer_contact_inner {
    padding: 20px 0;
  }
  footer .footer_contact .footer_contact_inner h2 {
    font-size: 28px;
  }
  footer .footer_contact a.contact_btn {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
  }
  footer .footer_contact a.contact_btn.tel {
    font-size: 20px;
  }
  footer .footer_contact a.contact_btn i {
    font-size: 16px;
  }
}

@media screen and (max-width:900px) {
  footer .footer_bg {
    background-position: top right -150px;
  }
  footer .footer_wrap {
    -webkit-box-orient: vertical;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: column-reverse;
  	flex-direction: column-reverse;
  }
  footer .footer_contents {
    width: 100%;
    margin: 0 auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
  	-ms-flex-pack: justify;
  	justify-content: space-between;
  }
  footer .footer_menu {
    margin-top: 0;
  }
  footer .footer_contact {
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 50px;
  }
}

@media screen and (max-width:768px) {
  footer .footer_bg {
    padding: 60px 0;
  }
  footer .footer_company .name {
    font-size: 16px;
  }
  footer .footer_menu ul.f_menu li + li {
    margin-top: 10px !important;
  }
  footer .footer_menu ul.f_menu li a {
    font-size: 12px;
  }
  footer .footer_contact {
    padding: 0 20px;
  }
  footer .footer_contact .footer_contact_title {
    font-size: 16px;
  }
  footer .footer_contact .btn_wrap {
    gap: 10px 20px;
  }
  footer .footer_contact a.contact_btn {
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    width: calc( 100% / 2 - 10px );
  }
  footer .footer_contact a.contact_btn.tel {
    font-size: 20px;
  }
  footer .footer_contact a.contact_btn i {
    font-size: 14px;
  }

  .under footer {
    margin-top: 80px;
  }
}

@media screen and (max-width:600px) {
  footer .footer_contents {
    text-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footer_contents .footer_company {
    width: 100%;
  }
  footer .footer_menu {
    margin-top: 30px;
  }
  footer .footer_contents .footer_menu > div {
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  }
  footer .footer_contents .footer_menu .f_menu {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
    gap: 0 50px;
    width: 100%;
  }
  footer .footer_contents .footer_menu .f_menu:first-of-type {
    margin-bottom: 10px;
  }
  footer .footer_company .name {
    font-size: 15px;
  }
  footer .footer_menu ul.f_menu li + li {
    margin-top: 0 !important;
  }
  footer .footer_contact .btn_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  footer .footer_contact a.contact_btn {
    width: 80%;
    margin: 0 auto;
    height: 55px;
    line-height: 55px;
  }
}


@media screen and (max-width:479px) {
  footer .footer_bg {
    padding: 40px 0;
    background-position: top right -250px;
  }
  footer .footer_company p {
    font-size: 13px;
  }
  footer .footer_contents .footer_menu .f_menu {
    gap: 0 25px;
  }
  footer .footer_contents .footer_menu .f_menu.f_menu02 {
    gap: 0 20px;
  }
  footer .footer_menu ul.f_menu li a {
    font-size: 11px;
  }
  footer .footer_contact {
    padding: 0;
    margin: 0 auto 30px;
  }
  footer .footer_contact .footer_contact_title {
    font-size: 15px;
  }
  footer .footer_contact .footer_contact_inner h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  footer .footer_contact a.contact_btn {
    width: 90%;
  }
  footer .copyright p {
    font-size: 9px;
  }

  .under footer {
    margin-top: 50px;
  }
}

@media screen and (max-width:370px) {
  footer .copyright p {
    font-size: 8px;
  }
}




/* ===================================================================
	/
	/	ページトップ
	/
	=================================================================== */
#page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 100;
}
#page-top a {
  background: #004C66;
  text-decoration: none;
  color: #fff !important;
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  opacity: 0.9;72
  transition: all .3s ease;
  border: 2px solid #fff;
  border-radius: 100px;
}
#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%;
  }
}
