html, body{
	width: 100%;
	height: 100%;
}

html {
	font-size: 62.5%;
	background: #f3f3f3;
	}


body{
	font-family: YakuHanJPs, "Inter", "Zen Kaku Gothic New", sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #444;
	font-weight: 500;
	position: relative;
}

body{
	font-size: 1.8rem;
	line-height: 1.8;
}


@media screen and (max-width: 960px) {

	body{
		font-size: 1.6rem;
	}

}

@media screen and (max-width: 600px) {

	body{
		font-size: 1.5rem;
	}

}

/*---ヘッダ・フッタ---*/

header{
	width: 100%;
	height: 140px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}


header img{
	width: 320px;
	position: absolute;
	top: 30px;
	left: 30px;
}

footer{
	font-size: 1.5rem;
	text-align: center;
	padding: 100px 0;
}



@media screen and (max-width: 960px) {

	header{
		height: 100px;
		top: 0;
	}
	header img{
		width: 280px;
		top: 20px;
		left: 0;
		right: 0;
		margin: auto;
	}
	footer{
		font-size: 1.3rem;
		padding: 75px 0;
	}
}

@media screen and (max-width: 600px) {
	header{
		height: 80px;
		text-align: center;
	}
	header img{
		position: relative;
		height: 35px;
		top: 25px;
		left: 0;
	}
	footer{
		font-size: 1.2rem;
		padding: 50px 0;
	}
	
}

/*---PCナビゲーション---*/

.nav-pc{
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
	position: fixed;
	right: 0;
	top: 50px;
	width: 175px;
	z-index: 100;
}

.nav-pc ul{
	margin-bottom: 25px;
}

.nav-pc li a{
	display: inline-block;
	position: relative;
	margin-bottom: 25px;
}

.nav-pc li a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #444;
	bottom: -7.5px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}

.nav-pc li a:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.nav-pc li.nav-sns{
	font-size: 1.5rem;
}

.nav-pc li.nav-sns img{
	width: 22.5px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}

.nav-pc li a.selected{
	background: #444;
	color: #fff;
	pointer-events: none;
	padding: 7.5px;
	margin-top: -17.5px;
	margin-bottom: 17.5px;
}

@media screen and (max-width: 960px) {
	.nav-pc{
		display: none;
	}
}


/*---SPナビゲーション---*/

.nav-sp-wrap{
	display: none;
}

.btn-nav-sp {
	position: fixed;
	cursor: pointer;
	z-index: 100;
	width: 50px;
	height: 50px;
	background: #fff;
}

.nav-line {
  position: absolute;
  left: 13px;
  width: 25px;
  height: 2px;
  background-color: #333;
  top: 15px;
}

.nav-line:nth-child(2)  {
  top: 24px;
}

.nav-line:nth-child(3)  {
  top: 33px;
}

.overlay-bg {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.overlay-bg.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

#btn-nav-sp.active .line {
  background-color: #000;
}

.nav-sp ul{
	margin: 0;
	padding: 0;
}

.nav-sp ul li {
  padding: 15px 0;
}

.nav-sp ul li a {
  color: #333;
  font-size: 1.8rem; 
  display: block;
  text-decoration: none;
}

.nav-sp  li.nav-sns{
	font-size: 1.5rem;
	font-weight: 500;
}

.nav-sp  li.nav-sns img{
	width: 25px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}

/*---SPナビゲーション-アニメーション---*/

.overlay-bg {
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
}
#btn-nav-sp.active .nav-line:nth-child(1) {
    transform: translateY(9px) translateX(0) rotate(45deg);
}
#btn-nav-sp.active .nav-line:nth-child(2) {
    opacity: 0;
    background: #fff;
}
#btn-nav-sp.active .nav-line:nth-child(3) {
    transform: translateY(-9px) translateX(0) rotate(-45deg);
}
.nav-animation {
  transition: all .6s;
}

