@charset "UTF-8";
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  word-break: break-all;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  font-feature-settings: "palt";
  text-rendering: optimizeSpeed;
  color: #000;
}

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

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

a:hover {
  transition: 0.3s;
  opacity: 0.6;
}

.fs18 {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .fs18 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .fs18 {
    font-size: 1.4rem;
  }
}

.fs20 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .fs20 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .fs20 {
    font-size: 1.6rem;
  }
}

.fs22 {
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .fs22 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .fs22 {
    font-size: 1.8rem;
  }
}

.fs25 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .fs25 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .fs25 {
    font-size: 1.8rem;
  }
}

.fs30 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .fs30 {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .fs30 {
    font-size: 2rem;
  }
}

.fs40 {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .fs40 {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .fs40 {
    font-size: 2.2rem;
  }
}

.fc__green {
  color: #66b200;
}

.fc__gray {
  color: #66667e;
}

.fc__blue {
  color: #00175b;
}

.fc__lightblue {
  color: #0474ce;
}

.fc__red {
  color: rgb(184, 28, 34);
}

.fw__bold {
  font-weight: bold;
}

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

.border__title {
  color: #B81C22;
  text-align: center;
  border: 2px solid #B81C22;
  font-size: 2.5rem;
  padding: 15px;
  margin-bottom: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .border__title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .border__title {
    font-size: 1.8rem;
  }
}
.border__title span {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: -30px;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #B81C22;
  margin: auto;
}

.obi__red {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  background: #b71a25;
  margin-bottom: 30px;
  padding: 15px 10px;
}
@media (max-width: 768px) {
  .obi__red {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .obi__red {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

img {
  height: auto;
}

.wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.flex {
  display: flex;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: 0.3s;
  background: #fff;
  border: 3px solid #b61828;
  opacity: 0;
}
@media (max-width: 768px) {
  .pagetop {
    right: 15px;
    bottom: 80px;
    width: 60px;
    height: 60px;
  }
}
.pagetop .arrow-1-t {
  display: inline-block;
  width: 20px; /* 大きさ */
  height: 20px; /* 大きさ */
  margin: 10px 15px 0;
  border-top: 2px solid #b61828; /* 線の太さ・色 */
  border-left: 2px solid #b61828; /* 線の太さ・色 */
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.fixed__brn {
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 700;
}
@media (max-width: 768px) {
  .fixed__brn {
    display: none;
  }
}
.fixed__brn:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.site-header {
  padding-top: 10px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.6);
}
.site-header .hd__txt {
  font-size: 12px;
  font-weight: 700;
}
.site-header .header-top {
  padding: 0 0 10px;
}
.site-header .header-top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-top .header-left img {
  width: 100%;
  max-width: 506px;
}
@media (max-width: 768px) {
  .site-header .header-top .header-left img {
    width: 80%;
  }
}
.site-header .header-top .header-right {
  gap: 10px;
}
.site-header .header-top .header-right__tel01, .site-header .header-top .header-right__tel02 {
  text-align: center;
}
.site-header .header-top .header-right__tel01 img, .site-header .header-top .header-right__tel02 img {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .site-header .header-top .header-right__tel01, .site-header .header-top .header-right__tel02 {
    display: none;
  }
}
.site-header .header-top .header-right__tel01 a, .site-header .header-top .header-right__tel02 a {
  display: block;
}
.site-header .header-top .header-right__tel01 {
  font-size: 32px;
  font-weight: bold;
}
.site-header .header-top .header-right__tel02 {
  font-size: 16px;
}
.site-header .header-top .header-right .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .site-header .header-top .header-right .hamburger {
    display: flex;
    z-index: 900;
    position: relative;
  }
}
.site-header .header-top .header-right .hamburger span {
  width: 25px;
  height: 2px;
  background: #000;
  display: block;
  transition: all 0.3s;
}
.site-header .global-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.site-header .global-nav ul li {
  margin: 0 15px;
}
.site-header .global-nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}
.site-header .drawer-nav {
  opacity: 0;
  background: #fff;
  position: fixed;
  top: -100%;
  right: 0;
  width: 80%;
  z-index: 800;
  height: 100%;
  padding: 60px 20px 20px 20px;
}
.site-header .drawer-nav ul {
  flex-direction: column;
  text-align: center;
}
.site-header .drawer-nav ul li a {
  font-size: 18px;
  display: block;
  padding: 15px;
  color: #333;
}
.site-header.menu-open .drawer-nav {
  top: 0;
  transition: 1s;
  opacity: 1;
}
.site-header.menu-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.site-header.menu-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .global-nav {
    display: none;
  }
}
.footer {
  text-align: center;
  padding: 30px 0 0;
  background: #fff;
  border-top: 1px solid #ddd;
}
@media (max-width: 480px) {
  .footer {
    padding: 20px 0 0;
  }
}
.footer .flex {
  justify-content: space-between;
}
.footer__navi {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .footer__navi {
    display: none;
  }
}
.footer__navi ul {
  display: flex;
  justify-content: space-between;
}
.footer__navi ul li a {
  font-size: 1.4rem;
  font-weight: bold;
}
.footer__bottom__address {
  text-align: left;
}
@media (max-width: 768px) {
  .footer__bottom__address {
    display: none;
  }
}
.footer__bottom__address .footer__logo {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer__bottom__link {
    display: flex;
    justify-content: space-between;
  }
}
.footer .copy {
  margin-top: 50px;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 5px;
  background: rgb(184, 28, 34);
}
@media (max-width: 768px) {
  .footer .copy {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .footer .copy {
    font-size: 12px;
  }
}

.mv__top img,
.mv__pages img {
  width: 100%;
}

.home {
  background: #fafafa;
}
.home .concept {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .home .concept {
    padding: 8% 0;
  }
}
@media (max-width: 480px) {
  .home .concept {
    padding: 40px 0;
  }
}
.home .concept h2 {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .home .concept h2 {
    margin-bottom: 5%;
  }
}
@media (max-width: 480px) {
  .home .concept h2 {
    margin-bottom: 25px;
  }
}
.home .concept p {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .home .concept p {
    margin-bottom: 6%;
  }
}
@media (max-width: 480px) {
  .home .concept p {
    margin-bottom: 30px;
  }
}
.home .concept img {
  margin: 0 auto;
}
.home .concept .youtube {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .home .concept .youtube {
    margin-top: 8%;
  }
}
@media (max-width: 480px) {
  .home .concept .youtube {
    margin-top: 40px;
  }
}
.home .concept .flex {
  gap: 4%;
}
@media (max-width: 768px) {
  .home .concept .flex {
    display: block;
  }
}
.home .concept .flex li {
  width: 50%;
}
@media (max-width: 768px) {
  .home .concept .flex li {
    width: 100%;
  }
  .home .concept .flex li:nth-of-type(1) {
    margin-bottom: 4%;
  }
}
.home .news {
  padding: 80px 0;
  background: #fcf4ec url(../images/common/cmn__bg.png) no-repeat center/cover;
}
@media (max-width: 768px) {
  .home .news {
    padding: 8% 0;
  }
}
@media (max-width: 480px) {
  .home .news {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .home .news .wrap {
    padding: 0;
  }
}
.home .news__inner {
  padding: 30px;
  background: #fff;
}
.home .news__inner li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}
.home .news__inner li span {
  padding: 0 4%;
}
@media (max-width: 768px) {
  .home .news__inner li span {
    display: block;
    padding-left: 0;
  }
}
.home .news__inner li a {
  font-weight: bold;
}
.home .news__inner li a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.home .news__inner p {
  text-align: right;
}
.home .about {
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home .about {
    padding: 12% 0;
  }
}
@media (max-width: 480px) {
  .home .about {
    padding: 60px 0;
  }
}
.home .about .wrap {
  max-width: 1220px;
}
.home .about__box {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
.home .about__box__photo {
  width: 50%;
  max-width: 581px;
}
@media (max-width: 768px) {
  .home .about__box__photo {
    display: none;
  }
}
.home .about__box__txt {
  width: 50%;
  padding-left: 4%;
}
@media (max-width: 768px) {
  .home .about__box__txt {
    width: 100%;
    padding-left: 0;
  }
}
.home .about__box__txt h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .home .about__box__txt h2 {
    padding-left: 40px;
  }
}
.home .about__box__txt h2:before {
  content: "";
  position: absolute;
  left: -70px;
  top: 0;
  bottom: 0;
  width: 61px;
  height: 81px;
  background: url(../images/common/ttl_kazari.png) no-repeat center/cover;
}
@media (max-width: 768px) {
  .home .about__box__txt h2:before {
    left: 0;
    width: 31px;
    height: 51px;
  }
}
.home .about__box__txt h2:after {
  content: "";
  position: absolute;
  width: 140%;
  height: 3px;
  background: #b71a25;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.home .about__box__txt p {
  margin-bottom: 20px;
}
.home .about__box__txt__btn {
  text-align: center;
}
.home .about__box__txt__btn a {
  margin: 0 auto;
  display: inline-block;
}
.home .about__box.return {
  margin-bottom: 0;
}
.home .about__box.return .flex {
  flex-direction: row-reverse;
}
.home .about__box.return .about__box__txt {
  padding-left: 0;
  padding-right: 4%;
}
@media (max-width: 768px) {
  .home .about__box.return .about__box__txt {
    padding-right: 0;
  }
}
.home .about__box.return .about__box__txt h2 {
  padding-left: 70px;
  padding-right: 0;
}
@media (max-width: 768px) {
  .home .about__box.return .about__box__txt h2 {
    padding-left: 40px;
  }
}
.home .about__box.return .about__box__txt h2:before {
  left: 0;
}
.home .about__box.return .about__box__txt h2:after {
  background: #b71a25;
  left: 0;
  z-index: -1;
}
.home .link {
  padding: 80px 0;
  background: #fcf4ec url(../images/common/cmn__bg.png) no-repeat center/cover;
}
@media (max-width: 768px) {
  .home .link {
    padding: 8% 0;
  }
}
@media (max-width: 480px) {
  .home .link {
    padding: 40px 0;
  }
}
.home .link .flex {
  gap: 20px;
  justify-content: center;
}

.post-list .post {
  border: 1px solid #ddd;
  margin-bottom: 30px;
}
.post-list .post a {
  display: block;
}
.post-list .post a:hover * {
  transition: 0.3s;
  color: #0071D2;
}
.post-list .post a:hover img {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .post-list .post .flex {
    flex-direction: column;
  }
}
.post-list .post .flex .prImage {
  width: 50%;
}
@media (max-width: 768px) {
  .post-list .post .flex .prImage {
    width: 100%;
    overflow: hidden;
    background: none;
  }
}
.post-list .post .flex .prImage img {
  height: 100%;
  display: none;
}
@media (max-width: 768px) {
  .post-list .post .flex .prImage img {
    display: block;
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: 50%;
  }
}
.post-list .post .flex .topPrTxtBox {
  width: 50%;
  padding: 5%;
}
@media (max-width: 768px) {
  .post-list .post .flex .topPrTxtBox {
    width: 100%;
  }
}
.post-list .post .flex .topPrTxtBox .time {
  font-size: 13px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .post-list .post .flex .topPrTxtBox .time {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
.post-list .post .flex .topPrTxtBox h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .post-list .post .flex .topPrTxtBox h2 {
    font-size: 2rem;
  }
}
.post-list .post .flex .topPrTxtBox p {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .post-list .post .flex .topPrTxtBox p {
    font-size: 1.4rem;
  }
}

.wp-pagenavi {
  text-align: center;
  margin: 2rem 0;
}
.wp-pagenavi a, .wp-pagenavi span.current {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  text-decoration: none;
}

.home__btn {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .home__btn {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .home__btn {
    margin-top: 25px;
  }
}
.home__btn a {
  display: inline-block;
}
.home__btn a img {
  margin: 0 auto;
}

#contents {
  padding: 120px 0;
}
@media (max-width: 768px) {
  #contents {
    padding: 14% 0;
  }
}
@media (max-width: 480px) {
  #contents {
    padding: 60px 0;
  }
}

.faq-section {
  padding: 4rem 0;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .faq-section {
    margin-bottom: 0;
  }
}
.faq-section__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}

