@charset "utf-8";
/* CSS Document */

#event_calendar{
  font-family: 'Noto Sans JP', sans-serif;
}

#event_calendar .main{
}
#event_calendar .main h1{
}
#event_calendar .main h1 img{
    width:100%;
}
#event_calendar .main p{
}
#event_calendar .select_event{
  background: #F8F5EA;
  padding: 60px 0;
}
#event_calendar .select_event .select_event_inner{
  width: 100%;
  max-width: 1000px;
  margin:0 auto;
}

#event_calendar .select_event h2 {
  border-left:5px solid #F38C06 ;
  font-size: 3rem;
  font-weight: bold;
  padding-left: 10px;
  line-height: 1;
  margin-bottom: 60px;
}
#event_calendar .select_event ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
#event_calendar .select_event ul li {
  width: 32%;
  margin-bottom: 80px;
  text-align: center;
}
#event_calendar .select_event ul li p{
  margin: 20px 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
}
#event_calendar .select_event ul li a{
  text-decoration: none;
}
#event_calendar .select_event ul li.ended_menu a{
  position: relative;
  display: inline-block;
}
#event_calendar .select_event ul li.ended_menu a img {
  display: block;
  filter: brightness(50%);
}
#event_calendar .select_event ul li.ended_menu a.m_close01::before{
  content: "実施終了しました";
  white-space: pre;
  position: absolute;
  color: #e80000;
  top: 27%;
  left: 49%;
  transform: translateY(-50%) translateX(-50%);
  font-weight: bold;
  background: #fff;
  padding: 10px;
  text-align: center;
  z-index: 1;
  font-size: 14px;
  line-height: 1.2;
}
#event_calendar .select_event ul li.ended_menu a.m_close02::before{
  content:"受付終了しました";
  white-space: pre;
  position: absolute;
  color: #e80000;
  top: 27%;
  left: 49%;
  transform: translateY(-50%) translateX(-50%);
  font-weight: bold;
  background: #fff;
  padding: 10px;
  text-align: center;
  z-index: 1;
  font-size: 14px;
  line-height: 1.2;
}

#event_calendar .select_event ul li.ended_menu .se_btn{
  background: #aaa;
  border-color: #aaa;
}

