@charset "UTF-8";

/*@font-face {
  font-family: "Chillax-Semibold";
  src: url(fonts/Chillax-Semibold.woff2) format("woff2"),
    url(fonts/Chillax-Semibold.woff) format("woff"),
    url(fonts/Chillax-Semibold.eot) format("eot");
  font-weight: 600;
  font-style: normal;
}*/

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color1: #00AA7B;
  --main-color2: #2C82D5;
  --main-color1b: #E7F8F2;
  --main-color2b: #E1EFFE;
  --sub-color: #EE7700;
  --txt-color: #000;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  --font-en: "Zen Kaku Gothic New", 'Noto Sans JP',sans-serif;
  --font-maru: "Zen Maru Gothic", 'Noto Sans JP',sans-serif;
  --font-gothic: 'Noto Sans JP',sans-serif;
  --font-mincho: "Zen Old Mincho", 'Noto Sans JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  /*font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family:  var(--font-gothic), "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  /*letter-spacing: 0.075em;*/
  color: var(--txt-color);
  background:#f0f7fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Chrome / Safari / Edge */
body::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html, body {
  scrollbar-width: none;
}

/* IE / 古いEdge */
body {
  -ms-overflow-style: none;
}


#root{
  overflow: hidden;
}
*,
*:before,
*:after{
  transition: 0.2s all;
}

/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

  /* リサイズレート */
  --resize-rate: 0.3;
  --slim-rate: 0.8;

}

.container{
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width:768px){

  /* コンテナサイズ:px */
  .container{
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }

  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
    --resize-rate: 0.6;
  }
}
@media (min-width:992px){

  /* コンテナサイズ:px */
  .container{
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }

  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1230px){

  /* コンテナサイズ:px */
  .container{
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .container.medium{
    max-width: 1030px;
  }

  :root {
    /*--margin-for-device-side: calc(555px - 50vw);*/
    /*--margin-for-device-side-w: calc(555px - 50vw);*/
    --margin-for-device-side: calc(600px - 50vw);
    --margin-for-device-side-w: calc(600px - 50vw);
    --resize-rate: 0.7;
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  /*.container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }*/

}
@media (min-width:1470px){

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1400px + 35px);
    padding-left: 35px;
    padding-right: 35px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
    --resize-rate: 0.7;
  }

}
@media (min-width:1720px){

  /* コンテナサイズ:1520px */
  /*.container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
    --resize-rate: 1.0;
  }*/
}


img{
  max-width: 100%;
}


.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

a:hover .img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* ===================================

  =================================== */

.layout{
  width: 100vw;
}
.layout_left,
.layout_right{
  display: flex;
  align-items: center;
  width: calc(50vw - 195px);
  background: #111;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
}
.layout_left{
  left: 0;
  background-image: url('../img/body_bg1.jpg');
  justify-content: flex-end;
}
.layout_main{
  width: 390px;
  margin: 0 auto;
  padding: 0 15px ;
  background: #FFF;
  position: relative;
  z-index: 1;
}
.layout_right{
  right: 0;
  background-image: url('../img/body_bg2.jpg');
  justify-content: flex-start;
}

.layout_side_inner{
  width: 525px;
  /*max-width: 525px;*/
  padding: 0 50px;
}
.layout_side_inner2{
  width: 400px;
  /*max-width: 400px;*/
  padding: 0 50px;
}
.layout_left .layout_side_inner{
  /*margin-left: auto;*/
}
.layout_right .layout_side_inner{
  /*margin-left: 0;*/
}

/* ロゴ */
.side_logo{
  margin-bottom: 40px;
}

/* スケジュール */
.side_sche{
  
}
.side_sche_item{
  border-radius: 5px;
  overflow: hidden;
  background: #FFF;
}
.side_sche_item + .side_sche_item{
  margin-top: 30px;
}
.side_sche_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 12px 15px;
  text-align: center;
  background: #FFF;
}
.side_sche_item_ttl{
  font-size: 18px;
  font-family: var(--font-maru);
  font-weight: 700;
  color: #FFF;
  padding: 8px 10px 8px 20px;
}
.side_sche_item_box1{
  width: 195px;
}
.side_sche_item_box2{
  width: calc(100% - 195px);
  border-left: 1px solid;
}
.side_sche_item_box_w{
  width: 100%;
  text-align: center;
  background: #FFF;
  border-radius: 5px;
  padding: 15px 15px;
}
.side_sche_item_box_w + .side_sche_item_box_w{
  margin-top: 15px;
}
.side_sche_item_label{
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
* + .side_sche_item_label{
  margin-top: 15px;
}
.side_sche_item_label span{
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border-radius: 16px;
  padding: 5px 10px 6px;
  min-width: 94px;
  text-align: center;
}
.side_sche_item_year{
  font-size: 18px;
  font-weight: 800;
}
.side_sche_item_date{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
}
.side_sche_item_date i{
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  width: 25px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: #FFF;
  border-radius: 50%;
  padding-bottom: 2px;
  margin-left: 3px;
}
.side_sche_item_date .mon{
  
}
.side_sche_item_date .tue{
  
}
.side_sche_item_date .wed{
  
}
.side_sche_item_date .thu{
  
}
.side_sche_item_date .fri{
  background-color: #EE7700;
}
.side_sche_item_date .sat{
  background-color: #4D75E2;
}
.side_sche_item_date .sun{
  background-color: #E35353;
}
.side_sche_item_time{
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}
.side_sche_item_txt1{
  font-size: 19px;
  font-weight: 800;
  line-height: 1.42;
  margin-top: 5px;
}
.side_sche_item_txt1 strong{
  font-size: 1.5833em;
  font-weight: 700;
}
.side_sche_item_txt2{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.23;
  margin-top: 5px;
}

.color1 .side_sche_item_ttl{
  background: var(--main-color1);
}
.color1 .side_sche_item_label span{
  background: var(--main-color1b);
  color: var(--main-color1);
}
.color1 .side_sche_item_year,
.color1 .side_sche_item_date,
.color1 .side_sche_item_txt1{
  color: var(--main-color1);
}
.color1 .side_sche_item_box2{
  border-color: var(--main-color1b);
}

.color2 .side_sche_item_ttl{
  background: var(--main-color2);
}
.color2 .side_sche_item_label span{
  background: var(--main-color2b);
  color: var(--main-color2);
}
.color2 .side_sche_item_year,
.color2 .side_sche_item_date,
.color2 .side_sche_item_txt1{
  color: var(--main-color2);
}
.color2 .side_sche_item_box2{
  border-color: var(--main-color2b);
}

/* メニュー */
.side_menu{
  
}
.side_menu_item{
  
}
* + .side_menu_item{
  margin-top: 10px;
}

.side_menu_item a{
  display: flex;
  align-items: flex-end;
  background: #FFF;
  border-radius: 5px;
  font-size: 21px;
  font-weight: 800;
  font-family: var(--font-maru);
  text-decoration: none;
  color: #000;
  line-height: 1.2;
  padding: 14px 35px 15px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.side_menu_item a:hover{
  transform: scale(1.02);
}

.side_menu_item a em{
  font-size: 12px;
  font-weight: 900;
  font-family: var(--font-en);
  font-style: normal;
  color: var(--sub-color);
  margin-left: 10px;
}
.side_menu_item a:after{
  content: "";
  width: 16px;
  aspect-ratio: 1 / 1;
  background-image: url('../img/icon_right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.side_menu_item a:hover:after{
  /*margin-right: -5px;*/
}
.side_menu_items{
  padding: 10px 15px;
  border-radius: 5px;
}
* + .side_menu_items{
  margin-top: 10px;
}
.side_menu_items.bgcolor1{
  background: var(--main-color1);
}
.side_menu_items.bgcolor2{
  background: var(--main-color2);
}
.side_menu_items .side_menu_item + .side_menu_item{
  margin-top: 5px;
}
.side_menu_ttl{
  font-size: 14px;
  font-weight: 800;
  color: #FFF;
}


/* メニューボタン */
.hdr_menu_btn{
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  
}
.hdr_menu_btn a{
  display: block;
  width: 54px;
  aspect-ratio: 1 / 1;
  background-image: url('../img/menu_open.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  transition: 0.2s all;
}
.hdr_menu_btn a:hover{
  transform: scale(1.05);
}
.hdr_menu_btn.active a{
  background-image: url('../img/menu_close.png');
}

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}



/* ===================================

  =================================== */


/* MV */
.mv{
  padding-top: 100px;
  padding-bottom: 85px;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  background-image: url('../img/mv.jpg');
  background-size: cover;
  background-position: center;
}
.mv_logo{
  
}
.mv_txt{
  margin-top: 40px;
  margin-left: auto;
  margin-right: 20px;
  text-align: right;
}
.mv.sub{
  background-image: url('../img/pg_head_img.jpg');
}
.mv .tt2{
  margin-top: 30px;
  margin-bottom: 0;
}

/**/
.tt2{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.tt2_box{
}
.tt2_en{
  font-size: 14px;
  font-weight: 900;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--sub-color);
  /*margin-bottom: 5px;*/
}
.tt2_ja{
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-maru);
  line-height: 1.2;
}

.read_more{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.read_more a{
  width: 240px;
  background: var(--sub-color);
  color: #FFF;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 35px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a:after{
  content: "";
  width: 16px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon_right_wh.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  transform: scale(1.05);
}

.cmn_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.625;
  text-align: justify;
}

.cmn_cat_nav{
  display: flex;
  gap: 0 4px;
  margin-bottom: 20px;
}
.cmn_cat_nav_item{
  width: 100%;
}
.cmn_cat_nav_item img{
  width: 100%;
}

/* はじめに */
.home_about{
  padding-top: 50px;
  padding-bottom: 85px;
  margin-top: -50px;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  background-image: url('../img/home_about_bg.png');
  background-size: 100% auto;
  background-position: center top;
  position: relative;
  z-index: 2;
}
.home_about_txt{
  
}

.section{
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 50px;
}
.sec_top{
  padding-top: 80px;
  margin-top: -50px;
  margin-left: -15px;
  margin-right: -15px;
  
  position: relative;
  z-index: 3;
  
  background-image: url('../img/section_top_bg.png');
  background-size: 100% auto;
  background-position: center top;
}
.sec_btm{
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 50px;
  padding-top: 80px;
  position: relative;
  z-index: 3;
  background-image: url('../img/section_top_bg2.png');
  background-size: 100% auto;
  background-position: center bottom;
}
.sec_contents{
  background: #FFF;
}

.sec_ftr{
  background: #E1EFFE;
  padding-top: 80px;
  padding-bottom: 50px;
}

/* お問い合わせ */
.ftr_contact{
  background: #FFF;
  border-radius: 10px;
  padding: 30px 15px;
  text-align: center;
}
.ftr_contact_txt1{
  font-size: 20px;
  font-weight: 800;
  line-height: 1.7;
}
.ftr_contact_txt2{
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
  margin-top: 15px;
}
.ftr_contact_tel{
  margin-top: 15px;
}

.ftr_copy{
  font-size: 10px;
  font-weight: 500;
  background: #2C82D5;
  color: #FFF;
  text-align: center;
  padding: 15px 10px;
  margin-left: -15px;
  margin-right: -15px;
}


.apply_btn{
  position: fixed;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.apply_btn .read_more{
  margin-top: 0;
}
.apply_btn .read_more a{
  width: 360px;
  padding: 13px 10px 16px;
  font-size: 26px;
}
.apply_btn .read_more a:after{
  width: 24px;
  right: 35px;
}

/* 開催概要 */
.home_outline{
  
}
.home_outline{
  
}

/* イベント大枠 */
.event_wrap{
  border-radius: 5px;
  /*overflow: hidden;*/
}
.event_wrap + .event_wrap{
  margin-top: 50px;
}
.event_wrap_ttl{
  font-size: 28px;
  font-weight: 700;
  color: #FFF;
  padding: 10px 10px;
  border-radius: 5px 5px 0 0;
  position: relative;
  z-index: 1;
}
.event_wrap_ttl.free{
  
}
.event_wrap_ttl.free:after{
  content: "";
  width: 82px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/free.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}

.event_wrap_inner{
  padding: 15px 15px 30px;
}

.color1{
  background-color: var(--main-color1b);
}
.color1 .event_wrap_ttl{
  background-color: var(--main-color1);
}
.color2{
  background-color: var(--main-color2b);
}
.color2 .event_wrap_ttl{
  background-color: var(--main-color2);
}

/* セミナー */
.event_seminar{
  
}
* + .event_seminar{
  margin-top: 30px;
}
.event_seminar + .event_seminar{
  margin-top: 60px;
}
.event_seminar_ttl{
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  padding: 10px 10px;
  margin-bottom: 25px;
}
.event_seminar_item{
  
}
.event_seminar_item + .event_seminar_item{
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--main-color1b);
}
.event_seminar_item_ttl{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 12px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.event_seminar_item_ttl:before{
  content: "";
  width: 5px;
  height: 1em;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 0;
}
.event_seminar_item_img{
  margin-bottom: 10px;
  text-align: center;
}
.event_seminar_item_img img{
  width: 78.78%;
  border-radius: 5px;
}
.event_seminar_item_prof{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
}
.event_seminar_item_prof li{
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
}
.event_seminar_item_prof li{
  
}
.event_seminar_item_name{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
}

.color1 .event_seminar_ttl{
  background-color: var(--main-color1);
}
.color1 .event_seminar_item_ttl:before{
  background-color: var(--main-color1);
}
.color1 .event_seminar_item + .event_seminar_item{
  border-top: 1px solid #D0E9E0;
}
.color2 .event_seminar_ttl{
  background-color: var(--main-color2);
}
.color2 .event_seminar_item_ttl:before{
  background-color: var(--main-color2);
}
.color2 .event_seminar_item + .event_seminar_item{
  border-top: 1px solid #D0E9E0;
}


.event_seminar_sche{
  
}
.event_seminar_sche + .event_seminar_sche{
  margin-top: 60px;
}

.event_seminar_date{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.event_seminar_date .side_sche_item_time{
  margin-top: 0;
  margin-left: 10px;
  background: #FFF;
  border-radius: 16px;
  padding: 5px 20px;
}

.event_seminar_timeline{
  
}
.event_seminar_timeline + .event_seminar_timeline{
  margin-top: 30px;
}

/* ギャラリー */
.sec_gallery{
  padding-top: 0;
  padding-bottom: 50px;
  background: #FFF9E6;
}


.gallery_ttl{
  background: #FBF0CE;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  margin-bottom: 25px;
}
.gallery_txt{
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}

.gallery_slider_wrap{
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
.gallery_slider{
  
}
.gallery_slider .swiper-slide{
  width: 300px;
  padding: 0 7.5px;
}
.gallery_item{
  
  /*padding: 0 7.5px;*/
}
.gallery_item_img{
  
}
.gallery_item_img.img_fit:before{
  padding-top: 56.572%;
}

.gallery_slider_prev,
.gallery_slider_next{
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.gallery_slider_prev{
  left: 15px;
}
.gallery_slider_next{
  right: 15px;
}

.gallery_slider_wrap .swiper-pagination{
  position: static !important;
}
.gallery_slider_wrap .swiper-pagination-bullet-active{
  background: var(--sub-color);
}


/* 協賛バナー */
.sponsor_list{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 5px;
}
.sponsor_list + .sponsor_list{
  margin-top: 30px;
}
.sponsor_list li{
  list-style: none;
  width: 100%;
}
.sponsor_list li a{
  display: block;
}
.sponsor_list li a img{
  display: block;
}
.sponsor_list.col2{
  width: 80%;
	margin: 28px auto 0;
}
.sponsor_list.col3{
  gap: 10px 5px;
}
.sponsor_list.col3 li{
  width: calc(50% - 2.5px);
}

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}



/* ===================================

  =================================== */

.sponsor_list{
  border-radius: 10px;
}
.sponsor_list_item{
  background: #FFF9E6;
  border-radius: 10px;
  padding: 30px;
  
}
.sponsor_list_item + .sponsor_list_item{
  margin-top: 30px;
}
.sponsor_list_item_img{
  margin-bottom: 10px;
}
.sponsor_list_item_ttl{
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid #F2EAD2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.sponsor_list_item_ttl em{
  font-size: 0.66em;
  font-style: normal;
}
.sponsor_list_item_ttl .prof{
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 3px;
}
.sponsor_list_item_ttl.nobdr{
  border-bottom: 0;
  padding-bottom: 0;
}

.sponsor_list_item_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
.sponsor_list_item_link{
  display: flex;
  justify-content: flex-end;
  text-align: right;
  margin-top: 20px;
}
.sponsor_list_item_link a{
  font-size: 18px;
  font-weight: 800;
  color: var(--sub-color);
  text-decoration: none;
  border-bottom: 2px solid var(--sub-color);
  padding-bottom: 2px;
  position: relative;
  z-index: 1;
  padding-right: 25px;
  transition: 0.2s all;
}
.sponsor_list_item_link a + a{
  margin-left: 10px;
}
.sponsor_list_item_link a:hover{
  /*transform: scale(1.05);*/
  border-color: transparent;
}
.sponsor_list_item_link a:after{
  content: "";
  width: 20px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.sponsor_list_item_link.wh a{
  color: #FFF;
}

.sponsor_list{
  background-color: transparent !important;
}
.color1 .sponsor_list_item{
  background-color: var(--main-color1b);
}
.color1 .sponsor_list_item_ttl{
  border-color: #CFE9E0;
}
.color2 .sponsor_list_item{
  background-color: var(--main-color2b);
}
.color2 .sponsor_list_item_ttl{
  border-color: #CFE9E0;
}

.speaker_wrap{
  
}
.speaker_wrap + .speaker_wrap{
  margin-top: 60px;
}

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}




/* ===================================

  =================================== */


.program_wrap{
  background-color: transparent!important;
}
.program_wrap + .program_wrap{
  margin-top: 60px;
}
.program_item{
  background: #6454A1;
  color: #FFF;
  border-radius: 10px;
  padding: 30px 15px;
}
.program_item + .program_item{
  margin-top: 30px;
}
.program_item_time{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.program_item_time span{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  background: #FFF;
  color: #6454A1;
  border-radius: 13px;
  padding: 0 10px 1px;
  margin-left: 10px;
}
.program_item_category{
  font-size: 16px;
  font-weight: 700;
}
.program_item_ttl{
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.program_item_img{
  padding: 0 15px;
  margin-bottom: 15px;
  text-align: center;
}
.program_item_img img{
  width: 100%;
  border-radius: 10px;
}

.program_wrap .side_sche_item_date{
  color: #000;
}
.program_wrap .event_seminar_date .side_sche_item_time{
  background: #E1EFFE;
}

.program_wrap.color1{
  
}
.program_wrap.color1 .program_item{
  background: #6454A1;
}
.program_wrap.color2 .program_item{
  background: #2C82D5;
}

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}




/* ===================================

  =================================== */

.anchor{
  position: relative;
  top: -30px;
}


.gnav{
  width: 390px;
  background: #FFF9E6;
  position: fixed;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding: 100px 45px 120px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s all;
  overflow-y: auto;
}
.gnav.active{
  opacity: 1;
  pointer-events: all;
}
.gnav_logo{
  margin-bottom: 100px;
}

@media (max-width:1199px){
  
  .layout_side_inner{
    padding: 0 30px;
  }
  .layout_side_inner2{
    padding: 0 30px;
  }
  
  .side_sche_item_box1,
  .side_sche_item_box2{
    width: 100%;
  }
  .side_sche_item_box2{
    border-left: 0;
    border-top: 1px solid;
    margin-top: 15px;
    padding-top: 15px;
  }
  .side_menu_item a{
    font-size: 18px;
    padding: 10px 30px 11px 10px;
  }
}
@media (max-width:1023px){
  .layout_left .layout_side_inner,
  .layout_right .layout_side_inner2{
    display: none;
  }
  
}
@media (max-width:767px){
  
  .hdr_menu_btn{
    position: fixed;
    z-index: 5;
  }
}
@media (max-width:390px){
  
  .layout_main{
    width: 100%;
  }
  
  
  .gnav {
    width: 100%;
  }
  .gnav .hdr_menu_btn{
    /*right: 23px;*/
  }
  .gnav_logo{
    margin-bottom: 50px;
  }
  
}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}




/* ===================================

  =================================== */


@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}

.comingsoon{
	margin: 5rem auto;
	font-size: 26px;
	font-weight: 800;
	text-align: center;
}


