@charset "utf-8";

/* ---------------------------------------------------
・このCSSはPCとSPの表示比率を合わせています。
・サイズの単位は原則remにしてください。1rem = 1vw換算です。
・rootセレクタ内で、色やサイズの設定を指定してください。
---------------------------------------------------- */

/* Header1
------------------------- */
.header1 h1 {
  margin: 0;
}

/*-----残数-------------------------------*/
.zansu {
  margin: 0 2rem;
  justify-content: center;
  padding: 8rem 0;
  overflow: hidden;
}

.zansu li {
  width: 22%;
  margin: 0.5rem 1rem;
  padding: 1rem 0 !important;
  font-size: 3rem;
  font-weight: bold;
  background: #fff !important;
  border-radius: 6px;
  text-align: center;
  line-height: 1.4;
}

.zansu li a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 2.7rem;
}

.zansu_area {
  background: #eee;
}

.zansu .flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* 赤点滅 */
.blinking {
  -webkit-animation: blink 0.6s ease-in-out infinite alternate;
  -moz-animation: blink 0.6s ease-in-out infinite alternate;
  animation: blink 0.6s ease-in-out infinite alternate;
  color: var(--red);
  font-size: 100%;
  font-weight: bold;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }
}

/*満席後の即時網掛け*/
/*.zansu*/
.zansu li.hatching {
  position: relative;
}

.zansu li.hatching::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #c8c8c899;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.zansu li.hatching::after {
  border-radius: 6px;
}


/*最新型の期日後の網掛け*/
/*.zansu*/
.zansu .hatching1 li.release,
.zansu .hatching2 li.release {
  pointer-events: none;
  position: relative;
}

.zansu .hatching1 li.release::after,
.zansu .hatching2 li.release::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #c8c8c899;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.zansu .hatching2 li.release {
  pointer-events: none;
  position: relative;
}

.zansu .hatching2 li.release::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #c8c8c899;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

/*.course_table*/
.course_table tr.hatching.release td::after {
  display: none;
}

.course_table tr.release td {
  pointer-events: none;
  background: #bbb;
  color: #dbd9d9;
}

.course_table tr.release .blinking {
  color: #dbd9d9;
}

/* mv_btn */
.mv_btn {
  text-align: center;
}

.mv_btn a {
  display: inline-block;
  background: #ddd;
  padding: 5px 20px;
  margin: 1rem auto 0;
  border-radius: 30px;
  font-size: 3.5rem;
  text-decoration: none;
  text-align: center;
  color: inherit;
}

/*-----------------------------------------------------
header
-----------------------------------------------------*/
.maintenance_txt {
  padding: 3rem 5rem;
  margin-bottom: 3rem;
  font-size: 3.5rem;
  background: #00903f;
  color: #fff;
}

/*-----------------------------------------------------
header_bottom
-----------------------------------------------------*/
#header_bottom {
  padding: 5rem 0;
}

.merit_icon {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 1rem;
}

.form_text-wrap {
  font-size: 3rem;
  text-align: center;
  padding: .9rem 1rem 1rem;
  width: 42%;
  border: 1px dotted var(--mainTxtColor);
  border-radius: 2rem;
  line-height: 1.3;
}

.form_text-wrap:nth-child(1) {
  width: 20%;
}

.form_text-wrap:nth-child(2) {
  width: 35%;
}

/*-----------------------------------------------------
tokuten
-----------------------------------------------------*/
#tokuten {
  padding: 8rem 0 10rem;
}

.tokuten_box_ttl_wrap {
  position: relative;
}

.tokuten_box_ttl_wrap img {
  position: absolute;
  width: 18rem;
  top: -5rem;
  left: 4rem;
}

.tokuten_box_ttl {
  padding: 2rem 5rem 2rem 26rem;
  background: var(--grad_blue3);
  color: #fff;
  font-weight: 700;
  font-size: 7rem;
  text-align: left;
}

.tokuten_box {
  padding: 9rem 5rem 8rem;
  background: #e5f8f8;
}

.tokuten_box_ttl2 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0 2rem;
  position: relative;
}

.tokuten_box_ttl2::before {
  content: '';
  position: absolute;
  background-image: url(../img/large_leaf_l.png);
  background-repeat: no-repeat;
  top: 1rem;
  left: -2.5rem;
  width: 100%;
  height: 100%;
  background-size: 14%;
}