#event_calendar .select_event ul li .se_btn{
  position: relative;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  min-width: 180px;
  height: 40px;
  padding: 0 20px;
  background: #F38C06;
  border-style: solid;
  border-width: 2px;
  border-color: #F38C06;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  outline: none;
  transition: all .3s;
  cursor: pointer;
  font-size: 16px;
}
#event_calendar .select_event ul li .se_btn i{
  position: absolute;
  right: 10px;
  font-size: 14px;
}
.held_month{
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  margin-top: 60px;
}
.held_month span{
  font-size: 5rem;
}
.eventList_inner{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.eventList_inner .event_ttl{
  font-size: 2.6rem;
  font-weight: bold;
  color: #F38C06;
}
.eventList_inner ul{
  margin-top: 60px;
}
.eventList_inner ul li{
  position: relative;
}
.eventList_inner ul li .ended_event_txt{
  text-align: center;
  font-size: 2rem;
  color: #e80000;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}
.eventList_inner ul li .ended_event_txt_s{
  text-align: center;
  font-size: 1.8rem;
  color: #e80000;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  border: 2px solid #e80000;
  padding: 15px;
}

.event_wrap{
  position: relative;
  margin: 20px auto 100px;
  width: 100%;
  border: 1px solid #ccc;
  padding:30px 30px 0 40px;
}
.event_wrap::before{
  content: "";
  width: 7px;
  height: 95px;
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: #F38C06;
}
.cs,
.close01,
.close02{
  position: relative;
}
.cs .event_wrap::after,
.close01 .event_wrap::after,
.close02 .event_wrap::after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}
.cs::after{
  content: "Coming soon";
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
}
.close01::after{
  content: "本イベントは終了いたしました。\Aご参加ありがとうございました。";
  white-space: pre; /*  改行を有効 */
  position: absolute;
  color: #e80000;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  padding: 10px 30px;
  text-align: center;
}

.event_wrap .eventContents{
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  font-weight: 300;
  position: relative;
}
.event_wrap .eventContents .leftArea{
  width: calc(100% - 330px);
}
.event_wrap .eventContents .leftArea table{
  width: 90%;
}
.event_wrap .eventContents .leftArea td span{
  font-size: 1.1rem;
  line-height: 1.2;
  display: block;
  margin-top: 10px;
}
.event_wrap .eventContents h3{
  font-weight: bold;
  font-size: 2.7rem;
  margin-bottom: 20px;
  width: 100%;
  line-height: 1.2;
}
.event_wrap .eventContents h3 span{
  font-size: 1.2rem;
  font-weight: normal;
}
.event_wrap .eventContents .icon_area{
  position: absolute;
  top: 0;
  right: 0;
}
.event_wrap .eventContents h3 .event_month{
  border: 1px solid #F38C06;
  color: #F38C06;
  font-weight: 400;
  padding: 0 10px;
  font-size: 1.8rem;
}
.event_wrap .eventContents .price{
  display: inline-block;
  background: #F38C06;
  color: #FFF;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  padding-top: 20px;
  position: absolute;
  right: 0;
  top: 5px;
}

.event_wrap .eventContents .leftArea th{
  font-weight: 500;
  padding: 15px 10px;
  border-top: 1px solid #d8d8d8;
  width: 30%;
}
.event_wrap .eventContents .leftArea td{
  padding: 15px 10px;
  border-top: 1px solid #d8d8d8;
  width: 70%;
}
.event_wrap .eventContents .leftArea figure{
  width: 330px;
}
.event_wrap .event_inner .rightArea{
  width: calc(95% - 330px);
  font-weight: 300;
  font-size: 1.6rem;
}
.event_wrap .event_inner{
  width: 100%;
  margin: 30px auto 0;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  justify-content: space-between;
}
.event_wrap .event_open_pc{
  display: none;
}
.event_wrap .event_inner .recom{
  margin-top:20px;
}
.event_wrap .event_inner .recom p:nth-of-type(1){
  font-weight: 500;
  color: #F38C06;
}
.event_wrap .event_inner .recom p span{
  color: #F38C06;
  font-size: 1.2rem;
  margin-right: 5px;
}
.event_wrap .event_inner .teacher{
  width: 100%;
  background: #f1f1f1;
  margin: 30px 0;
  padding: 20px;
}
.event_wrap .event_inner .teacher span{
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

.event_wrap .event_inner .teacher p:nth-of-type(1){
  font-weight: 500;
  font-size: 1.6rem;
}
.event_wrap .event_inner .teacher figure{
  float: right;
}
.event_wrap .event_inner .event_btn{
  width: 100%;
  text-align: center;
  margin: 40px 0;
}
.event_wrap .event_inner .event_btn .note{
  text-align: left;
  width: 100%;
  margin: 40px 0 10px;
  font-size:1.1rem;
}
.event_wrap .event_inner .event_btn .close_txt{
  color: #aaa;
  font-weight: bold;
}
.event_wrap .event_inner .event_btn .comming_soon{
  color: #aaa;
  font-weight: bold;
}

.event_wrap .event_inner .event_btn a{
  min-width: 300px;
  font-size: 2rem;
}
.event_wrap .event_inner .event_btn a.no_click{
  pointer-events: none;
  background:#aaa;
  border:#aaa;
}
.event_wrap .event_inner .event_btn .entry .pink{
  color: #F38C06;
  font-size: 2rem;
  margin: 20px;
  display: block;
  text-align: center;
  width: auto;
}
.entry .entry_btn {
  position: relative;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 45px;
  padding: 0 20px;
  background: #ee0055;
  border-style: solid;
  border-width: 2px;
  border-color: #ee0055;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  outline: none;
  transition: all .3s;
  cursor: pointer;
  min-width: 300px;
  font-size: 2rem;
}

.entry .entry_btn[disabled]{
  background-color: #C8C8C8;
  border-color: #C8C8C8;
  cursor: default;
}
.entry .entry_btn i{
  font-size: 1.8rem;
  position: absolute;
  right:20px;
  top: 30%;
}


.event_click{
  position: absolute;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  bottom: 0;
}
.event_click::after{
  position: absolute;
  content: "";
  width: 198px;
  height: 35px;
  cursor: pointer;
  background: url(/event/img/open.png) no-repeat center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.event_click.active::after{
  position: absolute;
  content: "";
  display: inline-block;
  background-size: contain;
  width: 198px;
  height: 35px;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
  background: url(/event/img/close.png) no-repeat;
}
.event_inner{
  display:none;
  position: relative;
}
.close01 .event_click{
  display: none;
}

/*------------------------------
.voice
------------------------------*/
.voice{
  width: 100%;
  max-width: 900px;
  margin-top: 50px;
}
.voice .o_eventVoice_tit{
    width: 100%;
    text-align: center;
    font-size: 2.0rem;
    font-weight: bold;
    padding: 30px 0 20px;
    position: relative;
    color: #F38C06;
}
.voice .o_eventVoice_tit:before{
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    content: "";
    left: 20%;
    bottom: 0;
}
.voice .o_eventVoice_tit:after{
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    content: "";
    right: 20%;
    bottom: 0;
}
.voice .o_eventVoice_tit.type01:before{
    background: url("/event/img/online/voice_img01.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type01:after{
    background: url("/event/img/online/voice_img02.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type02:before{
    background: url("/event/img/online/voice_img03.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type02:after{
    background: url("/event/img/online/voice_img04.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type03:before{
    background: url("/event/img/online/voice_img05.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type03:after{
    background: url("/event/img/online/voice_img06.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type04:before{
    background: url("/event/img/online/voice_img07.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type04:after{
    background: url("/event/img/online/voice_img08.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type05:before{
    background: url("/event/img/online/voice_img09.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type05:after{
    background: url("/event/img/online/voice_img10.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type06:before{
    background: url("/event/img/online/voice_img11.png") no-repeat center bottom;
}
.voice .o_eventVoice_tit.type06:after{
    background: url("/event/img/online/voice_img12.png") no-repeat center bottom;
}

.voice .o_eventVoice_tit span{
    display: inline-block;
}
.voice .o_eventVoice_tit span:before{
    content: "＼";
    margin-right: 10px;
}
.voice .o_eventVoice_tit span:after{
    content: "／";
    margin-left: 10px;
}
.voice .o_eventVoice_inner{
    width: 100%;
    max-width: 900px;
    padding: 30px;
    margin: 0 auto;
    background: #F8F5EA;
}
.voice .o_eventVoice_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    margin-top: 0;
}
.voice .o_eventVoice_list li{
    position: relative;
    padding: 1.5rem 1rem;
    border: 2px solid #707070;
    border-radius: 10px;
    background: #fff;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.voice .o_eventVoice_list li:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-color: transparent transparent #707070;
  translate: -50% -100%;
  transform: skew(-10deg);
  transform-origin: bottom;
}

.voice .o_eventVoice_list li:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-color: transparent transparent #fff;
  translate: calc(-50% + 0.6px) -100%;
  transform: skew(-10deg);
  transform-origin: bottom;
}
.voice .o_eventVoice_list li.left:before {
  border-width: 0 0 20px 25px;
}
.voice .o_eventVoice_list li.left:after {
  border-width: 0 0 15.8px 19.8px;
}
.voice .o_eventVoice_list li.center:before {
  border-width: 0 12.5px 20px 12.5px;
}
.voice .o_eventVoice_list li.center:after {
  border-width: 0 10.1px 16.2px 10.1px;
}
.voice .o_eventVoice_list li.right:before {
  border-width: 0 25px 20px 0;
}
.voice .o_eventVoice_list li.right:after {
  border-width: 0 19.8px 15.8px 0;
}
.event_list_note{
  text-align: right;
  margin:-50px 0 60px;
  font-size:12px;
}
@media screen and (max-width: 720px) {
    .voice{
        margin-top: 30px;
    }
    .voice .o_eventVoice_tit{
        font-size: 1.8rem;
        padding: 0 0 5px;
    }
    .voice .o_eventVoice_tit:before{
        width: 50px;
        height: 50px;
        left: 5%;
    }
    .voice .o_eventVoice_tit:after{
        width: 50px;
        height: 50px;
        right: 5%;
    }
    .voice .o_eventVoice_tit.type01:before,
    .voice .o_eventVoice_tit.type01:after,
    .voice .o_eventVoice_tit.type02:before,
    .voice .o_eventVoice_tit.type02:after,
    .voice .o_eventVoice_tit.type03:before,
    .voice .o_eventVoice_tit.type03:after,
    .voice .o_eventVoice_tit.type04:before,
    .voice .o_eventVoice_tit.type04:after,
    .voice .o_eventVoice_tit.type05:before,
    .voice .o_eventVoice_tit.type05:after,
    .voice .o_eventVoice_tit.type06:before,
    .voice .o_eventVoice_tit.type06:after{
        background-size: 50px auto;
    }
    
    .voice .o_eventVoice_tit span{
        position: relative;
        line-height: 1.3;
    }
    .voice .o_eventVoice_tit span:before{
        position: absolute;
        display: block;
        content: "＼";
        top: 45%;
        left: -15px;
        margin-right: 10px;
    }
    .voice .o_eventVoice_tit span:after{
        position: absolute;
        display: block;
        content: "／";
        top: 45%;
        right: -15px;
        margin-left: 10px;
    }
    .voice .o_eventVoice_inner{
        padding: 25px;
    }
    .voice .o_eventVoice_list{
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 20px;
    }
    .voice .o_eventVoice_list li{
        padding: 1.5rem 0.5rem;
    }
    .voice .o_eventVoice_list li.left:before,
    .voice .o_eventVoice_list li.left:after,
    .voice .o_eventVoice_list li.center:before,
    .voice .o_eventVoice_list li.center:after,
    .voice .o_eventVoice_list li.right:before,
    .voice .o_eventVoice_list li.right:after {
      border: 0;
    }
}
@media screen and (max-width: 424px) {
    .voice .o_eventVoice_list li{
        font-size: 1.2rem;
    }
}

/*------------------------------
.faq
------------------------------*/
.faq{
  background: #F8F5EA;
  padding: 60px 0;
}
.faq .faq_inner{
  width: 100%;
  max-width: 1000px;
  margin:0 auto;
}

.faq_inner{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0 160px;
}
.faq .faq_inner h2 {
  border-left:5px solid #F38C06 ;
  font-size: 3rem;
  font-weight: bold;
  padding-left: 10px;
  line-height: 1;
  margin-bottom: 60px;
}

#event_calendar .faq_list{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
#event_calendar .faq_list dt{
  position: relative;
  width: 100%;
  background: #F38C06;
  color: #fff;
  border-radius: 15px;
  padding: 15px 20px;
  cursor: pointer;
  margin: 15px 0 0;
}
/*
#event_calendar .faq_list dt.active {
  border-radius: 15px 15px 0 0;
}
*/
#event_calendar .faq_list > ::before {
  display:none;
}
#event_calendar .faq_list dt::after{
  content: "＋";
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 2.6rem;
  font-weight: bold;
/*  transform: translateY(-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transition: transform 0.3s ease;*/
}

#event_calendar .faq_list dt.active::after {
  content: "－";
  /*transform: translateY(-50%) rotate(-45deg); やじるし逆向き */
}

#event_calendar .faq_list dt h3{
    font-size: 20px;
    font-weight: bold;
}
#event_calendar .faq_list dd{
  display: none;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
}
#event_calendar .faq_list dd:not(:last-child) {
  margin: 0 0 20px;
}

#event_calendar .faq_list dd p{
}
.event_note{
  margin:-95px auto 0;
  width: 100%;
  max-width: 1000px;
  padding-bottom:100px;
  font-size:12px;
}

@media screen and (max-width: 720px) {
#event_calendar{
  font-family: 'Noto Sans JP', sans-serif;
}

#event_calendar .main{
}

#event_calendar .main h1{
}

#event_calendar .main h1 img{
    width:100%;
}

