@charset "utf-8";


/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("all.min.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");



/*テーマカラーの定義（CSS変数）
ここのカラーコードを変更するだけで、テンプレートのテーマカラーが変わります。
---------------------------------------------------------------------------*/
:root {
    --main:#e83828;
	--sub:#013a63;
	--sub2:#2ea7e0;
	--sub3:#f39800;
	--title:#004fa3;
	--iro:#a40b5d;
}


/*写真の制限ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.img{
	/* PCの右クリック禁止 */
    pointer-events: none;
	/* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}






/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	height: 100%;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 16px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/

å
body {
	font-family: "ヒラギノ角ゴ Pro W3",'M PLUS Rounded 1c',"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #777;		/*文字色*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}


/*パソコン背景
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#mainback_pc{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -2;
	background: url("../images/mainback.jpg");
	background-position: center;
	background-size: cover;
}

@media screen and (min-width:1200px) {
	#mainback_pc{
		width: calc( 50% - 225px);
	}
}



#pc-date{
	display: flex;
	width: 80%;
	position: absolute;
	left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
	bottom: 300px;
	background:  rgba(255,255,255,0.8);
	border-radius: 3px;
	padding:25px;
	align-items: center;
	justify-content: center;
}

#event-date{
	width: 30%;
}

.date{
	display: flex;
	font-family: "Anton SC", sans-serif;
  	font-weight: 400;
	color: var(--main);
	align-items: baseline;
	justify-content: center;
}

.date-small{
	font-size: 3rem;
}

.date-big{
	font-size: 4rem;
}

.date-big span{
	font-weight: 500;
	font-family: "Oswald", sans-serif;
}

.week{
	width: 100%;
	border-radius: 3px;
	padding: 5px ;
	background: var(--sub2);
	color: #fff;
	text-align: center;
	font-weight: bold;
	margin-top: 3px;
	font-family: "ヒラギノ角ゴ Pro W3";
}

#event-info{
	margin-left: 30px;
}

.event-tag{
	display: flex;
	margin-bottom: 10px;
	align-items: center;
	font-family: "M PLUS 1p", sans-serif; 
	font-weight: 500;
	font-size: 1.3rem;
	
}

.event-tag:last-child{
	margin-bottom: 0;
}

.tag{
	width: 60px;
	color: #fff;
	background: var(--sub3);
	padding: 10px 0;
	text-align: center;
	border-radius: 3px;
	margin-right: 10px;
	font-weight: 500;
	font-size: 1rem;
	font-family: "ヒラギノ角ゴ Pro W3";
}

/*ループスライダー-------------------------------------------*/
.loop-box{
	position: relative;
	height: 100%;
	width: 100%;
} 

.loop-wrap {
  position: fixed;
  bottom: 0px;
  display: -webkit-flex;
  display: flex;
  ustify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  overflow: hidden;
  mix-blend-mode: overlay;
}

.loop-wrap img {
  width: auto;
  max-width: fit-content;
  height: 100%;
  will-change: transform;
}

.loop-wrap img:first-child {
  -webkit-animation: loop 100s -50s linear infinite;
  animation: loop 100s -50s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.loop-wrap img + img {
    -webkit-animation: loop2 100s linear infinite;
    animation: loop2 100s linear infinite;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}


/*パソコンナビゲーション*/
#pc-nav{
	width: calc( 50% - 225px);
	height: 100%;
	position:fixed;
	top: 0 ;
	left: 0;
	z-index: 1;
	display: none;
}

#pc-title{
	position: absolute;
	top: 70px;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);;
	width: 550px;
	height: auto;
}

#company-list{
	position: absolute;
	bottom: 25px;
	width: 100%;
	background: rgba(255,255,255,1);
	padding: 25px 0;
}

.maker-tag{
	position: absolute;
	top: -36px;
	padding: 10px;
	background:var(--sub);
	color: #fff;
	font-family: "M PLUS 1p", sans-serif; 
	
}

/*企業名ループスライド*/

.swiper{
  position: relative;
  top: 0 ;
  overflow: hidden;
  display: flex;
  width: 100%;
  align-items: center;
  height: auto;
  padding-bottom: 0px;
  z-index: 3;
}

.first-swiper{
	margin-bottom: 15px;
}

.swiper-wrapper {
  display: flex;
  -webkit-animation: swiper-slide 80s  infinite linear ;
  animation: swiper-slide 80s infinite linear ;
}

@-webkit-keyframes  swiper-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes swiper-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.swiper-wrapper2 {
  display: flex;
  -webkit-animation: swiper-slide2 80s -40s infinite linear ;
  animation: swiper-slide2 80s -40s infinite linear ;
}