.tokuten_box_ttl2::after {
  content: '';
  position: absolute;
  background-image: url(../img/large_leaf_r.png);
  background-repeat: no-repeat;
  top: 1rem;
  left: 71.5rem;
  width: 100%;
  height: 100%;
  background-size: 14%;
}

.two-lines::before {
  background-size: 11%;
}

.two-lines::after {
  background-size: 11%;
  left: 73rem;
}

.mark_r {
  background: var(--grad_gold2);
  padding: 0 2rem;
  margin-right: 2rem;
  border-radius: 2rem;
}

/*-----------------------------------------------------
intro
-----------------------------------------------------*/
#intro {
  background: url(../img/bg_intro.jpg);
  background-size: cover;
  padding: 10rem 0;
}

#intro .sub_head {
  font-size: 6rem;
}

/*-----------------------------------------------------
question
-----------------------------------------------------*/
#question {
  padding: 17rem 0 0;
  background: var(--mainTxtColor);
  color: #fff;
}

#question .sub_head {
  margin-bottom: 10rem;
}

.list1 {
  color: #fff;
  padding: 12rem 4rem 10rem;
  border-top: none;
  border-left: none;
  position: relative;
}

.list1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  width: 15rem;
  height: 15rem;
}

.list1::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  width: 15rem;
  height: 15rem;
}

.list1 li {
  position: relative;
  padding: 5rem 0 5rem 5.5rem;
  border-bottom: 1px dotted #fff;
  font-size: 4.3rem;
}

/* チェックボックス */
.list1 li::after {
  content: "";
  position: absolute;
  top: 6.9rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  border-radius: 2px;
}

.list1 li:first-child {
  padding-top: 0;
}

.list1 li:first-child::after {
  top: 1.9rem;
}

.list1 li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/*-----------------------------------------------------
seminar
-----------------------------------------------------*/
#seminar {
  padding: 0;
}

#seminar .sub_head {
  margin-bottom: 0;
}

/*----------------------------------------------
画像スライド
-----------------------------------------------*/
/* 共通 */
.slide {
  width: 100%;
  height: 30rem;
  /* PCデフォルトの高さ */
  background: url(../img/slide.jpg) repeat-x;
  background-size: auto 100%;
  animation: SlideAnime 70s linear infinite;
  margin: 0 auto 14rem;
}

/* アニメーション定義 */
@keyframes SlideAnime {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -2160px 0;
  }
}

/*-----------------------------------------------------
program
-----------------------------------------------------*/
#program {
  background: linear-gradient(0deg, #000, #414141);
  color: #fff;
}

.border_txt {
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border: 1px solid #fff;
  padding: 1rem;
}

.list2 {
  padding: 2rem 5rem;
  border: 1px solid var(--blue);
}

.list2 li {
  position: relative;
  padding: 5rem 0 5rem 6rem;
  border-bottom: 1px dotted #fff;
  font-size: 4.3rem;
}

.list2 li::before {
  content: "";
  position: absolute;
  top: 6.9rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  border-radius: 2px;
}

.list2 li::after {
  content: "";
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  width: 3.2rem;
  height: 1.2rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  left: 0.7rem;
  top: 6.8rem;
}

.list2 li:last-child {
  border-bottom: none;
}

#program .sub_head {
  font-size: 10rem;
  line-height: 1.3;
  margin-bottom: 0;
}

/*-----------------------------------------------------
experience
-----------------------------------------------------*/

.experience_box_ttl_wrap {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 3rem 0 3rem 2rem;
  background: #e5f8f8;
}

.experience_box_num {
  width: 16%;
  margin-right: 3rem;
}

.experience_box_ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 1.4;
}

.experience_box {
  margin-left: 8rem;
  padding: 8rem 0 16rem 5rem;
  border-left: 2px solid var(--blue2);
}

.experience_box_wrap:last-of-type .experience_box {
  padding-bottom: 6rem;
}

.special {
  background: var(--grad_gold);
  color: #fff;
  font-weight: 700;
  width: fit-content;
  padding: 1rem 5rem;
  border-radius: 2rem 2rem 0 0;
  text-shadow: 0 0 1rem #916200;
}

/*-----------------------------------------------------
btn_area1
-----------------------------------------------------*/
#btn_area1 {
  padding: 0 0 40rem;
}

