/* Navi height */
@-webkit-keyframes naviLineFirstOpen {
  49% {
    opacity: 1;
    transform: translate(0, 6px);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(0, 6px);
  }
}
@keyframes naviLineFirstOpen {
  49% {
    opacity: 1;
    transform: translate(0, 6px);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(0, 6px);
  }
}
@-webkit-keyframes naviLineFirstClose {
  0% {
    opacity: 0;
    transform: translate(0, 6px);
  }
  50% {
    opacity: 0;
    transform: translate(0, 6px);
  }
  51% {
    opacity: 1;
  }
  100% {
    transform: translate(0);
  }
}
@keyframes naviLineFirstClose {
  0% {
    opacity: 0;
    transform: translate(0, 6px);
  }
  50% {
    opacity: 0;
    transform: translate(0, 6px);
  }
  51% {
    opacity: 1;
  }
  100% {
    transform: translate(0);
  }
}
@-webkit-keyframes naviLineLastOpen {
  49% {
    opacity: 1;
    transform: translate(0, -6px);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(0, -6px);
  }
}
@keyframes naviLineLastOpen {
  49% {
    opacity: 1;
    transform: translate(0, -6px);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(0, -6px);
  }
}
@-webkit-keyframes naviLineLastClose {
  0% {
    opacity: 0;
    transform: translate(0, -6px);
  }
  50% {
    opacity: 0;
    transform: translate(0, -6px);
  }
  51% {
    opacity: 1;
  }
  100% {
    transform: translate(0);
  }
}
@keyframes naviLineLastClose {
  0% {
    opacity: 0;
    transform: translate(0, -6px);
  }
  50% {
    opacity: 0;
    transform: translate(0, -6px);
  }
  51% {
    opacity: 1;
  }
  100% {
    transform: translate(0);
  }
}
@-webkit-keyframes naviLineSecondOpen {
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(45deg);
  }
}
@keyframes naviLineSecondOpen {
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(45deg);
  }
}
@-webkit-keyframes naviLineSecondClose {
  0% {
    transform: rotateZ(45deg);
  }
  50% {
    transform: rotateZ(0);
  }
}
@keyframes naviLineSecondClose {
  0% {
    transform: rotateZ(45deg);
  }
  50% {
    transform: rotateZ(0);
  }
}
@-webkit-keyframes naviLineSecondAfterOpen {
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: rotateZ(0);
  }
  100% {
    opacity: 1;
    transform: rotateZ(-90deg);
  }
}
@keyframes naviLineSecondAfterOpen {
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: rotateZ(0);
  }
  100% {
    opacity: 1;
    transform: rotateZ(-90deg);
  }
}
@-webkit-keyframes naviLineSecondAfterClose {
  0% {
    opacity: 1;
    transform: rotateZ(-90deg);
  }
  50% {
    opacity: 1;
    transform: rotateZ(0);
  }
  51% {
    opacity: 0;
  }
}
@keyframes naviLineSecondAfterClose {
  0% {
    opacity: 1;
    transform: rotateZ(-90deg);
  }
  50% {
    opacity: 1;
    transform: rotateZ(0);
  }
  51% {
    opacity: 0;
  }
}
#navi-button {
  background: #fff;
  width: 50px;
  padding: 18px 14px;
  position: relative;
  z-index: 100;
  transform: translate(0, 0);
}
#navi-button div {
  background: #009d61;
  width: 100%;
  height: 2px;
  border-radius: 1px;
}
#navi-button div:nth-child(2) {
  margin: 4px 0px;
  position: relative;
}
#navi-button div:nth-child(2)::after {
  background: #009d61;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#navi-button.open {
  background: transparent;
}
#navi-button.open div:first-child {
  -webkit-animation: naviLineFirstOpen 0.5s ease-in-out forwards;
  animation: naviLineFirstOpen 0.5s ease-in-out forwards;
}
#navi-button.open div:nth-child(2) {
  -webkit-animation: naviLineSecondOpen 0.5s ease-in-out forwards;
  animation: naviLineSecondOpen 0.5s ease-in-out forwards;
}
#navi-button.open div:nth-child(2)::after {
  -webkit-animation: naviLineSecondAfterOpen 0.5s ease-in-out forwards;
  animation: naviLineSecondAfterOpen 0.5s ease-in-out forwards;
}
#navi-button.open div:last-child {
  -webkit-animation: naviLineLastOpen 0.5s ease-in-out forwards;
  animation: naviLineLastOpen 0.5s ease-in-out forwards;
}
#navi-button.close div:first-child {
  -webkit-animation: naviLineFirstClose 0.5s ease-in-out forwards;
  animation: naviLineFirstClose 0.5s ease-in-out forwards;
}
#navi-button.close div:nth-child(2) {
  -webkit-animation: naviLineSecondClose 0.5s ease-in-out forwards;
  animation: naviLineSecondClose 0.5s ease-in-out forwards;
}
#navi-button.close div:nth-child(2)::after {
  -webkit-animation: naviLineSecondAfterClose 0.5s ease-in-out forwards;
  animation: naviLineSecondAfterClose 0.5s ease-in-out forwards;
}
#navi-button.close div:last-child {
  -webkit-animation: naviLineLastClose 0.5s ease-in-out forwards;
  animation: naviLineLastClose 0.5s ease-in-out forwards;
}

