@charset "UTF-8";
@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap';
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}
body a {
  opacity: 1;
  transition: opacity 0.3s ease;
  color: #000000;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
}
body a:hover {
  opacity: 0.6;
  color: #000000;
}
body h2 {
  font-weight: 700;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
body ul li {
  font-family: "Noto Sans JP", sans-serif;
}
body p {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

ul {
  padding-left: 0;
}
ul li {
  text-decoration: none;
  list-style: none;
}

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

@media (min-width: 768px) and (max-width: 1039px) {
  .hidden-tab {
    display: none;
  }
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  height: 80px;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
@media (max-width: 767px) {
  .header {
    height: 50px;
  }
}

.header_inner {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header_inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.header_inner .logo {
  width: 120px;
  margin-top: 20px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .header_inner .logo {
    width: 100px;
    margin-top: -5px;
    margin-left: 15px;
  }
}
.header_inner .logo a:hover {
  opacity: 1;
}
.header_inner .logo img {
  width: 100%;
  height: auto;
}

.header_nav {
  margin-left: auto;
  padding-right: 40px;
}
.header_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.header_nav ul li {
  margin-top: 10px;
  margin-right: 40px;
}
.header_nav ul li:last-child {
  margin-right: 0;
}
.header_nav ul li a {
  transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  color: #ffffff;
}
.header_nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #EB70A7;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.header_nav ul li a.is-active::after {
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .header_nav {
    display: none;
  }
}
@media (max-width: 767px) {
  .header_nav {
    display: none;
  }
}

#nav-bar {
  position: fixed;
  z-index: 400;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.6s;
}
@media (min-width: 1040px) {
  #nav-bar {
    display: none;
  }
}
#nav-bar.panelactive {
  right: 0;
  width: 50%;
}
#nav-bar.panelactive #nav-bar-list {
  /* ナビの数が増えた場合縦スクロール */
  position: fixed;
  z-index: 40;
  width: 100%;
  height: 100vh; /* 表示する高さ */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#nav-bar ul {
  position: absolute;
  z-index: 400;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  padding: 0;
}
#nav-bar ul li {
  list-style: none;
  text-align: center;
}
#nav-bar ul li:not(:last-child) {
  border-bottom: 1px solid #ffffff;
  width: 150px;
  margin: 0 auto;
}
#nav-bar ul li a {
  color: #ffffff;
  text-decoration: none;
  padding: 20px 0;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}

.open-close-btn {
  position: fixed;
  z-index: 600;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
@media (min-width: 1040px) {
  .open-close-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .open-close-btn {
    top: -3px;
    right: 0px;
  }
}
.open-close-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 45%;
}
.open-close-btn span:nth-of-type(1) {
  top: 22px;
}
.open-close-btn span:nth-of-type(2) {
  top: 31px;
}
.open-close-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-30deg);
  width: 50%;
}
.open-close-btn.active span:nth-of-type(2) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(30deg);
  width: 50%;
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.start {
  background-image: url("../img/start_logo_pc.webp");
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 9000;
}
@media (max-width: 767px) {
  .start {
    background-image: url("../img/start_logo_sp.webp");
  }
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-45%, -65%);
  display: none;
  z-index: 9999;
  width: 360px;
}
@media (max-width: 767px) {
  .start p {
    width: 60%;
  }
}

.top {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.top .top-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top .top-content h1 {
  margin: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top .top-content h1 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top .top-read {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 50px;
  height: auto;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .top .top-read {
    width: 42px;
  }
}
@media (max-width: 767px) {
  .top .top-read {
    width: 42px;
  }
}
.top .top-read img {
  width: 100%;
  height: auto;
}
.top .scrolldown {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 130px;
  height: auto;
  cursor: pointer;
}
.top .scrolldown img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.top .scrolldown:hover img {
  transform: translateY(15px);
}

section h4 {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
}
section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-top: -22px;
  margin-bottom: 42px;
}
section .titile_ribbon {
  position: relative;
  width: 300px;
  height: auto;
  margin: 0 auto;
}
section .titile_ribbon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.pd-tp30 {
  padding-top: 30px;
}

.pd-bt30 {
  padding-bottom: 30px;
}

.pd-bt50 {
  padding-bottom: 50px;
}

.fade-in {
  opacity: 0;
  transition: opacity 2s ease;
}
.fade-in.active {
  opacity: 1;
}

.title-color {
  background-color: #C79F62;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  padding: 5px;
}

.information {
  padding-top: 30px;
  padding-bottom: 60px;
}
.information .information-item {
  max-width: 450px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 30px;
}
.information .information-content {
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 767px) {
  .information .information-content {
    gap: 30px;
    width: 90%;
  }
}
.information .information-content .card {
  width: 200px;
  height: auto;
  text-align: center;
  position: relative;
}
.information .information-content .card .card-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}
.information .information-content .card .card-image:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.information .information-content .card .item-text .new-icon {
  display: inline-block;
  background-color: #EB70A7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 0 10px;
  border-radius: 999px;
  line-height: 18px;
  position: relative;
  top: -1px;
  margin-right: 5px;
}
.information .information-content .card .item-text .title-caption {
  text-align: center;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 900;
}
.information .information-content .card .item-text p {
  text-align: justify;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 5px;
}

.information {
  text-align: center;
}
.information .modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.information .modal .modal-content {
  background-color: #ffffff;
  border-radius: 3px;
  padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  position: absolute;
  max-height: 80vh;
  overflow-y: auto;
  /* モーダルのクローズボタン */
  /* モーダルの画像 */
}
@media (max-width: 767px) {
  .information .modal .modal-content {
    background-color: #ffffff;
    padding: 20px;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    max-height: 70vh;
  }
}
.information .modal .modal-content .close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #000000;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.information .modal .modal-content .modal-image {
  width: 100%;
  height: 90%;
  /* モーダルの中のタイトル */
  /* モーダルの中のキャプション */
  /* モーダルの中のボタン */
}
@media (max-width: 767px) {
  .information .modal .modal-content .modal-image {
    width: 100%;
    height: 90%;
  }
}
.information .modal .modal-content .modal-image .title {
  font-size: 18px;
  font-weight: 700;
}
.information .modal .modal-content .modal-image .caption {
  text-align: justify;
  line-height: 1.5;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .information .modal .modal-content .modal-image .caption {
    width: 100%;
  }
}
.information .modal .modal-content .modal-image .caption2 {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  width: 450px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .information .modal .modal-content .modal-image .caption2 {
    width: 100%;
  }
}
.information .modal .modal-content .modal-image .caption3 {
  text-align: center;
}
@media (max-width: 767px) {
  .information .modal .modal-content .modal-image .caption3 {
    text-align: justify;
    line-height: 1.5;
  }
}
.information .modal .modal-content .modal-image img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.information .modal .modal-content .modal-image .modal-btn {
  margin: 0 auto;
  margin-bottom: 15px;
  width: 320px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 767px) {
  .information .modal .modal-content .modal-image .modal-btn {
    width: 100%;
  }
}
.information .modal .modal-content .modal-image .modal-btn:hover {
  background-color: #f0f0f0; /* ホバー時の背景色 */
}

.read .read-content {
  width: 100%;
  height: 100vh;
  background-image: url("../img/read_back_img.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.read .read-content .read-item {
  max-width: 700px;
  margin: 0 auto;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1039px) {
  .read .read-content .read-item {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .read .read-content .read-item {
    width: 80%;
  }
}
.read .read-content .read-item p {
  color: #ffffff;
}

.classlesson .classlesson-content {
  width: 100%;
  height: 100vh;
  background-image: url("../img/classlesson_back_img.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.classlesson .classlesson-content .classlesson-item {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .classlesson .classlesson-content .classlesson-item {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .classlesson .classlesson-content .classlesson-item {
    width: 80%;
  }
}
.classlesson .text {
  max-width: 700px;
  margin: 30px auto;
  text-align: justify;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .classlesson .text {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .classlesson .text {
    width: 80%;
  }
}
.classlesson .banner {
  max-width: 700px;
  margin: 30px auto;
}
.classlesson .banner .banner-inner a {
  display: flex;
  flex-wrap: wrap;
}
.classlesson .banner .banner-inner a img {
  display: block;
  width: 50%;
  margin: 0;
}
@media (max-width: 767px) {
  .classlesson .banner .banner-inner a img {
    width: 80%;
    margin: 0 auto;
  }
}
.classlesson .class-content .class-card .class-item-text .class-title {
  text-align: center;
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  margin: 0 auto;
  padding-top: 20px;
}
.classlesson .class-content .class-card .class-item-text span {
  display: block;
  border-bottom: 3px solid #C79F62;
  margin: 0px auto;
  width: 80px;
}
.classlesson .class-content .class-card .class-item-text .class-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
  padding-top: 20px;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .classlesson .class-content .class-card .class-item-text .class-text {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .classlesson .class-content .class-card .class-item-text .class-text {
    width: 80%;
  }
}

.schedule {
  margin: 50px 0;
}
.schedule .schedule-table {
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  line-height: 1.2;
  margin-top: 50px;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .schedule .schedule-table {
    width: 450px;
  }
}
@media (max-width: 767px) {
  .schedule .schedule-table {
    width: 80%;
  }
}
.schedule .schedule-table .td-border {
  border: 2px solid #C79F62;
  padding: 20px;
}
.schedule .schedule-table .td-border-left-right {
  border-left: none;
  border-right: none;
}
.schedule .schedule-table .td-border-top {
  border-top: 2px solid #C79F62;
  padding: 20px;
}
.schedule .schedule-table .td-border-middle {
  padding-bottom: 20px;
}
.schedule .schedule-table .td-border-bottom {
  border-bottom: 2px solid #C79F62;
  padding-bottom: 20px;
}
.schedule .schedule-table td:nth-child(2) {
  width: 300px;
}
.schedule .schedule-table td:nth-child(3) {
  width: 300px;
}
.schedule .fee {
  text-align: center;
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  margin: 0 auto;
  padding-top: 40px;
}

.instructor {
  margin: 50px 0;
}
.instructor .instructor-photo {
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .instructor .instructor-photo {
    margin-top: 0;
  }
}
.instructor .instructor-name1 {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  position: relative;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
}
.instructor .instructor-name2 {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 70px;
}
.instructor .profile {
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .instructor .profile {
    width: 80%;
  }
}
.instructor .instructor-record-content {
  text-align: justify;
  padding: 20px 0;
  margin-bottom: -20px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .instructor .instructor-record-content {
    width: 80%;
  }
}
.instructor .instructor-record-content .subtitle {
  background-image: url("../img/title_decoration_pink2.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 5px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}
.instructor .instructor-record-content .custom-table {
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .instructor .instructor-record-content .custom-table {
    line-height: 1.5;
  }
}
.instructor .instructor-record-content .custom-table td {
  border-bottom: 1px solid #C79F62;
  padding: 10px 0;
}
.instructor .instructor-record-content .custom-table td:first-child {
  width: 80px;
}

.archive .archive-photo-content {
  width: 100%;
  height: 100vh;
  background-image: url("../img/archive_back_img.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.archive .archive-photo-content .archive-item {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .archive .archive-photo-content .archive-item {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .archive .archive-photo-content .archive-item {
    width: 80%;
  }
}
.archive .archive-title-item {
  max-width: 450px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 30px;
}
.archive .archive-link {
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 767px) {
  .archive .archive-link {
    gap: 30px;
    width: 90%;
  }
}
.archive .archive-link .card {
  width: 200px;
  height: auto;
  text-align: center;
  position: relative;
}
.archive .archive-link .card .card-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}
.archive .archive-link .card .card-image:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.archive .archive-link .card .item-text p {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 5px;
}

.map {
  text-align: center;
  margin-top: 80px;
}
.map .map-content {
  max-width: 700px; /* 幅を変更 */
  height: 550px; /* 高さを変更 */
  margin: 0 auto;
}
@media (max-width: 767px) {
  .map .map-content {
    width: 80%;
    height: 450px;
  }
}
.map .map-content iframe {
  width: 100%;
  height: 100%;
}

.aboutus {
  padding: 30px;
  text-align: center;
}
.aboutus .aboutus-logo {
  padding-top: 30px;
  padding-bottom: 10px;
}
.aboutus .aboutus-logo a:hover {
  opacity: 1;
}
.aboutus .aboutus-logo img {
  width: 340px;
}
.aboutus .aboutus-sns {
  margin: 10px;
}
.aboutus .aboutus-sns img {
  height: 50px;
  width: auto;
  margin: 0 10px;
}
.aboutus .aboutus-text {
  padding-top: 30px;
}
.aboutus .aboutus-text h2 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: -10px;
}
.aboutus .aboutus-text h2 p {
  font-size: 16px;
}
.aboutus .return-btn {
  margin: 0 auto;
  margin-bottom: 15px;
  margin-top: 15px;
  width: 320px;
  background-color: #C79F62;
  padding: 10px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}
.aboutus .return-btn:hover {
  opacity: 0.7;
}
.aboutus .return-btn a {
  color: #ffffff;
}

.footer {
  background-color: #C79F62;
  color: #ffffff;
  font-size: 14px;
  padding: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    text-align: left;
  }
}

.totop {
  position: fixed;
  right: 15px;
  bottom: 160px;
  z-index: 199;
  visibility: visible;
  transition: all 0.3s ease 0s;
  display: none;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .totop {
    right: 15px;
    bottom: 160px;
  }
}
@media (max-width: 767px) {
  .totop {
    right: 15px;
    bottom: 150px;
  }
}
.totop.is-show {
  visibility: visible;
}
.totop a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.totop img {
  width: 55px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .totop img {
    width: 50px;
  }
}

.tosns {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 198;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .tosns {
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .tosns {
    right: 0;
    bottom: 0;
  }
}
.tosns.is-show {
  visibility: visible;
}
.tosns a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.tosns img {
  width: 150px;
  height: auto;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .tosns img {
    width: 140px;
  }
}

#memberPopup {
  font-family: "Noto Sans JP", sans-serif;
  display: none;
  width: 100%;
  overflow: auto;
  position: fixed;
  z-index: 600;
  left: 0;
  bottom: 0;
  right: 0;
}
#memberPopup .member-popup-content {
  background-color: #000000;
  opacity: 0.9;
  width: 100%;
  position: relative;
}
#memberPopup .member-popup-content .member-popup-header {
  text-align: center;
  padding-top: 10px;
  margin-top: -10px;
}
#memberPopup .member-popup-content .member-popup-header h2 {
  padding: 0;
  border-left: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
}
@media (max-width: 767px) {
  #memberPopup .member-popup-content .member-popup-header h2 {
    font-size: 1.1rem;
  }
}
#memberPopup .member-popup-body {
  padding: 0px 30px 20px 30px;
  color: #ffffff;
  margin-top: -10px;
  z-index: 500;
}
@media (max-width: 767px) {
  #memberPopup .member-popup-body {
    padding: 0px 15px 20px 15px;
  }
}
#memberPopup .member-popup-body .cookie-consent {
  text-align: center;
}
#memberPopup .member-popup-body .cookie-consent .cookie-text {
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  #memberPopup .member-popup-body .cookie-consent .cookie-text {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
#memberPopup .member-popup-body .cookie-consent .cookie-text a {
  color: #ffffff;
}
#memberPopup .member-popup-body .cookie-agree, #memberPopup .member-popup-body .cookie-reject {
  display: inline-block;
  border: none;
  width: 110px;
  padding: 3px;
  background-color: #ffffff;
  color: #000000;
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 999px;
}
@media (max-width: 767px) {
  #memberPopup .member-popup-body .cookie-agree, #memberPopup .member-popup-body .cookie-reject {
    padding: 0px;
    font-size: 0.8rem;
  }
}
#memberPopup .member-popup-body .cookie-agree:hover, #memberPopup .member-popup-body .cookie-reject:hover {
  background-color: #F3AECC;
  cursor: default;
}
#memberPopup .member-popup-body .cookie-agree {
  margin-right: 10px;
}

section .titile_ribbon_other {
  position: relative;
  width: 300px;
  height: auto;
  margin: 0 auto;
  padding-top: 60px;
}
section .titile_ribbon_other img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.other-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.other-top .other-top-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.other-top .other-top-content img {
  margin: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.other-top .other-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .other-top .other-title {
    font-size: 27px;
    width: 300px;
  }
}

.fade-in-other {
  opacity: 0;
  transition: opacity 1s ease;
}

.record {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .record {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .record {
    width: 85%;
  }
}
.record h2 {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
}
.record .record-tag {
  margin-top: 30px;
}
.record .record-tag ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.record .record-tag li {
  margin-right: 10px;
  margin-bottom: 15px;
}
.record .record-tag li:last-child {
  margin-right: 0;
}
.record .record-tag li .record-btn {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}
.record .record-tag li .record-btn:hover {
  background-color: #f0f0f0;
}
.record .record-content {
  text-align: justify;
  padding: 20px 0;
  margin-bottom: -20px;
}
.record .record-content .subtitle {
  background-image: url("../img/title_decoration_pink2.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 5px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}
.record .record-content .subtitle2 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .record .record-content .subtitle2 {
    line-height: 1.3;
  }
}
.record .record-content .custom-table {
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .record .record-content .custom-table {
    line-height: 1.5;
  }
}
.record .record-content .custom-table td {
  border-bottom: 1px solid #C79F62;
  padding: 10px 0;
  width: 700px;
}

.return {
  text-align: center;
  margin-top: 20px;
}
.return .return-btn {
  margin: 0 auto;
  margin-bottom: 15px;
  width: 320px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}
.return .return-btn:hover {
  background-color: #f0f0f0; /* ホバー時の背景色 */
}

.past {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .past {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .past {
    width: 85%;
  }
}
.past h2 {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.past .past-tag {
  margin-top: 30px;
}
.past .past-tag ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.past .past-tag li {
  margin-right: 10px;
  margin-bottom: 15px;
}
.past .past-tag li:last-child {
  margin-right: 0;
}
.past .past-tag li .record-btn {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}
.past .past-tag li .record-btn:hover {
  background-color: #f0f0f0;
}
.past .past-caption {
  text-align: justify;
  width: 450px;
  margin: 0 auto;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .past .past-caption {
    width: 100%;
  }
}
.past .past-content {
  text-align: justify;
  padding: 20px 0;
}
.past .past-content .subtitle {
  background-image: url("../img/title_decoration_pink2.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 5px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}
.past .past-content .two-column-container {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .past .past-content .two-column-container {
    display: block;
  }
}
.past .past-content .two-column-container .column {
  flex: 1;
  margin-right: 10px;
}
.past .past-content .two-column-container .column:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .past .past-content .two-column-container .column .text-content {
    text-align: center;
  }
}
.past .past-content .two-column-container .column .text-content .subtitle2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: -8px;
  margin-top: 0px;
  line-height: 1.5;
}
.past .past-content .two-column-container .column .text-content p {
  line-height: 1.5;
}
.past .past-content .two-column-container .column .text-content .past-btn {
  width: 230px;
  text-align: center;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .past .past-content .two-column-container .column .text-content .past-btn {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 230px;
  }
}
.past .past-content .two-column-container .column .text-content .past-btn:nth-of-type(2) {
  margin-top: -12px;
}
.past .past-content .two-column-container .column .text-content .past-btn:hover {
  background-color: #f0f0f0; /* ホバー時の背景色 */
}
.past .past-content .two-column-container .column .image-content {
  overflow: hidden;
}
.past .past-content .two-column-container .column .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.past-flyer {
  text-align: center;
}
.past-flyer .past-flyer-title {
  font-size: 18px;
  font-weight: 700;
}
.past-flyer .past-flyer-text {
  margin: 15px 0;
}

.concert-top .student_recruitment {
  background-image: url("../img/classlesson_back_img.jpg");
}
.concert-top .christmas-concert-2024 {
  background-image: url("../img/archive_back_img_christmas2024.jpg");
}
.concert-top .concert-2024 {
  background-image: url("../img/archive_back_img2024.jpg");
}
.concert-top .concert-2023 {
  background-image: url("../img/archive_back_img2023.jpg");
}
.concert-top .concert-2022 {
  background-image: url("../img/archive_back_img2022.jpg");
}
.concert-top .concert-2021 {
  background-image: url("../img/archive_back_img2021.jpg");
}
.concert-top .concert-2019 {
  background-image: url("../img/archive_back_img2019.jpg");
}
.concert-top .concert-2018 {
  background-image: url("../img/archive_back_img2018.jpg");
}
.concert-top .concert-2017 {
  background-image: url("../img/archive_back_img2017.jpg");
}
.concert-top .concert-2016 {
  background-image: url("../img/archive_back_img2016.jpg");
}
.concert-top .concert-2016summer {
  background-image: url("../img/archive_back_img2016summer.jpg");
}
.concert-top .concert-20153rd {
  background-image: url("../img/archive_back_img20153rd.jpg");
}
.concert-top .concert-20142nd {
  background-image: url("../img/archive_back_img20142nd.jpg");
}
.concert-top .concert-20141th {
  background-image: url("../img/archive_back_img20141st.jpg");
}
.concert-top .concert-photo-content {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.concert-top .concert-photo-content .concert-item {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .concert-top .concert-photo-content .concert-item {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .concert-top .concert-photo-content .concert-item {
    width: 80%;
  }
}

.concert-img .concert-wrap {
  display: flex;
  margin: 5px;
}
.concert-img .concert-wrap .concert-container {
  flex: 1;
  margin: 5px;
}
.concert-img .concert-wrap .concert-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .concert-img .concert-wrap {
    flex-direction: column;
    align-items: center;
    margin: 10px 5px;
  }
  .concert-img .concert-wrap .concert-container {
    flex: none;
    margin: 5px 10px;
  }
  .concert-img .concert-wrap .concert-container img {
    width: 100%;
    height: 100%;
  }
}
.concert-img .concert-wrap2 {
  display: flex;
  margin: -10px 5px 5px 5px;
}
.concert-img .concert-wrap2 .concert-container {
  flex: 1;
  margin: 5px;
}
.concert-img .concert-wrap2 .concert-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .concert-img .concert-wrap2 {
    flex-direction: column;
    align-items: center;
  }
  .concert-img .concert-wrap2 .concert-container {
    flex: none;
    margin: 5px 10px;
  }
}

.privacy {
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .privacy {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .privacy {
    width: 85%;
  }
}
.privacy h2 {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
}
.privacy .privacy-content {
  text-align: justify;
  padding: 20px 0;
  margin-bottom: -20px;
}
.privacy .privacy-content .subtitle {
  background: #C79F62;
  text-align: center;
  padding: 5px;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
}

.tickets {
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .tickets {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .tickets {
    width: 85%;
  }
}
.tickets h2 {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .tickets h2 {
    line-height: 1.5;
  }
}
.tickets .tickets-content {
  text-align: justify;
  padding: 20px 0;
  margin-bottom: -20px;
}
.tickets .tickets-content .subtitle {
  background: #C79F62;
  text-align: center;
  padding: 5px;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
}
@media (max-width: 767px) {
  .tickets .tickets-content .subtitle {
    line-height: 1.5;
  }
}
.tickets .tickets-content .container {
  display: flex;
  justify-content: space-around;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 30px;
}
.tickets .tickets-content .container .item {
  flex: 1;
  text-align: center;
}
.tickets .tickets-content .container .item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tickets .tickets-content .container .item a img {
  width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  .tickets .tickets-content .container .item a img {
    width: 50px;
  }
}
.tickets .tickets-content .container .item a span {
  margin-top: 8px;
}
.tickets .tickets-content-red .subtitle {
  background: #ff0000;
}
.tickets .tickets-content-red p {
  font-size: 18px;
  font-weight: 700;
}
.tickets .tickets-content-red p span {
  color: #ff0000;
  text-decoration: underline;
  text-decoration-thickness: 4px; /* 下線の太さを4pxに設定 */
  text-decoration-color: #ff0000; /* 下線の色を赤に設定（オプション） */
}
.tickets .mb-50 {
  margin-bottom: 50px;
}

.student-banner {
  max-width: 700px;
  margin: 30px auto;
}
.student-banner .student-banner-inner a {
  display: flex;
  flex-wrap: wrap;
}
.student-banner .student-banner-inner a img {
  display: block;
  width: 50%;
  margin: 0;
}
@media (max-width: 767px) {
  .student-banner .student-banner-inner a img {
    width: 100%;
    margin: 0 auto;
  }
}

.tickets-content .class-card-student {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .tickets-content .class-card-student {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tickets-content .class-card-student .class-card {
  background: #f1f1f1;
  border: none;
  border-radius: 6px;
}
.tickets-content .class-card-student .class-card h3 {
  font-size: 18px;
  text-align: center;
  margin: 15px 0 -10px;
}
.tickets-content .class-card-student .class-card span {
  display: block;
  width: 80px;
  border-bottom: 3px solid #C79F62;
  margin: 10px auto 0;
}
.tickets-content .class-card-student .class-card p {
  font-size: 15px;
  color: #555;
  text-align: justify;
  padding: 5px 20px;
}

.tickets .time-schedule {
  margin-top: 40px;
}

.tickets .modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.tickets .modal .modal-content {
  background-color: #ffffff;
  border-radius: 3px;
  padding: 60px 20px 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  position: absolute;
  max-height: 80vh;
  overflow-y: auto;
  /* モーダルのクローズボタン */
  /* モーダルの画像 */
}
@media (max-width: 767px) {
  .tickets .modal .modal-content {
    background-color: #ffffff;
    padding: 40px 5px 0;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    max-height: 70vh;
  }
}
.tickets .modal .modal-content .close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #000000;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 767px) {
  .tickets .modal .modal-content .close {
    right: 5px;
    top: -7px;
  }
}
.tickets .modal .modal-content .modal-image {
  width: 100%;
  height: 90%;
}
@media (max-width: 767px) {
  .tickets .modal .modal-content .modal-image {
    width: 100%;
    height: 90%;
  }
}

.external-icon {
  width: 14px;
  height: 14px;
  margin-left: 4px;
}

.ukraina-photo {
  margin-bottom: 1em;
}

.ukraina-photo img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 2枚の画像を横並びにする */
.ukraina-photo2 {
  display: flex;
  gap: 1em;
  margin-bottom: 3em;
}

.ukraina-photo2 img {
  width: calc(50% - 0.5em); /* 2枚並べてgapに合わせて調整 */
  height: auto;
  display: block;
}/*# sourceMappingURL=style.css.map */