@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 1;
}
.none {
  display: none;
}
a {
  text-decoration: none;
}
.sp-br {
  display: none;
}
@media(max-width:799px) {
  .sp-br {
    display: inline;
  }
}
.header {
  background-color: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 10px 0;
}
.header.is-animation {
  padding: 15px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*max-width: 1200px;*/
  margin: auto;
}
.header-logo {
  padding-left: 10px;
}
.header-logo img {
  width: 179px;
  height: auto;
  padding: 15px;
}
.header-nav {
  padding-right: 10px;
}
.header-nav ul {
  display: flex;
  justify-content: start;
  margin: auto;
  padding-left: 30px;
  height: 100%;
}
.header-nav ul li {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px;
  position: relative;
}
.header-nav ul li:last-child {
  padding-top: 10px;
}
.header-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: #333;
  font-family: adobe-handwriting-frank, sans-serif;
}
.header-nav ul li img {
  width: 30px;
  height: auto;
  align-items: center;
}
.burger-trg {
  display: none;
}
.overlay {
  display: none;
}
.header-nav ul li:nth-child(6) {
  display: none;
}
.header-nav ul li:nth-child(7) {
  display: none;
}
@media screen and (max-width:990px) {
  .header-logo {
  padding-left: 10px;
}
  .header-logo img {
    width: 150px;
  }
  .header-nav {
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    background-color: #a2c2b2;
    width: 70%;
    position: absolute;
    top: 0;
    right: -120%;
    text-align: left;
    height: 100vh;
    overflow: scroll;
    padding-bottom: 70px;
    padding-top: 80px;
    z-index: 999;
    padding-left: 30px;
  }
  .header-nav.show {
    opacity: 1;
    visibility: visible;
    z-index: 999;
    right: 0;
    transition: all 0.6s;
  }
  .header-nav ul {
    margin: auto;
    padding-left: 0;
    display: block;
    max-height: 100vh;
    width: 100%;
    overflow: hidden;
  }
  .header-nav ul li {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .header-nav ul li span {
    color: #fff;
  }
  .header-nav ul li a {
    height: auto;
    display: block;
    width: 100%;
    font-size: 2.4rem;
    line-height: 1.2;
    padding: 15px 0;
    font-family: adobe-handwriting-frank, sans-serif;
  }
  .header-nav ul li img {
    width: 30px;
    height: auto;
    align-items: center;
  }
  .header-nav ul li:nth-child(6) {
    display: block;
  }
  .header-nav ul li:nth-child(7) {
    display: block;
  }
  .header-nav ul li:nth-child(6) a {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 1.8rem;
  }
  .header-nav ul li:nth-child(7) a {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 1.8rem;
  }
  .burger-trg {
    z-index: 9999;
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: 40px;
    width: 80px;
    height: 80px;
    padding-top: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    right: 30px;
    bottom: 30px;
    padding-right: 30px;
    
  }
  .burger-ic {
    display: block;
    position: absolute;
  }
  .burger-ic :nth-child(1) {
    top: 12px;
    left: 5px;
    content: "";
    background-color: #333;
    width: 30px;
    height: 2px;
    position: absolute;
    transform: translate(0, -4px);
    transition: all .2s;
  }
  .burger-ic :nth-child(2) {
    top: 12px;
    left: 5px;
    content: "";
    background-color: #333;
    width: 30px;
    height: 2px;
    position: absolute;
    transform: translate(0, 4px);
    transition: all .2s;
  }
  .burger-trg.show .burger-ic :nth-child(1) {
    transform: translate(0, 0) rotate(-45deg);
  }
  .burger-trg.show .burger-ic :nth-child(2) {
    transform: translate(0, 0) rotate(45deg);
  }
  .burger-trg {
    display: flex;
  }
  .overlay {
    display: block;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s;
  }
  .overlay.show {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width:768px) {
  .header-logo img {
    width: 100px;
  }
}
.footer {
  background: url("../images/波.png") left top repeat-x;
  background-size: 300px;
  color: #a2c2b2;
  background-color: #FFF9EC;
  padding: 70px 0 20px 0;
  position: relative;
}
.footer-name {
  max-width: 1040px;
  justify-content: center;
  display: flex;
  margin: 0 auto;
  position: relative;
}
.footer-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  align-items: center;
}
.footer-logo img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.footer-sns {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-top: 20px;
}
.footer-sns img {
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 10px;
}
.footer-sns li:first-child {
  padding-right: 30px;
}
.footer p {
  padding-top: 30px;
  color: #fff;
  text-align: center;
}