@media screen and (min-width: 415px) {
  header {
    width: 1100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 414px) {
  header {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 70px;
    min-width: 320px;
    top: 0;
    z-index: 9000;
  }
}
header .logo {
  line-height: 0;
}
@media screen and (min-width: 415px) {
  header .logo {
    width: 343px;
  }
}
@media screen and (max-width: 414px) {
  header .logo {
    display: inline-block;
    width: 234px;
    transform: translate(16px, 18px);
  }
}
header .header-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}
header .header-contact .link {
  color: #fff;
  background: #009d61;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 5px 25px;
}
@media screen and (min-width: 415px) {
  header .header-contact .link {
    margin-right: 20px;
  }
}
header .header-contact .tel {
  font-family: "Bebas Neue", cursive;
  color: #009d61;
  font-size: 30px;
  letter-spacing: 0.1em;
  transform: translate(0px, 3px);
}

#navi-button {
  position: absolute;
  top: 0;
  right: 0;
}
#navi-button::after {
  font-family: "Bebas Neue", cursive;
  content: "MENU";
  display: block;
  margin: 5px auto 0;
  color: #009d61;
  font-size: 12px;
  letter-spacing: 0.05em;
}

#navi.sp-navi {
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  visibility: hidden;
  width: 100vw;
  height: 0;
  overflow: hidden;
  transition: all 0.45s ease-in-out;
  transform: translate(0px, 25px);
  position: relative;
}
#navi.sp-navi.open {
  visibility: visible;
  background: #000;
  height: calc(100vh - 64px);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  transition: all 0.45s ease-in-out;
}
#navi.sp-navi #navi-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 15px 0 0;
  position: relative;
}
#navi.sp-navi #navi-list li {
  width: calc((100% - 22px) / 2);
  margin: 0 22px 0 0;
  border-bottom: 1px solid #fff;
}
#navi.sp-navi #navi-list li:nth-child(2n) {
  margin-right: 0;
}
#navi.sp-navi #navi-list a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 15px 0;
}
#navi.sp-navi .navi-bottom {
  margin-top: 105px;
}
#navi.sp-navi .navi-bottom .sns-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 31px;
}
#navi.sp-navi .navi-bottom .sns-wrapper a {
  width: 48px;
}
#navi.sp-navi .navi-bottom .sns-wrapper a:first-child {
  margin-right: 20px;
}
#navi.sp-navi .navi-bottom .tel a {
  font-family: "Bebas Neue", cursive;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  background: #009d61;
  width: 100%;
  padding: 7px 0;
}

