@charset "utf-8";

/*----------------------------------------------------------------------
* reset
--------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1;
}
img{
  vertical-align: bottom;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*----------------------------------------------------------------------
* base
--------------------------------------------------------------------- */
html {
  font-size: 10px;
}
@media (max-width: 767px) {
  html {
    font-size: 1.33vw;
  }
}

body {
  font-family: "noto sans jp", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333333;
  font-feature-settings: "palt";
  text-align: justify;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.4s;
}
img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3rem;
    min-width: 100%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  :hover {
    opacity: 1 !important;
  }
}


/* all-wrapper
---------------------------------------------- */
#all-wrapper {
  background: #f2f2f2;
  min-width: 1100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #all-wrapper {
    min-width: auto;
  }
}


/* header
---------------------------------------------- */
header {
  position: relative;
  min-height: 100px;
}
.header-logo {
  position: absolute;
  top: 26px;
  left: 30px;
  width: 260px;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  header {
    position: relative;
    min-height: 11rem;
  }
  .header-logo {
    position: absolute;
    top: 2.5rem;
    left: 3.8rem;
    width: 31.2rem;
  }
}


/* menu
---------------------------------------------- */
.btn-menu {
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
  width: 100px;
  height: 100px;
  font-size: 0;
  cursor: pointer;
}
.btn-menu.open {
  background: #052765;
}
@media screen and (max-width: 767px) {
  .btn-menu {
    width: 11rem;
    height: 11rem;
  }
}

.btn-menu .menu-line,
.btn-menu .menu-line span {
  display: inline-block;
}
.btn-menu .menu-line {
  position: relative;
  display: block;
  width: 30px;
  height: 25px;
}
.btn-menu .menu-line span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.btn-menu.open .menu-line span {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .btn-menu .menu-line {
    width: 4.2rem;
    height: 3.6rem;
  }
}

.btn-menu .menu-line span:nth-of-type(1) {
  top: 0;
}
.btn-menu .menu-line span:nth-of-type(2) {
  top: 12px;
  transition: top .1s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19);
}
.btn-menu .menu-line span:nth-of-type(3) {
  top: 24px;
  transition: top .2s cubic-bezier(.33333, .66667, .66667, 1) .2s, transform .13s cubic-bezier(.55, .055, .675, .19);
}
.btn-menu.open .menu-line span:nth-of-type(1) {
  transition-delay: .22s;
  background-color: transparent !important;
}
.btn-menu.open .menu-line span:nth-of-type(2) {
  top: 0;
  transition: top .1s cubic-bezier(.33333, 0, .66667, .33333) .15s, transform .13s cubic-bezier(.215, .61, .355, 1) .22s;
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.btn-menu.open .menu-line span:nth-of-type(3) {
  top: 0;
  transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), transform .13s cubic-bezier(.215, .61, .355, 1) .22s;
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .btn-menu .menu-line span:nth-of-type(2) {
    top: 1.7rem;
  }
  .btn-menu .menu-line span:nth-of-type(3) {
    top: 3.4rem;
  }
}

.drawer-menu {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background-color: #052765;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translate(100%);
  transition: all 0.4s;
  visibility: hidden;
}
.drawer-menu::-webkit-scrollbar {
  display: none;
}
.drawer-menu.open {
  transform: translate(0);
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .drawer-menu {
    width: 100%;
  }
}

.menu-wrapper {
  padding: 100px 60px;
}
@media screen and (max-width: 767px) {
  .menu-wrapper {
    width: 100%;
    padding: 12rem 8rem;
  }
}

.menu-content ul li {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px;
}
.menu-content ul li ul li {
  font-size: 18px;
  font-weight: 400;
  margin: 15px 0 0;
  padding-left: 1em;
}
.menu-content ul li a {
  position: relative;
  display: inline-block;
}
.menu-content ul li a::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background: #052765;
  transition: 0.4s;
}
.menu-content ul li.active a::after {
  left: auto;
  right: 0;
  width: 0;
}
.menu-content ul li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .menu-content ul li {
    font-size: 3.2rem;
    margin: 0 0 5rem;
  }
  .menu-content ul li ul li {
    font-size: 2.8rem;
    margin: 2rem 0 0;
    padding-left: 1em;
  }
  .menu-content ul li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2em;
    background: #052765;
    transition: 0.4s 0.5s;
  }
  .menu-content ul li.active::after {
    left: auto;
    right: 0;
    width: 0;
  }
  .menu-content ul li a:hover {
    opacity: 0.6;
  }
}