@media screen and (max-width: 960px) {
	.btn-nav-sp {
		left: 20px;
		top: 20px;
	}
	.nav-sp-wrap{
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.btn-nav-sp {
		left: 15px;
		top: 15px;
	}
}



/*---ボタン・ラベルフォーマット---*/

.btn-white,
.btn-white-line{
	display: inline-block;
	background: #fff;
	border-radius: 100vh;
	text-align: center;
	line-height: 1;
	transition: 0.3s;
}

.btn-white-line{
	border: 1px solid #333;
}

.label-line{
	display: inline-block;
	border:1px solid #333;
	border-radius: 100vh;
	text-align: center;
	line-height: 1;
}

.btn-large{
	font-size: 1.8rem;
	padding:10px 30px;
}

.btn-small{
	font-size: 1.5rem;
	padding: 5px 12.5px;
}

.btn-white:hover,
.btn-white-line:hover{
	background: #333;
	color: #fff;
}

.content-nav {
	text-align: center;
	margin-bottom: 75px;
}

.content-pager {
	margin-top: 75px;
	margin-bottom: 0 !important;
}

.content-nav li{
	display: inline-block;
	margin-bottom: 10px;
}

.content-nav li span,
.content-nav li a{
	background: #fff;
	border-radius: 10vh;
	font-size: 1.6rem;
	display: block;
	padding: 5px 15px;
	margin: 2.5px;
	transition: .3s;
}

.content-nav li span.current,
.content-nav li a:hover,
.content-nav li a.selected{
	background: #333;
	color: #fff;
}

.content-pager li a{
	width: 40px;
	height: 40px;
	padding: 0;
	line-height: 40px;
}

.btn-footer-area{
	text-align: center;
}

.label-reservation{
	display: block;
	width: 100%;
	text-align: center;
	background: #333;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 10px 0;
}

@media screen and (max-width: 960px) {
	.btn-large{
		font-size: 1.5rem;
		padding:10px 20px;
	}

	.btn-small{
		font-size: 1.3rem;
		padding: 5px 12.5px;
	}

	.content-nav li a{
		font-size: 1.5rem;
	}

	.label-reservation{
		font-size: 1.4rem;
	}

}

@media screen and (max-width: 600px) {
	.btn-large{
		font-size: 1.4rem;
	}

	.btn-small{
		font-size: 1.2rem;
		padding: 2.5px 10px;
	}

	.content-nav{
		margin-bottom: 30px;
		text-align: left;
	}

	.content-pager {
		text-align: center;
		margin-top: 30px;
	}

	.content-nav li a{
		font-size: 1.4rem;
	}

	.content-pager li a{
		width: 35px;
		height: 35px;
		line-height: 35px;
	}

	.label-reservation{
		font-size: 1.3rem;
		padding: 5px 0;
	}
}




/*---コンテンツ-共通---*/
a{
	transition: 0.3s;
}

figure{
	position: relative;
	z-index: 1;
}

img{
	max-width: 100%;
	transition: 0.3s;
	height:auto;
}

a:hover img{
	filter: brightness(75%);
}

.mt-0{
	margin-top: 0 !important;
}

.mb-0{
	margin-bottom: 0 !important;
}

.content-wrap{
	padding: 0 20%;
	margin: auto;
	margin-top: 175px;
}

.content-inner{
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 100px;
}

/*---タイトル・見出し-共通---*/

.side-title{
	position: fixed;
	top: 0;
	left: 50px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.side-title h2{
	font-size: 6rem;
	line-height: 1;
	writing-mode: vertical-rl;
	margin: auto;
}

.side-title-sp{
		display: none;
	}

.pagetitle{
	font-size: 4rem;
	text-align: left;
	margin-bottom: 100px;
	text-align: left;
	line-height: 1;
	border-top: 1px solid #333;
	padding-top: 25px;
}

.title-large span{
	display: inline-block;
	font-size: 2.5rem;
	border-bottom: 1px solid #666;
	margin-bottom: 30px;
}

.title-small{
	font-size: 2rem;
	font-weight: 600;
	border-bottom: 1px dotted #666;
	padding-bottom: 20px;
}

/*---リード文-共通---*/

.content-lead{
	font-size: 2rem;
	line-height: 2;
}

@media screen and (max-width: 960px) {

	.content-wrap{
		padding: 0 50px 0 15% ;
		margin-top: 150px;
	}

	.content-inner{
		row-gap: 75px;
	}

	.side-title{
		left: 25px;
	}

	.side-title h2{
		font-size: 4rem;
	}

	.pagetitle{
		font-size: 2.7rem;
		margin-bottom: 50px;
		padding-top: 15px;
	}

	.title-large span{
		font-size: 2rem;
	}

	.title-small{
		font-size: 1.7rem;
	}

	.content-lead{
		font-size: 1.7rem;
		line-height: 2;
	}

}

@media screen and (max-width: 600px) {
	.content-wrap{
		font-size: 1.5rem;
		padding: 0 25px;
		margin-top: 100px;
	}

	.content-inner{
		row-gap: 50px;
	}

	.side-title{
		display: none;
	}

	.side-title-sp{
		display: block;
		margin-bottom: 30px;
	}

	.side-title-sp h2{
		font-size: 3rem;
	}

	.content-wrap h3{
		font-size: 2.2rem;
		margin-bottom: 30px;
		text-align: left;
		padding-top: 10px;
	}

	.content-lead{
		font-size: 1.7rem;
		line-height: 1.8;
	}

	.content-wrap h4 span{
		font-size: 1.8rem;
	}
}

/*---インデックス---*/

main{
	width: calc(100% - 250px);
	margin-top: 150px;
	margin-bottom: 150px;
}

main div{
	padding-right: 30px;
}

.index-wrap{
	width: calc(100% - 325px);
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 150px;
	padding-left: 50px;
}

.index-inner{
	display: grid;
	grid-template-columns: 2fr 8fr;
	column-gap: 75px;
}

.index-inner h2{
	font-size: 3.5rem;
	border-top: 1px solid #444;
	padding-top: 10px;
}

.index-lead p{
	display: block;
	font-size: 2.2rem;
	line-height: 2;
	margin-bottom: 30px;
}

.index-inner .btn-white{
	margin-right: 10px;
}

.index-event-wrap{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 25px;
	margin-bottom: 50px;
}

.index-event figure{
	margin-bottom: 25px;
	background-color: #eee;
}

.index-event figure img{
	aspect-ratio: 5/7;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.index-event h4{
	line-height: 1.6;
	margin: 10px 0 15px;
}

.index-topics {
	border-top: 1px dotted #999;
	margin-bottom: 30px;
}

.index-topics li{
	display: grid;
	grid-template-columns: 150px 1fr;
	border-bottom: 1px dotted #999;
	line-height: 1.5;
	padding: 20px 10px;
}

.index-topics li a{
	display: block;
}

.index-topics li a:hover{
	opacity: 0.5;
}

.index-topics li time{
	font-size: 1.5rem;
}




@media screen and (max-width: 960px) {
	
	main{
		width: 100%;
		margin-top: 125px;
		margin-bottom: 100px;
	}

	.index-wrap{
		width: 100%;
		padding: 0 50px;
		row-gap: 100px;
	}

	.index-inner{
		column-gap: 30px;
	}

	.index-inner h2{
		font-size: 2.2rem;
		padding-top: 0;
	}

	.index-lead p{
		font-size: 1.8rem;
		margin-bottom: 15px;
	}

	.index-event-wrap{
		grid-template-columns: repeat(2, 1fr);
		column-gap: 40px;
		row-gap: 75px;
		margin-bottom: 30px;
	}

	.index-topics li{
		grid-template-columns: 125px 1fr;
		padding: 15px 10px;
	}

}


@media screen and (max-width: 600px) {
	.index-wrap{
		width: 100%;
		padding: 0 25px;
		row-gap: 75px;
	}

	main{
		width: 100%;
		margin-top: 100px;
		margin-bottom: 50px;
	}

	.index-inner{
		grid-template-columns: 1fr;
	}

	.index-inner h2{
		font-size: 2.5rem;
		margin-bottom: 50px;
	}

	.index-lead p{
		font-size: 1.7rem;
		margin-bottom: 25px;
	}
	
	.index-event-wrap{
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px;
		row-gap: 50px;
		margin-bottom: 25px;
	}

	.index-event{
		font-size: 1.4rem;
	}

	.index-topics li{
		grid-template-columns: 1fr;
		padding: 15px 10px;
	}

	.index-topics li time{
		font-size: 1.3rem;
		margin-bottom: 5px;
	}

}

/*---ACFについて---*/

.about-message{
	display: grid;
	grid-template-columns: 1fr 2fr;
	column-gap: 50px;
}

.about-message p:first-child{
	margin-bottom: 30px;
}

.organization dl,
.partner-link li{
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 20px 15px;
	border-bottom: 1px dotted #666;
}

.organization dd span{
	font-size: 1.6rem;
}

.about-partner p{
	margin-bottom: 100px;
}

.partner-link{
	font-size: 1.7rem;
	margin-top: 100px;
}

.partner-link li{
	grid-template-columns: 8fr 2fr;
	column-gap: 30px;
}

.partner-link li span{
	text-align: right;
}

@media screen and (max-width: 960px) {
	.partner-link{
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 600px) {

	.about-message{
		grid-template-columns: 1fr;
	}

	.about-message img{
		width: 50%;
		margin-bottom: 15px;
	}

	.organization dl{
		grid-template-columns: 1fr;
	}

	.organization dl,
	.partner-link li{
		padding: 10px;
	}

	.organization dd span{
		font-size: 1.3rem;
	}

	.organization h5{
		font-size: 1.7rem;
		padding-bottom: 10px;
	}

	.about-partner p{
		margin-bottom: 50px;
	}

	.partner-link{
		font-size: 1.4rem;
		margin-top: 50px;
	}

}

/*---イベント一覧---*/

.event-list-wrap{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 40px;
	row-gap: 100px;
}

.event-list{
	line-height: 1.5;
}

.event-list a:hover img{
	opacity: 0.7;
}

.event-list figure{
	margin-bottom: 25px;
	background-color: #eee;
}

.event-list figure img{
	aspect-ratio: 5/7;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.event-list h5{
	font-size: 1.9rem;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dotted #999 ;
}

@media screen and (max-width: 960px) {
	.event-list-wrap{
		grid-template-columns: repeat(2, 1fr);
		column-gap: 50px;
		row-gap: 75px;
	}

	.event-list h5{
		font-size: 1.7rem;
	}
}

@media screen and (max-width: 600px) {

	.event-list-wrap{
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px;
		row-gap: 50px;
	}

	.event-list figure{
		margin-bottom: 15px;
	}

	.event-list h5{
		font-size: 1.4rem;
		margin-top: 5px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.event-list p{
		font-size: 1.3rem;
	}

}

/*---イベント詳細---*/

.event-title h3{
	font-size: 3.5rem;
	line-height: 1;
	margin-top: 15px;
}

.event-single-image{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 75px;
}

.event-outline table{
	font-size: 1.7rem;
	margin-bottom: 50px;
	border-top: 1px solid #ccc;
	width:100%;
}

.event-outline table tr{
	border-bottom: 1px solid #ccc;
}

.event-outline table th{
	width: 20%;
	padding: 15px 10px;
}

.event-outline table td{
	padding: 15px 30px;
}

.btn-reservation{
	display: block;
	background: #333;
	text-align: center;
	color: #fff;
	border-radius: 10vh;
	padding: 10px 0;
}

.btn-reservation:hover{
	background: #999;
}

.event-lead{
	font-size: 2rem;
}

.event-program dd{
	margin-bottom: 25px;
}

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

.event-profile-wrap{
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 50px;
}

.event-profile{
	display: grid;
	grid-template-columns: 1fr 2fr;
	column-gap: 50px;
}

.event-profile em{
	display: block;
	font-weight: 600;
	margin-bottom: 15px;
}

.event-profile p{
	font-size: 1.6rem;
	line-height: 1.7;
}

@media screen and (max-width: 960px) {

	.event-title h3{
		font-size: 2.8rem;
	}

	.event-lead{
		font-size: 1.8rem;
	}

	.event-single-image{
		column-gap: 50px;
	}

	.event-outline table{
		font-size: 1.5rem;
		margin-bottom: 30px;
	}

	.event-outline table th{
		width: 20%;
		padding: 15px 10px;
	}

	.event-outline table td{
		padding: 15px 30px;
	}

	.event-profile p{
		font-size: 1.5rem;
	}

}


@media screen and (max-width: 600px) {

	.event-title h3{
		font-size: 2.5rem;
		margin-top: 0;
	}

	.event-single-image{
		grid-template-columns: 1fr;
	}

	.event-single-image img{
		width: 75%;
		margin: auto;
		margin-bottom: 30px;
	}

	.event-outline table{
		font-size: 1.5rem;
		margin-bottom: 25px;
	}

	.event-outline table th{
		width: 25%;
		padding: 10px 0;
	}

	.event-outline table td{
		padding: 10px 0;
	}

	.event-lead{
		font-size: 1.7rem;
	}

	.event-profile{
		grid-template-columns: 1fr;
	}

	.event-profile img{
		width: 50%;
		margin-bottom: 15px;
	}

	.event-profile em{
		font-size: 1.6rem;
		margin-bottom: 5px;
	}

	.event-profile p{
		font-size: 1.4rem;
	}

}


/*---トピックス---*/

.topics-list {
	border-top: 1px dotted #999;
}

.topics-list li{
	display: grid;
	grid-template-columns: 150px 1fr;
	border-bottom: 1px dotted #999;
	line-height: 1.5;
	align-items: center;
	padding: 0 10px;
}

.topics-list li a{
	display: block;
	padding: 25px 0 ;
}

.topics-list li a:hover{
	opacity: 0.5;
}

.topics-list li time{
	font-size: 1.5rem;
}

.topics-single-title h4{
	font-size: 2.8rem;
	line-height: 1.5;
	font-weight: 600;
}

.topics-single-title time{
	font-size: 1.6rem;
}

.topics-single-text p{
	line-height: 2;
}

@media screen and (max-width: 960px) {

	.topics-list li a{
		padding: 20px 0 ;
	}

	.topics-list li time{
		font-size: 1.4rem;
	}

	.topics-single-title h4{
		font-size: 2.2rem;
	}

	.topics-single-title time{
		font-size: 1.5rem;
	}

}

@media screen and (max-width: 600px) {

	.topics-list li{
		grid-template-columns: 1fr;
	}

	.topics-single-title time{
		font-size: 1.4rem;
	}

	.topics-single-title h4{
		font-size: 2rem;
	}
}


/*---取り組み---*/

.activity-list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 50px;
}

.activity-inner{
		order: 1;
}

.activity-list .activity-image{
		order: 2;
	}

.activity-list p{
	margin-bottom: 25px;
}

@media screen and (max-width: 960px) {

	.activity-list{
		column-gap: 30px;
	}

}

@media screen and (max-width: 600px) {

	.activity-list{
		grid-template-columns: 1fr;
	}

	.activity-inner{
		order: 2;
	}
	.activity-list .activity-image{
		order: 1;
		margin-bottom: 15px;
	}
}

/*---提言活動---*/

.proposal-wrap{
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 30px;
}

.proposal-list{
	background: #fff;
	padding: 30px;
	border-radius: 20px;
}

.proposal-list-title{
	margin-bottom: 25px;
}

.proposal-list p{
	font-size: 1.7rem;
}

.proposal-list-title h5{
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.5;
}

.proposal-list-title p{
	font-size: 1.6rem;
	color: #666;
}

.proposal-list .btn-white-line{
	margin-top: 25px;
}

.proposal-list .btn-white-line::before{
	content: url('../images/icon-pdf.svg');
	display: inline-block;
	width: 12px;
	vertical-align: middle;
	margin-right: 10px;
	transition: 0.2s;
}

.proposal-list .btn-white-line:hover::before{
	filter: brightness(0) invert(1);
}

@media screen and (max-width: 960px) {

	.proposal-list{
		padding: 20px;
		border-radius: 15px;
	}

	.proposal-list-title h5{
		font-size: 1.8rem;
	}

	.proposal-list p{
		font-size: 1.6rem;
	}

	.proposal-list-title p{
		font-size: 1.5rem;
	}


}

@media screen and (max-width: 600px) {

	.proposal-list-title{
		margin-bottom: 15px;
	}
	
	.proposal-list-title h5{
		font-size: 1.8rem;
	}

	.proposal-list p{
		font-size: 1.4rem;
	}

	.proposal-list-title p{
		font-size: 1.4rem;
		color: #666;
	}
	.proposal-list .btn-white-line{
		margin-top: 15px;
	}

}

/*---フォーラム・サロン・ステージ・その他---*/

.activity-event-upcoming{
	display: grid;
	grid-template-columns: 2fr 3fr;
	column-gap: 75px;
}

.activity-event-upcoming h5{
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 30px;
}

.activity-event-upcoming p{
	margin-bottom: 30px;
}

.activity-event-upcoming + .activity-event-upcoming{
	margin-top: 75px;
}

.activity-event-list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 30px;
	row-gap: 50px;
}

.activity-event-list img{
	margin-bottom: 15px;
}

.activity-event-list h5{
	font-size: 1.6rem;
	line-height: 1.5;
}

.activity-event-list time{
	font-size: 1.4rem;
	color: #666;
}

.activity-event-image .label-report{
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	color: #fff;
	font-size: 1.5rem;
	text-align: center;
	line-height: 1;
	padding: 7.5px 10px;
	z-index: 1;
}

@media screen and (max-width: 960px) {

	.activity-event-upcoming{
		column-gap: 50px;
	}

	.activity-event-upcoming h5{
		font-size: 2rem;
	}

	.activity-event-upcoming + .activity-event-upcoming{
		margin-top: 50px;
	}

	.activity-event-list{
		grid-template-columns: repeat(3, 1fr);
		column-gap: 30px;
		row-gap: 50px;
	}

	.activity-event-list h5{
		font-size: 1.5rem;
	}

	.activity-event-list time{
		font-size: 1.3rem;
	}

	.activity-event-image .label-report{
		font-size: 1.4rem;
		padding: 6px 8px;
	}

}


@media screen and (max-width: 600px) {

	.activity-event-upcoming{
		grid-template-columns: 1fr;
		row-gap: 25px;
	}

	.activity-event-upcoming img{
		width: 50%;
		margin: auto;
	}

	.activity-event-upcoming h5{
		font-size: 2rem;
		margin-bottom: 15px;
	}

	.activity-event-upcoming p{
		margin-bottom: 15px;
	}

	.activity-event-list{
		grid-template-columns: repeat(3, 1fr);
		column-gap: 20px;
		row-gap: 30px;
	}

	.activity-event-list h5{
		font-size: 1.4rem;
	}

	.activity-event-list time{
		font-size: 1.2rem;
	}

	.activity-event-image .label-report{
		font-size: 1.2rem;
		padding: 5px 7.5px;
	}


}

/*---入会案内---*/
.member-lead em{
	 background: #fff;
	display: block;
	margin-top: 30px;
	padding: 20px;
	text-align: center;
}

.member-lead em small{
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
}

.member-application .btn-white-line{
	margin-top: 30px;
}

@media screen and (max-width: 600px) {

	.member-lead em small{
		font-size: 1.3rem;
	}

}

/*---お問合せ---*/

.form-wrap{
	font-size: 1.7rem;
}

.form-wrap div{
	margin-bottom: 25px;
	padding-top: 25px;
	align-items: center;
	border-top: 1px dotted #999;
}

.form-wrap div label{
	display: inline-block;
	width: 30%;
}

.form-wrap input[type="text"], .form-wrap input[type="email"], .form-wrap input[type="tel"], textarea{
	background: #fff;
	border: 1px solid #ccc;
	padding: 5px;
	width: 65%;
}

.form-wrap input[type="text"].form-postalcode{
	width: auto;
	margin-right: 20px;
}

.selectbox {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.selectbox::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #444;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.selectbox select{
    appearance: none;
    min-width: 230px;
    line-height: 1;
    padding: 12.5px 30px 12.5px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 25px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}

small.require{
	display: inline-block;
	background: #ff6600;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	padding: 5px;
	margin-left: 7.5px;
	border-radius: 5px;
}

.btn-submit{
	text-align: center;
	margin-top: 50px;
}

input[type="submit"]{
	margin: auto;
}

@media screen and (max-width: 960px) {

	.form-wrap{
		font-size: 1.6rem;
	}

	.form-wrap div label{
		width: 35%;
	}

	.form-wrap input[type="text"], textarea{
		width: 60%;
	}

}


@media screen and (max-width: 600px) {

	.form-wrap{
		font-size: 1.5rem;
	}

	.form-wrap div{
		margin-bottom: 20px;
		padding-top: 20px;
	}

	.form-wrap div label{
		display: inline-block;
		width: 100%;
		margin-bottom: 10px;
	}

	.form-wrap input[type="text"], textarea{
		width: 100%;
	}

	small.require{
		font-size: 1.1rem;
		margin-left: 7.5px;
		border-radius: 5px;
	}
}



/*---スライダーの逆戻り停止---*/
/*.slick-slider div { transition: none; }*/


.slider-wrapper {
	overflow: hidden;
}
.slider .slick-slide img{width:100%;height:auto;display:block;}

.text-center{text-align:center;}



/* 自由入力欄 */
.content h2,
.content h3,
.content h4,
.content h5{
	font-weight: 600;
	margin-bottom: 0.25em;
}
.content .title-large + h2:not(:first-child),
.content h3:not(:first-child),
.content h4:not(:first-child),
.content h5:not(:first-child){
	margin-top: 1.25em;
}

.content h2{
	font-size: 1.1em;
}

.content .alignleft {
	float: left;
	margin-right: 20px; /* 右の要素との間隔 */
	margin-bottom: 20px; /* 下の要素との間隔 */
}
.content .alignright {
	float: right;
	margin-left: 20px; /* 左の要素との間隔 */
	margin-bottom: 20px; /* 下の要素との間隔 */
}
.content .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px; /* 下の要素との間隔 */
}