#event_calendar .main p{
}
#event_calendar .select_event{
  padding: 40px 20px;
}
#event_calendar .select_event h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
#event_calendar .select_event ul li {
  width: 46%;
  margin-bottom:50px;
}
#event_calendar .select_event ul li p {
  margin: 20px 0 0;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.4;
}
#event_calendar .select_event ul li img{
  width: 100%;
}
#event_calendar .select_event ul li.ended_menu a.m_close01::before{
  content: "実施終了しました";
  white-space: pre;
  position: absolute;
  color: #e80000;
  top: 30%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-weight: bold;
  background: #fff;
  padding: 10px;
  text-align: center;
  z-index: 1;
  font-size: 14px;
  line-height: 1.2;
}
#event_calendar .select_event ul li.ended_menu a.m_close02::before{
  content:"受付終了しました";
  white-space: pre;
  position: absolute;
  color: #e80000;
  top: 30%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-weight: bold;
  background: #fff;
  padding: 10px;
  text-align: center;
  z-index: 1;
  font-size: 14px;
  line-height: 1.2;
}

#event_calendar .select_event ul li .se_btn {
  height: 30px;
  font-size: 15px;
  min-width: 100%;
}
.held_month{
  text-align: center;
  font-weight: bold;
  font-size: 2.6rem;
  margin-top: 60px;
}
.held_month span{
  font-size: 4.4rem;
}
.eventList_inner .event_ttl {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
  }
