@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

*:focus {
  outline: none;
}

body,
html,
div,
p,
span,
blockquote,
u,
s,
i,
b,
table,
tr,
th,
td,
ul,
ol,
dl,
li,
dt,
dd,
strong,
h1,
h2,
h3,
h4,
h5,
em,
header,
footer,
nav,
aside,
section,
input,
select,
option,
textarea,
button {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: justify;
  text-justify: inter-ideograph;
  color: inherit;
}

body {
  font-weight: 400;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #595757;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  transition-property: all;
  transition: 0.3s linear;
}
a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
}

.wrap {
  width: 100vw;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1090px;
}

.black {
  color: #000 !important;
}

.white {
  color: #fff !important;
}

.yellow {
  color: #EFB918 !important;
}

.orange {
  color: #F4A000 !important;
}

.pink {
  color: #E4007F !important;
}

.s-pink {
  color: #ED7C7E !important;
}

.link {
  color: #0080ff !important;
}

.bg-black {
  background: #000 !important;
}

.bg-white {
  background: #fff !important;
}

.bg-yellow {
  background: #EFB918 !important;
}

.bg-cream {
  background: #E8DCC5 !important;
}

.bg-pink {
  background: #E4007F !important;
}

.bg-orange {
  background: #F4A000 !important;
}

.bg-b-yellow {
  background: #FFF100 !important;
}

.bg-l-yellow {
  background: #FFFCDB !important;
}

.bg-s-pink {
  background: #ED7C7E !important;
}

.bg-lemon {
  background: #F4EEB3 !important;
}

.small {
  font-size: 0.8rem !important;
}

.normal {
  font-size: 1rem !important;
}

.big {
  font-size: 1.5rem !important;
}

.large {
  font-size: 2rem !important;
}

.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.bold {
  font-weight: 700 !important;
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.m-only {
  display: none;
}
@media (max-width: 429px) {
  .m-only {
    display: block;
  }
}

@media (min-width: 429px) {
  .middle-pc-only {
    display: block;
  }
}
@media (max-width: 428px) {
  .middle-pc-only {
    display: none;
  }
}

.middle-only {
  display: none;
}
@media (max-width: 428px) {
  .middle-only {
    display: block;
  }
}

.ib {
  display: inline-block;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px 0;
  z-index: 10;
}
@media (max-width: 768px) {
  header {
    padding: 20px 0;
  }
}

.header_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .header_wrap {
    padding: 0 20px;
  }
}

.header_logo {
  display: block;
  width: 200px;
}

.header_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.header_menu li {
  padding-left: 15px;
}
.header_menu a {
  display: block;
}
@media (max-width: 768px) {
  .header_menu {
    width: 100%;
  }
  .header_menu li {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .header_menu li a {
    padding: 10px 0;
  }
}

.header_bars {
  position: relative;
  z-index: 100;
}
.header_bars span {
  display: block;
  margin: 5px 0;
  width: 30px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: all 0.6s;
}
.header_bars:hover {
  cursor: pointer;
}
.header_bars::after {
  content: "menu";
  display: block;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateY(0) translateX(-50%) rotate(0);
  -webkit-transform: translateY(0) translateX(-50%) rotate(0);
  font-size: 0.6rem;
  text-transform: uppercase;
  transition: all 0.6s;
  color: #000;
}

.header_bars.active::after {
  content: "close";
  color: #000;
}
.header_bars.active span {
  background: #000;
}
.header_bars.active span:nth-child(1) {
  transform: translateY(6px) rotate(-45deg);
}
.header_bars.active span:nth-child(2) {
  opacity: 0;
}
.header_bars.active span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

nav {
  position: fixed;
  top: 20px;
  right: 1vw;
  padding: 70px 40px 40px 50px;
  width: 100%;
  max-width: 300px;
  transform: translateX(500px);
  transition: all 0.4s ease-in-out;
  border: 1px solid #fff;
}
nav img {
  display: block;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
}
nav ul {
  margin-top: 30px;
}
nav ul li {
  position: relative;
  opacity: 0;
}
nav ul li::before {
  content: "+";
  display: block;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%) translateX(-10px);
  -webkit-transform: translateY(-50%) translateX(-10px);
  margin-right: 10px;
  color: #000;
  font-weight: 900;
}
nav ul li::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background: #fff;
  transition: all 0.4s ease-in;
}
nav ul li:hover::after {
  width: 100%;
}
nav ul li:nth-child(n+2) {
  margin-top: 15px;
}
nav ul a {
  display: block;
  font-size: 1.2rem;
  color: #000;
}
nav ul a:hover {
  opacity: 1;
}
@media (max-width: 500px) {
  nav {
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    max-width: initial;
    border: none;
  }
  nav img {
    display: block;
    margin: 0 auto;
    width: 200px;
  }
}