.faq-item {
  border-bottom: 1px solid rgb(0, 87, 225);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 20px 30px 20px 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .faq-item__question {
    padding: 4% 30px 4% 20px;
  }
}
@media (max-width: 480px) {
  .faq-item__question {
    padding: 10px 30px 10px 10px;
  }
}
.faq-item__question::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  transition: transform 0.3s;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.faq-item__answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item__answer p {
  margin: 1rem 0 5%;
  line-height: 1.8;
}
.faq-item.is-open .faq-item__question::after {
  content: "";
  transform: translateY(25%) rotate(135deg);
}
.faq-item.is-open .faq-item__answer {
  padding: 1rem 1.5rem;
  max-height: inherit;
}

.single-post #contents .category-nav {
  margin: 2rem 0;
}
.single-post #contents .category-nav button {
  position: relative;
}
.single-post #contents .category-nav button .arrow {
  position: absolute;
  right: 20px;
  top: -10px;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
}
.single-post #contents .category-nav button .arrow:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
}
.single-post #contents .category-nav__toggle {
  display: none;
  cursor: pointer;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  width: 100%;
  text-align: left;
}
.single-post #contents .category-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
}
.single-post #contents .category-nav a {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: 0.3s;
}
.single-post #contents .category-nav.is-open button .arrow {
  top: 10px;
}
.single-post #contents .category-nav.is-open button .arrow:before {
  transform: rotate(-44deg);
}
@media (max-width: 768px) {
  .single-post #contents .category-nav {
    border: 1px solid #ddd;
    padding: 10px 15px;
  }
  .single-post #contents .category-nav__toggle {
    display: block;
  }
  .single-post #contents .category-nav ul {
    display: none;
    flex-direction: column;
  }
  .single-post #contents .category-nav.is-open ul {
    display: flex;
  }
}
.single-post #contents .article {
  border: 1px solid rgb(238, 236, 236);
  padding: 60px;
}
@media (max-width: 768px) {
  .single-post #contents .article {
    padding: 6% 20px;
  }
}
.single-post #contents .article__information {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .single-post #contents .article__information {
    margin-bottom: 5%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .single-post #contents .article__information {
    margin-bottom: 15px;
  }
}
.single-post #contents .article__information li {
  width: 46%;
}
.single-post #contents .article__information li:nth-of-type(1) {
  width: 100%;
}
.single-post #contents .article__information .post-author {
  display: flex;
  align-items: center;
}
.single-post #contents .article__information .post-author img {
  border-radius: 100%;
}
.single-post #contents .article__information .post-author__name {
  padding-left: 10px;
}
.single-post #contents .article h1 {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .single-post #contents .article h1 {
    font-size: 30px;
    margin-bottom: 4%;
  }
}
@media (max-width: 480px) {
  .single-post #contents .article h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

body.archive .post-list .post {
  padding: 30px 60px;
  border: 1px solid #ddd;
  margin-bottom: 30px;
}
body.archive .post-list .post a {
  display: block;
}
body.archive .post-list .post a:hover * {
  transition: 0.3s;
  color: #0071D2;
}
body.archive .post-list .post a:hover img {
  opacity: 0.6;
}
@media (max-width: 768px) {
  body.archive .post-list .post .flex {
    flex-direction: column;
  }
}
body.archive .post-list .post .flex .prImage {
  width: 50%;
}
@media (max-width: 768px) {
  body.archive .post-list .post .flex .prImage {
    width: 100%;
    overflow: hidden;
    background: none;
  }
}
body.archive .post-list .post .flex .prImage img {
  height: 100%;
  display: none;
}
@media (max-width: 768px) {
  body.archive .post-list .post .flex .prImage img {
    display: block;
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: 50%;
  }
}
body.archive .post-list .post__information {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  body.archive .post-list .post__information {
    margin-bottom: 5%;
  }
}
@media (max-width: 480px) {
  body.archive .post-list .post__information {
    margin-bottom: 15px;
  }
}
body.archive .post-list .post__information li:nth-of-type(1) {
  width: 100%;
}
body.archive .post-list .post__information .post-author {
  display: flex;
  align-items: center;
}
body.archive .post-list .post__information .post-author img {
  border-radius: 100%;
}
body.archive .post-list .post__information .post-author__name {
  padding-left: 10px;
}
body.archive .post-list .post .topPrTxtBox h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 600;
}
@media (max-width: 480px) {
  body.archive .post-list .post .topPrTxtBox h2 {
    font-size: 2rem;
  }
}
body.archive .post-list .post .topPrTxtBox p {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  body.archive .post-list .post .topPrTxtBox p {
    font-size: 1.4rem;
  }
}
body.archive .wp-pagenavi {
  text-align: center;
  margin: 2rem 0;
}
body.archive .wp-pagenavi a, body.archive .wp-pagenavi span.current {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  text-decoration: none;
}