.event_wrap{
  position: relative;
  margin: 20px auto 100px;
  width: 90%;
  border: 1px solid #ccc;
  padding: 20px 20px 0 30px;
}
.event_wrap::before{
  content: "";
  width: 100%;
  height: 7px;
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: #F38C06;
}
.event_wrap .eventContents{
  font-weight: 300;
  flex-direction: column;
  display: flex;
  position: relative;
}
.eventList_inner ul li .ended_event_txt {
  font-size: 1.6rem;
}
.event_wrap .eventContents h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    order: 1;
  }
.eventList_inner ul li .ended_event_txt_s {
  font-size: 1.4rem;
}
.event_wrap .eventContents h3 span {
  font-size: 1.1rem;
  margin-top: 10px;
  display: inline-block;
}
.eventContents .icon_area {
    position: initial !important;
    order: 2;
    text-align: center;
    margin-bottom: 20px;
  }
.event_wrap .eventContents h3 .event_month{
  border: 1px solid #F38C06;
  color: #F38C06;
  font-weight: 400;
  padding: 0 10px;
  font-size: 1.6rem;
}
.event_wrap .eventContents .price{
  display: inline-block;
  background: #F38C06;
  color: #FFF;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  padding-top: 15px;
  position: absolute;
  right: 0;
  top: 5px;
}
.event_wrap .eventContents .leftArea{
  order: 3;
  width: 100%;
}
.event_wrap .eventContents .leftArea table{
  width: 100%;
  border-bottom: 1px solid #d8d8d8;
}
.event_wrap .eventContents .leftArea td span{
  font-size: 1.1rem;
  line-height: 1.2;
  display: block;
  margin-top: 10px;
}
.event_wrap .eventContents .leftArea th{
  font-weight: 500;
  padding: 10px;
  border-top: 1px solid #d8d8d8;
  width: 25%;
}
.event_wrap .eventContents .leftArea td{
  padding: 10px;
  border-top: 1px solid #d8d8d8;
}
.event_wrap .eventContents .leftArea td{
  padding: 10px;
  border-top: 1px solid #d8d8d8;
}

