@charset "UTF-8";
@import url("reset.css");
/* ---------------------------
数値
--------------------------- */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  スムーズスクロール
--------------------------- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ---------------------------
  フォント
--------------------------- */
body {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "MS PMincho", "Times New Roman", "Times", serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}

/* ---------------------------
  フッター下付け
--------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #faf4f4;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ---------------------------
  その他
--------------------------- */
/* --- 画像表示 --- */
img {
  width: 100%;
  height: auto;
}

/* --- リンクホバー --- */
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* --- PCのみ表示 --- */
.pc-view {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

/* --- SPのみ表示 --- */
.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

/* --- インナー --- */
.inner {
  max-width: 90%;
  margin: 0 auto;
}

/* --- PC表示にてTELリンク無効化 --- */
@media (min-width: 1024px) {
  /* PCサイズ */
  a[href^=tel] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}
/* --- スクロールアニメーション（フェードアップ） --- */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- to-topボタン --- */
.to-top {
  position: fixed;
  right: 50px;
  bottom: 70px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  font-size: 24px;
  color: #fff;
  background: #9862a6;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    right: 30px;
    bottom: 50px;
  }
}
.to-top.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- セクションタイトル --- */
.section {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .section {
    margin-top: 9.7vw;
  }
}
.section__title {
  color: #9862a6;
  font-size: 48px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 7.5vw;
  }
}

/* ----------------------------------------
  header
---------------------------------------- */
.header {
  position: relative;
  z-index: 101;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1165px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  max-width: 95%;
  white-space: nowrap;
  position: relative;
}
.header__logo {
  width: 240px;
  min-width: 200px;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  color: #947ba2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1180px) {
  .header__nav {
    gap: 1.7vw;
    font-size: 14px;
  }
}
@media screen and (max-width: 950px) {
  .header__nav {
    font-size: 12px;
  }
}
@media screen and (max-width: 1040px) {
  .header__nav {
    position: absolute;
    top: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    border-radius: 20px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border: 2px solid #e6ddee;
  }
  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1040px) {
  .header__nav--item {
    width: 52vw;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-delay: calc(0.05s * var(--item-index, 0));
            transition-delay: calc(0.05s * var(--item-index, 0));
    font-size: 5vw;
  }
  .header__nav--item.show {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header__nav--item a {
  display: block;
  padding: 5px 0;
}
@media screen and (max-width: 1040px) {
  .header__nav--item a {
    padding: 10px 0;
  }
}
.header__nav--item:first-child {
  display: none;
}
@media screen and (max-width: 1040px) {
  .header__nav--item:first-child {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #9862a6;
    margin-right: auto;
    margin-left: 2vw;
    padding: 0 6.3vw;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 4px rgba(191, 168, 204, 0.25);
            box-shadow: 0 4px 4px rgba(191, 168, 204, 0.25);
  }
}
@media screen and (max-width: 1040px) {
  .header__nav--item:nth-child(n+2) {
    margin-top: 3.1vw;
  }
}
.header__nav--item:nth-last-child(2) {
  font-size: 12px;
}
@media screen and (max-width: 1180px) {
  .header__nav--item:nth-last-child(2) {
    font-size: 10px;
  }
}
@media screen and (max-width: 1040px) {
  .header__nav--item:nth-last-child(2) {
    margin-top: 0;
  }
}
.header__nav--item:nth-last-child(2) div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1040px) {
  .header__nav--item:nth-last-child(2) div {
    display: none;
  }
}
.header__nav--item:nth-last-child(2) div span {
  font-size: 10px;
  border: 1px solid #947ba2;
  display: inline-block;
  margin-right: 3px;
  border-radius: 5px;
  padding: 2px 5px;
}
@media screen and (max-width: 1180px) {
  .header__nav--item:nth-last-child(2) div span {
    margin-right: 3px;
  }
}
.header__nav--item:last-child {
  background: #9862a6;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  font-weight: bold;
}
.header__nav--item:last-child a {
  padding: 10px 28px;
}
@media screen and (max-width: 1180px) {
  .header__nav--item:last-child a {
    padding: 5px 14px;
  }
}
@media screen and (max-width: 1180px) {
  .header__nav--item:last-child {
    font-size: 12px;
    margin-right: 3px;
  }
}
@media screen and (max-width: 1040px) {
  .header__nav--item:last-child {
    display: none;
  }
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: #9862a6;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  z-index: 300;
}
@media screen and (max-width: 1040px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hamburger span {
  display: block;
  height: 3px;
  width: 24px;
  background: #fff;
  border-radius: 3px;
  margin: 2px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger span:nth-of-type(1), .hamburger span:nth-of-type(2), .hamburger span:nth-of-type(3) {
  position: static;
}
.hamburger.open span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------
  footer
---------------------------------------- */
.footer {
  margin-top: 138px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 21.3vw;
  }
}
.footer__inner {
  width: 1100px;
  color: #9862a6;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-bottom: 25vw;
  }
}
.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.1vw;
  }
}
.footer__logo {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 75vw;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 4.4vw;
    gap: 0;
  }
}
.footer__nav ul li:nth-child(n+2) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .footer__nav ul li:nth-child(n+2) {
    margin-top: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav ul li {
    margin-top: 5vw;
  }
}
.footer__nav ul li a.after-icon {
  position: relative;
}
.footer__nav ul li a.after-icon::after {
  content: "";
  position: absolute;
  background: url(../img/footer-icon.png) center center/cover no-repeat;
  display: block;
  width: 10px;
  height: 10px;
  right: -11px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer__nav ul li a.after-icon::after {
    width: 2.5vw;
    height: 2.5vw;
    right: -3.8vw;
  }
}
.footer__contact {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #9862a6;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.footer__contact div {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__contact div {
    font-size: 3.8vw;
  }
}
.footer__contact div span {
  font-size: 10px;
  border: 1px solid #947ba2;
  display: inline-block;
  margin-right: 3px;
  border-radius: 5px;
  padding: 2px 5px;
}
@media screen and (max-width: 1180px) {
  .footer__contact div span {
    margin-right: 3px;
  }
}
@media screen and (max-width: 768px) {
  .footer__contact div span {
    font-size: 3.1vw;
    padding: 0 1.6vw;
  }
}
.footer__btn {
  width: 140px !important;
  height: 40px !important;
  margin-top: 10px !important;
}
@media screen and (max-width: 768px) {
  .footer__btn {
    width: 75.6vw !important;
    max-width: 300px;
    height: 9.4vw !important;
    min-height: 40px;
  }
}
.footer__btn p {
  width: 100% !important;
  height: 100% !important;
  font-size: 14px !important;
}
@media screen and (max-width: 768px) {
  .footer__btn p {
    font-size: 4.4vw !important;
  }
}
.footer .copyright {
  background: #947ba2;
  color: #fff;
  text-align: center;
  margin-top: 62px;
  padding: 3px 0;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    margin-top: 17.8vw;
  }
}