.page-about #contents {
  background: url(../images/common/bg__earth.png) no-repeat 50% -120px/cover;
}
.page-about #contents .about-section {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .page-about #contents .about-section {
    margin-bottom: 0;
  }
}
.page-about #contents .about-section__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}
.page-about #contents .about-section p {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .page-about #contents .about-section p {
    margin-bottom: 5%;
  }
}
@media (max-width: 480px) {
  .page-about #contents .about-section p {
    margin-bottom: 15px;
  }
}
.page-about #contents .history-section table,
.page-about #contents .overview-section table,
.page-about #contents .lesson-section table {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .page-about #contents .history-section table,
  .page-about #contents .overview-section table,
  .page-about #contents .lesson-section table {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .page-about #contents .history-section table,
  .page-about #contents .overview-section table,
  .page-about #contents .lesson-section table {
    margin-top: 25px;
  }
}
.page-about #contents .history-section table tr th, .page-about #contents .history-section table tr td,
.page-about #contents .overview-section table tr th,
.page-about #contents .overview-section table tr td,
.page-about #contents .lesson-section table tr th,
.page-about #contents .lesson-section table tr td {
  padding: 20px;
  vertical-align: middle;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .page-about #contents .history-section table tr th, .page-about #contents .history-section table tr td,
  .page-about #contents .overview-section table tr th,
  .page-about #contents .overview-section table tr td,
  .page-about #contents .lesson-section table tr th,
  .page-about #contents .lesson-section table tr td {
    display: block;
  }
}
.page-about #contents .history-section table tr th,
.page-about #contents .overview-section table tr th,
.page-about #contents .lesson-section table tr th {
  width: 15%;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 768px) {
  .page-about #contents .history-section table tr th,
  .page-about #contents .overview-section table tr th,
  .page-about #contents .lesson-section table tr th {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-about #contents .history-section table tr td,
  .page-about #contents .overview-section table tr td,
  .page-about #contents .lesson-section table tr td {
    padding-top: 0;
  }
}
.page-about #contents .history-section table tr:nth-of-type(odd) th, .page-about #contents .history-section table tr:nth-of-type(odd) td,
.page-about #contents .overview-section table tr:nth-of-type(odd) th,
.page-about #contents .overview-section table tr:nth-of-type(odd) td,
.page-about #contents .lesson-section table tr:nth-of-type(odd) th,
.page-about #contents .lesson-section table tr:nth-of-type(odd) td {
  background: #e8e0d7;
}
.page-about #contents .history-section table tr:nth-of-type(even),
.page-about #contents .overview-section table tr:nth-of-type(even),
.page-about #contents .lesson-section table tr:nth-of-type(even) {
  background: #f2ede8;
}
.page-about #contents .overview-section,
.page-about #contents .lesson-section {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-about #contents .overview-section,
  .page-about #contents .lesson-section {
    margin-top: 10%;
  }
}
@media (max-width: 480px) {
  .page-about #contents .overview-section,
  .page-about #contents .lesson-section {
    margin-top: 40px;
  }
}