/*-----------------------------------------------------
case
-----------------------------------------------------*/
#case {
  background: var(--black);
  position: relative;
  color: #fff;
  padding-top: 28rem;
  padding-bottom: 0;
  text-align: center;
}

#case .sub_head {
  margin-bottom: 0;
}

.next {
  position: absolute;
  top: -24rem;
  left: 27.5rem;
  width: 45rem;
  height: auto;
}

#case h3 {
  font-size: 8.5rem;
  font-weight: normal;
  line-height: 1.45;
  position: relative;
}

.case_box {
  padding-top: 15rem;
}

#case .number {
  position: relative;
  display: block;
}

#case .number::after {
  content: "";
  width: 32rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 6.8rem;
  left: 0;
}

#case .number::before {
  content: "";
  width: 32rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 6.8rem;
  right: 0;
}

#case h3::after {
  content: "";
  width: 90rem;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -4.1rem;
  right: 0;
}

#case h4 {
  margin-top: 12rem;
  font-size: 6.5rem;
  font-weight: normal;
  margin-bottom: 2.5rem;
}

#case .case_box h5 {
  padding: 2.5rem 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  background: #6E6E6E;
}

#case .before_box {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

#case .before_box p {
  padding: 3.5rem 0;
  color: #fff;
  background: #6E6E6E;
  font-weight: 600;
}

video {
  display: block;
}

.after_box {
  background: #fff;
  padding: 12rem 0 15rem;
}

.after_box h5 {
  background: var(--grad_blue3);
  padding: 2.5rem 0;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.after_box p {
  padding: 3.5rem 0;
  color: #fff;
  text-align: center;
  background: var(--grad_blue3);
}

/*-----------------------------------------------------
voice
-----------------------------------------------------*/
#voice {
  background: #c1c1c135;
  padding: 0 0 17rem;
}

#voice .sub_head {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

.voice_wrap {
  margin-top: 3rem;
}

.voice_box {
  padding: 7rem 5rem 10rem;
  background: #fff;
  box-shadow: 0 0 3rem #0000001d;
  margin-top: 10rem;
}

.voice_box:nth-of-type(1) {
  margin-top: 0;
}

.voice_box h3 {
  color: var(--red);
  font-size: 7rem;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 3rem;
}

.voice_box h3 .small-font {
  display: block;
  color: var(--black);
  font-size: 4.5rem;
  font-weight: 600;
}

.voice_box img {
  margin-bottom: 5rem;
}

.voice_box .number {
  font-size: 6rem;
  font-family: "Noto Serif JP", serif;
  color: #ccc;
}

/* アコーディオンエリアの設定 */
.ac_area {
  display: none;
  padding: 0 0 2rem;
}

.ac_inner:first-child {
  padding: 0rem;
}

/* フォームボタンの文言・アイコン */
.cta_btn:after {
  content: '+';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
}

.cta_btn.opened {
  border: 1px solid #333;
  color: #333;
}

.cta_btn.opened:before {
  content: '閉じる';
  font-size: 4.5rem;
  font-weight: 500;
}

.cta_btn.opened:after {
  content: 'ー';
  font-size: 4rem;
}

.cta_btn span {
  display: block;
  font-size: 4.5rem;
  font-weight: 500;
}

.cta_btn.opened span {
  display: none;
}

.cta_btn {
  display: block;
  width: 100%;
  background: none;
  color: var(--black);
  line-height: 1.2;
  padding: 3rem 0;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  font-family: inherit;
  border-radius: 40px;
  border: 1px solid var(--black);
  text-align: center;
}

.cta_btn:hover {
  filter: brightness(1.3);
}

.ac_area p {
  font-size: 4rem;
  line-height: 1.7;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 5rem;
}

.ac_area .r {
  font-weight: 700;
}

.ac_area .space {
  letter-spacing: -0.2em;
}

.bottom0 {
  margin-bottom: 0 !important;
}

/*-----------------------------------------------------
step
-----------------------------------------------------*/
#step {
  padding: 17rem 0 40rem;
  background: url(../img/bg_step.jpg);
  background-size: cover;
}

#step .sub_head {
  margin-bottom: 18rem;
}

.step_box_wrap {
  margin-bottom: 8rem;
}

.step_box_num {
  position: absolute;
  width: 18rem;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
}

.step_box_ttl {
  background: var(--grad_blue);
  color: #fff;
  font-size: 6rem;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  padding: 9rem 5rem 5rem;
  text-align: center;
}

.step_box_ttl_gold {
  background: var(--grad_gold);
  color: var(--red);
  font-size: 6.6rem;
  font-weight: 700;
  padding: 3rem 5rem;
  text-align: center;
  font-family: "Noto Serif JP", "serif";
}

.step_box {
  background-color: #fff;
  padding: 8rem 5rem;
}

.step_box_gold {
  background-color: #fffcf1;
  padding: 5rem;
  border-radius: 0 0 5rem 5rem;
}

.step_bar {
  position: relative;
  margin-bottom: 25rem;
  box-shadow: 0 0 3rem #69787870;
}

.step_bar::after {
  content: "";
  width: 1rem;
  height: 16rem;
  background: #fff;
  position: absolute;
  bottom: -16rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 3rem #697878b0;
}

.step_bar:last-of-type {
  margin-bottom: 0;
}

.step_bar:last-of-type::after {
  display: none;
}

/*-----------------------------------------------------
future
-----------------------------------------------------*/
#future {
  padding: 32rem 0 17rem;
  background: url(../img/bg_future.jpg);
  background-position: top center;
}

#future .sub_head {
  margin-bottom: 14rem;
}

.future_box_num {
  position: absolute;
  font-size: 20rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  color: #C8962E;
  opacity: 0.4;
  font-style: italic;
  left: -2rem;
  top: -17rem;
  padding-right: 5rem;
}

.future_box {
  background: #ffffff;
  padding: 12rem 5rem 8rem;
  position: relative;
  margin-bottom: 16rem;
  box-shadow: 0 0 5rem #cfb87280;
}

.future_box:nth-of-type(3) h3 {
  font-size: 5rem;
}

.future_box:last-of-type {
  margin-bottom: 0;
}

.future_box h3 {
  font-weight: 700;
  letter-spacing: -0.01rem;
  font-size: 5.2rem;
  margin-bottom: 4rem;
  text-align: left;
}

.future_box img {
  margin-bottom: 5rem;
}

.future_box img+p {
  font-size: 4rem;
  line-height: 1.7;
}

/*-----------------------------------------------------
btn_area2
-----------------------------------------------------*/
#btn_area2 {
  padding: 0 0 17rem;
}

/*-----------------------------------------------------
profile
-----------------------------------------------------*/
#profile {
  padding-top: 0;
  background: #fff;
}

.profile_wrap {
  margin-top: 2rem;
}

.profile_box {
  margin-bottom: 10rem;
}

.profile_box:nth-of-type(3) {
  margin-bottom: 0;
}

.profile_box h3 {
  background: var(--grad_blue3);
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  padding: 3rem 0;
  font-size: 5rem;
  line-height: 1.5;
  font-weight: bold;
}

/*-----------------------------------------------------
recommend
-----------------------------------------------------*/
#recommend {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 20rem 0;
}

#recommend::after {
  content: "";
  background: url("../img/resommend_back.png");
  background-size: cover;
  width: 100rem;
  height: 31rem;
  position: absolute;
  top: -10rem;
  left: 0;
}

.recommend_wrap {
  margin-top: 10rem;
}

.recommend_box {
  margin-bottom: 12.5rem;
}

.recommend_box:nth-of-type(3) {
  margin-bottom: 0;
}

/*-----------------------------------------------------
offer
-----------------------------------------------------*/
#offer {
  padding: 0 0 17rem;
  background: url(../img/bg_offer.jpg);
  background-position: top center;
  background-size: 145%;
}

#offer .sub_head {
  margin-bottom: 10rem;
}

#offer .lead {
  text-align: left;
  font-size: 4.5rem;
  line-height: 1.6;
}

/*-----------------------------------------------------
schedule
-----------------------------------------------------*/
#schedule .border_txt {
  border-color: var(--red);
}

/* 日程 */
.sche_day {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ccc;
  padding: 2rem;
}

.schedule_ttl {
  border-left: 5px solid var(--red);
  margin-top: 6rem;
  margin-bottom: 2rem;
  padding-left: 3rem;
  font-size: 5.5rem;
  font-weight: bold;
  color: var(--red);
  line-height: 1.2;
  text-align: left;
}

.schedule_table {
  width: 100%;
  border: 1px solid #ccc;
  font-weight: 500;
  position: relative;
  font-size: 3.5rem;
}

.schedule_table th,
.schedule_table td {
  border: 1px solid #ccc;
  padding: 2rem;
}