/* ----------------------------------------
  ボタン
---------------------------------------- */
.btn-common {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.btn-common p {
  width: 306px;
  background: #9862a6;
  color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 6px rgb(191, 168, 204);
          box-shadow: 2px 2px 6px rgb(191, 168, 204);
  height: 48px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .btn-common p {
    width: 76.3vw;
    height: 12.5vw;
    font-size: 5vw;
  }
}

/* ----------------------------------------
  トップ/FV
---------------------------------------- */
.fv {
  background: url(../img/fv.png) center bottom/cover no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 2000/884;
}
@media screen and (max-width: 768px) {
  .fv {
    background: url(../img/fv-sp.png) center bottom/cover no-repeat;
    aspect-ratio: 960/659;
  }
}
.fv__inner {
  width: 1153px;
  position: relative;
  height: 100%;
  padding: 152px 0 0;
}
@media screen and (max-width: 1200px) {
  .fv__inner {
    padding-top: 10.6vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding-top: 9.4vw;
  }
}
.fv__title {
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: #9862a6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  text-shadow: 0 4px 4px rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1200px) {
  .fv__title {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 4.4vw;
    white-space: nowrap;
  }
}
.fv__title span {
  display: block;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 5px 15px;
}
.fv__title span:first-child {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .fv__title span:first-child {
    margin-bottom: 5px;
  }
}
.fv__text {
  margin-top: 21px;
  color: #9862a6;
  text-shadow: 0 4px 4px rgba(255, 255, 255, 0.7);
  margin-left: 10px;
}
@media screen and (max-width: 1200px) {
  .fv__text {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__text {
    font-size: 2.8vw;
  }
}
.fv__btn {
  position: absolute;
  right: 0;
  bottom: 12%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .fv__btn {
    gap: 0.7vw;
  }
}
.fv__btn a {
  background: #9862a6;
  color: #fff;
  border-radius: 10px;
  width: 306px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .fv__btn a {
    font-size: 1.4vw;
    width: 27.8vw;
    height: 4.2vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__btn a {
    font-size: 3.1vw;
    width: 49.4vw;
    height: 8.4vw;
  }
}
.fv__btn a:first-child {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .fv__btn a:first-child {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__btn a:first-child {
    font-size: 2.2vw;
  }
}

/* ----------------------------------------
  トップ/サービス概要
---------------------------------------- */
.service {
  position: relative;
}
.service::before, .service::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.service::before {
  bottom: 10%;
  left: 0;
  background: url(../img/service-left.png) center center/cover no-repeat;
  width: 27.5vw;
  height: 39.2vw;
}
@media screen and (max-width: 768px) {
  .service::before {
    top: 17%;
    background: url(../img/service-left-sp.png) center center/cover no-repeat;
    width: 34.5vw;
    height: 66.2vw;
  }
}
.service::after {
  top: -5%;
  right: 0;
  background: url(../img/service-right.png) center center/cover no-repeat;
  width: 15vw;
  height: 8.7vw;
}
@media screen and (max-width: 768px) {
  .service::after {
    bottom: 2%;
    top: auto;
    background: url(../img/service-right-sp.png) center center/cover no-repeat;
    width: 39vw;
    height: 60.7vw;
  }
}
.service__inner {
  width: 1118px;
  color: #9862a6;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .service__title {
    position: relative;
  }
  .service__title::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 10%;
    left: 5%;
    background: url(../img/service-top-sp.png) center center/cover no-repeat;
    width: 19.7vw;
    height: 22.2vw;
  }
}
.service__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 87px;
}
@media screen and (max-width: 768px) {
  .service__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 9.1vw;
    gap: 10vw;
  }
}
.service__text {
  width: 53.5%;
}
@media screen and (max-width: 768px) {
  .service__text {
    width: 100%;
  }
}
.service__text p {
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .service__text p {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  .service__text p {
    font-size: 4.4vw;
  }
}
.service__text p span {
  font-weight: bold;
}
.service__text p:nth-child(2) {
  font-size: 36px;
  font-weight: bold;
  margin: 18px 0 36px;
}
@media screen and (max-width: 1200px) {
  .service__text p:nth-child(2) {
    font-size: 2.5vw;
  }
}
.service__img {
  width: 44.7%;
}
@media screen and (max-width: 768px) {
  .service__img {
    width: 90%;
  }
}
.service__bottom {
  position: relative;
  height: 250px;
  width: 2px;
  display: block;
  background: #9862a6;
  margin: 75px auto 0;
}
@media screen and (max-width: 768px) {
  .service__bottom {
    height: 40.9vw;
    margin-top: 9.4vw;
  }
}
.service .heart {
  position: absolute;
  width: 24px;
  height: 21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: moveDownWithFade 1.5s infinite ease-in-out;
          animation: moveDownWithFade 1.5s infinite ease-in-out;
}
@-webkit-keyframes moveDownWithFade {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 21px);
    opacity: 0;
  }
}
@keyframes moveDownWithFade {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 21px);
    opacity: 0;
  }
}

