@charset "utf-8";
/* ------------------------------------- */
/*event report btn*/
/* ------------------------------------- */
.report_btn {
    text-align: left;
    max-width: 1110px;
    margin: 20px auto;
}
.report_btn > a {
    background: #6bb6ff;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 5px 20px;
    font-weight: 600;
    border-radius: 5px;
    overflow: hidden;
    font-size: 1.2rem;
    color: #fff !important;
}
@media screen and (max-width: 600px) {
    .report_btn > a {
        margin-left: 20px;
    }
}

/* ------------------------------------- */
/*mv*/
/* ------------------------------------- */
.mv{
  background: url(../img/event/main.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .mv{
    background:url(../img/event/main_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
/* ------------------------------------- */
/*背景色*/ 
/* ------------------------------------- */
.main-inner{
  background: #efe6c2;
}
/* ------------------------------------- */
/*準備中のメッセージ*/ 
/* ------------------------------------- */
.tab_box .tab_panel p.message{
  width: 100%;
  max-width: 920px;
  margin: 0 auto 50px;
  text-align: center;
  background: #f7f5ec;
  padding: 20px;
  border-radius: 10px;
}
/* ------------------------------------- */
/*タブ実装*/ 
/* ------------------------------------- */
.tab_box .btn_area {
	display: flex;
}
.tab_box .tab_btn {
	width: 50%;
	padding: 15px 2%;
  font-size: 2rem;
	color: #fff;
  font-family: 'Kiwi Maru', serif;
  text-align: center;
	background: rgba(84,167,53,0.6);
	cursor: pointer;
	transition: all 0.2s ease 0s;
  border-bottom:5px solid #54a735;
}
.tab_box .tab_btn span{
  position: relative;
  padding-left:30px;
}
.tab_box .tab_btn span::before{
  content: "";
  width: 24px;
  height:24px;
  border:6px solid #fff;
  background-color: #e3e3e3;
  border-radius: 100px;
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  margin:auto;
}
.tab_box .tab_btn:first-of-type{
  border-radius: 10px 0 0 0;
}
.tab_box .tab_btn:last-of-type{
  border-radius: 0 10px 0 0;
}
.tab_box .tab_btn.active{
    background:#54a735;
}
.tab_box .tab_btn.active span::before{
  background-color: #ff8a00;
}
.tab_box .panel_area {
    padding: 40px 0;
}
.tab_box .tab_panel {
    display:none;
}
.tab_box .tab_panel.active {
    display:block;
}
@media screen and (min-width: 1025px) {
  .tab_box .tab_btn:hover,
  .tab_box .tab_btn.active:hover {
    background-color: #f5d70f;
    border-color: #f5d70f;
    color: #333;
  }
}
@media screen and (max-width: 600px) {
  .tab_box .tab_btn{
    font-size: 1.5rem;
  }
  .tab_box .tab_btn span::before{
    width: 20px;
    height: 20px;
    border: 5px solid #fff;
  }
}
/* ------------------------------------- */
/*タブの中のイベントリスト*/ 
/* ------------------------------------- */
.event-list .event-wrap{
  display: flex;
  flex-wrap: wrap;
}
.event-list .event-wrap .box{
  display: block;
  width: calc(25% - 22.5px);
  background: #fff;
  padding: 20px 20px 30px;
  border-radius: 10px;
  margin-right: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  outline: 1px solid #e8e8e8;
  margin-bottom:30px;
}
.event-list .event-wrap .box:hover{
  outline:3px solid #54a734;
}
.event-list .event-wrap .box::before{
  content: "";
  width:80px;
  height:80px;
  border-radius: 100px;
  background: #54a734;
  position: absolute;
  bottom: -40px;
  right: -40px;
}
.event-list .event-wrap .box::after{
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom:11px;
  right:11px;
}
.event-list .event-wrap .box:nth-of-type(4n){
  margin-right: 0;
}
.event-list .event-wrap .box .date{
  border-bottom:1px solid #efe6c2;
  margin-bottom: 15px;
}
.event-list .event-wrap .box .date .box-heading{
  font-size: 1.4rem;
  background: #efe6c2;
  padding: 8px;
  display: inline-block;
  border-radius: 4px 4px 0 0;
  margin-right:10px;
}
.event-list .event-wrap .box .ttl{
  margin-top:20px;
  display: -webkit-box; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  /*IE対策*/ 
  line-height: 1.3; 
  max-height: 2.6em;
}
.event-list .event-wrap .box figure img{
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  /* for ie (ofi.min.js) */
  font-family: 'object-fit: cover;';
}
.event-list .pager{
  margin-top:10px;
}
@media screen and (max-width: 600px) {
  .event-list .event-wrap{
    display: block;
  }
  .event-list .event-wrap .box{
    width:100%;
    min-height:270px;
    margin-bottom:30px;
  }
  .event-list .event-wrap .box figure{
    width:44.6%;
    position: absolute;
    left:20px;
    top:20px;
    background: #f5f5f5;
  }
  .event-list .event-wrap .box .date .box-heading{
    margin-bottom:5px;
  }
  .event-list .event-wrap .box .date{
    padding-bottom:5px;
    margin-left:55.4%;
  }
  .event-list .event-wrap .box .ttl{
    margin-left:55.4%;
    display: -webkit-box; 
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    /*IE対策*/ 
    line-height: 1.3; 
    max-height: 6.5em;
  }
}
/* ------------------------------------- */
/*詳細*/ 
/* ------------------------------------- */
.detail-wrap{
  max-width:920px;
  margin:0 auto;
}
/* ------------------------------------- */
/* タイトル */
.detail-wrap .ttl-area .ttl-upper{
  margin-bottom: 20px;
}
.detail-wrap .ttl-area .ttl-upper .flex-box{
  display: block;
  margin-bottom: 20px;
  border-bottom: 0;
}
.detail-wrap .ttl-area .ttl-upper .box-heading{
  font-size: 1.4rem;
  color: #fff;
  background: #54a734;
  padding: 8px;
  display: inline-block;
  border-radius: 4px 4px 0 0;
  margin-right: 10px;
  min-width: 72px;
  text-align: center;
}
.detail-wrap .ttl-area .ttl-upper .date{
  display: flex;
  justify-content: flex-start;
  align-items: center;

  margin-bottom: 10px;
  border-bottom: 1px solid #54a734;
  padding-bottom: 5px;
}
.detail-wrap .ttl-area .ttl-upper .date .date_str-detail {
    line-height: 1.2;
}
.detail-wrap .ttl-area .ttl-upper .limit{
  border-bottom: 1px solid #54a734;
  padding-bottom: 5px;
}
.detail-wrap .ttl-area .ttl-upper .category-wrap{
  margin-bottom: 10px;
}
.detail-wrap .ttl-area .ttl-upper .category-wrap span{
  position: relative;
}
.detail-wrap .ttl-area .ttl-upper .category-wrap span:not(:last-of-type)::after{
  content: "/";
  position: relative;
  padding: 0 0.5em;
}
.detail-wrap .ttl-area .ttl-upper .tag-wrap .tag{
  font-size: 1.2rem;
  background: #fff;
  border-radius: 100px;
  padding: 5px 10px;
  display: inline-block;
  border: 1px solid #c3c3c3;
  margin-right: 5px;
}
.detail-wrap .ttl-area .ttl{
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom:5px solid #54a734;
  padding-bottom: 20px;
  margin-bottom:30px;
}
@media screen and (max-width: 600px) {
  .detail-wrap .ttl-area .ttl-upper .flex-box{
    display: block;
    border-bottom: 0;
  }
  .detail-wrap .ttl-area .ttl-upper .date{
    width:100%;
    margin-bottom: 15px;
    border-bottom: 1px solid #54a734;
  }
  .detail-wrap .ttl-area .ttl-upper .limit{
    border-bottom: 1px solid #54a734;
  }
}
/* ------------------------------------- */
/* コンテンツエリア */
.detail-wrap .content-area .box{
  margin-bottom:30px;
}
/* ------------------------------------- */
/* スライダー */
.slider-area{
  width: 50%;
  margin: 0 auto;
}
.slider-area .main-slide{
  position: relative;
  margin-bottom:20px;
}
.slider-area .main-slide .icon{
  position: absolute;
  bottom:0;
  right:0;
  z-index: 9;
}
.swiper-container {
  width: 100%;
  padding-bottom:0;
}
.swiper-container .item{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  width:100%;
  height: 100%;
}
.swiper-container .item .slide-image{
  height: auto;
  width: auto;
}
.swiper-container.slider-thumbnail{
  padding: 0 42px;
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  height: 87px;
  opacity: 0.5;
  overflow: hidden;
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide img{
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  /* for ie (ofi.min.js) */
  font-family: 'object-fit: cover;';
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-container.slider-thumbnail .swiper-button-next,
.swiper-container.slider-thumbnail .swiper-button-prev{
  background: #fff;
  width:40px;
  height: 100%;
  top:0;
  margin-top: 0;
  outline: 2px solid #efe6c2;
}
.swiper-container.slider-thumbnail .swiper-button-prev{
  left:0px;
  border-radius: 4px 0 0 4px;
  background-image: url(../img/event/prev.svg);
}
.swiper-container.slider-thumbnail .swiper-button-next{
  right:0px;
  border-radius: 0 4px 4px 0;
  background-image: url(../img/event/next.svg);
}
@media screen and (max-width: 600px) {
  .slider-area{
    width:100%;
  }
  .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide{
    height: 64px;
  }
}
/* ------------------------------------- */
/* スライダー横テキスト */
.detail-wrap .content-area .text-wrap{
  width: 100%;
}
.detail-wrap .content-area .text-wrap h4{
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom:20px;
}
.detail-wrap .content-area .text-wrap p{
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .detail-wrap .content-area .text-wrap{
    width:100%;
    padding-left:0;
    margin-top:30px;
  }
}
/* ------------------------------------- */
/* 資料ダウンロード */
.detail-wrap .content-area .doc-wrap{
  background: #54a734;
  border-radius: 10px;
  padding: 30px;
  color: #fff;
}
.detail-wrap .content-area .doc-wrap h4{
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
.detail-wrap .content-area .doc-wrap h4::before,
.detail-wrap .content-area .doc-wrap h4::after{
  position: relative;
  display: inline-block;
  content: "";
  background: #fff;
  width: 2px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: middle;
}
.detail-wrap .content-area .doc-wrap h4::before{
  transform: rotate(315deg);
}
.detail-wrap .content-area .doc-wrap h4::after{
  transform: rotate(45deg);
}
.detail-wrap .content-area .doc-wrap ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.detail-wrap .content-area .doc-wrap ul li{
  padding:0 10px;
  margin-top:15px;
}
.detail-wrap .content-area .doc-wrap ul li .btn{
  padding: 18px 20px;
  line-height: 1.3;
  height: auto;
  max-width: none;
  min-width: 254px;
  font-size: 1.5rem;
}
@media screen and (max-width: 600px) {
  .detail-wrap .content-area .doc-wrap{
    padding:30px 4%;
  }
  .detail-wrap .content-area .doc-wrap h4{
    font-size: 1.8rem;
  }
}
/* ------------------------------------- */
/* テーブル */
.detail-wrap .content-area table{
  margin-top: 45px;
  width: 100%;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  border-radius: 10px;
  border: 1px solid #e5ebef;
}
.detail-wrap .content-area table th,
.detail-wrap .content-area table td{
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid #e5ebef;
}
.detail-wrap .content-area table tr:last-of-type th,
.detail-wrap .content-area table tr:last-of-type td{
  border-bottom:0;
}
.detail-wrap .content-area table th{
  width:20%;
  font-weight: bold;
  background:#f5f5f5;
  border-right: 1px solid #e5ebef;
  text-align: left;
}
.detail-wrap .content-area table td{
  background: #fff;
  line-height: 1.8;
}
.detail-wrap .content-area table td a {
  text-decoration: underline;
  color: #0000EE;
}
.detail-wrap .content-area table td strong {
  font-weight: 700;
}
.detail-wrap .content-area table td ul {
  list-style: disc;
  margin-left: 1.5em;
}
.detail-wrap .content-area table td ol {
  margin-left: 1em;
}
@media screen and (max-width: 600px) {
  .detail-wrap .content-area table th{
    width:100%;
    text-align: center;
  }
  .detail-wrap .content-area table th,
  .detail-wrap .content-area table td{
    display: block;
  }
}
/* ------------------------------------- */
/* メッセージエリア */
.detail-wrap .content-area .message-wrap{
  margin-top:50px;
  text-align: center;
}
.detail-wrap .content-area .message-wrap .btn{
  margin:0 auto 20px;
}
.detail-wrap .content-area .message-wrap .btn.half{
  width: auto;
  max-width: none;
  display: inline-block;
  height: auto;
  padding: 18px 30px;
}
.detail-wrap .content-area .message-wrap .attend{
  font-size: 2.2rem;
  font-weight: bold;
  color: #ba2727;
  margin-bottom:25px;
}
@media screen and (max-width: 600px) {
  .detail-wrap .content-area .message-wrap .attend{
    font-size: 2rem;
  }
}