.schedule_table th {
  background: #4f4f4f;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.schedule_table th:nth-child(1) {
  width: 40rem;
}

.schedule_table th:nth-child(2) {
  width: 30rem;
}

.schedule_table tr:nth-of-type(even) {
  background: #fbfbfb;
}

.schedule_table tr:nth-of-type(odd) {
  background: #fff;
}

.schedule_table td:nth-child(3) {
  text-align: center;
  vertical-align: middle;
}

.schedule_table td a {
  text-decoration: none;
  -webkit-animation: blink 0.6s ease-in-out infinite alternate;
  -moz-animation: blink 0.6s ease-in-out infinite alternate;
  animation: blink 0.6s ease-in-out infinite alternate;
  color: var(--red);
  font-size: 100%;
  font-weight: bold;
}

/* 会場 */
.schedule_place {
  font-size: 4.2rem;
}

.schedule_place hr {
  margin: 7rem 0;
}

.map {
  width: 100%;
  height: auto;
  margin: 2rem auto 0;
}

.schedule_place hr {
  margin: 5rem 0;
  color: #105e66;
}

.schedule_place .notice {
  padding-top: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 4rem;
}

.schedule_place .notice li {
  padding-left: 4rem;
}

.map+p {
  margin-top: 6rem;
}

/*----------------------------------------------
message
-----------------------------------------------*/
#message {
  background: var(--grad_black);
  background-size: cover;
}

#message h2 {
  margin: 0 5rem 5rem;
}

#message .sec_inner {
  padding: 5rem;
  background-color: #fff;
}

.message_txt {
  font-family: "Noto Serif JP", serif;
  line-height: 2.08;
  font-size: 3.9rem;
  text-align: left;
  font-weight: bold;
  padding-bottom: 2rem;
  color: #000;
}

/*----------------------------------------------
ボタンの上に終了の文言を表示(時限式で追加される
-----------------------------------------------*/

.form_close .letter_btn {
  pointer-events: none;
  position: relative;
  opacity: 0.3;
}

header .form_close::before {
  position: absolute;
  top: 25rem;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "募集は終了しました";
  font-weight: 900;
  font-size: 5rem;
  z-index: 1;
  color: var(--red);
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  padding: 20rem 5rem;
  text-align: center;
  width: 80%;
}

/*----------------------------------------------
formボタンコントロール
-----------------------------------------------*/
.form_close::before {
  position: absolute;
  top: 9rem;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "募集は終了しました";
  font-weight: 900;
  font-size: 5rem;
  z-index: 1;
  color: var(--red);
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  padding: 2rem 5rem;
  text-align: center;
  width: 85%;
}


/*----------------------------------------------
見た目調整
-----------------------------------------------*/
.top {
  margin-top: 1.6rem;
}

