@charset "UTF-8";
/* Theme Name: sanhallo2023 */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}*{font-size:100%;}legend{color:#000}
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", 'Noto Sans JP','Montserrat',sans-serif;
  font-size: 62.5%;/* 10px */
  scroll-behavior: smooth;
  }
a { color: var(--link_color); text-decoration: none; }
a:hover{ transition: .4s;text-decoration: none; opacity: 0.6; -webkit-transition: all 300ms ease-in-out; -o-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out;}
hr { border-bottom: 1px solid #fff; border-left: 0; border-right: 0; border-top: 0; margin: 1.8em 0; }
img { max-width: 100%; height: auto; vertical-align: top; line-height: 1; }
*, *::after, *::before {box-sizing: inherit;}

:root {
  --link_color:#E95704;
  --hover_color:#aa3e00;  
  --font_color:#000;;  
}
/******************** fadein *********************/
.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
  animation-iteration-count: 1;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
   .fadeUpTrigger{
      opacity: 0;
  }
  
body{
  width: 100%;
  font-size: 1.6rem;/* 16px */
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 400;
  background-color: #FFF6EC;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  font-family: 'Noto Sans JP', sans-serif;
}
body.home{
  background-color: #fca542;
}
.container{
  max-width: 1100px;
  margin:0 auto;
}
@media screen and (max-width:1100px) {
  .container{
    max-width: 96%;
    margin:0 2%;
  }
}

.br-sp{
  display: none;
  }
@media screen and (max-width: 640px) {
.br-sp{
display: block;
}
}
.header{ 
  width: 100%;
  height: 100px;
  /*background-color: #E95704;*/
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  padding: 0 40px;
  justify-content: space-between;
  position: fixed;
  align-items: center;
  z-index: 100;
}
@media screen and (max-width: 640px) {
  .header{
    height: 60px;
  }
}
.logo img{
  width: 200px;
  height: auto;
}
@media screen and (max-width: 640px) {
  .logo img{
    width: 120px;
  }
}
@media screen and (max-width: 640px) {
  .header{ 
    padding: 0 15px 0 5px;
  }
  .pc-nav{
    width: 50%;
  }
}
/* ---------------------------------------------------
PC用 glovalnavi
---------------------------------------------------- */
.pc-nav a{
  color: #fff;
}
.pc-nav a:hover{
  color: #ffeb55;
  opacity: 1;
}
.pc-nav-list li{
  display: inline;
  margin-left: 40px;
}
@media screen and (max-width:980px) {
.pc-nav a{
  display: none;
}
}

/* ---------------------------------------------------
スマホ用ハンバーガーメニュー
---------------------------------------------------- */
#sp-nav{
  display: none;
}
@media screen and (max-width:980px) {
#sp-nav{
  display: inline-block;
  position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
  height: 100vh;
	background:rgba(245,165,0,1);
	transition: all 0.3s;
}
#sp-nav.panelactive{
	opacity: 1;
	z-index:999;
}
#sp-nav.panelactive #sp-nav-list{
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#sp-nav ul {
  display: none;
  z-index: 999;
}
#sp-nav.panelactive ul {
  display: block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 2.0rem;
}
.sp-nav-menu {
  padding-top: 120px;
}
.sp-nav-menu li{
	list-style: none;
  width: 80%;
  margin: auto;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.6);
}
.sp-nav-menu li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
.sp-nav-sns {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.sp-nav-sns li{
  display: inline-block;
  padding-top: 40px;
}
.sp-nav-sns li img{
  width: 40px;
}
.sp-nav-sns li a{
  padding: 10px;
}
.sp-nav-info{
  padding: 20px 30px;
  width: 80%;
  margin: 40px auto 0 auto;
  background-color: #FFF6EC;
  border-radius: 20px;
  color: #000;
  font-weight: 700; 
}
.sp-nav-info a{
  color: #000;
}
.sp-nav-info__ttl{
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}
.sp-nav-info__ttl span{
  font-size: 2.4rem;
}
.sp-nav-info__txt{
  font-size: 1.4rem;
  font-weight: 500; 
}
.openbtn{
	position:fixed;
  z-index: 9999;
	top:15px;
	right: 15px;
	cursor: pointer;
  width: 25px;
  height:20px;
}
.openbtn span{
  mix-blend-mode: normal;
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #fff;
  width: 100%;
}
.openbtn span:nth-of-type(1) {
	top:0px;	
}
.openbtn span:nth-of-type(2) {
	top:10px;
}
.openbtn span:nth-of-type(3) {
	top:20px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    /*left: 18px;*/
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    /*left: 18px;*/
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}
}
/* ------------------------------------------------- */

