@charset "UTF-8";

body {
  color: #202020;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 2px;
  text-align: left;
  word-break: break-word;
  word-wrap: break-word;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: normal;
  position: relative;
  list-style: none;
  box-sizing: border-box;
}

a {
  color: #202020;
  text-decoration: none;
}
ul,
li {
  list-style: none;
  padding: 0;
}
h3 {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem;
}
@media (max-width: 640px) {
  h3 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
/*******************************************************************
common
*******************************************************************/

.sec_wrapper {
  width: 100%;
}
.sec_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.heart {
  margin: 0 auto;
  padding: 3rem 0;
  max-width: 66px;
  width: 100%;
}
.line {
  margin: 0 auto;
  padding: 3rem 0;
  max-width: 200px;
  width: 100%;
}
.dotline {
  margin: 0 auto;
  padding: 3rem 0;
  width: 100%;
  max-width: 670px;
}

@media (max-width: 428px) {
  .sec_inner {
    padding: 0 1.5rem;
  }
}
/*******************************************************************
loading
*******************************************************************/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  color: #000000;
  width: 100%;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg {
  height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 50%;
  background-color: #c5d700;
  transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
  transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
  transform: scaleY(0);
}

/*******************************************************************
header
*******************************************************************/
header.pc_nav {
  position: fixed;
  top: 3%;
  right: 3%;
  background-color: #ffffff;
  width: 100%;
  max-width: 770px;
  letter-spacing: 1px;
  padding: 1.3rem 1rem;
  z-index: 99;
  border: 3px solid #000000;
  border-radius: 100vh;
  box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 8%);
}
header.pc_nav h1 {
  padding: 15px 0;
  max-width: 200px;
}
.header .sec_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.g-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  font-size: 1rem;
  font-weight: 600;
  align-items: center;
}
.g-nav ul li a {
  transition: 0.3s;
}
.g-nav ul li a:hover {
  color: #ea5545;
}

/*ナビゲーションのリンク設定*/
.has-child {
  position: relative;
}
.has-child a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.has-child ul {
  position: absolute;
  right: -100px;
  top: 56px;
  z-index: 98;
  background: #fffffff5;
  width: 310px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 3px solid #000;
  padding: 1rem 0;
}
.has-child ul li {
  position: relative;
  width: 90%;
}
.has-child ul li a {
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  padding: 10px 35px;
  display: block;
  text-decoration: none;
  padding: 10px 5px;
  transition: all 0.3s;
}
.has-child:hover > ul,
.has-child ul li:hover > ul,
.has-child:active > ul,
.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

