@charset "UTF-8";
body {
  font-size: 18px;
  line-height: 2em;
  color: #312512;
  font-family: "Zen Maru Gothic", serif;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
a {
  color: #008fc3;
}
a:hover {
  text-decoration: underline;
}

.mb30 {
  margin-bottom: 30px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb10 {
  margin-bottom: 10px;
}

.basic-li {
  margin: 0 auto;
  display: inline-block;
}

.txt-s {
  font-size: 0.8em;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.tac {
  text-align: center;
}

@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.btn {
  border-radius: 60px;
  font-size: 1.2em;
  font-weight: bold;
  padding: 25px 15px;
  width: 88%;
  max-width: 400px;
  background: #05af29;
  color: #fff;
  display: block;
  margin: 15px auto;
  text-align: center;
  line-height: 100%;
  box-shadow: 0px 1px 6px #999;
  overflow: hidden;
  position: relative;
}
.btn:after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn span {
  font-size: 0.8em;
  padding-left: 10px;
}

header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  border-top: 8px solid #8df383;
  background: #fff;
  transition: all 0.5s 0s ease; /*transitionの記述を追加*/
}
header.fixed {
  box-shadow: 0px 0px 4px #aaa;
}
header .header-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  justify-content: space-between;
  position: relative;
  z-index: 9998;
}
header .header-wrap h1 {
  text-align: left;
  line-height: 100%;
  position: relative;
  z-index: 9999;
}
header .header-wrap h1 img {
  height: 25px;
  width: auto;
}
header .header-wrap nav {
  height: 35px;
  line-height: 100%;
  padding-left: 15px;
}
header .header-wrap nav ul {
  display: flex;
}
header .header-wrap nav ul li {
  margin: 0 0 0 8px;
}
header .header-wrap nav ul li img {
  height: 35px;
  width: auto;
}
header .header-wrap nav ul li a:hover {
  opacity: 0.8;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.kv {
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: #fff;
}
.kv img {
  animation-name: fadein;
  animation-duration: 2s;
}

section {
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  z-index: 2;
}
section:nth-child(even) {
  background: #e7ffd1;
  z-index: 3;
}
section .sec-inner {
  position: relative;
  z-index: 3;
  padding: 0 25px 40px;
}
section .sec-inner .txt-area div.sec-img {
  margin: 0 auto 25px;
  width: 90%;
}
section .sec-inner .txt-area div.sec-img img {
  border-radius: 20px;
  box-shadow: 0px 1px 4px #ccc;
}
section .sec-inner .txt-area div.sec-img p.caption {
  font-size: 0.9em;
  text-align: center;
  line-height: 100%;
  margin-top: 10px;
}
section .marker {
  background: linear-gradient(transparent 80%, #fff32f 0%);
  background-position: 0;
  background-size: 0;
  background-repeat: no-repeat;
  transition: background 3s;
  font-weight: bold;
}
section .marker.active {
  background-size: 100%;
}
section h2 {
  font-size: 1.3em;
  text-align: center;
  position: relative;
  line-height: 1.8em;
  margin: 0 0 35px;
  padding: 40px 0px 25px;
  z-index: 3;
}
section h2:after {
  content: "";
  z-index: 2;
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 5px;
  background: #05af29;
  left: 50%;
  margin-left: -35px;
}
section p {
  margin-bottom: 1.2em;
}
section#about .sec-inner {
  background-image: url(../img/deco.png), url(../img/deco.png);
  background-repeat: no-repeat;
  background-position: top 30px right -140px, bottom -100px left -100px;
  background-size: 250px 251px;
}
section#about .sec-inner .img-area {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
section#about .sec-inner .img-area div {
  flex-shrink: 0;
  width: 48%;
}
section#about .sec-inner .img-area div img {
  border-radius: 20px;
  box-shadow: 0px 1px 4px #ccc;
}
section#onayami li {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #7d6f61;
}
section#onayami li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
section#onayami li div {
  padding-right: 15px;
  width: 140px;
  padding-top: 8px;
  flex-shrink: 0;
  box-sizing: border-box;
}
section#onayami li div img {
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 1px 4px #ccc;
}
section#onayami li p {
  display: block;
  margin-bottom: 0;
  font-size: 16px;
}
section#onayami li p span {
  font-size: 1.2em;
  margin-bottom: 5px;
}
section#commu .sec-inner {
  padding-bottom: 110px;
}
section#commu .sec-inner:after {
  content: "";
  width: 150px;
  height: 207px;
  overflow: hidden;
  position: absolute;
  bottom: 10px;
  display: block;
  right: 10px;
  background: url(../img/deco_zoom.webp) no-repeat bottom;
  background-size: 100%;
}
section#aisatu h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
}
section#aisatu h3 span {
  font-size: 0.8em;
  display: block;
}
section#aisatu .sec-inner {
  background-image: url(../img/deco.png), url(../img/deco.png), url(../img/deco.png), url(../img/deco.png);
  background-repeat: no-repeat;
  background-position: top 400px right -130px, top -140px left -100px, bottom 750px left -150px, bottom 50px right -130px;
  background-size: 250px 251px;
}
section#aisatu .sec-inner p, section#aisatu .sec-inner img {
  position: relative;
  z-index: 2;
}
section#aisatu .txt-area div.face {
  width: 70%;
  max-width: 280px;
}
section#aisatu .txt-area div.face img {
  border-radius: 50%;
}
section#course article {
  border-radius: 20px;
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 20px;
  border: #e7dfdd 1px solid;
  box-shadow: 0px 1px 4px #ccc;
}
section#course article h4 {
  font-size: 1.1em;
  border-bottom: 1px dotted #533f2b;
  padding: 0 5px 15px;
  margin-bottom: 15px;
  line-height: 100%;
  font-weight: bold;
}
section#course article p {
  padding: 0 5px;
  margin: 0;
}
section#course article p span {
  font-size: 0.9em;
  line-height: 0.9em;
}
section#course > div {
  padding-bottom: 70px;
}
section#course > div:after {
  content: "";
  width: 150px;
  overflow: hidden;
  height: 104px;
  position: absolute;
  bottom: 0px;
  display: block;
  right: 20px;
  background: url(../img/deco_course.webp) no-repeat bottom;
  background-size: 100%;
  z-index: 3;
}
section#osusume .sec-inner {
  background-image: url(../img/deco.png), url(../img/deco.png);
  background-repeat: no-repeat;
  background-position: top -120px right -100px, bottom 180px left -140px;
  background-size: 250px 251px;
}
section#osusume .sec-inner::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 119px;
  background: url("../img/deco_osusume.webp") left no-repeat;
  background-size: auto 100%;
  bottom: 0;
  right: 0;
}
section#osusume .sec-inner .osusume {
  background: #ffd3e9;
  border-radius: 20px;
  padding: 20px 15px;
  margin: 35px 10px 0;
  box-shadow: 0px 1px 4px #ccc;
  position: relative;
}
section#osusume .sec-inner .osusume h3 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 100%;
}
section#osusume .sec-inner .osusume ul {
  background: #fff;
  border-radius: 10px;
  padding: 10px 15px;
}
section#osusume .sec-inner .osusume ul li {
  padding-bottom: 10px;
  padding-left: 36px;
  margin-bottom: 10px;
  border-bottom: dashed 1px #533f2b;
  background: url("../img/ico_check.png") no-repeat left 5px top 10px;
  background-size: 20px;
}
section#osusume .sec-inner .osusume ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  padding-right: 10px;
}
section#contact .sec-inner {
  padding-bottom: 140px;
  background-image: url(../img/deco.png);
  background-repeat: no-repeat;
  background-position: top -110px right -100px;
  background-size: 250px 251px;
}
section#contact .sec-inner:before {
  content: "";
  width: 200px;
  height: 122px;
  position: absolute;
  bottom: 0px;
  display: block;
  left: 15px;
  background: url(../img/deco_contact.webp) no-repeat bottom;
  background-size: 100%;
}
section#contact .sec-inner h3 {
  height: auto;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}