/* ----------------------------------------
  トップ/講座内容
---------------------------------------- */
.program__inner {
  width: 1235px;
  color: #9862a6;
}
.program__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border-radius: 0 50px;
  padding: 37px 50px;
  gap: 6%;
  margin-top: 50px;
  -webkit-box-shadow: 6px 6px 10px rgba(219, 215, 222, 0.7019607843);
          box-shadow: 6px 6px 10px rgba(219, 215, 222, 0.7019607843);
}
@media screen and (max-width: 1200px) {
  .program__contents {
    padding: 2.6vw 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .program__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8.1vw 7.5vw;
    margin-top: 10vw;
  }
}
.program__contents.first, .program__contents.second, .program__contents.third {
  position: relative;
}
.program__contents.first::after, .program__contents.second::after, .program__contents.third::after {
  content: "";
  position: absolute;
}
.program__contents.first::after {
  background: url(../img/program-bg1.png) center center/cover no-repeat;
  width: 166px;
  height: 188px;
  bottom: -17%;
  right: -10%;
}
@media screen and (max-width: 1440px) {
  .program__contents.first::after {
    width: 11.5vw;
    height: 13vw;
  }
}
.program__contents.second::after {
  background: url(../img/program-bg1.png) center center/cover no-repeat;
  width: 166px;
  height: 188px;
  bottom: -19%;
  left: -12%;
}
@media screen and (max-width: 1440px) {
  .program__contents.second::after {
    width: 11.5vw;
    height: 13vw;
  }
}
.program__contents.third::after {
  background: url(../img/program-bg2.png) center center/cover no-repeat;
  width: 253px;
  height: 188px;
  bottom: -37%;
  right: 7%;
}
@media screen and (max-width: 1440px) {
  .program__contents.third::after {
    width: 17.5vw;
    height: 13vw;
    bottom: -36%;
  }
}
.program__contents--left {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .program__contents--left {
    width: 100%;
  }
}
.program__contents--right {
  font-size: 20px;
  padding-top: 74px;
  width: 40%;
}
@media screen and (max-width: 1200px) {
  .program__contents--right {
    font-size: 1.4vw;
    padding-top: 5.1vw;
  }
}
@media screen and (max-width: 768px) {
  .program__contents--right {
    font-size: 3.8vw;
    width: 100%;
  }
}
.program__contents--right li {
  list-style: disc;
  margin-left: 1em;
}
.program__contents--right li.mt20 {
  margin-top: 20px;
}
.program__contents--right p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 13;
  overflow: hidden;
}
.program__contents--right p.mt20 {
  margin-top: 20px;
}
.program__contents--title {
  font-size: 32px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.program__contents--title::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/underline.png) center center/cover no-repeat;
  width: 110%;
  height: 20px;
  left: -3%;
  bottom: -10px;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}
