@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
  color: #1e1e1e;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  background: #fff;
}

main {
  display: grid;
  gap: 96px;
}
@media screen and (min-width: 768px) {
  main {
    gap: 100px;
  }
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

.section__head {
  margin: 0 auto;
}

.section__content {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 64px;
    font-size: 18px;
  }
}

.heading {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
}
.heading::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #8b1c1c;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
  }
}

.button {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  min-width: 158px;
  padding: 11px;
  text-align: center;
  border: solid 1px #8b1c1c;
  background: #fff;
  color: #8b1c1c;
  font-size: 14px;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #fff;
  background-color: #8b1c1c;
}

.section-toggle {
  cursor: pointer;
}

.section-toggle__summary {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
}

.section-toggle__text {
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 10px;
  line-height: 1.8rem;
  border: solid 1px #8b1c1c;
}

#about,
#message,
#teams,
#members {
  scroll-margin-top: 100px;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
}

.header__inner {
  color: #fff;
  padding-inline: 30px;
  padding-block: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 40px;
    padding-block: 20px;
  }
}

.header__logo a img {
  width: 60px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 80px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: inline-block;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}

.header__link {
  font-size: 16px;
  font-weight: 300;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.fv {
  font-weight: 900;
  height: 80dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .fv {
    background: url(../img/bg-1.jpg) no-repeat center/cover;
    background-position: 45% 50%;
  }
}
@media screen and (min-width: 768px) {
  .fv {
    background: center/cover url(../img/bg_cropped_15_percent.jpg);
  }
}
.fv::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-animation: clip-fv 1.3s forwards;
          animation: clip-fv 1.3s forwards;
}

.hero {
  color: #fff;
  text-align: center;
  display: grid;
  place-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
}

.hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 0.25em;
  display: block;
  translate: 0 1em;
  opacity: 0;
  -webkit-animation: appear 1.3s 0.8s forwards;
          animation: appear 1.3s 0.8s forwards;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 3.7rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.11em;
  }
}

.hero__subtitle {
  display: inline-block;
  opacity: 0;
  translate: 0 1em;
  -webkit-animation: appear 1.3s 1.2s forwards;
          animation: appear 1.3s 1.2s forwards;
  font-size: 0.8em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  display: block;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.hero__scroll {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
  inset: auto auto 0 2rem;
  opacity: 0;
  translate: -5rem;
  -webkit-animation: appear 1.3s 1.3s ease forwards;
          animation: appear 1.3s 1.3s ease forwards;
}
.hero__scroll a {
  font-size: 9px;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  inline-size: 160px;
  gap: 0.5em;
}
@media screen and (min-width: 768px) {
  .hero__scroll a {
    font-size: 11px;
  }
}
.hero__scroll a::after {
  content: "";
  display: block;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  block-size: 4px;
}

@-webkit-keyframes appear {
  to {
    translate: 0;
    opacity: 1;
  }
}

@keyframes appear {
  to {
    translate: 0;
    opacity: 1;
  }
}
@-webkit-keyframes clip-fv {
  from {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
}
@keyframes clip-fv {
  from {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
}
#navArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
}

#navArea.open .menu {
  left: 0;
  opacity: 1;
}

#navArea.open {
  opacity: 1;
  pointer-events: auto;
}

.menu {
  width: 240px;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: -300px;
  bottom: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 11;
}

#navArea.open .menu {
  left: 0;
}

.menu__inner {
  padding: 25px;
}

.menu .menu__inner ul li {
  border-bottom: 1px solid #333;
}

.menu .menu__inner ul li a {
  display: block;
  font-size: 0.7rem;
  padding: 1rem;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.menu .menu__inner ul li a:hover {
  background-color: #e4e4e4;
}

.toggle-btn {
  display: block;
  position: absolute;
  top: 40px;
  right: 30px;
  width: 30px;
  height: 30px;
  z-index: 3;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .toggle-btn {
    display: none;
  }
}

.toggle-btn span {
  position: absolute;
  display: block;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 4px;
}

.toggle-btn span:nth-child(1) {
  top: 4px;
}

.toggle-btn span:nth-child(2) {
  top: 14px;
}

.toggle-btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle-btn span {
  background-color: #fff;
}

.toggle-btn.open span {
  background-color: #fff;
}

.toggle-btn.open span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
          transform: translateY(10px) rotate(-315deg);
}

.toggle-btn.open span:nth-child(2) {
  opacity: 0;
}

.toggle-btn.open span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
          transform: translateY(-10px) rotate(315deg);
}

#mask {
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#navArea.open #mask {
  display: block;
  background-color: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0.8;
  cursor: pointer;
}

.video-split-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.video-split-section__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
}

.video-split-section__heading-ja {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.video-split-section__lead {
  line-height: 1.8;
  color: #333;
}

.video-split-section__video {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.video-split-section__video-wrap {
  position: relative;
}

.video-split-section__video-wrap video {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .video-split-section__video-wrap video {
    height: 400px;
  }
}

.kendo-message {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  color: #222;
  text-align: left;
  margin-top: 2rem;
}
.kendo-message__en {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  color: #666;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .kendo-message {
    font-size: 1.4rem;
  }
  .kendo-message__en {
    font-size: 1.1rem;
  }
}

.kendo-video-section video {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}

.kendo-video-section {
  width: 100%;
  max-width: 100vw;
  padding: 0;
  margin: 0 auto;
}
.kendo-video-section video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.6666666667%;
  }
}

.about__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.about__image img {
  width: 100%;
}

.about__message {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.about__heading-ja {
  font-size: 20px;
  font-weight: 600;
}

.about__heading-en {
  font-size: 18px;
  font-weight: 500;
}

.about__text {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 25px;
  }
}

.closing {
  margin-top: 10px;
  font-weight: 600;
  font-size: 20px;
  text-align: left;
}

.closing-en {
  display: block;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 4px;
}

.message {
  overflow: hidden;
}

.message__content {
  margin-top: 150px;
  padding-top: 210px;
  position: relative;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .message__content {
    padding-bottom: 100px;
  }
}
.message__content::before {
  content: "";
  top: -100px;
  width: 1700px;
  height: 1200px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.01);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .message__content::before {
    width: 1050px;
    height: 1050px;
  }
}

.message__image {
  position: absolute;
  text-align: center;
  top: -90px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.message__image img {
  display: inline-block;
  width: 320px;
  -webkit-filter: brightness(75%);
          filter: brightness(75%);
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.message__heading {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .message__heading {
    font-size: 24px;
  }
}

.message__heading-en {
  font-size: 18px;
  color: rgba(30, 30, 30, 0.7);
  margin-bottom: 20px;
}

.message__text-1,
.message__text-2,
.message__text-3 {
  line-height: 1.9;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .message__text-1,
  .message__text-2,
  .message__text-3 {
    text-align: center;
    line-height: 2.2;
  }
}

.button {
  margin-top: 40px;
}

.message-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 40px);
  overflow: auto;
  z-index: 10;
  padding: 16px 15px 64px;
  border-radius: 5px;
  background: #fff;
  border: none;
}
@media screen and (min-width: 768px) {
  .message-modal {
    width: 1000px;
    padding: 49px 70px 75px;
  }
}
.message-modal::-ms-backdrop {
  opacity: 0.2;
  background: #333;
}
.message-modal::backdrop {
  opacity: 0.2;
  background: #333;
}

.message-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: sticky;
  top: 0;
}

.message-modal__close-icon img {
  width: 37px;
}

.message-modal__body {
  margin-top: 12px;
  max-height: 60vh;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .message-modal__body {
    margin-top: 43px;
  }
}

.message-modal__close-button {
  margin-top: 30px;
  text-align: center;
}

.org-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 20px;
}
.org-table th,
.org-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.org-table th {
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.03);
}
.org-table td {
  color: #333;
}
@media screen and (min-width: 768px) {
  .org-table {
    font-size: 15px;
  }
  .org-table th,
  .org-table td {
    padding: 10px 8px;
  }
}

.org-table__intro {
  font-size: 14px;
  margin-bottom: 16px;
  color: #333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .org-table__intro {
    font-size: 17px;
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 768px) {
  .women-message {
    margin-bottom: 80px;
  }
}

.women-message__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .women-message__inner {
    padding-inline: 80px;
  }
}

.women-message__box {
  margin-bottom: 50px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 10px;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .women-message__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.women-picture {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}
.women-picture img {
  width: 100%;
  padding-block: 5px;
}
@media screen and (min-width: 768px) {
  .women-picture img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.women-message__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

@media screen and (min-width: 768px) {
  .news {
    margin-top: -175px;
  }
}

@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 1120px;
    padding-inline: 40px;
  }
}

.news__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .news__cards {
    gap: 24px;
  }
}

.news__card {
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 768px) {
  .news__card {
    padding-bottom: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .news-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
  .news-card:hover .news-card__image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.news-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-card__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 300px;
  }
}
.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.news-card__body {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .news-card__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}

.news-card__time {
  font-size: 14px;
  display: block;
}

.news-card__title {
  font-weight: 600;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .news-card__title {
    margin-top: 16px;
    font-size: 18px;
  }
}

.news-card__text {
  margin-top: 14px;
  color: #888;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .news-card__text {
    margin-top: 10px;
  }
}

.news__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 44px;
  }
}

.slider {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  padding: 0 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .slider {
    max-width: 1000px;
    padding: 0;
  }
}

.slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
  padding-inline: 2px;
}
@media screen and (min-width: 768px) {
  .slider img {
    padding-inline: 5px;
  }
}

.section__head-en {
  font-size: 1rem;
  color: #999;
  font-style: italic;
  margin-bottom: 16px;
}

.dojo__subhead {
  font-size: 1.2em;
  font-weight: bold;
  color: #6b4c3b;
  margin-top: 30px;
}

.dojo__intro strong {
  font-weight: bold;
}

.instructors {
  margin-top: 40px;
}

.instructors__head {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.instructors__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .instructors__list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

.instructor {
  border-radius: 12px;
  padding: 16px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.instructor:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.instructor img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .instructor img {
    padding: 20px;
  }
}
.instructor .instructor__name {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 14px;
}
.instructor .instructor__name span {
  font-size: 0.85rem;
  color: #777;
}
.instructor .instructor__bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.members {
  margin-top: 40px;
  text-align: center;
}

.members__head {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.members__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .members__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.member {
  border-radius: 12px;
  padding: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media screen and (min-width: 768px) {
  .member {
    max-width: 260px;
  }
}
.member:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.member img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .member img {
    padding: 20px;
  }
}
.member .member__name {
  font-weight: bold;
  font-size: 0.8rem;
}

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

.dojo__intro-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .dojo__intro-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.dojo__group-photo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 600px;
}
.dojo__group-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dojo__intro-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

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

.join {
  padding-block: 180px 50px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  min-height: 650px;
}
@media screen and (min-width: 768px) {
  .join {
    padding-block: 123px 122px;
  }
}
.join::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.join--reigi {
  background-image: url(../img/join-reigi-mono9-16.jpg);
}
@media screen and (min-width: 768px) {
  .join--reigi {
    background-image: url(../img/join-reigi-mono16-9.jpg);
  }
}

.join--nintai {
  background-image: url(../img/join-nintai-mono9-16.jpg);
}
@media screen and (min-width: 768px) {
  .join--nintai {
    background-image: url(../img/join-nintai-mono16-9.jpg);
  }
}
@media screen and (min-width: 768px) {
  .join--nintai .join__content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-right: 5vw;
  }
}

.join--invite {
  background-image: url(../img/join-invite-mono9-16.jpg);
}
@media screen and (min-width: 768px) {
  .join--invite {
    background-image: url(../img/join-invite-mono16-9.jpg);
  }
}

.join__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1.5em;
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .join__content {
    width: 50%;
  }
}

.join__title {
  font-size: 22px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .join__title {
    font-size: 22px;
  }
}

.join__text {
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .join__text {
    margin-top: 23px;
    font-size: 18px;
  }
}

.join__text,
.join__title {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.join__title {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.faq__intro {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #333;
}
@media screen and (min-width: 768px) {
  .faq__intro {
    text-align: center;
  }
}

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.faq__item {
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  padding: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq__item[open] {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq__question {
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 1.5em;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 0.5em;
  font-size: 1.2rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq__item[open] .faq__question::after {
  content: "-";
}

.faq__answer {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.pdf-section {
  margin-top: 80px;
  text-align: center;
}
.pdf-section .pdf-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}
.pdf-section .pdf-item a.button {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #8b1c1c;
  color: #8b1c1c;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pdf-section .pdf-item a.button:hover {
  background-color: #8b1c1c;
  color: #fff;
}

.pdf-section__lead {
  padding-top: 20px;
}

.contact {
  padding-bottom: 80px;
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact__heading {
  text-align: center;
  margin-bottom: 24px;
}

.contact__note {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.contact__label {
  font-weight: bold;
}

.contact__required {
  color: #8b1c1c;
  margin-left: 0.3em;
  font-size: 14px;
}

.contact__input,
.contact__textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.contact__textarea {
  resize: vertical;
}

.contact__consent {
  font-size: 16px;
  margin-block: 20px;
}

.contact__submit {
  text-align: center;
}

.contact__button {
  font-size: 1rem;
  padding: 12px 32px;
  border: 1px solid #8b1c1c;
  background: transparent;
  color: #8b1c1c;
  cursor: pointer;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__button:hover {
  background: #8b1c1c;
  color: #fff;
}

.contact__info {
  margin-top: 2rem;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__info {
    font-size: 1.1rem;
  }
}
.contact__info p {
  margin: 0.5rem 0;
}

.footer {
  background-color: #f4f4f4;
  color: #333;
  padding-block: 40px 20px;
  position: relative;
  text-align: center;
}

.footer__inner {
  max-width: 500px;
  margin: 0 auto;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 600px;
  }
}

.footer__branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 10px;
}
.footer__logo {
  width: 80px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 130px;
  }
}

.footer__catch {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
  color: #222;
}
@media (min-width: 768px) {
  .footer__catch {
    font-size: 1.8rem;
  }
}

.footer__divider {
  height: 1px;
  background-color: #8b1c1c;
  opacity: 0.6;
  margin-block: 24px 16px;
}

.footer__bottom {
  font-size: 12px;
  color: #666;
}

.footer__totop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

.footer__totop-link {
  display: inline-block;
  background-color: #8b1c1c;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__totop-link {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

.footer__totop-link:hover {
  background-color: #fff;
  color: #8b1c1c;
  scale: 1.2;
}

body.home .header__link {
  color: #fff;
}

body.single .header__link {
  color: #1a1a1a;
}

.single__article {
  margin-bottom: 60px;
}

.single__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.single__date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.single__thumb img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.single__content {
  font-size: 1rem;
  line-height: 1.8;
}

body.single .header,
body.single .footer {
  display: none;
}

body.page-template-page-news .header,
body.page-template-page-news .footer {
  display: none;
}

.single-post {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.single-post__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.single-post__date {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
  display: block;
}
.single-post__thumb {
  margin-bottom: 2rem;
}
.single-post__thumb img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-post__content {
  line-height: 1.8;
  font-size: 1rem;
}
.single-post__content p {
  margin-bottom: 1.5rem;
}

.pagination {
  text-align: center;
  margin-top: 3rem;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 0.5em 1em;
  border: 1px solid #8b1d20; /* メインカラーに合わせる */
  border-radius: 9999px;
  color: #8b1d20;
  text-decoration: none;
  font-size: 0.9rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.pagination .page-numbers:hover {
  background-color: #8b1d20;
  color: #fff;
}

.pagination .current {
  background-color: #8b1d20;
  color: #fff;
  font-weight: bold;
  cursor: default;
}

.schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.schedule__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.schedule__date {
  font-weight: bold;
  font-size: 1.2rem;
  white-space: nowrap;
  color: #222;
}

.schedule__event {
  font-size: 1rem;
  color: #333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}

.schedule__location {
  font-size: 0.95rem;
  color: #666;
  min-width: 150px;
}

/* イベントページだけでヘッダー・フッターを非表示にする */
body.tribe-events-page-template header,
body.tribe-events-page-template footer {
  display: none;
}

.tribe-events-c-top-bar__datepicker {
  display: none;
}