.page-contact .wp-block-snow-monkey-forms-item {
  margin-bottom: 30px;
}
.page-contact .wp-block-snow-monkey-forms-item input[type=text],
.page-contact .wp-block-snow-monkey-forms-item textarea,
.page-contact .wp-block-snow-monkey-forms-item input[type=email],
.page-contact .wp-block-snow-monkey-forms-item input[type=tel] {
  width: 100%;
  padding: 15px;
}
.page-contact div[data-name=checkboxes-1j1s2614l] {
  text-align: center;
}
.page-contact span.smf-button-control {
  display: block;
}
.page-contact span.smf-button-control .smf-button-control__control {
  background: #b81c22;
  color: #fff;
  text-align: center;
  border-radius: 100vh;
  padding: 15px;
  width: 100%;
  max-width: 300px;
  margin: 30px auto 0;
  display: block;
  color: #fff;
  border: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
}
.page-contact .privacypolicy {
  margin-top: 120px;
  padding: 70px 60px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
}
@media (max-width: 768px) {
  .page-contact .privacypolicy {
    margin-top: 14%;
    padding: 8% 20px;
  }
}
@media (max-width: 480px) {
  .page-contact .privacypolicy {
    margin-top: 60px;
    padding: 40px 20px;
  }
}
.page-contact .privacypolicy__txt {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .page-contact .privacypolicy__txt {
    margin-bottom: 5%;
  }
}
@media (max-width: 480px) {
  .page-contact .privacypolicy__txt {
    margin-bottom: 25px;
  }
}
.page-contact .privacypolicy p {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .page-contact .privacypolicy p {
    margin-bottom: 4%;
  }
}
@media (max-width: 480px) {
  .page-contact .privacypolicy p {
    margin-bottom: 15px;
  }
}
.page-contact .privacypolicy p:last-child {
  margin-bottom: 0;
}

