@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lilita+One&display=swap");
:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

/***
	 The new CSS reset - version 1.11 (last updated 20.9.2023)
	 GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
	 Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
	 - The "symbol *" part is to solve Firefox SVG sprite bug
	 - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size ON landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none ON the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements ON Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
	display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
	- fix for the content editable attribute will work properly.
	- webkit-user-select: auto; added for Safari in case of using user-select:none ON wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.4rem;
  background-color: white;
  margin: 0;
  padding: 0;
  color: var(--font-color);
  box-sizing: border-box;
  position: relative;
}
html body a {
  transition: all 0.3s;
  color: var(--link-color);
}
html body a:hover {
  transition: all 0.3s;
  color: var(--hover-color);
}
html body a img:hover {
  transition: all 0.3s;
  opacity: 0.7;
}
html body .lilita {
  font-family: "Lilita One", sans-serif;
  font-size: 2em;
}
html body .pcv {
  display: block;
}
@media (max-width: 757px) {
  html body .pcv {
    display: none;
  }
}
html body .spv {
  display: none;
}
@media (max-width: 757px) {
  html body .spv {
    display: block;
  }
}
html body .spbr {
  display: block;
}
@media (min-width: 758px) and (max-width: 1023px) {
  html body .spbr {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1329px) {
  html body .spbr {
    display: none;
  }
}
@media (min-width: 1330px) {
  html body .spbr {
    display: none;
  }
}
html body .pcbr {
  display: block;
}
@media (min-width: 758px) and (max-width: 1023px) {
  html body .pcbr {
    display: none;
  }
}
@media (max-width: 757px) {
  html body .pcbr {
    display: none;
  }
}
html body .container {
  max-width: 1200px;
  margin: 0 auto;
}
html body .container-payment {
  display: flex;
  gap: 4%;
  padding: 0 4%;
}
html body .container-payment .price-box,
html body .container-payment .input-form.pwd {
  width: 50%;
}
html body .container-payment .payment-submit {
  margin: 30px 0 0;
}
@media (max-width: 757px) {
  html body .container-payment {
    display: block;
  }
  html body .container-payment .price-box,
  html body .container-payment .input-form.pwd {
    width: 100%;
  }
  html body .container-payment .input-form.pwd {
    margin-top: 40px;
  }
  html body .container-payment .payment-submit {
    margin: 0;
  }
}
html body .centering--both {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
html body .flex-container {
  display: flex;
  justify-content: center;
}
html body .flex-container a {
  /* margin: 10px 5px; */
}
html body .mt-0 {
  margin-top: 0 !important;
}
html body .mt-s {
  margin-top: 1em !important;
}
html body .mt-m {
  margin-top: 3em !important;
}
@media (max-width: 757px) {
  html body .mt-m {
    margin-top: 1em !important;
  }
}
html body .mt-l {
  margin-top: 7em !important;
}
@media (max-width: 757px) {
  html body .mt-l {
    margin-top: 2em !important;
  }
}
html body .mb-s {
  margin-bottom: 1em;
}
html body .mb-m {
  margin-bottom: 3em;
}
html body .mb-l {
  margin-bottom: 7em;
}
html body .text-blue {
  color: var(--main-dark);
}
html body .text-orange {
  color: #ff8c00;
}
html body .text-link {
  color: #666;
  text-decoration: underline;
}
html body .btn {
  display: inline-block;
  padding: 10px 3em;
  font-weight: bold;
  text-align: center;
  color: white;
  background-color: #f08604;
  text-decoration: none;
  border: none;
  border-radius: 200px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: background-color 0.3s ease;
}
@media (max-width: 757px) {
  html body .btn {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body .btn {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body .btn {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body .btn {
    font-size: 1.6rem;
  }
}
@media (max-width: 757px) {
  html body .btn {
    margin: 1em auto;
    padding: 10px 25px;
    white-space: nowrap;
  }
}
html body .btn:hover {
  background-color: orange;
  color: white;
}
html body .btn:active {
  background-color: orange;
  color: white;
}
html body .btn:disabled {
  background-color: gray;
  color: white;
  cursor: not-allowed;
}
html body .btn.btn--off {
  background-color: #999;
}
html body .btn.btn--off:hover {
  background-color: gray;
}
html body .btn.btn--off:active {
  background-color: gray;
}
html body .btn.btn--off:disabled {
  background-color: gray;
  cursor: not-allowed;
}
html body .btn.btn--rev {
  background-color: white;
  color: #f26454;
  border: 2px solid #f26454;
  margin-right: 5px;
}
html body .btn.btn--rev:hover {
  background-color: #ffddd9;
}
html body .btn.btn--rev:active {
  background-color: #ffddd9;
}
html body .btn.btn--rev:disabled {
  background-color: #ffddd9;
  cursor: not-allowed;
}
html body .btn.remove-button {
  background: #999;
}
html body .btn.remove-button:hover {
  background: #aaa;
}
html body .btn.btn--large {
  font-size: 1.4em;
}
@media (max-width: 757px) {
  html body .btn.btn--large {
    font-size: 1.1em;
  }
}
html body .btn.btn--payment {
  background-color: #007bff;
}
html body .btn.btn--payment:hover {
  background-color: orange;
  color: white;
}
html body .btn.btn--payment:active {
  background-color: orange;
  color: white;
}
html body .btn.btn--payment:disabled {
  background-color: orange;
  color: white;
  cursor: not-allowed;
}
html body label {
  vertical-align: middle;
  display: inline-block;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 757px) {
  html body label {
    padding-right: 5px;
  }
}
html body .label {
  vertical-align: middle;
  margin-right: 15px;
  margin-top: 1.5em;
  margin-bottom: 5px;
  display: block;
}
html body .label:first-child {
  margin-top: 5px;
}
html body input::-moz-placeholder, html body textarea::-moz-placeholder {
  color: #888;
  opacity: 1;
}
html body input::placeholder,
html body textarea::placeholder {
  color: #888;
  opacity: 1;
}
html body textarea {
  width: 96%;
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: white;
  border-radius: 4px;
  font-size: 16px;
}
html body textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
html body input[type=checkbox] {
  width: 20px;
  height: 20px;
  background-color: #f0f0f0;
  border: 1px solid #999;
  border-radius: 4px;
  margin-right: 0;
  vertical-align: middle;
}
html body input[type=radio] {
  background-color: initial;
  cursor: default;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  box-sizing: border-box;
  padding: initial;
  border: initial;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}
html body input[type=checkbox]:checked {
  background-color: #007bff;
  border: 1px solid #007bff;
}
html body input[type=checkbox]:checked::before {
  content: "✔";
  display: block;
  position: relative;
  text-align: center;
  font-weight: 900;
  line-height: 1;
  color: white;
}
html body input[type=text],
html body input[type=email],
html body input[type=tel] {
  width: 96%;
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: white;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 16px;
  vertical-align: middle;
}
html body input[type=text]#nearest_station,
html body input[type=email]#nearest_station,
html body input[type=tel]#nearest_station {
  width: 50%;
}
html body input[type=text]#age,
html body input[type=email]#age,
html body input[type=tel]#age {
  width: 60px;
}
html body input[type=text]:focus,
html body input[type=email]:focus,
html body input[type=tel]:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
html body input[type=submit] {
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}
html body input.custom-input {
  background-color: #f0f0f0;
  color: #333;
  border: 2px solid #999;
}
html body select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 4px;
  padding: 5px 10px;
  cursor: pointer;
}
@media (max-width: 757px) {
  html body select {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body select {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body select {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body select {
    font-size: 1.6rem;
  }
}
html body select[name="form_data[birth_month]"], html body select[name="form_data[birth_day]"] {
  margin-left: 10px;
}
html body select:hover {
  border-color: #666;
}
html body select:active, html body select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
html body select option {
  background-color: #fff;
  color: #333;
}
html body select option:hover {
  background-color: #f0f0f0;
}
html body input[type=password] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
html body input[type=password]:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
html body .agreement {
  text-align: center;
}
html body .error-message {
  color: #ff0000;
  font-size: 1.4rem;
  margin-top: 5px;
}
html body textarea:invalid {
  border-color: #ff0000;
  background-color: #ffeeee;
}
html body main section {
  padding: 70px 15px 120px;
  position: relative;
}
@media (min-width: 758px) and (max-width: 1023px) {
  html body main section {
    padding: 70px 15px 90px;
  }
}
@media (max-width: 757px) {
  html body main section {
    padding: 50px 15px;
    box-sizing: border-box;
  }
}
html body main section a {
  cursor: pointer;
  transition: all 0.3s;
}
html body main section a:hover {
  transition: all 0.3s;
  color: darkorange;
}
html body main section .section__title {
  text-align: center;
  font-weight: bolder;
  letter-spacing: 0.05em;
  position: relative;
  margin: 1em 0 1em;
}
@media (max-width: 757px) {
  html body main section .section__title {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  html body main section .section__title {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  html body main section .section__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  html body main section .section__title {
    font-size: 2.8rem;
  }
}
@media (max-width: 757px) {
  html body main section .section__title {
    letter-spacing: 0;
    margin: 0 0 20px;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  html body main section .section__title {
    font-size: 1.925rem;
  }
}
@media (max-width: 757px) and (min-width: 758px) {
  html body main section .section__title {
    font-size: 1.925rem;
  }
}
@media (max-width: 757px) and (min-width: 1024px) {
  html body main section .section__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 757px) and (min-width: 1330px) {
  html body main section .section__title {
    font-size: 2.2rem;
  }
}
html body main section .section__title span {
  font-size: 1.6em;
}
html body main section #faq.section__title {
  padding: 90px 0 0;
}
html body main section small {
  font-size: 0.8em;
  line-height: 1.5;
  display: inline-block;
}
html body main section .strong {
  font-weight: bold;
}
html body main section .section__lead {
  max-width: 50vw;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 757px) {
  html body main section .section__lead {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  html body main section .section__lead {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  html body main section .section__lead {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  html body main section .section__lead {
    font-size: 1.9rem;
  }
}
@media (max-width: 757px) {
  html body main section .section__lead {
    max-width: 100%;
    margin: 0 auto 30px;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  html body main section .section__lead {
    font-size: 1.4rem;
  }
}
@media (max-width: 757px) and (min-width: 758px) {
  html body main section .section__lead {
    font-size: 1.4rem;
  }
}
@media (max-width: 757px) and (min-width: 1024px) {
  html body main section .section__lead {
    font-size: 1.6rem;
  }
}
@media (max-width: 757px) and (min-width: 1330px) {
  html body main section .section__lead {
    font-size: 1.6rem;
  }
}
html body main section .section__lead a {
  color: var(--main-dark);
}
html body main section .section__error {
  color: #e24b3a;
  text-align: center;
  margin: 20px 0;
}
html body main section .flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 757px) {
  html body main section .flex-container {
    flex-direction: column-reverse;
  }
}
html body main section .flex-column {
  align-items: center;
  flex-flow: column;
}
html body main section .teacher-profile {
  padding: 50px;
  margin-bottom: 3em;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}
@media (max-width: 757px) {
  html body main section .teacher-profile {
    padding: 20px;
  }
}
html body main section .teacher-profile:last-child {
  margin-bottom: 0;
}
html body main section .teacher-profile .teacher-profile__title {
  font-weight: bolder;
  border-left: 5px solid var(--main-dark);
  padding: 5px 15px;
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__title {
    font-size: 1.925rem;
  }
}
@media (min-width: 758px) {
  html body main section .teacher-profile .teacher-profile__title {
    font-size: 1.925rem;
  }
}
@media (min-width: 1024px) {
  html body main section .teacher-profile .teacher-profile__title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1330px) {
  html body main section .teacher-profile .teacher-profile__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__title {
    font-size: 1.6625rem;
  }
}
@media (max-width: 757px) and (min-width: 758px) {
  html body main section .teacher-profile .teacher-profile__title {
    font-size: 1.6625rem;
  }
}
@media (max-width: 757px) and (min-width: 1024px) {
  html body main section .teacher-profile .teacher-profile__title {
    font-size: 1.9rem;
  }
}
@media (max-width: 757px) and (min-width: 1330px) {
  html body main section .teacher-profile .teacher-profile__title {
    font-size: 1.9rem;
  }
}
html body main section .teacher-profile .teacher-profile__title .teacher-profile__checkbox {
  margin-right: 10px;
  border: 1px solid;
}
html body main section .teacher-profile .teacher-profile__title .select-on {
  display: none;
}
html body main section .teacher-profile .teacher-profile__content {
  display: flex;
  padding: 0 0 20px 0;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content {
    flex-direction: column;
    padding: 20px 0;
  }
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__image {
  margin-right: 20px;
  position: relative;
  width: 324px;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__image {
    margin: 0 auto;
    text-align: center;
  }
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__image img {
  height: auto;
  width: 100%;
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__image > img {
  height: 324px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 324px;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__image > img {
    height: 240px;
    width: 240px;
  }
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__details {
  flex: 7;
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__details h2 {
  font-weight: bolder;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details h2 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details h2 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details h2 {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details h2 {
    margin-top: 20px;
  }
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  width: 100%;
  gap: 5px;
  margin-bottom: 20px;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl {
    margin: 20px 0;
    grid-template-columns: 100%;
  }
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl > div {
  display: grid;
  grid-template-columns: 30% 70%;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl > div {
    grid-template-columns: 100%;
  }
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dt,
html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dd {
  box-sizing: border-box;
  padding: 15px;
  margin: 0;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dt,
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dd {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dt,
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dd {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dt,
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dd {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dt,
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dd {
    font-size: 1.6rem;
  }
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dt,
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dd {
    padding: 10px 15px;
  }
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__details dl dt {
  font-weight: bold;
  background: #faf5dd;
}
html body main section .teacher-profile .teacher-profile__content .teacher-profile__details .teacher-profile__comment {
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details .teacher-profile__comment {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details .teacher-profile__comment {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details .teacher-profile__comment {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body main section .teacher-profile .teacher-profile__content .teacher-profile__details .teacher-profile__comment {
    font-size: 1.6rem;
  }
}
html body main section .teacher-profile .teacher-profile__question textarea {
  border: 2px solid var(--main-dark);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
html body main section .teacher-profile .teacher-profile__list dl {
  display: grid;
  grid-template-columns: 30% 70%;
  width: 100%;
}
html body main section .teacher-profile .teacher-profile__list dl dt,
html body main section .teacher-profile .teacher-profile__list dl dd {
  box-sizing: border-box;
  padding: 15px;
  margin: 0;
  border: 2px solid white;
}
@media (max-width: 757px) {
  html body main section .teacher-profile .teacher-profile__list dl dt,
  html body main section .teacher-profile .teacher-profile__list dl dd {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body main section .teacher-profile .teacher-profile__list dl dt,
  html body main section .teacher-profile .teacher-profile__list dl dd {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body main section .teacher-profile .teacher-profile__list dl dt,
  html body main section .teacher-profile .teacher-profile__list dl dd {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body main section .teacher-profile .teacher-profile__list dl dt,
  html body main section .teacher-profile .teacher-profile__list dl dd {
    font-size: 1.6rem;
  }
}
html body main section .teacher-profile .teacher-profile__list dl dt {
  font-weight: bold;
  background: #faf5dd;
}
html body main section .container--thanks {
  margin: 0 auto;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body main section .container--thanks img {
  max-width: 200px;
}
@media (max-width: 757px) {
  html body main section .container--thanks img {
    max-width: 150px;
  }
}
html body main section .container--thanks .thanks-text {
  font-weight: bolder;
  margin: 1em 0;
}
@media (max-width: 757px) {
  html body main section .container--thanks .thanks-text {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  html body main section .container--thanks .thanks-text {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  html body main section .container--thanks .thanks-text {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  html body main section .container--thanks .thanks-text {
    font-size: 2.8rem;
  }
}
@media (max-width: 757px) {
  html body main section .container--thanks .thanks-text {
    max-width: 70vw;
    text-align: center;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  html body main section .container--thanks .thanks-text {
    font-size: 1.6625rem;
  }
}
@media (max-width: 757px) and (min-width: 758px) {
  html body main section .container--thanks .thanks-text {
    font-size: 1.6625rem;
  }
}
@media (max-width: 757px) and (min-width: 1024px) {
  html body main section .container--thanks .thanks-text {
    font-size: 1.9rem;
  }
}
@media (max-width: 757px) and (min-width: 1330px) {
  html body main section .container--thanks .thanks-text {
    font-size: 1.9rem;
  }
}
html body main section dl.formbox {
  display: grid;
  grid-template-columns: 30% 70%;
  width: 100%;
}
@media (max-width: 757px) {
  html body main section dl.formbox {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
}
html body main section dl.formbox dt,
html body main section dl.formbox dd {
  box-sizing: border-box;
  margin: 0;
  border: 2px solid white;
}
@media (max-width: 757px) {
  html body main section dl.formbox dt,
  html body main section dl.formbox dd {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body main section dl.formbox dt,
  html body main section dl.formbox dd {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body main section dl.formbox dt,
  html body main section dl.formbox dd {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body main section dl.formbox dt,
  html body main section dl.formbox dd {
    font-size: 1.6rem;
  }
}
html body main section dl.formbox dd {
  box-sizing: border-box;
  padding: 15px;
}
html body main section dl.formbox dd small {
  margin-bottom: 10px;
  display: block;
  font-size: 1.4rem;
}
html body main section dl.formbox dd .note {
  display: block;
  color: darkorange;
  margin-top: 10px;
}
html body main section dl.formbox dd .header {
  font-weight: bolder;
  padding: 2px 10px;
  background: #eee;
  display: block;
  margin-bottom: 10px;
}
html body main section dl.formbox dd .checkbox-group + .header {
  margin-top: 20px;
}
html body main section dl.formbox dd .checkbox-group .checkbox-item {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
}
html body main section dl.formbox dd .checkbox-group input {
  margin-right: 5px;
}
html body main section dl.formbox dd .field-group {
  flex-direction: column;
}
html body main section dl.formbox dd .field-group .checkbox-item {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
html body main section dl.formbox dd .field-group .checkbox-item input {
  margin-right: 5px;
  flex-shrink: 0;
}
html body main section dl.formbox dd .field-group .checkbox-item input[type=text] {
  width: auto;
}
@media (max-width: 757px) {
  html body main section dl.formbox dd .field-group .checkbox-item input[type=text] {
    max-width: 170px;
  }
}
html body main section dl.formbox dd.radio-flex {
  display: flex;
}
@media (max-width: 757px) {
  html body main section dl.formbox dd.radio-flex {
    white-space: nowrap;
  }
}
html body main section dl.formbox dd.radio-flex .radio-item {
  cursor: pointer;
  position: relative;
  margin-right: 5px;
}
html body main section dl.formbox dt {
  font-weight: bold;
  background: #faf5dd;
  padding: 20px;
}
html body main section dl.formbox input[type=date] {
  display: block;
  font-family: sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 14px;
}
html body main section dl.formbox input[type=radio] {
  display: none;
}
html body main section dl.formbox input[type=radio] + label {
  margin: 0 16px 10px 0;
  padding: 0 0 0 24px;
  position: relative;
}
html body main section dl.formbox input[type=text] + input[type=radio] + label {
  margin-top: 20px;
}
html body main section dl.formbox input[type=radio] + label:after,
html body main section dl.formbox input[type=radio] + label:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}
html body main section dl.formbox input[type=radio] + label:after {
  left: 0;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
}
html body main section dl.formbox input[type=radio] + label:before {
  left: 5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: #0171bd;
  border-radius: 50%;
  opacity: 0;
}
html body main section dl.formbox input[type=radio]:checked + label:before {
  opacity: 1;
}
html body main section dl.formbox label:hover:after {
  border-color: #0171bd;
}
@media (max-width: 757px) {
  html body main section .modal-content.teacher-profile .teacher-profile__content .teacher-profile__image {
    width: auto;
  }
}
html body .input-form {
  margin-top: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
html body .input-form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}
html body .input-form__input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
html body .input-form__input:focus {
  outline: none;
  border-color: #007bff;
}
html body .input-form.pwd {
  max-width: 500px;
}
html body .input-form .forgot {
  text-align: right;
  display: block;
}
html body .confirmation-details {
  margin: 0 auto 50px;
  max-width: 800px;
  padding: 40px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
html body .confirmation-details h2 {
  font-size: 2.3rem;
  color: #f26454;
  font-weight: bolder;
  margin: 0 0 20px;
}
html body .confirmation-details ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  text-align: left;
  margin: 0 auto;
}
html body .confirmation-details ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 757px) {
  html body .confirmation-details ul li {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  html body .confirmation-details ul li {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  html body .confirmation-details ul li {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  html body .confirmation-details ul li {
    font-size: 1.9rem;
  }
}
html body .confirmation-details ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--main-color);
}
html body .radio-button-group {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
  padding: 20px;
  background: var(--sub-color);
}
@media (max-width: 757px) {
  html body .radio-button-group {
    flex-flow: column;
    margin-bottom: 2em;
  }
}
html body .radio-button-group .radiobutton {
  display: none;
}
html body .radio-button-group label {
  background: #fff;
  border-radius: 200px;
  font-size: 2.2rem;
  font-weight: 500;
  padding: 10px 30px;
  transition: all 0.3s;
  cursor: pointer;
  width: 40%;
}
@media (max-width: 757px) {
  html body .radio-button-group label {
    font-size: 1.8rem;
    padding: 8px 16px;
    width: 90%;
  }
}
html body .radio-button-group label.decline {
  color: var(--black);
}
@media (max-width: 757px) {
  html body .radio-button-group label.decline {
    font-size: 1.4rem;
    font-weight: normal;
  }
}
html body .radio-button-group label.accept {
  color: var(--black);
}
html body .radio-button-group .radiobutton:checked + label {
  transition: all 0.3s;
  color: white;
  background-color: #f26454;
}
html body .radio-button-group .radiobutton:checked + label.decline {
  background-color: #ccc;
}
html body .answer-info,
html body .question-info {
  margin: 0 auto 50px;
  padding: 60px;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 757px) {
  html body .answer-info,
  html body .question-info {
    padding: 20px;
  }
}
html body .answer-info__user,
html body .question-info__user {
  margin-bottom: 3em;
}
html body .answer-info__user h2,
html body .question-info__user h2 {
  font-weight: bold;
  margin-bottom: 1em;
  color: #50b4e0;
  border-bottom: 1px solid #ccc;
  display: block;
  padding-bottom: 10px;
  text-align: left;
}
@media (max-width: 757px) {
  html body .answer-info__user h2,
  html body .question-info__user h2 {
    font-size: 1.925rem;
  }
}
@media (min-width: 758px) {
  html body .answer-info__user h2,
  html body .question-info__user h2 {
    font-size: 1.925rem;
  }
}
@media (min-width: 1024px) {
  html body .answer-info__user h2,
  html body .question-info__user h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1330px) {
  html body .answer-info__user h2,
  html body .question-info__user h2 {
    font-size: 2.2rem;
  }
}
html body .answer-info__user h2 span,
html body .question-info__user h2 span {
  font-weight: normal;
  color: var(--black);
  padding-left: 10px;
}
@media (max-width: 757px) {
  html body .answer-info__user h2 span,
  html body .question-info__user h2 span {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body .answer-info__user h2 span,
  html body .question-info__user h2 span {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body .answer-info__user h2 span,
  html body .question-info__user h2 span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body .answer-info__user h2 span,
  html body .question-info__user h2 span {
    font-size: 1.6rem;
  }
}
html body .answer-info__user p,
html body .question-info__user p {
  line-height: 2;
  border-radius: 4px;
  text-align: left;
}
@media (max-width: 757px) {
  html body .answer-info__user p,
  html body .question-info__user p {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body .answer-info__user p,
  html body .question-info__user p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body .answer-info__user p,
  html body .question-info__user p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body .answer-info__user p,
  html body .question-info__user p {
    font-size: 1.6rem;
  }
}
html body .answer-info__user p span,
html body .question-info__user p span {
  color: var(--main-dark);
}
html body .answer-info__user-answer,
html body .question-info__user-answer {
  margin-top: 1em;
  border: 1px solid #ccc;
  line-height: 2;
  background: #faf5dd;
  border-radius: 4px;
  font-size: 1.8rem;
  padding: 25px;
  text-align: left;
}
html body .answer-info__user-answer span,
html body .question-info__user-answer span {
  color: darkorange;
}
html body .answer-info__label,
html body .question-info__label {
  font-weight: bold;
  margin-bottom: 10px;
}
html body .answer-info__teacher,
html body .question-info__teacher {
  background: #faf5dd;
  border-radius: 5px;
  padding: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
html body .answer-info__teacher h2,
html body .question-info__teacher h2 {
  font-weight: bold;
  margin-bottom: 15px;
  color: #f7b54c;
}
@media (max-width: 757px) {
  html body .answer-info__teacher h2,
  html body .question-info__teacher h2 {
    font-size: 1.925rem;
  }
}
@media (min-width: 758px) {
  html body .answer-info__teacher h2,
  html body .question-info__teacher h2 {
    font-size: 1.925rem;
  }
}
@media (min-width: 1024px) {
  html body .answer-info__teacher h2,
  html body .question-info__teacher h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1330px) {
  html body .answer-info__teacher h2,
  html body .question-info__teacher h2 {
    font-size: 2.2rem;
  }
}
html body .answer-info__teacher .teacher-content,
html body .question-info__teacher .teacher-content {
  display: flex;
  align-items: center;
}
@media (max-width: 757px) {
  html body .answer-info__teacher .teacher-content,
  html body .question-info__teacher .teacher-content {
    flex-direction: column;
  }
}
html body .answer-info__teacher .teacher-content .teacher-image,
html body .question-info__teacher .teacher-content .teacher-image {
  flex: 1.5;
  padding-right: 1em;
}
html body .answer-info__teacher .teacher-content .teacher-image img,
html body .question-info__teacher .teacher-content .teacher-image img {
  background: white;
  border-radius: 200px;
}
@media (max-width: 757px) {
  html body .answer-info__teacher .teacher-content .teacher-image img,
  html body .question-info__teacher .teacher-content .teacher-image img {
    max-width: 100px;
  }
}
html body .answer-info__teacher .teacher-content .teacher-info,
html body .question-info__teacher .teacher-content .teacher-info {
  flex: 8.5;
}
html body .answer-info__teacher .teacher-content .teacher-info p,
html body .question-info__teacher .teacher-content .teacher-info p {
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 757px) {
  html body .answer-info__teacher .teacher-content .teacher-info p,
  html body .question-info__teacher .teacher-content .teacher-info p {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body .answer-info__teacher .teacher-content .teacher-info p,
  html body .question-info__teacher .teacher-content .teacher-info p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body .answer-info__teacher .teacher-content .teacher-info p,
  html body .question-info__teacher .teacher-content .teacher-info p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body .answer-info__teacher .teacher-content .teacher-info p,
  html body .question-info__teacher .teacher-content .teacher-info p {
    font-size: 1.6rem;
  }
}
html body .answer-info .meeting-info,
html body .question-info .meeting-info {
  margin-top: 2em;
}
@media (max-width: 757px) {
  html body .answer-info .meeting-info,
  html body .question-info .meeting-info {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  html body .answer-info .meeting-info,
  html body .question-info .meeting-info {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  html body .answer-info .meeting-info,
  html body .question-info .meeting-info {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  html body .answer-info .meeting-info,
  html body .question-info .meeting-info {
    font-size: 1.9rem;
  }
}
html body .answer-info .meeting-info small,
html body .question-info .meeting-info small {
  color: var(--black);
}
html body .answer-info .input-form__label,
html body .answer-info h3,
html body .question-info .input-form__label,
html body .question-info h3 {
  font-weight: bold;
  color: var(--main-dark);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media (max-width: 757px) {
  html body .answer-info .input-form__label,
  html body .answer-info h3,
  html body .question-info .input-form__label,
  html body .question-info h3 {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  html body .answer-info .input-form__label,
  html body .answer-info h3,
  html body .question-info .input-form__label,
  html body .question-info h3 {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  html body .answer-info .input-form__label,
  html body .answer-info h3,
  html body .question-info .input-form__label,
  html body .question-info h3 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  html body .answer-info .input-form__label,
  html body .answer-info h3,
  html body .question-info .input-form__label,
  html body .question-info h3 {
    font-size: 2.8rem;
  }
}
html body .online-status {
  background-color: #fac672;
  color: var(--black);
  padding: 8px 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: bolder;
}
@media (max-width: 757px) {
  html body .online-status {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  html body .online-status {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  html body .online-status {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  html body .online-status {
    font-size: 1.6rem;
  }
}
@media (max-width: 757px) {
  html body .online-status {
    margin: 1em 0;
  }
}
html body .online-status-both,
html body .online-status-online,
html body .online-status-f2f {
  color: var(--black);
  padding: 8px 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: bolder;
}
html body .online-status-both {
  background-color: #fac672;
}
html body .online-status-online {
  background-color: #d9edf7;
}
html body .online-status-f2f {
  background-color: #d3eccb;
}
html body .terms {
  margin-top: 50px;
}
html body .terms h3 {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 757px) {
  html body .terms h3 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  html body .terms h3 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  html body .terms h3 {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  html body .terms h3 {
    font-size: 1.9rem;
  }
}
html body .terms .terms-container {
  width: 100%;
  height: 200px;
  overflow-y: scroll;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
html body .terms .terms-container .terms-content {
  padding: 10px;
}
@media (max-width: 757px) {
  html body .terms .agreement label {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  html body .terms .agreement label {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  html body .terms .agreement label {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  html body .terms .agreement label {
    font-size: 1.9rem;
  }
}
html body .terms .agreement #terms-agreement {
  display: inline-block;
  vertical-align: middle;
}
html body .terms .agreement label[for=terms-agreement] {
  display: inline-block;
  vertical-align: middle;
}
html body .user-certification {
  display: flex;
  margin: 10px 0;
  justify-content: center;
}
@media (max-width: 757px) {
  html body .user-certification {
    margin: 15px 0;
  }
}
html body .user-certification > div {
  display: flex;
  align-items: center;
  padding: 10px;
  font-weight: bolder;
}
html body .user-certification img {
  max-width: 30px;
  margin-right: 8px;
}

.title-img {
  text-align: center;
}

.title-img img {
  max-height: 50px;
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

body header {
  background-color: var(--main-color);
  color: #fff;
}
@media (max-width: 757px) {
  body header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-left: 15px;
    padding-right: 15px;
  }
}
body header .container {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body header .container {
    padding: 15px;
  }
}
@media (max-width: 757px) {
  body header .container {
    align-items: center;
  }
}
body header .container .header__logo img {
  max-width: 200px;
}
@media (max-width: 757px) {
  body header .container .header__logo img {
    max-width: 150px;
  }
}
@media (max-width: 757px) {
  body header .container .header__menu {
    display: none;
  }
}
body header .container .header__menu ul {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body header .container .header__menu ul {
    flex-wrap: wrap;
  }
}
body header .container .header__menu ul li {
  border-right: 2px solid var(--black);
  line-height: 1;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body header .container .header__menu ul li {
    padding: 5px 0;
  }
}
body header .container .header__menu ul li:last-child {
  border-right: none;
}
body header .container .header__menu ul li:last-child a {
  border-right: none;
}
body header .container .header__menu ul li a {
  margin-right: 15px;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bolder;
}
@media (max-width: 757px) {
  body header .container .header__menu ul li a {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body header .container .header__menu ul li a {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body header .container .header__menu ul li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body header .container .header__menu ul li a {
    font-size: 1.6rem;
  }
}
body header .container .header__menu ul > li {
  display: flex;
  align-items: center;
  border-right: 0;
  height: 30px;
  position: relative;
}
body header .container .header__menu ul > li > a {
  margin: 0;
  padding: 0 15px;
  border-right: 2px solid var(--black);
}
body header .container .header__menu ul .menu-parent ul.submenu {
  background: #faffff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(80, 180, 224, 0.4);
  display: none;
  flex-flow: column;
  padding: 0;
  position: absolute;
  top: 30px;
  z-index: 99;
}
body header .container .header__menu ul .menu-parent:hover ul.submenu {
  display: flex;
}
body header .container .header__menu ul .menu-parent:hover ul.submenu li {
  border-bottom: 2px solid #bce6f7;
  border-right: none;
  height: auto;
  width: 220px;
}
body header .container .header__menu ul .menu-parent:hover ul.submenu li a {
  display: block;
  border: none;
  margin: 0;
  padding: 14px 20px;
  text-align: center;
  width: 100%;
}
body header .container .header__menu ul .menu-parent:hover ul.submenu li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
body header .container .header__buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 757px) {
  body header .container .header__buttons {
    display: none;
  }
}
body header .container .header__buttons .header__button {
  display: flex;
}
body header .container .header__buttons .header__button a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5px;
  font-size: 1.4rem;
  font-weight: bolder;
}
body header .container .header__buttons .header__button a img {
  max-width: 45px;
  max-height: 45px;
  margin: 5px;
}
body header .container .header__buttons .header__button--full-width {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}
body header .container .header__buttons .header__button--full-width a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #fff;
  color: #f28702;
  font-weight: bolder;
  padding: 0 15px;
  border-radius: 10px;
  min-width: 250px;
}
@media (max-width: 757px) {
  body header .container .header__buttons .header__button--full-width a {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body header .container .header__buttons .header__button--full-width a {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body header .container .header__buttons .header__button--full-width a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body header .container .header__buttons .header__button--full-width a {
    font-size: 1.6rem;
  }
}
body header .container .header__buttons .header__button--full-width a:hover {
  opacity: 0.7;
}
body header .container .header__buttons .header__button--full-width a img {
  max-width: 30px;
  max-height: 30px;
  margin: 5px;
}
body .sub-header {
  background-color: var(--sub-color);
  padding: 20px 15px;
}
@media (max-width: 757px) {
  body .sub-header {
    margin-top: 87px;
  }
}
body .sub-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 757px) {
  body .sub-header .container .sub-header__page-title {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  body .sub-header .container .sub-header__page-title {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  body .sub-header .container .sub-header__page-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  body .sub-header .container .sub-header__page-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  body .sub-header .container .sub-header__page-title {
    font-size: 1.6625rem;
  }
}
@media (max-width: 757px) and (min-width: 758px) {
  body .sub-header .container .sub-header__page-title {
    font-size: 1.6625rem;
  }
}
@media (max-width: 757px) and (min-width: 1024px) {
  body .sub-header .container .sub-header__page-title {
    font-size: 1.9rem;
  }
}
@media (max-width: 757px) and (min-width: 1330px) {
  body .sub-header .container .sub-header__page-title {
    font-size: 1.9rem;
  }
}
body .sub-header .container .sub-header__cart {
  font-size: 1rem;
}
body .sub-header .container .cart {
  position: relative;
}
body .sub-header .container .cart a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bolder;
}
body .sub-header .container .cart a img {
  width: 25px;
  height: 25px;
  margin-bottom: 5px;
}
body .sub-header .container .cart:before {
  content: attr(data-totalitems);
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: -12px;
  right: -12px;
  background: #2bd156;
  line-height: 24px;
  padding: 0 5px;
  height: 24px;
  min-width: 24px;
  color: white;
  text-align: center;
  border-radius: 24px;
}
body .sub-header .container .cart.shake {
  animation: shakeCart 0.4s ease-in-out forwards;
}
@keyframes xAxis {
  100% {
    transform: translateX(calc(90vw - 105px));
  }
}
@keyframes yAxis {
  100% {
    transform: translateY(calc(-90vh + 75px));
  }
}
@keyframes fadeAndMove {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  80% {
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    transform: translateX(200px);
    opacity: 0;
  }
}
@keyframes shakeCart {
  25% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

#nav-drawer {
  display: none;
  position: relative;
}
@media (max-width: 757px) {
  #nav-drawer {
    display: block;
  }
  #nav-drawer .nav-unshown {
    display: none;
  }
  #nav-drawer #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 50vw;
    height: 100%;
    transition: 0.3s ease-in-out;
    transform: translateX(105%);
    background: var(--sub-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: normal;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  #nav-drawer #nav-content {
    max-width: 80vw;
  }
}
@media (max-width: 757px) {
  #nav-drawer #nav-content .menu-logo {
    padding: 2em 0;
    width: 80%;
  }
  #nav-drawer #nav-content ul.menu-list {
    margin: 1em 0;
    padding: 0;
  }
  #nav-drawer #nav-content ul.menu-list li {
    padding: 14px 2px;
    position: relative;
    text-align: center;
    font-weight: bolder;
  }
  #nav-drawer #nav-content ul.menu-list li a {
    color: var(--black);
    display: flex;
    font-size: 1.6rem;
    align-items: center;
    padding: 0;
  }
  #nav-drawer #nav-content ul.menu-list li .submenu li {
    padding: 6px;
  }
  #nav-drawer #nav-content ul.menu-list li .submenu li:first-child {
    padding: 10px 6px 6px;
  }
  #nav-drawer #nav-content ul.menu-list li .submenu a {
    font-size: 1.2rem;
    padding: 0;
  }
  #nav-drawer #nav-content ul.menu-list > li {
    border-bottom: 2px solid #888;
  }
  #nav-drawer #nav-content ul.menu-list > li:first-child {
    border-top: 2px solid #888;
  }
  #nav-drawer #nav-content ul.menu-btn {
    padding: 0;
  }
  #nav-drawer #nav-content ul.menu-btn li {
    padding: 8px 0;
    position: relative;
    text-align: center;
  }
  #nav-drawer #nav-content ul.menu-btn li a {
    color: var(--black);
    display: flex;
    align-items: center;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bolder;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  #nav-drawer #nav-content ul.menu-btn li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 757px) and (min-width: 758px) {
  #nav-drawer #nav-content ul.menu-btn li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 757px) and (min-width: 1024px) {
  #nav-drawer #nav-content ul.menu-btn li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 757px) and (min-width: 1330px) {
  #nav-drawer #nav-content ul.menu-btn li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 757px) {
  #nav-drawer #nav-content ul.menu-btn li a img {
    max-height: 30px;
    max-width: 30px;
    margin-right: 10px;
  }
  #nav-drawer #nav-content ul.menu-btn li.header__become-teacher a {
    background: #fff;
    color: #333;
    height: 40px;
  }
}
@media (max-width: 757px) and (min-width: 758px) and (max-width: 1023px) {
  #nav-drawer #nav-content .menu-logo .logo {
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  #nav-drawer #nav-content .menu-logo .logo {
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 757px) {
  #nav-drawer #nav-content .menu-logo .logo a {
    display: flex;
    align-items: center;
  }
  #nav-drawer #nav-content .menu-logo .logo a span {
    font-size: 1em;
    font-weight: 500;
    margin: 0 0 0 10px;
    color: var(--font-color);
    text-shadow: none;
  }
}
@media (max-width: 757px) and (min-width: 758px) and (max-width: 1023px) {
  #nav-drawer #nav-content .menu-logo .logo a span {
    font-size: 1.8rem;
    margin: 0 0 0 15px;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  #nav-drawer #nav-content .menu-logo .logo a span {
    font-size: 1.5rem;
    margin: 0 0 0 15px;
  }
}
@media (max-width: 757px) {
  #nav-drawer #nav-content .menu-logo .logo a img {
    display: inline;
    height: 30px;
    width: auto;
  }
}
@media (max-width: 757px) and (min-width: 758px) and (max-width: 1023px) {
  #nav-drawer #nav-content .menu-logo .logo a img {
    height: 50px;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  #nav-drawer #nav-content .menu-logo .logo a img {
    height: 50px;
  }
}
@media (max-width: 757px) {
  #nav-drawer #nav-content .menu-info {
    padding: 0 1.5em;
    margin-bottom: 5em;
  }
  #nav-drawer #nav-content .menu-info .tel {
    margin: 8px 5px 0 30px;
    font-size: 16px;
    color: #fff;
  }
  #nav-drawer #nav-content .menu-info .reserv-link {
    margin: 5px 0;
    display: none;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  #nav-drawer #nav-content .menu-info .reserv-link {
    display: block;
  }
}
@media (max-width: 757px) {
  #nav-drawer #nav-content .menu-info .reserv-link a {
    color: white;
    background: var(--acc-color);
    border: 1px solid var(--acc-color);
    padding: 8px 15px;
    margin: 0;
  }
  #nav-drawer #nav-content .menu-info .reserv-link a:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: white;
  }
  #nav-drawer #nav-open {
    display: inline-block;
    vertical-align: middle;
  }
  #nav-drawer #nav-open .openbtn {
    position: relative; /*ボタン内側の基点となるためrelativeを指定*/
    width: 50px;
    height: 50px;
    cursor: pointer;
    /*activeクラスが付与されると線が回転して×に*/
  }
  #nav-drawer #nav-open .openbtn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    z-index: 999;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
  #nav-drawer #nav-open .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  #nav-drawer #nav-open .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  #nav-drawer #nav-open .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  #nav-drawer #nav-close {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
}

#nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#nav-input:checked ~ #nav-open .openbtn span {
  background: var(--black);
}

#nav-input:checked ~ #nav-open .openbtn span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

#nav-input:checked ~ #nav-open .openbtn span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

#nav-input:checked ~ #nav-open .openbtn span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

body.home main .section:nth-child(odd) {
  background-color: #daedf6;
}
body.home main .section img {
  transition: all 0.3s;
}
body.home main .section img.btn-search {
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 757px) {
  body.home main .section img.btn-search {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 757px) {
  body.home main .section--visual {
    padding-top: 90px;
    padding-bottom: 80px;
  }
}
body.home main .section--visual img.btn-search {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 757px) {
  body.home main .section--merits {
    padding-top: 90px;
  }
}
body.home main .section--teacher {
  text-align: center;
}
body.home main .section--teacher .title-img img {
  max-height: 100px;
}
body.home main .section--teacher h2.section__title {
  margin: 0.3em 0 1em;
}
body.home main .section .container--visual {
  display: flex;
  align-items: center;
}
@media (max-width: 757px) {
  body.home main .section .container--visual {
    flex-direction: column;
    margin-top: 2em;
  }
}
body.home main .section .container--visual .box--visual {
  flex-basis: 50%;
  text-align: center;
}
body.home main .section .container--visual .box--visual h1 {
  font-weight: 900;
  margin-bottom: 30px;
}
@media (max-width: 757px) {
  body.home main .section .container--visual .box--visual h1 {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--visual .box--visual h1 {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--visual .box--visual h1 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--visual .box--visual h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 757px) {
  body.home main .section .container--visual .box--visual h1 {
    margin: 1em 0;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  body.home main .section .container--visual .box--visual h1 {
    font-size: 1.925rem;
  }
}
@media (max-width: 757px) and (min-width: 758px) {
  body.home main .section .container--visual .box--visual h1 {
    font-size: 1.925rem;
  }
}
@media (max-width: 757px) and (min-width: 1024px) {
  body.home main .section .container--visual .box--visual h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 757px) and (min-width: 1330px) {
  body.home main .section .container--visual .box--visual h1 {
    font-size: 2.2rem;
  }
}
body.home main .section .container--visual .box--visual .box__image {
  padding-right: 2em;
}
@media (max-width: 757px) {
  body.home main .section .container--visual .box--visual .box__image {
    padding: 0;
    width: 100vw;
  }
}
body.home main .section .container--visual .box--visual .box--visual__merit {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body.home main .section .container--visual .box--visual .box--visual__merit {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  body.home main .section .container--visual .box--visual .box--visual__merit br {
    display: none;
  }
}
@media (max-width: 757px) {
  body.home main .section .container--visual .box--visual .box--visual__merit {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  body.home main .section .container--visual .box--visual .box--visual__merit br {
    display: none;
  }
}
body.home main .section .container--visual .box--visual .box--visual__merit > div {
  padding: 20px;
  border: 1px solid #ccc;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bolder;
  border-radius: 200px;
  height: 200px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div {
    height: auto;
    padding: 10px;
  }
}
@media (max-width: 757px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div {
    height: 100px;
  }
}
body.home main .section .container--visual .box--visual .box--visual__merit > div span {
  color: #fff;
  position: absolute;
  top: -4px;
  left: -4px;
  display: inline-block;
  padding-right: 40px;
}
@media (max-width: 757px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div span {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div span {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div span {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div span {
    font-size: 1.9rem;
  }
}
body.home main .section .container--visual .box--visual .box--visual__merit > div span:after {
  background: #ffdf09;
  border-radius: 10px;
  font-size: 3rem;
  padding: 2px 10px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 757px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div span:after {
    font-size: 2.2rem;
  }
}
body.home main .section .container--visual .box--visual .box--visual__merit > div p {
  margin-top: 5px;
  color: var(--black);
}
@media (max-width: 757px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div p {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div p {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div p {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--visual .box--visual .box--visual__merit > div p {
    font-size: 1.9rem;
  }
}
body.home main .section .container--visual .box--visual .box--visual__merit > div.merit1, body.home main .section .container--visual .box--visual .box--visual__merit > div.merit2, body.home main .section .container--visual .box--visual .box--visual__merit > div.merit3 {
  background: #fff;
  border: 4px solid #ffde0a;
  border-radius: 20px;
  color: #333;
  box-shadow: rgba(255, 255, 255, 0.5) 0px 6px 12px 0px, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px;
  position: relative;
}
body.home main .section .container--visual .box--visual .box--visual__merit > div.merit1 span:after {
  content: "01";
}
body.home main .section .container--visual .box--visual .box--visual__merit > div.merit2 span:after {
  content: "02";
}
body.home main .section .container--visual .box--visual .box--visual__merit > div.merit3 span:after {
  content: "03";
}
body.home main .section .container--merits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 757px) {
  body.home main .section .container--merits {
    grid-template-columns: 1fr;
  }
}
body.home main .section .container--merits img {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
}
body.home main .section .container--features {
  max-width: 1000px;
}
body.home main .section .container--features .box--features {
  display: flex;
  align-items: flex-start;
  background-image: url(../img/features-bg1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 1em;
  padding: 60px;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body.home main .section .container--features .box--features {
    background-position: 100% 100%;
  }
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features {
    flex-direction: column;
    padding: 30px 0 50px;
    background: white;
    border-radius: 20px;
  }
}
body.home main .section .container--features .box--features .box__text p {
  margin-bottom: 2em;
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features .box__text p {
    margin-bottom: 0;
  }
}
body.home main .section .container--features .box--features:last-child {
  margin-bottom: 0;
}
body.home main .section .container--features .box--features:nth-child(even) {
  flex-direction: row-reverse;
  padding: 60px;
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features:nth-child(even) {
    flex-direction: column;
    padding: 30px 0 50px;
  }
}
body.home main .section .container--features .box--features:nth-of-type(1) .box__text h3 span:after {
  content: "01";
}
body.home main .section .container--features .box--features:nth-of-type(2) {
  background-image: url(../img/features-bg2.svg);
}
body.home main .section .container--features .box--features:nth-of-type(2) .box__text h3 span:after {
  content: "02";
}
body.home main .section .container--features .box--features:nth-of-type(3) {
  background-image: url(../img/features-bg3.svg);
  background-position: center;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body.home main .section .container--features .box--features:nth-of-type(3) {
    padding-bottom: 0;
  }
}
body.home main .section .container--features .box--features:nth-of-type(3) .box__text h3 span:after {
  content: "03";
}
body.home main .section .container--features .box--features .box__image {
  flex: 4;
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features .box__image {
    text-align: center;
    width: 100%;
  }
  body.home main .section .container--features .box--features .box__image img {
    max-width: 200px;
  }
}
body.home main .section .container--features .box--features .box__text {
  flex: 6;
  padding: 0 50px;
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features .box__text {
    padding: 0 30px;
  }
}
body.home main .section .container--features .box--features .box__text h3 {
  font-weight: bolder;
  color: var(--main-dark);
  margin-bottom: 20px;
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features .box__text h3 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--features .box--features .box__text h3 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--features .box--features .box__text h3 {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--features .box--features .box__text h3 {
    font-size: 1.9rem;
  }
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features .box__text h3 {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--features .box--features .box__text h3 {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--features .box--features .box__text h3 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--features .box--features .box__text h3 {
    font-size: 2.8rem;
  }
}
body.home main .section .container--features .box--features .box__text h3 span {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  margin-bottom: 15px;
  margin-top: 20px;
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features .box__text h3 span {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--features .box--features .box__text h3 span {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--features .box--features .box__text h3 span {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--features .box--features .box__text h3 span {
    font-size: 1.9rem;
  }
}
body.home main .section .container--features .box--features .box__text h3 span:after {
  position: absolute;
  bottom: -5px;
  right: 0;
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features .box__text h3 span:after {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--features .box--features .box__text h3 span:after {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--features .box--features .box__text h3 span:after {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--features .box--features .box__text h3 span:after {
    font-size: 2.8rem;
  }
}
body.home main .section .container--features .box--features .box__text p {
  font-weight: bolder;
}
@media (max-width: 757px) {
  body.home main .section .container--features .box--features .box__text p {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--features .box--features .box__text p {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--features .box--features .box__text p {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--features .box--features .box__text p {
    font-size: 1.9rem;
  }
}
body.home main .section .container--features .box--features .box__text p .badge {
  max-width: 20px;
  margin: 0 5px;
}
body.home main .section .container--price {
  text-align: center;
}
body.home main .section .container--price h3 {
  font-weight: bolder;
  margin-bottom: 20px;
}
@media (max-width: 757px) {
  body.home main .section .container--price h3 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--price h3 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--price h3 {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--price h3 {
    font-size: 1.9rem;
  }
}
@media (max-width: 757px) {
  body.home main .section .container--price h3 {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--price h3 {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--price h3 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--price h3 {
    font-size: 2.8rem;
  }
}
body.home main .section .container--price h3 span {
  color: #f28703;
}
body.home main .section .container--price h3 small {
  font-weight: normal;
  margin-left: 10px;
}
@media (max-width: 757px) {
  body.home main .section .container--price h3 small {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--price h3 small {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--price h3 small {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--price h3 small {
    font-size: 1.6rem;
  }
}
body.home main .section .container--price p {
  font-weight: bolder;
}
@media (max-width: 757px) {
  body.home main .section .container--price p {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--price p {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--price p {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--price p {
    font-size: 1.9rem;
  }
}
body.home main .section .container--price p.box__red {
  margin: 1.5em 0;
  color: #f28703;
}
body.home main .section .container--price .merit-wari {
  margin-top: 50px;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  background: var(--main-color);
}
@media (max-width: 757px) {
  body.home main .section .container--price .merit-wari {
    flex-direction: column;
  }
}
body.home main .section .container--price .merit-wari img:first-child {
  flex-basis: 40%;
  width: 40%;
}
@media (max-width: 757px) {
  body.home main .section .container--price .merit-wari img:first-child {
    flex-basis: 100%;
    width: 100%;
  }
}
body.home main .section .container--price .merit-wari img.pcv {
  flex-basis: 60%;
  width: 60%;
}
@media (max-width: 757px) {
  body.home main .section .container--price .merit-wari img.spv {
    flex-basis: 100%;
    width: 100%;
  }
}
body.home main .section .container--teacher {
  margin-bottom: 3em;
  position: relative;
}
@media (max-width: 757px) {
  body.home main .section .container--teacher {
    margin-bottom: 1em;
  }
}
body.home main .section .container--teacher .swiper-container {
  padding: 15px;
  overflow: hidden;
}
body.home main .section .container--teacher .swiper-container figure a {
  background: white;
  border-radius: 20px;
  display: block;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
body.home main .section .container--teacher .swiper-container figure a:hover {
  transition: all 0.3s ease;
  transform: scale(1.05); /* 拡大 */
  color: inherit;
}
body.home main .section .container--teacher .swiper-container figure a .figure--image {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
body.home main .section .container--teacher .swiper-container figure a .figure--image .figure--image__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 120px;
  width: 120px;
}
body.home main .section .container--teacher .swiper-container figure a .figure--image .figure--image__text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home main .section .container--teacher .swiper-container figure a .figure--image .figure--image__text p {
  font-weight: bolder;
}
@media (max-width: 757px) {
  body.home main .section .container--teacher .swiper-container figure a .figure--image .figure--image__text p {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--teacher .swiper-container figure a .figure--image .figure--image__text p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--teacher .swiper-container figure a .figure--image .figure--image__text p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--teacher .swiper-container figure a .figure--image .figure--image__text p {
    font-size: 1.6rem;
  }
}
body.home main .section .container--teacher .swiper-container figure a .figure--caption .online-status {
  background: #fcdc0d;
  display: block;
  border-radius: 20px;
  padding: 5px;
  font-weight: bolder;
}
body.home main .section .container--teacher .swiper-container figure a .figure--caption p {
  padding-top: 10px;
  text-align: left;
}
@media (max-width: 757px) {
  body.home main .section .container--teacher .swiper-container figure a .figure--caption p {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body.home main .section .container--teacher .swiper-container figure a .figure--caption p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body.home main .section .container--teacher .swiper-container figure a .figure--caption p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body.home main .section .container--teacher .swiper-container figure a .figure--caption p {
    font-size: 1.6rem;
  }
}
body.home main .section .container--teacher .swiper-container figure a .figure--caption .teacher-pr {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
body.home main .section .container--teacher .swiper-container figure a .figure--caption .link-text {
  color: #e24b3a;
  text-align: right;
  display: block;
  padding-top: 20px;
}
body.home main .section .container--teacher .swiper-container .swiper-button-next {
  color: var(--main-color);
  right: -35px;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body.home main .section .container--teacher .swiper-container .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 757px) {
  body.home main .section .container--teacher .swiper-container .swiper-button-next {
    right: 0;
  }
}
body.home main .section .container--teacher .swiper-container .swiper-button-prev {
  color: var(--main-color);
  left: -35px;
}
@media (min-width: 758px) and (max-width: 1023px) {
  body.home main .section .container--teacher .swiper-container .swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 757px) {
  body.home main .section .container--teacher .swiper-container .swiper-button-prev {
    left: 0;
  }
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

body.home main section .modal, body.teacher-result main section .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
body.home main section .teacher-profile .select-on, body.teacher-result main section .teacher-profile .select-on {
  display: none;
}
body.home main section .teacher-profile.is-checked, body.teacher-result main section .teacher-profile.is-checked {
  background-color: #d9edf6;
}
body.home main section .teacher-profile.is-checked .select-on, body.teacher-result main section .teacher-profile.is-checked .select-on {
  display: block;
  background: darkorange;
  color: white;
  border-radius: 20px;
  margin-left: 10px;
  padding: 5px 15px;
}
@media (max-width: 757px) {
  body.home main section .teacher-profile.is-checked .select-on, body.teacher-result main section .teacher-profile.is-checked .select-on {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body.home main section .teacher-profile.is-checked .select-on, body.teacher-result main section .teacher-profile.is-checked .select-on {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body.home main section .teacher-profile.is-checked .select-on, body.teacher-result main section .teacher-profile.is-checked .select-on {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body.home main section .teacher-profile.is-checked .select-on, body.teacher-result main section .teacher-profile.is-checked .select-on {
    font-size: 1.6rem;
  }
}
body.home main section .teacher-profile .teacher-profile__list, body.teacher-result main section .teacher-profile .teacher-profile__list {
  opacity: 1;
  margin-bottom: 20px;
  max-height: none;
  overflow: visible;
}
body.home main section .modal-content, body.teacher-result main section .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translate(-50%, -60%);
  transition: opacity 0.3s, transform 0.3s;
  max-height: 90vh;
  max-width: 800px;
  overflow: scroll;
}
@media (max-width: 757px) {
  body.home main section .modal-content, body.teacher-result main section .modal-content {
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
  }
}
body.home main section .close, body.teacher-result main section .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 757px) {
  body.home main section .close, body.teacher-result main section .close {
    font-size: 2.45rem;
  }
}
@media (min-width: 758px) {
  body.home main section .close, body.teacher-result main section .close {
    font-size: 2.45rem;
  }
}
@media (min-width: 1024px) {
  body.home main section .close, body.teacher-result main section .close {
    font-size: 2.8rem;
  }
}
@media (min-width: 1330px) {
  body.home main section .close, body.teacher-result main section .close {
    font-size: 2.8rem;
  }
}
body.home main section .cart-icon, body.teacher-result main section .cart-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
body.home main section .cart-count, body.teacher-result main section .cart-count {
  background-color: #ff5733;
  color: #fff;
  border-radius: 50%;
  padding: 6px 12px;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}
body.home main section .cart-count.added, body.teacher-result main section .cart-count.added {
  transform: scale(1);
}
body.home main section .popup-message, body.teacher-result main section .popup-message {
  display: none;
  position: absolute;
  white-space: nowrap;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  padding: 8px 16px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 757px) {
  body.home main section .popup-message, body.teacher-result main section .popup-message {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body.home main section .popup-message, body.teacher-result main section .popup-message {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body.home main section .popup-message, body.teacher-result main section .popup-message {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body.home main section .popup-message, body.teacher-result main section .popup-message {
    font-size: 1.6rem;
  }
}
body.home main section a[id^=removeTeacherCartBtn],
body.home main section a[id^=removeTeacherCartModalBtn], body.teacher-result main section a[id^=removeTeacherCartBtn],
body.teacher-result main section a[id^=removeTeacherCartModalBtn] {
  background-color: #999;
}
body.home main section a[id^=removeTeacherCartBtn]:hover,
body.home main section a[id^=removeTeacherCartModalBtn]:hover, body.teacher-result main section a[id^=removeTeacherCartBtn]:hover,
body.teacher-result main section a[id^=removeTeacherCartModalBtn]:hover {
  background-color: #aaa;
}
body.home main section button.addtocart-btn, body.teacher-result main section button.addtocart-btn {
  position: relative;
}
body.home main section button.addtocart-btn[onclick="removeTeacherCart('1')"], body.teacher-result main section button.addtocart-btn[onclick="removeTeacherCart('1')"] {
  background-color: #999;
}
body.home main section button.addtocart-btn[onclick="removeTeacherCart('1')"]:hover, body.teacher-result main section button.addtocart-btn[onclick="removeTeacherCart('1')"]:hover {
  background-color: #aaa;
}
body.home main section button.addtocart-btn .cart-item, body.teacher-result main section button.addtocart-btn .cart-item {
  position: absolute;
  height: 24px;
  width: 24px;
  top: -10px;
  right: -10px;
}
body.home main section button.addtocart-btn.remove .cart-item, body.teacher-result main section button.addtocart-btn.remove .cart-item {
  display: none;
}
body.home main section button.addtocart-btn.sendtocart .cart-item, body.teacher-result main section button.addtocart-btn.sendtocart .cart-item {
  display: block;
  animation: xAxis 1s forwards cubic-bezier(1, 0.44, 0.84, 0.165);
}
body.home main section button.addtocart-btn.sendtocart .cart-item:before, body.teacher-result main section button.addtocart-btn.sendtocart .cart-item:before {
  animation: yAxis 1s alternate forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes xAxis {
  100% {
    transform: translateX(calc(50vw - 105px));
  }
}
@keyframes yAxis {
  100% {
    transform: translateY(calc(-80vh + 75px));
  }
}
@keyframes shakeCart {
  25% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
body.home main section button.addtocart-btn.sendtocart.remove .cart-item, body.teacher-result main section button.addtocart-btn.sendtocart.remove .cart-item {
  animation: none;
}
body.home main section button.addtocart-btn.sendtocart.remove .cart-item:before, body.teacher-result main section button.addtocart-btn.sendtocart.remove .cart-item:before {
  animation: none;
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

body.teacher-confilm h2 {
  margin-bottom: 1em;
}
body.teacher-confilm .teacher-profile {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1.3s cubic-bezier(0.25, 1, 0.5, 1), transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), height 1.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
body.teacher-confilm .teacher-profile.slide-out {
  opacity: 0;
  height: 0;
  transform: translateY(-25%) scale(0.8);
  transition: opacity 1.3s cubic-bezier(0.25, 1, 0.5, 1), transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), height 1.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
  margin: 0;
}
body.teacher-confilm .teacher-profile.slide-out .teacher-profile__list {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
body.teacher-confilm .teacher-profile .teacher-profile__list {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
body.teacher-confilm .teacher-profile .teacher-profile__list.show {
  opacity: 1;
  max-height: -moz-max-content;
  max-height: max-content;
}
@media (max-width: 757px) {
  body.teacher-confilm .teacher-profile .teacher-profile__btnlist {
    margin: 2em 0 0;
  }
}
@media (max-width: 757px) {
  body.teacher-confilm .teacher-profile .teacher-profile__btnlist button {
    width: 100%;
    margin: 10px 0;
  }
}
@media (max-width: 757px) {
  body.teacher-confilm .teacher-profile .teacher-profile__btnlist button.remove-button {
    font-size: 1.2rem;
    font-weight: normal;
    padding: 8px 20px;
  }
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

body.teacher-checkout-question h2 {
  margin-bottom: 1em;
}
body.teacher-checkout-question h3 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: bolder;
  color: var(--main-dark);
}
@media (max-width: 757px) {
  body.teacher-checkout-question h3 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.teacher-checkout-question h3 {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.teacher-checkout-question h3 {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.teacher-checkout-question h3 {
    font-size: 1.9rem;
  }
}
body.teacher-checkout-question textarea {
  font-size: 1.8rem;
  padding: 15px;
}
body.teacher-checkout-question .teacher-question {
  border: 1px solid #ccc;
  line-height: 2;
  background: #faf5dd;
  border-radius: 4px;
  padding: 25px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
@media (max-width: 757px) {
  body.teacher-checkout-question .teacher-question {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.teacher-checkout-question .teacher-question {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.teacher-checkout-question .teacher-question {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.teacher-checkout-question .teacher-question {
    font-size: 1.9rem;
  }
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

body.inquiries-teacher main .question-info .answer-group {
  margin-top: 3em;
}
@media (max-width: 757px) {
  body.inquiries-teacher main .question-info .answer-group {
    margin-top: 0;
  }
}
body.inquiries-teacher main .question-info .answer-group textarea {
  border: 2px solid var(--main-dark);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  text-align: left;
}
body.inquiries-teacher main .question-info .question-info__user {
  margin-bottom: 0;
}
body.inquiries-teacher main .question-info .question-info__user .question-info__user-text h3 {
  color: #f7b54c;
}
body.inquiries-teacher main .question-info .question-info__user .question-info__user-text p {
  background: #faf5dd;
  border-radius: 5px;
  padding: 20px;
  border: 2px solid #f7b54c;
}
body.inquiries-teacher main .question-info .question-info__user .question-info__user-text ul {
  margin-bottom: 20px;
  text-align: left;
}
body.inquiries-teacher main .question-info .question-info__user .question-info__user-text li {
  margin-bottom: 6px;
}
body.inquiries-teacher main .question-info .question-info__user .question-info__teacher-text {
  margin-top: 2em;
}
body.inquiries-teacher main .question-info .question-info__user .question-info__teacher-text h3 {
  color: var(--main-dark);
}
:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

body.answer-student main section .teacher-profile__details h2 {
  margin-bottom: 1em;
}
body.answer-student main section .teacher-profile {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1.3s cubic-bezier(0.25, 1, 0.5, 1), transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), height 1.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
body.answer-student main section .teacher-profile.slide-out {
  opacity: 0;
  height: 0;
  transform: translateY(-25%) scale(0.8);
  transition: opacity 1.3s cubic-bezier(0.25, 1, 0.5, 1), transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), height 1.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
  margin: 0;
}
body.answer-student main section .teacher-profile.slide-out .teacher-profile__list {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
body.answer-student main section .teacher-profile .teacher-profile__list {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
body.answer-student main section .teacher-profile .teacher-profile__list.show {
  opacity: 1;
  max-height: 1000px;
}
@media (max-width: 757px) {
  body.answer-student main section .teacher-profile .teacher-profile__btnlist {
    margin: 2em 0 0;
  }
}
@media (max-width: 757px) {
  body.answer-student main section .teacher-profile .teacher-profile__btnlist button {
    width: 100%;
    margin: 5px 0;
  }
}
body.answer-student main section .price-box {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 30px 30px 20px;
  margin: 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #f5f5f5;
  text-align: center;
}
body.answer-student main section .price-box__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(transparent 45%, #fff799 45%);
  font-weight: bold;
  display: inline-block;
}
body.answer-student main section .price-box__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
  max-width: 400px;
  margin: 20px auto 10px;
}
body.answer-student main section .price-box__info dt,
body.answer-student main section .price-box__info dd {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
  white-space: nowrap;
}
@media (max-width: 757px) {
  body.answer-student main section .price-box__info dt,
  body.answer-student main section .price-box__info dd {
    font-size: 1.6625rem;
  }
}
@media (min-width: 758px) {
  body.answer-student main section .price-box__info dt,
  body.answer-student main section .price-box__info dd {
    font-size: 1.6625rem;
  }
}
@media (min-width: 1024px) {
  body.answer-student main section .price-box__info dt,
  body.answer-student main section .price-box__info dd {
    font-size: 1.9rem;
  }
}
@media (min-width: 1330px) {
  body.answer-student main section .price-box__info dt,
  body.answer-student main section .price-box__info dd {
    font-size: 1.9rem;
  }
}
@media (max-width: 757px) {
  body.answer-student main section .price-box__info dt,
  body.answer-student main section .price-box__info dd {
    font-size: 1.5rem;
  }
}
body.answer-student main section .price-box__info dt {
  padding-right: 10px;
  font-weight: bold;
}
body.answer-student main section .price-box__info dt:nth-last-of-type(2) {
  border-bottom: 2px solid #ccc;
}
body.answer-student main section .price-box__info dt:last-of-type {
  border: none;
}
body.answer-student main section .price-box__info dd.price-box__info-discount {
  color: #f08604;
}
body.answer-student main section .price-box__info dd:nth-last-of-type(2) {
  border-bottom: 2px solid #ccc;
}
body.answer-student main section .price-box__info dd:last-of-type {
  border: none;
}
body.answer-student main section .price-box__note {
  font-size: 1.8rem;
  line-height: 2;
  margin: 20px auto 0;
  max-width: 800px;
}
@media (max-width: 757px) {
  body.answer-student main section .price-box__note {
    line-height: 1.5;
  }
}
@media (max-width: 757px) and (max-width: 757px) {
  body.answer-student main section .price-box__note {
    font-size: 1.4rem;
  }
}
@media (max-width: 757px) and (min-width: 758px) {
  body.answer-student main section .price-box__note {
    font-size: 1.4rem;
  }
}
@media (max-width: 757px) and (min-width: 1024px) {
  body.answer-student main section .price-box__note {
    font-size: 1.6rem;
  }
}
@media (max-width: 757px) and (min-width: 1330px) {
  body.answer-student main section .price-box__note {
    font-size: 1.6rem;
  }
}
body.answer-student main section .price-box__button {
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}
body.answer-student main section .price-box__button:hover {
  background-color: #2980b9;
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

body.for-teacher main section.container, body.for-student main section.container, body.privacypolicy main section.container, body.terms main section.container {
  max-width: 800px;
}
body.for-teacher main section h3, body.for-student main section h3, body.privacypolicy main section h3, body.terms main section h3 {
  margin: 2em 0 0.5em;
}
@media (max-width: 757px) {
  body.for-teacher main section h3, body.for-student main section h3, body.privacypolicy main section h3, body.terms main section h3 {
    font-size: 1.925rem;
  }
}
@media (min-width: 758px) {
  body.for-teacher main section h3, body.for-student main section h3, body.privacypolicy main section h3, body.terms main section h3 {
    font-size: 1.925rem;
  }
}
@media (min-width: 1024px) {
  body.for-teacher main section h3, body.for-student main section h3, body.privacypolicy main section h3, body.terms main section h3 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1330px) {
  body.for-teacher main section h3, body.for-student main section h3, body.privacypolicy main section h3, body.terms main section h3 {
    font-size: 2.2rem;
  }
}
body.for-teacher main section h3.text-blue, body.for-student main section h3.text-blue, body.privacypolicy main section h3.text-blue, body.terms main section h3.text-blue {
  text-align: center;
  font-weight: bolder;
}
@media (max-width: 757px) {
  body.for-teacher main section h3.text-blue, body.for-student main section h3.text-blue, body.privacypolicy main section h3.text-blue, body.terms main section h3.text-blue {
    font-size: 1.925rem;
  }
}
@media (min-width: 758px) {
  body.for-teacher main section h3.text-blue, body.for-student main section h3.text-blue, body.privacypolicy main section h3.text-blue, body.terms main section h3.text-blue {
    font-size: 1.925rem;
  }
}
@media (min-width: 1024px) {
  body.for-teacher main section h3.text-blue, body.for-student main section h3.text-blue, body.privacypolicy main section h3.text-blue, body.terms main section h3.text-blue {
    font-size: 2.2rem;
  }
}
@media (min-width: 1330px) {
  body.for-teacher main section h3.text-blue, body.for-student main section h3.text-blue, body.privacypolicy main section h3.text-blue, body.terms main section h3.text-blue {
    font-size: 2.2rem;
  }
}
body.for-teacher main section p, body.for-student main section p, body.privacypolicy main section p, body.terms main section p {
  color: #666;
  line-height: 1.6;
}
@media (max-width: 757px) {
  body.for-teacher main section p, body.for-student main section p, body.privacypolicy main section p, body.terms main section p {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body.for-teacher main section p, body.for-student main section p, body.privacypolicy main section p, body.terms main section p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body.for-teacher main section p, body.for-student main section p, body.privacypolicy main section p, body.terms main section p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body.for-teacher main section p, body.for-student main section p, body.privacypolicy main section p, body.terms main section p {
    font-size: 1.6rem;
  }
}
body.for-teacher main section p span, body.for-student main section p span, body.privacypolicy main section p span, body.terms main section p span {
  color: #f28702;
}
body.for-teacher main section blockquote, body.for-student main section blockquote, body.privacypolicy main section blockquote, body.terms main section blockquote {
  background: #eee;
  padding: 5px;
  display: inline-block;
}
@media (max-width: 757px) {
  body.for-teacher main section blockquote, body.for-student main section blockquote, body.privacypolicy main section blockquote, body.terms main section blockquote {
    font-size: 1.1375rem;
  }
}
@media (min-width: 758px) {
  body.for-teacher main section blockquote, body.for-student main section blockquote, body.privacypolicy main section blockquote, body.terms main section blockquote {
    font-size: 1.1375rem;
  }
}
@media (min-width: 1024px) {
  body.for-teacher main section blockquote, body.for-student main section blockquote, body.privacypolicy main section blockquote, body.terms main section blockquote {
    font-size: 1.3rem;
  }
}
@media (min-width: 1330px) {
  body.for-teacher main section blockquote, body.for-student main section blockquote, body.privacypolicy main section blockquote, body.terms main section blockquote {
    font-size: 1.3rem;
  }
}
body.for-teacher main section a, body.for-student main section a, body.privacypolicy main section a, body.terms main section a {
  color: var(--main-dark);
  text-decoration: underline;
}
body.for-teacher main section a:hover, body.for-student main section a:hover, body.privacypolicy main section a:hover, body.terms main section a:hover {
  text-decoration: none;
}
body.for-teacher main section dl dt, body.for-student main section dl dt, body.privacypolicy main section dl dt, body.terms main section dl dt {
  font-weight: bolder;
  margin-top: 2em;
}
@media (max-width: 757px) {
  body.for-teacher main section dl dt, body.for-student main section dl dt, body.privacypolicy main section dl dt, body.terms main section dl dt {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body.for-teacher main section dl dt, body.for-student main section dl dt, body.privacypolicy main section dl dt, body.terms main section dl dt {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body.for-teacher main section dl dt, body.for-student main section dl dt, body.privacypolicy main section dl dt, body.terms main section dl dt {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body.for-teacher main section dl dt, body.for-student main section dl dt, body.privacypolicy main section dl dt, body.terms main section dl dt {
    font-size: 1.6rem;
  }
}
body.for-teacher main section dl dd, body.for-student main section dl dd, body.privacypolicy main section dl dd, body.terms main section dl dd {
  margin: 0.5em 0;
}
@media (max-width: 757px) {
  body.for-teacher main section dl dd, body.for-student main section dl dd, body.privacypolicy main section dl dd, body.terms main section dl dd {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  body.for-teacher main section dl dd, body.for-student main section dl dd, body.privacypolicy main section dl dd, body.terms main section dl dd {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  body.for-teacher main section dl dd, body.for-student main section dl dd, body.privacypolicy main section dl dd, body.terms main section dl dd {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  body.for-teacher main section dl dd, body.for-student main section dl dd, body.privacypolicy main section dl dd, body.terms main section dl dd {
    font-size: 1.6rem;
  }
}
body.for-teacher main section dl dd span, body.for-student main section dl dd span, body.privacypolicy main section dl dd span, body.terms main section dl dd span {
  color: #f28702;
}
body.for-teacher main section ol, body.for-student main section ol, body.privacypolicy main section ol, body.terms main section ol {
  list-style: none;
  counter-reset: section;
}
body.for-teacher main section ol li, body.for-student main section ol li, body.privacypolicy main section ol li, body.terms main section ol li {
  counter-increment: section;
  margin-bottom: 15px;
}
body.for-teacher main section ol li::before, body.for-student main section ol li::before, body.privacypolicy main section ol li::before, body.terms main section ol li::before {
  content: counter(section) ". ";
  font-weight: bold;
}

:root {
  font-size: 62.5%;
  --font-color: #333;
  --link-color: #333;
  --black: #333;
  --bg-color: white;
  --main-color: #89c6e1;
  --main-dark: #50b4e0;
  --sub-color: #d9edf6;
  --bg-light-yellow: #faf5dd;
  --hover-color: darkorange;
}

footer {
  background-color: var(--main-color);
  color: #fff;
}
footer .container {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 757px) {
  footer .container {
    flex-direction: column;
    align-items: center;
  }
}
footer .container .footer__logo img {
  max-width: 200px;
}
@media (max-width: 757px) {
  footer .container .footer__logo img {
    margin: 1em 0;
    max-width: 140px;
  }
}
footer .container .footer__menu ul {
  display: flex;
  align-items: center;
  padding: 5px 0 5px 20px;
  flex-wrap: wrap;
  padding: 0;
}
@media (min-width: 758px) and (max-width: 1023px) {
  footer .container .footer__menu ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 757px) {
  footer .container .footer__menu ul {
    margin: 0 0 2em;
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .container .footer__menu ul li {
  border-right: 2px solid var(--black);
  line-height: 1;
  padding: 5px 0;
}
@media (min-width: 758px) and (max-width: 1023px) {
  footer .container .footer__menu ul li {
    padding: 5px 0;
  }
}
@media (max-width: 757px) {
  footer .container .footer__menu ul li {
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
footer .container .footer__menu ul li:last-child {
  border-right: none;
}
footer .container .footer__menu ul li a {
  margin-right: 15px;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bolder;
}
@media (max-width: 757px) {
  footer .container .footer__menu ul li a {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  footer .container .footer__menu ul li a {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  footer .container .footer__menu ul li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  footer .container .footer__menu ul li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 757px) {
  footer .container .footer__menu ul li a {
    font-size: 1.3rem;
  }
}
footer .container .footer__buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 757px) {
  footer .container .footer__buttons {
    align-items: center;
    justify-content: center;
  }
}
footer .container .footer__buttons .footer__button {
  display: flex;
}
footer .container .footer__buttons .footer__button a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5px;
  font-size: 1.4rem;
  font-weight: bolder;
}
@media (max-width: 757px) {
  footer .container .footer__buttons .footer__button a {
    padding: 0 15px;
  }
}
footer .container .footer__buttons .footer__button--full-width {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}
@media (max-width: 757px) {
  footer .container .footer__buttons .footer__button--full-width {
    margin-bottom: 20px;
  }
}
footer .container .footer__buttons .footer__button--full-width a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #f28702;
  white-space: nowrap;
  min-width: 230px;
  font-weight: bolder;
  padding: 0 15px;
  border-radius: 10px;
}
@media (max-width: 757px) {
  footer .container .footer__buttons .footer__button--full-width a {
    font-size: 1.4rem;
  }
}
@media (min-width: 758px) {
  footer .container .footer__buttons .footer__button--full-width a {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  footer .container .footer__buttons .footer__button--full-width a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1330px) {
  footer .container .footer__buttons .footer__button--full-width a {
    font-size: 1.6rem;
  }
}
footer .container .footer__buttons .footer__button--full-width a:hover {
  opacity: 0.7;
}
footer .container .footer__buttons img {
  max-width: 30px;
  max-height: 30px;
  margin: 5px;
}
footer .copyright {
  text-align: center;
  padding: 50px 15px;
}/*# sourceMappingURL=styles.css.map */