.event_wrap .eventContents figure{
  margin-bottom: 20px;
  order: 2;
  text-align: center;
}
.event_wrap .eventContents figure img{
  width: 100%;
  max-width: 320px;
}
.event_wrap .event_inner_sp .rightArea{
  font-weight: 300;
}
.event_wrap .event_inner_sp{
  width: 100%;
  margin: 30px auto 0;
  max-width: 900px;
}
.event_wrap .event_inner_sp figure{
  margin-bottom: 20px;
}

.event_wrap .event_inner_sp figure img{
  width: 100%;
}

.event_wrap .event_inner_sp .recom{
  margin-top:20px;
}
.event_wrap .event_inner_sp .recom p:nth-of-type(1){
  font-weight: 500;
  color: #F38C06;
}
.event_wrap .event_inner_sp .recom p span{
  color: #F38C06;
  font-size: 1.2rem;
  margin-right: 5px;
}
.event_wrap .event_inner_sp .teacher{
  width: 100%;
  background: #f1f1f1;
  margin: 30px 0;
  padding: 20px;
}
.event_wrap .event_inner_sp .teacher p:nth-of-type(1){
  font-weight: 500;
}
.event_wrap .event_inner_sp .teacher p span{
  font-weight: bold;
}
.event_wrap .event_inner_sp .teacher figure img{
  width: 100%;
}
.event_wrap .event_inner_sp .voice img{
    width: 100%;
  }