/* btn-contact */
.btn-contact {
  position: fixed;
  z-index: 9000;
  top: 0;
  right: 100px;
  width: 170px;
}
.btn-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #052765;
  border: 2px solid #052765;
  height: 100px;
  font-size: 16px;
  letter-spacing: 0.1rem;
  transition: 0.4s;
}
.btn-contact a:hover {
  color: #052765;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .btn-contact {
    right: 11rem;
    width: 18rem;
  }
  .btn-contact a{
    font-size: 11px;
    height: 11rem;
    font-size: 2.2rem;
  }
}

/* main lower
---------------------------------------------- */
.main-content {
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .main-content {
    line-height: 1.8;
  }
}


/* contact-banner
---------------------------------------------- */
.contact-banner {
  background: #052765;
  padding: 50px 0;
  color: #fff;
}
.contact-banner-inner {
  width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-banner {
    padding: 8rem 4rem;
  }
  .contact-banner-inner {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.contact-banner-txt h2 {
  margin: 0 0 30px;
}
.contact-banner-txt h2 .en {
  display: block;
  font-family: "roboto", sans-serif;
  font-weight: 500;
  font-size: 52px;
  letter-spacing: 0.1em;
  line-height: 1.1;
  padding: 0 0 10px;
}
.contact-banner-txt h2 .jp {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .contact-banner-txt h2 {
    margin: 0 0 4rem;
  }
  .contact-banner-txt h2 .en {
    font-size: 8rem;
    padding: 0 0 2rem;
  }
  .contact-banner-txt h2 .jp {
    font-size: 3.2rem;
  }
}

.contact-banner-btn {
  width: 310px;
}
.contact-banner-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  background: #052765;
  border: 1px solid #fff;
  border-radius: 100vh;
  transition: 0.4s;
}
.contact-banner-btn a:hover{
  background: #fff;
  color: #052765;
}
@media screen and (max-width: 767px) {
  .contact-banner-btn {
    width: 100%;
    margin: 6rem 0 0;
  }
  .contact-banner-btn a {
    height: 10rem;
  }
}


/* footer
---------------------------------------------- */
footer {
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 40px;
}
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem 5rem;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 90px 0 20px;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    display: block;
    padding: 12rem 0 4rem;
  }
}

.footer-address {
  font-size: 15px;
  line-height: 1.7;
  font-style: normal;
}
.footer-logo {
  width: 260px;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .footer-address {
    font-size: 2.8rem;
    line-height: 1.85;
  }
  .footer-logo {
    width: 32rem;
    margin: 0 0 5rem;
  }
}

.footer-nav {
  width: 600px;
}
.footer-nav-content {
  display: flex;
  flex-wrap: wrap;
}
.footer-nav-content > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 700;
  padding: 0 60px 0 0;
  margin: 0 0 30px;
}
.footer-nav-content > li.pr0{
  padding-right: 0;
}
.footer-nav-content > li.w100{
  width: 100%;
}
.footer-nav-sub{
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
}
.footer-nav-sub li {
  font-size: 13px;
  font-weight: 400;
}
.footer-nav-sub li::after {
  content: '　/　';
}
.footer-nav-sub li:last-child:after {
  content: none;
}
.footer-nav a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .footer-nav {
    width: 100%;
    margin: 7rem 0 0;
  }
  .footer-nav-content {
    display: block;
  }
  .footer-nav-content > li {
    display: block;
    font-size: 2.8rem;
    padding: 0;
    margin: 0 0 4rem;
  }
  .footer-nav-sub {
    padding: 1rem 0 0.5rem;
  }
  .footer-nav-sub li{
    font-size: 2.2rem;
  }
}

.copyright {
  font-family: "roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 2.2rem;
  }
}


/* pagetop
---------------------------------------------- */
.pagetop {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 0;
  bottom: 0;
  width: 60px;
}
.btn-menu a:hover {
  opacity: 0.6;
}
@media screen and (max-width:767px) {
  .pagetop {
    width: 11rem;
  }
}