.bg-wrap{
}
.fv{
  /*padding-top: 100px;*/
  text-align: center;
  width: 100%;
  /*
  background: linear-gradient(to bottom, #E95704, #FFAA4A);
  background-position:  center 100px ;
  */
}
.fv-wrap{
  /*
  background-image: url(img/fv_bg_img.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position:  center top ;
  */
  } 
.fv img{
  width:100%;
  height: auto;
}
@media screen and (max-width:1300px) {
  .fv-wrap{
    background-position:  center bottom ;
    } 
}
@media screen and (max-width:580px) {
.fv-wrap{
  /*padding-top: 30px;*/
  background-size: cover;
  background-position:  left -100px top ;
  } 
.fv img{
  /*
    padding-right: 2%;
    width:98%;
    */

  }
}


.ttl_en{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: -6px;
}
.ttl{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 3.0rem;
  margin-bottom: 40px;
}
@media screen and (max-width:640px) {
  .ttl_en{
    font-size: 1.1rem;
  }
  .ttl{
    font-size: 2.2rem;
  }
}
.white{color: #fff;}
.orange{color: #E95704;}
.lightpurple{color: #D2ADD6;}

/* ---------------------------------------------------
toppage 新着情報
---------------------------------------------------- */
.top-news{
  padding-top: 80px;
  margin-top: -1px;
  text-align: center;
  background-color: #3F0051;
  /*
  background-color: #FFAA4A;
  background: linear-gradient(to bottom, #3F0051, #550F68);
  */
}
.top-news-wrap{
  /*
  background-image: url(img/bg_topnews_01.png),url(img/bg_topnews_02.png);  
	background-position: right 50px bottom 30px, left 50px bottom 30px;
	background-size: 234px, 305px;
	background-repeat: no-repeat, no-repeat;
  */
}
.top-news-wrap>.container{
  position: relative;
}
.top-news__ttl{
  text-align: center;
  margin: 0px auto 60px auto;
}
.top-news__more{
  position: absolute;
  display: block;
  right: 0;
  top: 30px;
  border-radius: 50px;
  border: #3F0051 2px solid;
  background-color: #fff;
  width: 160px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  text-align: left;
}
.top-news__more a{
  display: block;
  padding: 0 20px;
  color: #3F0051;
  background-image: url(img/arrow_p.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 7px 11px;
}
.top-news__more a:hover{
  background-position: right 16px center;
}

.top-news__list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 90px;
}
.top-news__list a{
  color: #fff;
}
.top-news__list__item{ 
  width: 32%;
  max-width: 330px;
  margin-bottom: 20px;
  text-align: left;
}
.top-news__list:before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  order: 1;
}
.top-news__list:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
.top-news__list__item__thumb img{
  border-radius:10px;
  margin-bottom: 15px;
}
.top-news__list__item__ttl{
  font-size: 1.6rem;
  min-height: 4em;
}
.top-news__list__item__cat{
  width: 86px;
  display: inline-block;
  border-radius: 50px;
  padding: 1px 10px;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-right: 15px;
  margin-bottom: 10px;
}
.top-news__list__item__time{
  font-size: 1.6rem;
  display: inline;
  color: #fff;
}
.cat_news{
  background-color: #F5A500;
}
.cat_event{
  background-color: #7E9A31;
}
.cat_application{
  background-color: #025E8F;
}
@media screen and (max-width: 640px) {
.top-news-wrap{
	background-position: right bottom, left bottom;
	background-size: 84px, 105px;
}
.top-news__list{
  padding-bottom: 0px;
}
.top-news__more{
  width: 60%;
  position: relative;
  top: 0px;
  margin: -30px auto 20px auto;
  }
.top-news{
  padding-top: 30px;
  }
.top-news__list{
  margin-bottom: 0;
}
.top-news__list__item{ 
  width: 48%;
  margin-bottom: 4em;
}
.top-news__list__item__ttl{
  font-size: 1.5rem;
}
}


/* ---------------------------------------------------
toppage ナミもよう
---------------------------------------------------- */
.bg_nami1{
  position: relative;
  margin-top: -30px;
  height: 30px;  
  background-image: url(img/bg_nami1.png);
  background-size: 3070px auto;
  background-position: center top;
  background-repeat: repeat-x;
}
.bg_nami2{
  margin-top: -30px;
  height: 30px;  
  background-image: url(img/bg_nami2.png);
  background-size: 3070px auto;
  background-position: center top;
  background-repeat: repeat-x;
}
.bg_nami3{
  margin-top: -60px;
  height: 30px;  
  background-image: url(img/bg_nami3.png);
  background-size: 3070px auto;
  background-position: center top;
  background-repeat: repeat-x;
}
.bg_yellow{
  background-color: #F5A500;
}


/* ---------------------------------------------------
toppage イベントカレンダー
---------------------------------------------------- */
.top-calendar{
  padding: 80px 0;
  text-align: center;
  background-color: #FFF6EC;
}
.fc-list-header-left{
  float: right!important;
  padding-right: 5px;
}
.fc-list-header-right{
  float: left!important;
  padding-left: 5px;
}
.fc-list-header-right::after{
  content: "日";
}
/* ---------------------------------------------------
会場map
---------------------------------------------------- */

.map_venue {
  margin-bottom: 30px;
}
.venue-archive-meta{
  margin-bottom: 100px;
}
.eo-venue-map{
  height: 350px!important;
}
@media screen and (max-width: 640px) {
  .eo-venue-map{
    height: 200px!important;
  }
}
/* ---------------------------------------------------
toppage スマイルハロウィンパーティー・オレンジモンスター
---------------------------------------------------- */
.top-event1{
  padding: 80px 0;
  text-align: center;
}
.top-event1>.container{
  background-image: url(img/top_garland_l.png),url(img/top_garland_r.png);
  background-repeat: no-repeat,no-repeat;
  background-position: left 0,right 0;
  background-size: 232px,255px;
}
.top-event1__txt img{
  width: 100%;
  max-width: 464px;
  margin-bottom: 20px;
}
.top-event1__ttl img{
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 640px) {
  .top-event1__ttl img{
    max-width: 290px;
  }
}
.top-event1__img img{
  width: 100%;
  max-width: 1100px;
  margin: -40px auto 20px auto;
}
.top-event1__nichiji{
  width: 560px;
  display: flex;
  margin: 20px auto 0 auto;
  background-color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 2.2rem;
}
.top-event1__place{
  padding: 3px;
  width: 50%;
  background-color: #E95704;
  border-radius: 50px 0px 0px 50px;
  color: #fff;
}
.top-event1__date{
  width: 50%;
  padding: 3px;
}
.top-event1__eventlist{
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 45px 70px;
  box-shadow: 6px 6px 0 0 #924890;
}
.top-event1__eventlist ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}
.top-event1__eventlist ul li{
  width: 49%;
  position: relative;
  padding-left: 35px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  border-bottom: 4px dotted #D2ADD6;
}
.top-event1__eventlist ul li:before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #924890;
  border-radius: 50%;
}
@media screen and (max-width:1020px) {
  .top-event1>.container{
    background-size: 170px,180px;
    } 
}
@media screen and (max-width:820px) {
  .top-event1>.container{
    background-image:none;
    } 
  .top-event1__img img{
    margin: 20px auto 20px auto;
  }
  .top-event1__nichiji{
    width: 80%;
    flex-wrap: wrap;
    border-radius: 20px;
    font-size: 1.8rem;
  }
  .top-event1__place{
    width: 100%;
    border-radius: 20px 20px 0px 0px;
  }
  .top-event1__date{
    width: 100%;
  }
  .top-event1__eventlist{
    width: 96%;
    padding: 30px 30px;
    margin: 0 auto;
  }
  .top-event1__eventlist ul li{
    width: 100%;
    font-size: 1.6rem;
  }
  .top-event1__eventlist ul li:before {
    top: 10px;
  }
}
@media screen and (max-width: 640px) {
.top-event1{
  padding: 40px 0;
}
}

