@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
html,
body {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  color: #531700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: #fff;
  letter-spacing: 1px;
  display: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.3s;
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}

.header {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
}
.header .flex {
  display: flex;
  align-items: center;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.headerLogo {
  max-width: 80px;
  position: relative;
  z-index: 400;
}
@media screen and (max-width: 767px) {
  .headerLogo {
    max-width: 60px;
  }
}
.headerLogo a:hover {
  opacity: 0.6;
}

.header-nav-lists1 {
  display: flex;
  align-items: center;
}
.header-nav-lists1 li {
  margin-right: 40px;
  position: relative;
}
.header-nav-lists1 li .hover-lists {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 200px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.header-nav-lists1 li .hover-lists.active {
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
}
.header-nav-lists1 li .hover-lists a {
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header-nav-lists1 li .hover-lists a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .header-nav-lists1 li {
    margin-right: 20px;
  }
}
.header-nav-lists1 li a {
  color: #531700;
  font-size: 16px;
  display: block;
  padding: 40px 0;
}
@media screen and (max-width: 1000px) {
  .header-nav-lists1 li a {
    font-size: 14px;
  }
}
.header-nav-lists1 li a:hover {
  color: #fd807a;
}

.header-nav-lists2 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-nav-lists2 {
    display: block;
  }
}
.header-nav-lists2 li {
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  .header-nav-lists2 li {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-lists2 li {
    margin-right: 0;
  }
  .header-nav-lists2 li:first-child {
    margin-bottom: 20px;
  }
}
.header-nav-lists2 li:last-child {
  margin-right: 0;
}
.header-nav-lists2 li a {
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  display: block;
  padding: 10px 20px;
}
@media screen and (max-width: 1000px) {
  .header-nav-lists2 li a {
    font-size: 14px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-lists2 li a {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.header-nav-lists2 li a.brown {
  background: #531700;
  border: 1px solid #531700;
}
.header-nav-lists2 li a.brown:hover {
  background: #fff;
  color: #531700 !important;
}
.header-nav-lists2 li a.red {
  background: #fd807a;
  border: 1px solid #fd807a;
}
.header-nav-lists2 li a.red:hover {
  background: #fff;
  color: #fd807a !important;
}

.drawer-icon {
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 1400;
  transition: transform 0.5s ease 0s;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  transform: rotate(-45deg);
  top: 8px;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  transform: rotate(45deg);
  top: 8px;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #531700;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.menu-text {
  font-size: 10px;
  margin-top: 3px;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

@media screen and (max-width: 767px) {
  body,
  html {
    overflow-x: hidden;
  }
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fcfaf2;
  z-index: 1250;
  display: none;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 40px;
}
.drawer-icon-nav ul li {
  margin-bottom: 20px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #531700;
  border-bottom: 2px dotted #fd807a;
  font-size: 16px;
}

.drawer-icon-nav ul li a {
  font-size: 16px;
}

.drawer-icon-nav .drawer-sub a {
  color: #531700;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  margin-bottom: 15px;
  text-align: left;
  max-width: 150px;
  white-space: nowrap;
}
.drawer-icon-nav .drawer-sub .ashi {
  width: 20px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
  top: -5px;
}

@media screen and (max-width: 767px) {
  .header-nav-lists2 a {
    width: 80%;
    margin: 0 auto;
  }
}

.drower-nav-lists1 li a {
  padding-bottom: 5px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .slick-slide {
    position: relative;
    padding-top: 25%;
  }
  .slick-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top {
  position: relative;
}
.top .mv-text {
  position: absolute;
  right: 10%;
  bottom: 6%;
  width: 38%;
}
@media screen and (max-width: 767px) {
  .top .mv-text {
    bottom: initial;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
  }
}
.top .mv-foot {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .top .mv-foot {
    width: 40%;
    bottom: 3%;
  }
}

.about {
  position: relative;
}
.about .left-cat {
  width: 15%;
  position: absolute;
  bottom: 0;
  left: 10%;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .about .left-cat {
    left: 0;
    width: 20%;
  }
}
.about .right-cat {
  width: 15%;
  position: absolute;
  bottom: 0;
  right: 10%;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .about .right-cat {
    right: 0;
    width: 20%;
  }
}
@media screen and (min-width: 768px) {
  .about {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .about {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 500px) {
  .about {
    padding-bottom: 80px;
  }
}
.about .center-cat {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .about .center-cat {
    top: 50%;
    width: 100%;
    max-width: 300px;
  }
}
.about .inner {
  position: relative;
  z-index: 10;
}
.about .title {
  font-size: 30px;
  margin-bottom: 60px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .about .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about .title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.about .text {
  font-size: 16px;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .about .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .about .text {
    font-size: 14px;
    text-align: left;
  }
}

.about2 {
  background: #f8f8f8;
}

.footer {
  background: #531700;
  padding: 40px 0 30px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 10px;
  }
}
.footer .flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .flex {
    display: block;
  }
}
.footer .header-nav-lists1 li a {
  color: #fff;
}
.footer .header-nav-lists1 li a:hover {
  color: #fd807a;
}
.footer .header-nav-lists2 li a.brown {
  background: #94806e;
  border: 1px solid #94806e;
}
.footer .header-nav-lists2 li a.brown:hover {
  color: #94806e;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .footer .headerLogo {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .header-right {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer .header-nav-lists1 {
    justify-content: center;
    margin-bottom: 30px;
  }
  .footer .header-nav-lists1 li a {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .header-nav-lists2 li a {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer .header-nav-lists1 li:last-child {
    margin-right: 0;
  }
}

.footer-ul ul {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer-ul ul {
    margin-top: 40px;
  }
}
.footer-ul ul li {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .footer-ul ul li {
    margin-right: 20px;
  }
}
.footer-ul ul li:last-child {
  margin-right: 0;
}
.footer-ul ul li a {
  color: white;
  transition: 0.3s;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer-ul ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 360px) {
  .footer-ul ul li a {
    font-size: 11px;
    white-space: nowrap;
  }
}
.footer-ul ul li a:hover {
  color: #fd807a;
}

.copyright {
  margin-top: 80px;
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 10px;
  }
}
@media screen and (max-width: 360px) {
  .copyright {
    font-size: 2.7vw;
  }
}

.section-title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.section-title .wrap {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.section-title .heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 94px;
  z-index: 1;
}
.section-title .cat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 65px;
  z-index: -1;
}

.about2 {
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}
.about2 .bread1 {
  position: absolute;
  width: 37%;
  top: -32%;
  left: 12%;
}
@media screen and (max-width: 1000px) {
  .about2 .bread1 {
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .about2 .bread1 {
    top: -25%;
    left: 50%;
    width: 25%;
    transform: translateX(-50%);
  }
}
.about2 .text {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about2 .text {
    font-size: 14px;
  }
}
.about2 .contents {
  max-width: 500px;
  margin-left: auto;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .about2 .section-title {
    text-align: left;
  }
}

.about3 {
  background: #f8f8f8 url(../img/about3-bg.png) no-repeat top center/cover;
  position: relative;
}
.about3 .cat-foot1 {
  max-width: 120px;
  top: 12%;
  left: 10%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .about3 .cat-foot1 {
    max-width: 60px;
    top: 3%;
  }
}
@media screen and (min-width: 768px) {
  .about3 {
    padding: 250px 0 100px;
  }
}
@media screen and (max-width: 1000px) {
  .about3 {
    padding-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .about3 {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .about3 .inner {
    padding: 0;
  }
}
.about3 .inner {
  position: relative;
}
.about3 .img {
  max-width: 628px;
  margin: 0 auto;
  position: relative;
}
.about3 .img .contents {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.about3 .text {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about3 .text {
    font-size: 14px;
    padding: 0 30px;
    text-align: left;
  }
}
@media screen and (max-width: 360px) {
  .about3 .text {
    font-size: 13px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 360px) {
  .about3 .section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.topLesson {
  background: #f8f7f1;
  position: relative;
  z-index: 20;
}
.topLesson .cat-foot1 {
  max-width: 120px;
  bottom: -6%;
  left: 10%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .topLesson .cat-foot1 {
    max-width: 60px;
    bottom: -5%;
  }
}
.topLesson ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .topLesson ul {
    display: block;
  }
}
.topLesson ul li {
  width: 31%;
  border-radius: 10px;
  border: 1px solid #e6e3e3;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  display: block;
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .topLesson ul li {
    padding: 30px 20px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 500px;
  }
  .topLesson ul li:last-child {
    margin-bottom: 0;
  }
}
.topLesson ul li .title {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .topLesson ul li .title {
    margin-bottom: 15px;
  }
}
.topLesson ul li .img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .topLesson ul li .img {
    margin-bottom: 20px;
  }
}
.topLesson ul li .btn {
  text-align: center;
}
.topLesson ul li .btn a {
  background: #fd807a;
  border: 1px solid #fd807a;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .topLesson ul li .btn a {
    font-size: 16px;
  }
}
.topLesson ul li .btn a:hover {
  opacity: 0.6;
}
.topLesson ul li .btn a .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.topLesson ul li .btn a .arrow {
  width: 11px;
  margin-left: 10px;
  position: relative;
  top: -1px;
}
.topLesson ul li .btn a .arrow img {
  vertical-align: middle;
}
.topLesson .btn-area {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .topLesson .btn-area {
    margin-top: 30px;
  }
}

.section-btn {
  text-align: center;
  position: relative;
  z-index: 10;
}
.section-btn a {
  display: inline-block;
  border-radius: 10px;
  background: #eae3d1;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: bold;
  color: #531700;
  border: 1px solid #eae3d1;
  transition: 0.3s;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-btn a {
    padding: 20px 0;
    width: 100%;
    display: block;
  }
}
.section-btn a:hover {
  background: #531700;
  color: #eae3d1;
}
@media screen and (max-width: 767px) {
  .section-btn a {
    font-size: 16px;
  }
}
.section-btn a .section-btn-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-btn a .section-btn-icon {
  width: 26px;
  margin-left: 10px;
}

.topVoice {
  background-image: linear-gradient(to bottom, #fff 40%, #eae3d1 40%);
  position: relative;
}
.topVoice .cat-foot2 {
  max-width: 120px;
  top: 45%;
  transform: translateY(-50%);
  right: 5%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .topVoice .cat-foot2 {
    max-width: 60px;
    top: 50%;
    right: 0;
  }
}
.topVoice .inner {
  position: relative;
  z-index: 2;
}
.topVoice ul {
  display: flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .topVoice ul {
    display: block;
  }
}
.topVoice ul li {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .topVoice ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .topVoice ul li:last-child {
    margin-bottom: 0;
  }
}
.topVoice ul li a {
  background: #fff;
  display: block;
  padding: 40px 20px;
  border: 1px solid #e6e3e3;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: 0.3s;
  color: #531700;
}
.topVoice ul li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .topVoice ul li a {
    padding: 30px 20px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 500px;
  }
  .topVoice ul li a:last-child {
    margin-bottom: 0;
  }
}
.topVoice ul li a .title {
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .topVoice ul li a .title {
    font-size: 18px;
  }
}
.topVoice ul li a .img {
  margin-bottom: 10px;
}
.topVoice ul li a .name {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .topVoice ul li a .name {
    font-size: 16px;
  }
}
.topVoice ul li a .content {
  font-size: 16px;
  line-height: 2;
}
.topVoice ul li a .content .text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .topVoice ul li a .content {
    font-size: 14px;
  }
}

.topNews {
  background: url(../img/topNews-bg.jpg) no-repeat center center/cover;
  position: relative;
}
.topNews .cat {
  max-width: 180px;
  bottom: 0%;
  left: 10%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .topNews .cat {
    max-width: 60px;
  }
}
.topNews .cat2 {
  max-width: 120px;
  top: -10%;
  left: 2%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .topNews .cat2 {
    max-width: 60px;
    top: -7%;
  }
}
.topNews .box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e3e3;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  display: block;
  padding: 60px 60px;
}
@media screen and (max-width: 767px) {
  .topNews .box {
    padding: 30px 20px;
  }
}
.topNews ul li a {
  display: block;
  color: #531700;
  transition: 0.3s;
  line-height: 1.5;
  padding: 20px 10px;
  border-bottom: 1px solid #707070;
}
.topNews ul li a:hover {
  color: #fd807a;
}
.topNews ul li a .flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .topNews ul li a .flex {
    display: block;
  }
}
.topNews ul li a .flex .time {
  font-size: 14px;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .topNews ul li a .flex .time {
    width: 100%;
  }
}
.topNews ul li a .flex .title {
  font-size: 18px;
  width: calc(100% - 120px);
}
@media screen and (max-width: 767px) {
  .topNews ul li a .flex .title {
    width: 100%;
    font-size: 16px;
  }
}
.topNews .btn {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .topNews .btn {
    margin-top: 30px;
  }
}

.qa {
  background: #fcfaf2;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .qa {
    font-size: 14px;
  }
}
.qa .row {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .qa .row {
    margin-bottom: 20px;
  }
}

.ac_header {
  border: 1px solid #531700;
  background: #fff;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .ac_header {
    padding: 1rem 2.5rem 1rem 1rem;
  }
}

.ac_inner {
  display: none;
  /* コンテンツは消しておくのがミソ */
  padding: 1.5rem 2rem 1.5rem 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .ac_inner {
    padding: 1rem;
  }
}

/* アイコンの形はここから */
.i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .i_box {
    right: 0.7rem;
  }
}

.i_box:before,
.i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

.i_box:before {
  border-top: 2px solid #531700;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.i_box:after {
  border-left: 2px solid #531700;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: 0.3s;
  /* これがあるからアイコンが優しく動く */
}

.ac_header.open .i_box:after {
  height: 0;
  /* openというクラスがつい時アイコンがどうなるかをを指示している...③ */
}

/* アイコンの形ここまで */
.contact {
  background: rgba(239, 239, 239, 0.68);
}
.contact .box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e3e3;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  display: block;
  padding: 60px 60px;
}
@media screen and (max-width: 767px) {
  .contact .box {
    padding: 30px 20px;
  }
}
.contact .row {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact .row {
    margin-bottom: 20px;
    display: block;
  }
}
.contact .row .dt {
  width: 250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact .row .dt {
    width: 100%;
    margin-bottom: 8px;
  }
}
.contact .row .dd {
  width: calc(100% - 280px);
}
@media screen and (max-width: 767px) {
  .contact .row .dd {
    width: 100%;
  }
}
.contact .textarea_dd {
  align-items: initial;
}
.contact .textarea_dd .dt {
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .contact .textarea_dd .dt {
    position: relative;
    top: 10px;
  }
}
.contact textarea {
  height: 150px;
  resize: none;
}
.contact .check {
  text-align: center;
  margin-bottom: 60px;
}
.contact .check a {
  text-decoration: underline;
  color: #531700;
  transition: 0.3s;
}
.contact .check a:hover {
  opacity: 0.6;
}
.contact .check span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.contact .check span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #531700;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.contact .check span::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 20px;
  border-top: 4px solid #fd807a;
  border-right: 4px solid #fd807a;
  top: 50%;
  transform: translateY(-50%) rotate(145deg);
  left: 0;
  opacity: 0;
  transition: 0s;
}
.contact .check input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.contact .check input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -10000px;
}
.dd-radio input[type=radio] {
  opacity: 0;
  position: absolute;
  left: 0; /* -10000px はスクロールの原因になる */
  pointer-events: none;
}

.required {
  color: #ff0000;
  padding: 3px 10px;
  border: 1px solid #ff0000;
  font-size: 14px;
}
.required.no {
  color: #969696;
  border: 1px solid #969696;
}
@media screen and (max-width: 767px) {
  .required {
    font-size: 12px;
    padding: 2px 7px;
  }
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  box-shadow: none;
  border: 1px solid #b2b2b2;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: none;
  padding: 10px;
}

.submit input[type=submit] {
  position: absolute;
  opacity: 0;
  left: -1000px;
}
.submit .submit-btn {
  text-align: center;
}
.submit .submit-btn a {
  color: #fff;
  background: #fd807a;
  border-radius: 10px;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  display: block;
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .submit .submit-btn a {
    font-size: 16px;
  }
}
.submit .submit-btn a .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit .submit-btn a .icon {
  width: 25px;
  margin-left: 10px;
}

.thanks-lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .thanks-lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.page-heading {
  position: relative;
}
.page-heading .cat-foot1 {
  max-width: 120px;
  bottom: -15%;
  left: 10%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .page-heading .cat-foot1 {
    max-width: 60px;
  }
}

.greeting {
  background: #f8f7f1;
}
.greeting .box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e3e3;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  display: block;
  padding: 60px 80px 100px;
  position: relative;
}
.greeting .box .cat {
  position: absolute;
  width: 20%;
  bottom: -7%;
  right: -10%;
}
@media screen and (max-width: 767px) {
  .greeting .box .cat {
    bottom: -10%;
    right: -10%;
  }
}
@media screen and (max-width: 500px) {
  .greeting .box .cat {
    bottom: -5%;
  }
}
@media screen and (max-width: 1000px) {
  .greeting .box {
    padding: 60px 40px 100px;
  }
}
@media screen and (max-width: 767px) {
  .greeting .box {
    padding: 30px 20px 50px;
  }
}
.greeting .box .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .greeting .box .heading {
    padding: 0 0px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .greeting .box .heading {
    display: block;
  }
}
.greeting .box .heading .img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .greeting .box .heading .img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
  }
}
.greeting .box .heading .img img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .greeting .box .heading .img img {
    width: 200px;
    height: 200px;
  }
}
.greeting .box .heading .right {
  width: calc(100% - 320px);
}
@media screen and (max-width: 767px) {
  .greeting .box .heading .right {
    width: 100%;
    text-align: center;
  }
}
.greeting .bottom {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .greeting .bottom {
    font-size: 14px;
  }
}
.greeting .bottom .red-font {
  color: #fd807a;
  font-weight: bold;
}
.greeting .bottom2 {
  margin-top: 80px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .greeting .bottom2 {
    font-size: 14px;
    margin-top: 40px;
  }
}
.greeting .bottom2 .title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
  position: relative;
}
.greeting .bottom2 .title::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  bottom: 0;
  background: #531700;
}
@media screen and (max-width: 767px) {
  .greeting .bottom2 .title::after {
    height: 2px;
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .greeting .bottom2 .title {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.greeting .position {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .greeting .position {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.greeting .name {
  text-align: center;
  font-size: 45px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .greeting .name {
    font-size: 32px;
  }
}

.voice {
  background: #f8f7f1;
}
.voice .box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e3e3;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  display: block;
  padding: 0px 30px 0px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice .box {
    padding: 0px 20px 0px;
  }
}
.voice .box .heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .voice .box .heading {
    padding: 0 0px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .voice .box .heading {
    display: block;
  }
}
.voice .box .heading .img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .voice .box .heading .img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
  }
}
.voice .box .heading .img img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .voice .box .heading .img img {
    width: 200px;
    height: 200px;
  }
}
.voice .box .heading .right {
  width: calc(100% - 340px);
}
@media screen and (max-width: 767px) {
  .voice .box .heading .right {
    width: 100%;
    text-align: center;
  }
}
.voice .bottom {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .voice .bottom {
    font-size: 14px;
    text-align: left !important;
  }
}
.voice .position {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .voice .position {
    font-size: 18px;
  }
}
.voice .name {
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .voice .name {
    font-size: 18px;
  }
}
.voice ul li {
  padding: 60px 0;
  border-bottom: 1px solid #e0d9d3;
}
.voice ul li:last-child {
  border-bottom: none;
}
.voice ul li:nth-child(2n) .heading {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .voice ul li {
    padding: 30px 0;
  }
}

.lesson {
  background: #f8f7f1;
}
.lesson .row1 {
  padding: 60px 0;
  position: relative;
}
.lesson .row1 .cat-foot1 {
  max-width: 120px;
  top: -12%;
  right: 10%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .lesson .row1 .cat-foot1 {
    max-width: 60px;
    top: -3%;
  }
}
@media screen and (max-width: 767px) {
  .lesson .row1 {
    padding: 30px 0;
  }
}
.lesson .row1.white {
  background: #fff;
}
.lesson .row1.yellow {
  background: #fcfaf2;
}
.lesson .row1:last-child {
  padding-bottom: 0;
}
.lesson .title {
  font-size: 21px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .lesson .title {
    margin-bottom: 30px;
  }
}
.lesson .flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lesson .flex {
    display: block;
  }
}
.lesson .flex .img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .lesson .flex .img {
    width: 70%;
    margin: 0 auto 20px;
  }
}
.lesson .flex .contents {
  width: 57%;
}
.lesson .flex .contents .text {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .lesson .flex .contents .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .lesson .flex .contents {
    width: 100%;
  }
}
.lesson .attention {
  text-align: center;
  font-size: 21px;
  font-weight: 500;
  margin-top: 80px;
}
@media screen and (max-width: 500px) {
  .lesson .attention {
    margin-top: 30px;
    font-size: 3.6vw;
    white-space: nowrap;
  }
}