@media screen and (min-width: 415px) {
  #navi {
    background: #009d61;
  }
  #navi.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    min-width: 1366px;
    z-index: 100;
  }
  #navi #navi-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 980px;
    margin: 0 auto;
    padding: 24px 0;
  }
  #navi #navi-list a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
}
/* -js-display:flex; flex for IE8,9*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  height: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 414px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    min-width: 320px;
    padding-top: 70px;
  }
}
@media screen and (min-width: 415px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
    min-width: 1366px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}

a {
  transition: all 0.5s;
  color: #3b3b3b;
  text-decoration: none;
  display: inline-block;
}
a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

.defs {
  display: none;
}

.visually-hidden {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansCJKjp-Bold.woff") format("woff");
}
.container {
  width: 100%;
  height: 100%;
}

.no-action {
  pointer-events: none;
  cursor: default;
}

@media screen and (min-width: 415px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  .pc-only {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  .offset {
    width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 415px) {
  .offset {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 414px) {
  .sns-bottom {
    padding: 30px 0;
  }
}
@media screen and (min-width: 415px) {
  .sns-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 60px 0 55px;
  }
}
@media screen and (max-width: 414px) {
  .sns-bottom a {
    width: calc((100% - 15px) / 2);
    margin: 0 11px 15px 0;
  }
  .sns-bottom a:nth-child(2n) {
    margin-right: 0;
  }
  .sns-bottom a:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 415px) {
  .sns-bottom a {
    width: 192px;
    margin: 0 4px;
  }
}

footer {
  color: #fff;
  background: #009d61;
}
@media screen and (max-width: 414px) {
  footer {
    text-align: center;
    padding: 47px 40px 72px;
  }
}
@media screen and (min-width: 415px) {
  footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-end;
    justify-content: center;
    font-size: 14px;
    padding: 123px 0 39px;
  }
}
@media screen and (max-width: 414px) {
  footer .info {
    margin-bottom: 26px;
  }
}
@media screen and (min-width: 415px) {
  footer .info {
    width: 320px;
    margin-right: 164px;
  }
}
footer .info a {
  color: #fff;
}
@media screen and (min-width: 415px) {
  footer .info a {
    display: block;
  }
}
footer .info .logo {
  display: inline-block;
}
@media screen and (max-width: 414px) {
  footer .info .logo {
    width: 127px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 415px) {
  footer .info .logo {
    width: 167px;
    margin-bottom: 10px;
  }
}
footer .info .tel {
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 414px) {
  footer .info .tel {
    font-size: 33px;
  }
}
@media screen and (min-width: 415px) {
  footer .info .tel {
    font-size: 31.8px;
  }
}
footer .info .address {
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
footer .info .btn-map a {
  display: inline-block;
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
}
@media screen and (min-width: 415px) {
  footer .info .btn-map a {
    text-align: center;
  }
}

.cr {
  font-size: 12px;
}
@media screen and (min-width: 415px) {
  .cr {
    width: 100%;
    text-align: center;
    margin-top: 60px;
  }
}

@media screen and (min-width: 415px) {
  .pc-footer-navi {
    width: 551px;
  }
  .pc-footer-navi ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: strech;
    justify-content: flex-start;
  }
  .pc-footer-navi li {
    width: 272px;
    margin-bottom: 7px;
  }
  .pc-footer-navi li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .pc-footer-navi a {
    color: #fff;
  }
}
.trial-lesson {
  background: url(../images/common/bg_trial_lesson.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 80px 0 70px;
}
.trial-lesson h1 {
  font-family: "Bebas Neue", cursive;
  font-size: 60px;
  letter-spacing: 0.25em;
  margin-bottom: 30px;
}
.trial-lesson p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
@media screen and (max-width: 414px) {
  .trial-lesson img {
    width: 355px;
    height: 42px;
  }
}
@media screen and (min-width: 415px) {
  .trial-lesson img {
    width: 435px;
    height: 51px;
  }
}
.trial-lesson .link-btn-detail {
  background: #3b3b3b;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 15px 30px;
  margin-top: 40px;
  min-width: 263px;
  position: relative;
}
.trial-lesson .link-btn-detail::after {
  content: "";
  display: block;
  width: 36px;
  height: 7px;
  background-image: url("../images/common/link_arrow_w.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  transform: translate(-16px, -3px);
}

.page-head {
  color: #535353;
  text-align: center;
}
@media screen and (max-width: 414px) {
  .page-head {
    padding: 35px 0;
  }
}
@media screen and (min-width: 415px) {
  .page-head {
    padding: 70px 0 65px;
  }
}
.page-head h1 {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 414px) {
  .page-head h1 {
    font-size: 25px;
  }
}
@media screen and (min-width: 415px) {
  .page-head h1 {
    font-size: 30px;
  }
}
.page-head h1 span {
  font-family: "Bebas Neue", cursive;
  display: block;
}
@media screen and (max-width: 414px) {
  .page-head h1 span {
    font-size: 14px;
    margin-top: 3px;
  }
}
@media screen and (min-width: 415px) {
  .page-head h1 span {
    font-size: 16px;
  }
}

.page-summary {
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 414px) {
  .page-summary {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 415px) {
  .page-summary {
    padding: 95px 0;
  }
}
.page-summary h1 {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 414px) {
  .page-summary h1 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 415px) {
  .page-summary h1 {
    font-size: 30px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 414px) {
  .page-summary .text {
    font-size: 14px;
  }
}
@media screen and (min-width: 415px) {
  .page-summary .text {
    font-size: 18px;
  }
}
.page-summary .pagein-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 414px) {
  .page-summary .pagein-links {
    margin-top: 35px;
  }
  .page-summary .pagein-links li {
    width: calc((100% - 20px) / 2);
    margin: 0 20px 20px 0;
  }
  .page-summary .pagein-links li:nth-child(2n) {
    margin-right: 0;
  }
  .page-summary .pagein-links li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .page-summary .pagein-links a {
    background: #009d61;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: left;
    padding: 23px 30px;
    margin-top: 0;
    min-width: auto;
    position: relative;
    width: 100%;
    max-height: 67px;
  }
  .page-summary .pagein-links a::after {
    content: "";
    display: block;
    width: 36px;
    height: 7px;
    background-image: url("../images/common/link_arrow_w.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    transform: translate(-16px, -3px);
  }
}
@media screen and (min-width: 415px) {
  .page-summary .pagein-links {
    margin-top: 70px;
  }
  .page-summary .pagein-links li {
    margin-right: 30px;
  }
  .page-summary .pagein-links li:last-child {
    margin-right: 0;
  }
  .page-summary .pagein-links a {
    background: #009d61;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: left;
    padding: 23px 30px;
    margin-top: 0;
    min-width: auto;
    position: relative;
    width: 295px;
  }
  .page-summary .pagein-links a::after {
    content: "";
    display: block;
    width: 36px;
    height: 7px;
    background-image: url("../images/common/link_arrow_w.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    transform: translate(-16px, -3px);
  }
}

@media screen and (max-width: 414px) {
  .section {
    padding: 50px 0 35px;
  }
}
@media screen and (min-width: 415px) {
  .section {
    padding: 100px 0;
  }
}
.section .summary {
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.section-heading {
  text-align: center;
}
@media screen and (max-width: 414px) {
  .section-heading .en {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 415px) {
  .section-heading .en {
    margin-bottom: 25px;
  }
}
.section-heading .en img {
  height: 21px;
}
@media screen and (max-width: 414px) {
  .section-heading h1 {
    font-size: 25px;
  }
}
@media screen and (min-width: 415px) {
  .section-heading h1 {
    font-size: 30px;
  }
}

.btn-line {
  margin-top: 50px;
}
.btn-line a {
  width: 100%;
}

.article-category.news {
  background: #009d61;
}
.article-category.other {
  background: #de7f7f;
}

.pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 414px) {
  .pagination {
    margin-top: 30px;
  }
}
@media screen and (min-width: 415px) {
  .pagination {
    margin-top: 70px;
  }
}
@media screen and (max-width: 414px) {
  .pagination > * {
    margin-right: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 415px) {
  .pagination > * {
    margin-right: 20px;
  }
}
.pagination a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px solid #3b3b3b;
}
@media screen and (max-width: 414px) {
  .pagination a {
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 415px) {
  .pagination a {
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
  }
}
.pagination a.current {
  color: #fff;
  background: #3b3b3b;
}

.page-top {
  position: fixed;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 414px) {
  .page-top {
    transform: translate(-30px, -60px);
  }
}
@media screen and (min-width: 415px) {
  .page-top {
    transform: translate(-30px, -30px);
  }
}

.btn-line-fixed {
  position: fixed;
  z-index: 200;
}
@media screen and (max-width: 414px) {
  .btn-line-fixed {
    width: 235px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
  }
}
@media screen and (min-width: 415px) {
  .btn-line-fixed {
    width: 70px;
    right: 0;
    bottom: 0;
    transform: translate(0px, -180px);
  }
}

.banner-agreement {
  text-align: center;
  margin-top: 30px;
}
.banner-agreement img {
  width: 100%;
  max-width: 600px;
}