@charset "UTF-8";
.homemade-apple-regular {
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.zen-maru-gothic-light {
  font-family: "Zen Maru Gothic", system-ui;
  font-weight: 300;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", system-ui;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", system-ui;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", system-ui;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", system-ui;
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Maru Gothic", system-ui;
  font-size: 16px;
  line-height: 1.8;
  color: #092f0d;
  background-color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-left: 45px solid #338d3c;
  border-right: 45px solid #338d3c;
}
@media screen and (max-width: 1300px) {
  body {
    border-left: 30px solid #338d3c;
    border-right: 30px solid #338d3c;
  }
}
@media screen and (max-width: 599px) {
  body {
    border-left: 18px solid #338d3c;
    border-right: 18px solid #338d3c;
  }
}

a {
  text-decoration: none;
  color: #092f0d;
}
a:hover {
  color: #c47211;
}

main {
  padding-top: 140px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  main {
    padding-top: 110px;
  }
}

.container {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 93%;
  }
}
@media screen and (max-width: 599px) {
  .container {
    max-width: 95%;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.btn {
  font-size: 15px;
  border: 1px solid #092f0d;
  border-radius: 40px;
  text-align: center;
  background: #fff;
  width: 250px;
  margin: 20px auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
  border-color: #c47211;
}
.btn a {
  color: #092f0d;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}
.btn a:hover {
  text-decoration: none;
  color: #c47211;
}

.head {
  height: 250px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .head {
    height: 180px;
  }
}
@media screen and (max-width: 599px) {
  .head {
    height: 150px;
  }
}

.title {
  color: #338d3c;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  display: flex;
  justify-content: center;
  text-align: center;
  letter-spacing: 1.1rem;
}
@media screen and (max-width: 1024px) {
  .title {
    font-size: 28px;
    letter-spacing: 0.6rem;
  }
}
@media screen and (max-width: 599px) {
  .title {
    font-size: 24px;
    letter-spacing: 0.4rem;
  }
}

h4 {
  color: #c47211;
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.bg {
  background-image: url(../images/wall04.jpg);
  filter: brightness(1.08);
  background-repeat: repeat;
  padding: 120px 80px 90px 80px;
}
@media screen and (max-width: 1024px) {
  .bg {
    padding: 60px 0;
  }
}
@media screen and (max-width: 599px) {
  .bg {
    padding: 40px 0;
  }
}

.header {
  position: fixed;
  background-color: #fff;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 100px;
  border-left: 45px solid #338d3c;
  border-right: 45px solid #338d3c;
}
@media screen and (max-width: 1300px) {
  .header {
    border-left: 30px solid #338d3c;
    border-right: 30px solid #338d3c;
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    border-left: 18px solid #338d3c;
    border-right: 18px solid #338d3c;
    height: 60px;
  }
}
.header__container {
  max-width: 1200px;
  height: 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 auto;
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .header__container {
    justify-content: space-between;
    padding-left: 20px;
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header__container {
    height: 60px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 320px) {
  .header__container {
    padding-left: 10px;
  }
}
.header__logo {
  text-align: center;
}
.header__logo img {
  width: 50px;
}
@media screen and (max-width: 1024px) {
  .header__logo img {
    width: 40px;
  }
}
@media screen and (max-width: 599px) {
  .header__logo img {
    width: 30px;
  }
}
.header a {
  text-decoration: none;
}
.header h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.header .name1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  letter-spacing: 0.19em;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .header .name1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .header .name1 {
    font-size: 16px;
  }
}
.header .name2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  letter-spacing: 0.09em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .header .name2 {
    font-size: 9px;
  }
}
@media screen and (max-width: 599px) {
  .header .name2 {
    font-size: 9px;
  }
  .header .name2 .hide-sp {
    display: none;
  }
}
.header__logo__container {
  display: flex;
  text-align: center;
  align-items: center;
}
.header__nav__list {
  display: flex;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .header__nav__list {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav__list {
    display: none;
  }
}
.header__nav__list__item {
  padding: 16px;
}

/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width: 1024px) {
  /*アクティブになったエリア*/
  #g-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.9;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all 1.2s;
  }
  .circle-bg.circleactive {
    transform: scale(50);
  }
  #g-nav-list {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive #g-nav-list {
    display: block;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: block;
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
  }
  #g-nav.panelactive ul {
    opacity: 1;
    visibility: visible;
  }
  #g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    text-align: center;
    list-style: none;
  }
  #g-nav li a {
    color: #c47211;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    top: 17px;
    right: 40px;
    z-index: 9999; /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
}
@media screen and (max-width: 1024px) and (max-width: 599px) {
  .openbtn {
    top: 8px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 320px) {
  .openbtn {
    top: 8px;
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #092f0d;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
.home__mainVisual {
  padding: 0;
}
.home__mainVisual__picture {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: translateY(-30px);
  z-index: 2;
}
.home__mainVisual__picture img {
  max-width: 1200px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.home__mainVisual__text {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  line-height: 4rem;
  letter-spacing: 1.1rem;
  writing-mode: vertical-rl;
  text-shadow: 2px 2px 2px #092f0d;
  position: absolute;
  top: 29%;
  left: 13%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .home__mainVisual__text {
    line-height: 3rem;
    letter-spacing: 0.8rem;
    writing-mode: horizontal-tb;
    top: 55%;
    left: 11%;
  }
}
@media screen and (max-width: 599px) {
  .home__mainVisual__text {
    font-size: 32px;
    line-height: 2.7rem;
    letter-spacing: 0.6rem;
    top: 50%;
    left: 11%;
  }
}
@media screen and (max-width: 430px) {
  .home__mainVisual__text {
    line-height: 2.5rem;
    letter-spacing: 0.4rem;
    top: 40%;
    left: 8%;
  }
}

.home__about .about {
  position: relative;
  margin-bottom: 50px;
}
.home__about .decoration {
  max-width: 331px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1024px) {
  .home__about .decoration {
    max-width: 288px;
  }
}
@media screen and (max-width: 599px) {
  .home__about .decoration {
    max-width: 258px;
  }
}
@media screen and (max-width: 320px) {
  .home__about .decoration {
    max-width: 198px;
  }
}
.home__about__body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .home__about__body {
    padding: 20px 0;
    margin: auto;
  }
}
@media screen and (max-width: 599px) {
  .home__about__body {
    flex-direction: column;
  }
}
.home__about__body__bg {
  width: 67%;
  height: auto;
}
.home__about__description {
  order: -1;
  flex: 1;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  margin: 2rem 0;
}
@media screen and (max-width: 1024px) {
  .home__about__description {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 599px) {
  .home__about__description {
    order: 0;
    padding: 40px 20px;
  }
}
.home__about__picture {
  width: 40%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .home__about__picture {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .home__about__picture {
    width: 60%;
    margin: 0 auto;
  }
}
.home__about .points {
  position: relative;
}
.home__about__points {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .home__about__points {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.home__about__points .circle {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  background-color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #338d3c;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
  border: #338d3c 1px dashed;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .home__about__points .circle {
    width: 200px;
    height: 200px;
    font-size: 20px;
  }
}
@media screen and (max-width: 960px) {
  .home__about__points .circle {
    width: 180px;
    height: 180px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .home__about__points .circle {
    width: 160px;
    height: 160px;
    font-size: 16px;
  }
}
.home__about__points .box {
  opacity: 0;
}
.home__about__points .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home__about__points .circle span {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
}

.home__kodama__body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 599px) {
  .home__kodama__body {
    flex-direction: column;
  }
}
.home__kodama__picture {
  width: 40%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .home__kodama__picture {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .home__kodama__picture {
    margin: auto;
    width: 60%;
  }
}
.home__kodama__description {
  padding: 50px;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  margin: 2rem 0;
}
@media screen and (max-width: 1024px) {
  .home__kodama__description {
    padding: 40px 20px;
  }
}

.home__lessons__contents {
  background-color: #fff;
  border-radius: 20px;
  padding: 5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .home__lessons__contents {
    padding: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .home__lessons__contents {
    padding: 2rem;
  }
}
@media screen and (max-width: 320px) {
  .home__lessons__contents {
    padding: 1rem;
  }
}
.home__lessons__contents h4 {
  margin-bottom: 1rem;
}
.home__lessons__contents li {
  margin-bottom: 3rem;
}
.home__lessons__contents li:last-child {
  margin-bottom: 0;
}
.home__lessons__contents h4:hover {
  text-decoration: underline;
}

.tax {
  font-size: 12px;
}

.separator {
  height: 70px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .separator {
    height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .separator {
    height: 50px;
  }
}

.buttons {
  max-width: 575px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;
  z-index: 10;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .buttons {
    display: block;
  }
}

.btn-mb {
  margin-bottom: 3rem;
}
@media screen and (max-width: 599px) {
  .btn-mb {
    margin-bottom: 3rem;
  }
}

.home__lineArea {
  background-color: #205826;
  height: 350px;
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.home__lineArea:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .home__lineArea {
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  .home__lineArea {
    height: 150px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
.home__lineArea h2,
.home__lineArea a {
  color: #fff;
  text-align: center;
}
.home__lineArea h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.6rem;
}
@media screen and (max-width: 1024px) {
  .home__lineArea h2 {
    font-size: 24px;
    letter-spacing: 0.4rem;
  }
}
@media screen and (max-width: 599px) {
  .home__lineArea h2 {
    font-size: 18px;
    letter-spacing: 0.1rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .home__lineArea h2 {
    font-size: 16px;
    letter-spacing: 0.1rem;
    text-align: center;
  }
}
.home__lineArea .tab {
  display: block;
}
@media screen and (max-width: 599px) {
  .home__lineArea .tab {
    display: none;
  }
}
.home__lineArea .icon-line {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  .home__lineArea .icon-line {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .home__lineArea .icon-line {
    width: 40px;
    height: 40px;
  }
}

.home__instagram__body {
  max-width: 1040px;
  margin: 0 auto;
}
.home__instagram__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  margin: 0 auto;
  gap: 10px;
}
.home__instagram__list img {
  aspect-ratio: 1;
}
.home__instagram__list__item {
  width: calc((100% - 30px) / 4);
}

.footer {
  background-color: #338d3c;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 2rem 0;
  }
}
.footer footerNav {
  margin-bottom: 20px;
}
.footer .footerNav__list {
  font-family: "Zen Kaku Gothic New", sans-serif;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .footer .footerNav__list {
    display: block;
    gap: 10px;
  }
}
.footer a {
  color: #fff;
  margin: 0 16px;
}
.footer a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .footer a {
    margin: 0 10px;
  }
}
.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.footer__sns img {
  width: 30px;
  height: 30px;
}
.footer__logo-container {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.footer__name {
  font-size: 20px;
  font-weight: bold;
}
.footer__logo img {
  width: 50px;
  margin: 0 auto;
}
.footer p {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.footer .copy {
  font-size: 14px;
}

html {
  scroll-padding-top: calc((var(--headerHeight, 95px)) + 20px);
}

.top-monthly {
  margin-top: 5rem;
}

.br-sp {
  display: none;
}
@media (max-width: 599px) {
  .br-sp {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media (max-width: 599px) {
  .br-pc {
    display: none;
  }
}

.lessons ol {
  margin-left: 1rem;
}
.lessons__head {
  height: 110px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .lessons__head {
    height: 80px;
  }
}

.lesson-details {
  background-color: #fff;
  border-radius: 20px;
  padding: 5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .lesson-details {
    margin-bottom: 4rem;
    padding: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .lesson-details {
    margin-bottom: 2.5rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 320px) {
  .lesson-details {
    padding: 1rem;
  }
}
.lesson-details p {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 599px) {
  .lesson-details p {
    text-align: left;
    margin-bottom: 2rem;
  }
}

.lessons__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .lessons__body {
    margin-bottom: 4rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .lessons__body {
    gap: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .lessons__body {
    flex-direction: column;
  }
}
.lessons__body .lessons__txt {
  order: -1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  word-wrap: break-word;
  min-width: 0;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  .lessons__body .lessons__txt {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 599px) {
  .lessons__body .lessons__txt {
    order: initial;
  }
}
.lessons__body .lessons__picture {
  flex: 1;
  width: 40%;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .lessons__body .lessons__picture {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .lessons__body .lessons__picture {
    width: 60%;
  }
}

.lessons__body__type2 {
  display: flex;
  gap: 5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .lessons__body__type2 {
    margin-bottom: 4rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .lessons__body__type2 {
    gap: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .lessons__body__type2 {
    flex-direction: column;
  }
}
.lessons__body__type2 .lessons__txt__type2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  word-wrap: break-word;
  min-width: 0;
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  .lessons__body__type2 .lessons__txt__type2 {
    padding: 40px 20px;
  }
}
.lessons__body__type2 .lessons__picture__type2 {
  flex: 1;
  width: 40%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .lessons__body__type2 .lessons__picture__type2 {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .lessons__body__type2 .lessons__picture__type2 {
    width: 60%;
  }
}

.questionslist .accordion-area {
  list-style: none;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px;
  background: #fff;
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
  /*アコーディオンタイトル*/
}
@media screen and (max-width: 1024px) {
  .questionslist .accordion-area {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .questionslist .accordion-area {
    padding: 7px;
  }
}
.questionslist .accordion-area li {
  margin: 17px 15px;
}
.questionslist .accordion-area section {
  border: 1px solid #ccc;
  padding: 10px;
}
.questionslist .accordion-area .question {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  color: #c47211;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
  /*アイコンの＋と×*/
}
.questionslist .accordion-area .question::before, .questionslist .accordion-area .question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #c47211;
}
.questionslist .accordion-area .question::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.questionslist .accordion-area .question::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
.questionslist .accordion-area .question.close::before {
  transform: rotate(45deg);
}
.questionslist .accordion-area .question.close::after {
  transform: rotate(-45deg);
}
.questionslist .accordion-area .box.default {
  display: block;
}
.questionslist .accordion-area .box {
  display: none;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

.voice .container {
  padding: 80px;
  background: #fff;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .voice .container {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .voice .container {
    padding: 20px;
  }
}
@media screen and (max-width: 320px) {
  .voice .container {
    padding: 10px;
  }
}
.voice__picture {
  max-width: 145px;
  height: auto;
  margin: auto;
}
.voice .student__data {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .voice .student__data {
    justify-content: center;
  }
}
.voice .voice__txt {
  width: 700px;
}
@media screen and (max-width: 960px) {
  .voice .voice__txt {
    width: 500px;
  }
}
@media screen and (max-width: 599px) {
  .voice .voice__txt {
    width: 85%;
    margin: auto;
  }
}
.voice__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .voice__body {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .voice__body {
    display: block;
  }
}

.about__head {
  height: 110px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .about__head {
    height: 80px;
  }
}

.about__wrapper {
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: 5rem;
}
@media screen and (max-width: 1024px) {
  .about__wrapper {
    padding: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .about__wrapper {
    padding: 1rem;
  }
}

.about__img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: -10rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .about__img {
    gap: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .about__img {
    flex-direction: column;
    margin-top: -3rem;
  }
}

.about__img__text__container {
  flex: 1;
}

.about__img__container {
  flex: 1;
}
@media screen and (max-width: 599px) {
  .about__img__container {
    order: -1;
    width: 70%;
  }
}

.decoration3 {
  max-width: 400px;
  top: 0px;
  left: 0px;
  z-index: 10;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1024px) {
  .decoration3 {
    max-width: 330px;
  }
}
@media screen and (max-width: 599px) {
  .decoration3 {
    max-width: 270px;
  }
}
@media screen and (max-width: 320px) {
  .decoration3 {
    max-width: 220px;
  }
}

.access__wrapper {
  display: flex;
  justify-content: center;
  gap: 5rem;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .access__wrapper {
    gap: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .access__wrapper {
    flex-direction: column;
  }
}

.access__g-map {
  max-width: 520px;
  aspect-ratio: 1/0.75;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .access__g-map {
    flex: 1;
  }
}

.access__text {
  background-color: #fff;
  border-radius: 20px;
  padding: 5rem;
}
@media screen and (max-width: 1024px) {
  .access__text {
    padding: 40px 20px;
    flex: 1;
  }
}

.gallery__container {
  max-width: 1040px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  gap: 10px;
  row-gap: 10px;
  margin-bottom: 100px;
}

.gallery__item {
  overflow: hidden;
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1024px) {
  .gallery__item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .gallery__item {
    width: 42%;
    height: auto;
    overflow: initial;
  }
}

@media screen and (max-width: 599px) {
  .gallery__item:nth-child(even) img:hover {
    transform: scale(1.7) translateX(-30%);
  }
}
.gallery__item img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.gallery__item img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 599px) {
  .gallery__item img:hover {
    transform: scale(1.7) translateX(30%);
  }
}/*# sourceMappingURL=style.css.map */