html {
  scroll-behavior: smooth;
}

.drawer-icon-nav .drawer-sub a {
  max-width: 180px;
}

#id1,
#id2,
#id3,
#id4,
#id5,
#voice1,
#voice2,
#voice3 {
  position: relative;
  top: -110px;
}
@media screen and (max-width: 767px) {
  #id1,
  #id2,
  #id3,
  #id4,
  #id5,
  #voice1,
  #voice2,
  #voice3 {
    top: -80px;
  }
}

.category {
  padding-top: 200px;
}
@media screen and (max-width: 767px) {
  .category {
    padding-top: 130px;
  }
}

.privacy .box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e3e3;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  display: block;
  padding: 60px 60px;
}
@media screen and (max-width: 767px) {
  .privacy .box {
    padding: 30px 20px;
  }
}
.privacy .lead {
  font-size: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .privacy .lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.privacy h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .privacy h2 {
    font-size: 18px;
  }
}
.privacy h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .privacy h3 {
    font-size: 16px;
  }
}
.privacy p {
  font-size: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .privacy p {
    font-size: 14px;
  }
}
.privacy .section-title {
  margin-bottom: 60px;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .privacy .section-title {
    margin-bottom: 40px;
    font-size: 20px;
  }
}

.submit .submit-btn a {
  transition: 0.3s;
}
.submit .submit-btn a:hover {
  opacity: 0.6;
}

