@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #333333;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

a:hover {
  opacity: 0.8;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: auto; /*JSにて.animate()するときは、同時使用はバッティングを避けるためauto*/
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

small {
  font-size: initial;
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1130px;
    padding-inline: 25px;
  }
}

/*アンカーリンクの遷移先がヘッダーに被らないようにするCSS*/
html {
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
  scroll-padding-top: 5rem;
}

.header {
  height: 5rem;
  background-color: #d6eaf5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}

.header__logo {
  width: 8.75rem;
  height: inherit;
  z-index: 9999;
}
@media screen and (min-width: 780px) {
  .header__logo {
    width: 11.25rem;
  }
}

.header__logo-link {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav {
  height: inherit;
}

.header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  height: inherit;
}

.header__nav-item {
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /*contactボタンを上下中央揃えにするCSS*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /*contactボタンを上下中央揃えにするCSS*/
}

.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-family: "Josefin Sans", sans-serif;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__nav-link:hover {
  color: #1e50a2;
  font-weight: 700;
}

.header__nav-btn {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background-color: #436fb3;
  border-radius: 0.625rem;
  padding: 0.5rem 0.8125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__nav-btn:hover {
  color: #333333;
}

.header__x-icon {
  width: 1.25rem;
}
@media screen and (min-width: 780px) {
  .header__x-icon {
    width: 1.5rem;
  }
}

/*ファーストビューのCSS*/
.fv {
  position: fixed;
  top: 5rem;
  left: 0px;
  right: 0px;
  z-index: -1;
}

.fv__img {
  aspect-ratio: 1954/1328;
  width: 100%;
  margin: 0 auto;
  max-height: calc(100vh - 5rem);
}

.fv__img img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/*ハンバーガーメニューボタンのCSS*/
.hamburger {
  z-index: 9999;
  width: 1.4375rem;
  padding: 0;
}

.hamburger span {
  background-color: #1e50a2;
  display: block;
  height: 0.125rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
  width: 1.625rem;
}

.hamburger span:nth-child(2) {
  margin-top: 0.5625rem;
  margin-bottom: 0.5625rem;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.9375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

/*スマホメニューのCSS*/
.sp-nav {
  background-color: #d6eaf5;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
  overflow-y: auto;
}
@media screen and (min-width: 780px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav__items {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  padding-top: 7.5rem;
}

.sp-nav__item {
  text-align: center;
}

.sp-nav__item img {
  display: block;
  margin-inline: auto;
}

.sp-nav__item-link {
  font-size: 1.25rem;
  color: #1e50a2;
  display: block;
  font-weight: 700;
}

.is-openSP {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/*バナースライダーセクションのCSS*/
.banner {
  background-color: #ffffff;
}

.banner__artist {
  background-color: #436fb3;
  width: 100%;
}

.banner__artist img {
  width: 15rem;
  padding: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .banner__artist img {
    width: 24rem;
    padding: 1.25rem;
  }
}

.banner__slider {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .banner__slider {
    margin-top: 6.25rem;
  }
}

.banner__slider-shadow {
  -webkit-box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.4);
          box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.4);
  margin: 0.5rem;
  background-color: #ffffff;
}

.banner__slider-wrapper img {
  aspect-ratio: 319/128;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/*TOPICSセクションの上部の余白*/
.section-topics {
  padding-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .section-topics {
    padding-top: 6.25rem;
  }
}

/*TOPICSセクションのCSS*/
.topics {
  background-color: #ffffff;
}

.topics__item {
  padding: 1rem;
}
@media screen and (min-width: 780px) {
  .topics__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}

.topics__img {
  max-width: 25rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .topics__img {
    width: 6.25rem;
  }
}

.topics__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.topics__text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .topics__text-area {
    width: calc(100% - 6.25rem - 2rem);
    margin-top: 0;
  }
}

.topics__title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 1rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .topics__title {
    font-size: 1.25rem;
  }
}

.topics__text-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.topics__link {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-left: auto;
  position: relative;
  font-size: 0.875rem;
  color: #333333;
  width: 5rem;
  height: 2.25rem;
  border-bottom: 2px solid #436fb3;
  border-radius: 2px;
  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;
  -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: 780px) {
  .topics__link {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.topics__link::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 2px;
  background-color: #436fb3;
  bottom: 0.5px;
  right: -1px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-radius: 2px;
}

.topics__link:hover {
  -webkit-transform: translateX(8px);
          transform: translateX(8px); /* 右に8px移動 */
}

.topics__text-bottom {
  display: contents;
}
@media screen and (min-width: 780px) {
  .topics__text-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.topics__btn {
  margin-top: 2rem;
  text-align: center;
}

.topics__pagination {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .topics__pagination {
    margin-top: 2.5rem;
  }
}

.topics__footer {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .topics__footer {
    margin-top: 6.25rem;
  }
}

/*セクション共通のタイトルのCSS*/
.section-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.75rem;
  color: #1e50a2;
  line-height: 1;
  letter-spacing: 0.2em;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(51, 51, 51, 0.2);
}
@media screen and (min-width: 780px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-title::after {
  content: attr(data-ja); /* ← data-ja属性の中身を表示 */
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.75rem;
  color: #1e50a2;
}
@media screen and (min-width: 780px) {
  .section-title::after {
    font-size: 0.875rem;
  }
}

/*カテゴリーのCSS*/
.category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category__item {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #6da3b2;
  padding: 0.3125rem 1rem;
  border-radius: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*タグのCSS*/
/*日付ののCSS*/
.date {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.875rem;
  color: #333333;
}

/*ボタン共通のCSS*/
.btn {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  color: #fff;
  min-width: 9.375rem;
  border-radius: 30px;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  display: inline-block;
  text-align: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border 0.3s ease, -webkit-transform 0.3s ease;
}

.btn--blue {
  background-color: #6da3b2;
}

.btn--blue:hover {
  background-color: #ffffff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  color: #1e50a2;
  border: 1px solid #e5e5e5;
}

/*MEMBERのCSS*/
.member {
  background-color: #ffffff;
}

.members__cards {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  -ms-grid-columns: 1fr 1.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .members__cards {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    margin-top: 5rem;
  }
}

.member-card {
  padding: 1rem;
}

.member-card__img {
  display: block;
  aspect-ratio: 1/1;
}

.member-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.member-card__name {
  margin-top: 1rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.125rem;
  color: #1e50a2;
  line-height: 1;
  letter-spacing: 0.2em;
  font-style: italic;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(51, 51, 51, 0.2);
  font-weight: 700;
  display: block;
  text-transform: capitalize;
}
@media screen and (min-width: 780px) {
  .member-card__name {
    font-size: 2rem;
  }
}

.member-card__name::after {
  content: attr(data-ja); /* ← data-ja属性の中身を表示 */
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.75rem;
  color: #1e50a2;
}
@media screen and (min-width: 780px) {
  .member-card__name::after {
    font-size: 0.875rem;
  }
}

/*MEMBER上部の余白*/
.section-menber {
  padding-top: 3.75rem;
  padding-bottom: 6.75rem;
}
@media screen and (min-width: 780px) {
  .section-menber {
    padding-top: 6.25rem;
    padding-bottom: 13.25rem;
  }
}

/*MEMBERモーダルのCSS*/
.member-modal {
  display: none;
}

.member-modal.is-open {
  display: block;
}

.member-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  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;
  z-index: 10000;
}

.member-modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10001;
  background-color: #ffffff;
  border-radius: 10px;
  max-width: 100%;
  width: 90%;
  max-height: 90vh; /* 古いブラウザ用のフォールバック */
  max-height: 90svh; /* 新しいブラウザ優先 */
  padding: 2rem;
  overflow-y: auto;
}
@media screen and (min-width: 780px) {
  .member-modal__content {
    padding: 2rem;
    max-width: 50rem;
    width: 100%;
  }
}

@-webkit-keyframes ModalfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ModalfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ModalfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ModalfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.member-modal[aria-hidden=false] .member-modal__content,
.member-modal[aria-hidden=false] .member-modal__overlay {
  -webkit-animation: ModalfadeIn 0.5s;
          animation: ModalfadeIn 0.5s;
}

.member-modal[aria-hidden=true] .member-modal__content,
.member-modal[aria-hidden=true] .member-modal__overlay {
  -webkit-animation: ModalfadeOut 0.5s;
          animation: ModalfadeOut 0.5s;
}

.member-modal__close-btn {
  position: relative;
}

.member-modal__close-btn::before {
  position: absolute;
  content: "✕";
  top: 0;
  left: 70vw;
  color: #333333;
  width: 2.125rem;
  height: 2.125rem;
  font-size: 2.125rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 780px) {
  .member-modal__close-btn::before {
    left: 42.125rem;
  }
}

.member-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .member-modal__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.member-modal__img {
  width: 100%;
  max-width: 15.625rem;
  aspect-ratio: 1/1;
  height: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .member-modal__img {
    width: 20rem;
    max-width: 100%;
  }
}

.member-modal__img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  height: 100%;
}

.member-modal__profile {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .member-modal__profile {
    width: calc(100% - 21.875rem - 2rem);
  }
}

.member-modal__profile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #6da3b2;
  padding: 1rem;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .member-modal__profile-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.member-modal__profile-row dt {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .member-modal__profile-row dt {
    width: 40%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.member-modal__profile-row dd {
  width: 100%;
  padding-left: 1em;
}
@media screen and (min-width: 780px) {
  .member-modal__profile-row dd {
    width: 60%;
  }
}

.member-modal__sns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .member-modal__sns-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.member-modal__sns {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.member-modal__sns img {
  display: block;
  width: 100%;
  height: 100%;
}

.member-modal__btn {
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  background-color: #6da3b2;
  color: #ffffff;
  margin-inline: auto;
  margin-top: 1.5rem;
  display: block;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.member-modal__btn:hover {
  opacity: 0.6;
}

/*カレンダーのCSS*/
.inner.schedule__inner {
  padding-top: 5.5rem;
}
@media screen and (min-width: 780px) {
  .inner.schedule__inner {
    padding-top: 6.5625rem;
  }
}

.section-title.schedule__title {
  margin-top: -11.5rem;
  padding-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .section-title.schedule__title {
    margin-top: -14.5rem;
  }
}

.schedule__content {
  width: 90%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 780px) {
  .schedule__content {
    width: 80%;
  }
}

.schedule__content::before {
  position: absolute;
  content: "";
  top: -3%;
  left: -3%;
  right: -3%;
  bottom: -3%;
  background-color: #ffffff;
  z-index: -1;
  border-radius: 20px;
}

.schedule__content iframe {
  width: 100%;
}

/*カレンダーセクションの余白*/
.section-schedule {
  padding-block: 5rem;
}
@media screen and (min-width: 780px) {
  .section-schedule {
    padding-block: 6.25rem;
  }
}

/*MOVIEセクションの余白*/
.section-movie {
  padding-block: 5rem;
}
@media screen and (min-width: 780px) {
  .section-movie {
    padding-block: 6.25rem;
  }
}

/*MOVIEセクションのCSS*/
.movie {
  background-color: #ffffff;
}

.movie__slider {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .movie__slider {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 780px) {
  .movie__slider:not(.is-slick) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.movie__slider-item {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 30rem;
}

.movie__slider-item.slick-center {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.movie__video {
  aspect-ratio: 560/315;
  width: 100%;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.movie__video iframe {
  width: 100%;
  height: 100%;
}

.movie__slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

.movie__slider-dots li button {
  font-size: 0;
}

.movie__slider-dots li button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #6da3b2;
  border-radius: 50%;
  cursor: pointer;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*フッターのCSS*/
.footer {
  background-color: #d6eaf5;
  padding-block: 2rem;
}
@media screen and (min-width: 780px) {
  .footer {
    padding-block: 3.75rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__logo {
  width: 8.75rem;
}
@media screen and (min-width: 780px) {
  .footer__logo {
    width: 12.5rem;
  }
}

.footer_privacy-policy {
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .footer_privacy-policy {
    margin-top: 0;
  }
}

.footer_privacy-policy a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .footer_privacy-policy a {
    font-size: 1.125rem;
  }
}

.footer__nav-sns {
  display: block;
  width: 1.5rem;
}

.footer__copyright {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.75rem;
  color: #333333;
  text-align: center;
  margin-top: 2rem;
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}

.page-footer {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .page-footer {
    margin-top: 6.25rem;
  }
}

/*下層ページfvのCSS*/
.page-fv {
  background: linear-gradient(135deg, #d6eaf5 0%, #c5bce4 100%);
  margin-top: 5rem;
  padding-block: 5rem;
}
@media screen and (min-width: 780px) {
  .page-fv {
    padding-block: 6.875rem;
  }
}

.page-fv__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2rem;
  color: #436fb3;
  text-align: center;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 780px) {
  .page-fv__title {
    font-size: 3rem;
  }
}

/*ContactページのCSS*/
.contact__contain {
  margin-top: 5rem;
}
@media screen and (min-width: 780px) {
  .contact__contain {
    margin-top: 6.25rem;
  }
}

.contact__footer {
  margin-top: 5rem;
}
@media screen and (min-width: 780px) {
  .contact__footer {
    margin-top: 6.25rem;
  }
}

/*ContactフォームのCSS*/
.contact-form {
  width: 100%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 780px) {
  .contact-form {
    width: 44.8125rem;
    max-width: 100%;
    gap: 3.3125rem;
  }
}

@media screen and (min-width: 780px) {
  .contact-form__item dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 780px) {
  .contact-form__item.contact-form__item-radio dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-form__item--top dl {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-form__label {
  color: #333333;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  padding-right: 1.125rem;
  cursor: pointer;
  display: inline-block;
}

.contact-form__input {
  width: 100%;
  padding: 0.6875rem 0.5rem;
  margin-top: 0.5rem;
  background-color: #EFEFEF;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (min-width: 780px) {
  .contact-form__input {
    width: 71.3%;
    padding: 0.6875rem 1.5rem;
    margin-top: 0;
  }
}

.contact-form__input input {
  cursor: pointer;
}

.contact-form__input-text {
  width: 100%;
}

.contact-form__textarea {
  height: 17.5rem;
  background-color: #EFEFEF;
  border-radius: 5px;
  resize: none;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .contact-form__textarea {
    height: 16.25rem;
  }
}

.contact-form__input-text::-webkit-input-placeholder {
  color: #595858;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

.contact-form__input-text::-moz-placeholder {
  color: #595858;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

.contact-form__input-text:-ms-input-placeholder {
  color: #595858;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

.contact-form__input-text::-ms-input-placeholder {
  color: #595858;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

.contact-form__input-text::placeholder {
  color: #595858;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

.contact-form__require {
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.contact-form__btn {
  margin-inline: auto;
}

.contact-form__input-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  margin-left: 10px;
}

.contact-form__input-radio span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  color: #333333;
}

.contact-form__input-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 1.5rem;
}

/* 擬似要素で丸をつくる */
/* チェック時の内側の丸 */
.contact-form__radio input[type=radio]:checked + span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #6da3b2;
  border-radius: 50%;
}

/* 外枠（未選択時の丸） */
.wpcf7-list-item label {
  position: relative;
  padding-left: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.wpcf7-list-item label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #595858;
  border-radius: 50%;
  background: #fff;
}

/* チェック時の内側の丸 */
.wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #6da3b2;
  border-radius: 50%;
}

.wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  margin-right: 1.5rem;
}

.wpcf7-list-item input[type=radio] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.wpcf7-spinner {
  display: none; /*デフォルトで入る不要な要素*/
}

/*トップページのTOPICSのCSS*/
.top-topics__items {
  border: 2px dashed #6da3b2;
  margin-top: 2rem;
}

.top-topics__item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

/*ページネーションのCSS*/
.pagination {
  text-align: center;
}

.pagination__items {
  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: 1rem;
}

.pagination__item .current {
  color: #1e50a2;
  font-weight: bold;
  text-decoration: none;
  pointer-events: none;
  border: 2px solid #1e50a2;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* 全てのページリンクに共通のスタイル */
.pagination__item .page-numbers {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  color: #1e50a2;
}

/*TOPICS詳細ページのCSS*/
.topics-detail__article {
  padding-top: 2.5rem;
}

.topics-detail__article-head {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #6da3b2;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}

.topics-detail__category-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.topics-detail__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.75rem;
  color: #1e50a2;
}

.topics-detail__date {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  color: #333333;
}

.topics-detail__thumbnail {
  margin-inline: auto;
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 560/380;
}
@media screen and (min-width: 780px) {
  .topics-detail__thumbnail {
    max-width: 45.625rem;
    aspect-ratio: 730/490;
  }
}

.topics-detail__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topics-detail__content {
  margin-top: 2.5rem;
  max-width: 43.75rem;
  width: 100%;
  margin-inline: auto;
}

.topics-detail__content p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  color: #333333;
}
@media screen and (min-width: 780px) {
  .topics-detail__content p {
    font-size: 1.125rem;
  }
}

/*TOPICS詳細ページの余白*/
.page-topics-detail {
  margin-top: 5rem;
}

/*下層ページのTOPICS独自のCSS*/
.page-topics__item {
  border-top: 1px solid #e5e5e5;
}

.page-topics__item:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.page-topics__content {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .page-topics__content {
    margin-top: 5rem;
  }
}

/*DISCOGRAPHYセクションの余白*/
.section-discography {
  padding-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .section-discography {
    padding-top: 6.25rem;
  }
}

/*DISCOGRAPHYセクションのCSS*/
.discography {
  background-color: #ffffff;
}

.discography__content {
  padding-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .discography__content {
    padding-top: 5rem;
  }
}

.discography__items {
  display: -ms-inline-grid;
  display: inline-grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media screen and (min-width: 780px) {
  .discography__items {
    grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr));
  }
}

.discography__item {
  aspect-ratio: 1/1;
}

.discography__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/*プライバシーポリシーの余白*/
.section-privacy-policy {
  margin-top: 7rem;
}
@media screen and (min-width: 780px) {
  .section-privacy-policy {
    margin-top: 12rem;
  }
}

/*プライバシーポリシーのCSS*/
.inner.privacy-policy__inner {
  max-width: 43.75rem;
}

.privacy-policy__content {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .privacy-policy__content {
    margin-top: 6.25rem;
  }
}

.privacy-policy__content h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-top: 1.5rem;
}

.privacy-policy__content p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  color: #333333;
  margin-top: 1.125rem;
}

/*トップへ戻るボタン*/
.to-top {
  width: 3.125rem;
  height: 3.125rem;
  position: fixed;
  bottom: 3rem;
  right: 5.33vw;
  background-color: #6da3b2;
  border-radius: 50%;
  z-index: 99;
}
@media screen and (min-width: 780px) {
  .to-top {
    width: 4.375rem;
    height: 4.375rem;
    right: 5.56vw;
    bottom: 4rem;
  }
}

.to-top__link {
  display: block;
  width: 100%;
  height: 100%;
}

.to-top__link {
  position: relative;
}

.to-top__link::before {
  content: "";
  position: absolute;
  top: calc(50% + 0.3rem);
  left: 50%;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 0.1875rem solid #ffffff;
  border-right: 0.1875rem solid #ffffff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 780px) {
  .to-top__link::before {
    border-top: 0.25rem solid #ffffff;
    border-right: 0.25rem solid #ffffff;
    width: 1.25rem;
    height: 1.25rem;
  }
}

/*サンクスページのCSS*/
.thanks {
  height: 100vh;
  background: linear-gradient(135deg, #d6eaf5 0%, #c5bce4 100%);
}

.inner.thanks__inner {
  max-width: 37.5rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thanks__content {
  text-align: center;
}

.thanks__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.5rem;
}
@media screen and (min-width: 780px) {
  .thanks__title {
    font-size: 2rem;
  }
}

.thanks__text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.0625rem;
}
@media screen and (min-width: 780px) {
  .thanks__text {
    font-size: 1.125rem;
  }
}

.thanks__btn {
  margin-top: 3.75rem;
}

.thanks__arc {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: auto;
  overflow: visible;
}

.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
/*# sourceMappingURL=styles.css.map */