.materials-section .online__flex,
.materials-section .master__flex {
  display: flex;
  gap: 4%;
}
@media (max-width: 768px) {
  .materials-section .online__flex,
  .materials-section .master__flex {
    flex-direction: column;
  }
}
.materials-section .online__flex__txt,
.materials-section .master__flex__txt {
  width: 40%;
}
@media (max-width: 768px) {
  .materials-section .online__flex__txt,
  .materials-section .master__flex__txt {
    width: 100%;
  }
}
.materials-section .online__flex__txt dl,
.materials-section .master__flex__txt dl {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .materials-section .online__flex__txt dl,
  .materials-section .master__flex__txt dl {
    margin-bottom: 7%;
  }
}
@media (max-width: 480px) {
  .materials-section .online__flex__txt dl,
  .materials-section .master__flex__txt dl {
    margin-bottom: 25px;
  }
}
.materials-section .online__flex__txt dl dt,
.materials-section .master__flex__txt dl dt {
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  margin-bottom: 10px;
  background: #b71a25;
  position: relative;
  overflow: hidden;
}
.materials-section .online__flex__txt dl dt:before, .materials-section .online__flex__txt dl dt:after,
.materials-section .master__flex__txt dl dt:before,
.materials-section .master__flex__txt dl dt:after {
  content: "";
  position: absolute;
  top: 0;
  width: 5px;
  height: 100%;
  background: #fff;
}
.materials-section .online__flex__txt dl dt:before,
.materials-section .master__flex__txt dl dt:before {
  left: 10px;
}
.materials-section .online__flex__txt dl dt:after,
.materials-section .master__flex__txt dl dt:after {
  right: 10px;
}
.materials-section .online__flex__txt dl dd,
.materials-section .master__flex__txt dl dd {
  padding: 20px;
}
.materials-section .online__flex__img,
.materials-section .master__flex__img {
  width: 50%;
}
@media (max-width: 768px) {
  .materials-section .online__flex__img,
  .materials-section .master__flex__img {
    width: 100%;
    margin-bottom: 7%;
  }
}
@media (max-width: 480px) {
  .materials-section .online__flex__img,
  .materials-section .master__flex__img {
    margin-bottom: 25px;
  }
}
.materials-section .online {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .materials-section .online {
    margin-bottom: 12%;
  }
}
@media (max-width: 480px) {
  .materials-section .online {
    margin-top: 60px;
  }
}