.top-event2{
  padding: 80px 0;
  text-align: center;
}
.top-event2>.container{
  background-image: url(img/top_garland_l.png),url(img/top_garland_r.png);
  background-repeat: no-repeat,no-repeat;
  background-position: left 0,right 0;
  background-size: 232px,255px;
}
.top-event2__txt img{
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.top-event2__ttl img{
  width: 100%;
  max-width: 442px;
}
@media screen and (max-width: 640px) {
  .top-event2__ttl img{
    max-width: 290px;
  }
}
.top-event2__img img{
  width: 100%;
  max-width: 995px;
  margin-bottom: 50px;
}
.top-event2__nichiji{
  width: 560px;
  display: flex;
  margin: 20px auto 0 auto;
  background-color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 2rem;
}
.top-event2__place{
  padding: 3px;
  width: 40%;
  background-color: #E95704;
  border-radius: 50px 0px 0px 50px;
  color: #fff;
}
.top-event2__date{
  width: 60%;
  padding: 3px;
}
.top-event2__eventlist{
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 45px 70px;
  box-shadow: 6px 6px 0 0 #924890;
}
.top-event2__eventlist ul{
  text-align: left;
}
.top-event2__eventlist ul li{
  position: relative;
  padding-left: 35px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  border-bottom: 4px dotted #D2ADD6;
}
.top-event2__eventlist ul li:before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #924890;
  border-radius: 50%;
}
.top-event2__eventlist ul li span {
  color: #E95704;
}