@media screen and (max-width: 1200px) {
  .program__contents--title {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  .program__contents--title {
    font-size: 5.6vw;
    margin: 0 auto;
  }
}
.program__contents--img {
  position: relative;
  margin-top: 30px;
}
.program__contents--img p {
  position: absolute;
  background: #bfa8cc;
  color: #fff;
  padding: 5px 12px;
  border-radius: 0 10px 0 0;
  right: 12px;
  top: 6px;
}
.program__contents--img div {
  border-radius: 15px;
  overflow: hidden;
}
.program__contents--bottom {
  margin: 30px auto 0;
  text-decoration: underline;
  text-decoration-color: #fbff1d;
  text-decoration-thickness: 5px;
  text-underline-offset: -3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1200px) {
  .program__contents--bottom {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  .program__contents--bottom {
    font-size: 3.8vw;
  }
}
.program__text {
  text-align: center;
  font-size: 32px;
  margin-top: 80px;
}
.program__text.mt155 {
  margin-top: 155px;
}
@media screen and (max-width: 1200px) {
  .program__text.mt155 {
    margin-top: 10.8vw;
  }
}
@media screen and (max-width: 768px) {
  .program__text.mt155 {
    font-size: 6.3vw;
  }
}
@media screen and (max-width: 1200px) {
  .program__text {
    font-size: 2.2vw;
    margin-top: 5.6vw;
  }
}
@media screen and (max-width: 768px) {
  .program__text {
    font-size: 4.4vw;
    margin-top: 10vw;
  }
}
.program__flow {
  width: 75%;
  margin: 98px auto 0;
}
@media screen and (max-width: 768px) {
  .program__flow {
    margin-top: 18.1vw;
  }
}
.program__flow-text {
  text-align: right;
  width: 75%;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .program__flow-text {
    font-size: 4.4vw;
    text-align: left;
    margin-top: 8.4vw;
  }
}
.program__btn {
  margin-top: 74px;
}
@media screen and (max-width: 768px) {
  .program__btn {
    margin-top: 8.4vw;
  }
}

/* ----------------------------------------
  トップ/季節ごとの1dayレッスン
---------------------------------------- */
.lesson {
  background: url(../img/lesson-bg.jpg) center center/cover no-repeat;
  aspect-ratio: 2870/1068;
  position: relative;
  margin-top: 128px;
  max-height: 534px;
  margin: 128px auto 0;
}
@media screen and (max-width: 768px) {
  .lesson {
    background: url(../img/lesson-bg-sp.png) center center/cover no-repeat;
    aspect-ratio: 320/272;
    max-height: none;
  }
}
.lesson__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #9862a6;
}
.lesson__title {
  font-size: 36px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .lesson__title {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .lesson__title {
    font-size: 5vw;
  }
}
.lesson__text {
  font-size: 20px;
  margin-top: 32px;
}
@media screen and (max-width: 1200px) {
  .lesson__text {
    font-size: 1.4vw;
    margin-top: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  .lesson__text {
    font-size: 4.4vw;
  }
}
.lesson__btn {
  margin-top: 75px;
}
@media screen and (max-width: 1200px) {
  .lesson__btn {
    margin-top: 5.2vw;
  }
}
.lesson__btn p {
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .lesson__btn p {
    font-size: 3.8vw;
  }
}
/* ----------------------------------------
  トップ/受講スタイル 
---------------------------------------- */
.style {
  margin-top: 165px;
}
@media screen and (max-width: 768px) {
  .style {
    margin-top: 24.4vw;
  }
}
.style__inner {
  width: 1134px;
}
.style__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7%;
  margin-top: 54px;
  color: #9862a6;
}
@media screen and (max-width: 768px) {
  .style__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.8vw;
  }
}
.style__flex:first-child {
  margin-top: 80px;
}
.style__flex p:first-child {
  font-size: 7.5vw;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .style__flex p:first-child {
    font-size: 7.5vw;
  }
}
.style__flex p:first-child::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/underline.png) center center/cover no-repeat;
  width: 80%;
  height: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(1deg);
          transform: translateX(-50%) rotate(1deg);
  bottom: -10px;
}
.style__img {
  min-width: 44%;
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .style__img {
    margin-top: 10vw;
  }
}
.style__text p:first-child {
  position: relative;
  font-size: 36px;
  text-align: left;
}
.style__text p:first-child::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/underline.png) center center/cover no-repeat;
  width: 80%;
  height: 40%;
  left: -1%;
  bottom: -10px;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}