nav.active {
  transform: translate(0);
}
nav.active img {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
nav.active li {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
nav.active li:nth-child(1) {
  animation-delay: 0.35s;
}
nav.active li:nth-child(2) {
  animation-delay: 0.4s;
}
nav.active li:nth-child(3) {
  animation-delay: 0.45s;
}
nav.active li:nth-child(4) {
  animation-delay: 0.5s;
}
nav.active li:nth-child(5) {
  animation-delay: 0.55s;
}
nav.active li:nth-child(6) {
  animation-delay: 0.6s;
}
nav.active li:nth-child(7) {
  animation-delay: 0.65s;
}
nav.active li:nth-child(8) {
  animation-delay: 0.7s;
}
nav.active li:nth-child(9) {
  animation-delay: 0.75s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.footer_nav {
  padding: 20px 0;
}

.footer_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  background: #000;
}
.footer_menu a {
  color: #fff;
}

.footer_content {
  padding-top: 60px;
}

.footer_content_img {
  margin: 0 auto;
  max-width: 90%;
}

.footer_content_text {
  margin: 20px 0 30px;
}

.footer_contact {
  padding: 60px 0;
  font-size: 1.2rem;
  font-weight: 900;
}
.footer_contact a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px auto 60px;
  padding: 20px;
  max-width: 400px;
  text-align: center;
  color: #000;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 20px;
  border: 2px solid #000;
}
.footer_contact a::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 40px;
  height: 30px;
  background-image: url(../img/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer_contact img {
  display: block;
  margin: 0 auto;
  width: 250px;
}
@media (max-width: 768px) {
  .footer_contact a {
    font-size: 1.2rem;
  }
}

.copyright {
  padding: 15px 0;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 0.6rem;
  }
}

.totop {
  display: table;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.totop img {
  width: 25px;
}
.totop:hover {
  cursor: pointer;
}

.searchform {
  position: relative;
  width: 327px;
}
.searchform input {
  width: 100%;
  padding: 12px 59px 12px 12px;
  border: 1px solid #000;
}
.searchform button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: #000;
  border: 1px solid #000;
}
.searchform button:hover {
  cursor: pointer;
}
.searchform button img {
  width: 25px;
}

#class_search_error {
  text-align: center;
  color: red;
}