section#contact .sec-inner h3 span {
  position: relative;
  padding: 0 30px;
  display: inline;
}
section#contact .sec-inner h3 span:before {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 24px;
  height: 35px;
  background: url(../img/btn_deco_l.png);
  background-size: 100%;
  display: block;
}
section#contact .sec-inner h3 span:after {
  position: absolute;
  content: "";
  right: 0;
  top: 3px;
  width: 24px;
  height: 35px;
  background: url(../img/btn_deco_r.png);
  background-size: 100%;
  display: block;
}
section#contact .sec-inner .btn {
  margin-bottom: 25px;
}
section#contact .sec-inner .txt-contact {
  margin-bottom: 5px;
  font-weight: bold;
  text-align: center;
}
section#contact .sec-inner .txt-contact a {
  padding-left: 34px;
  background: url(../img/ico_phone.png) no-repeat 8px 5px;
  background-size: auto 18px;
}
section#contact .sec-inner .txt-contact:last-child a {
  background: url(../img/ico_mail.png) no-repeat 0 5px;
  background-size: auto 18px;
}

footer {
  background: #312512;
  padding: 15px;
  color: #fff;
  text-align: center;
  z-index: 5;
  position: relative;
}
footer p {
  font-size: 0.9em;
  margin-bottom: 0;
}
footer .up-btn {
  box-shadow: 0px 1px 6px #999;
  position: fixed;
  right: 10px;
  background: #502903;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 9999;
}
footer .up-btn img {
  position: absolute;
  width: 24px;
  height: 16px;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -12px;
  transition: all 0.5s 0s ease; /*transitionの記述を追加*/
}
footer .up-btn:hover img {
  margin-top: -14px;
}

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
  .sp-none {
    display: none !important;
  }
  .sp-left {
    text-align: left;
  }
  .introduction h3 img {
    max-height: 22px;
  }
  header h2 img {
    height: 42px;
  }
}
@media screen and (min-width: 769px) {
  .pc-none {
    display: none !important;
  }
  body {
    position: relative;
  }
  .kv {
    overflow: hidden;
    margin: 0 auto;
    padding: 108px 25px 0;
    text-align: center;
  }
  .kv:before {
    content: "";
    width: 307px;
    height: 308px;
    background-image: url(../img/deco.png);
    background-size: 100% auto;
    position: absolute;
    z-index: 2;
    top: 205px;
    right: 50%;
    margin-right: -860px;
  }
  .kv:after {
    content: "";
    width: 307px;
    height: 308px;
    background-image: url(../img/deco.png);
    background-size: 100% auto;
    position: absolute;
    z-index: 2;
    bottom: 25px;
    left: 50%;
    margin-left: -790px;
  }
  .kv div {
    max-width: 1280px;
    text-align: center;
    margin: 0 auto;
  }
  .kv div img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
  }
  .kv .btn {
    margin-top: 30px;
  }
  .btn {
    width: 400px;
    font-size: 1.4em;
  }
  section {
    overflow: hidden;
  }
  section h2 {
    font-size: 1.5em;
  }
  section .sec-inner {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
  }
  section .sec-inner .txt-area {
    display: flex;
    margin-bottom: 0;
    flex-direction: row-reverse;
    z-index: 2;
    position: relative;
  }
  section .sec-inner .txt-area div.sec-img {
    width: 350px;
    padding: 0 0 0 20px;
    flex-shrink: 0;
  }
  section .sec-inner .txt-area div.sec-img img {
    width: 100%;
  }
  section .sec-inner .txt-area.left {
    display: flex;
    flex-direction: row;
  }
  section .sec-inner .txt-area.left div.sec-img {
    padding: 0 20px 0 0;
  }
  section#about .sec-inner {
    background: none;
  }
  section#about .sec-inner:before {
    content: "";
    width: 307px;
    height: 308px;
    background-image: url(../img/deco.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 50%;
    margin-right: -660px;
  }
  section#about .sec-inner:after {
    content: "";
    width: 307px;
    height: 308px;
    background-repeat: no-repeat;
    background-image: url(../img/deco.png);
    background-size: 100% auto;
    position: absolute;
    z-index: 1;
    top: 425px;
    left: 50%;
    margin-left: -790px;
  }
  section#about .sec-inner .txt-area {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
  }
  section#about .sec-inner .txt-area .img-area {
    width: 220px;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    padding-left: 20px;
  }
  section#about .sec-inner .txt-area .img-area div {
    width: 100%;
    flex-shrink: 0;
  }
  section#about .sec-inner .txt-area .img-area div:first-child {
    margin-bottom: 20px;
  }
  section#about .sec-inner .txt-area .img-area div img {
    width: 100%;
  }
  section#osusume:after {
    content: "";
    width: 307px;
    height: 308px;
    background-repeat: no-repeat;
    background-image: url(../img/deco.png);
    background-size: 100% auto;
    position: absolute;
    z-index: 1;
    bottom: 13px;
    left: 50%;
    margin-left: -490px;
  }
  section#osusume .sec-inner {
    background: none;
  }
  section#osusume .sec-inner .osusume {
    width: 510px;
    margin: 0 auto;
  }
  section#osusume .sec-inner:after {
    right: 220px;
    width: 100px;
  }
  section#onayami ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section#onayami ul li {
    display: flex;
    width: 32%;
    border: none;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    padding: 0 15px;
    margin-bottom: 25px;
  }
  section#onayami ul li div {
    width: 220px;
    padding: 0;
    margin: 0 auto 15px;
  }
  section#onayami ul li div img {
    width: 100%;
  }
  section#aisatu:before {
    content: "";
    width: 307px;
    height: 308px;
    background-image: url(../img/deco.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    z-index: 1;
    top: 35px;
    right: 50%;
    margin-right: -660px;
  }
  section#aisatu:after {
    content: "";
    width: 307px;
    height: 308px;
    background-repeat: no-repeat;
    background-image: url(../img/deco.png);
    background-size: 100% auto;
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    margin-left: -690px;
  }
  section#aisatu .sec-inner {
    background: none;
  }
  section#aisatu .sec-inner .txt-area {
    flex-direction: row;
  }
  section#aisatu .sec-inner .txt-area.name {
    flex-direction: row-reverse;
  }
  section#aisatu .sec-inner .txt-area div.face {
    width: 260px;
    margin: 0 45px 0 65px;
    flex-shrink: 0;
    padding: 0;
  }
  section#course .sec-inner {
    padding-bottom: 0;
  }
  section#course .sec-inner > div {
    display: flex;
    padding-bottom: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section#course .sec-inner > div article {
    width: 49%;
  }
  section#course:after {
    right: 15%;
  }
  section#contact:before {
    content: "";
    width: 307px;
    height: 308px;
    background-image: url(../img/deco.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    z-index: 1;
    bottom: -125px;
    right: 50%;
    margin-right: -660px;
  }
  section#contact .sec-inner {
    background: none;
    padding-bottom: 50px;
    text-align: center;
  }
  section#contact .sec-inner:before {
    left: 65px;
  }
  header {
    width: 100%;
  }
  header .header-wrap {
    max-width: 1280px;
    padding: 0 25px;
    margin: 0 auto;
    height: 90px;
  }
  header .header-wrap h1 img {
    height: 40px;
  }
  header .header-wrap nav {
    height: 45px;
  }
  header .header-wrap nav ul li {
    margin: 0 0 0 15px;
    display: flex;
    align-items: center;
  }
  header .header-wrap nav ul li img {
    height: 45px;
  }
  header .header-wrap nav ul li span img {
    height: 28px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .kv:before {
    content: "";
    width: 107px;
    height: 280px;
    background-size: auto 100%;
    right: 0;
    top: 30%;
    margin-right: 0;
  }
  .kv:after {
    content: "";
    width: 127px;
    height: 280px;
    background-size: auto 100%;
    background-position: right;
    bottom: 25px;
    left: 0;
    margin-left: 0;
  }
  section#about:before {
    background-image: url(../img/deco.png);
    background-repeat: no-repeat;
    width: 177px;
    height: 280px;
    background-size: auto 100%;
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 0;
    margin-right: 0;
    content: "";
  }
  section#about:after {
    content: "";
    width: 147px;
    height: 280px;
    background-repeat: no-repeat;
    background-image: url(../img/deco.png);
    background-size: auto 100%;
    position: absolute;
    z-index: 1;
    bottom: -125px;
    left: 0;
    margin-left: 0;
    background-position: right;
  }
  section#about .sec-inner:before, section#about .sec-inner:after {
    content: none;
  }
  section#osusume:after {
    width: 267px;
    height: 268px;
    margin-left: -450px;
    bottom: 50px;
  }
  section#osusume .sec-inner .osusume:after {
    content: "";
    bottom: 0;
    position: absolute;
    width: 100px;
    height: 119px;
    background: url(../img/deco_osusume.webp) right no-repeat;
    background-size: auto 100%;
    right: -60px;
    bottom: -40px;
  }
  section#osusume .sec-inner:after {
    content: none;
  }
  section#aisatu:before {
    content: "";
    width: 177px;
    height: 280px;
    background-image: url(../img/deco.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: absolute;
    z-index: 1;
    top: 35px;
    right: 0;
    margin-right: 0;
  }
  section#aisatu:after {
    content: "";
    width: 207px;
    height: 280px;
    background-repeat: no-repeat;
    background-image: url(../img/deco.png);
    background-position: right;
    background-size: auto 100%;
    position: absolute;
    z-index: 1;
    bottom: -90px;
    left: 0;
    margin-left: 0;
  }
  section#contact:before {
    content: "";
    width: 220px;
    height: 268px;
    background-image: url(../img/deco.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: absolute;
    z-index: 1;
    bottom: -75px;
    right: 0;
    margin-right: 0px;
  }
}/*# sourceMappingURL=base.css.map */