@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
  margin: 0 auto;
  padding: 0;
  text-decoration: none;
  list-style: none;
  overflow-wrap: anywhere;
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

.scroll {
  overflow-y: hidden;
  touch-action: none;
}

.touch {
  pointer-events: none;
}

body.active {
  background: #333;
  transition: all 0.8s;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 80px;
  background: #036e49;
  box-shadow: 0 3px 6px rgba(0,0,0,60%);
}

header > span {
  position: absolute;
  left: 80px;
}

header > span:hover {
  opacity: 0.4;
}

header > span > a {
  display: block;
  width: 130px;
}

header > span > a > img {
  display: block;
  width: 100%;
}

.navMenu {
  position: absolute;
  display: block;
  right: 270px;
}

.navMenu > ul {
  display: flex;
  font-weight: bold;
}

.navMenu > ul > li {
  margin: 0 12px;
}

.navMenu > ul > li > a {
  display: block;
  color: white;
  transition: all 0.3s;
}

.navMenu > ul > li > a:hover {
  color: #04b46b;
}

.contentNews {
  position: relative;
}

.contentNews::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #04b46b;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.contentNews:hover::after {
  bottom: -5px;
  visibility: visible;
  opacity: 1;
}

.contentAbout {
  position: relative;
}

.contentAbout::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #04b46b;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.contentAbout:hover::after {
  bottom: -5px;
  visibility: visible;
  opacity: 1;
}

.contentCoach {
  position: relative;
}

.contentCoach::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #04b46b;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.contentCoach:hover::after {
  bottom: -5px;
  visibility: visible;
  opacity: 1;
}

.navMenu > ul > li > .contentSchool {
  position: relative;
  color: #04b46b;
}

.contentSchool::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #04b46b;
}

.contentContact {
  position: relative;
}

.contentContact::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #04b46b;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.contentContact:hover::after {
  bottom: -5px;
  visibility: visible;
  opacity: 1;
}

.sns {
  position: absolute;
  display: flex;
  right: 80px;
}

.sns > li {
  margin: 0 8px;
}

.sns > li > a {
  display: block;
}

.sns > li > a > i {
  font-size: 28px;
  color: white;
  transition: all 0.3s;
}

.sns > li > a > i:hover {
  color: #04b46b;
}

.hamburger {
  display: none;
}

.globalMenu {
  display: none;
}

.contactRight {
  position: fixed;
  display: block;
  z-index: 1;
  top: 200px;
  right: 0;
  width: 50px;
  height: 180px;
  background: #036e49;
  transition: 0.3s;
}

.contactRight:hover {
  opacity: 0.6;
}

.contactRight > a {
  display: flex;
  width: 100%;
  height: 100%;
  writing-mode: vertical-rl;
}

.contactRight > a > i {
  position: absolute;
  display: block;
  top: 28px;
  left: 50%;
  font-size: 24px;
  color: white;
  transform: translateX(-50%);
}

.contactRight > a > p {
  position: absolute;
  left: 50%;
  bottom: 28px;
  color: white;
  transform: translateX(-50%);
}

.hiddenHeader {
  position: fixed;
  display: flex;
  z-index: 1;
  top: -80px;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 80px;
  background: #036e49;
  box-shadow: 0 3px 6px rgba(0,0,0,60%);
  opacity: 0;
  transition: all 0.6s;
}

.hiddenHeader.show {
  top: 0;
  opacity: 1;
}

.hiddenHeader > span {
  position: absolute;
  left: 80px;
}

.hiddenHeader > span:hover {
  opacity: 0.4;
}

.hiddenHeader > span > a {
  display: block;
  width: 130px;
}

.hiddenHeader > span > a > img {
  display: block;
  width: 100%;
}

main.active {
  opacity: 0.2;
  transition: all 0.8s;
}

.smokeBG {
  padding: 2rem 0;
  background: whitesmoke;
}

.container {
  max-width: 970px;
}

ol {
  display: inline-flex;
  padding-bottom: 2rem;
}

ol > li {
  margin-right: 5px;
  font-size: 12px;
}

ol > li::after {
  content: '>';
  color: #333;
}

ol > li:last-of-type::after {
  display: none;
}

ol > li > a {
  margin-right: 5px;
  color: #333;
}

ol > li > a:hover {
  color: #036e49;
  text-decoration: underline;
}

ol > .bread {
  color: #333;
}

h3 {
  text-align: left;
  padding-bottom: 2rem;
  font-weight: bold;
  font-size: 72px;
  color: #036e49;
  font-style: italic;
  font-family: 'Bebas Neue', sans-serif;
}

h3 > span {
  font-size: 16px;
}

.container > div {
  padding: 20px 25px;
  background: white;
}

h4 {
  padding: 1rem 0;
  font-size: 24px;
  color: #333;
  border-bottom: solid 5px #036e49;
}

.box {
  padding: 1rem;
}

.box > ul > li {
  padding: 8px 0;
  font-size: 15px;
  color: #333;
}

.box > ul > li:last-of-type {
  padding: 8px 0 1rem 0;
}

.box > ul > li > strong {
  font-size: 20px;
}

.box > ul > li > strong > span {
  font-size: 10px;
}

table {
  text-align: center;
  width: 100%;
  margin: 8px auto;
  box-sizing: border-box;
  border-collapse: collapse;
}

th {
  width: 25%;
  padding: 1rem 0;
  color: white;
  background: #036e49;
  border: solid 1px white;
}