.breadcrumb {
  padding: 6px 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb ul li::after {
  content: "»";
  margin: 0 10px;
}
.breadcrumb ul li:last-child::after {
  display: none;
}

article .single_thumbnail {
  margin: 30px 0;
  width: 100%;
}
article figcaption {
  text-align: center;
}
article h1 {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  article h1 {
    font-size: 25px;
  }
}
article h2 {
  margin-top: 60px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  background: #EFB918;
}
article h3 {
  margin-top: 60px;
  padding: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}
article h4 {
  margin-top: 40px;
  font-weight: 700;
}
article p {
  margin: 30px 0;
  line-height: 2;
}
article a {
  text-decoration: underline;
}
article a:hover {
  text-decoration: none;
}
article .wp-block-table {
  margin-right: 10px;
  margin-left: 10px;
}
article table {
  min-width: 100%;
  border-bottom: 2px solid #dfdfdf;
}
article table tr:nth-child(odd) {
  background: #dfdfdf;
}
article table th, article table td {
  padding: 10px;
}
article table th {
  font-weight: 700;
  color: #fff;
  background: #acacac;
}
article strong {
  font-weight: 700;
  font-style: normal;
}
article em {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(transparent 60%, #acacac 60%);
}
article ul, article ol {
  margin-top: 30px;
  padding: 15px 10px 15px 40px;
  background: #dfdfdf;
}
article ul li, article ol li {
  padding-top: 10px;
}
article ul li:first-child, article ol li:first-child {
  padding-top: 0;
}
article ul {
  list-style-type: disc;
}
article ol {
  list-style-type: decimal;
}
article dl {
  margin-top: 30px;
}
article dl dt {
  padding-top: 10px;
}
article dl dt:first-child {
  padding-top: 0;
}
article dl dd {
  padding: 3px 0 3px 20px;
}
article input[type=text],
article input[type=tel],
article input[type=email],
article textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #acacac;
}
article input[type=submit] {
  display: table;
  margin: 0 auto;
  padding: 5px 40px;
  color: #000;
  background: #acacac;
  border: 2px solid #acacac;
}
article input[type=submit]:hover {
  color: #000;
  background: #fff;
}
article input[type=submit]:active {
  color: #000;
  background: #fff;
}
article blockquote {
  position: relative;
  margin-top: 30px;
  padding: 40px;
  background: #dfdfdf;
}
article blockquote p:first-child {
  margin-top: 0;
}
article blockquote::before, article blockquote::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
article blockquote::before {
  top: 10px;
  left: 10px;
  background-image: url("../img/icon_quote1.svg");
}
article blockquote::after {
  right: 10px;
  bottom: 10px;
  background-image: url("../img/icon_quote2.svg");
}
article blockquote cite {
  padding-top: 20px;
  font-style: normal;
  font-size: 0.8rem;
  color: #acacac;
}

.toc {
  display: table;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #acacac;
}

.toc_title {
  margin-top: 0;
  text-align: center;
  font-weight: 700;
}

.toc_list {
  counter-reset: dt;
}
.toc_list dt, .toc_list dd {
  text-decoration: underline;
}
.toc_list dt:hover, .toc_list dd:hover {
  cursor: pointer;
  text-decoration: none;
}
.toc_list dt {
  counter-increment: dt;
  counter-reset: dd;
  padding: 20px 0 0 20px;
}
.toc_list dt::before {
  content: counter(dt) ". ";
  margin-left: -20px;
}
.toc_list dd {
  counter-increment: dd;
  padding-left: 47px;
}
.toc_list dd::before {
  content: counter(dt) "-" counter(dd) ". ";
  margin-left: -34px;
}

.item_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.item_list .item {
  width: 30%;
  opacity: 0;
}
@media (max-width: 768px) {
  .item_list .item {
    width: 100%;
  }
  .item_list .item:nth-child(n+2) {
    margin-top: 80px;
  }
}
.item_list .item.fade_item {
  animation-name: fadeUpItem;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.item_list .item.fade_item:nth-child(1) {
  animation-delay: 0.4s;
}
.item_list .item.fade_item:nth-child(2) {
  animation-delay: 0.5s;
}
.item_list .item.fade_item:nth-child(3) {
  animation-delay: 0.6s;
}
.item_list .item_ttl_wrap {
  margin: 20px 0;
  padding-left: 20px;
}
.item_list .item_ttl_wrap .item_subttl {
  font-size: 1rem;
  font-weight: bold;
}
.item_list .item_ttl_wrap .item_ttl {
  margin-top: 3px;
  font-size: 1rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .item_list .item_ttl_wrap .item_subttl, .item_list .item_ttl_wrap .item_subttl {
    font-size: 1rem;
  }
}
.item_list .item_desc {
  margin-bottom: 40px;
}

@keyframes fadeUpItem {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.page_padi {
  padding: 120px 0 80px;
}

.sec_padi_over {
  padding: 120px 0 100px;
}

.ttl {
  margin-bottom: 60px;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .ttl {
    margin-bottom: 40px;
    font-size: 2rem;
  }
}

.sec_ttl h1, .sec_ttl h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
}
.sec_ttl .sec_subttl {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
}
@media (max-width: 768px) {
  .sec_ttl h1, .sec_ttl h2 {
    font-size: 2rem;
  }
  .sec_ttl .sec_subttl {
    font-size: 1rem;
  }
}

.m_ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .m_ttl {
    font-size: 1.5rem;
  }
}

.s_ttl {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .s_ttl {
    font-size: 1.2rem;
  }
}

.n_text {
  margin: 60px auto 0;
  max-width: 700px;
}

.sub_text {
  margin: 20px 0 50px;
}

.side_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.side_wrap .side_img {
  width: 45%;
}
.side_wrap .side_content {
  width: 52%;
}
@media (max-width: 768px) {
  .side_wrap .side_img {
    width: 100%;
  }
  .side_wrap .side_content {
    margin-top: 15px;
    width: 100%;
  }
}

.side_wrap_equality {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.side_wrap_equality .side_item {
  width: 48%;
}
.side_wrap_equality .side_item img {
  display: block;
  margin: 0 auto;
  height: 300px;
  width: auto;
}
.side_wrap_equality .side_item p:first-of-type {
  margin-top: 30px;
}
.side_wrap_equality .side_item p:nth-of-type(n+2) {
  margin-top: 10px;
}
.side_wrap_equality .side_item_ttl {
  font-size: 1.5rem;
  font-weight: 900;
}
.side_wrap_equality .side_item_subttl {
  font-size: 1.2rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .side_wrap_equality .side_item {
    width: 100%;
  }
  .side_wrap_equality .side_item:nth-child(n+2) {
    margin-top: 50px;
  }
}

.ttl_band {
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  background: #F4A000;
}

.content_wrap {
  margin-top: 60px;
}

.desc_item_list:nth-child(n+2) {
  margin-top: 60px;
}
.desc_item_list dt {
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
}
.desc_item_list dd {
  margin-top: 20px;
}
.desc_item_list dd li {
  text-align: center;
  font-weight: 900;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .desc_item_list dt {
    font-size: 1.5rem;
  }
  .desc_item_list dd li {
    font-size: 1rem;
  }
}

.sec_padi {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .sec_padi {
    padding: 60px 0 80px;
  }
}

.sec_padi_top {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .sec_padi_top {
    padding-top: 80px;
  }
}

.sec_padi_bottom {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .sec_padi_bottom {
    padding-bottom: 80px;
  }
}

.page_sec_padi {
  padding: 120px 0 100px;
}

.wavy {
  display: block;
}

.wavy_padi {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .wavy_padi {
    padding: 80px 0;
  }
}

.desc_wrap {
  margin-top: 100px;
}

.desc_item:nth-child(n+2) {
  margin-top: 100px;
}
.desc_item .desc_item_content:nth-child(n+2) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .desc_item:nth-child(n+2) {
    margin-top: 80px;
  }
  .desc_item .desc_item_content:nth-child(n+2) {
    margin-top: 30px;
  }
}

.desc_item_img {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .desc_item_img {
    max-width: 300px;
    width: 80%;
  }
}

.big_img {
  margin-top: 60px;
}
.big_img img, .big_img iframe {
  display: block;
  width: 100%;
}

.bottom_img {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.button_circle {
  display: block;
  margin: 30px auto 0;
  padding: 15px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  border-radius: 50px;
  border: none;
}

.button_square {
  display: block;
  margin: 0 auto;
  padding: 15px 20px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  border-radius: 10px;
}

.news_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 30px;
  color: #000;
  border: 1px solid #000;
}
.news_item:nth-child(n+2) {
  border-top: none;
}
.news_item .news_date {
  margin-right: 20px;
}

.sns_wrap {
  padding: 20px 0;
}

.sns_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.sns_content a {
  display: block;
}
.sns_content a img {
  width: auto;
  height: 40px;
  object-fit: contain;
}
.sns_content a:nth-child(1) {
  margin-right: 10px;
}
.sns_content a:nth-child(2) {
  margin-left: 10px;
}

.under_yellow {
  display: table;
  line-height: 1.8;
  text-decoration: underline;
  text-decoration-color: #EFB918;
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.select_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 40px 0;
}
.select_wrap select {
  padding: 10px 30px;
  text-align: center;
}
.select_wrap option {
  text-align: center;
}
@media (max-width: 768px) {
  .select_wrap {
    display: block;
  }
  .select_wrap select {
    display: block;
    width: 177px;
    margin: 0 auto;
  }
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}
.pager li {
  margin: 0 5px;
}
.pager a {
  padding: 10px 15px;
  color: #fff;
  border-radius: 10px;
}
.pager a:hover {
  color: #000;
  background: #fff;
  opacity: 1;
}
@media (max-width: 428px) {
  .pager a {
    padding: 5px 10px;
  }
}
.pager .current a {
  color: #000;
  background: #fff;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.contact_table {
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
}
.contact_table tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.contact_table tr:nth-child(n+2) {
  margin-top: 30px;
}
.contact_table th {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 3px 10px 10px 0;
  color: #fff;
}
.contact_table th::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  background: #fff;
}
.contact_table td {
  width: 70%;
}
@media (max-width: 768px) {
  .contact_table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .contact_table th, .contact_table td {
    width: 100%;
  }
  .contact_table th {
    padding-bottom: 0;
    padding-right: 10px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .contact_table th {
    padding-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .contact_table td {
    padding-top: 5px;
    padding-left: 0;
  }
}
.contact_table input[type=text],
.contact_table input[type=tel],
.contact_table input[type=email],
.contact_table textarea {
  padding: 5px 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
}
.contact_table textarea {
  min-height: 200px;
}
.contact_table label:hover {
  cursor: pointer;
}
.contact_table input[type=checkbox] + label {
  position: relative;
  padding-right: 20px;
}
.contact_table input[type=checkbox] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
}
.contact_table input[type=checkbox]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: -4px;
  left: 4px;
  width: 0.4em;
  height: 1em;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
}
.contact_table input[type=radio] + label {
  position: relative;
  padding-right: 20px;
  color: #fff;
}
.contact_table input[type=radio] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #fff;
  border-radius: 50%;
}
.contact_table input[type=radio]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: 4px;
  left: 3px;
  width: 0.6em;
  height: 0.6em;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 429px) {
  .contact_table input[type=radio] + label {
    display: block;
  }
  .contact_table input[type=radio] + label:nth-of-type(n+2) {
    margin-top: 10px;
  }
}