.low .tb01 {
  max-width: 800px;
  width: 100%;
  font-size: 16px !important;
  margin: 0 auto;
}

.tb01 .title {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 6px;
  background-color: #e4e4e4;
  width: 35%;
}

.tb01 td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  padding: 6px;
  text-align: left;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .tb01 tr {
    font-size: 14px;
  }
}
.tb01 tr:first-child .title {
  border-top: 1px solid #ccc;
}
.tb01 tr:first-child td {
  border-top: 1px solid #ccc;
}

.single {
  background: initial !important;
}
.single .single_title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 2px solid #fd807a;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .single .single_title {
    font-size: 14px;
  }
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
}
.loading-screen .wrap {
  max-width: 400px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 要素を中央に配置 */
  animation: bounce 0.7s ease-in-out infinite;
  /* 2秒かけて回転させ、無限に繰り返す */
}

@keyframes bounce {
  0% {
    transform: translate(-50%, -40%);
  }
  35% {
    transform: translate(-50%, -65%) rotate(-3deg);
  }
  40% {
    transform: translate(-50%, -70%);
  }
  60% {
    transform: translate(-50%, -70%);
  }
  65% {
    transform: translate(-50%, -65%) rotate(5deg);
  }
  100% {
    transform: translate(-50%, -40%);
  }
}
.voice .name {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .section-btn a .section-btn-icon {
    position: relative;
    top: -2px;
  }
}
.lesson {
  position: relative;
}
.lesson .cat-foot1 {
  max-width: 120px;
  top: 95%;
  right: 10%;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .lesson .cat-foot1 {
    max-width: 60px;
  }
}
.lesson .last-message {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .lesson .last-message {
    text-align: left;
    font-size: 18px;
    margin-top: 40px;
  }
}
.lesson .sub-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .lesson .sub-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.lesson .sub-title span {
  font-size: 18px;
  display: block;
}
.lesson .sub-title span b {
  padding: 0 25px;
  position: relative;
}
.lesson .sub-title span b::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #531700;
  position: absolute;
  bottom: 10px;
  left: 0;
  transform: rotate(45deg);
}
.lesson .sub-title span b::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #531700;
  position: absolute;
  bottom: 10px;
  right: 0;
  transform: rotate(-45deg);
}
.lesson .flex1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .lesson .flex1 {
    margin-bottom: 30px;
    display: block;
  }
}
.lesson .flex1 .img {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .lesson .flex1 .img {
    width: 70%;
    margin: 0 auto 10px;
  }
}
.lesson .flex1 .contents {
  width: 53%;
}
@media screen and (max-width: 767px) {
  .lesson .flex1 .contents {
    width: 100%;
  }
}
.lesson .flex1 .contents .title2 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .lesson .flex1 .contents .title2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.lesson .flex1 .contents .text {
  font-size: 16px;
  line-height: 2;
}
.lesson .bottom {
  max-width: 850px;
  margin: 0 auto;
}
.lesson .bottom .box {
  padding: 40px;
  border: 1px solid #531700;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .lesson .bottom .box {
    padding: 30px 20px;
  }
}
.lesson .bottom .bottom-title {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.lesson .bottom .bottom-title .wrap {
  display: inline-block;
  position: relative;
}
.lesson .bottom .bottom-title .wrap::before {
  position: absolute;
  top: 50%;
  left: -70px;
  width: 42px;
  height: 42px;
  content: "";
  transform: translateY(-50%);
  background: url(../img/icon20240724.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .lesson .bottom .bottom-title .wrap::before {
    width: 30px;
    height: 30px;
    left: -45px;
  }
}
.lesson .bottom .bottom-title .wrap::after {
  position: absolute;
  top: 50%;
  right: -70px;
  width: 42px;
  height: 42px;
  content: "";
  transform: translateY(-50%);
  background: url(../img/icon20240724.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .lesson .bottom .bottom-title .wrap::after {
    width: 30px;
    height: 30px;
    right: -45px;
  }
}
@media screen and (max-width: 767px) {
  .lesson .bottom .bottom-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.lesson .bottom ul {
  max-width: 550px;
  margin: 0 auto;
}
.lesson .bottom ul li {
  display: flex;
  margin-bottom: 10px;
}
.lesson .bottom ul li:last-child {
  margin-bottom: 0;
}
.lesson .bottom ul li .check {
  width: 31px;
  min-width: 31px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .lesson .bottom ul li .check {
    width: 25px;
    min-width: 25px;
    margin-right: 10px;
  }
}
.lesson .bottom ul li .text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .lesson .bottom ul li .text {
    font-size: 14px;
  }
}
.lesson .bottom .gallary {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .lesson .bottom .gallary {
    margin-top: 30px;
  }
}
.lesson .bottom .gallary .gallay-img {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .lesson .bottom .gallary .gallay-img {
    width: 32%;
  }
}

.white-bg {
  background: #fff;
}

.page-heading .cat-foot1 {
  z-index: 5;
}

.drawer-icon-nav .drawer-sub a {
  text-align: center;
}

.taiken-lesson {
  display: flex;
  padding: 60px 0 0;
  justify-content: space-between;
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .taiken-lesson {
    padding: 40px 0 0;
  }
}
.taiken-lesson .block {
  width: 100%;
  border: 1px solid #531700;
  border-radius: 10px;
  padding: 40px 40px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .taiken-lesson .block {
    padding: 30px 20px;
    width: 100%;
    margin-bottom: 20px;
  }
  .taiken-lesson .block:last-child {
    margin-bottom: 0;
  }
}
.taiken-lesson .title2 {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .taiken-lesson .title2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.taiken-lesson .course {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .taiken-lesson .course {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.taiken-lesson .text2 {
  font-size: 20px;
  text-align: center;
}
.taiken-lesson .text2 span {
  color: #fd807a;
  font-size: 120%;
  font-weight: bold;
}

.contact .row .dd-radio label {
  display: block;
  margin-bottom: 10px;
}
.contact .row .dd-radio span {
  padding-left: 25px;
  position: relative;
}
.contact .row .dd-radio span::before {
  position: absolute;
  content: "";
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #531700;
  border-radius: 50%;
}
.contact .row .dd-radio span::after {
  position: absolute;
  content: "";
  top: 55%;
  transform: translateY(-50%);
  left: 2.5px;
  width: 17px;
  height: 17px;
  background: #fd807a;
  border-radius: 50%;
  opacity: 0;
}
.contact .row .dd-radio input:checked + span::after {
  opacity: 1;
}
.contact .row .dd-radio input {
  position: absolute;
  /* top: -1000%; */
  left: -1000%;
}