td {
  width: 25%;
  padding: 1rem 0;
  background: #eee;
  border: solid 1px white;
}

td > span {
  font-size: 10px;
}

.box > div {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.box > div:hover {
  opacity: 0.7;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.greenBG {
  padding: 2rem 0;
  background: #04b46b;
}

.whiteText {
  color: white;
}

.container > .partner {
  display: flex;
  flex-wrap: wrap;
  background: initial;
}

.container > .partner > li {
  margin: 10px auto;
  padding: 0;
}

.container > .partner > li > a {
  display: block;
  max-width: 250px;
  width: 100%;
  font-size: initial;
  color: initial;
}

.partner > li > a > img {
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.partner > li > a > img:hover {
  opacity: 0.7;
}

footer {
  width: 100%;
  background: white;
}

footer.active {
  opacity: 0.2;
  transition: all 0.8s;
}

.wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  height: 80px;
}

.wrapper > a {
  position: absolute;
  display: block;
  left: 80px;
  width: 130px;
}

.wrapper > a:hover {
  opacity: 0.4;
}

.wrapper > a > img {
  display: block;
  width: 100%;
}

.footerMenu > ul {
  display: flex;
}

.footerMenu > ul > li {
  margin: 0 7px;
}

.footerMenu > ul > li > a {
  display: block;
  font-size: 14px;
  color: #333;
}

.footerMenu > ul > li > a:hover {
  color: #036e49;
  text-decoration: underline;
}

.wrapper > .sns > li > a > i {
  color: #333;
  transition: initial;
}

.wrapper > .sns > li > a > i:hover {
  color: #036e49;
}

footer > p {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8em;
  color: #333;
}

.pageTop {
  position: fixed;
  right: 20px;
  bottom: 15px;
  width: 50px;
  height: 50px;
  background: #036e49;
  border: none;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.pageTop.display {
  visibility: visible;
  opacity: 1;
}

.pageTop.display:hover {
  opacity: 0.6;
}

.pageTop::before {
  content: '\f106';
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  font-weight: bold;
  font-size: 25px;
  color: white;
  font-family: 'Font Awesome 5 Free';
  transform: translate(-50%, -50%);
}

@media (max-width: 1149px) {
  body {
    padding-top: 68px;
  }

  header {
    position: fixed;
    z-index: 1;
    top: 0;
    height: 68px;
  }

  header > span {
    left: 50%;
    transform: translateX(-50%);
  }

  header > span:hover {
    opacity: 1;
  }

  .navMenu {
    display: none;
  }

  .hamburger {
    position: fixed;
    display: block;
    z-index: 3;
    top: 15px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.8s;
  }

  .hamburger > span {
    position: absolute;
    display: block;
    left: 5px;
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.4s ease-in-out;
  }

  .hamburger > span:nth-child(1) {
    top: 7px;
  }

  .hamburger > span:nth-child(2) {
    top: 18px;
    opacity: 1;
  }

  .hamburger > span:nth-child(3) {
    top: 29px;
  }

  .hamburger.active {
    transform: rotateZ(135deg);
    transition-delay: 0.8s;
  }

  .hamburger.active span:nth-child(1) {
    top: 19px;
    background: white;
    transition-delay: 0.4s;
  }

  .hamburger.active span:nth-child(2) {
    width: 0;
    transition: 0.4s ease-in-out;
  }

  .hamburger.active span:nth-child(3) {
    top: 19px;
    background: white;
    transform: rotateZ(90deg);
    transition-delay: 0.4s;
  }

  .globalMenu {
    position: fixed;
    display: block;
    z-index: 2;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    background: #036e49;
    transform: scale(0);
    opacity: 0;
    transition: all 0.8s;
  }

  .globalMenu.active {
    margin-top: 66px;
    transform: scale(1);
    opacity: 1;
  }

  .globalMenu > ul > li > a {
    display: block;
    padding: 22px 0;
    font-weight: bold;
    color: white;
  }

  .globalMenu > ul > li > .indicator {
    color: #04b46b;
  }

  .globalMenu > .sns {
    position: initial;
    justify-content: center;
  }

  .sns > li > a > i {
    font-size: 20px;
    color: white;
  }

  .sns > li > a > i:hover {
    color: white;
  }

  .contactRight {
    display: none;
  }

  .hiddenHeader {
    display: none;
  }

  ol > li > a:hover {
    color: #333;
    text-decoration: none;
  }

  .container {
    padding: 0 25px;
  }

  .partner > li > a > img:hover {
    opacity: 1;
  }

  footer {
    padding-top: 1rem;
  }

  .wrapper {
    display: block;
    height: initial;
  }

  .wrapper > a {
    position: initial;
  }

  .wrapper > a:hover {
    opacity: 1;
  }

  .footerMenu > ul {
    display: block;
    padding: 1rem 0;
    line-height: 1.7;
  }

  .footerMenu > ul > li {
    margin: 0;
  }

  .footerMenu > ul > li > a {
    display: inline-block;
  }

  .footerMenu > ul > li > a:hover {
    color: #333;
    text-decoration: none;
  }

  .wrapper > .sns {
    position: initial;
    display: inline-flex;
    padding-bottom: 1rem;
  }

  .wrapper > .sns > li > a > i:hover {
    color: #333;
  }

  .pageTop.display:hover {
    opacity: 1;
  }
}

@media (max-width: 599px) {
  header > span {
    left: 20px;
    transform: initial;
  }

  header > span > a {
    width: 110px;
  }

  h3 {
    font-size: 48px;
  }
}