.contact_error {
  display: none;
  padding-top: 5px;
  color: red;
}

.contact_error_all {
  margin: 40px 0;
  display: none;
  text-align: center;
  color: red;
}

.contact_submit button {
  display: table;
  margin: 60px auto 0 auto;
  padding: 10px 50px;
  color: #fff;
  background: #000;
  border: 2px solid #000;
}
.contact_submit button:active {
  color: #000;
  background: #fff;
}
.contact_submit a {
  display: table;
  margin: 10px auto 0 auto;
  padding: 10px 50px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 0, 0, 0.5);
}

input[type=submit] {
  cursor: pointer;
}

.privacy_check_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
.privacy_check_wrap th {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 10px 10px 10px 0;
  color: #fff;
  font-weight: bold;
}
.privacy_check_wrap th::before {
  content: "";
  display: block;
  margin: 7px 10px 0 0;
  width: 13px;
  height: 13px;
  background: #EFB918;
}
.privacy_check_wrap td {
  width: 70%;
  padding: 10px 0 10px 10px;
}
@media (max-width: 768px) {
  .privacy_check_wrap tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .privacy_check_wrap th, .privacy_check_wrap td {
    width: 100%;
  }
  .privacy_check_wrap th {
    padding-bottom: 0;
    padding-right: 10px;
  }
  .privacy_check_wrap td {
    padding-top: 5px;
    padding-left: 0;
  }
}
.privacy_check_wrap textarea {
  height: 250px;
}
.privacy_check_wrap input[type=text],
.privacy_check_wrap input[type=tel],
.privacy_check_wrap input[type=email],
.privacy_check_wrap textarea {
  padding: 5px 10px;
  width: 100%;
  -webkit-appearance: none;
  border: none;
  border-radius: 5px;
}
.privacy_check_wrap label:hover {
  cursor: pointer;
}
.privacy_check_wrap input[type=checkbox] + label {
  position: relative;
  padding-right: 20px;
}
.privacy_check_wrap input[type=checkbox] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
}
.privacy_check_wrap input[type=checkbox]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: -4px;
  left: 4px;
  width: 0.4em;
  height: 1em;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
}
.privacy_check_wrap input[type=radio] + label {
  position: relative;
  padding-right: 20px;
}
.privacy_check_wrap input[type=radio] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  border-radius: 50%;
}
.privacy_check_wrap input[type=radio]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: 3px;
  left: 4px;
  width: 0.6em;
  height: 0.6em;
  background: #000;
  border-radius: 50%;
}