@-webkit-keyframes  swiper-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes swiper-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}


.swiper-wrapper3 {
  display: flex;
  -webkit-animation: swiper-slide3 80s  infinite linear ;
  animation: swiper-slide3 80s infinite linear ;
}

@-webkit-keyframes  swiper-slide3 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes swiper-slide3 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.swiper-wrapper4 {
  display: flex;
  -webkit-animation: swiper-slide4 80s -40s infinite linear ;
  animation: swiper-slide4 80s -40s infinite linear ;
}

@-webkit-keyframes  swiper-slide4 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes swiper-slide4 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}

.swiper-slide img{
	height: 35px;
	margin-left: 25px;
}

@media screen and (min-width:1200px) {
	#pc-nav{
		display: block;
	}
}
/*ナビゲーションホバーアニメ*/
/*パソコンナビゲーション*/


/*パソコンQR案内*/
#QR-box{
	position: absolute;
	bottom: 25px;
	right: 0;
	width: 420px;
	display: flex;
	background-color:#fff;
	border-left: solid 5px var(--main);
}

#QR-box img{
	width: 100px;
	border: solid 1px #000;
	margin: 25px;
}

#QR-p{
	padding: 25px 25px 25px 45px;
}

#QR-p h2{
	font-family: "ヒラギノ角ゴ Pro W3";
	font-size: 1.3rem;
	text-align: justify;
	padding: 15px 0;
	line-height: 1.5rem;
}

#QR-caption{
	font-family: "ヒラギノ角ゴ Pro W3";
	font-size: 0.8rem;
	color:var(--main);
}

#QR-yajirushi{
	position: relative;
    display: inline-block;
    color: #333;
    text-decoration: none;
    outline: none;
}

#QR-yajirushi::before{
    content: '';
	position: absolute;
    bottom:0px;    
    width: 100%;
    height: 1px;
	background:#333;
    transition: all .3s;
}

#QR-yajirushi::after{
    content: '';
	position: absolute;
    bottom:4.5px;
    right:0;   
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(35deg);
    transition: all .3s;
}



/*パソコン スライドショー*/
#mainimg{
	width: calc( 50% - 225px);
	height: 100%;
	position:fixed;
	top: 0 ;
	right: 0;
	z-index: -1;
	display: none;
}
@media screen and (min-width:1200px) {
	#mainimg{
		display: block;
	}
}

/*パソコン スライドショー*/

/*スマホ特化*/
#smaho-first{
	width: 100%;
	max-width: 450px;
	margin: 0 auto ;
	height: 100%;
	background-color: #fff;
	position: relative;
	font-family: "ヒラギノ角ゴ Pro W3";
}

/*スマホ特化*/
/*スマホサイズ共通囲い
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.smaho-box{
	position: relative;
	width: 100%;
	max-width: 488px;
	margin: 0 auto ;
}

/*ヘッダー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
header{
	position: fixed;
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	height: 55px;
	z-index: 1000;
	background-color: #000;
}

header #logo{
	width: 80px;
}

header #logo img{
	width: 80px;
	position: relative;
	z-index: 1000;
	padding: 12px;
	margin: auto 0;
}

/*フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
footer{
	position: relative;
	z-index: 10;
	padding: 15px;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3";
	background-color: var(--sub);
	font-size: 0.9rem;
	color: #fff;
	text-decoration: none;
	line-height: 1.2rem;
}

footer a{
	display: inline-block;
	margin: 0;
	text-decoration: none;
	color: lightgrey;
	font-size: 0.8rem;
}

footer .pr{
	color: lightgrey;
}

/*メイン 内容
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
main{
	padding:00 0 0 ;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	background-color: #fff;
}

.iro{
	color:var(--main);
}

#sp-main{
	position: relative;
	width: 100vw;
	height: 100vh;
	background: url("../images/mainback.jpg");
	background-position: center;
	background-size: cover;
}

@media screen and (min-height:700px) {
	#sp-main{
		width: 100vw;
		height: 80vh;
		min-height: 667px;
	}
}

@media screen and (min-height:1150px) {
	#sp-main{
		width: 100vw;
		height: 65vh;
		min-height: 667px;
	}
}


@media screen and (min-width:700px) {
	#sp-main{
		width: 100%;
	}
}

#sp-date{
	display: flex;
	width: 80%;
	position: absolute;
	left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
	bottom: 30%;
	background:  rgba(255,255,255,0.8);
	border-radius: 3px;
	padding:25px;
	align-items: center;
	justify-content: center;
}

#sp-event-date{
	width: 35%;
}

.sp-date{
	display: flex;
	font-family: "Anton SC", sans-serif;
  	font-weight: 400;
	color: var(--main);
	align-items: baseline;
	justify-content: center;
}

.sp-date-small{
	font-size: 1.8rem;
}

.sp-date-big{
	font-size: 3.6rem;
}

.sp-date-big span{
	font-weight: 500;
	font-family: "Oswald", sans-serif;
}

.sp-week{
	width: 100%;
	border-radius: 3px;
	padding: 5px ;
	background: var(--sub2);
	color: #fff;
	text-align: center;
	font-weight: bold;
	margin-top: 3px;
}

#sp-event-info{
	margin-left: 30px;
}

.sp-event-tag{
	display: flex;
	margin-bottom: 10px;
	align-items: center;
	font-family: "M PLUS 1p", sans-serif; 
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 1.3rem;
}

@media screen and (min-width:430px) {
	.sp-event-tag{
		font-size: 1.2rem;
		line-height: 1.4rem;
	}
}


.sp-event-tag:last-child{
	margin-bottom: 0;
}

.sp-tag{
	width: 60px;
	color: #fff;
	background: var(--sub3);
	padding: 10px 0;
	text-align: center;
	border-radius: 3px;
	margin-right: 10px;
	font-weight: 500;
	font-size: 0.8rem;
}

@media screen and (min-width:600px) {
	
	.sp-tag{
		font-size: 1rem;
		margin-right: 15px;
	}
}


/*ループスライダー-------------------------------------------*/
.loop-box{
	position: relative;
	height: 100%;
	width: 100%;
} 

