@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@600&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #222222;
}

main {
  margin-top: 100px;
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

i {
  display: inline-block;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  font-weight: 500;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1080px;
  padding: 80px 0;
  margin: 0 auto;
}
.container_long {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 80px 0;
  }
}

.flex_box {
  display: flex;
}
.flex_box.wrap {
  flex-wrap: wrap;
  flex-direction: row;
}
.flex_box.column {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
  .flex_box.reverse {
    flex-direction: column-reverse;
  }
}

.border_bottom.solid {
  border-bottom: 3px solid;
}
.border_bottom.dotted {
  border-bottom: 5px dotted;
}
.border_bottom.pink {
  border-color: #FF6C6C;
}
.border_bottom.orange {
  border-color: #FFA51D;
}
.border_bottom.yellow {
  border-color: #FFF046;
}
.border_bottom.palegreen {
  border-color: #98F376;
}
.border_bottom.green {
  border-color: #00A340;
}
.border_bottom.paleblue {
  border-color: #84DBFF;
}
.border_bottom.blue {
  border-color: #00A0DF;
}
.border_bottom.violet {
  border-color: #E68EDF;
}
.border_bottom.purple {
  border-color: #A18EE6;
}
.border_bottom.white {
  border-color: #ffffff;
}

.page_title {
  height: 250px;
  margin-top: 120px;
  overflow-x: hidden;
  position: relative;
}
.page_title h2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7%;
}
.page_title img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 30%;
}
@media screen and (max-width: 767px) {
  .page_title {
    height: 230px;
    padding: 10px 0 0 20px;
  }
  .page_title h2 {
    position: inherit;
    top: 0;
    left: 0;
    transform: translateX(0);
  }
  .page_title img {
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
  }
}

#pan {
  width: 90%;
  max-width: 1200px;
  margin: 10px auto 0;
  font-weight: normal;
  text-align: right;
}
#pan li {
  font-size: 1.2rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
}
#pan li::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 0px;
}
#pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
}
#pan li:last-child::before {
  display: none;
}
#pan a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #pan {
    margin-left: 20px;
  }
}

.btn {
  width: 250px;
  border-radius: 30px;
  border: 3px solid;
  padding: 17px 10px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
.btn:hover {
  opacity: 0.7;
}
.btn_box {
  text-align: center;
}
.btn_pink {
  border-color: #FF6C6C;
  background-color: #FF6C6C;
}
.btn_orange {
  border-color: #FFA51D;
  background-color: #FFA51D;
}
.btn_yellow {
  border-color: #FFF046;
  background-color: #FFF046;
  color: #222222;
}
.btn_palegreen {
  border-color: #98F376;
  background-color: #98F376;
}
.btn_green {
  border-color: #00A340;
  background-color: #00A340;
}
.btn_paleblue {
  border-color: #84DBFF;
  background-color: #84DBFF;
}
.btn_blue {
  border-color: #00A0DF;
  background-color: #00A0DF;
}
.btn_violet {
  border-color: #E68EDF;
  background-color: #E68EDF;
}
.btn_purple {
  border-color: #A18EE6;
  background-color: #A18EE6;
}
.btn_white {
  background-color: #ffffff;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 15px;
  }
}

.head_text {
  margin-bottom: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
}
.head_text span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.head_text_center {
  text-align: center;
}
.head_text_pink span {
  color: #FF6C6C;
}
.head_text_orange span {
  color: #FFA51D;
}
.head_text_yellow span {
  color: #FFEA00;
}
.head_text_palegreen span {
  color: #98F376;
}
.head_text_green span {
  color: #00A340;
}
.head_text_paleblue span {
  color: #84DBFF;
}
.head_text_blue span {
  color: #00A0DF;
}
.head_text_violet span {
  color: #E68EDF;
}
.head_text_purple span {
  color: #A18EE6;
}
.head_text_white span {
  color: #ffffff;
}
.head_text.border_bottom {
  padding-bottom: 20px;
}
.head_text.deco_dotted {
  margin-bottom: 60px;
  position: relative;
}
.head_text.deco_dotted:before {
  content: "";
  width: 100px;
  height: 1px;
  border-top: 5px dotted;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.head_text.deco_dotted.white:before {
  border-color: #ffffff;
}
.tel_num_address {
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1.5;
}
.tel_num_address span {
  display: inline-block;
  border-radius: 20px;
  padding: 0 7px;
  margin-right: 5px;
  background-color: #222222;
  color: #ffffff;
  font-size: 1.5rem;
}
.tel_num_info {
  font-size: 1.4rem;
}
.tel_num.btn {
  padding: 10px;
  font-size: 2.4rem;
  font-weight: 500;
}
.tel_num.btn span {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.6rem;
}
.tel_num:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
  }
}

.sns_link_fixed {
  gap: 30px;
  position: fixed;
  top: 25%;
  right: 20px;
  z-index: 5;
}
.sns_link_fixed i {
  color: #222222;
  font-size: 3.4rem;
  transition: 0.3s ease;
}
.sns_link_fixed a:hover i {
  color: #FF6C6C;
}
.sns_link_fixed .text_link {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  writing-mode: vertical-rl;
}
.sns_link_fixed .text_link:hover {
  color: #FF6C6C;
}
.sns_link_fixed .text_link:last-child i {
  font-size: 2.5rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .sns_link_fixed .text_link {
    display: none;
  }
}

