@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(0, 0, 0);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 50px 0;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 40px);
  max-width: 375px;
  margin: 0 auto;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

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

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

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

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

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

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

figure {
  margin: 0;
  padding: 0;
}

.pc-bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-contacts-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
  max-width: 375px;
  margin: auto;
  -webkit-box-shadow: 0px 0px 21.1px 0px rgba(77, 79, 77, 0.42);
          box-shadow: 0px 0px 21.1px 0px rgba(77, 79, 77, 0.42);
  background-color: rgb(255, 255, 255);
}
@media (max-width: 500px) {
  .main-contacts-wrapper {
    max-width: 100%;
  }
}

.badge-icon {
  background-image: url("../../images/badge-icon.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: rgb(72, 45, 7);
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.8rem;
  line-height: 1.2em;
  font-weight: 700;
}

.btn-link {
  margin-top: 25px;
  position: relative;
  z-index: 2;
  background-image: url("../../images/btn-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  font-weight: 600;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 322/66;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  -webkit-box-shadow: 2px 4px 4px 0px rgb(194, 194, 194);
          box-shadow: 2px 4px 4px 0px rgb(194, 194, 194);
}
.btn-link:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link.green {
  background-image: url("../../images/btn-green.png");
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 10;
}
header .badge-icon {
  position: absolute;
  top: 63%;
  right: 25px;
}

.fv-section {
  position: relative;
  padding-bottom: 100px;
  padding-top: 290px;
  background-image: url("../../images/fv-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.fv-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.fv-text-wrapper {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(72, 45, 7);
}
.fv-text-wrapper p {
  position: relative;
  z-index: 2;
}

.fv-item {
  position: absolute;
  right: -20px;
  bottom: 120px;
  width: 33%;
}

.problem-section {
  position: relative;
  z-index: 2;
  margin-top: -50px;
  padding-bottom: 110px;
  background-image: url("../../images/problem-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: bottom;
}
.problem-section .lady {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 135px;
}

.problem-title {
  margin-bottom: 44px;
  position: relative;
  padding: 10px 40px;
  background-color: rgb(1, 122, 55);
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 1.1rem;
  width: 110%;
  -webkit-transform: translateX(-20px) rotate(-5deg);
          transform: translateX(-20px) rotate(-5deg);
}
.problem-title .big {
  font-size: 1.5rem;
}

.problem-title-dog {
  position: absolute;
  right: 18px;
  top: -60px;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  width: 140px;
}

.problem-side-image2 {
  position: absolute;
  top: 336px;
  width: 124px;
}

.problem-text-box {
  font-size: 0.8rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: 15px 10px 15px 20px;
}
.problem-text-box:not(:last-child) {
  margin-bottom: 25px;
}
.problem-text-box.one {
  max-width: 269px;
  aspect-ratio: 269/90;
  background-image: url("../../images/problem-text-bg1.png");
}
.problem-text-box.two {
  margin-left: auto;
  padding-top: 20px;
  padding-left: 33px;
  max-width: 279px;
  aspect-ratio: 254/72;
  background-image: url("../../images/problem-text-bg2.png");
}
.problem-text-box.three {
  aspect-ratio: 221/77;
  max-width: 221px;
  padding-top: 20px;
  padding-left: 26px;
  background-image: url("../../images/problem-text-bg3.png");
}

.problem-text {
  position: relative;
  margin: 0 auto 40px;
  max-width: 240px;
}
.problem-text .item {
  position: absolute;
  width: 100px;
  top: 0;
  right: 0;
  -webkit-transform: translate(65%, -90%);
          transform: translate(65%, -90%);
}

.problem-green-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgb(1, 122, 55);
}

.answer-section {
  margin-top: -60px;
  padding-top: 60px;
  position: relative;
  background-color: rgb(255, 255, 255);
}
.answer-section::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: bottom;
  background-image: url("../../images/answer-bg.png");
}
.answer-section .contents-wrapper {
  position: relative;
  z-index: 2;
}

.answer-text {
  font-size: 0.9rem;
  color: rgb(72, 45, 7);
}

.answer-title {
  margin-bottom: 70px;
}

.answer-text1 {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.answer-text1 img {
  margin-bottom: 10px;
}
.answer-text1 p {
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.9rem;
}
.answer-text1::before, .answer-text1::after {
  content: "";
  width: 37px;
  aspect-ratio: 37/45;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/answer-text-icon.png");
}
.answer-text1::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.answer-text2 {
  margin-bottom: 45px;
}

.answer-text-bg {
  position: absolute;
  bottom: -80px;
}

.detail-section {
  position: relative;
  padding-bottom: 150px;
  margin-top: -30px;
  z-index: 1;
}
.detail-section::after, .detail-section::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  background-image: url("../../images/image-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: bottom;
}
.detail-section::before {
  z-index: 2;
}
.detail-section::after {
  top: 190px;
  height: calc(100% - 250px);
  background-image: url("../../images/detail-bg.png");
}
.detail-section .contents-wrapper {
  position: relative;
  z-index: 2;
}
.detail-section .detail-left-deco {
  position: absolute;
  width: 100px;
  z-index: 3;
  top: 165px;
  left: -50px;
}

.detail-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  gap: 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45px 15px 45px;
  grid-template-columns: repeat(2, 45px);
  direction: rtl;
}

.detail-title-deco {
  position: absolute;
  bottom: -40px;
  left: 20px;
  width: 110px;
}

.check-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  color: rgb(1, 122, 55);
  font-weight: 600;
}
.check-text:not(:last-child) {
  margin-bottom: 20px;
}
.check-text::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/check-icon.svg");
}

.check-arrow {
  width: 25px;
  margin-bottom: 10px;
}

.check-answer {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  color: rgb(72, 45, 7);
  font-family: "Shippori Mincho B1", serif;
  border-bottom: 1px dashed rgb(72, 45, 7);
}
.check-answer .detail-right-deco {
  position: absolute;
  width: 65px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.check-answer-title {
  position: relative;
  max-width: 265px;
  margin: 0 auto 15px;
}
.check-answer-title .title-side-dog {
  position: absolute;
  width: 120px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-70%, -50%);
          transform: translate(-70%, -50%);
}
.check-answer-title .text {
  z-index: 2;
  position: relative;
}

.check-answer-text {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  background-color: rgb(255, 255, 255);
  color: rgb(72, 45, 7);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(118, 118, 118, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(118, 118, 118, 0.25);
}

.certification-box {
  font-size: 0.9rem;
  color: rgb(72, 45, 7);
}

.certification-title-wrapper {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
  font-weight: 700;
  gap: 5px;
  align-items: center;
}
.certification-title-wrapper .grade-text {
  font-size: 1.8rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(14.75%, rgb(250, 179, 120)), to(rgb(210, 64, 100)));
  background: linear-gradient(180deg, rgb(250, 179, 120) 14.75%, rgb(210, 64, 100) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.certification-title-wrapper .badge-icon {
  width: 85px;
}
.certification-title-wrapper .certification-title-text {
  width: calc(100% - 85px - 5px);
}

.three-item-section {
  padding-top: 0;
  position: relative;
}
.three-item-section .three-item {
  position: absolute;
}
.three-item-section .three-item.right {
  right: 0;
  top: -100px;
  width: 120px;
}
.three-item-section .three-item.left {
  width: 60px;
  left: 0;
  top: 30px;
}

.three-item-title {
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgb(72, 45, 7);
  font-family: "Shippori Mincho B1", serif;
}
.three-item-title img {
  margin-top: 5px;
  max-width: 290px;
}

.point-box {
  position: relative;
  border-radius: 10px;
  padding: 30px 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/point-bg.png");
  color: rgb(1, 122, 55);
  font-size: 0.9rem;
}
.point-box:not(:last-child) {
  margin-bottom: 50px;
}
.point-box .point-text {
  position: absolute;
  left: 10px;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.85rem;
  font-family: "Oooh Baby", cursive;
}
.point-box .point-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  background-image: url("../../images/point-item.svg");
}
.point-box .point-text span {
  position: relative;
  z-index: 2;
}
.point-box .point-title {
  margin-bottom: 10px;
  font-weight: 700;
}
.point-box p {
  position: relative;
  z-index: 2;
}
.point-box .side-image {
  position: absolute;
  width: 40%;
  bottom: 0;
  right: 0;
  max-width: 120px;
  -webkit-transform: translate(20px, 30px);
          transform: translate(20px, 30px);
}

.supervision-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/supervision-bg.png");
}

.supervision-title {
  margin-bottom: 30px;
  position: relative;
}
.supervision-title img {
  position: relative;
  z-index: 2;
}
.supervision-title .side-deco {
  position: absolute;
  width: 130px;
  z-index: 1;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.supervision-text {
  font-size: 0.9rem;
  color: rgb(72, 45, 7);
}

.price-section {
  position: relative;
  padding-top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/prica-bg.png");
}
.price-section::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 115px;
  background-color: rgba(138, 207, 135, 0.4);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
.price-section .contents-wrapper {
  position: relative;
  z-index: 2;
}
.price-section .price-side-image {
  position: absolute;
  width: 100%;
  left: 0;
  top: -40px;
  -webkit-transform: translateX(-53%);
          transform: translateX(-53%);
  z-index: -1;
}

.price-comment-box {
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgb(72, 45, 7);
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.price-comment-box .badge-icon {
  width: 95px;
}
.price-comment-box p {
  padding-bottom: 10px;
  width: calc(100% - 95px - 8px);
}

.price-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: rgb(1, 122, 55);
}
.price-box .price-title {
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 0.4em;
  border-radius: 40px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(1, 122, 55);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px;
  max-width: 215px;
}
.price-box .price {
  font-size: 0.8rem;
}
.price-box .price .number {
  margin-left: 10px;
  font-size: 2.95rem;
  font-family: "Cormorant Unicase", serif;
}
.price-box .note-text {
  margin-left: 15px;
  font-size: 0.7rem;
}

.price-detail-section {
  padding-top: 0;
}
.price-detail-section .price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.price-detail-section .price-box .price-title {
  max-width: 125px;
  font-size: 0.9rem;
  padding: 10px 5px 10px 10px;
}
.price-detail-section .price-box .inner-box {
  max-width: calc(100% - 125px);
}
.price-detail-section .price-box .number.margin {
  margin-left: 30px;
}
.price-detail-section .price-box .note-text {
  margin-left: 0;
}
.price-detail-section .price-box .note-text.bold {
  font-weight: 500;
  font-size: 0.8rem;
  text-align: right;
}

.price-detail-title {
  margin-bottom: 10px;
  position: relative;
  padding: 20px;
  background-color: rgb(1, 122, 55);
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
}
.price-detail-title .big {
  display: block;
  font-size: 1.1rem;
}
.price-detail-title img {
  position: absolute;
  width: 150px;
  left: -41px;
  bottom: 30%;
}

.price-detail-text {
  margin-block: 30px 20px;
  font-size: 0.9rem;
  color: rgb(72, 45, 7);
}

.price-contact-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(72, 45, 7);
}
.price-contact-link a {
  border-bottom: 1px solid rgb(72, 45, 7);
  color: rgb(72, 45, 7);
}
.price-contact-link a:hover {
  border-color: transparent;
}

.future-section {
  background-image: url("../../images/future-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.future-title {
  max-width: 212px;
  margin: 0 auto 20px;
}

.future-text {
  font-size: 0.9rem;
  color: rgb(72, 45, 7);
}

.future-image {
  width: calc(100% + 60px);
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.teacher-title {
  margin-bottom: 30px;
  position: relative;
}
.teacher-title .en {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-20%, -80%) rotate(-25deg);
          transform: translate(-20%, -80%) rotate(-25deg);
  font-family: "Oooh Baby", cursive;
  color: rgb(223, 217, 214);
  font-size: 2rem;
}
.teacher-title img {
  max-width: 135px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.teacher-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.teacher-box:not(:last-child) {
  margin-bottom: 70px;
}
.teacher-box:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.teacher-box:nth-child(odd)::before, .teacher-box:nth-child(odd)::after {
  position: absolute;
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.teacher-box:nth-child(odd)::before {
  top: -50px;
  right: 0;
  width: 140px;
  aspect-ratio: 1/1;
  background-image: url("../../images/three-item-right.png");
}
.teacher-box:nth-child(odd)::after {
  top: 60px;
  right: 45%;
  width: 50px;
  aspect-ratio: 50/58;
  background-image: url("../../images/three-item-left.png");
}
.teacher-box:nth-child(odd) .text-box {
  padding-left: 20px;
}
.teacher-box:nth-child(even) .text-box {
  padding-right: 20px;
}
.teacher-box img {
  width: 185px;
}
.teacher-box .text-box {
  width: calc(100% - 185px);
  font-size: 0.8rem;
  color: rgb(1, 122, 55);
}
.teacher-box .name {
  margin-bottom: 20px;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: rgb(72, 45, 7);
}
.teacher-box .name::before {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-60%, 20px);
          transform: translate(-60%, 20px);
  content: "";
  display: block;
  width: 53px;
  aspect-ratio: 53/66;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/answer-text-icon.png");
}
.teacher-box .name span {
  position: relative;
  z-index: 2;
}
.teacher-box .qualification-title {
  margin-bottom: 10px;
}

.dot-list li::before {
  content: "・";
}

.schedule-title {
  margin-bottom: 20px;
  position: relative;
  height: 167px;
  padding: 60px 20px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/schedule-bg.png");
}
.schedule-title .text {
  position: relative;
  z-index: 2;
  max-width: 260px;
  margin-left: 0;
}
.schedule-title .item {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 130px;
}

.bg-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(1, 122, 55);
  letter-spacing: 0.4em;
  padding-left: 10px;
}
.bg-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/title-bg.svg");
}
.bg-title span {
  position: relative;
  z-index: 2;
}

.schedule-box {
  font-size: 0.9rem;
  color: rgb(1, 122, 55);
}
.schedule-box:not(:last-child) {
  margin-bottom: 40px;
}

.schedule-detail-box .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.schedule-detail-box .inner-box:not(:last-child) {
  margin-bottom: 20px;
}
.schedule-detail-box .title {
  width: 65px;
  text-align: center;
  padding: 5px 10px;
  color: rgb(255, 255, 255);
  background-color: rgb(1, 122, 55);
}
.schedule-detail-box .contacts {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.schedule-day-box P:not(:last-child) {
  margin-bottom: 15px;
}

.schedule-table th {
  background: -webkit-gradient(linear, left top, left bottom, from(#B0E8B1), to(#017A37));
  background: linear-gradient(180deg, #B0E8B1 0%, #017A37 100%);
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 5px 5px 0 0;
  padding: 5px;
}
.schedule-table th:not(:last-child) {
  border-right: 1px solid rgb(255, 255, 255);
}
.schedule-table th.main-text {
  letter-spacing: 0.4em;
}
.schedule-table td {
  padding: 5px;
  border: 1px solid rgb(233, 234, 233);
  font-size: 0.65rem;
}
.schedule-table td:not(.main-text) {
  text-align: center;
}
.schedule-table td.color-bg {
  background-color: rgb(238, 250, 234);
}

.schedule-note {
  margin-top: 30px;
  font-size: 0.7rem;
  color: rgb(72, 45, 7);
}

.access-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: top;
  background-image: url("../../images/future-bg.png");
}

.access-title {
  margin-bottom: 25px;
}

.access-text {
  color: rgb(72, 45, 7);
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(72, 45, 7);
}
.access-text p:not(:last-child) {
  margin-bottom: 5px;
}
.access-text span {
  display: inline-block;
  width: 70px;
}

.access-sub-title {
  width: 100px;
  margin-bottom: 10px;
}

.dot-circle-list {
  font-size: 0.9rem;
  color: rgb(72, 45, 7);
}
.dot-circle-list li {
  text-indent: -20px;
  padding-left: 20px;
}
.dot-circle-list li:before {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  background-color: rgb(1, 122, 55);
  border-radius: 50%;
  margin: 0 10px 0px 0;
}

.google-map {
  margin-top: 20px;
  height: 230px;
}

.faq-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/faq-bg.png");
}

.faq-title {
  position: relative;
  width: 145px;
  margin: 0 auto 50px;
}
.faq-title .faq-title-deco {
  position: absolute;
}
.faq-title .faq-title-deco.left {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: 50px;
}
.faq-title .faq-title-deco.right {
  width: 60px;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(70%, 50%);
          transform: translate(70%, 50%);
}

.faq-box {
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.9rem;
  background-color: rgb(255, 255, 255);
}
.faq-box:not(:last-child) {
  margin-bottom: 20px;
}
.faq-box .q-box {
  padding: 15px 10px;
  color: rgb(255, 255, 255);
  background-color: rgb(1, 122, 55);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  font-weight: 500;
}
.faq-box .q-box::before {
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/q-icon.png");
}
.faq-box .q-box span {
  width: calc(100% - 5px - 40px);
}
.faq-box .a-box {
  padding: 10px 15px;
  color: rgb(1, 122, 55);
}
.faq-box .a-box p:not(:last-child) {
  margin-bottom: 10px;
}

footer .school-logo {
  max-width: 200px;
  margin-bottom: 25px;
}
footer .copy-text {
  padding: 20px;
  font-weight: 500;
  font-size: 0.7rem;
  color: rgb(72, 45, 7);
  text-align: center;
  background-color: rgb(246, 244, 241);
}
/*# sourceMappingURL=main.css.map */