.text-border {
  background: var(--yellow3);
  padding: 0 3rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.arrow_box {
  padding: 0 5rem;
}

.top1 {
  margin-top: 1rem;
}

.zansu_area h5 {
  text-align: center;
  color: #fff;
  background: var(--red);
  padding: 1rem 0;
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.zansu_area .no {
  margin-top: 0;
}

/*----------------------------------------------
加藤さん調整　残席表
-----------------------------------------------*/
.small {
  font-size: 80%;
}

.sp {
  display: none;
}

.course_table {
  width: 100%;
  text-align: center;
  line-height: 1.3;
  font-size: 3.5rem;
}

.course_table th,
.course_table td {
  border: 1px solid #ccc;
  padding: .4em;
  vertical-align: middle
}

.course_table th {
  background:
    /*#F6F1EB*/
    #ebebeb;
}

.course_table tr *:first-child {
  /*width:30%;*/
}

.course_table tr *:nth-child(2),
.course_table tr *:nth-child(3) {
  width: 25%;
}

.course_table tr *:last-child {
  width: 20%;
}

.course_table .blinking {
  font-size: 130%;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.course_table th.sunday {
  background: #ffedf0;
}

.course_table th.sunday .small70 {
  color: var(--red);
}

.course_table th.saturday {
  background: #ebf1f6;
}

.course_table th.saturday .small70 {
  color: var(--blue);
}

.course_table td a {
  text-decoration: none;
  color: unset;
  display: table-cell;
}

.course_table td>.smalll {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.not_held {
  background: #7a7a7a;
}

@media screen and (max-width:480px) {
  .sp {
    display: block;
  }

  .course_table {
    font-size: 4rem;
  }

  .course_table tr *:first-child {
    /*width:20%;*/
  }

  .course_table tr *:nth-child(2),
  .course_table tr *:nth-child(3) {
    width: 30%;
    font-size: 3.5rem;
  }

  .course_table tr *:last-child {
    width: 20%;
  }

  .course_table .blinking {
    font-size: 140%;
  }
}

.form1 h2 {
  font-size: 5.2rem;
}

/* ----------------------------------------------------
よくある質問
------------------------------------------------------ */
#cp {
  background: #D8E9E9;
}

.cp_qa *,
.cp_qa *::after,
.cp_qa *::before {
  box-sizing: border-box;
}

.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1em;
}

.cp_qa .cp_actab:last-child {
  margin-bottom: 0;
}

.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  display: block;
  padding: 1em 2em 1em 2.8em;
  cursor: pointer;
  border-radius: 0.5em;
  background: #fff;
  font-size: 4rem;
  position: relative;
  transition: color 0.3s;
}

.cp_qa .cp_actab label::before {
  content: "Q";
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  left: 3rem;
  top: 4.2rem;
}

.cp_qa .cp_actab label:hover {
  color: var(--red);
}

/* ＋アイコン */
.cp_qa .cp_actab label::after {
  content: "+";
  font-size: 1.7em;
  font-weight: bold;
  position: absolute;
  top: 4rem;
  right: 2rem;
  transition: transform 0.4s;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  transition: max-height 0.2s;
  border-radius: 0 0 0.5em 0.5em;
  font-size: 3.5rem;
}

.cp_qa .cp_actab .cp_actab-content::before {
  content: "A";
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  top: 2rem;
  margin: 0.4em 0 0 -1em;
  color: var(--red);
}

.cp_qa .cp_actab .cp_actab-content_inner {
  padding: 5rem 5rem 5rem 0;
}

/* 開いた時の仕様 */
.cp_qa .cp_actab input:checked~.cp_actab-content {
  max-height: 55em;
  border: 10px solid #fff;
  border-top: none;
  background: #f8f8f8;
}

.cp_qa .cp_actab input:checked~label {
  border-radius: 0.5em 0.5em 0 0;
}

.cp_qa .cp_actab input[type="checkbox"]:checked+label::after {
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}

/* 注意文 */
.cp_actab .notice {
  padding-top: 0;
}

/*購入フォーム調整*/
#form .form_data.grid,
#form .form_item.grid {
  grid-template-columns: none;
}

#form .form_item:has(.form_data) {
  grid-column: span 3 !important;
}

.hatching1 td.release:nth-of-type(1),
.hatching1 td.release:nth-of-type(2),
.hatching2 td.release:nth-of-type(1),
.hatching2 td.release:nth-of-type(2) {
  background: #bbbbbb;
  pointer-events: none;
  color: #dbd9d9;
}

.hatching1 tr.release,
.hatching2 tr.release {
  background: #bbbbbb;
  pointer-events: none;
}

.course_table .release .blinking {
  color: #dbd9d9;
}

/* 上部コース */
/*--------------------------------------
 hatching1
 --------------------------------------*/
.zansu .hatching1>.flex,
.zansu .hatching2>.flex {
  opacity: 1;
}

.zansu .hatching1,
.zansu .hatching2 {
  background: rgba(255, 255, 255, 0);
  pointer-events: inherit;
  padding: 0;
  z-index: 10;
}

.zansu .hatching1:after,
.zansu .hatching2:after {
  display: none;
}

/*網掛け*/
.zansu .hatching1.release,
.zansu .hatching2.release {
  pointer-events: none;
  position: relative;
  padding: 0;
}

.zansu .hatching1.release:after,
.zansu .hatching2.release:after {
  content: "";
  display: block;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  position: absolute;
  inset: 0;
  margin: auto;
  background: #565656c7;
  text-align: center;
  border-radius: 6px;
  width: 100%;
}

.close-zansu {
  position: relative;
}

.close-zansu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1e1e1e7a;
  width: 100%;
  height: 100%;
  z-index: 100;
  border-radius: 6px;
}

#formJump {
  padding-bottom: 0 !important;
}

/*アニメーション*/
/* ----------------------------------------------------
ふわっと表示
------------------------------------------------------ */
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12rem);
  transition: all 0.7s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0rem);
}