.privacy_wrap {
  margin: 30px auto 0;
  max-width: 800px;
}

.privacy_ttl {
  color: #fff;
  font-weight: bold;
}

.privacy_text {
  margin: 10px 0;
  color: #fff;
  font-size: 0.8rem;
}

.privacy_check_wrap {
  display: table;
  margin: 30px 0 0;
  text-align: center;
  color: #fff;
}
.privacy_check_wrap input[type=checkbox] + label::before {
  border: 1px solid #000;
  background: #fff;
}
.privacy_check_wrap input[type=checkbox]:checked + label::after {
  top: -1px;
  left: 6px;
  border-right: 3px solid #E4007F;
  border-bottom: 3px solid #E4007F;
}

.privacy_link {
  margin-top: 30px;
}
.privacy_link a {
  color: #0000FF;
  text-decoration: underline;
}

.main_vis {
  position: relative;
}

.main_vis_back img {
  display: block;
  width: 100%;
}

.main_logo {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  display: block;
  width: 40vw;
  max-width: 600px;
  z-index: 1;
}
@media (max-width: 429px) {
  .main_logo {
    max-width: 250px;
  }
}

.main_ttl {
  position: absolute;
  top: 17vw;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  display: block;
  white-space: nowrap;
  z-index: 1;
  font-weight: 900;
}
.main_ttl img {
  display: block;
  height: 200px;
}