.style__text p:nth-child(2) {
  margin-top: 25px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .style__text p:nth-child(2) {
    margin-top: 9.1vw;
  }
}
/* ----------------------------------------
  トップ/イベントのお知らせ
---------------------------------------- */
.news {
  background: #fff;
}
.news.archive {
  background: transparent;
}
.news__inner {
  width: 1333px;
  max-width: 90%;
  margin: 0 auto;
  border-radius: 30px;
  padding: 68px 0 85px;
  color: #9862a6;
}
@media screen and (max-width: 768px) {
  .news__inner {
    padding: 11.6vw 0 9.4vw;
  }
}
.news__list {
  width: 1133px;
  max-width: 90%;
  margin: 57px auto 0;
}
@media screen and (max-width: 768px) {
  .news__list {
    margin-top: 9.4vw;
  }
}
.news__list--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .news__list--link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.1vw;
    padding: 3.8vw 0;
  }
}
.news__list--link::after {
  position: absolute;
  content: "";
  background: #947ba2;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
}
.news__list--new {
  width: 54px;
}
@media screen and (max-width: 768px) {
  .news__list--new {
    margin-bottom: 0.6vw;
    width: 16.6vw;
  }
}
.news__list--new p {
  text-align: center;
  font-size: 12px;
  color: #9862a6;
  border: 1px solid #9862a6;
}
@media screen and (max-width: 768px) {
  .news__list--new p {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 768px) {
  .news__list--date {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 768px) {
  .news__list--title {
    font-size: 3.8vw;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.news__btn {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .news__btn {
    margin-top: 9.4vw;
  }
}

/* ----------------------------------------
  トップ/企業様向けご案内
---------------------------------------- */
.info {
  margin: 120px 0;
}
@media screen and (max-width: 768px) {
  .info {
    margin: 20vw 0;
  }
}
.info__inner {
  width: 1020px;
}
.info__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7.5%;
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .info__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 6.6vw;
  }
}
.info__flex img {
  width: 48%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .info__flex img {
    width: 100%;
  }
}
.info__flex p {
  width: 44%;
  color: #9862a6;
  font-size: 20px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .info__flex p {
    width: 95%;
    margin: 4.4vw auto 0;
    font-size: 4.4vw;
  }
}
.info__btn {
  margin-top: 62px;
}

/* ----------------------------------------
  トップ/講師紹介
---------------------------------------- */
.lecture {
  background: #fff;
  padding: 106px 0;
}
@media screen and (max-width: 768px) {
  .lecture {
    padding: 6.9vw 0;
  }
}
.lecture__inner {
  width: 1184px;
  color: #9862a6;
}
.lecture__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 87px;
}
@media screen and (max-width: 768px) {
  .lecture__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 5vw;
  }
}
.lecture__left {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .lecture__left {
    width: 95%;
    margin: 0 auto;
  }
}
.lecture__left p {
  text-align: center;
  font-size: 22px;
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  .lecture__left p {
    font-size: 5vw;
    margin-top: 4.7vw;
  }
}
.lecture__right {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .lecture__right {
    width: 100%;
    font-size: 4.4vw;
    margin-top: 10vw;
  }
}
.lecture__btn p {
  font-size: 20px;
}

/* ----------------------------------------
  トップ/教室の様子
---------------------------------------- */
.class {
  margin: 213px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .class {
    margin: 17.2vw 0 10vw;
  }
}
.class::before, .class::after {
  position: absolute;
  content: "";
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .class::before, .class::after {
    display: none;
  }
}
.class::before {
  background: url(../img/class-bg1.png) center center/cover no-repeat;
  width: 25vw;
  height: 41.5vw;
  right: 0;
  top: -11%;
}
.class::after {
  background: url(../img/class-bg2.png) center center/cover no-repeat;
  width: 21vw;
  height: 35vw;
  left: 0;
  bottom: 8%;
}
.class__inner {
  width: 985px;
  position: relative;
}
.class__inner::before {
  background: url(../img/class-bg3.png) center center/cover no-repeat;
  position: absolute;
  content: "";
  z-index: 1;
  width: 13vw;
  height: 9.5vw;
  left: -16%;
  top: 0%;
}
@media screen and (max-width: 768px) {
  .class__inner::before {
    width: 22vw;
    height: 16.5vw;
    left: -8%;
    top: 1%;
  }
}
.class__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4%;
  margin-top: 90px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .class__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.class__flex img {
  width: 48%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .class__flex img {
    width: 100%;
  }
}
.class__flex img:nth-child(n+3) {
  margin-top: 4%;
}
@media screen and (max-width: 768px) {
  .class__flex img:nth-child(n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .class__flex img:nth-child(n+2) {
    margin-top: 4%;
  }
}
.class__bottom {
  position: relative;
  height: 250px;
  width: 2px;
  display: block;
  background: #9862a6;
  margin: 75px auto 0;
}
@media screen and (max-width: 768px) {
  .class__bottom {
    height: 40.9vw;
    margin-top: 9.4vw;
  }
}
.class .heart {
  position: absolute;
  width: 24px;
  height: 21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: moveDownWithFade 1.5s infinite ease-in-out;
          animation: moveDownWithFade 1.5s infinite ease-in-out;
}
@keyframes moveDownWithFade {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 21px);
    opacity: 0;
  }
}

/* ----------------------------------------
  トップ/受講者の声
---------------------------------------- */
.voice {
  max-width: 85%;
  margin: 92px auto;
}
@media screen and (max-width: 768px) {
  .voice {
    margin-top: 10vw;
  }
}
.voice__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #9862a6;
  position: relative;
}
.voice__text {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .voice__text {
    font-size: 5.3vw;
  }
}
.voice-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .voice-swiper {
    margin-top: 12.8vw;
    padding-bottom: 9.4vw;
  }
}
.voice-swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.voice-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #e4cff0;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.voice-swiper .swiper-pagination-bullet-active {
  background: #947ba2;
}
.voice .swiper-button-prev, .voice .swiper-button-next {
  color: #bfa8cc;
  font-size: 30px;
  top: 42%;
}
@media screen and (max-width: 1280px) {
  .voice .swiper-button-prev, .voice .swiper-button-next {
    top: 38%;
  }
}
.voice .swiper-button-prev::after, .voice .swiper-button-next::after {
  display: none;
}
.voice .swiper-button-prev:hover, .voice .swiper-button-next:hover {
  opacity: 0.8;
}
.voice .swiper-button-prev {
  left: -40px;
}
@media screen and (max-width: 768px) {
  .voice .swiper-button-prev {
    left: -20px;
  }
}
.voice .swiper-button-next {
  right: -40px;
}
@media screen and (max-width: 768px) {
  .voice .swiper-button-next {
    right: -20px;
  }
}

.voice-card {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.voice-card__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 353/210;
  position: relative;
  border-radius: 10px;
}
.voice-card__img img {
  height: 100%;
  width: auto;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 95%;
  margin: 27px auto 0;
}
@media screen and (max-width: 768px) {
  .voice-card__body {
    font-size: 5vw;
  }
}
/* ----------------------------------------
  トップ/特典・キャンペーン
---------------------------------------- */
@media screen and (max-width: 768px) {
  .campaign {
    margin-top: 20vw;
  }
}
.campaign__inner {
  width: 1130px;
}
.campaign__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3%;
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .campaign__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 13.1vw;
  }
}
.campaign__flex--item {
  position: relative;
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  .campaign__flex--item {
    width: 100%;
  }
}
.campaign__flex--item::after {
  position: absolute;
  content: "";
  display: block;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/campaign-bg.png) center center/cover no-repeat;
}
.campaign__flex--item:nth-child(n+3) {
  margin-top: 3%;
}
@media screen and (max-width: 768px) {
  .campaign__flex--item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .campaign__flex--item:nth-child(n+2) {
    margin-top: 9.4vw;
  }
}
.campaign__flex--item img {
  border-radius: 10px;
}
.campaign__flex--item p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  color: #9862a6;
  font-size: 36px;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .campaign__flex--item p {
    font-size: 7.5vw;
  }
}

/* ----------------------------------------
  よくある質問
---------------------------------------- */
.faq {
  margin: 175px 0 214px;
}
@media screen and (max-width: 768px) {
  .faq {
    margin: 15.6vw 0 19.7vw;
  }
}
.faq__inner {
  width: 1133px;
  margin: 0 auto;
}
.faq__content {
  margin: 40px auto 0;
  width: 998px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .faq__content {
    max-width: 100%;
    margin-top: 7.2vw;
  }
}
.faq__content:nth-child(2) {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .faq__content:nth-child(2) {
    margin-top: 10vw;
  }
}
.faq__content--qa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 21px 30px;
  font-size: 24px;
  line-height: 1;
  background: #9862a6;
}
@media screen and (max-width: 768px) {
  .faq__content--qa {
    font-size: 4.4vw;
    padding: 2.5vw 3.1vw;
  }
}
.faq__content--qa p:nth-child(2) {
  display: inline-block;
  margin-left: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .faq__content--qa p:nth-child(2) {
    font-size: 3.8vw;
    margin-left: 3.1vw;
    margin-right: 6.3vw;
  }
}
.faq__content--qa.question {
  color: #fff;
  position: relative;
  background: #9862a6;
}
.faq__content--qa.question:hover {
  cursor: pointer;
}
.faq__content--qa.question::after {
  content: "";
  background: url(../img/arrow-down.png) center center/cover no-repeat;
  position: absolute;
  right: 30px;
  top: 32px;
  width: 20px;
  height: 10px;
}
@media screen and (max-width: 768px) {
  .faq__content--qa.question::after {
    top: 4.4vw;
    right: 3.8vw;
    width: 3.8vw;
    height: 1.9vw;
  }
}
.faq__content--qa.question.open::after {
  background: url(../img/arrow-up.png) center center/cover no-repeat;
}
.faq__content--qa.question p:nth-child(2) {
  font-size: 20px;
  color: #fff;
  margin-top: 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .faq__content--qa.question p:nth-child(2) {
    font-size: 4.1vw;
  }
}
.faq__content--qa.answer {
  background: #fff;
  color: #9862a6;
  margin-top: 17px;
  display: none;
}
@media screen and (max-width: 768px) {
  .faq__content--qa.answer {
    margin-top: 0;
  }
}
.faq__content--qa.answer.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ----------------------------------------
  ブロックエディタ共通
---------------------------------------- */
.block {
  margin: 50px 0 100px;
}
@media screen and (max-width: 768px) {
  .block {
    margin-bottom: 15.6vw;
  }
}
.block-inner {
  width: 1000px !important;
  max-width: 90%;
  margin: 0 auto;
}
.block-inner .wp-block-paragraph,
.block-inner .wp-block-heading,
.block-inner .wp-block-columns,
.block-inner .wp-block-image,
.block-inner .wp-block-list,
.block-inner .wp-block-quote,
.block-inner .wp-block-code,
.block-inner .wp-block-preformatted,
.block-inner .wp-block-verse,
.block-inner .wp-block-table,
.block-inner h3,
.block-inner p {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ----------------------------------------
  イベント一覧ページ
---------------------------------------- */
.news__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 100px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .news__pagination {
    gap: 6.3vw;
    font-size: 5.6vw;
  }
}
.news__pagination a:first-child, .news__pagination a:last-child {
  width: 20px;
  min-width: 20px;
}