.loop-wrap {
  position: fixed;
  bottom: 0px;
  display: -webkit-flex;
  display: flex;
  ustify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  overflow: hidden;
  mix-blend-mode: overlay;
}

.loop-wrap img {
  width: auto;
  max-width: fit-content;
  height: 100%;
  will-change: transform;
}

.loop-wrap img:first-child {
  -webkit-animation: loop 100s -50s linear infinite;
  animation: loop 100s -50s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.loop-wrap img + img {
    -webkit-animation: loop2 100s linear infinite;
    animation: loop2 100s linear infinite;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

#sp-title{
	position: absolute;
	top: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
	width: 90%;
	height: auto;
}

#sp-company-list{
	position: absolute;
	bottom: 25px;
	width: 100%;
	background: rgba(255,255,255,1);
	padding: 25px 0;
}

.maker-tag{
	position: absolute;
	top: -36px;
	padding: 10px;
	background:var(--sub);
	color: #fff;
	font-family: "M PLUS 1p", sans-serif; 
	
}

/*企業名ループスライド*/

.swiper{
  position: relative;
  top: 0 ;
  overflow: hidden;
  display: flex;
  width: 100%;
  align-items: center;
  height: auto;
  padding-bottom: 0px;
  z-index: 3;
}

.first-swiper{
	margin-bottom: 15px;
}

.sp-swiper-wrapper {
  display: flex;
  -webkit-animation: swiper-slide 80s  infinite linear ;
  animation: swiper-slide 80s infinite linear ;
}

@-webkit-keyframes  swiper-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes swiper-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.sp-swiper-wrapper2 {
  display: flex;
  -webkit-animation: swiper-slide2 80s -40s infinite linear ;
  animation: swiper-slide2 80s -40s infinite linear ;
}

@-webkit-keyframes  swiper-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes swiper-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}


.sp-swiper-wrapper3 {
  display: flex;
  -webkit-animation: swiper-slide3 80s  infinite linear ;
  animation: swiper-slide3 80s infinite linear ;
}

@-webkit-keyframes  swiper-slide3 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes swiper-slide3 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.sp-swiper-wrapper4 {
  display: flex;
  -webkit-animation: swiper-slide4 80s -40s infinite linear ;
  animation: swiper-slide4 80s -40s infinite linear ;
}

@-webkit-keyframes  swiper-slide4 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes swiper-slide4 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}

.sp-swiper-slide img{
	height: 25px;
	margin-left: 15px;
}


#mainimg2{
	width:100%;
	height: 500px;
	clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
	position: relative;
}

.slide-cyuui{
	position: absolute;
	bottom: 50px;
	text-align: center;
}

#mainimg2 h1{
	margin: 0 auto;
	margin-bottom: 10px;
	display: inline-block;
	padding: 10px;
	font-family: M PLUS Rounded;
	color: #000;
	background-color: #fff;
	font-weight: 700;
	letter-spacing: 0.1rem;
}

#mainimg2  .h1-small{
	font-size: 0.8rem;
	padding: 5px;
	color: var(--main);
}