.main_ttl_wrap {
  display: block;
  position: absolute;
  top: 17vw;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.main_ttl_wrap h1, .main_ttl_wrap h2 {
  width: calc(100vw - 40px);
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
}
.main_ttl_wrap .sub_ttl {
  margin-top: 10px;
  width: calc(100vw - 40px);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .main_ttl_wrap {
    top: 34vw;
  }
  .main_ttl_wrap h1, .main_ttl_wrap h2 {
    font-size: 2rem;
    line-height: 1;
  }
  .main_ttl_wrap .sub_ttl {
    font-size: 1rem;
  }
}

.main_ttl.top {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .main_ttl.top {
    font-size: 10vw;
    top: 40vw;
  }
}

.top-news {
  padding: 15px 0;
}

.top-news_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .top-news_wrap {
    display: block;
  }
}

.top-news_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  color: #fff;
}
.top-news_item time {
  white-space: nowrap;
}
.top-news_item p {
  flex: 1;
  margin: 0 20px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .top-news_item p {
    margin-right: 0;
  }
}

.top-news_home {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  color: #fff;
  white-space: nowrap;
}
.top-news_home::after {
  content: ">";
  margin-left: 10px;
  font-weight: bold;
  transition: 0.4s all;
}
.top-news_home:hover::after {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .top-news_home {
    margin-top: 20px;
    justify-content: center;
  }
}

.president {
  position: relative;
}
.president img {
  display: block;
  width: 100%;
}
.president dl {
  display: table;
  position: absolute;
  right: 8vw;
  bottom: 30px;
  color: #fff;
}
.president dt {
  text-align: center;
  font-size: 1.2rem;
}
.president dd p {
  text-align: center;
}
.president dd .ja {
  font-size: 3rem;
}
.president dd .en {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .president dl {
    right: 5vw;
    bottom: 20px;
  }
  .president dt {
    font-size: 1rem;
  }
  .president dd .ja {
    font-size: 1.5rem;
  }
  .president dd .en {
    font-size: 1rem;
  }
}

.intro_img {
  display: block;
  margin: 0 auto;
  width: 100vw;
  max-width: 1090px;
}

.method_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.method_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px;
  width: 42vw;
  max-width: 450px;
  height: 42vw;
  max-height: 450px;
  background: #F4A000;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .method_item {
    margin: 0 auto;
    width: 90vw;
    height: 90vw;
  }
  .method_item:nth-child(n+2) {
    margin-top: 60px;
  }
}

.method_item_contet dt {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
}
.method_item_contet dd {
  text-align: center;
}
.method_item_contet img {
  display: block;
  margin: 40px auto 0;
  width: 70%;
  max-width: 300px;
}
@media (max-width: 768px) {
  .method_item_contet dt {
    font-size: 1.2rem;
  }
  .method_item_contet img {
    margin-top: 20px;
  }
}