.grobal_contact_link {
  position: fixed;
}
.grobal_contact_link:hover {
  opacity: 0.7;
}
.grobal_contact_link.only_pc {
  bottom: 70px;
  right: 70px;
}
.grobal_contact_link.only_sp {
  width: 100%;
  padding: 20px;
  background-color: #FF6C6C;
  color: #ffffff;
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  bottom: 0;
  left: 0;
}

.scroll_top {
  display: none;
  width: 90px;
  transition: all 0s;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.scroll_top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .scroll_top {
    bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.header {
  width: 100%;
  padding: 15px 20px 45px 50px;
  background-image: url(../img/header_bg.webp);
  background-position: bottom;
  background-size: cover;
  align-items: center;
  justify-content: space-between;
  gap: 0 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.header_logo {
  width: 150px;
}
.header_logo:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 100%;
}
.header nav {
  flex: 1;
}
.header nav ul:not(.lesson_hover_list) {
  justify-content: flex-end;
  align-items: center;
  font-size: 1.5rem;
  gap: 10px 40px;
}
.header nav ul .gl-nav-list {
  position: relative;
  transition: all 0.3s;
}
.header nav ul .gl-nav-list .dropdown-box {
  visibility: hidden;
  opacity: 0;
  width: auto;
  height: auto;
  position: absolute;
  top: 60px;
  left: 132%;
  transform: translateX(-60%);
  transition: all 0.3s;
  display: flex;
  gap: 50px;
  border-radius: 10px;
  background-color: #FFFBCE;
  padding: 20px 0;
  z-index: 3;
}
.header nav ul .gl-nav-list .dropdown-box ul {
  gap: 20px;
  display: flex;
}
.header nav ul .gl-nav-list .dropdown-box ul:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #FFFBCE;
}
.header nav ul .gl-nav-list .dropdown-box ul li {
  width: 150px;
  text-align: center;
}
@media screen and (max-width: 1160px) {
  .header nav ul .gl-nav-list .dropdown-box ul li {
    width: 200px;
  }
}
.header nav ul .gl-nav-list .dropdown-box ul li:not(:last-child) {
  position: relative;
}
.header nav ul .gl-nav-list .dropdown-box ul li:not(:last-child):after {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFF046;
  position: absolute;
  top: 10px;
  right: -32px;
}
.header nav ul .gl-nav-list .dropdown-box ul p {
  color: #222222;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 5px;
}
.header nav ul .gl-nav-list:hover .dropdown-box {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}
.header .btn {
  width: 200px;
  padding: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
}
.header i.fa-arrow-right {
  padding-left: 5px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1579px) {
  .header {
    padding: 20px 20px 50px;
  }
  .header_logo {
    width: 100px;
  }
  .header nav ul:not(.lesson_hover_list) {
    gap: 10px 25px;
  }
  .header nav ul.lesson_hover_list {
    top: 70%;
  }
}
@media screen and (max-width: 1346px) {
  .header {
    padding: 10px 20px 30px;
  }
  .header nav {
    display: none;
  }
}

.burger_btn,
.close_btn {
  width: 55px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 3px;
  background-color: #FF6C6C;
  color: #ffffff;
  text-align: center;
  font-size: 2.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.burger_btn:hover,
.close_btn:hover {
  opacity: 0.7;
}

@media screen and (min-width: 1347px) {
  .burger_btn {
    display: none;
  }
}
.overlay {
  display: none;
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.overlay:after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 40px;
  border-top: 1px solid #fff;
  background-image: url(../img/header_bg.webp);
  background-position: bottom;
  background-size: cover;
}
.overlay .close_btn {
  position: absolute;
  top: 10px;
  right: 20px;
}
.overlay ul {
  gap: 10px;
}
.overlay ul:not(.lesson_list) {
  padding: 40px 20px 20px;
}
.overlay ul.lesson_list {
  padding-left: 10px;
  margin-top: 15px;
}
.overlay ul.lesson_list li {
  padding-left: 20px;
  position: relative;
}
.overlay ul.lesson_list li:before {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFF046;
  position: absolute;
  top: 10px;
  left: 0;
}
.overlay ul.sns_link_fixed {
  padding: 0 20px 10px;
  position: initial;
  top: auto;
  right: auto;
  gap: 30px;
}
.overlay i.fa-arrow-right {
  padding-left: 5px;
  transform: rotate(-45deg);
}
.overlay .btn {
  margin-top: 15px;
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  background-image: url(../img/footer_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.footer .container {
  padding: 80px 0;
}
.footer img {
  width: 200px;
  margin: 0 auto 10px;
}
.footer i.fa-arrow-right {
  padding-left: 5px;
  transform: rotate(-45deg);
}
.footer a:hover {
  opacity: 0.7;
}
.footer_content {
  border-radius: 30px;
  padding: 60px;
  background-color: #ffffff;
}
.footer_menu_area {
  margin-bottom: 10px;
  align-items: flex-start;
  gap: 40px 10%;
}
.footer_menu_area ul {
  flex: 1;
  gap: 20px 40px;
}
.footer_menu_area .btn {
  width: 350px;
  border-radius: 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}
.footer_menu_sub {
  justify-content: flex-end;
  font-size: 1.5rem;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer .container {
    padding: 40px 0;
  }
  .footer img {
    width: 150px;
  }
  .footer_content {
    padding: 30px 20px;
  }
  .footer_menu_area {
    margin-bottom: 30px;
  }
  .footer_menu_area ul {
    flex-direction: column !important;
  }
  .footer_menu_area .btn {
    width: 280px;
    font-size: 2rem;
  }
  .footer_menu_sub {
    justify-content: flex-start;
    gap: 20px;
  }
}

.main_visual {
  width: 100%;
  position: relative;
}
.main_visual_image_main {
  width: 90%;
  max-width: 1650px;
  aspect-ratio: 16/7;
  margin: auto auto 0;
  background-image: url(../img/mv01.webp), url(../img/mv02.webp), url(../img/mv03.webp), url(../img/mv04.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: slide 15s infinite;
}
@keyframes slide {
  0% {
    background-image: url(../img/mv01.webp);
  }
  25% {
    background-image: url(../img/mv02.webp);
  }
  50% {
    background-image: url(../img/mv03.webp);
  }
  75% {
    background-image: url(../img/mv04.webp);
  }
  100% {
    background-image: url(../img/mv01.webp);
  }
}
.main_visual_image_sub {
  width: 30%;
  max-width: 220px;
  position: absolute;
  top: 70px;
}
.main_visual_image_sub.left {
  left: 5%;
}
.main_visual_image_sub.right {
  right: 5%;
}
.main_visual_message {
  width: 100%;
  padding-left: 70px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  position: absolute;
  bottom: 60px;
  left: 0;
}
.main_visual_message_main {
  text-shadow: 0 0 10px #ffffff;
  font-size: 4.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 1300px) {
  .main_visual_message {
    padding-left: 30px;
  }
  .main_visual_message_main {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .main_visual_image_sub {
    max-width: 150px;
    top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .main_visual_image_main {
    aspect-ratio: 1/1.1;
    background-image: url(../img/mv01_sp.webp), url(../img/mv02_sp.webp), url(../img/mv03_sp.webp), url(../img/mv04_sp.webp);
    position: relative;
    top: 35px;
  }
  @keyframes slide {
    0% {
      background-image: url(../img/mv01_sp.webp);
    }
    25% {
      background-image: url(../img/mv02_sp.webp);
    }
    50% {
      background-image: url(../img/mv03_sp.webp);
    }
    75% {
      background-image: url(../img/mv04_sp.webp);
    }
    100% {
      background-image: url(../img/mv01_sp.webp);
    }
  }
  .main_visual_image_sub {
    max-width: 100px;
    top: 25px;
  }
  .main_visual_image_sub.left {
    left: 2%;
  }
  .main_visual_image_sub.right {
    right: 2%;
  }
  .main_visual_message {
    padding-left: 20px;
    bottom: -120px;
  }
  .main_visual_message_main {
    font-size: 2.4rem;
    text-shadow: 0px 0px 3px #fff;
  }
}

.top .container.flex_box {
  justify-content: center;
  align-items: center;
  gap: 30px 80px;
}
.top .container.flex_box img {
  width: 50%;
  max-width: 550px;
}
.top .container .text_area {
  flex: 1;
}
.top .container .text_area .btn {
  margin-top: 30px;
}
.top .container .text_area .head_text {
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_about .container {
    margin-top: 100px;
  }
  .top_about .container.flex_box img {
    width: 100%;
    max-width: 350px;
  }
  .top_about .container .text_area .btn {
    margin-top: 20px;
  }
}
.top_program {
  border-radius: 30px;
  background-color: #FFA51D;
  color: #ffffff;
  position: relative;
}
.top_program .text_area {
  width: 50%;
  max-width: 500px;
}
.top_program .btn {
  color: #FFA51D;
}
.top_program img {
  width: 45%;
  max-width: 790px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top_program {
    overflow-x: hidden;
  }
  .top_program .text_area {
    width: 100%;
  }
  .top_program img {
    width: 100%;
    position: inherit;
    top: auto;
    left: 0;
    transform: translateY(0);
    bottom: 30px;
  }
}
.top_lesson .head_text {
  margin-bottom: 20px;
}
.top_lesson .head_text + p {
  text-align: center;
}
.top_lesson .btn_yellow {
  display: block;
  margin: 20px auto 30px;
}
.top_lesson ul {
  border-radius: 30px;
  border: 5px dotted #FFF046;
  padding: 70px 60px;
  margin-top: 20px;
}
.top_lesson li {
  border-radius: 20px;
  overflow: hidden;
}
.top_lesson .text_area {
  padding: 15px 20px 30px;
  background-color: #FFF046;
}
.top_lesson_content {
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.top_lesson_content dt {
  display: inline-block;
  border-radius: 20px;
  padding: 5px 15px;
  background-color: #ffffff;
}
.top_lesson_content dd {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .top_lesson .head_text + p {
    text-align: left;
  }
  .top_lesson ul {
    padding: 40px 20px;
  }
}
.top_voice .container.flex_box img {
  width: 100%;
  max-width: 550px;
}
.top_faq {
  border-radius: 30px;
  background-color: #00A340;
  color: #ffffff;
}
.top_faq .btn {
  color: #00A340;
}
.top_faq .head_text_white span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  aspect-ratio: unset;
}
.top_faq .container.flex_box img {
  width: 100%;
  max-width: 550px;
}
.top_other .head_text {
  margin-bottom: 30px;
}
.top_other_list {
  margin-bottom: 80px;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
}
.top_other_list_content {
  width: 50%;
  max-width: 500px;
}
.top_other_list ul {
  margin-bottom: 40px;
  gap: 25px;
}
.top_other_list a:not(.btn) {
  border-radius: 10px;
  padding: 20px 15px;
  background-color: #ffffff;
  align-items: flex-start;
  gap: 20px;
}
.top_other_list a:not(.btn):hover {
  opacity: 0.7;
}
.top_other_list a:not(.btn) img {
  width: 165px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_other_item {
  border-radius: 30px;
}
.top_other_item.short {
  padding: 50px 40px;
}
.top_other_item.long {
  width: 100%;
  position: relative;
}
.top_other_item.long .flex_box {
  width: 70%;
  max-width: 630px;
  padding: 30px 10px 30px 70px;
  align-items: flex-start;
  gap: 10px 30px;
}
.top_other_item.long .head_text {
  margin-bottom: 0;
}
.top_other_item.long p {
  flex: 1;
}
.top_other_item.long img {
  position: absolute;
  bottom: 0;
  left: 60%;
}
.top_other_item.long .arrow {
  display: inline-block;
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 25px;
  background-color: #ffffff;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.top_other_item.paleblue {
  background-color: #84DBFF;
}
.top_other_item.paleblue .btn {
  color: #84DBFF;
}
.top_other_item.blue {
  background-color: #00A0DF;
}
.top_other_item.blue .btn {
  color: #00A0DF;
}
.top_other_item.violet {
  margin-bottom: 30px;
  background-color: #E68EDF;
  color: #ffffff;
}
.top_other_item.violet i {
  color: #E68EDF;
  transform: rotate(-45deg);
}
.top_other_item.pruple {
  background-color: #A18EE6;
  color: #ffffff;
}
.top_other_item.pruple i {
  color: #A18EE6;
}
@media screen and (max-width: 767px) {
  .top_other .head_text {
    margin-bottom: 20px;
  }
  .top_other_list_content {
    width: 100%;
    max-width: 350px;
  }
  .top_other_list ul {
    margin-bottom: 25px;
  }
  .top_other_list a:not(.btn) {
    gap: 10px;
  }
  .top_other_list a:not(.btn) img {
    width: 100px;
  }
  .top_other_item.short {
    padding: 30px 20px;
  }
  .top_other_item.long .flex_box {
    width: 100%;
    max-width: none;
    padding: 40px 20px;
  }
  .top_other_item.long .head_text {
    width: 100%;
    padding-bottom: 10px;
  }
  .top_other_item.long .arrow {
    width: 50px;
    padding-top: 10px;
    top: 30px;
    transform: translateY(0);
  }
  .top_other_item.paleblue {
    background-color: #AAE6FF;
  }
  .top_other_item.paleblue .btn {
    color: #AAE6FF;
  }
  .top_other_item.blue {
    background-color: #00A0DF;
  }
  .top_other_item.blue .btn {
    color: #00A0DF;
  }
  .top_other_item.violet {
    margin-bottom: 30px;
    background-color: #E68EDF;
    color: #ffffff;
  }
  .top_other_item.violet i {
    color: #E68EDF;
    transform: rotate(-45deg);
  }
  .top_other_item.pruple {
    background-color: #A18EE6;
    color: #ffffff;
  }
  .top_other_item.pruple i {
    color: #A18EE6;
  }
}

.topics_title {
  font-size: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.topics_date {
  margin-bottom: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
}
.topics_detail {
  font-size: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.introduce .flex_box {
  align-items: flex-start;
  gap: 40px 80px;
}
.introduce .text_area {
  flex: 1;
}
.introduce .text_area span {
  display: block;
  text-align: right;
}
.introduce img {
  width: 40%;
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  .introduce .head_text {
    text-align: left;
  }
  .introduce img {
    width: 100%;
  }
}

.help_text {
  display: block;
  font-size: 1.4rem;
}

.about.top_program {
  background-color: #FF6C6C;
}
.about.top_program .head_text.deco_dotted:before {
  left: 0;
  transform: translateX(0);
}
.about.top_program .btn {
  border-color: #FF6C6C;
  color: #FF6C6C;
}
.about_activity {
  overflow-x: hidden;
}
.about_activity h2 + p {
  margin-bottom: 40px;
  text-align: center;
}
.about_activity ul {
  justify-content: center;
  gap: 30px;
  position: relative;
}
.about_activity img {
  position: absolute;
}
.about_activity img.girl {
  top: 0;
  right: -70px;
}
.about_activity img.boy {
  bottom: 0;
  left: -70px;
}
.about_activity li {
  width: 245px;
  aspect-ratio: 1/1;
  border: 5px solid #FF6C6C;
  border-radius: 30px;
  padding: 50px 25px;
  background-color: #FFE9E9;
}
.about_activity h3 {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .about_activity h2 + p {
    text-align: left;
  }
  .about_activity ul {
    gap: 15px 8px;
  }
  .about_activity li {
    width: 150px;
    padding: 20px 10px;
    font-size: 1.4rem;
  }
  .about_activity li br {
    display: none;
  }
  .about_activity h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.about_schedule .flex_box {
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.about_schedule .text_area {
  flex: 1;
}
.about_schedule .text_area + img {
  width: 50%;
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  .about_schedule .text_area + img {
    width: 100%;
  }
}
.about_schedule p {
  margin-bottom: 40px;
}
.about_comic li {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.about_comic_page_slide {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 30px;
  position: relative;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.about_comic_page_slide i {
  position: absolute;
  font-size: 6rem;
  color: #FF6C6C;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.about_comic_page_slide i.prev {
  left: -90px;
}
.about_comic_page_slide i.next {
  right: -90px;
}
.about_comic_page_slide li:not(:nth-of-type(1)) {
  display: none;
}
.about_comic_thumb_slide {
  gap: 20px;
  justify-content: center;
}
.about_comic_thumb_slide li {
  width: 90px;
  position: relative;
  cursor: pointer;
}
.about_comic_thumb_slide li:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.about_comic_thumb_slide li.target:before {
  display: none;
}
@media screen and (max-width: 767px) {
  .about_comic_page_slide {
    width: 270px;
  }
  .about_comic_page_slide i {
    font-size: 3.2rem;
  }
  .about_comic_page_slide i.prev {
    left: -45px;
  }
  .about_comic_page_slide i.next {
    right: -45px;
  }
  .about_comic_thumb_slide {
    gap: 10px;
  }
  .about_comic_thumb_slide li {
    width: 50px;
  }
}

.lesson_list {
  justify-content: center;
  gap: 40px;
}
.lesson_item {
  width: 330px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.lesson_name {
  margin-bottom: 20px;
  font-size: 2.4rem;
  text-align: center;
}
.lesson_contact_btn, .lesson_detail_area {
  border-radius: 30px;
  background-color: #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.lesson_contact_btn {
  display: block;
}
.lesson_contact_btn.tel_num {
  padding: 20px 40px;
}
.lesson_detail_area {
  border: 2px solid #D9D9D9;
  padding: 20px 40px;
}
.lesson dt {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .lesson_item {
    width: 300px;
  }
  .lesson_name {
    margin-bottom: 10px;
  }
  .lesson_detail_area {
    padding: 20px;
  }
}
.lesson.contact_area {
  margin-bottom: 100px;
  font-weight: 500;
}
.lesson.contact_area .container {
  border-radius: 30px;
  padding: 50px;
}
.lesson.contact_area .head_text + p {
  text-align: center;
}
.lesson.contact_area .btn_box {
  margin: 40px 0;
}
.lesson.contact_area .btn_box a {
  display: inline-block;
  padding: 30px 80px;
}
.lesson.contact_area .lesson_item {
  width: 300px;
}
.lesson.contact_area .lesson_name {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .lesson.contact_area .container {
    padding: 50px 20px;
  }
  .lesson.contact_area .head_text + p {
    text-align: left;
  }
  .lesson.contact_area .btn_box a {
    padding: 30px;
  }
}
.lesson.footer_lesson_area .lesson_list {
  margin-bottom: 40px;
}
.lesson.footer_lesson_area .btn_box {
  margin: 10px 0;
}
.lesson_lineup {
  border-radius: 30px;
  background-color: #FFF046;
  text-align: center;
}
.lesson_lineup .head_text {
  margin-bottom: 40px;
}
.lesson_lineup .head_text + p {
  margin-bottom: 40px;
}
.lesson_lineup ul {
  border: none;
  padding: 0;
}
.lesson_lineup a:hover {
  opacity: 0.7;
}
.lesson_lineup .text_area {
  background-color: #ffffff;
}
.lesson_lineup dt {
  background-color: #FFF046;
}
@media screen and (max-width: 767px) {
  .lesson_lineup .head_text + p {
    text-align: left;
  }
}
.lesson_info {
  padding-bottom: 100px;
}
.lesson_info .container {
  padding-bottom: 40px;
}
.lesson_info div.flex_box {
  align-items: flex-start;
  gap: 40px 80px;
}
.lesson_info div.flex_box .text_area {
  flex: 1;
}
.lesson_info div.flex_box p {
  margin-bottom: 40px;
}
.lesson_info div.flex_box img {
  width: 50%;
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  .lesson_info {
    padding-bottom: 80px;
  }
  .lesson_info div.flex_box img {
    width: 100%;
  }
}
.lesson_promise {
  border-radius: 30px;
  background-color: #FFF046;
}
.lesson_promise_main {
  margin-bottom: 100px;
}
.lesson_promise ul {
  margin-bottom: 40px;
  justify-content: center;
  gap: 20px;
}
.lesson_promise li {
  width: 250px;
  border-radius: 30px;
  padding: 30px 20px;
  background-color: #ffffff;
}
.lesson_promise h3 {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
}
.lesson_promise img {
  margin: 20px auto 0;
}
.lesson_activity {
  padding-bottom: 100px;
}
.lesson_activity .container {
  padding-bottom: 40px;
}
.lesson_activity p {
  text-align: center;
}
.lesson_activity_slider {
  justify-content: center;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .lesson_activity p {
    text-align: left;
  }
}
.lesson_detail dt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.lesson_detail_content {
  border-radius: 40px;
  border: 5px solid #FFF046;
  padding: 20px 80px;
  margin-bottom: 30px;
  align-items: center;
  gap: 15px 60px;
  font-weight: 500;
}
.lesson_detail_content dt {
  font-size: 2rem;
}
.lesson_detail_content + p {
  margin-bottom: 40px;
  text-align: center;
  line-height: 2;
}
.lesson_detail div.flex_box {
  align-items: flex-start;
  gap: 40px 70px;
}
.lesson_detail_image_area {
  width: 50%;
  max-width: 530px;
}
.lesson_detail_info_area {
  flex: 1;
}
.lesson_detail_info_area dt {
  display: inline-block;
  border-radius: 20px;
  padding: 5px 20px;
  margin-bottom: 10px;
  background-color: #FFF046;
  font-size: 1.5rem;
  line-height: 1;
}
.lesson_detail_info_area dd:not(:last-child) {
  margin-bottom: 20px;
}
.lesson_detail_main_slider {
  margin-bottom: 30px;
}
.lesson_detail_main_slider li {
  border-radius: 30px;
  overflow: hidden;
}
.lesson_detail_thumb_slider {
  justify-content: center;
}
.lesson_detail_thumb_slider .slick-list {
  padding: 0 !important;
}
.lesson_detail_thumb_slider li.slick-slide {
  width: 90px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  margin: 0 7px;
  overflow: hidden;
  cursor: pointer;
}
.lesson_detail_thumb_slider li.slick-slide img {
  width: 100%;
  height: 100%;
}
.lesson_detail_name {
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.lesson_detail .btn_gmap {
  width: 275px;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  margin-top: 5px;
  text-align: center;
  font-size: 1.5rem;
}
.lesson_detail .btn_gmap:hover {
  opacity: 0.7;
}
.lesson_detail .tel_num {
  font-size: 2rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .lesson_detail_content {
    padding: 20px;
  }
  .lesson_detail_content + p {
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.8em;
  }
  .lesson_detail_image_area {
    width: 100%;
  }
  .lesson_detail_thumb_slider {
    gap: 10px;
  }
  .lesson_detail_thumb_slider li {
    width: 55px;
  }
  .lesson_detail_name {
    text-align: center;
    font-size: 2rem;
  }
}
.lesson_value_tag_item {
  width: 200px;
  border-radius: 30px 30px 0 0;
  padding: 10px;
  background-color: #D9D9D9;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}
.lesson_value_tag_item:hover {
  background-color: #FFF046;
}
.lesson_value_tag_item.target {
  background-color: #FFF046;
}
.lesson_value_content {
  border-radius: 0 20px 20px 20px;
  padding: 30px;
  background-color: #FFF046;
}
.lesson_value_content_item {
  border-radius: 0 20px 20px 20px;
  padding: 30px 25px;
  background-color: #ffffff;
}
.lesson_value_content_item ul {
  padding-left: 30px;
  list-style: disc;
  list-style-position: outside;
  gap: 5px;
}
.lesson_value_content_item a {
  text-decoration: underline;
}
.lesson_value_content_item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .lesson_value_tag_item {
    width: 33.3%;
    border-radius: 10px 10px 0 0;
    font-size: 1.5rem;
  }
  .lesson_value_content {
    border-radius: 0 0 10px 10px;
    padding: 20px;
  }
  .lesson_value_content_item {
    padding: 20px;
  }
  .lesson_value_content_item ul {
    padding-left: 15px;
    font-size: 1.5rem;
    gap: 10px;
  }
}
.lesson_require .head_text span {
  display: inline-block;
  padding-left: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.lesson_require ul {
  gap: 30px 40px;
}
.lesson_require li {
  width: 50%;
  max-width: 520px;
  border-radius: 30px;
  border: 5px solid #FFF046;
  padding: 30px;
}
.lesson_require h3 {
  margin-bottom: 20px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lesson_require li {
    width: 100%;
    padding: 30px 20px;
  }
  .lesson_require h3 {
    font-size: 2rem;
  }
}

.program_teacch {
  border-radius: 30px;
  background-color: #FFA51D;
  color: #ffffff;
}
.program_teacch .head_text.deco_dotted:before {
  left: 0;
  transform: translateX(0);
}
.program_teacch ul {
  margin-top: 40px;
  justify-content: center;
  gap: 40px;
}
.program_teacch li {
  width: 50%;
  max-width: 520px;
  border-radius: 30px;
  padding: 40px 30px;
  background-color: #ffffff;
  color: #222222;
}
.program_teacch img {
  margin: 10px auto;
}
.program_teacch h3 {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .program_teacch li {
    width: 100%;
    max-width: 350px;
    padding: 40px 20px;
  }
  .program_teacch h3 {
    font-size: 2rem;
  }
}
.program_point div.flex_box {
  margin-bottom: 60px;
  align-items: flex-start;
  gap: 30px 40px;
}
.program_point div.flex_box img {
  width: 50%;
  max-width: 520px;
}
.program_point div.flex_box p {
  flex: 1;
}
.program_point ul {
  justify-content: center;
  gap: 40px;
}
.program_point li {
  width: 330px;
  border-radius: 30px;
  border: 5px solid #FFA51D;
  padding: 40px 5px;
}
.program_point li img {
  margin: 20px auto;
}
.program_point h3 {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
}
.program_point p {
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .program_point div.flex_box {
    margin-bottom: 40px;
  }
  .program_point div.flex_box img {
    width: 100%;
  }
}
.program_parent p {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .program_parent p {
    margin-bottom: 30px;
    text-align: left;
  }
}
.program_materials p {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .program_materials p {
    margin-bottom: 30px;
    text-align: left;
  }
}
.program_materials ul {
  padding: 20px 30px;
  border-radius: 30px;
  border: 5px solid #FFA51D;
}
.program_materials ul a:hover {
  color: #FFA51D;
}

.voice.program_parent p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .voice.program_parent p {
    text-align: left;
  }
}
.voice.lesson_value .lesson_value_tag_item:hover {
  background-color: #A5F089;
}
.voice.lesson_value .lesson_value_tag_item.target {
  background-color: #A5F089;
}
.voice.lesson_value .lesson_value_content {
  background-color: #A5F089;
}
.voice_message_category {
  margin: 40px 0;
  justify-content: center;
  gap: 20px 40px;
}
.voice_message_category_item {
  color: #222222;
  cursor: pointer;
}
.voice_message_category_item.target {
  background-color: #ffffff;
}
.voice_message_content {
  gap: 30px;
}
.voice_message_content li {
  border: 20px solid #A5F089;
  border-radius: 20px;
  padding: 40px;
  background-color: #ffffff;
  align-items: center;
  gap: 20px 40px;
}
.voice_message_content .text_area {
  flex: 1;
}
.voice_message_content .text_area p {
  margin-bottom: 0;
  text-align: left;
}
.voice_message_content_profile {
  width: 130px;
  text-align: center;
}
.voice_message_content_profile img {
  margin: 0 auto 10px;
}
.voice_message_content_profile p {
  margin-bottom: 0;
  color: #808080;
  font-size: 1.5rem;
}
.voice_message_content_main {
  margin-bottom: 10px !important;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .voice_message_category {
    margin: 40px 0 20px;
    gap: 7px;
  }
  .voice_message_category_item {
    width: 100px;
    padding: 10px 0;
    font-size: 1.4rem;
  }
  .voice_message_content li {
    border: 10px solid #A5F089;
    padding: 30px 20px;
  }
  .voice_message_content_main {
    font-size: 1.8rem;
  }
}

.faq {
  gap: 30px;
}
.faq p {
  margin-bottom: 0;
  text-align: left;
}
.faq li {
  border-radius: 30px;
  padding: 20px 30px;
  border: 4px solid #00A340;
  align-items: flex-start;
  gap: 0 20px;
  position: relative;
  cursor: pointer;
}
.faq li.opened i.fa-angle-up {
  display: block;
}
.faq li.opened i.fa-angle-down {
  display: none;
}
.faq li.opened .faq_question {
  color: #00A340;
}
.faq i {
  color: #00A340;
  font-size: 3rem;
  position: absolute;
  top: 35px;
  right: 40px;
}
.faq i.fa-angle-up {
  display: none;
}
.faq i.fa-angle-down {
  display: block;
}
.faq span {
  display: inline-block;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #00A340;
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
}
.faq_text_area {
  flex: 1;
  padding-top: 15px;
}
.faq_question {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
.faq_answer {
  margin-top: 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .faq li {
    padding: 20px;
  }
  .faq i {
    top: 20px;
    right: 20px;
  }
  .faq span {
    width: 40px;
    padding-top: 3px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .faq_question {
    font-size: 1.8rem;
  }
}

.company_activity {
  border-radius: 30px;
  background-color: #A18EE6;
  color: #ffffff;
}
.company_activity h2 + p {
  margin-bottom: 40px;
  text-align: center;
}
.company_activity ul {
  gap: 50px;
  color: #222222;
}
.company_activity li {
  border-radius: 30px;
  padding: 20px 60px;
  background-color: #ffffff;
  align-items: start;
  gap: 20px 50px;
}
.company_activity .text_area {
  flex: 1;
  margin-top: 20px;
}
.company_activity img {
  width: 40%;
  max-width: 400px;
}
.company_activity h3 {
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .company_activity h2 + p {
    text-align: left;
  }
  .company_activity li {
    padding: 30px 20px;
  }
  .company_activity .text_area {
    margin-top: 0;
  }
  .company_activity img {
    width: 100%;
  }
}
.company.program_point ul + p {
  margin-top: 40px;
  text-align: center;
}
.company.program_point li {
  border-color: #A18EE6;
}
.company_outline dl {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.company_outline dt,
.company_outline dd {
  padding: 20px 50px;
}
.company_outline dt {
  width: 25%;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
.company_outline dt:not(:first-child) {
  border-top: 1px solid #D9D9D9;
}
.company_outline dd {
  width: 75%;
}
.company_outline dd:not(:first-of-type) {
  border-top: 1px solid #D9D9D9;
}
.company_outline dd a {
  text-decoration: underline;
}
.company_outline dd a:hover {
  color: #A18EE6;
}
@media screen and (max-width: 767px) {
  .company_outline dt,
  .company_outline dd {
    width: 100%;
  }
  .company_outline dt {
    padding: 10px 10px 0;
    text-align: left;
  }
  .company_outline dd {
    padding: 5px 10px 10px;
  }
  .company_outline dd:not(:first-of-type) {
    border-top: none;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #00A0DF;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 30px;
  padding: 40px 30px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #ffffff;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #95846D;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #95846D;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #D3D3D3;
  padding: 3px 10px;
  background-color: #ffffff;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #D3D3D3;
  padding: 3px 10px;
  width: 100%;
  background-color: #ffffff;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form .must {
  display: inline-block;
  background-color: #FF6C6C;
  font-size: 12px;
  line-height: 1.5em;
  color: #ffffff;
  border-radius: 10px;
  margin: 0 0 0 10px;
  padding: 2px 10px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 20px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form {
    padding: 10px 10px 40px;
  }
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

.contact_box {
  border-radius: 30px;
  background-color: #00A0DF;
  padding: 60px;
  margin-top: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact_box {
    padding: 10px 5px;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #F5F5F5;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #F5F5F5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #F5F5F5;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.privacy p {
  margin-bottom: 40px;
  text-align: center;
}
.privacy dt {
  margin-bottom: 10px;
  color: #00A0DF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}
.privacy dd:not(:last-child) {
  margin-bottom: 30px;
}

.sitemap div.flex_box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px 80px;
}
.sitemap ul {
  gap: 40px;
}
.sitemap_list_main {
  width: 350px;
}
.sitemap_list_sub {
  width: 245px;
  margin: 0 0 0 auto;
}
.sitemap_link {
  width: 100%;
  border-radius: 40px;
  border: 4px solid;
  padding: 15px 0 15px 50px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
.sitemap_link:hover {
  opacity: 0.7;
}
.sitemap_link.pink {
  border-color: #FF6C6C;
  background-color: #FFE9E9;
}
.sitemap_link.orange {
  border-color: #FFA51D;
  background-color: #FFF0D9;
}
.sitemap_link.yellow {
  border-color: #FFEA00;
  background-color: #FFFCDF;
}
.sitemap_link.palegreen {
  border-color: #A5F089;
  background-color: #DEFFD2;
}
.sitemap_link.green {
  border-color: #00A340;
  background-color: #D4FFE5;
}
.sitemap_link.paleblue {
  border-color: #84DBFF;
  background-color: #E6F8FF;
}
.sitemap_link.blue {
  border-color: #00A0DF;
  background-color: #C5EFFF;
}
.sitemap_link.violet {
  border-color: #E68EDF;
  background-color: #FFE9FD;
}
.sitemap_link.purple {
  border-color: #A18EE6;
  background-color: #F7F5FF;
}
@media screen and (max-width: 767px) {
  .sitemap ul {
    gap: 20px;
  }
  .sitemap_link {
    font-size: 1.8rem;
    padding: 15px 0 15px 30px;
  }
}

.rule dl {
  width: 800px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
}
.rule dt {
  width: 30%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule dd {
  width: 70%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule .caution {
  color: #ff0000;
}
.rule .cancel_price {
  margin-top: 10px;
}
.rule .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 890px) {
  .rule dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .rule dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 5px 5px;
  }
  .rule dd {
    width: 100%;
    padding: 0px 5px 10px;
  }
}

.term p {
  margin-bottom: 50px;
}
.term dl + p {
  margin-bottom: 0;
  text-align: right;
}
.term dt {
  display: inline-block;
  border-bottom: 2px solid #53A75E;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.term dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
.term ol {
  list-style-type: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.term ol ol {
  padding-left: 20px;
  margin-top: 10px;
  row-gap: 0;
}
.term .cancel_price {
  margin-top: 20px;
}
.term .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .term p {
    margin-bottom: 30px;
  }
  .term dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .term dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}

.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .err_page.notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
.thanks {
  background-color: #53A75E;
}
.thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */