@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "Noto Sans JP";
  src: url("./NotoSansJP-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("./NotoSansJP-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("./NotoSansJP-Black.otf");
  font-weight: 900;
}
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.8em;
  line-height: 2.7rem;
  animation: bodyfadeIn 2s ease 0s 1 normal forwards;
}

@keyframes bodyfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  color: #333;
  transition: all 0.2s ease;
}
a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .container {
    max-width: 850px;
  }
}

.container2 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .container2 {
    max-width: 850px;
  }
}

.fbicon {
  height: 30px;
}

.sp {
  display: none;
}

@media (max-width: 960px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}
.lum-lightbox {
  z-index: 1000;
}

.lum-lightbox-inner img.lum-img {
  max-width: 100%;
}

#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 8px;
  bottom: 8px;
  opacity: 0.7;
  background-color: #005E7B;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "icomoon";
  content: "\e903";
  font-size: 40px;
  color: #fff;
  position: absolute;
  width: 40px;
  height: 30px;
  top: -20px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  vertical-align: bottom;
}

#page_top a::after {
  content: "TOP";
  font-size: 13px;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #fff;
}

/*-------------------------------------------
Header
-------------------------------------------*/
#header {
  height: 90px;
  background-color: #fff;
  /*スクロールで高さを小さく、上部固定に*/
}
#header .header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#header .header-inner .logo {
  width: 220px;
}
#header .header-inner ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}
#header .header-inner ul li a {
  display: inline-block;
  position: relative;
  line-height: 90px;
  font-weight: 500;
}
#header .header-inner ul li a:hover {
  color: #005EAD;
  opacity: 1;
}
#header.HeightMin {
  position: fixed;
  z-index: 998;
  height: 80px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 960px) {
  #header {
    height: 60px;
  }
  #header.HeightMin {
    height: 60px;
  }
  #header .header-inner .logo {
    width: 180px;
  }
  #header .header-inner #open {
    color: #005EAD;
    font-size: 4rem;
    cursor: pointer;
    vertical-align: top;
  }
  #header .header-inner #open.hide {
    display: none;
  }
  #header .header-inner #close {
    position: absolute;
    z-index: 1000;
    top: 10px;
    right: 13px;
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
  }
  #header .header-inner .overlay {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: #005EAD;
    padding: 56px;
    width: 60vw;
    transform: translatex(100vw);
    pointer-events: none;
    font-size: 1.8rem;
    transition: transform 0.4s;
    opacity: 0.95;
  }
  #header .header-inner .overlay ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  #header .header-inner .overlay ul li a {
    line-height: 1.6rem;
    color: #fff;
    font-weight: 400;
  }
  #header .header-inner .overlay ul li a.contact-btn {
    background-color: inherit;
    color: inherit;
    padding: 0;
  }
  #header .header-inner .overlay.show {
    transform: translatex(0);
    pointer-events: auto;
  }
  #header .header-inner .overlay-outside {
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    position: fixed;
    visibility: hidden;
    z-index: 997;
  }
  #header .header-inner .overlay-outside.show {
    visibility: visible;
  }
}
@media (max-width: 520px) {
  #header .header-inner .overlay {
    width: 90%;
  }
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  background-color: #005EAD;
  padding-top: 60px;
  color: #fff;
}
#footer a {
  color: #fff;
}
#footer .footer-flex {
  display: flex;
  justify-content: space-between;
}
#footer .footer-flex .f-info .footer-logo {
  width: 200px;
  margin-left: 16px;
  vertical-align: text-bottom;
}
#footer .footer-flex .f-info a {
  display: inline-block;
  margin-bottom: 16px;
}
#footer .footer-flex .f-menu ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-end;
  height: 160px;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
#footer .footer-flex .f-menu ul li {
  height: 40px;
}
#footer .copyright {
  padding: 40px 0 8px;
  text-align: center;
}

/*-------------------------------------------
footer sp
-------------------------------------------*/
@media (max-width: 520px) {
  #footer {
    padding-top: 30px;
  }
  #footer .footer-flex {
    justify-content: center;
  }
  #footer .footer-flex .f-info .footer-logo {
    width: 180px;
  }
  #footer .footer-flex .f-info p {
    font-size: 16px;
  }
  #footer .spfb {
    display: block;
    padding: 10px 0 8px;
    text-align: center;
  }
  #footer .copyright {
    padding: 0 0 8px;
  }
}/*# sourceMappingURL=common.css.map */