.class_desc_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.class_desc_item {
  width: 45%;
}
.class_desc_item:nth-child(n+3) {
  margin-top: 60px;
}
@media (max-width: 429px) {
  .class_desc_item {
    width: 100%;
  }
  .class_desc_item:nth-child(n+2) {
    margin-top: 60px;
  }
}

.class_desc_ttl {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 900;
}
.class_desc_ttl span {
  font-size: 1rem;
}

.class_desc_subttl {
  margin: 8px 0;
  font-weight: 900;
}

.fc_rec {
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .fc_rec {
    padding-bottom: 80px;
  }
}

.fc_rec_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 768px) {
  .fc_rec_wrap {
    justify-content: center;
  }
}

.fc_rec_img {
  width: 25%;
}
@media (max-width: 768px) {
  .fc_rec_img {
    width: 45%;
    max-width: 250px;
  }
}

.fc_rec_content {
  width: 40%;
}
@media (max-width: 768px) {
  .fc_rec_content {
    margin-top: 40px;
    width: 100%;
  }
}

.experience_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.experience_item {
  width: 45%;
}
@media (max-width: 768px) {
  .experience_item {
    width: 100%;
  }
  .experience_item:nth-child(n+2) {
    margin-top: 60px;
  }
}

.experience_img {
  margin: 0 auto;
  width: 80%;
}
@media (max-width: 768px) {
  .experience_img {
    max-width: 300px;
  }
}

.experience_ttl {
  margin-top: 30px;
  font-size: 3rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .experience_ttl {
    font-size: 1.5rem;
  }
}

.experience_subttl {
  margin: 10px 0 15px;
  font-size: 1.2rem;
  font-weight: 900;
}

.representative_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .representative_ttl {
    font-size: 2rem;
  }
}

.representative_text {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .representative_text {
    margin: 20px 0 30px;
  }
}

.representative_info {
  margin-top: 60px;
}
.representative_info .representative_info_text:nth-child(n+2) {
  margin-top: 20px;
}
.representative_info p {
  text-align: center;
}

.single_ttl {
  padding: 120px 0 40px;
  font-size: 3rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .single_ttl {
    font-size: 2rem;
  }
}

.single_main img {
  width: 100%;
}

.single_plan {
  margin-top: 30px;
}

.plan_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.plan_wrap::after {
  content: "";
  display: block;
  width: 31%;
}

.plan_item {
  position: relative;
  width: 31%;
  padding: 10px 10px 30px 10px;
  border: 3px solid #EFB918;
  border-radius: 10px;
}
.plan_item:nth-child(n+4) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .plan_item {
    width: 100%;
  }
  .plan_item:nth-child(n+2) {
    margin-top: 40px;
  }
}

.plan_ttl {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .plan_ttl {
    font-size: 1rem;
  }
}

.plan_subttl {
  text-align: center;
  font-weight: 900;
}

.plan_img {
  display: block;
  margin: 10px auto;
  width: 100%;
  max-width: 400px;
}

.plan_text {
  padding-bottom: 40px;
}

.plan_schedule {
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
}
.plan_schedule li {
  text-align: center;
  font-weight: 900;
}

.coach_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.coach_item:nth-child(n+2) {
  margin-top: 80px;
}

.coach_info_img {
  width: 40%;
}
@media (max-width: 768px) {
  .coach_info_img {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }
}

.coach_info_wrap {
  width: 55%;
}
.coach_info_wrap dt {
  font-size: 1.5rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .coach_info_wrap {
    margin-top: 30px;
    width: 100%;
  }
  .coach_info_wrap dt {
    font-size: 1.2rem;
  }
}

.coach_name {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.coach_name dd {
  margin-top: 5px;
}

.coach_lisence {
  margin-top: 15px;
}
.coach_lisence dd {
  margin-top: 5px;
}

.coach_message {
  margin-top: 40px;
}
.coach_message dd {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .coach_message {
    margin-top: 15px;
  }
}

.googlemap {
  margin: 40px 0;
}
.googlemap iframe {
  width: 100%;
}

.invite_button {
  margin: 60px auto 100px;
}

.single_info {
  margin: 50px 0;
}

.single_info_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .single_info_wrap {
    display: block;
  }
}