.come-tokuten{
	padding: 50px 25px 25px 25px;
	background: #fff;
	overflow:hidden;/*アイテム１のハミだし調整*/
}

@media screen and (min-width:450px) {
	.come-tokuten{
	overflow: visible;/*アイテム１のハミだし調整*/
	}
}

.border-box{
	border: solid 2px var(--main);
	padding: 0px 15px 15px 15px;
	position: relative;
	text-align: center;
}

.section-title{
	position: relative;
	top: -15px;   
	margin: 0 auto;
	padding: 0 20px;
	display: inline-block;
	background: #fff;
	font-family: "nitalago-ruika", sans-serif;
	font-style: normal;
	font-size: 1.7rem;
	letter-spacing: 0.05rem;
	color: var(--title);
}

.section-shita{
	margin: 0 auto;
	margin-bottom: 15px;
	width: 50px;
	height: 5px;
	border-radius: 50px;
	background: var(--sub3);
}

#item1{
	position: absolute;
	right: -40px;
	width: 150px;
	bottom: -15px;
}

@media screen and (min-width:700px) {
	#item1{
		right: -60px;
	}
}

#tokuten-p{
	width: calc(100% - 80px);
}

.iro{
	color: var(--iro);
	 
}

.all-p{
	text-align: justify;
	line-height: 1.4rem;
	font-weight: bold;
	color: #000;
}

/*--注意--*/
.cyuui-flex{
	display: flex;
	color: var(--main);
	font-size: 0.8rem;
	margin-top: 10px;
}

.cyuui-mark{
	width: 1rem;
}

/*--注意--*/

#item2{
	position: absolute;
	right: -40px;
	width: 140px;
	bottom: -15px;
}

@media screen and (min-width:700px) {
	#item2{
		right: -60px;
	}
}

#present-p{
	width: calc(100% - 100px);
}

.present-copy{
	padding: 15px;
	border-radius: 3px;
	background: #e5f4fc;
	text-align: justify;
	margin-bottom: 10px;
	line-height: 1.4rem;
	font-family: "M PLUS 1 Code", monospace;
    font-weight: 600;
	letter-spacing: 0.08rem;
	color: var(--sub);
}

.keikou{
	background:linear-gradient(transparent 60%, #fff100 60%);
}

.present-img{
	width: 100%;
	height: 180px;
	background-image: url("../images/present.jpg");
	background-position: center;
	background-size: cover;
	border-radius: 3px;
	margin-bottom: 10px;
}

.present-title{
	color: var(--iro);
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: bold;
}

.present-flex{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.flex-item2{
	font-size: 0.6rem;
}

.title-luvi{
	font-size:0.8rem;
	font-weight: normal;
	margin-top: 5px;
}


.medama-img{
	width: 100%;
	height: 180px;
	background-image: url("../images/medama.jpg");
	background-position: center;
	background-size: cover;
	border-radius: 3px;
	margin-bottom: 10px;
}



#medama-nedan{
	width: 100%;
	padding: 15px;
	background-image: url("../images/medama-back.jpg");
	background-position: center;
	background-size: cover;
	border-radius: 3px;
}

#medama-nedan img{
	width: 80%;
}

.medama-cap{
	display: inline-block;
	
}

#seminar{
	width: 100%;
	padding: 50px 0px 20px 0 ;
	background-image: url("../images/seminar-back.jpg");
	background-size: cover;
	background-position: center;
}

.section-title2{
	text-align: center;
	color: #fff;
	font-family: "nitalago-ruika", sans-serif;
	font-style: normal;
	font-size: 1.7rem;
	letter-spacing: 0.05rem;
	margin-bottom: 15px;
}

.seminar-img{
	width: 100%;
	margin-bottom: 15px;
}


.seminar-info{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	margin:15px 0;
	
}

.s-info-cap{
	background:#fff;
	padding: 7.5px;
	color: #1f4725;
	border-radius: 3px;
	margin-right: 10px;
	font-size: 1rem;
}

.info-s{
	font-size: 0.9rem;
	font-weight: normal;
	border: solid 1px #fff;
	padding: 5px;
	margin-left: 20px;
}


.seminar-box{
	border: solid 5px #ab871f;
	margin: 15px 20px;
}

.seminar-flex{
	display: flex;
	justify-content: space-between;
	margin: 25px;
}

.seminar-title{
	display: inline-block;
	background: #fff;
	padding: 10px;
	color: var(--title);
	font-size: 1.3rem;
	font-weight: bold;
}

.seminar-time{
	display: flex;
	color: #FFEF00;
	align-items: center;
}

.time-cap{
	display: inline-block;
	border: solid 1px #FFEF00;
	padding: 5px;
}