.event_wrap .event_inner_sp .event_btn{
  width: 100%;
  text-align: center;
  margin: 40px 0 0;
}
.event_wrap .event_inner_sp .event_btn .note{
  margin: 60px 0 10px;
  text-align: left;
    width: 100%;
    font-size: 1.1rem;
}

.event_wrap .event_inner_sp .event_btn .close_txt{
  color: #aaa;
  font-weight: bold;
}
.event_wrap .event_inner_sp .event_btn .comming_soon{
  color: #aaa;
  font-weight: bold;
}
.event_wrap .event_inner_sp .event_btn a{
  font-size: 1.6rem;
  width: 90%;
  margin: 0 auto;
}
.event_wrap .event_inner_sp .event_btn a.no_click{
  pointer-events: none;
  background:#aaa;
  border:#aaa;
}
.event_wrap .event_inner_sp .event_btn .entry .pink{
  color: #F38C06;
  font-size: 2rem;
  margin: 20px;
  display: block;
  text-align: center;
  width: auto;
}

.entry .entry_btn {
  position: relative;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 45px;
  padding: 0 20px;
  background: #ee0055;
  border-style: solid;
  border-width: 2px;
  border-color: #ee0055;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  outline: none;
  transition: all .3s;
  cursor: pointer;
  width: 90%;
  font-size: 2rem;
}

.entry .entry_btn[disabled]{
  background-color: #C8C8C8;
  border-color: #C8C8C8;
  cursor: default;
}
.entry .entry_btn i{
  font-size: 1.2rem;
  position: absolute;
  right:20px;
  top: 35%;
}

.event_click_sp{
  position: absolute;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  bottom: 0;
}

.event_click_sp::after{
  position: absolute;
  content: "";
  width: 198px;
  height: 35px;
  cursor: pointer;
  background: url(/event/img/open.png) no-repeat center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.event_click_sp.active::after{
  position: absolute;
  content: "";
  display: inline-block;
  background-size: contain;
  width: 198px;
  height: 35px;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
  background: url(/event/img/close.png) no-repeat;
}

.event_inner_sp{
  display:none;
  position: relative;
}
.event_wrap {
  position: relative;
  margin: 20px auto 100px;
  width: 90%;
  border: 1px solid #ccc;
  padding: 20px 20px 30px;
}
/*------------------------------
.faq
------------------------------*/
.faq {
  padding: 0 20px;
}
.faq_inner {
  padding: 40px 0;
}
#event_calendar .faq_list {
  width: 100%;
  margin:0 auto 40px;
}
#event_calendar .faq_list dt{
    padding: 15px 40px 15px 0;
  }
#event_calendar .faq_list dt::before {
  font-size: 28px;
}
#event_calendar .faq_list dt h3{
    padding: 0 0 0 30px;
    font-size: 16px;
    margin-left: 1em;
    text-indent: -1.3em;
  }
#event_calendar .faq_list dd {
  display: none;
  padding: 20px 0 0;
}
#event_calendar .faq_list dd p{
    padding: 0 20px 30px 20px;
    font-size: 14px;
  }
#event_calendar .row {
  margin-bottom: 0 !important;
  padding-bottom: 40px;
}
.event_note{
  margin:-75px auto 0;
  width: 90%;
  padding-bottom:80px;
  font-size:11px;
}
.cs::after{
  font-size: 20px;
}
.close01::after {
  content: "本イベントは終了いたしました。\A参加ありがとうございました。";
  white-space: pre;
  position: absolute;
  color: #e80000;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 16px;
  font-weight: bold;
  background: #fff;
  padding: 5px 20px;
  text-align: center;
}

.close01 .event_click_sp{
  display: none;
}

}