.class_info {
  width: 45%;
}
.class_info dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.2rem;
}
.class_info dl:nth-child(n+2) {
  margin-top: 20px;
}
.class_info dt {
  padding: 20px;
  width: 40%;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #F4A000;
}
.class_info dd {
  margin-left: 30px;
  width: 55%;
  font-weight: bold;
}
.class_info dd span {
  font-weight: normal;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .class_info {
    display: table;
    margin: 0 auto;
    width: auto;
  }
  .class_info dt {
    width: 100px;
  }
  .class_info dd {
    margin-left: 20px;
    width: auto;
  }
}

.class_campain {
  padding: 20px;
  width: 50%;
  background: #FFF100;
  border: 1px solid #000;
  border-radius: 30px;
}
.class_campain dt {
  display: table;
  padding: 5px 0;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.class_campain dd {
  margin-top: 10px;
  text-align: center;
}
.class_campain a {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .class_campain {
    margin: 30px auto;
    width: 100%;
    max-width: 300px;
  }
}

.lesson_button {
  margin-top: 60px;
}

.training_button {
  margin-top: 60px;
}

.training_hold {
  margin-top: 80px;
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  background: #fff;
  border-radius: 50px;
}

.training_pay {
  display: block;
  margin: 60px auto 0;
  width: 100%;
  max-width: 300px;
}

.mothers_content {
  display: table;
  margin: 50px auto 0;
  padding: 20px;
}
.mothers_content li {
  text-align: center;
  color: #fff;
}
.mothers_content li:nth-child(n+2) {
  margin-top: 5px;
}

.partner_button:nth-of-type(n+2) {
  margin-top: 30px;
}

.partner_img_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding-top: 20px;
}

.partner_img_item {
  width: 45%;
}

.partner_list {
  font-size: 3rem;
}
.partner_list li {
  text-align: center;
  font-weight: 900;
}
.partner_list li:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .partner_list {
    font-size: 2rem;
  }
}
@media (max-width: 429px) {
  .partner_list {
    font-size: 1.2rem;
  }
}

.partner_big_img {
  padding-bottom: 80px;
}

.flow_list li {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
}
.flow_list li:nth-child(n+2) {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .flow_list li {
    font-size: 1.2rem;
  }
  .flow_list li:nth-child(n+2) {
    margin-top: 25px;
  }
}

.coaches_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.coaches_item:nth-child(n+2) {
  margin-top: 100px;
}

.coaches_img {
  width: 45%;
}
@media (max-width: 768px) {
  .coaches_img {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
}

.coaches_block {
  margin-top: 30px;
  width: 48%;
}
@media (max-width: 768px) {
  .coaches_block {
    width: 100%;
  }
}

.coach_prof {
  font-size: 1.2rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .coach_prof {
    font-size: 1rem;
  }
}

.coach_year {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .coach_year {
    margin-top: 5px;
    font-size: 1rem;
  }
}

.coach_info {
  margin-top: 30px;
}
.coach_info dt {
  font-size: 1.5rem;
  font-weight: 900;
}
.coach_info dd {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .coach_info dt {
    font-size: 1.2rem;
  }
}

.home_news .news_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.home_news .news_wrap::after {
  content: "";
  display: block;
  width: 31%;
}
@media (max-width: 768px) {
  .home_news .news_wrap::after {
    width: 100%;
  }
}
.home_news .news_item {
  position: relative;
  width: 31%;
  color: #000;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.home_news .news_item:nth-child(n+4) {
  margin-top: 30px;
}
.home_news .news_item:hover {
  transform: translateY(-10px);
  box-shadow: 5px 5px 15px #acacac;
  opacity: 1;
}
.home_news .news_item time {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media (max-width: 768px) {
  .home_news .news_item {
    width: 100%;
  }
  .home_news .news_item:nth-child(n+2) {
    margin-top: 30px;
  }
}
.home_news .news_item_img {
  width: 100%;
  height: 200px;
  border-radius: 5px 5px 0 0;
}
.home_news .news_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.home_news .news_item_noimg {
  width: 100%;
  height: 200px;
  position: relative;
  border-radius: 5px 5px 0 0;
  object-fit: cover;
}
.home_news .news_item_noimg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
  object-fit: cover;
}
.home_news .new_item_content {
  position: relative;
  padding: 10px 10px 50px 10px;
  border-radius: 0 0 5px 5px;
}/*# sourceMappingURL=style.css.map */