.time-time{
	line-height: 1.3rem;
	margin-left: 10px;
}

.seminar-p{
	color: #fff;
	line-height: 1.3rem;
	text-align: justify;
	margin: 20px;
	margin-bottom: 10px;
	letter-spacing: 0.025rem;
}

.seminar-koushi{
	text-align: center;
	color: #1f4725;
	margin: 0 20px;
	margin-bottom: 20px;
	padding: 5px;
	background: rgba(255,255,255,0.5);
}

.iro2{
	color: #FFEF00;
	margin-bottom: 10px;
}

.koukoku{
	width: 100%;
	height: auto;
	margin-bottom: -2px;
}

#web{
	background: #6c757d;
	text-align: center;
}

.web-img{
	width: calc(100% - 50px);
	margin: 20px auto;
}

#pdf{
	background: var(--sub);
	padding:50px 0px 20px 0;
	margin-top: 25px;
}

.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:100%; 
    margin:0 auto;
}

.slider img {
    width: auto;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: 350px;
}

@media screen and (min-width:700px) {
	.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
		width:120%; 
		margin:0 auto;
		left: -10%;
	}
	.slider img {
		height: 500px;
	}

}


.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 1;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 82%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 20px;
    width: 20px;
	z-index: 5;
}



.slick-prev:before, .slick-next:before{
	display: none;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: 10%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: 10%;
    transform: rotate(45deg);
	top: calc(82% + 1px);
}

@media screen and (min-width:700px) {
	.slick-prev, 
	.slick-next {
		position: absolute;/*絶対配置にする*/
		top: 82%;
		cursor: pointer;/*マウスカーソルを指マークに*/
		outline: none;/*クリックをしたら出てくる枠線を消す*/
		border-top: 2px solid #fff;/*矢印の色*/
		border-right: 2px solid #fff;/*矢印の色*/
		height: 20px;
		width: 20px;
		z-index: 5;
	}
	.slick-prev {/*戻る矢印の位置と形状*/
		left: 12%;
		transform: rotate(-135deg);
	}

	.slick-next {/*次へ矢印の位置と形状*/
		right: 12%;
		transform: rotate(45deg);
		top: calc(82% + 1px);
	}	
}



/*ドットナビゲーションの設定*/

.slick-dots {
	width: 90%;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    text-align: center;
	margin: 20px auto 0px auto;
	top: 10px;
	margin-bottom: -20px;
}

.slick-dots li {
    display:inline-block;
	margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:rgba(255,255,255,0.7);/*ドットボタンの現在地表示の色*/
}


@media screen and (min-width:700px) {
	.slick-dots {
		width: 70%;
		position: relative;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		text-align: center;
		margin: 20px 0 0 0;
		left: 15%;
		top: -10px;
		margin-bottom: -20px;
	}
}












/*--よくある質問--*/
.FAQ-box{
	background-color: lightgray;
	padding:  25px;
}

div.accordion {
    display: block;
    line-height: 50px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.5s ease-in;
    position: relative;
    padding-left: 60px;
	padding-top: 2px;
    height: 53px;
    margin: 0;
    background: #FFF;
    margin-bottom: 15px;
	border-left: solid 3px var(--sub);
}

div.accordion:last-child{
	margin-bottom: 0px;
}

.accordion:before {
    content: "Q";
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
	font-weight: 600;
    background:  var(--sub);
    color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}
.accordion.active {
    margin-bottom: 0;
}

div.panel{
    max-height:0;
    overflow:hidden;
    transition: 0.3s ease-out;
}
.panel p {
	border-top: solid 1px var(--sub);
    padding: 20px 20px 20px 20px;
    background: #fafafa;
    margin: 0 0 15px;
    position:relative;
    padding-left: 63px;
	text-align: justify;
	line-height: 1.3rem;
}
.panel p:before {
    content: "A";
    position: absolute;
    left: 18px;
	top: 13px;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
    background: var(--main);
    color: #fff;
    border-radius: 50%;
	font-weight: 600;
}
.acco{
  position:relative;
}
div.accordion:hover{
	border-left: solid 3px var(--main);
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
div.accordion:after {
    content: '\02795';
    font-size: 1rem;
    color: #777;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-46%);
}
div.accordion.active:after {
    content: "\2796";
}
/*--よくある質問--*/

/*アクセスbox*/

#access{
	position: relative;
}

#karikakoi{
	position: relative;
	height: 450px;
	background-color: lightgray;
	text-align: center;
}

#karikakoi p{
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 10px;
	width: 80%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
	background-color: #fff;
}

/*アクセスbox*/