.c-header {
  display: none;
}
.c-header h1 {
  padding: 15px;
  max-width: 200px;
}
@media screen and (max-width: 850px) {
  .g-nav ul {
  }
}
@media screen and (max-width: 768px) {
  header.pc_nav {
    display: none;
  }
  .c-header {
    display: block;
  }
  .c-header > a {
    display: inline-block;
    padding: 0 0 0 1rem;
    max-width: 200px;
  }
  .c-hamburger-menu {
    position: fixed;
    width: 100%;
    z-index: 99;
  }
  .c-hamburger-menu__list {
    background-color: #ffffff; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
    gap: 14px;
    font-size: 0.9rem;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
  #hamburger:checked ~ .c-hamburger-menu__list li a br {
    display: none;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: #ffffff;
    border: 2px solid #000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: 50px;
    justify-content: center;
    width: 50px;
    position: absolute;
    top: 9px;
    right: 20px;
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000;
  display: block;
  height: 1.5px;
  transition: 0.3s;
  width: 30px;
}

@media screen and (max-width: 768px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, -1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}
/*******************************************************************
top_main
*******************************************************************/
.top_main {
  background: #c5d700;
  margin-bottom: 5rem;
}
.top_main img {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1412px) {
  .top_main img {
    border-right: 4.8rem solid #fff;
    border-left: 4.8rem solid #fff;
  }
}
@media screen and (max-width: 428px) {
  .top_main {
    margin-bottom: 1rem;
  }
}

.top_main_2 {
  width: 100%;
  background: url(/images/top_main_bg_2.jpg) repeat-x;
  animation: scroll-anim 15s linear infinite;
}
.top_main_2 img {
  margin: 0 auto;
}
@keyframes scroll-anim {
  100% {
    background-position: -100% 0;
  }
}
@media screen and (max-width: 780px) {
  .top_main_2 {
    background-size: 20%;
    animation: scroll-anim 13s linear infinite;
  }
}
@media screen and (max-width: 570px) {
  .top_main_2 {
    padding: 3rem 0;
    background-size: 21%;
    animation: scroll-anim 10s linear infinite;
  }
}
/*******************************************************************
top_lead
*******************************************************************/
.top_lead {
  background-image: url(/images/bg_dots_3.svg), url(/images/bg_dots_4.svg);
  background-size: 26%, 36%;
  background-position: 10% 10%, 107% 50%;
  background-repeat: no-repeat, no-repeat;
  margin-bottom: 5rem;
}

.top_lead_box {
  max-width: 820px;
  margin: 0 auto 3rem;
  background: #ffffffab;
  border-radius: 1.5rem;
  border: 5px solid #c5d700;
  padding: 2rem 3rem 3.5rem;
}
.top_lead_box p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2.5rem;
}
@media screen and (max-width: 640px) {
  .top_lead_box {
    padding: 2rem 2rem 3rem;
  }
  .top_lead_box p {
    font-size: 1rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 428px) {
  .top_lead_box {
    padding: 2rem 1rem 3rem;
  }
  .top_lead_box h3 {
    padding: 0.8rem 0;
  }
}
/*******************************************************************
News
*******************************************************************/
.top_news_box {
  max-width: 900px;
  margin: 0 auto;
}
.news_tit h3 {
  padding: 0 0 1.5rem;
}
.news_line ul {
  display: flex;
  flex-direction: column;
}
.news_line ul li {
  padding: 1rem;
  border-bottom: 1px solid #eeebc6;
  transition: 0.3s;
}
.news_line ul li:hover {
  background: #f6ffdd;
}
.top_news_box_2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.top_news_time {
  min-width: 110px;
  margin-right: 3rem;
  color: #a4a4a4;
}
@media screen and (max-width: 640px) {
  .top_news_box_2 {
    flex-direction: column;
  }
}
/*******************************************************************
btn area
*******************************************************************/
.btn_area {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 10rem;
}
.btn_area div {
  width: 43%;
}
.btn_area .btn_otona a {
  background: #00b2cd;
}
.btn_area .btn_waku a {
  background: #e9608e;
}
.btn_area div a {
  display: block;
  padding: 1rem 0;
  text-align: center;
  border-radius: 1rem;
  border: 3px solid #000000;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 680px) {
  .btn_area .btn_otona a:hover {
    background: #44cade;
  }
  .btn_area .btn_waku a:hover {
    background: #fb92b6;
  }
  .btn_area div {
    width: 48%;
  }
  .btn_area div a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 540px) {
  .btn_area {
    flex-direction: column;
    margin-bottom: 7rem;
  }
  .btn_area div {
    width: 100%;
  }
  .btn_area div a {
    padding: 1.5rem 0;
  }
}
/*******************************************************************
Top Content
*******************************************************************/
.top_content {
  animation: cloud 15s linear infinite;
  background: url(/images/bg_clouds_2.svg),
    linear-gradient(#c5d700, hsl(65, 100%, 42%));
  background-position-x: 0;
  background-position-y: 1%;
  background-repeat: repeat-x;
  background-size: 120% auto;
}
@keyframes cloud {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 800px;
  }
}

.top_content .sec_inner {
  max-width: 1200px;
  padding: 12rem 3rem;
}
.top_content .sec_inner .cate {
  background-color: #fff;
  border-radius: 2rem;
  padding: 6rem 2rem;
  position: relative;
  margin-bottom: 10rem;
  border: 5px solid #000;
}
.cate_tit {
  margin-top: -11rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5rem;
  padding-left: 30px;
  max-width: 507px;
}
.blue .course_img {
  max-width: 230px;
  margin-bottom: 1rem;
}
.course {
  display: flex;
  gap: 2%;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 1.5rem 0 1.5rem 9%;
  /*
  background: url(/images/bg_marathon.jpg);
  background-position-x: 0;
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 380px;
  */
}
.course .course_left {
  display: flex;
  justify-content: flex-end;
  width: 32%;
  /*
  position: sticky;
  top: 25%;
  align-self: flex-start;
  */
}
.course .course_left .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.course .course_left .content .course_tit {
  margin-bottom: 2rem;
}
.course .course_left .content .course_tit img {
  width: 100%;
}
.course .course_left .content .course_tit .sp_tit {
  display: none;
}
.course .course_left .content .desc {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.course .course_left .content .desc span {
  display: inline-block;
  background-color: #e1e1e1;
  text-align: center;
  margin-right: 10px;
  border-radius: 5px;
  width: 58px;
  line-height: 1.4;
  font-size: smaller;
}
.course .course_left .content .btn {
  max-width: 250px;
  width: 100%;
}

.blue .course_left a {
  display: block;
  background-color: #00f2ff;
  border-radius: 100vh;
  text-align: center;
  border: 2px solid #000;
  padding: 1rem 0.5rem;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 1.4rem;
}
.red .course_left a {
  display: block;
  background-color: #ffaddf;
  border-radius: 100vh;
  text-align: center;
  border: 2px solid #000;
  padding: 1.5rem 0.5rem;
  font-weight: bold;
}
.course .course_right {
  width: 60%;
}
.course .course_right ul li {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 3rem;
}
.course .course_right ul li:last-child {
  margin-bottom: 0;
}
.course .course_right ul li h4 {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #0099b1;
}
.course .course_right ul li h4 span {
  background: #00b2cd;
  color: #fff;
  border-radius: 100vh;
  padding: 0.2rem 1rem;
  font-size: 1.1rem;
  margin-right: 1rem;
  vertical-align: middle;
}
.course .course_right ul li .event_list {
  display: flex;
  justify-content: left;
  padding-left: 5%;
  align-items: center;
  gap: 5%;
}
.course .course_right ul li .event_list .num {
  max-width: 40px;
}
/*
.course .course_right ul li .desc h4 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
*/
.blue .course_right ul li .desc h5 {
  font-size: 1.3rem;
  line-height: 1.3;
}
.blue .course_right ul li .desc span {
  display: inline-block;
  background-color: #e1e1e1;
  text-align: center;
  margin-right: 10px;
  border-radius: 5px;
  width: 58px;
  line-height: 1.4;
  font-size: smaller;
}
.red .course_right ul li .desc span {
  display: inline-block;
  background-color: #ffd9eb;
  text-align: center;
  margin-right: 10px;
  border-radius: 5px;
  width: 58px;
  line-height: 1.4;
  font-size: smaller;
}

.cate .waku {
  display: flex;
  flex-direction: column;
  gap: 8%;
  flex-wrap: nowrap;
  margin: 2rem 0;
}
.cate .waku .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cate .waku .content > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cate .waku .content .course_img {
  max-width: 230px;
}
.cate .waku .content .course_tit {
  margin-left: 2rem;
}

.cate .waku .content .btn {
  max-width: 250px;
  width: 100%;
  margin-right: 3rem;
}
.red a {
  display: block;
  background-color: #ffaddf;
  border-radius: 100vh;
  text-align: center;
  border: 2px solid #000;
  padding: 1rem 0.5rem;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 1.4rem;
}
.red .desc span {
  display: inline-block;
  background-color: #e1e1e1;
  text-align: center;
  margin-right: 10px;
  border-radius: 5px;
  width: 58px;
  line-height: 1.4;
  font-size: smaller;
}
@media screen and (max-width: 840px) {
  .course {
    flex-direction: column;
    margin: 1.5rem 5% 1.5rem;
  }
  .course .course_left {
    justify-content: center;
    width: 100%;
    margin-bottom: 3rem;
  }
  .course .course_left .content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .course .course_left .content .btn {
    max-width: 420px;
  }
  .course .course_left .content .course_tit {
    width: 100%;
    max-width: 400px;
  }
  .course .course_left .content .desc {
    width: 100%;
    text-align: center;
  }
  .course .course_left .content .desc > div {
    display: inline-block;
    margin: 0 0.5rem;
  }

  .blue .course_img {
    max-width: 250px;
  }
  .top_content .sec_inner .cate {
    padding: 4rem 2rem;
  }
  .course .course_right {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .top_content .sec_inner {
    padding: 8rem 1rem 2rem;
  }
  .top_content .sec_inner .cate {
    padding: 4rem 1rem;
  }
  .course {
    flex-direction: column;
    margin: 1.5rem 2% 1.5rem;
  }
  .course .course_left .content .course_tit {
    width: 100%;
  }
  .course .course_left .content .course_tit .pc_tit {
    display: none;
  }
  .course .course_left .content .course_tit .sp_tit {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  .blue .course_img {
    margin-bottom: 0;
  }
  .course .course_right ul li .desc h4 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .course .course_right ul li .num {
    width: 8%;
    min-width: 40px;
  }
  .course .course_right ul li .desc {
    width: 90%;
  }
  .cate .waku .content > div {
    flex-direction: column;
  }
  .cate .waku .content .course_tit {
    margin-left: 0;
    margin-top: 1rem;
  }
  .cate .waku .content .btn {
    max-width: 420px;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .cate .waku .content .course_img {
    max-width: 190px;
  }
}
@media screen and (max-width: 570px) {
  .course .course_right ul li h4 {
    font-size: 1.5rem;
    text-align: center;
  }
  .course .course_right ul li h4 span {
    display: block;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 428px) {
  .top_content {
    background-position-y: 0.8%;
    background-size: 220% auto;
  }
  .top_content .sec_inner {
    padding: 8rem 1rem 2rem;
    background-size: 200% auto;
  }
  .cate_tit {
    margin-top: -40%;
    margin-bottom: 2rem;
  }
  .course .course_right ul li {
    flex-direction: column;
    gap: 15px;
  }
  .course .course_right ul li .desc {
    width: 100%;
    font-size: 90%;
  }
  .blue .course_right ul li .desc span {
    width: auto;
    padding: 0 5px;
  }
}
/*******************************************************************
Event
*******************************************************************/
.event {
  padding: 11rem 5rem 6rem;
  background-color: #c5d700;
}
.event_inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  border: 5px solid #000;
  padding: 3rem;
}

.detail .tit {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.detail .tit h1 {
  width: 100%;
  max-width: 350px;
}
.detail .tit h1 img {
  width: 100%;
}
.detail .tit .course_img {
  max-width: 230px;
}
.detail .tit .price {
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
}
.detail .tit .price p span {
  background: #e46b8f;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 5px;
  padding: 0 0.4rem;
  margin-right: 10px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .detail .tit {
    flex-direction: column;
    margin-bottom: 10%;
    gap: 10px;
  }
}
.detail .event_img {
  max-width: 700px;
  margin: 3rem auto;
}
.detail .event_img img {
  border-radius: 2%;
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
.detail .desc .event_tit {
  font-size: 1.4rem;
  font-weight: 600;
}
.detail .desc .lead {
  line-height: 1.6;
}
.detail .event_cate {
  padding: 4%;
  background: #f0fcdd;
  border-radius: 25px;
  margin-bottom: 6%;
}
.detail .event_cate h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
  color: #00b0cb;
}
.detail .event_cate h2 span {
  background: #00b2cd;
  color: #fff;
  border-radius: 100vh;
  padding: 0.2rem 1rem;
  font-size: 1.1rem;
  margin-right: 1rem;
  vertical-align: middle;
}
.detail .event_cate .note {
  text-align: center;
  font-size: smaller;
  margin-bottom: 1rem;
  color: #414141;
}
.detail table.table-01 {
  width: 100%;
  border: 1px #888888 solid;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1rem;
}

/* ヘッダー行 */
.detail table.table-01 th {
  padding: 1px;
  border: 1px #888888 solid;
  border-width: 0 1px 1px 1px;
  background: #e6e6e6;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

/* 通常行 */
.detail table.table-01 td {
  padding: 12px;
  border: 1px #888888 solid;
  border-width: 0 0 1px 1px;
  background: #ffffff;
  /* text-align: center; */
  /* vertical-align: middle; */
}
.detail table.table-01 td a {
  color: #f08500;
  text-decoration: underline;
  transition: 0.3s;
}
.detail table.table-01 td a:hover {
  color: #ceb500;
}
.detail table.table-01 .bold {
  font-weight: bold;
  color: #ea3361;
}

.rest {
  text-align: center;
  background: #a3eb8f;
  font-size: 1.3rem;
  font-weight: 600;
  max-width: 600px;
  padding: 0.6rem 0;
  margin: -1rem auto 3rem;
}
/*
.form {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  height: 750px;
}
.form iframe {
  width: 100%;
  height: 100%;
}
*/
@media screen and (max-width: 890px) {
  .event {
    padding: 11rem 3rem 6rem;
  }
}
@media screen and (max-width: 768px) {
  .event {
    padding: 6rem 3rem 6rem;
  }
}
@media screen and (max-width: 540px) {
  .event {
    padding: 6rem 1rem 6rem;
  }
  .event_inner {
    padding: 3rem 1rem;
  }
  .detail .event_cate h2 span {
    display: block;
    margin-bottom: 1rem;
  }
}

/*******************************************************************
詳細ページ
*******************************************************************/
.info_line {
  width: 100%;
  margin: 4% auto 4% auto;
}
.info_line p {
  font-size: 110%;
}
.info_line p span {
  background-color: #7edfeb;
  padding: 3px 12px;
  margin: 4px 10px 4px 0px;
  border-radius: 999px;
  font-size: 85%;
  text-align: center;
  min-width: 120px;
  display: inline-block;
}

.info_line2 {
  width: 100%;
  margin: 4% auto 4% auto;
}
.info_line2 p {
  font-size: 110%;
}
.info_line2 p span {
  background-color: #ff97d6;
  padding: 3px 12px;
  margin: 4px 10px 4px 0px;
  border-radius: 999px;
  font-size: 85%;
  text-align: center;
  min-width: 120px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .info_line p span,
  .info_line2 p span {
    display: block;
    padding: 1px 12px;
  }
  .info_line p,
  .info_line2 p {
    margin-bottom: 3%;
  }
}
.table-td-01 {
  width: 20%;
  max-width: 120px;
}

.eventbutton {
  width: 100%;
  max-width: 800px;
  padding: 25px 30px;
  margin: 10px auto 20px auto;
  text-decoration: none;
  background-color: #ff9326;
  display: block;
  transition: 0.2s;
  border-radius: 6px;
}
.eventbutton p {
  font-size: 130%;
  line-height: 150%;
  color: #fff;
  text-align: center;
}
a.eventbutton:hover {
  opacity: 0.8;
}
/*******************************************************************
instructor
*******************************************************************/
.instructor {
  padding: 11rem 5rem 6rem;
  background-color: #c5d700;
}
.instructor_inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  border: 5px solid #000;
  padding: 3rem;
}
.instructor_inner .tit img {
  margin: 0 auto 2.5rem;
  max-width: 280px;
  width: 100%;
  padding: 0 1rem 0 0;
}
.instructor .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.instructor .list .list_box {
  width: 45%;
  padding: 3%;
  border: 2px solid #000;
  border-radius: 10px;
}
.instructor .list .list_box .img {
  margin-bottom: 1rem;
}
.instructor .list .list_box .img img {
  border-radius: 20px;
  margin: 0 auto;
  max-width: 340px;
  width: 100%;
}

.instructor .list .list_box .desc p span {
  background: #abf8ad;
  padding: 1px 6px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 0.9rem;
  vertical-align: middle;
}
.instructor .list .list_box .name {
  font-size: 1.5rem;
  line-height: 1.4;
}
.instructor .list .list_box .name_sub {
  font-size: 0.8rem;
  line-height: 1.2;
}
.instructor .list .list_box .introduce {
  line-height: 1.5;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 3px dotted #e6de98;
  border-bottom: 3px dotted #e6de98;
}

.instructor .list .list_box .charge a {
  color: #f08500;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.3s;
}
.instructor .list .list_box .charge a:hover {
  color: #b5c200;
}
@media screen and (max-width: 890px) {
  .instructor {
    padding: 11rem 3rem 6rem;
  }
  .instructor_inner {
    padding: 3rem 1.4rem;
  }
  .instructor .list {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .instructor {
    padding: 6rem 3rem 6rem;
  }
  .instructor .list .list_box {
    width: 100%;
    padding: 7%;
  }
}
@media screen and (max-width: 540px) {
  .instructor {
    padding: 6rem 1rem 6rem;
  }
  .instructor_inner .tit img {
    max-width: 300px;
    padding: 0 2rem 0 1.5rem;
  }
  .instructor_inner {
    padding: 3rem 1rem;
  }
  .instructor .list .list_box {
    padding: 7% 5%;
  }
}
/*******************************************************************
Single
*******************************************************************/
.single {
  padding: 11rem 5rem 6rem;
  background-color: #c5d700;
}
.single_inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 3rem;
}
.tit_single {
  margin-bottom: 1rem;
}
.single .pp .txt {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .single {
    padding: 10rem 3rem 6rem;
  }
}
@media screen and (max-width: 540px) {
  .single {
    padding: 10rem 1rem 6rem;
  }
  .single_inner {
    padding: 3rem 1.5rem;
  }
}
/*******************************************************************
footer
*******************************************************************/
.footer {
  width: 100%;
  padding: 4rem 0 5rem;
  border-top: 2px solid #62ad00;
  background-color: #f7f7f7;
}
.footer_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer_inner {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
.footer_inner .address {
  width: 35%;
}
.footer_inner .address .info {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.footer_inner .logo {
  margin-bottom: 2rem;
  max-width: 230px;
}
.footer_inner #copy {
  font-size: 0.7rem;
}
.footer_inner .menu {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer_inner .menu h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer_inner .menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}
.footer_inner .menu ul li a {
  transition: 0.3s;
}
.footer_inner .menu ul li a:hover {
  color: #ea5545;
}
.footer_inner .menu ul.other {
  margin-top: 3rem;
}
.footer_inner .menu .manabi,
.footer_inner .menu .waku {
  width: 50%;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 98;
  transition: 0.3s;
  font-size: 3.8rem;
}
#page-top a {
  color: #0fb384;
  transition: 0.3s;
}
#page-top a:hover {
  color: #00a664;
}
@media (max-width: 970px) {
  .footer_inner {
    flex-direction: column;
    padding: 0 3rem;
  }
  .footer_inner .address {
    order: 2;
    width: 100%;
  }
  .footer_inner .menu {
    order: 1;
    width: 100%;
  }
  .footer_inner .menu ul {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}

@media (max-width: 680px) {
  .footer_inner .menu {
    flex-direction: column;
  }
  .footer_inner .menu .manabi,
  .footer_inner .menu .waku {
    width: 100%;
  }
  .footer_inner {
    padding: 0 2rem;
  }
}