.wjlc-section table,
.general-section table {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .wjlc-section table,
  .general-section table {
    margin-top: 7%;
  }
}
@media (max-width: 480px) {
  .wjlc-section table,
  .general-section table {
    margin-top: 25px;
  }
}
.wjlc-section table tr th, .wjlc-section table tr td,
.general-section table tr th,
.general-section table tr td {
  padding: 20px;
  vertical-align: middle;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .wjlc-section table tr th, .wjlc-section table tr td,
  .general-section table tr th,
  .general-section table tr td {
    display: block;
  }
}
.wjlc-section table tr th,
.general-section table tr th {
  width: 15%;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 768px) {
  .wjlc-section table tr th,
  .general-section table tr th {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .wjlc-section table tr td,
  .general-section table tr td {
    padding-top: 0;
  }
}
.wjlc-section table tr:nth-of-type(odd) th, .wjlc-section table tr:nth-of-type(odd) td,
.general-section table tr:nth-of-type(odd) th,
.general-section table tr:nth-of-type(odd) td {
  background: #e8e0d7;
}
.wjlc-section table tr:nth-of-type(even),
.general-section table tr:nth-of-type(even) {
  background: #f2ede8;
}
.wjlc-section .wjlc-about,
.wjlc-section .general-about,
.general-section .wjlc-about,
.general-section .general-about {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-about,
  .wjlc-section .general-about,
  .general-section .wjlc-about,
  .general-section .general-about {
    margin-bottom: 12%;
  }
}
@media (max-width: 480px) {
  .wjlc-section .wjlc-about,
  .wjlc-section .general-about,
  .general-section .wjlc-about,
  .general-section .general-about {
    margin-bottom: 60px;
  }
}
.wjlc-section .wjlc-features,
.wjlc-section .general-features,
.wjlc-section .general-practice,
.general-section .wjlc-features,
.general-section .general-features,
.general-section .general-practice {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-features,
  .wjlc-section .general-features,
  .wjlc-section .general-practice,
  .general-section .wjlc-features,
  .general-section .general-features,
  .general-section .general-practice {
    margin-bottom: 12%;
  }
}
@media (max-width: 480px) {
  .wjlc-section .wjlc-features,
  .wjlc-section .general-features,
  .wjlc-section .general-practice,
  .general-section .wjlc-features,
  .general-section .general-features,
  .general-section .general-practice {
    margin-bottom: 60px;
  }
}
.wjlc-section .wjlc-features__img,
.wjlc-section .general-features__img,
.wjlc-section .general-practice__img,
.general-section .wjlc-features__img,
.general-section .general-features__img,
.general-section .general-practice__img {
  margin-top: 50px;
  text-align: center;
}
.wjlc-section .wjlc-features__img img,
.wjlc-section .general-features__img img,
.wjlc-section .general-practice__img img,
.general-section .wjlc-features__img img,
.general-section .general-features__img img,
.general-section .general-practice__img img {
  margin: 0 auto;
}
.wjlc-section .wjlc-features__flex,
.wjlc-section .general-features__flex,
.wjlc-section .general-practice__flex,
.general-section .wjlc-features__flex,
.general-section .general-features__flex,
.general-section .general-practice__flex {
  display: flex;
  justify-content: center;
  gap: 5%;
  margin-top: 5%;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-features__flex,
  .wjlc-section .general-features__flex,
  .wjlc-section .general-practice__flex,
  .general-section .wjlc-features__flex,
  .general-section .general-features__flex,
  .general-section .general-practice__flex {
    flex-direction: column;
  }
}
.wjlc-section .wjlc-features__flex__txt,
.wjlc-section .general-features__flex__txt,
.wjlc-section .general-practice__flex__txt,
.general-section .wjlc-features__flex__txt,
.general-section .general-features__flex__txt,
.general-section .general-practice__flex__txt {
  width: 75%;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-features__flex__txt,
  .wjlc-section .general-features__flex__txt,
  .wjlc-section .general-practice__flex__txt,
  .general-section .wjlc-features__flex__txt,
  .general-section .general-features__flex__txt,
  .general-section .general-practice__flex__txt {
    width: 100%;
  }
}
.wjlc-section .wjlc-features__flex__txt dl:nth-of-type(1),
.wjlc-section .general-features__flex__txt dl:nth-of-type(1),
.wjlc-section .general-practice__flex__txt dl:nth-of-type(1),
.general-section .wjlc-features__flex__txt dl:nth-of-type(1),
.general-section .general-features__flex__txt dl:nth-of-type(1),
.general-section .general-practice__flex__txt dl:nth-of-type(1) {
  margin-bottom: 50px;
}
.wjlc-section .wjlc-features__flex__img,
.wjlc-section .general-features__flex__img,
.wjlc-section .general-practice__flex__img,
.general-section .wjlc-features__flex__img,
.general-section .general-features__flex__img,
.general-section .general-practice__flex__img {
  width: 30%;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-features__flex__img,
  .wjlc-section .general-features__flex__img,
  .wjlc-section .general-practice__flex__img,
  .general-section .wjlc-features__flex__img,
  .general-section .general-features__flex__img,
  .general-section .general-practice__flex__img {
    width: 100%;
  }
}
.wjlc-section .wjlc-merit,
.wjlc-section .general-merit,
.general-section .wjlc-merit,
.general-section .general-merit {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-merit,
  .wjlc-section .general-merit,
  .general-section .wjlc-merit,
  .general-section .general-merit {
    margin-bottom: 12%;
  }
}
@media (max-width: 480px) {
  .wjlc-section .wjlc-merit,
  .wjlc-section .general-merit,
  .general-section .wjlc-merit,
  .general-section .general-merit {
    margin-bottom: 60px;
  }
}
.wjlc-section .wjlc-merit ul,
.wjlc-section .general-merit ul,
.general-section .wjlc-merit ul,
.general-section .general-merit ul {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-merit ul,
  .wjlc-section .general-merit ul,
  .general-section .wjlc-merit ul,
  .general-section .general-merit ul {
    flex-wrap: wrap;
  }
}
.wjlc-section .wjlc-merit ul li,
.wjlc-section .general-merit ul li,
.general-section .wjlc-merit ul li,
.general-section .general-merit ul li {
  width: 241px;
  height: 241px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1080px) {
  .wjlc-section .wjlc-merit ul li,
  .wjlc-section .general-merit ul li,
  .general-section .wjlc-merit ul li,
  .general-section .general-merit ul li {
    width: 25vw;
    height: 25vw;
  }
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-merit ul li,
  .wjlc-section .general-merit ul li,
  .general-section .wjlc-merit ul li,
  .general-section .general-merit ul li {
    width: 44vw;
    height: 44vw;
  }
}
.wjlc-section .wjlc-merit ul li:nth-of-type(1),
.wjlc-section .general-merit ul li:nth-of-type(1),
.general-section .wjlc-merit ul li:nth-of-type(1),
.general-section .general-merit ul li:nth-of-type(1) {
  background: url(../images/wjlc/merit-img01.png) no-repeat center/cover;
}
.wjlc-section .wjlc-merit ul li:nth-of-type(2),
.wjlc-section .general-merit ul li:nth-of-type(2),
.general-section .wjlc-merit ul li:nth-of-type(2),
.general-section .general-merit ul li:nth-of-type(2) {
  background: url(../images/wjlc/merit-img02.png) no-repeat center/cover;
}
.wjlc-section .wjlc-merit ul li:nth-of-type(3),
.wjlc-section .general-merit ul li:nth-of-type(3),
.general-section .wjlc-merit ul li:nth-of-type(3),
.general-section .general-merit ul li:nth-of-type(3) {
  background: url(../images/wjlc/merit-img03.png) no-repeat center/cover;
}
.wjlc-section .wjlc-merit ul li:nth-of-type(4),
.wjlc-section .general-merit ul li:nth-of-type(4),
.general-section .wjlc-merit ul li:nth-of-type(4),
.general-section .general-merit ul li:nth-of-type(4) {
  background: url(../images/wjlc/merit-img04.png) no-repeat center/cover;
}
.wjlc-section .wjlc-merit ul li p,
.wjlc-section .general-merit ul li p,
.general-section .wjlc-merit ul li p,
.general-section .general-merit ul li p {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-merit ul li p,
  .wjlc-section .general-merit ul li p,
  .general-section .wjlc-merit ul li p,
  .general-section .general-merit ul li p {
    font-size: 14px;
  }
}
.wjlc-section .wjlc-curriculum,
.wjlc-section .general-curriculum,
.general-section .wjlc-curriculum,
.general-section .general-curriculum {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-curriculum,
  .wjlc-section .general-curriculum,
  .general-section .wjlc-curriculum,
  .general-section .general-curriculum {
    margin-bottom: 12%;
  }
}
@media (max-width: 480px) {
  .wjlc-section .wjlc-curriculum,
  .wjlc-section .general-curriculum,
  .general-section .wjlc-curriculum,
  .general-section .general-curriculum {
    margin-bottom: 60px;
  }
}
.wjlc-section .wjlc-curriculum__flex,
.wjlc-section .general-curriculum__flex,
.general-section .wjlc-curriculum__flex,
.general-section .general-curriculum__flex {
  display: flex;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-curriculum__flex,
  .wjlc-section .general-curriculum__flex,
  .general-section .wjlc-curriculum__flex,
  .general-section .general-curriculum__flex {
    flex-direction: column;
  }
}
.wjlc-section .wjlc-curriculum__flex ol,
.wjlc-section .general-curriculum__flex ol,
.general-section .wjlc-curriculum__flex ol,
.general-section .general-curriculum__flex ol {
  width: 50%;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-curriculum__flex ol,
  .wjlc-section .general-curriculum__flex ol,
  .general-section .wjlc-curriculum__flex ol,
  .general-section .general-curriculum__flex ol {
    width: 100%;
  }
}
.wjlc-section .wjlc-curriculum__flex ol li,
.wjlc-section .general-curriculum__flex ol li,
.general-section .wjlc-curriculum__flex ol li,
.general-section .general-curriculum__flex ol li {
  line-height: 2;
}
.wjlc-section .wjlc-flow__flex ul,
.wjlc-section .general-flow__flex ul,
.general-section .wjlc-flow__flex ul,
.general-section .general-flow__flex ul {
  display: flex;
  justify-content: center;
  gap: 4%;
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-flow__flex ul,
  .wjlc-section .general-flow__flex ul,
  .general-section .wjlc-flow__flex ul,
  .general-section .general-flow__flex ul {
    margin-bottom: 12%;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .wjlc-section .wjlc-flow__flex ul,
  .wjlc-section .general-flow__flex ul,
  .general-section .wjlc-flow__flex ul,
  .general-section .general-flow__flex ul {
    margin-bottom: 60px;
  }
}
.wjlc-section .wjlc-flow__flex li,
.wjlc-section .general-flow__flex li,
.general-section .wjlc-flow__flex li,
.general-section .general-flow__flex li {
  width: 30%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .wjlc-section .wjlc-flow__flex li,
  .wjlc-section .general-flow__flex li,
  .general-section .wjlc-flow__flex li,
  .general-section .general-flow__flex li {
    width: 100%;
    margin-bottom: 20px;
  }
  .wjlc-section .wjlc-flow__flex li img,
  .wjlc-section .general-flow__flex li img,
  .general-section .wjlc-flow__flex li img,
  .general-section .general-flow__flex li img {
    width: 100%;
  }
}
.wjlc-section .wjlc-flow__flex li div,
.wjlc-section .general-flow__flex li div,
.general-section .wjlc-flow__flex li div,
.general-section .general-flow__flex li div {
  padding: 30px 20px 50px;
  background: #fff;
}
.wjlc-section .wjlc-flow__flex li div h3,
.wjlc-section .general-flow__flex li div h3,
.general-section .wjlc-flow__flex li div h3,
.general-section .general-flow__flex li div h3 {
  color: #b61828;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #b61828;
}
.wjlc-section .general-calendar,
.general-section .general-calendar {
  padding: 10px;
  background: rgb(184, 28, 34);
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .wjlc-section .general-calendar,
  .general-section .general-calendar {
    margin-bottom: 12%;
  }
}
@media (max-width: 480px) {
  .wjlc-section .general-calendar,
  .general-section .general-calendar {
    margin-bottom: 60px;
  }
}
.wjlc-section .general-calendar__ttl,
.general-section .general-calendar__ttl {
  color: #fff;
  font-size: 25px;
  text-align: center;
}
@media (max-width: 768px) {
  .wjlc-section .general-calendar__ttl,
  .general-section .general-calendar__ttl {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .wjlc-section .general-calendar__ttl,
  .general-section .general-calendar__ttl {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */