@charset "utf-8";

/* 共通スタイル */
body {
  margin: 0;
  padding: 0;
  background: hsla(0, 0%, 100%, 1);
  text-box-trim: trim-both;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", "Roboto", sans-serif;

}

body.stop {
  overflow: hidden;
}

:root {
  --color-black: hsla(0, 0%, 0%, 1);
  --color-white: hsla(0, 0%, 100%, 1);
  --color-yellow: hsla(46, 67%, 54%, 1);
  --color-gold: hsla(46, 79%, 30%, 1);
  --color-silver: hsla(0, 0%, 20%, 1);
  --color-bronze: hsla(0, 0%, 47%, 1);
  --color-blue: hsla(213, 100%, 22%, 1);
  --color-koh-gray: hsla(0, 0%, 20%, 1);
  --s-val: 10px;
  --page-inline: calc(var(--s-val) * 5);
}

.font-roboto {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif, serif;
  letter-spacing: 0.03em;
}

.underline {
  -webkit-padding-after: calc(var(--s-val) * 0.7);
  padding-block-end: calc(var(--s-val) * 0.7);
  position: relative;
  /* text-box-trim: trim-both; */
}


.underline::before {
  content: "";
  width: 100%;
  height: 8px;
  background-color: var(--color-yellow);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}


.underline.thin {
  -webkit-padding-after: calc(var(--s-val) * 0.7);
  padding-block-end: calc(var(--s-val) * 0.7);
  position: relative;
  text-box-trim: trim-both;
}

.underline.thin::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--color-yellow);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.underline.tiny {
  -webkit-padding-after: calc(var(--s-val) * 0.7);
  padding-block-end: calc(var(--s-val) * 0.7);
  position: relative;
  text-box-trim: trim-both;
}

.underline.tiny::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-yellow);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

ul {
  text-decoration: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}


a {
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.container {
  padding: 0 13.095238095238097vw;
}

@media (max-width: 1120px) {
  .container {
    padding: 0 120px;
  }
}

@media (max-width: 990px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.sp {
  display: none;
}

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

/* =========================
 ヘッダー
============================*/
/* === ヘッダーに隠れる部分の調整 === */
.main {
  -webkit-padding-before: calc(var(--s-val) * 9);
  padding-block-start: calc(var(--s-val) * 9);
}

/* === g-header === */
.g-header {
  position: relative;
  z-index: 999;
  background: none;
  padding-block: calc(var(--s-val) * 2.2);
}

/* スクロールしたらヘッダーメニューのカラー変更 */
.g-header.headerColorScroll {
  background-color: hsla(0, 0%, 0%, 0.5);
  padding: 12px 50px 12px 110px;
  transition: padding 0.5s ease-out, background-color 0.5s ease-out;
}

@media (max-width: 1310px) {
  .g-header.headerColorScroll {
    padding: 12px 30px 12px 70px;
  }
}

@media (max-width: 990px) {
  .g-header.headerColorScroll {
    padding: 0;
    transition: background-color 0.5s ease-out;
  }
}

.g-header__container {
  color: var(--color-white);
}

.g-header__content {
  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: calc(var(--s-val) * 3);
}

.g-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(var(--s-val) * 5);
}

.g-header__logo {
  width: calc(var(--s-val) * 10.6);
}

@media (max-width: 1000px) {
  .g-header__logo {
    max-width: 90px;
  }
}

@media (max-width: 990px) {
  .g-header__logo {
    max-width: none;
  }
}

.g-header__logo--pc {
  transition: opacity .5s;
}

.g-header__logo--pc:hover {
  opacity: 0.6;
}

.g-header__logo--sp {
  display: none;
}

.g-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1310px) {
  .g-header__menu {
    gap: 16px;
  }
}

.g-header__menu-item.hamburger_sns {
  display: none;
}

.g-header__menu-link {
  line-height: 1.2em;
  display: inline-block;
  text-align: center;
  transition: opacity .5s;
}

.g-header__menu-link:hover {
  opacity: .6;
}


.g-header__menu-title {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--color-white);
}

@media (max-width: 1310px) {
  .g-header__menu-title {
    font-size: 14px;
  }
}

.nav_toggle {
  display: none;
}

/* === header追従 === */
/* 通常（phpでclass付与） */
.header-fixed {
  position: fixed;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-left: 110px;
  padding-right: 70px;
}

@media (max-width: 1310px) {
  .header-fixed {
    gap: 20px;
    padding-left: 70px;
    padding-right: 30px;
  }
}

/* jsで発火設定（phpでclass付与） */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* === SPのみ表示 === */
.header-sp {
  display: none;
}

.header-pc {
  display: block;
}


@media screen and (max-width: 990px) {

  /* === SPのみ表示 === */
  .header-sp {
    display: block;
  }

  .header-pc {
    display: none;
  }


  /* === hamburger === */
  body.scroll_lock {
    overflow: hidden;
  }

  .g-header {
    padding: 0;
  }

  .g-header__content {
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    pointer-events: none;
  }

  .g-header.is_open .g-header__content {
    opacity: 1;
    pointer-events: auto;
  }

  .g-header.is_open .g-header__nav-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hamburger-icon {
    cursor: pointer;
    width: calc(var(--s-val) * 3.7);
    height: calc(var(--s-val) * 2.2);
    margin: 0 0 0 auto;
    z-index: 999;
    position: absolute;
    top: calc(var(--s-val) * 2.4);
    right: calc(var(--s-val) * 2.5);
    --width: 100%;
    --height: 2px;
    --background-color: #fff;
  }

  .hamburger-icon::before,
  .hamburger-icon::after,
  .hamburger-icon__line {
    content: "";
    display: block;
    width: var(--width);
    height: var(--height);
    background-color: var(--background-color);
    position: absolute;
    -webkit-transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, transform 0.3s 0s;
    transition: opacity 0.3s 0s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
  }

  .hamburger-icon::before {
    top: auto;
    margin: auto;
  }

  .hamburger-icon::after {
    bottom: 0;
  }

  .hamburger-icon__line {
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .hamburger-icon.is_open {
    width: calc(var(--s-val) * 4.4);
    --move_pos: calc(var(--s-val) * 0.7);
  }

  .hamburger-icon.is_open .hamburger-icon__line {
    opacity: 0;
    -webkit-transform: translate(50%, 0px);
    transform: translate(50%, 0px);
  }

  .hamburger-icon.is_open::before {
    -webkit-transform: rotate(33deg) translate(var(--move_pos), var(--move_pos));
    transform: rotate(33deg) translate(var(--move_pos), var(--move_pos));
  }

  .hamburger-icon.is_open::after {
    -webkit-transform: rotate(-33deg) translate(var(--move_pos), calc(var(--move_pos) * -1));
    transform: rotate(-33deg) translate(var(--move_pos), calc(var(--move_pos) * -1));
  }

  /* === header UI (SP) === */
  .g-header {
    width: 100%;
    background-color: transparent;
  }

  .g-header .nav_toggle {
    display: block;
  }

  .g-header__container {
    padding: 0;

  }

  .g-header__logo {
    margin: 0;
    width: clamp(67px, 36.8vw, 138px);
  }

  .g-header__logo--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding: 13px 25px;
    transition: opacity 0.3s;
  }

  .g-header__logo--sp:hover {
    opacity: 0.6;
  }


  .g-header__logo a {
    display: inline-block;
  }

  .g-header__logo .image {
    width: clamp(138px, 36.8vw, 200px);
  }

  .g-header__content {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: calc(var(--s-val) * 0) calc(var(--s-val) * 4) calc(var(--s-val) * 19);
    -webkit-margin-before: -1px;
    margin-block-start: -1px;
    background-color: var(--color-koh-gray);
    position: fixed;
    overflow-y: scroll;


    top: 0;
    padding-top: 94px;
  }



  .g-header__content::-webkit-scrollbar {
    display: none;
  }

  .g-header__main {
    width: 100%;
    -webkit-margin-before: calc(var(--s-val) * 1.5);
    margin-block-start: calc(var(--s-val) * 1.5);

    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }

  .g-header__nav {
    width: 100%;
    margin-top: 15px;
  }

  .g-header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;

  }

  .g-header__menu-item {
    width: 100%;
    font-size: calc(var(--s-val) * 1.8);
    border-right: none;
    border-bottom: 1px solid var(--color-gray-light);
    padding: calc(var(--s-val) * 2) 0;
    text-align: center;
  }

  .g-header__menu-item:first-of-type {
    border-left: none;
    text-align: center;

    padding: 15px 0;
  }

  .g-header__menu-link {
    text-align: left;
    color: var(--color-white);
  }

  .g-header__menu-title {
    font-size: 18px;
  }

  .g-header__menu-item.hamburger_sns {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
  }

  .hamburger_sns_link {
    max-width: 48px;
  }
}


/* === header 右側SNSリンク === */
.g-header__sns {
  display: flex;
  gap: 18px;
  align-items: center;
}

@media (max-width: 1310px) {
  .g-header__sns {
    gap: 12px;
  }
}

@media (max-width: 990px) {
  .g-header__sns {
    display: none;
  }
}

.header__sns_right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header_sns_text {
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  text-align: right;
  text-box-trim: trim-both;
  text-align: left;
}

@media (max-width: 1310px) {
  .header_sns_text {
    font-size: 14px;
  }
}

@media (max-width: 1015px) {
  .header_sns_text {
    font-size: 13px;
  }
}

@media (max-width: 1310px) {
  .header_sns_arrow {
    max-width: 164px;
  }
}

@media (max-width: 1000px) {
  .header_sns_arrow {
    max-width: 154px;
  }
}

.header_sns_link_container {
  display: flex;
  gap: 12px;
}

@media (max-width: 1310px) {
  .header_sns_link_container {
    gap: 8px;
  }
}

.header_sns_link {
  max-width: 48px;
  transition: opacity .4s;
}

.header_sns_link:hover {
  opacity: .6;
}

@media (max-width: 1310px) {
  .header_sns_link {
    max-width: 40px;
  }
}

@media (max-width: 1000px) {
  .header_sns_link {
    max-width: 32px;
  }
}

/* main */
.first_view {
  position: relative;
}

.background {
  width: 100%;
}

.main_logo {
  width: min(40.654761904761905vw, 683px);
  width: 40.654761904761905vw;
  position: absolute;
  top: 13%;
  right: 0;
  left: 0;
  margin: auto;
}

@media (max-width: 990px) {
  .main_logo {
    top: 13%;
    right: 0;
    left: 0;
    width: 86.13333333333333vw;
    height: auto;
  }
}

.main_text_container {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 29%;
}

@media (max-width: 990px) {
  .main_text_container {
    height: auto;
    text-align: center;
    position: absolute;
    top: 46%;
    right: 0;
    left: 0;
    bottom: 0;
  }
}

.main_text {
  color: var(--color-white);
  font-size: 42px;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 700;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  line-height: 1.6;
  position: relative;
  margin: 0 auto;
  text-shadow: 0px 5px 12px hsla(0, 0%, 0%, 0.8);
}

@media (max-width: 990px) {
  .main_text {
    font-size: 6.4vw;
  }
}

.date_img {
  width: 361px;
  width: min(21.48809523809524vw, 361px);
  height: min(34.226190476190474vw, 575px);
  position: absolute;
  bottom: 13%;
  left: 5%;
}

@media (max-width: 990px) {
  .date_img {
    width: 63.46666666666667vw;
    height: auto;
    top: 66%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}

/* toNext_and_message */

.toNext_and_message {
  background: var(--color-silver);
  padding: 14px 0 126px;
}

@media (max-width: 768px) {
  .toNext_and_message {
    padding: 51px 0 61px;
  }
}

.toNext_and_message_container {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: flex-end;
}

@media (max-width: 1480px) {
  .toNext_and_message_container {
    gap: 40px;
  }
}

@media (max-width: 1270px) {
  .toNext_and_message_container {
    gap: 20px;
    align-items: center;
  }
}

@media (max-width: 990px) {
  .toNext_and_message_container {
    flex-direction: column;
    gap: 64px;
    /* margin-top: 400px; */
    margin-top: 36.6vw;
  }
}

.to_next_text_wrapper {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  gap: 55px;
}

@media (max-width: 990px) {
  .to_next_text_wrapper {
    gap: 36px;
  }
}


.to_next_title {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.9;
  color: var(--color-white);
  text-box-trim: trim-both;
}

@media (max-width: 1480px) {
  .to_next_title {
    font-size: 28px;
  }
}

@media (max-width: 1270px) {
  .to_next_title {
    font-size: 24px;
  }
}

@media (max-width: 1125px) {
  .to_next_title {
    font-size: 20px;
  }
}

@media (max-width: 990px) {
  .to_next_title {
    font-size: 26px;
    text-align: center;
  }
}

.to_next_title.bottom {
  margin-top: 24px;
  max-width: 530px;
}

.to_next_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: var(--color-white);
  text-box-trim: trim-both;
  text-align: justify;
  letter-spacing: 0.09em;
}

@media (max-width: 1125px) {
  .to_next_text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .to_next_text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
  }
}

.message_wrapper {
  max-width: 480px;
  background: var(--color-bronze);
  padding: 56px 48px 48px;
}

@media (max-width: 1270px) {
  .message_wrapper {
    padding: 40px 36px 36px;
  }
}

@media (max-width: 990px) {
  .message_wrapper {
    padding: 36px 23px 23px;
    margin: 0 auto;
  }
}

.message_title {
  color: var(--color-white);
  font-size: 21px;
  font-weight: 700;
  line-height: 3.2;
  letter-spacing: 0.02em;
  text-align: center;
  text-box-trim: trim-both;
  margin-bottom: 34px;
}

@media (max-width: 1270px) {
  .message_title {
    margin-bottom: 24px;
  }
}

@media (max-width: 990px) {
  .message_title {
    font-size: 15px;
    margin-bottom: 22px;
  }
}

.message_movie {
  width: 384px;
  height: 216px;
}

@media (max-width: 1020px) {
  .message_movie {
    width: 320px;
    height: 180px;
  }
}

@media (max-width: 990px) {
  .message_movie {
    width: 256px;
    height: 144px;
  }
}

.apply_fixed {
  display: block;
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  width: 200px;
  height: 200px;
  border-radius: 999px;

  background: hsla(51, 74%, 54%, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 2px 5px 10px 0 hsla(0, 0%, 0%, 0.4);
  transition: background-color .5s;
}

.apply_fixed:hover {
  background-color: var(--color-black);
}

@media (max-width: 990px) {
  .apply_fixed {
    display: none;
  }
}

.apply_fixed_text {
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  text-align: center;
  text-box-trim: trim-both;
  transition: color .5s;
}

.apply_fixed:hover .apply_fixed_text {
  color: var(--color-white);
}

.apply_fixed_text::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url('../img/baseball_img.svg');
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 23px;
  margin: auto;
  transition: background-image .5s;
}

.apply_fixed:hover .apply_fixed_text::before {
  background-image: url('../img/button-icon_ball-blackline.webp');
}

/* about event */

.h-container {
  padding: 145px 0 117px;
}

@media (max-width: 768px) {
  .h-container {
    padding: 60px 0;
  }
}

.big_title {
  font-family: "Roboto", sans-serif;
  font-size: 92px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.8;
  text-align: center;
  position: relative;
}

@media (max-width: 1080px) {
  .big_title {
    font-size: 76px;
  }
}

@media (max-width: 820px) {
  .big_title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .big_title {
    font-size: 48px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .big_title {
    font-size: 40px;
  }
}

@media (max-width: 400px) {
  .big_title {
    font-size: 36px;
  }
}

.big_title_under {
  margin-top: 42px;
  font-size: 21px;
  line-height: 2.3;
  font-weight: 700;
  text-box-trim: trim-both;
  text-align: center;
}

@media (max-width: 920px) {
  .big_title_under {
    margin-top: 39px;
    font-size: 16px;
    line-height: 2.6;
  }
}

@media (max-width: 768px) {
  .big_title_under {
    margin-top: 10px;
  }
}

.about_event_container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 96px auto;
}

@media (max-width: 768px) {
  .about_event_container {
    gap: 80px;
    margin: 80px auto 120px;
  }
}

.about_event_wrapper {
  display: flex;
  gap: 80px;
  justify-content: center;
}

@media (max-width: 1230px) {
  .about_event_wrapper {
    gap: 40px;
    gap: min(3.2520325203252036vw, 40px);
  }
}

@media (max-width: 920px) {
  .about_event_wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.about_event_content {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

@media (max-width: 1230px) {
  .about_event_content {
    max-width: 400px;
  }
}

@media (max-width: 1100px) {
  .about_event_content {
    max-width: 365px;
  }
}

@media (max-width: 1075px) {
  .about_event_content {
    max-width: 315px;
  }
}

@media (max-width: 920px) {
  .about_event_content {
    margin: 0 auto;
    gap: 20px;
    max-width: none;
  }
}

.about_event_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-box-trim: trim-both;
}

@media (max-width: 1100px) {
  .about_event_title {
    font-size: 24px;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 920px) {
  .about_event_title {
    text-align: center;
    font-size: 30px;

  }
}

@media (max-width: 430px) {
  .about_event_title {
    font-size: 24px;
  }
}

.about_event_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-box-trim: trim-both;
  text-align: justify;

  letter-spacing: 0.08em;
}

/* point */

.point_box {
  margin: 0 auto;
}
.point_box_top {
display: flex;
max-width: 1081px;
margin: 0 auto;
}
@media (max-width: 990px) {
  .point_box_top {
flex-direction: column;
}
}

.point_box_top_inner {
  margin: 0 90px;
}
@media (max-width: 1150px) {
 .point_box_top_inner {
   margin: 0 40px;
  }
}
@media (max-width: 995px) {
.point_box_top_inner{
  margin: 0 32px;
}
}
@media (max-width: 990px) {
.point_box_top_inner{
  margin: 40px 0;
}
}


.border-top, .border-bottom {
  display: block;
  width: 1px;
  height: auto;
  background-color: var(--color-black);
  position: relative;
}
@media (max-width: 990px) {
  .border-top, .border-bottom {
width: 100%;
height: 1px;
}
}
.border-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
    background-color: var(--color-black);
    transform: rotate(0);
}

.border-top::after {
    content: "";
  position: absolute;
bottom: 0;
  right: -20px;
  width: 20px;
  height: 1px;
    background-color: var(--color-black);
    transform: rotate(0);
}
@media (max-width: 990px) {
.border-top::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -9px;
  width: 20px;
  height: 1px;
    background-color: var(--color-black);
    transform: rotate(90deg);
}

.border-top::after {
    content: "";
  position: absolute;
  top: 10px;
  right: -9px;
  width: 20px;
  height: 1px;
    background-color: var(--color-black);
    transform: rotate(90deg);
}
}

.border-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 1px;
    background-color: var(--color-black);
    transform: rotate(0);
}

.border-bottom::after {
    content: "";
  position: absolute;
bottom: 0;
  right: 0px;
  width: 20px;
  height: 1px;
    background-color: var(--color-black);
    transform: rotate(0);
}
@media (max-width: 990px) {
.border-bottom::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -9px;
  width: 20px;
  height: 1px;
    background-color: var(--color-black);
    transform: rotate(90deg);
}

.border-bottom::after {
    content: "";
  position: absolute;
  top: -10px;
  right: -9px;
  width: 20px;
  height: 1px;
    background-color: var(--color-black);
    transform: rotate(90deg);
}
}



.point_container {
  margin-top: 74px;
  display: flex;
  gap: 60px;
  align-items: baseline;
  justify-content: center;
}

@media (max-width: 1300px) {
  .point_container {
    gap: 40px;
  }
}

@media (max-width: 990px) {
  .point_container {
    flex-direction: column;
    margin-top: 40px;
    gap: 56px;
  }
}

.point_content {
  max-width: 420px;
  flex: 1;
}

@media (max-width: 990px) {
  .point_content {
    margin: 0 auto;
  }
}


.point_title {
  background: var(--color-black);
  padding: 33px 40px;
  min-height: 120px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 990px) {
.point_title {
  min-height: 160px;
}
}
.point_title_text {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-box-trim: trim-both;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media (max-width: 1230px) {
  .point_title_text {
    font-size: 20px;
  }
}

@media (max-width: 990px) {
  .point_title_text {
    font-size: 24px;
  }
}

.point_title_text_gold {
  color: var(--color-yellow);
}

.point_text {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  margin-top: 36px;
  text-box-trim: trim-both;
  text-align: justify;
}

@media (max-width: 990px) {
  .point_text {
    margin-top: 24px;
  }
}
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 35px solid transparent;
  border-left: 35px solid transparent;
  border-top: 30px solid #000000;
  border-bottom: 0;
  margin:  48px auto 64px;
}

.point_box_bottom_text {
  color: var(--color-black);
font-weight: 700;
font-size: 36px;
line-height: 1.3;
letter-spacing: 0.02em;
text-align: center;
}

@media (max-width: 1110px) {
.point_box_bottom_text{
  font-size: 28px;
}
}

@media (max-width: 570px) {
.point_box_bottom_text{
  font-size: 26px;
  line-height: 1.6;
}
}
.point_box_bottom_textUnderLine {
  position: relative;
}

.point_box_bottom_textUnderLine::before {
  content: "";
  width: 100%;
  height: 8px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 990px) {
  .point_box_bottom_textUnderLine::before {
  height: 6px;
}
}


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

/* common apply */
.common_apply_container {
  background: var(--color-silver);
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .common_apply_container {
    padding: 52px 0;
  }
}

.apply_text {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  color: var(--color-white);
  align-items: center;
  /* 線を上下中央 */
  display: flex;
  /* 文字と横線を横並び */
  justify-content: center;
  /* 文字を中央寄せ */
  text-box-trim: trim-both;
}

@media (max-width: 768px) {
  .apply_text {
    text-align: center;
    font-size: 18px;
    color: var(--color-white);
    align-items: center;
    /* 線を上下中央 */
    display: flex;
    /* 文字と横線を横並び */
    justify-content: center;
    /* 文字を中央寄せ */
  }
}

.apply_text::before,
.apply_text::after {
  background-color: var(--color-white);
  /* 線の色 */
  content: "";
  height: 3px;
  /* 線の高さ */
  width: 24px;
  /* 線の長さ */
}

@media (max-width: 768px) {

  .apply_text::before,
  .apply_text::after {
    background-color: var(--color-white);
    /* 線の色 */
    content: "";
    height: 2px;
    /* 線の高さ */
    width: 18px;
    /* 線の長さ */
  }
}


.apply_text::before {
  margin-right: 9px;
  /* 文字との余白 */
  transform: rotate(60deg);
  /* 傾ける */
}

.apply_text::after {
  margin-left: 9px;
  /* 文字との余白 */
  transform: rotate(-60deg);
  /* 傾ける */
}

.button_apply {
  display: inline-block;
  max-width: 540px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  text-box-trim: trim-both;
  color: var(--color-black);
  background: hsla(51, 74%, 54%, 1);
  padding: 40px 126px;
  margin-top: 14px;
  position: relative;
  transition: background-color.5s;
}

.button_apply:hover {
  background-color: var(--color-white);
}

@media (max-width: 768px) {
  .button_apply {
    margin-top: 16px;
    padding: calc(var(--s-val) * 2.6) calc(var(--s-val) * 4.6);
    font-size: calc(var(--s-val) * 1.9);
  }
}

.button_apply::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url('../img/baseball_img.svg');
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 40%;
  right: 40px;
  transition: background-image .5s;
}

.button_apply:hover::before {
  background-image: url('../img/button-icon_ball-gold.webp');
}


@media (max-width: 768px) {
  .button_apply::before {
    width: 16px;
    height: 16px;
    top: 42%;
    right: 16px;
  }
}

/* instructor */
.instructor {
  padding: 155px 0 150px;
}

@media (max-width: 768px) {
  .instructor {
    padding: 60px 0;
  }
}

.instructor_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: clamp(12px, 2.976190476190476vw, 50px);
  margin: 95px auto 0;
  max-width: 1240px;
}

@media (max-width: 1235px) {
  .instructor_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 1fr);
    gap: 50px;
    margin: 95px auto 0;
    max-width: 1240px;
  }
}

@media (max-width: 920px) {
  .instructor_list {
    display: flex;
    flex-direction: column;
    margin: 60px auto 0;
  }
}

.instructor_member {
  max-width: 380px;
  margin: 0 auto;
  cursor: pointer;
}

@media (max-width: 920px) {
  .instructor_member {
    width: 380px;
  }
}

@media (max-width: 440px) {
  .instructor_member {
    width: 335px;
  }
}

.instructor_member_top {
  background: hsla(0, 0%, 90%, 1);
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 15px 26px;
  height: 180px;
}

@media (max-width: 920px) {
  .instructor_member_top {
    height: auto;
  }
}

.instructor_face {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

@media (max-width: 1530px) {
  .instructor_face {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 1400px) {
  .instructor_face {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 920px) {
  .instructor_face {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 440px) {
  .instructor_face {
    width: 110px;
    height: 110px;
  }
}

.instructor_face img {
  border-radius: 50%;
}

.instructor_detail {
  max-width: 159px;
}

.instructor_name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-black);
  text-box-trim: trim-both;
}

@media (max-width: 1530px) {
  .instructor_name {
    font-size: 20px;
  }
}

@media (max-width: 1265px) {
  .instructor_name {
    font-size: 16px;
  }
}

@media (max-width: 920px) {
  .instructor_name {
    font-size: 24px;
  }
}

@media (max-width: 390px) {
  .instructor_name {
    font-size: 20px;
  }
}

.instructor_explain {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-black);
  margin-top: 14px;
  text-box-trim: trim-both;
}

@media (max-width: 1530px) {
  .instructor_explain {
    margin-top: 16px;
  }
}

@media (max-width: 1400px) {
  .instructor_explain {
    margin-top: 12px;
    font-size: 12px;
  }
}

@media (max-width: 920px) {
  .instructor_explain {
    margin-top: 24px;
    font-size: 14px;
  }
}

.instructor_member_middle {
  background: hsla(0, 0%, 20%, 1);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1500px) {
  .instructor_member_middle {
    padding: 28px 12px;
  }
}

@media (max-width: 920px) {
  .instructor_member_middle {
    padding: 28px 24px;
  }
}

@media (max-width: 430px) {
  .instructor_member_middle {
    padding: 28px 12px;
  }
}

@media (max-width: 390px) {
  .instructor_member_middle {
    gap: 8px;
  }
}

.instructor_member_middle_title {
  color: var(--color-white);
  font-size: 14px;
  line-height: 3;
  font-weight: 700;
  text-box-trim: trim-both;
}

.instructor_member_middle_text {
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  text-box-trim: trim-both;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1675px) {
  .instructor_member_middle_text {
    font-size: 18px;
  }
}

@media (max-width: 1565px) {
  .instructor_member_middle_text {
    font-size: 16px;
  }
}

@media (max-width: 1400px) {
  .instructor_member_middle_text {
    font-size: 14px;
  }
}

@media (max-width: 1400px) {
  .instructor_member_middle_text {
    width: auto;
  }
}

@media (max-width: 920px) {
  .instructor_member_middle_text {
    font-size: 18px;
  }
}

.instructor_member_middle_date {
  display: flex;
  gap: 10px;
}


.date_text {
  display: inline-block;
  border-radius: 999px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
  padding: 4px 30px;
  text-box-trim: trim-both;
}

@media (max-width: 1675px) {
  .date_text {
    font-size: 14px;
  }
}

@media (max-width: 1500px) {
  .date_text {
    padding: 4px 8px;
    font-size: 12px;
  }
}

@media (max-width: 990px) {
  .date_text {
    font-size: 16px;
    padding: 4px 16px;
  }
}

@media (max-width: 420px) {
  .date_text {
    font-size: 14px;
    padding: 4px 8px;
  }
}

.date_text.small_box {
  padding: 4px 20px;
}

@media (max-width: 1675px) {
  .date_text.small_box {
    padding: 4px 12px;
  }
}

@media (max-width: 920px) {
  .date_text.small_box {
    padding: 4px 20px;
  }
}

@media (max-width: 430px) {
  .date_text.small_box {
    padding: 4px 12px;
  }
}

.date_text.gold {
  color: var(--color-black);
  background: var(--color-yellow);
}

.date_text.black {
  background: var(--color-koh-gray);
  color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
}

.instructor_member_modal {
  background: hsla(0, 0%, 0%, 1);
  border: none;
  width: 100%;
  padding: 4px 0;
}

.instructor_member_modal_text {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
  position: relative;
  text-box-trim: trim-both;
  text-align: center;
}

.instructor_member_modal_text::before,
.instructor_member_modal_text::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 137px;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--color-white);
  transform-origin: calc(100% - 0.5px) 50%;
}

.instructor_member_modal_text::before {
  transform: rotate(45deg);
}

.instructor_member_modal_text::after {
  transform: rotate(-45deg);
}

@media (max-width: 1670px) {

  .instructor_member_modal_text::before,
  .instructor_member_modal_text::after {
    right: 120px;
  }
}

@media (max-width: 1540px) {

  .instructor_member_modal_text::before,
  .instructor_member_modal_text::after {
    right: 90px;
  }
}

@media (max-width: 1300px) {

  .instructor_member_modal_text::before,
  .instructor_member_modal_text::after {
    right: 70px;
  }
}

@media (max-width: 920px) {

  .instructor_member_modal_text::before,
  .instructor_member_modal_text::after {
    right: 120px;
  }
}

@media (max-width: 390px) {

  .instructor_member_modal_text::before,
  .instructor_member_modal_text::after {
    right: 110px;
  }
}

.small_title {
  font-size: 28px;
  text-align: center;
  line-height: 1.7;
  font-weight: 700;
  text-box-trim: trim-both;
  letter-spacing: 0.1em;
}


@media (max-width: 768px) {
  .small_title {
    font-size: 20px;
  }
}

/* company */
.company {
  padding-top: 148px;
  display: none;
}

@media (max-width: 920px) {
  .company {
    padding-top: 60px;
  }
}

.company_container {
  border: 1px solid hsla(0, 0%, 82%, 1);
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 78px;
}

@media (max-width: 920px) {
  .company_container {
    max-width: 315px;
    padding-top: 60px;
  }
}

.partner_company_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 840px;
  margin: 67px auto 54px;
}

@media (max-width: 920px) {
  .partner_company_list {
    gap: 20px;
    max-width: none;
    margin: 40px auto;
  }
}

.partner_company_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 920px) {
  .partner_company_container {
    flex-direction: column;
    gap: 20px;
  }
}

.partner_company_title {
  width: clamp(130px, 15.476190476190476vw, 260px);
  height: clamp(55px, 6.547619047619048vw, 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 920px) {
  .partner_company_title {
    width: 260px;
    height: 40px;
  }
}

.partner_company_title.gold {
  border: 1px solid var(--color-gold);
}

.partner_company_title.silver {
  border: 1px solid var(--color-silver);
}

.partner_company_title.bronze {
  border: 1px solid var(--color-bronze);
}

.partner_company_text {
  font-size: clamp(12px, 1.25vw, 21px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 2.3;
  text-box-trim: trim-both;
}

@media (max-width: 920px) {
  .partner_company_text {
    font-size: 18px;
    line-height: 2.7;
  }
}

.partner_company_text.gold {
  color: var(--color-gold);
}

.partner_company_text.silver {
  color: var(--color-silver);
}

.partner_company_text.bronze {
  color: var(--color-bronze);
}

.partner_companyName {
  background: hsla(0, 0%, 96%, 1);
  width: clamp(130px, 15.476190476190476vw, 260px);
  height: clamp(55px, 6.547619047619048vw, 110px);
  transition: opacity .5s;
}

.partner_companyName:hover {
  opacity: 0.6;
}

@media (max-width: 920px) {
  .partner_companyName {
    width: 260px;
    height: 110px;
  }
}

/* program */
.program {
  background: hsla(0, 0%, 90%, 1);
  padding: 136px 0;
}

@media (max-width: 920px) {
  .program {
    padding: 60px 0;
  }
}


.container_program {
  padding: 0 14.285714285714285vw;
}

@media (max-width: 1120px) {
  .container_program {
    padding: 0 120px;
  }
}

@media (max-width: 990px) {
  .container_program {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container_program {
    padding: 0 20px;
  }
}


.program_list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-top: 76px;
}

@media (max-width: 768px) {

  .program_list {
    gap: 40px;
    margin-top: 40px;
  }
}

.program_title_container {
  background: hsla(46, 67%, 54%, 1);
  padding: 43px 0;
}

@media (max-width: 768px) {
  .program_title_container {
    padding: 20px 0;
  }
}

.program_title {
  font-family: "Roboto", sans-serif;
  font-size: 42px;
  line-height: 0.5;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

@media (max-width: 768px) {
  .program_title {
    font-size: 24px;
  }
}

.program_title_day {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  margin-top: 26px;
}

@media (max-width: 768px) {
  .program_title_day {
    font-size: 18px;
    margin-top: 12px;
  }
}

.program_schedule {
  background: var(--color-white);
  padding: 70px 72px;
}

@media (max-width: 768px) {
  .program_schedule {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .program_img {
    width: 100%;
    overflow-x: scroll;
  }
}

@media (max-width: 768px) {
  .program_img img {
    min-width: 650px;
  }
}

/* price */
.price {
  padding-top: 128px;
}

@media (max-width: 768px) {
  .price {
    padding-top: 60px;
  }
}


.middle_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-box-trim: trim-both;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .middle_title {
    font-size: 24px;
  }
}

.price_container {
  max-width: 920px;
  margin: 74px auto 0;
  padding-bottom: 128px;
}

@media (max-width: 768px) {
  .price_container {
    padding-bottom: 60px;
  }
}

.ticket_detail {
  padding: 45px 0;
}


.ticket_detail.twoDays {
  background: var(--color-black);
  border-bottom: 1px solid var(--color-white);
}

.ticket_detail.oneDay {
  background: var(--color-koh-gray);
  border-bottom: 1px solid var(--color-white);
  display: none;
}

.t-shirt_detail {
  background: hsla(213, 100%, 22%, 1);
  padding: 40px 0;
}

.t-shirt_detail_wrapper {
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 920px) {
  .t-shirt_detail_wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.t-shirt_img {
  max-width: 188px;
}

.t-shirt_detail_textContainer {
  max-width: 323px;
}


.ticket_with_t-shirt_textContainer {
  display: flex;
  gap: 18px;
  align-items: center;
}

.ticket_with_t-shirt_textContainer.oneDay_t-shirt_price {
  display: none;
}

.ticket_with_t-shirt_title {
  text-align: center;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  text-box-trim: trim-both;
  padding: 0 16px;
  width: 84px;
  height: 32px;
  border: 1px solid var(--color-white);
  border-radius: 999px;
}

.price_title {
  color: var(--color-yellow);
  text-align: center;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ticket_with_t-shirt {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.price_text {
  color: var(--color-white);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 42px;
  line-height: 0.5;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 920px) {
  .price_text {
    font-size: 32px;
  }
}

.price_text.margin {
  margin-top: 24px;
}

.tax {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  text-box-trim: trim-both;
}

.archive_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .archive_wrapper {
    margin-top: 24px;
  }
}

.archive {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-box-trim: trim-both;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
}

.archive::after {
  position: absolute;
  content: "※";
  width: 18px;
  height: 18px;
  top: 2px;
  left: -3%;
}


@media (max-width: 990px) {
  .archive::after {
    left: 12%;
  }
}

@media (max-width: 990px) {
  .sp_none {
    display: none;
  }
}


/* event information */
.event_information {
  padding: 137px 0 103px;
}

@media (max-width: 768px) {
  .event_information {
    padding: 60px 0;
  }
}

.event_information_container {
  margin: 114px auto 0;
  display: flex;
  flex-direction: column;
  max-width: 920px;
}

@media (max-width: 768px) {
  .event_information_container {
    margin: 40px auto 0;
  }
}

.event_information_content {
  display: flex;
}

@media (max-width: 768px) {
  .event_information_content {
    flex-direction: column;
  }
}

.event_information_smallTitle {
  border-top: 1px solid hsla(0, 0%, 38%, 1);
  width: 160px;
  padding: 28px 0 28px 20px;
}

@media (max-width: 768px) {
  .event_information_smallTitle {
    width: auto;
    padding: 16px 0 0;
    border-top: 1px solid transparent;
  }
}

.event_information_smallTitle.last-child {
  border-bottom: 1px solid hsla(0, 0%, 38%, 1);
}

@media (max-width: 768px) {
  .event_information_smallTitle.last-child {
    border-bottom: none;
  }
}

.event_information_smallTitle_inner {
  color: hsla(0, 0%, 38%, 1);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  text-box-trim: trim-both;
}

.event_information_detailWrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 760px;
  border-top: 1px solid hsla(0, 0%, 82%, 1);
  padding: 28px 30px;
}

@media (max-width: 768px) {
  .event_information_detailWrapper {
    width: auto;
    padding: 16px 0;
  }
}

.event_information_detailWrapper.last-child {
  border-bottom: 1px solid hsla(0, 0%, 82%, 1);
}

@media (max-width: 768px) {
  .event_information_detailWrapper.last-child {
    border-bottom: none;
  }
}

.event_information_detailText {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  text-box-trim: trim-both;
  letter-spacing: 0.02em;
}

.event_information_detailText.name_listTop {
  display: contents;
}

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

.event_information_detailText.name_listBottom {
  display: contents;
}

@media (max-width: 768px) {
  .event_information_detailText.name_listBottom {
    padding-left: 10px;
    display: block;
  }

}

.event_information_detailText.admission {
  position: relative;
  padding-left: 16px;
}

.event_information_detailText.admission::after {
  position: absolute;
  content: "※";
  width: 16px;
  height: 16px;
  top: -2px;
  left: 0px;
}

.social_gathering {
  margin-top: 16px;
}



.event_information_detail_eventsNone {
  color: var(--color-black);
  pointer-events: none;
  letter-spacing: 0.02em;
}


.place_detail_container:last-child {
  margin-top: 24px;
}

.google_map {
  border: 1px solid hsla(213, 100%, 22%, 1);
  border-radius: 999px;
  padding: 4px 9px;
  color: hsla(213, 100%, 22%, 1);
  font-size: 11px;
  font-weight: 700;
  line-height: 2.5;
  text-box-trim: trim-both;
  transition: background-color, color .5s;
}

.google_map:hover {
  color: var(--color-white);
  background-color: hsla(213, 100%, 22%, 1);
}


.event_information_detailText_bold {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
  text-box-trim: trim-both;
}

@media (max-width: 768px) {
  .event_information_detailText_bold.name_list {
    position: relative;
    padding-left: 10px;
  }

  .event_information_detailText_bold.name_list::before {
    content: "";
    display: inline;
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--color-black);
    border-radius: 999px;
  }

}

.sp_name_list {
  display: none;
}

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

.event_information_detailText_bold.red {
  color: hsla(0, 100%, 50%, 1);
  position: relative;
  padding-left: 16px;
}

.event_information_detailText_bold.red::after {
  position: absolute;
  content: "※";
  width: 16px;
  height: 16px;
  top: -2px;
  left: 0px;
}

.address_link_container {
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 420px) {
  .address_link_container {
    flex-direction: column;
    align-items: baseline;
  }
}

.event_information_detailText.archive_text {
  position: relative;
  padding-left: 16px;
}

.event_information_detailText.archive_text::after {
  position: absolute;
  content: "※";
  width: 16px;
  height: 16px;
  top: -2px;
  left: 0px;
}

.event_apply_link {
  max-width: 322px;
  padding: 6px 34px 6px 21px;
  background: hsla(51, 74%, 54%, 1);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: background-color, color .5s;
  position: relative;
}

@media (max-width: 440px) {
  .event_apply_link {
    max-width: 250px;
    padding: 6px 24px 6px 11px;
  }
}

.event_apply_link:hover {
  background-color: var(--color-black);
}

@media (max-width: 768px) {
  .event_apply_link {
    margin: 0 auto;
  }
}

.event_apply_link_text {
  max-width: 322px;
  color: var(--color-black);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  text-box-trim: trim-both;
  letter-spacing: 0.02em;
  transition: background-color, color .5s;
}

@media (max-width: 440px) {
  .event_apply_link_text {
    font-size: 12px;
  }
}

.event_apply_link:hover .event_apply_link_text {
  color: var(--color-white);
}

.event_apply_link_text::before,
.event_apply_link_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--color-black);
  transform-origin: calc(100% - 0.5px) 50%;
}

@media (max-width: 440px) {

  .event_apply_link_text::before,
  .event_apply_link_text::after {
    top: 51%;
    right: 12px;
  }
}

.event_apply_link_text::before {
  transform: rotate(45deg);
}

.event_apply_link_text::after {
  transform: rotate(-45deg);
}

.event_apply_link:hover .event_apply_link_text::before {
  background-color: var(--color-white);
}

.event_apply_link:hover .event_apply_link_text::after {
  background-color: var(--color-white);
}

.event_information_detailAddress {
  pointer-events: none;
  color: var(--color-black);
}

.apply_btn_bottom {
  margin-top: 16px;
  position: relative;
  padding-left: 16px;
}

.apply_btn_bottom::after {
  position: absolute;
  content: "◎";
  width: 16px;
  height: 16px;
  top: -2px;
  left: 0;
}

.event_information_map {
  margin-top: 28px;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.event_information_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* faq */
.faq {
  padding-top: 137px;
}

@media (max-width: 768px) {
  .faq {
    padding-top: 60px;
  }
}

/* アコーディオン */
/* アコーディオンリスト全体を囲うタグ */
.accordion_wrapper {
  margin: 100px auto 135px;
  max-width: 920px;
}

@media (max-width: 768px) {
  .accordion_wrapper {
    margin: 40px auto 60px;
  }
}

/* 個々のアコーディオンリストを囲うタグ */
.accordion {
  margin: 0 auto;
  border-top: 1px solid hsla(0, 0%, 82%, 1);
  width: min(54.761904761904766vw, 920px);
}

@media (max-width: 768px) {
  .accordion {
    width: 84vw;
  }
}

.accordion:last-child {
  border-bottom: 1px solid hsla(0, 0%, 82%, 1);
}

/* アコーディオンのタイトル・内容 */

.faq__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 18px;
}

.faq__content.faq__content--q,
.faq__content.faq__content--a {
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 700;
}

.faq__content.faq__content--q {
  padding: 40px 0;
}

.faq__content.faq__content--a {
  padding-bottom: 40px;
}

.faq__content--a_wrapper {
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.faq__detail-text.answer {
  color: var(--color-black);
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  text-box-trim: trim-both;
  letter-spacing: 0.02em;
  max-width: none;
}

@media (max-width: 860px) {
  .faq__detail-text.answer {
    font-size: 13px;
  }
}

.faq__detail-listWrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.faq__detail-list {
  color: var(--color-black);
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  text-box-trim: trim-both;
  letter-spacing: 0.02em;
  padding: 2px 0;
  margin-top: 4px;
  position: relative;
  padding-left: 16px;
}

@media (max-width: 768px) {
  .faq__detail-list {
    font-size: 12px;
    padding-left: 12px;
  }
}

.address_link {
  color: var(--color-black);
  pointer-events: none;
}

.faq__detail-list::after {
  position: absolute;
  content: "●";
  width: 16px;
  height: 16px;
  top: -1px;
  left: 0;
}

@media (max-width: 860px) {
  .faq__detail-list::after {
    width: 12px;
    height: 12px;
  }
}

.faq__detail-text.attention {
  color: var(--color-black);
  font-size: 12px;
  line-height: 2;
  font-weight: 400;
  text-box-trim: trim-both;
  margin-top: 12px;
  padding-left: 12px;
  position: relative;
}

.faq__detail-text.attention::after {
  position: absolute;
  content: "※";
  width: 12px;
  height: 12px;
  top: -3px;
  left: 0px;
}


/* Qマーク */
.faq__content--q .faq__icon {
  background-color: var(--color-yellow);
}

.faq__content--a .faq__icon {
  background-color: var(--color-blue);
}

.faq__icon {
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  color: var(--color-white);
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 835px) {
  .faq__icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 660px) {
  .faq__icon {
    width: 30px;
    height: 30px;
  }
}


.faq__icon-text {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
  text-box-trim: trim-both;
}

@media (max-width: 835px) {
  .faq__icon-text {
    font-size: 18px;
  }
}

@media (max-width: 660px) {
  .faq__icon-text {
    font-size: 16px;
  }
}

.faq__detail-text {
  font-size: 21px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  text-box-trim: trim-both;
  letter-spacing: 0.02em;
}

@media (max-width: 1250px) {
  .faq__detail-text {
    font-size: 18px;
  }
}

@media (max-width: 1050px) {
  .faq__detail-text {
    font-size: 16px;
  }
}

@media (max-width: 940px) {
  .faq__detail-text {
    font-size: 15px;
    max-width: 350px;
  }
}

@media (max-width: 810px) {
  .faq__detail-text {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .faq__detail-text {
    max-width: none;
  }
}

@media (max-width: 580px) {
  .faq__detail-text {
    max-width: 230px;
  }
}

@media (max-width: 390px) {
  .faq__detail-text {
    max-width: 205px;
  }
}

/* アコーディオンのタイトル */
.faq__content.faq__content--q {
  cursor: pointer;
  background: var(--color-white);
  color: var(--color-koh-gray);
  position: relative;
}


/* アコーディオンの内容 */
.faq__content.faq__content--a {
  display: none;
  background: var(--color-white);
  color: var(--color-koh-gray);
}

/* アコーディオン横の回転する矢印 */
.faq__content.faq__content--q::after {
  position: absolute;
  display: block;
  content: '';
  top: 45%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(135deg);
  transform: rotate(135deg);
  transition: transform .5s ease-in-out;
}

/* アコーディオンが開いたとき */
.faq__content.faq__content--q.open::after {
  transform: rotate(-45deg);
  top: 45%;
}

.faq__detail .event_apply_link {
  margin-top: 20px;
}

.faq_apply_btn_bottom {
  margin-top: 16px;
  position: relative;
  padding-left: 16px;
}
@media (max-width: 860px) {
  .faq_apply_btn_bottom {
  padding-left: 13px;
}
}

.faq_apply_btn_bottom::after {
  position: absolute;
  content: "◎";
  width: 16px;
  height: 16px;
  top: -4px;
  left: 0;
}
@media (max-width: 860px) {

.faq_apply_btn_bottom::after {
  content: "◎";
  width: 13px;
  height: 13px;
  top: -3px;
}
}
.reference {
  margin-top: 16px;
}

.reference_ttl {
  color: var(--color-black);
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-box-trim: trim-both;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .reference_ttl {
    font-size: 13px;
  }
}

.reference_top_text {
  position: relative;
  padding-left: 16px;
}

@media (max-width: 860px) {
  .reference_top_text {
    padding-left: 13px;
  }
}

.reference_top_text::after {
  position: absolute;
  content: "○";
  width: 16px;
  height: 16px;
  top: -4px;
  left: 0;
}

@media (max-width: 860px) {
  .reference_top_text::after {
    content: "○";
    width: 13px;
    height: 13px;
    top: -4px;
  }
}

.reference_bottom_text {
  position: relative;
  padding-left: 32px;
}

@media (max-width: 860px) {
  .reference_bottom_text {
    padding-left: 26px;
  }
}

.reference_bottom_text::after {
  position: absolute;
  content: "●";
  width: 16px;
  height: 16px;
  top: -4px;
  left: 16px;
}

@media (max-width: 860px) {
  .reference_bottom_text::after {
    content: "●";
    width: 13px;
    height: 13px;
    top: -4px;
    left: 13px;
  }
}

/* footer */
.g-footer {
  background: var(--color-black);
  padding-top: 77px;
  z-index: 1;
}

@media (max-width: 990px) {
  .g-footer {
    padding: 94px 0 80px;

  }
}

.sns_title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
}

@media (max-width: 990px) {
  .sns_title {
    font-size: 20px;
  }
}

.sns_logo_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 36px auto 81px;
}

@media (max-width: 990px) {
  .sns_logo_link {
    flex-direction: column;
    margin: 40px 0;
  }
}

.sns_link {
  width: 240px;
  height: 80px;
  padding: 20px 40px;
  border-radius: 999px;
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  gap: 30px;
  transition: opacity .5s;
}

@media (max-width: 990px) {
  .sns_link {
    width: 220px;
    height: 64px;
    padding: 20px 40px;
    border-radius: 999px;
    border: 1px solid var(--color-white);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: opacity .5s;
  }
}

.sns_link:hover {
  opacity: 0.6;
}

.sns_link.x_logo img {
  width: 32px;
}

@media (max-width: 990px) {
  .sns_link.x_logo img {
    width: 28px;
  }
}

.sns_link.instagram img {
  width: 40px;
}

@media (max-width: 990px) {
  .sns_link.instagram img {
    width: 36px;
  }
}

.sns_link.youtube img {
  width: 40px;
}

@media (max-width: 990px) {
  .sns_link.youtube img {
    width: 32px;
  }
}

.sns_logo_link_inner {
  color: var(--color-white);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

.sns_logo_link_inner.x_inner {
  padding-left: 38px;
}

.sns_logo_link_inner.youtube_inner {
  padding-left: 10px;
}

.footer_company_title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 4;
  letter-spacing: 0.02em;
  text-align: center;
  display: none;
}

.footer_company_list_wrapper {
  margin: 36px auto 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  display: none;
}

.footer_company_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 690px;

}

.footer_company_img {
  width: 210px;
  height: 90px;
  background: hsla(0, 0%, 96%, 1);
  transition: opacity .5s;
}

.footer_company_img:hover {
  opacity: 0.6;
}

@media (max-width: 990px) {
  .footer_company_img {
    margin: 0;
    width: 143px;
    height: 54px;
  }
}

.footer_bottom {
  position: relative;
}

.footer_logo {
  display: block;
  margin: 70px auto 0;
  width: 166px;
  transition: opacity .5s;
}

@media (max-width: 768px) {
  .footer_logo {
    width: 126px;
  }
}

.footer_logo:hover {
  opacity: 0.6;
}



.footer_link_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 45px auto 0;

}

@media (max-width: 768px) {
  .footer_link_container {
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
  }
}

.footer_link {
  display: block;
  width: 292px;
  padding: 6px 34px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--color-white);
  border-radius: 999px;
  transition: opacity .5s;
  position: relative;
}

.footer_link:hover {
  opacity: 0.6;
}

.footer_link::before,
.footer_link::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 18px;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--color-white);
  transform-origin: calc(100% - 0.5px) 50%;
}

.footer_link::before {
  transform: rotate(45deg);
}

.footer_link::after {
  transform: rotate(-45deg);
}


.privacy {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-box-trim: trim-both;
  position: absolute;
  bottom: 26px;
  left: 46px;
}

@media (max-width: 990px) {
  .privacy {
    font-size: 13px;
    color: var(--color-white);
    position: static;
    display: block;
    text-align: center;
    padding: 42px 0 20px;
  }
}

.copyright {
  display: block;
  color: var(--color-white);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-box-trim: trim-both;
  padding: 38px 0 26px;
}

@media (max-width: 990px) {
  .copyright {
    padding: 32px 0 0;
  }
}

/* floating-banner */
.floating-banner {
  display: none;
}

@media (max-width: 990px) {
  .floating-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: hsla(51, 74%, 54%, 1);
    width: 100%;
    /* padding: 24px 0; */
    padding: 16px 0;
    display: flex;
    gap: 23px;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .floating-banner_text {
    color: var(--color-black);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-box-trim: trim-both;
  }

  .baseball_img {
    width: 12px;
    height: 12px;
    display: block;
  }
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  background-color: hsla(0, 0%, 0%, 0.6);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.modal_inner_wrapper {
  position: relative;

  width: min(54.761904761904766%, 920px);
}

@media (max-width: 920px) {
  .modal_inner_wrapper {
    width: max(80vw, 300px);
  }
}

@media (max-width: 920px) {
  .modal_inner {
    height: max(50vh, 500px);
  }
}

@media (max-width: 920px) {
  .modal__content_wrapper {
    height: max(50vh, 500px);
    overflow-y: auto;
    /*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;
    /*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
  }

  /*スクロールバー非表示（Chrome・Safari）*/
  .modal__content_wrapper::-webkit-scrollbar {
    display: none;
  }
}

.modal_content.top {
  padding: min(2.976190476190476vw, 50px) min(3.571428571428571vw, 60px) min(2.380952380952381vw, 40px) min(3.571428571428571vw, 60px);
  display: flex;
  gap: min(4.642857142857143vw, 78px);
  background: var(--color-white);
  height: min(39.8vh, 398px);
}

@media (max-width: 920px) {
  .modal_content.top {
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    height: auto;
  }
}

.modal_instructor {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.1904761904761905vw, 20px);
  justify-content: center;
  align-items: center;
}

@media (max-width: 920px) {
  .modal_instructor {
    align-items: center;
    flex-direction: row;
  }
}

.instructor_face.modal_inside {
  width: 180px;
  height: 180px;
}

@media (max-width: 920px) {
  .instructor_face.modal_inside {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 500px) {
  .instructor_face.modal_inside {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 390px) {
  .instructor_face.modal_inside {
    width: 100px;
    height: 100px;
  }
}

.instructor_explain_wrapper_modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 920px) {
  .instructor_explain_wrapper_modal {
    gap: 18px;
  }
}

.instructor_name.modal_inside {
  line-height: 1.4;
  font-size: clamp(20px, 1.7857142857142856vw, 30px);
  text-align: center;
}

@media (max-width: 920px) {
  .instructor_name.modal_inside {
    line-height: 2;
    font-size: 21px;
    text-align: left;
  }
}

.instructor_explain.modal_inside {
  line-height: 1.25;
  font-size: clamp(12px, 0.9523809523809524vw, 16px);
  margin-top: 0;
  text-align: center;
}

@media (max-width: 920px) {
  .instructor_explain.modal_inside {
    line-height: 1.4;
    font-size: 13px;
    margin-top: 0;
    text-align: left;
  }
}

@media (max-width: 450px) {
  .br_modal_explain {
    display: none;
  }
}


.instructor_activity_wrapper {
  overflow-y: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  width: min(32.5vw, 546px);
  max-height: 308px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*スクロールバー非表示（Chrome・Safari）*/
.instructor_activity_wrapper::-webkit-scrollbar {
  display: none;
}

@media (max-width: 920px) {
  .instructor_activity_wrapper {
    width: 100%;
    height: auto;
    overflow-y: visible;
    max-height: none;
  }
}

.instructor_activity_title {
  color: var(--color-white);
  background: var(--color-black);
  font-size: 14px;
  line-height: 2.5;
  padding: 9px 12px;
  text-box-trim: trim-both;
}

@media (max-width: 920px) {
  .instructor_activity_title {
    font-size: 13px;
    line-height: 2.8;
  }
}

.instructor_activity_text_wrapper {
  margin-top: 24px;
}

.instructor_activity_text {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  text-box-trim: trim-both;
  text-align: justify;
}

@media (max-width: 920px) {
  .instructor_activity_text {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
}


.instructor_activity_textBold {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-box-trim: trim-both;
}


.modal_content.bottom {
  background: var(--color-koh-gray);
  padding: min(2.380952380952381vw, 40px) min(3.571428571428571vw, 60px) min(2.976190476190476vw, 50px) min(3.571428571428571vw, 60px);
  height: 372px;
  height: min(37.2vh, 372px);
}

@media (max-width: 920px) {
  .modal_content.bottom {
    padding: 24px 28px 20px 28px;
    height: auto;
  }
}

.instructor_member_middle_title.modal_inside {
  text-align: center;
}

@media (max-width: 920px) {
  .instructor_member_middle_title.modal_inside {
    text-align: center;
    line-height: 3;
    font-size: 14px;
  }
}

.lecture_scroll {
  overflow-y: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  max-height: 216px;
}

.lecture_scroll::-webkit-scrollbar {
  display: none;
}

@media (max-width: 920px) {
  .lecture_scroll {
    overflow-y: visible;
    max-height: none;
  }
}

.modal_content_lectureWrapper {
  overflow-y: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

/*スクロールバー非表示（Chrome・Safari）*/
.modal_content_lectureWrapper::-webkit-scrollbar {
  display: none;
}

@media (max-width: 920px) {
  .modal_content_lectureWrapper {
    overflow-y: visible;
  }
}

.multiple {
  overflow-y: visible;
}


.modal_content_bottom_mainText {
  font-weight: 700;
  font-size: clamp(16px, 1.5476190476190477vw, 26px);
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  margin: min(1.7857142857142856vw, 30px) 0 min(1.1904761904761905vw, 20px);
  text-box-trim: trim-both;
}

@media (max-width: 920px) {
  .modal_content_bottom_mainText {
    margin: 36px 0 30px;
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 920px) {
  .br_modal_lectureTitle {
    display: none;
  }
}

.modal_content_bottom_text {
  color: var(--color-white);
  font-size: clamp(12px, 0.9523809523809524vw, 16px);
  line-height: 1.875;
  font-weight: 400;
  text-box-trim: trim-both;
  text-align: justify;
}

@media (max-width: 920px) {
  .modal_content_bottom_text {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* 閉じるボタン */
.modal__close-btn {
  z-index: 999;
  position: absolute;
  top: -2%;
  right: -4%;
  cursor: pointer;

}

@media (max-width: 1430px) {
  .modal__close-btn {
    right: -5%;
  }
}

@media (max-width: 990px) {
  .modal__close-btn {
    right: -6%;
  }
}

@media (max-width: 660px) {
  .modal__close-btn {
    right: -8%;
  }
}

@media (max-width: 430px) {
  .modal__close-btn {
    right: -10%;
  }
}


.lineClose {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  pointer-events: all;
}

@media (max-width: 430px) {
  .lineClose {
    width: 24px;
    height: 24px;
  }
}

.lineClose::before,
.lineClose::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  /* 棒の幅（太さ） */
  height: 3px;
  /* 棒の高さ */
  background: var(--color-white);
}

.lineClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lineClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 430px) {

  .lineClose::before,
  .lineClose::after {
    width: 24px;
  }
}

/* モーダルスライダーボタン */
.modal-prev {
  position: absolute;
  top: 50%;
  left: 17%;
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity .5s;
}

@media (max-width: 1280px) {
  .modal-prev {
    left: 12%;
  }
}

@media (max-width: 920px) {
  .modal-prev {
    width: 32px;
    height: 32px;
    left: 6%;
    z-index: 100;
  }
}

@media (max-width: 560px) {
  .modal-prev {
    width: 28px;
    height: 28px;
  }
}

.modal-prev img {
  width: 60px;
  height: 60px;
}

@media (max-width: 920px) {
  .modal-prev img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 560px) {
  .modal-prev img {
    width: 28px;
    height: 28px;
  }
}

.modal-next {
  position: absolute;
  top: 50%;
  right: 17%;
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity .5s;
}

@media (max-width: 1280px) {
  .modal-next {
    right: 12%;
  }
}

@media (max-width: 920px) {
  .modal-next {
    width: 32px;
    height: 32px;
    right: 6%;
    z-index: 100;
  }
}

@media (max-width: 560px) {
  .modal-next {
    width: 28px;
    height: 28px;
  }
}

.modal-next img {
  width: 60px;
  height: 60px;

}

@media (max-width: 920px) {
  .modal-next img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 560px) {
  .modal-next img {
    width: 28px;
    height: 28px;
  }
}

.modal-prev:hover {
  opacity: 0.6;
}


.modal-next:hover {
  opacity: 0.6;
}