@charset "UTF-8";
/*HEADER*/
/*******************************************************************/
#header {
  left: 0;
  position: fixed;
  top: 0px;
  z-index: 9000;
  height: 86px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    top: 0;
    margin: 0;
    box-shadow: none;
    justify-content: flex-start;
    height: 72px;
    background: #fff;
    z-index: 9999;
    padding-bottom: 0;
    border-bottom: none;
  }
}
#header .mw {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 86px;
}
@media screen and (max-width: 768px) {
  #header .mw {
    padding: 0 20px;
  }
}
#header .logo-wrapper {
  width: 200px;
  padding: 0;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  #header .logo-wrapper {
    padding: 0;
    width: 200px;
  }
}
#header .logo-wrapper a {
  color: #fff;
}
#header .logo-wrapper img {
  padding: 0px;
}
@media screen and (max-width: 768px) {
  #header .logo-wrapper img {
    padding: 0px;
  }
}
#header #nav {
  width: auto;
}
@media screen and (max-width: 1000px) {
  #header #nav {
    pointer-events: none;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header #nav ul {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
    padding: 20px 20px 30px;
    background: #fff;
    border-radius: 10px;
  }
}
#header #nav ul li {
  display: inline-block;
  text-align: center;
  border-right: solid 1px #666;
  padding-right: 8px;
  margin-right: 8px;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  #header #nav ul li {
    padding: 0px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}
#header #nav ul li:last-child {
  width: 120px;
  background: #014a88;
  border-radius: 50px;
  padding: 10px;
  margin: 0;
}
#header #nav ul li:last-child a {
  color: #fff !important;
}
#header #nav ul li a {
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 2.5px;
  font-family: "Lexend Deca", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #header #nav ul li a {
    color: #000;
    height: auto;
    font-size: 1.4rem;
    line-height: 1.2;
    width: 100%;
    justify-content: flex-start;
  }
}
#header #nav ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  #header #nav ul li a:after {
    display: none;
  }
}
#header #nav ul li a span {
  font-size: 1.2rem;
  display: block;
  text-align: center;
  padding-top: 8px;
}
#header.fixed {
  background: #fff;
  top: 0;
}
#header.fixed a {
  color: #333 !important;
}
@media screen and (max-width: 768px) {
  #header.fixed a {
    color: #fff !important;
  }
}
#header.fixed .logo-wrapper a {
  color: #333;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  display: none;
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 50%;
  height: 100vh; /*ナビの高さ*/
  background: #fff;
  /*動き*/
  transition: all 0.6s;
  /*アクティブクラスがついたら位置を0に*/
}
@media screen and (max-width: 1000px) {
  #g-nav {
    width: 100%;
    display: block;
  }
}
#g-nav.panelactive {
  right: 0;
  /*ナビゲーションの縦スクロール*/
}
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
  }
}
#g-nav ul {
  padding: 120px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#g-nav ul li {
  padding: 0 0 20px;
  width: calc(50% - 10px);
}
#g-nav ul li a {
  color: #fff;
  font-weight: 600;
  display: block;
  background: #014a88;
  padding: 20px 20px;
  font-size: 1.2rem;
  position: relative;
  font-family: "Lexend Deca", "Noto Sans JP", sans-serif;
  border-radius: 4px;
  letter-spacing: 2px;
}
#g-nav ul li a:after {
  content: "〉";
  right: 10px;
  position: absolute;
  color: #fff;
}
#g-nav ul li a i {
  font-size: 1.4rem;
  opacity: 0.8;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 18px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}
@media screen and (max-width: 1000px) {
  .openbtn1 {
    top: 12px;
    display: block;
  }
}
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 65%;
}
@media screen and (max-width: 1000px) {
  .openbtn1 span {
    background-color: #333;
  }
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background-color: #333 !important;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background-color: #333 !important;
}

/*============================
#contactform
============================*/
article#contactform img.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
article#contactform header {
  width: auto;
}
@media screen and (max-width: 768px) {
  article#contactform header {
    width: auto;
  }
}
article#contactform header h2 {
  font-size: 3.6rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  article#contactform header h2 {
    width: auto;
  }
}
article#contactform section {
  padding-top: 0;
}
article#contactform section div.wrap {
  width: auto;
}
@media screen and (max-width: 768px) {
  article#contactform section div.wrap {
    width: auto;
  }
}
article#contactform section div.wrap div.text__wrap {
  width: auto;
}
@media screen and (max-width: 768px) {
  article#contactform section div.wrap div.text__wrap {
    width: auto;
  }
}
article#contactform section div.wrap div.text__wrap div.btn__wrap {
  width: auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  article#contactform section div.wrap div.text__wrap div.btn__wrap {
    width: auto;
  }
}
article#contactform section div.wrap div.text__wrap div.btn__wrap a {
  background: #ffeb3b;
  color: #014a88;
  font-weight: 600;
  padding: 15px 0;
  border-radius: 50px;
  width: 240px;
  display: block;
  margin: auto;
  text-align: center;
}
article#contactform section div.wrap div.text__wrap div.info {
  width: auto;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  article#contactform section div.wrap div.text__wrap div.info {
    width: auto;
  }
}
article#contactform section div.wrap div.text__wrap div.info a.tel {
  width: auto;
}
@media screen and (max-width: 768px) {
  article#contactform section div.wrap div.text__wrap div.info a.tel {
    width: auto;
  }
}
article#contactform section div.wrap div.text__wrap div.info small {
  width: auto;
  display: block;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  article#contactform section div.wrap div.text__wrap div.info small {
    width: auto;
  }
}

/*FOOTER*/
/*******************************************************************/
/*============================
#footer
============================*/
footer#footer {
  width: auto;
  background: #014a88;
  padding: 40px 0 20px;
  padding: 20px 0 20px;
}
@media screen and (max-width: 768px) {
  footer#footer {
    width: auto;
  }
}
footer#footer section div.content {
  display: none;
  width: auto;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content {
    width: auto;
  }
}
footer#footer section div.content ul {
  width: auto;
  display: flex;
  padding: 40px 0 80px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul {
    flex-wrap: wrap;
    padding: 40px 20px 80px;
  }
}
footer#footer section div.content ul li {
  width: auto;
  padding: 0 10px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content ul li {
    width: 50%;
    font-size: 1.2rem;
    padding-bottom: 20px;
  }
}
footer#footer section div.content ul li a {
  font-family: "Lexend Deca", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
footer#footer section div.copyright {
  width: auto;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  footer#footer section div.copyright {
    width: auto;
  }
}/*# sourceMappingURL=main.css.map */