@media screen and (max-width:1020px) {
  .top-event2>.container{
    background-size: 170px,180px;
    } 
}
@media screen and (max-width:820px) {
  .top-event2>.container{
    background-image:none;
    } 
  .top-event2__img img{
    margin: 20px auto 20px auto;
  }
  .top-event2__nichiji{
    width: 80%;
    flex-wrap: wrap;
    border-radius: 20px;
    font-size: 1.8rem;
  }
  .top-event2__place{
    width: 100%;
    border-radius: 20px 20px 0px 0px;
  }
  .top-event2__date{
    width: 100%;
  }
  .top-event2__eventlist{
    width: 96%;
    padding: 30px 30px;
    margin: 0 auto;
  }
  .top-event2__eventlist ul li{
    width: 100%;
    font-size: 1.8rem;
  }
  .top-event2__eventlist ul li:before {
    top: 10px;
  }
}
@media screen and (max-width: 640px) {
.top-event2{
  padding: 0px 0 40px 0;
}
}

/* ------------詳細リンクボタン--------------- */
.top-linkbtn{
  display: block;
  margin: 30px auto 0 auto;
  border-radius: 50px;
  border: #fff 2px solid;
  background-color: #3F0051;
  max-width: 360px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 2.0rem;
  text-align: center;
}
.top-linkbtn a{
  display: block;
  padding: 10px 30px;
  color: #fff;
  background-image: url(img/arrow_w.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 7px 11px;
}
.top-linkbtn a:hover{
  background-position: right 16px center;
}
@media screen and (max-width: 640px) {
  .top-linkbtn{
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------
toppage スマイルまちなかフェス
---------------------------------------------------- */
.top-event{
  padding: 100px 0 120px 0;
  text-align: center;
}
.top-event>.container{
  background-image: url(img/top_garland_l.png),url(img/top_garland_r.png);
  background-repeat: no-repeat,no-repeat;
  background-position: left 0,right 0;
  background-size: 232px,255px;
  position: relative;
}

.top-event__more{
  position: absolute;
  display: block;
  right: 0;
  top: 85px;
  border-radius: 50px;
  border: #E95704 2px solid;
  background-color: #fff;
  width: 160px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  text-align: left;
}
.top-event__more a{
  display: block;
  padding: 0 20px;
  color: #E95704;
  background-image: url(img/arrow_o.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 7px 11px;
}
.top-event__more a:hover{
  background-position: right 16px center;
}

.top-event__txt img{
  width: 90%;
  max-width: 410px;
  margin-bottom: 20px;
}
.top-event__ttl img{
  width: 100%;
  max-width: 270px;
}
.top-event_commingsoon{
  text-align: center;
  margin-top: 30px;
  color: #fff;
  font-size: 2rem;
}
.top-event__list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 60px;
  font-weight: 700;
  margin-top: 50px;
}
.top-event__list a{
  color: #fff;
}
.top-event__list__item{ 
  width: 32%;
  max-width: 330px;
  margin-bottom: 50px;
  text-align: left;
}
.top-event__list:before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  order: 1;
}
.top-event__list:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
.top-event__list__item__thumb img{
  border-radius:10px;
  margin-bottom: 15px;
}
.top-event__list__item__ttl{
  font-size: 1.6rem;
  min-height: 4em;
}
@media screen and (max-width:1020px) {
  .top-event>.container{
    background-size: 170px,180px;
    } 
  
.top-event__more{
  width: 60%;
  position: relative;
  top: 0px;
  right: 0;
  margin: 30px auto 20px auto;
  }
}
@media screen and (max-width:820px) {
  .top-event>.container{
    background-image:none;
    } 
}
@media screen and (max-width: 640px) {
.top-event{
  padding: 40px 0 40px 0;
  }
.top-event__list{
  margin-top: 30px;
  padding-bottom: 0;
}
.top-event__list__item{ 
  width: 48%;
  margin-bottom: 4em;
}
.top-event__list__item__ttl{
  font-size: 1.5rem;
}
}

/* ---------------------------------------------------
toppage 参加者募集
---------------------------------------------------- */
.top-application{
  text-align: center;
}
.top-application img{
  max-width:740px;
  width: 90%;
}
.top-application a{
  position: relative; top: 0px;
  transition: .4s;
}
.top-application a:hover{
  opacity: 1;
  position: relative; top: 5px;
  transition: .3s;
}
@media screen and (max-width: 640px) {
.top-application{
  margin-bottom: 60px;
}
}

/* ---------------------------------------------------
toppage ムービー
---------------------------------------------------- */
.top-movie{
  text-align: center;
  background-color: #FFF6EC;
  padding: 80px 0 160px 0;
  background-image: url(img/bg_topmovie_02.png),url(img/bg_topmovie_01.png);  
	background-position: right 50px bottom 30px, left 50px bottom 40px;
	background-size: 413px, 317px;
	background-repeat: no-repeat, no-repeat;
}
.top-movie>.container{
  width: 860px;
}
.top-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.top-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
.top-movie{
  padding: 40px 0 160px 0;
	background-position: right bottom 30px, left bottom 40px;
	background-size: 213px, 167px;
}
}

/* ---------------------------------------------------
footer
---------------------------------------------------- */
.footer{
  background-color: #924890;
  padding: 80px 0;
  color: #fff;
}
.sponsors{
  text-align: center;
}
.sponsors img{
  max-width: 470px;
  width: 90%;
  margin: 0 auto;
}
.sponsors a{
  position: relative; top: 0px;
  transition: .4s;
}
.sponsors a:hover{
  opacity: 1;
  position: relative; top: 5px;
  transition: .3s;
}
.footer-navi{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top:1px solid #B07AAE;
  border-bottom:1px solid #B07AAE;
  margin:50px auto 35px auto;
  padding: 35px 0 ;
}
.footer-navi__logo{
  max-width: 274px;
  width: auto;
  margin:0 auto;
}
.footer-navi__list{
  width: calc( 100% - 350px ) ;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin:0 auto;
}
.footer-navi__list__item{
  width: 30%;
  position: relative;
  padding-left: 25px;
}
.footer-navi__list__item a{
  color: #fff;
}
.footer-navi__list__item:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #F5A500;
  border-radius: 50%;
}
.footer-info{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-info a{
  color: #fff;
}
.footer-info__address{
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.footer-info__address__ttl{
  font-weight: 700;
  font-size: 1.8rem;
}
.footer-info__address address{
  font-weight: 700;
  font-size: 2.1rem;
}
.footer-info__address span{
  font-weight: 700;
  font-size: 3.2rem;
}
.footer-info__link{
  display: flex;
  flex-direction : row-reverse;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-info__link__item{
  width: 48px;
  margin-left: 15px;
}
.archive-link{
  width: 200px;
}
.copy{
  color: #D2ADD6;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .footer-navi__logo{
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-navi__logo img{
    max-width: 200px;
  }
  .footer-navi__list{
    width: 100%;
    margin-left: 50px;
  }
  }
@media screen and (max-width: 640px) {
.footer{
  padding: 40px 0;
  text-align: center;
}
.footer-navi__list__item{
  width: 100%;
  padding-bottom: 10px;
  text-align: left;
}
.footer-info__address{
  width: 100%;
  font-size: 1.4rem;
}
.footer-info__address address{
  font-size: 1.8rem;
}
.footer-info__address span{
  font-size: 2.6rem;
}
.footer-info__link{
  justify-content: center;
}
.footer-info__link__item{
  margin-bottom: 20px;
}
.copy{
  font-size: 1.1rem;
}
}


/* ---------------------------------------------------
下層ページ
---------------------------------------------------- */
.page-container{
  padding-top: 120px;
  padding-bottom: 150px;
}
.breadcrumb{
  width: 100%;
  font-size: 1.2rem;
  text-align: right;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb .current-item {
  color:  #8D8A88;
}
@media screen and (max-width:580px) {
.breadcrumb{
  padding-top: 0px;
  text-align: left;
}
}

/* ---------------------------------------------------
固定ページ
---------------------------------------------------- */
.page-default{
  padding-top: 40px;
  text-align: center;
}


/* ---------------------------------------------------
新着情報ページ
---------------------------------------------------- */
.page-news{
  padding-top: 60px;
  text-align: center;
}
.page-news__list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.page-news__list a{
  color: #000;
}
.page-news__list__item{ 
  width: 32%;
  max-width: 330px;
  margin-bottom: 50px;
  text-align: left;
}
.page-news__list:before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  order: 1;
}
.page-news__list:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
.page-news__list__item__thumb img{
  border-radius:10px;
  margin-bottom: 15px;
}
.page-news__list__item__ttl{
  font-size: 1.6rem;
  min-height: 4em;
}
.page-news__list__item__cat{
  width: 86px;
  display: inline-block;
  border-radius: 50px;
  padding: 1px 10px;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-right: 15px;
  margin-bottom: 10px;
}
.page-news__list__item__time{
  font-size: 1.6rem;
  display: inline;
}
@media screen and (max-width: 640px) {
.page-news__list{
  padding-bottom: 0px;
}
.page-news{
  padding-top: 30px;
  }
.page-news__list{
  margin-bottom: 0;
}
.page-news__list__item{ 
  width: 48%;
  margin-bottom: 4em;
}
.page-news__list__item__ttl{
  font-size: 1.5rem;
}
}
/* ---------------------------------------------------
募集情報一覧pdf
---------------------------------------------------- */
a[href $='.pdf']{
  background:url(img/icon-pdf.png) no-repeat center right;
  background-size: 20px auto;
  padding-right: 30px;
  margin-right: 30px;
  text-decoration:underline;
}
.page-application{
  padding-top: 40px;
  text-align: center;
}
.page-application .wp-block-file{
  margin-bottom: 1em!important;
}
.page-application p {
  margin-bottom: 2em!important;
}
.page-application .post-content a {
  color: #E95704;
  border-bottom: none;
}

/* ---------------------------------------------------
post css
---------------------------------------------------- */
.post-main{
  max-width: 980px;
  margin: 60px auto 0 auto;
  background-color: #fff;
  padding: 80px 90px 80px 90px;
  border-radius: 20px;
}
.post-content {
  text-align: left;
  font-size: 1.6rem;
}
.post-content .wp-block-file {
  font-size: 1.6rem;
}
.post-content .wp-block-file:not(.wp-element-button) {
  font-size: 1.6rem;
}
.post-content img{
  border-radius: 20px;
  margin-bottom: 30px;
}
.post-content .alignnone{
  max-width: 100%;
}
.post-content__heading{
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.post-content__thumb{
  width: 100%;
  margin-bottom: 40px;
}
.post-content__thumb img{
  width: 800px;
}
.post-content__info-time{
  display: inline-block;
  font-size: 1.6rem;
}
.post-content__info-cat{
  display: inline-block;
  width: 86px;
  border-radius: 50px;
  padding: 1px 10px;
  text-align: center;
  font-size: 1.4rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width:640px) {
.post-main{
  padding: 30px 40px;
}
.post-content__heading{
  font-size: 2.2rem;
  margin-bottom: 20px;
}
}

/* ---------------------------------------------------
wordpress css
---------------------------------------------------- */
.post-content p{
  margin-bottom: 2em;
}
.post-content h2{
  font-size: 2.0rem;
  color: #924890;
  margin-bottom: 0.8em;
  font-weight: 700;
}
.post-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.post-content h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.post-content b,
.post-content strong {
  font-weight: 700;
}
.post-content a {
  color: #E95704;
  text-decoration:underline;
}
.post-content blockquote {
  border-left: 4px solid #666;
  color: #666;
  font-size: 20px;
  font-style: italic;
  line-height: 1.8182;
  margin: 0 0 35px -21px;
  padding-left: 17px;
}
.post-content blockquote > blockquote {
  margin-left: 0;
}
.post-content blockquote p {
  margin-bottom: 35px;
}
.post-content blockquote > p:last-child {
  margin-bottom: 0;
}
.post-content small {
  font-size: 75%;
}
.post-content big {
  font-size: 125%;
}
.post-content hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 28px;
}
.post-content ul,
ol {
  margin: 0 0 28px 20px;
  padding: 0;
}
.post-content ul {
  list-style: disc;
}
.post-content ol {
  list-style: decimal;
}
.post-content li > ul,
.post-content li > ol {
  margin: 0 0 0 23px;
}
.post-content blockquote > ul,
.post-content blockquote > ol {
  margin-left: 28px;
}
.post-content dl {
  margin: 0 0 28px;
}
.post-content dt {
  font-weight: bold;
}
.post-content dd {
  margin: 0 0 28px;
}
.post-content table,
.post-content th,
.post-content td,
.mce-item-table,
.mce-item-table th,
.mce-item-table td {
  border: 1px solid #eaeaea;
}
.post-content table a {
  color: #333;
}
.post-content table,
.mce-item-table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 0 0 28px;
  width: 100%;
}
.post-content table th,
.mce-item-table th,
.post-content table caption {
  border-width: 0 1px 1px 0;
  font-size: 17px;
  font-weight: 700;
  padding: 7px;
  text-align: left;
  vertical-align: baseline;
}
.post-content table td,
.mce-item-table td {
  border-width: 0 1px 1px 0;
  font-size: 17px;
  padding: 7px;
  vertical-align: baseline;
}
.post-content img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.post-content figure {
  margin: 0;
}
.post-content del {
  opacity: 0.8;
}
.post-content .alignleft {
  float: left;
  margin: 7px 28px 28px 0;
}
.post-content .alignright {
  float: right;
  margin: 7px 0 28px 28px;
}
.post-content .aligncenter {
  clear: both;
  display: block;
  margin: 7px auto;
}
.post-content .wp-caption {
  background: transparent;
  border: none;
  color: #707070;
  margin: 5px 0 23px 0;
  max-width: 100%;
  padding: 0;
  text-align: inherit;
}
.post-content .wp-caption.alignleft {
  margin: 7px 28px 21px 0;
}
.post-content .wp-caption.alignright {
  margin: 7px 0 21px 28px;
}
.post-content .wp-caption.aligncenter {
  margin: 7px auto;
}
.post-content .wp-caption .wp-caption-text,
.post-content .wp-caption-dd {
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 0;
  text-align: center;
}
/* ---------------------------------------------------
Event Organiser
---------------------------------------------------- */
.event-cat-list{
  margin-bottom: 70px;
}
.event-cat-list li{
  margin-bottom: 1em;
  list-style-type: none;
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px dotted #E95704;
}
.event-cat-list li span{
  font-size: 1.6rem;
  font-weight: 400;
}
.event-cat-list li:before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  content: "";
  background: #E95704;
  }
ul.eo-event-meta{
  margin-left: 0;
  }
ul.eo-event-meta li{
  list-style-type: none;
  margin-left: 0;
  }
/* ---------------------------------------------------
PLUGIN WP-Page Navi
---------------------------------------------------- */
.navigation { padding: 15px; text-align:left;}
.wp-pagenavi {
  font-weight: 500;
}
.wp-pagenavi a, .wp-pagenavi a:link {
  padding: 7px 15px;
  margin: 3px 4px;
  text-decoration: none;
  color: #fff;
  background-color: #E95704;
  border-color: #E95704!important;
  border-radius: 50%;
  font-weight: 500;
}
.wp-pagenavi a:visited {
  padding: 7px 15px;
  margin: 3px 4px;
  text-decoration: none;
  color: #fff;
  background-color: #E95704;
  border-color: #E95704!important;
  font-weight: 500;
}
.wp-pagenavi a:hover {
  text-decoration: none;
  font-weight: 400;
}
.wp-pagenavi a:active {
  padding: 7px 15px;
  margin: 3px 4px;
  text-decoration: none;
  color: #fff;
  background-color: #E95704;
  border-color: #E95704!important;
  font-weight: 500;
}
.wp-pagenavi span.pages {
  display: none;
}
.wp-pagenavi span.current {
  padding: 7px 15px;
  margin: 3px 4px;
  color: #E95704;
  background-color: #fff;
  border-color: #fff!important;
  border-radius: 50%;
  font-weight: 500;
}
.wp-pagenavi span.extend {
  padding: 10px 15px;
  margin: 3px 4px;
  color: #E95704;
  font-weight: 500;
}
.wp-pagenavi .first {
  padding: 7px 10px!important;
}
.wp-pagenavi .last {
  padding: 7px 10px!important;
}

/* ---------------------------------------------------
notfound
---------------------------------------------------- */
.notfound{
  width: 90%;
  max-width: 1000px;
  margin:90px auto;
  padding: 8%;
  text-align: left;
}
.notfound-heading{
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1em;
}