/*
 Theme Name:   ikisapo105-theme2025
 Description:  ikisapo105-theme2025
 Template:     twentyfifteen
*/


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+Antique:wght@700&display=swap');


/* =============================================================== base */

html,body {
	background: #fff;
	font-size: 62.5%;
}
html{
}
body{
	position: relative;
	height: 100%;
	overflow-x: hidden;
	font-size: 1.7rem;
}
body.is-no-scroll{
	overflow-y: hidden;
    max-height: 100vh;
}
body::before{
	content:none;
}
ul{
	margin:0;
}
ul{
	list-style:none;
}
table {
	border-collapse: collapse;
}

:root{
	/* color */
	--main-vivid:       #ff4000;
	--main-light:       #ec6800;
	--main-dark:        #CC5007;
	--main-moredark:    #b33910;
	--main-bg:          #fdede4;
	--main-border-gnav: #F7CDBB;
	
	--green-vivid:       #00da5c;
	--green-light:	     #92ca40;
	--green-dark:	     #31ae2d;
	--green-moredark:    #2C8754;
	--green-bg:          #f3faf3;
	--green-border-gnav: #ADD6BF;

	--yellow-bg-light:	 #fcfdf4;
	--yellow-bg:	     #FDFFD2;
	--yellow-marker:	 #FFEB89;
	--yellow:	         #FFDE3A;

	--orange-bg:         #fff5e9;
	--orange:            #fba13d;

	--broun-bg-light:	 #f7f6f1;
	--broun-bg:			 #EFE9DA;
	--brown--border:	 rgba(133, 108, 33, .17);
	--brown-font:	     #A48D48;
	--brown: 			 #856C21;

	--gray-bg-exlight: 	 #f8f8f8;
	--gray-bg-light: 	 #eee;
	--gray-border: 		 #C8C8C8;
	--gray-bg-dark:      #aaa;

	--blue-bg:			 #EBF4FC;
	--blue: 			 #4995D6;
	--blue-font:         #1a7dd3;
	--blue-fb:			 #3B5998;
	--black:			 #444444;

	/* font-size */
	--font-16: 1.6rem;
	--font-18: 1.8rem;
	--font-20: 2rem;
	--font-21: 2.1rem;

	/* font-family */
	--noto: "Noto Sans JP", sans-serif;
	--zen: 'Zen Kaku Gothic Antique', sans-serif;
}

body,
button,
input,
select,
textarea {
	color: #333;
	font-family: 'Noto Sans JP', sans-serif !important;
	font-size: 1.7rem;
	line-height:normal;
	letter-spacing: .05em;
	word-break: break-all;
}
select.wpcf7-form-control{
	max-width:500px;
}
@media(max-width:768px){
	body{
		font-size: 1.5rem;
	}
	input[type="tel"],
	input[type="number"],
	select.wpcf7-form-control{
		width:100%;
	}
}
body:not([class*="actionplan"]) .clear{
	display: flex;
	justify-content: space-between;
}
body:not([class*="actionplan"]) .clear::before,
body:not([class*="actionplan"]) .clear::after{
	display: none !important;
}

/* フォント　書体 */
.noto{
	font-family: 'Noto Sans JP', sans-serif;
}
.entry-content a,
.entry-content p a {
	color: var(--main-dark);
	font-weight: 500;
}
.entry-content a:not([class*="btn"]),
.entry-content p a:not([class*="btn"]){
    border-bottom: 2px dashed #ddd;
}
.entry-content p a:hover {
	text-decoration: underline;
}


/* 見出し */
h2{
	font-size: 2rem;
}
p{
	margin-bottom:1.2em;
}



/* 画像 */
img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    height: auto;
    max-width: 100%;
    vertical-align: baseline;
}
a img{
	transition: .25s;
	opacity: 1;
}
a:hover img {
	opacity: 0.8;
}

a{
	transition: .25s;
}
a:focus {
	outline: none;
}

hr{
	margin: 2em 0;
}


.post-thumbnail {
	margin: 0 0 20px;
}
.wrapper {
	width: 100%;
	padding: 0 0 40px;
}

@media(max-width:1100px){
	.sp-scroll-wrapper{
		margin: 3em auto 2em;
		position: relative;
	}
	.sp-scroll-wrapper::before{
		content: "";
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		z-index: 100;
		box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
		pointer-events: none;
	}
	.sp-scroll-wrapper:after{
	    content: "";
	    display: block;
	    position: absolute;
	    top: -30px;
	    width: 110px;
	    height: 25px;
	    background: url(./img/ico_scroll.svg) center / 100% no-repeat;
	    left: calc(50% - 55px);
	}
	.sp-scroll-inner{
		overflow-x: auto;
	}
	.sp-scroll{
		min-width: 800px;
	}
}









/* =============================================================== module */
.header {
	padding: 0;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	background-color: #fff;
	border-top: 5px solid var(--main-dark);
	z-index: 2;
}
.header-inner {
	margin: 0 auto;
	padding-top:6px;
	padding-left: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
}
.site-title a{
	display: block;
}
@media(max-width:1100px){
	.site-title a{
		padding-top: 0;
	}
	.site-title a img{
		width: 95%;
		max-width: 350px;
	}
}
.header .h-nav {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.h-nav-btn-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 15px 1em;
    justify-content: flex-end;
    max-width: 395px;
}
.h-nav-btn-search{
	margin-left: 1em;
	width: 100%;
}
.h-nav-btn-search.home-search{
	padding-bottom: 0;
}
.h-nav-btn-search.home-search form{
    height: 35px;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
}
.h-nav-btn-search.home-search form .searchsubmit{
	font-size: 1.5rem;
	font-weight: 500;
	background: var(--broun-bg);
    color: var(--brown);
}
.h-nav-btn-search.home-search form input{
	font-size: 1.5rem;
	background: #fff;
}
.h-nav-btn-search.home-search form .searchinput::placeholder{
	font-size: 1.5rem;
}
[class*="h-nav__btn"]{
	width: 180px;
	height: 40px;
	color: var(--brown);
	background: var(--broun-bg);
	border-radius: 7px;
}
[class*="h-nav__btn"] a{
	position: relative;
	padding-left: 55px;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	color: var(--brown);
	font-size: var(--font-16);
	font-weight: 500;
}
[class*="h-nav__btn"] a::before{
    content: "";
    position: absolute;
    display: block;
    border-right: 1px solid var(--brown--border);
    left: 4px;
    width: 41px;
    height: 100%;
    background: url(img/ico_mail.svg) center / 22px auto no-repeat;
}
.h-nav__btn-tel a:before{
	background: url(img/ico_tel.svg) center / 22px auto no-repeat;
}
.h-nav__yoyaku{
	margin-left: 1em;
	padding: 0 10px;
    max-width: 240px;
    background: var(--green-dark);
    border-radius: 0 0 10px 10px;
}
@media(max-width:1100px){
	.h-nav{
		display: none !important;
	}
}

/* .header .h-nav .search {
	margin: 15px 0 0;
}
.header .h-nav .search .s {
	width: 75%;
	height: 34px;
	padding: 5px 7px;
	float: left;
	border-right: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	box-sizing: border-box;
}
.header .h-nav .search .searchsubmit {
	width: 25%;
	height: 34px;
	padding: 5px;
	float: right;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	box-sizing: border-box;
	background: var(--green-light);
} */

.g-nav {
	padding: 1em 0;
	position: relative;
	width: 100%;
	background: #fff;
	z-index: 2;
}
.g-nav .inner {
	width: 100%;
	max-width: 1200px;
	height: 62px;
	padding: 0;
	margin: 0 auto;
	background: var(--main-bg);
	border-radius: 500px;
	transition: all ease-in-out .3s;
	z-index: 2;
}
.g-nav ul {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.g-nav ul li {
	text-align: center;
}
.g-nav ul li > a,
.g-nav ul li > span{
	padding: 0 3em;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 500;
	color: var(--main-dark);
}
.g-nav ul li > span:hover{
	cursor: pointer;
}
.g-nav ul li > span.is-select{
	color: var(--main-vivid);
	text-decoration: underline;
	text-decoration-style: dashed;
	text-underline-offset: 6px;
}
.g-nav ul li:before{
	content: "";
	position: absolute;
	top: calc(50% - 15px);
	left: 0;
	width: 1px;
	height: 30px;
	background-color: var(--main-border-gnav);
}
.g-nav ul li:first-child:before{
	display: none;
}
@media(max-width:1000px){
	.g-nav ul li > a{
		font-size: 1.6rem;
	}
}

/* グロナビ内のアイコンメニュー */
.g-nav-wrapper{
	visibility: hidden;
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    z-index: 100;
	overflow: hidden;
	background: var(--main-bg);
	transition: .3s;
	opacity: 0;
	box-shadow: 0px 10px 30px -17px rgba(0,0,0,0.1),
				7px 7px 30px -17px rgba(0,0,0,0.1);
}
.g-nav-wrapper > div{
	margin: .5em auto 1em;
	padding: 2em 0;
	max-width: 1200px;
	border-radius: 30px;
}
.g-nav-wrapper a{
	position: relative;
	border-radius: 0;
	box-shadow: 0 1px 10px rgba(0,0,0,.1);
	border-radius: 3px;
}
.g-nav .icolist-items{
	height: 145px;
}
.g-nav .icolist-items .icolist-title{
	position: relative;
	color: var(--black);
	font-size: 1.6rem;
	font-weight: 500;
}
.g-nav-wrapper a .icolist-title:after{
	content: "";
    position: relative;
    display: inline-block;
	left: .5em;
    border-top: 6px solid transparent;
    border-left: 9px solid var(--main-light);
    border-bottom: 6px solid transparent;
    border-radius: 3px;
    padding: 0.5px;
    transition: .25s;
    opacity: 0;
}
/*.g-nav__icolist-dantai .g-nav-wrapper a .icolist-title:after{
	border-left: 9px solid var(--green-dark);
}
.g-nav__icolist-dantai a:hover .icolist-title{
	color: var(--green-dark);
}*/
.g-nav-wrapper a:hover .icolist-title:after{
	opacity: 1;
}
.g-nav .icolist-items img{
	display: block;
	margin: 0 auto;
	width: 100px;
}
.g-nav .icolist-items .icolist-text{
	display: none;
}
.g-nav [class*="g-nav__icolist"] span{
	position: relative;
}
.g-nav [class*="g-nav__icolist"] span:before,
.g-nav [class*="g-nav__icolist"] span:after{
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	top: calc(50% - 9px);
	right: 10px;
	background: var(--main-light);
	border-radius: 100%;
}
.g-nav [class*="g-nav__icolist"] span:after{
	background: url(./img/ico_gnav_arrow.svg);
	transition: .25s;
}
.g-nav [class*="g-nav__icolist"] span.is-select:after{
	transform:scale(1,-1);
}




/* グロナビのアイコンメニューオープン時の背景 */
.g-nav-back{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .3s;
	background: rgba(0, 0, 0, 0);
	z-index: -1;
}
.g-nav-back.is-open{
	z-index: 1;
	background: rgba(0, 0, 0, 0.65);
}
.g-nav-wrapper.is-visible{
	visibility: visible;
	opacity: 1;
}


.g-nav .rsv {
	width: 202px;
	float: right;
}
.g-nav .rsv a {
	display: block;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size:11px;
	color: #fff;
	letter-spacing: 0.1em;
	border-radius: 5px;
	background: var(--orange);
	box-sizing: border-box;
	transition: all ease-in-out .2s;
}
.g-nav .rsv a:hover {
	background: #FFC000;
}
.g-nav.fixed {
    position: fixed;
    margin: 0;
	padding: 1em 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #fff;
    box-shadow: 0 0px 8px #eee;
}
.g-nav.fixed .inner {
	height: auto;
	padding: 10px 0;
}
.g-nav.fixed .inner a {
	/* height: 40px; */
	line-height: 40px;
}
@media(max-width:1100px){
	.g-nav{
		transform: translateX(-100%);
	}
}


/* グロナビ スマホの開閉ボタン */
.sp-menubtn,
.g-nav-sp{
	display: none;
}
@media(max-width:1100px){
	.header{
		border-top: none;
	}
	.g-nav{
		display: none;
	}
	.header-inner{
		padding: .5em 0;
		position: relative;
		background: #fff;
		border-top: 5px solid var(--main-dark);
		border-bottom: 1px solid #ddd;
		z-index:3;
	}
	.site-title{
		margin-top: 2px;
		margin-left: 10px;
		flex-basis: 58%;
	}
	.sp-menubtn{
		margin: 0 10px 0 0;
		padding-top: 5px;
		display: block;
		width: 123px;
		height: 55px;
		background: var(--broun-bg);
		border-radius: 3px;
		color: var(--brown);
		text-align: center;
		font-size: 1.3rem;
		font-weight: 700;
		line-height: 1.3;
		box-shadow: 2px 4px 4px rgba(0,0,0, 0.02);
	}
	.sp-menubtn::after{
		content: "";
		display: block;
		height: 14px;
		width: 100%;
		background: var(--brown);
		-webkit-mask-image: url(img/ico_arrow_white.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		mask-image: url(img/ico_arrow_white.png);
		mask-size: contain;
		mask-repeat: no-repeat;
		mask-position: center;
		transition: .25s;
		transform: rotate(90deg);
	}
	.sp-menubtn.is-active::after{
		transform: rotate(90deg) scale(-1,1);
	}
	.g-nav-sp{
		display: block;
		position: absolute;
		width: 100%;
		transform: translateY(-100%);
		transition: .5s;
		z-index: 1;
	}
	.g-nav-sp.is-active{
		transform: translateY(0);
	}
	.g-nav-sp ul{
		padding: 1.5em 1.5em 9em;
		height: 100vh;
		background: var(--main-bg);
		overflow: scroll;
	}
	.g-nav-sp .home-search{
		padding-top: 0;
		padding-bottom: 2em;
	}
	.g-nav-sp .home-search form{
		margin: 0 13px;
		height: 48px;
		border: 1px solid var(--gray-border);
		border-radius: 3px;
	}
	.g-nav-sp .home-search form input{
		font-size: 1.8rem;
		letter-spacing: .1em;
	}

	.g-nav-sp .g-nav-category{
		margin-bottom: 1em;
		padding: .8em 1em;
		position: relative;
		color: var(--main-dark);
		background: #fff;
		border-radius: 5px;
		font-weight: 700;
		font-size: 2rem;
		overflow: hidden;
		z-index: 2;
		box-shadow: 0 0 5px rgb(203 220 215);
	}
	.g-nav-sp .g-nav-category a{
		display: block;
		width: 100%;
		height: 100%;
		color: var(--main-dark);
	}
	.g-nav-sp .g-nav-wrapper{
		position: relative;
		display: block;
		visibility: visible;
		top: 0;
		background: transparent;
		opacity: 1;
		overflow: visible;
		box-shadow: none;
	}
	.accordion_one .accordion_inner {
		display: none;
	  }
	.accordion_one .accordion_inner .box_one {
		height: 100%;
	  }
	  .g-nav-sp .home-maincontent__iconinner{
		gap: 6vw 6vw;
		padding: 0;
	  }
	  .g-nav-sp .g-nav-wrapper > div{
		margin-bottom: 0;
		padding: 1.5em 0 1em;
	  }
	  .g-nav-sp .icolist-items{
		padding: .5em 0 0;
		    flex-basis: calc( calc(100% - 6vw) / 2 );
		height: auto;
		border-radius: 5px;
	  }
	  .g-nav-wrapper a .icolist-title:after{
		display: none;
	  }
	  .g-nav-sp .icolist-icon{
		text-align: center;
	  }
	  .g-nav-sp .icolist-items img{
		width: 60%;
		display: block;
		margin: 0 auto;
	  }
	  .g-nav-sp .icolist-items .icolist-title{
		font-size: clamp(1.3rem, 3.6vw, 1.9rem);
	  }
	  .g-nav-sp .icolist-items .icolist-title{
		color: var(--main-dark) !important;
		text-align:center;
	  }
	  .g-nav-sp .icolist-text{
		display: none;
	  }
	  .g-nav-sp .g-nav-sp-shimin,
	  .g-nav-sp .g-nav-sp-dantai,
	  .g-nav-sp .g-nav-sp-job{
		background: var(--main-light);
		color: #fff;
	  }
	  .g-nav-sp [class*="g-nav-sp-"]{
		position: relative;
	  }
	  .g-nav-sp [class*="g-nav-sp-"]:before,
	  .g-nav-sp [class*="g-nav-sp-"]:after,
	  .g-nav-sp .g-nav-category:not([class*="g-nav-sp-"]):after{
		content: "";
		display: block;
		position: absolute;
		top: 20px;
		right: 0.5em;
		width: 1em;
		height: 1em;
		pointer-events: none;
	  }
	  .g-nav-sp [class*="g-nav-sp-"]:before{
		border-radius: 100%;
		background: #fff;
	  }
	  .g-nav-sp [class*="g-nav-sp-"]:after,
	  .g-nav-sp .g-nav-category:not([class*="g-nav-sp-"]):after{
		background: var(--main-light);
		transition: .25s;
		transform: rotate(90deg);

		-webkit-mask-image: url(img/ico_arrow_white.svg);
		-webkit-mask-size: 12px 12px;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;

		mask-image: url(img/ico_arrow_white.svg);
		mask-size: 12px 12px;
		mask-repeat: no-repeat;
		mask-position: center;
	  }
	  .g-nav-sp [class*="g-nav-sp-"].open:after{
		transform: rotate(90deg) scale(-1,1);
	  }
	  .g-nav-sp .g-nav-category:not([class*="g-nav-sp-"]):after{
		background: var(--main-light);
		transform: rotate(0deg);
	  }
	  .g-nav-sp .h-nav__yoyaku{
		margin: 2em auto 0;
		max-width: 300px;
		border-radius: 10px;
	  }
	  @media(max-width:500px){
		.g-nav-sp .icolist-items .icolist-title{
			padding: 0 0.5em;
			letter-spacing: 0;
		}
		.g-nav-sp .icolist-items .icolist-title br{
			display: none;
		}
	  }
}








.fixed-body .header {

}



.content {
	margin: 0 auto;
	padding: 60px 0 10px;
	gap: 3em;
	width: 91%;
	max-width: 1200px;
	line-height: 1.8;
}
.home .content{
	width: 100%;
	line-height: 1.5;
}
.content-area {
	flex: 1;
}
@media(max-width:1100px){
	.content{
		display: block !important;
	}
	@media(max-width: 768px){
		.content{
			width: 92%;
		}
	}
}
.pnav {
	padding: 12px 0;
	border-top: 3px solid #eee;
	border-bottom: 1px solid #eee;
	background-color: #fff;
}
.breadcrumbs {
	padding: 0.5em;
	width: 91%;
	max-width: 1200px;
	margin: 0 auto;
	font-size: 1.3rem;
	color: #777;
	background: #f8f8f8;
}
.breadcrumbs span{
	padding: 0 .5em;
}
.breadcrumbs a {
	color: #777;
}
.breadcrumbs a:hover {
	color: var(--main-dark);
}
@media(max-width:1100px){
	.breadcrumbs{
		margin-top: 1em;
	}
}
@media(max-width:768px){
	.breadcrumbs{
		display: none;
	}
}


.site-main {
}
.site-acmain {
	width: 720px;
	float: left;
}
.site-acmain2 {
	margin: 0 auto;
	max-width: 1200px;
}
.site-acmain2 > div{
	margin: 0 5%;
}
.entry-title,
.page-title {
	display: block;
	padding: 1em;
	margin: 0 0 40px;
	color: #222;
	font-size: 3rem;
	line-height: 1.4;
	font-weight: 700;
	background: var(--main-bg);
}
.entry-header{

}
.entry-header h2 {
	font-size: 18px;
}
.common-h2 {
	padding: .5em 0;
	margin: 5em 0 1em;
	border-top: 2px solid var(--main-dark);
	border-bottom: 1px solid var(--main-dark);
	color: var(--main-dark);
	font-size: 2rem;
	line-height: 1.3;
}
.entry-content .common-h2:nth-of-type(1){
	margin-top: 0;
}
@media(max-width: 768px){
	.site-acmain2 > div{
		margin: 0;
	}
	.entry-title,
	.page-title{
		font-size: 2.2rem;
	}
	.common-h2{
		text-align: center;
	}
}



.f-data {
	width: 980px;
	padding: 20px 0;
	margin: 0 auto;
	text-align: center;
}
.f-data .left {
	display: inline-block;
	margin: 0 20px 0 0;
	text-align: left;
	vertical-align: middle;
}
.f-data .right {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}


/* 追従CTAボタン */
.ctabtn-sticky{
	position: fixed;
	margin-left: auto;
	padding-top: 35px;
	padding-left: 10px;
	right: 0;
	bottom: 100px;
	width: 260px;
	height: 250px;
	box-sizing: border-box;
	border-radius: 15px 0 0 15px;
	overflow: hidden;
	transition: .25s;
	opacity: 0;
	visibility: hidden;
}
.ctabtn-sticky-inner{
	position: relative;
	display: flex;
	width: 250px;
	height: 206px;
	background: var(--green-light);
	border-radius: 15px 0 0 15px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}
.ctabtn-sticky-inner:before{
    content: "";
    display: block;
    position: absolute;
    top: -33px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: url(./img/home_img_minyakko.svg) 0 0 / 100% auto no-repeat;
}
.ctabtn-sticky.is-visible{
	opacity: 1;
	visibility: visible;
}
.ctabtn-sticky-trig{
	position: relative;
	width: 30px;
	background: var(--green-dark);
	border-radius: 15px 0 0 15px;
}
.ctabtn-sticky-trig:hover{
	cursor: pointer;
}
.ctabtn-sticky-trig:before{
	content: "";
	position: absolute;
    top: calc(50% - 16px);
    left: 3px;
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background: var(--green-light) url(./img/ico_arrow_white.svg) center / 7px auto no-repeat;

}
.ctabtn-sticky-content{
	position: relative;
	width: calc(100% - 30px);
}
.ctabtn-sticky.is-hide .ctabtn-sticky-trig:before{
    transform: scale(-1,1);
}
.ctabtn-sticky-content p{
	margin: 0 .5em;
	padding: 5px 0;
	border-bottom: 2px dashed #fff;
}
.ctabtn-sticky-content a{
	position: relative;
	padding-left: .5rem;
	display: block;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	border-radius: 5px;
	overflow: hidden;
    line-height: 2.4em;
	transition: .25s;

}
.ctabtn-sticky-content p a:hover{
	color: var(--green-light);
	background: #fffffffa;
}
.ctabtn-sticky-content p a::before{
	content: "";
	position: relative;
	display: inline-block;
	top: 5px;
	left: 0;
	width: 52px;
	height: 24px;
	background: #fff;
	border-radius: 3px;
	overflow: hidden;
	mask-repeat: no-repeat;
	mask-size: 32px auto;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 32px auto;
	-webkit-mask-position: center;
}
.ctabtn-sticky-content p a:hover:before{
	background: var(--green-light);
}
.ctabtn-sticky__contact a::before{
	mask-image: url(./img/ico_mail.svg);
	-webkit-mask-image: url(./img/ico_mail.svg);
}
.ctabtn-sticky__faq a::before{
	mask-image: url(./img/ico_faq.svg);
	-webkit-mask-image: url(./img/ico_faq.svg);
}
/* .ctabtn-sticky__btn a{
	transition: .25s;
	border: 2px solid var(--green-light);
}
.ctabtn-sticky__btn a:hover{
	border: 2px solid #fffffffa;
} */
.ctabtn-sticky__btn img{
	width: 205px;
	height: auto;
}
.ctabtn-sticky__btn a:hover img{
	opacity: 1;
}
@media(max-width: 1100px){
	.ctabtn-sticky{
		display: none !important;
	}
}
.under {
	text-decoration: underline;
	font-weight:bold
}




/*---------------------------------------------------------   サイトトップ トップページ */
.home #page{
	background: url(./img/home_bg01.webp) center bottom / 100% auto no-repeat fixed;
}
.home #page.wrapper{
	padding-bottom: 0;
}
.home .content{
	padding-top: 0;
	padding-bottom: 0;
	display: block;
	max-width: 100%;
}
.home section:not(.home-maincontent){
	background: #fff;
}
.home .section-inner{
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}
.home-slider{
}
.home-slider .section-inner {
	margin: 0 auto;
	width: 95%;
	max-width: 1200px;
}
.home-slider li {
	border-radius: 15px;
	overflow: hidden;
}
.home-slider #metaslider_99343 .flex-control-nav{
    text-align: right;
    position: absolute;
    right: 1em;
    bottom: 1em !important;
}
.home-slider #metaslider_99343 .flex-control-nav a{
    color: transparent;
}
.flex-control-nav {
	bottom: -25px !important;
}
.metaslider .flexslider{
	margin-bottom: 0 !important;
}
@media(max-width:1200px){
	.home .section-inner{
		width: 95%;
	}
	@media(max-width:768px){
		.home #page{
			background: url(./img/home_bg01.webp) center / auto 100% no-repeat fixed;
		}
		.home .section-inner{
			width: 95%;
		}
		.home-slider{
			padding-top: 1em;
		}
		.home-slider .section-inner{
			width: 98%;
		}
		.home-slider #metaslider_99343 .flex-control-nav{
			position: relative;
			bottom: -5px !important;
			right: 0;
			width: 100%;
			text-align: center;
		}
		.home-slider #metaslider_99343 .flex-control-nav a{
			color: transparent;
			width: 8px;
			height: 8px;
		}
	}
}


/* サイトトップ　サイト内検索 */
.home-search{
	padding-bottom: 290px;
}
.home-search-inner{
	margin: 0 auto;
	padding: 0 3em 1.5em;
	position: relative;
	top: -40px;
	width: 80%;
    max-width: 554px;
	border: 20px solid #fff;
	background: var(--broun-bg);
	border-radius: 40px;
}
.home-search p{
	margin-bottom: 5px;
	letter-spacing: .06em;
}
.home-search__mc01{
	position: relative;
	top: -8px;
	color: var(--green-light);
	font-size: var(--font-21);
	font-weight: 700;
}
.home-search__mc02{
	margin-bottom: .5em;
	padding-bottom: 4px;
	color: var(--brown-font);
	font-size: var(--font-16);
	font-weight: 500;
}
.home-search__mc01:before{
	content: "";
	position: relative;
	display: inline-block;
	bottom: -1px;
	left: -.5em;
	width: 40px;
	height: 48px;
	background: url(img/home_ico_leaf.svg) center / contain no-repeat;
}
.home-search__mc02:before,
.home-search__mc02:after{
	position: relative;
	content: "/";
	display: inline-block;
	top: -2px;
	right: -.3em;
	color: var(--brown-font);
}
.home-search__mc02:before{
	left: -.5em;
	transform: scale(-1, 1);
}
.home-search form{
	height: 54px;
	border: 2px solid var(--gray-border);
	border-radius: 8px;
	overflow: hidden;
}
.home-search form .searchinput{
	padding: 0 1.5em;
}
.home-search form .searchinput::placeholder{
	color: var(--brown-font);
	opacity: 0.6;
	font-weight: 500;
	font-family: var(--noto);
	font-size: var(--font-20);
}
.home-search form .searchsubmit{
	padding: 0 .8em;
	background: var(--yellow);
	color: var(--brown);
	font-size: 2rem;
	line-height: 1;
	letter-spacing: .05em;
}
@media(max-width:768px){
	.home-search{
		padding-top: 3em;
		padding-bottom: 160px;
	}
	.home-search-inner{
		padding: 0 1em 1em;
		top: 0;
		width: 90%;
		max-width: 423px;
		background: var(--broun-bg);
		border-radius: 20px;
		border: none;
	}
	.home-search p.home-search__mc01{
		margin-bottom: 0;
	}
	.home-search__mc01:before{
		margin-bottom: 0;
		left: -0.3em;
	}
}


/* ----------------------------サイトトップ 西宮市市民交流センターでできること */
.home-maincontent .section-inner{
	margin-top: -260px;
}
.home-maincontent-h2{
	font-size: 3.6rem;
	text-decoration: underline;
	text-decoration-color: var(--yellow-marker);
    text-decoration-thickness: 0.45em;
    text-underline-offset: -0.16em;
	text-align: center;
}
@media(max-width:768px){
	.home-maincontent .section-inner{
		margin-top: -90px;
	}
	.home-maincontent-h2{
		margin-top: 0;
		font-size: clamp(2.5rem, 6.5vw, 3.5rem);
		line-height: 1.6;
		letter-spacing: .05em;
	}
}

/* できることアイコンメニュー共通 */
[class*="home-maincontent__iconwrapper"]{
	margin-bottom: 3em;
	padding: 2em 4.5% 2.5em;
	position: relative;
}
[class*="home-maincontent__iconwrapper"] p{
	color: #fff;
	font-weight: 500;
	text-align: center;
}
.home-maincontent__iconinner{
	flex-wrap: wrap;
	gap: 2em 4%;
	justify-content: flex-start !important;
	max-width: 1000px;
}
.icolist-items{
	padding-top: .8em;
	padding-bottom: 7px;
	flex-direction: column;
	flex-basis: calc( calc(100% - 12%) / 4 );
	justify-content: space-between !important;
	height: 195px;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	transition: .25s;
	box-shadow: 0 3px 6px rgba(0,0,0,.06);
}
.icolist-items:hover{
	box-shadow: 0 3px 13px rgba(0,0,0,.15);
}
.icolist-items p{
	margin-bottom: 0;
}
[class*="home-maincontent__iconwrapper"] .icolist-items figure{
	display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    overflow: hidden;
	text-align: center;
}
[class*="home-maincontent__iconwrapper"] .icolist-items figure img{
	width: 100px;
}
[class*="home-maincontent__iconwrapper"] .icolist-items figure img{
	opacity: 1 !important;
}
.icolist-items .icolist-title{
	margin-bottom: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	font-size: 1.9rem;
	line-height: 1.2;
	transition: .25s
}
.icolist-items:hover .icolist-title{
	color: var(--main-light);
}
.icolist-items .icolist-text{
	margin: 0 20px;
	padding: 5px 0;
    color: var(--black);
    background: #f4f4f4;
	font-size: 1.45rem;
}
[class*="home-maincontent__"] .wp-block-button__link{
	padding: 0 calc(1.333em + 2px);
	position: relative;
	width: 308px;
	line-height: 73px;
	font-size: 2.2rem;
	font-weight: 500;
	color: #fff !important;
	box-shadow: 0 5px 8px rgba(0,0,0,.16);
	transition: .25s;
	background-color: var(--green-light);
	opacity: 1;
}
[class*="home-maincontent__"] .wp-block-button__link:hover{
	box-shadow: 0;
	opacity: 0.85;
	box-shadow: 0 0 6px rgba(0,0,0,.16);
}
[class*="home-maincontent__"] .wp-block-button__link:after{
	content: "";
	position: absolute;
	display: block;
    top: calc(50% - 7px);
	right: 1em;
    width: 10px;
    height: 17px;
    background: url(./img/ico_arrow_white.svg) center / 100% auto no-repeat;
}
[class*="home-maincontent__"] .wp-block-button__link br{
	display: none;
}
[class*="home-maincontent__"] .wp-block-button__link strong{
    position: absolute;
	top: -3.5em;
	left: 0;
	width: 100%;
    color: var(--black);
    font-size: 16px;
    text-align: center;
}
[class*="home-maincontent__"] .wp-block-button__link strong:before,
[class*="home-maincontent__"] .wp-block-button__link strong:after{
	position: relative;
    content: "/";
    display: inline-block;
    top: -1px;
    right: -0.4em;
    color: var(--black);
	transform: rotate(10deg);
}
[class*="home-maincontent__"] .wp-block-button__link strong:before {
    left: -0.6em;
	transform: scale(-1, 1) rotate(10deg);
}
@media(max-width:1100px){
	.icolist-items .icolist-title{
		font-size: 1.7rem;
	}
	.icolist-items .icolist-text{
		margin: 0 1vw;
		font-size: 1.3rem;
		letter-spacing: 0;
	}
	@media(max-width:768px){
		.home-maincontent .section-inner{
			width: 100%;
		}
		[class*="home-maincontent__iconwrapper"]{
			padding: 1.5em 4% 1.5em;
		}
		.home-maincontent__iconinner{
			gap: 2em 4vw;
		}
		.icolist-items{
			flex-basis: calc( calc(100% - 4vw) / 2 );
		}
		.icolist-items .icolist-title{
			font-size: clamp(1.5rem, 3.8vw, 1.9rem);
			font-weight: 700;
		}
		.icolist-items .icolist-text{
			font-size: clamp(1.2rem, 3.2vw, 1.6rem);
			line-height: 1.3;
		}
		@media(max-width:500px){
			.home-maincontent__iconinner{
				gap: 5vw 4vw;
			}
			.home-maincontent .icolist-items{
				height: 172px;
			}
			.home-maincontent .icolist-items .icolist-title{
			}
		}
	}
}


/* 市民のみなさま */
.home-maincontent__shimin{
	margin-top: 60px;
}
.home-maincontent__iconwrapper-shimin{
	background: var(--main-light);
	border-radius: 120px 30px 30px 30px;
}
[class*="home-maincontent__"] h3{
    font-family: var(--zen);
    font-size: 3.2rem;
    color: var(--main-light);
    margin-bottom: 0.3em;
    letter-spacing: .1em;
}
[class*="home-maincontent__dantai"] h3{
	color: var(--green-dark);
}
.home-maincontent__shimin__img{
    top: -210px;
    left: -120px;
}
[class*="home-maincontent__iconwrapper"] .icolist-items p{
	color: var(--black);
}
@media(max-width:768px){
	.home-maincontent__shimin{
		width: 95%;
		margin-left: auto;
	}
	[class*="home-maincontent__"] h3{
		font-size: clamp(2.3rem, 6vw, 3.5rem);
		letter-spacing: .05em;
	}
	.home-maincontent__iconwrapper-shimin{
		border-radius: 20px 0 0 20px;
	}
	.home-maincontent__shimin__img,
	.home-maincontent__dantai__img{
		display: none;
	}
}



/* 団体のみなさま */
.home-maincontent__dantai{
	margin-top: 120px;
	margin-bottom: 7em;
}
.home-maincontent__iconwrapper-dantai{
	background: var(--green-dark);
	border-radius: 30px 120px 30px 30px;
}
.home-maincontent__dantai__img{
    bottom: -190px;
    right: -120px;
}
.home-maincontent__dantai .wp-block-button__link{
	background-color: var(--blue);
}
.home-maincontent__dantai .icolist-items:hover .icolist-title{
	color: var(--green-dark);
}
@media(max-width:768px){
	.home-maincontent__dantai{
		width: 95%;
		margin-right: auto;
	}
	.home-maincontent__iconwrapper-dantai{
		border-radius: 0 20px 20px 0;
	}
	.home-maincontent__dantai__img{
		bottom: 50px;
		right: -30px;
		width: 55vw;
		max-width: 280px;
	}

}


/* ----------------------------サイトトップ 新着情報 */
.home-news {
	padding: 0 0 20px;
	background: #fffdf4cf !important;
}
.home-news .section-inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1100px;
}
.home-news-lavel{
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}
.home-news-lavel > * {
	margin-bottom: 0;
	flex: 1;
	text-align: center;
	color: #fff;
	height: 60px;
	line-height: 60px;
	transition: .25s;
	opacity: 1;
}
.home-news-lavel > *:hover {
	cursor: pointer;
	opacity: 0.85;
}
.home-news-lavel-01{
	background: #EC6800;
}
.home-news-lavel-02{
	background: var(--main-moredark);
}
.home-news-list{
	padding: 1.5em 0 1.5em;
    background: #fff;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}
.home-news-list li{
	padding: 0 2em;
}
.home-news-list li a{
	padding: 1.2em 5px;
	display: flex;
	justify-content: flex-start;
	border-bottom: 1px solid #ddd;
	font-size: 1.6rem;
	gap:1.5em;
}
.home-news-list li:last-child a{
	border: none;
}
.home-news-list li a br{
	display: none;
}
.home-news-list li .date{
	flex-shrink: 0;
}
.home-news-list li .title{
	font-size: 1.7rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.home-news-list [class*="tax-news_term"]{
	display: block;
	flex-shrink: 0;
	width: 120px;
	height: 28px;
	text-align: center;
	letter-spacing:0;
	line-height:28px;
	background: #ccc;
	color: #fff;
	font-size: 1.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.home-news-list [class*="tax-news_term01"]{background: #B33910;}
.home-news-list [class*="tax-news_term02"]{background: #F5AE20;}
.home-news-list [class*="tax-news_term03"]{background: #F8CE00;}
.home-news-list [class*="tax-news_term04"]{background: #9BDC3A;}
.home-news-list [class*="tax-news_term05"]{background: #61A7E4;}
.home-news-list [class*="tax-news_term06"]{background: #F3777B;}

/* 最初は重要なお知らせを非表示 */
.home-news-list-important{
	display: none;
}
@media(max-width:768px){
	.home-news .section-inner{
		width: 95%;
	}
	.home-news-list{
		padding: 0.5em 0 1.5em;
	}
	.home-news-list li{
		padding: 0 4vw;
	}
	.home-news-list li a{
		padding: 0.8em 5px;
		display: block;
	}
	.home-news-list li .title{
		display: block;
		font-size: 1.4rem;
		font-weight: 500;
		letter-spacing: .05em;
		line-height: 1.4;
	}
	.home-news-list [class*="tax-news_term"]{
		margin: 0.5em 0;
		padding-top: 2px;
		font-weight: 500;
		font-size: 1.5rem;
	}
}


/* ----------------------------サイトトップ 大きいバナー */
.home-bigbnr .section-inner{
	padding: 0px 0;
}
.home-bigbnr a{
	margin: 0 auto;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 1060px;
	max-height: 488px;
	border-radius: 10px;
	overflow: hidden;
}
.home-bigbnr a{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
@media(max-width:768px){
	.home-bigbnr .section-inner{
		width: 95%;
		max-width: 500px;
	}
	.home-bigbnr a{
		max-width: 100%;
		max-height: 100%;
		overflow: visible;
	}
	.home-bigbnr a img{
		margin: 0 auto;
		display: block;
		width: 100%;
		max-width: 400px;
		height: auto;
	}
}


/* ----------------------------サイトトップ 助成金情報 */
.home-subsidy{
	background: var(--main-bg) !important;
}
.home-subsidy .section-inner{
	max-width: 1075px;
}
.home-subsidy-items{
	background: #fff;
	border-radius: 10px;
}
.home-subsidy-items + .home-subsidy-items{
	margin-top: 1em;
}
.home-subsidy-items a{
	position: relative;
	padding: 0 5em 0 4em;
	justify-content: flex-start;
	align-items: center;
	height: 85px;
	color: var(--main-dark);
	font-weight: 500;
	font-size: 2rem;
	transition: .25s;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0);
}
.home-subsidy-items a:after{
	content: "";
    position: absolute;
    top: calc(50% - 12px);
    right: 1em;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 100%;
	transition: .25s;
    background: var(--main-light) url(./img/ico_arrow_white.svg) left 9px top 6px / 7px auto no-repeat;
}
.home-subsidy-items a:hover{
	color: var(--main-vivid);
	box-shadow: 0 0 10px rgba(0,0,0,0.10);
}
.home-subsidy-items a:hover:after{
    background: var(--main-vivid) url(./img/ico_arrow_white.svg) left 9px top 6px / 7px auto no-repeat;
}
.home-subsidy-items p{
	margin-bottom: 0;
}
.home-subsidy-items p:last-child{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-subsidy-items p br{
	display: none;
}
@media(max-width:1100px){
	.home-subsidy .section-inner{
		width: 80%;
	}
	@media(max-width:768px){
		.home-subsidy-items a{
			padding: 0 1em 0 1em;
			height: 100px;
			font-size: 1.5rem;
		}
		.home-subsidy-items p:last-child{
			margin-right: 2.2em;
			padding-right: 0.5em;
			display: -webkit-box;
			font-size: 1.6rem;
			white-space: normal;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 3;
			border-right: 1px solid #d7e9e0;
		}
		.home-subsidy-items a:after{
			right: .8em;
		}
	}
}

/* ----------------------------サイトトップ イベント・セミナー */
.home-event{
	background: #fff !important;
}
.home-event .section-inner{
	max-width: 1075px;
}
.home-event-wrapper{
	padding-top: .5em;
	justify-content: space-between !important;
}
.home-event-items{
	width: 30.5%;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
	transition: .25s;
}
.home-event-items:hover{
	box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.home-event-items a{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.home-event-items a:hover{
    color: var(--black);
}
.home-event figure{
	aspect-ratio: 5/2.5;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-bottom: 1px solid #eee;
}
.home-event figure img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 1.5s cubic-bezier(.11,1.29,.62,.89);
	transform: scale(1);
}
.home-event-items:hover figure img{
	transform: scale(1.2);
}
.home-event-items__title{
	margin: .7em 0 .8em;
	padding: 0 1.2em;
	font-size: 1.7rem;
	font-weight: 500;
	overflow: hidden;
  	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 2;
	transition: .25s;
	color: var(--black);
}
.home-event-items a:hover .home-event-items__title{
	color: var(--main-light);
}
.home-event-items__date{
	margin: 0 auto 1em;
	padding-left:.5em;
	padding-right:.5em;
	padding-bottom: 2px;
	width: fit-content;
	max-width:calc(100% - (1.2em * 2));
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
	background: var(--yellow-bg);
}
@media(max-width:768px){
	.home-event-wrapper{
		gap: 2em 0;
		flex-direction: column;
		width: 90%;
		max-width: 450px;
	}
	.home-event-items{
		width: 100%;
	}
}



/* ----------------------------サイトトップ 求人情報 */
.home-job{
	background: var(--broun-bg-light) !important;
}
.home-job .section-inner{
	max-width:1075px;
}
.home-job .job-archive__item{
	background:#fff;
}
@media(max-width:768px){
	.job-archive{
		width: 90%;
		max-width: 450px;
	}
}



/* ----------------------------サイトトップ fbと団体一覧 */
.home-aside{
	background: var(--main-bg) !important;
}
.home-aside .section-inner{
	flex-direction: row-reverse;
	gap: 1.5em;
}
.home-aside__dantai{
	flex: 1;
}
@media(max-width:768px){
	.home-aside .section-inner{
		flex-direction: column;
		gap: 2em 0;
	}
}

/* facebook */
.home-aside__fb{
	flex-basis: 300px;
    border: 15px solid var(--blue-fb);
    background: var(--blue-fb);
    border-radius: 10px;
}
.home-aside__fb span,
.home-aside__fb span iframe{
	margin-bottom: 0;
	height: 100% !important;
}
.home-aside__fb ._2lqg{
	max-height: 349px !important;
}
@media(max-width:768px){
	.home-aside__fb{
		margin: 0 auto;
		display: block !important;
		width: 100%;
	}
	.home-aside__fb span{
		display:flex !important;
		justify-content:center;
	}
	.home-aside__fb span,
	.home-aside__fb span iframe{
		height: 500px !important;
	}
}


/* 市民活動団体　一覧 */
.home-aside__dantai {
	background: var(--main-light);
	border-radius: 10px;
}
.home-aside__dantai .title {
	padding: 15px 0;
	text-align: center;
	position: relative
}
.home-aside__dantai .title h2 {
	margin-bottom: .5em;
	display: inline-block;
	color: #fff;
	font-size: 2.8rem;
	vertical-align: middle;
}
.home-aside__dantai .title .desc{
	color: #fff;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.4;
	text-align: center;
}
.home-aside__dantai{
	padding: 0 3em 2em;
}
.home-aside__dantai ul{
	padding: 5px;
	display: flex;
	gap: 10px 10px;
	flex-wrap: wrap;
	border-radius: 5px;
	overflow: hidden;
}
.home-aside__dantai li{
	position: relative;
	width: calc( calc(100% - 30px) /4);
	box-sizing: border-box;
}
.home-aside__dantai li a {
	display: block;
	padding: 20px 0;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--main-moredark);
	transition: .05s;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.08);
	white-space: nowrap;
}
.home-aside__dantai li a:hover{
	color: var(--main-light);
	box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.home-aside__dantai li a span{
    text-decoration: underline;
    text-decoration-color: #fffdc8;
    text-decoration-thickness: 0.45em;
    text-underline-offset: -0.16em;
    text-align: center;
	transition: .25s;
}
.home-aside__dantai li a:hover span{
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 0.45em;
    text-underline-offset: -0.16em;
    text-align: center;
}
@media(max-width:1000px){
	.home-aside__dantai{
		padding: 0 3vw 2em;
	}
	.home-aside__dantai .title .desc{
		text-align: left;
	}
	.home-aside__dantai li{
		width: calc( calc(100% - 30px) /3);
	}
	.home-aside__dantai li a{
		padding: 20px 0;
	}
	.home-aside__dantai li:nth-of-type(2) a{
		font-size: 1.6rem;
		letter-spacing: 0;
	}
	@media(max-width:768px){
		.home-aside__dantai{
			padding: 0 1em 2em;
		}
		.home-aside__dantai .title .desc{
			text-align: left;
		}
		.home-aside__dantai ul{
			gap: 15px 15px;
		}

		.home-aside__dantai li a{
			font-size: clamp(1.4rem, 4vw, 1.6rem );
			padding: 15px 5px;
			line-height: 30px;
			font-weight: 700;
			overflow: hidden;
		}
		.home-aside__dantai li:nth-of-type(2) a{
			letter-spacing: -1px;
			font-size: clamp(1.3rem, 3.8vw, 1.4rem );
		}
	}
}






/* ----------------------------サイトトップ　よくあるご質問 */
.home-voice{
	padding-bottom: 1.5em;
	background: #fffdf4cf !important;
}
.home-voice .section-inner{
	background: transparent;
}
.home-voice__wrapper{
	margin: 0 auto;
	padding-top: .5em;
	justify-content: space-between !important;
	width: 90%;
	max-width: 1000px;
}
.home-voice__item{
    position: relative;
    flex-basis: 46%;
    text-align: center;
    background: #fff;
    box-shadow: 2px 3px 10px rgb(0 0 0 / 10%);
    border-radius: 20px;
    border: 8px solid #fff;
    overflow: hidden;
}
.home-voice__item:before{
    content: "";
    position: absolute;
    top: -80px;
    left: -10px;
    width: 70px;
    height: 150px;
    background: var(--yellow);
    transform: rotate(45deg);
	pointer-events: none;
}
.home-voice__item a{
	padding: 2em 0 1em;
	display: block;
	width: 100%;
	height: 100%;
}
.home-voice__item h3{
	margin-bottom: 0.8em;
	color: var(--green-light);
	font-size: 2.4rem;
}
.home-voice__baloon-wrapper{
    margin: 2em auto 0;
    width: 390px;
    text-align: center;
}
.home-voice__baloon{
    position: relative;
	margin-bottom: 0;
	padding: 0.7em 0 1em;
    width: 100%;
    line-height: 75px;
    background: #fff;
    border-radius: 100px;
    font-size: 1.7rem;
    font-weight: 500;
	font-family: var(--zen);
    background: url(./img/home_bg_baloon.svg) 0 .5em / 100% auto no-repeat;
}
.home-voice__baloon-wrapper figure{
	right: -210px;
    bottom: -50px;
}
@media(max-width:768px){
	.home-voice{
		padding-bottom: 0;
	}
	.home-voice__wrapper{
		flex-direction: column;
		gap: 2em;
		max-width: 500px;
	}
	.home-voice__item{
		padding: 1em 0 0.5em;
	}
	.home-voice__item h3{
		margin-bottom: .5em;
	}
	.home-voice__item p{
		font-size: 1.6rem;
	}
	.home-voice__baloon-wrapper{
		width: 100%;
	}
	.home-voice__baloon{
		position: relative;
		left: auto;
		background: none;
		border: 2px solid #ffde3a;
		background: #fff;
		padding: 39px 20px 0;
		width: 90%;
		margin: 0 auto;
		line-height: 1.5;
		height: 110px;
	}
	.home-voice__baloon + figure{
		position: relative;
		right: 0;
		bottom: auto;
		top: -30px;
		width: 100%;
		text-align: center;
	}
}



/*-------------------------------------------------------- フッター */
.footer {
	background: var(--main-dark);
}
@media(max-width:768px){
	.footer {
		padding-bottom: 70px;
	}
}
.footer .copyright {
	padding: 20px 0;
	margin: 0 auto;
	max-width: 1200px;
	color: #fff;
	text-align: center;
	font-size: 1.4rem;
}
.top-mobile {
	padding: 1.5em 0;
	text-align: center;
	background: var(--main-bg);
}
.top-mobile-inner{
	margin: 0 auto;
	padding: 2em;
	display: flex;
	max-width: 970px;
}
.top-mobile .qr {
	width: 90px;
	margin: 0 20px 0 0;
	vertical-align: middle;
}
.top-mobile .text {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}
.top-mobile .text h2 {
	margin: 0 0 5px;
	font-size: 20px;
	color: var(--main-light);
}
@media(max-width:768px){
	.top-mobile{
		display: none;
	}
}

/* フッター　情報欄 */
.footerinfo{
	padding: 3em 1em;
	gap: 4em;
	max-width: 1200px;
	font-size: 1.6rem;
	justify-content: flex-start !important;
}
.footerinfo p{
	margin-bottom: .5em;
	font-size: clamp(1.3rem, 1.5vw, 1.6rem);
}
.footerinfo__info{
	flex-basis: 34%;
}
.footerinfo__info h1{
	margin-bottom: 1em;
}
.footerinfo__info img{
	max-width: 80%;
}
.footerinfo-tel{
	margin-bottom: 1em;
    justify-content: flex-start !important;
    gap: 1.5em;
}
.footer-info-contact{
	gap: 1em;
}
.footer-info-contact p{
	flex: 1;
}
.footer-info-contact a{
	display: block;
	position: relative;
	padding-left: 4.5vw;
	width: 100%;
	height: 100%;
	background: var(--main-dark);
	border-radius: 5px;
	font-weight: 500;
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
	color: #fff;
	line-height: 55px;
	white-space: nowrap;
	transition: .25s;
}
.footer-info-contact a:hover{
	background: var(--main-light);
}
[class*="footer-info-contact_"] a::before{
	content: "";
	position: absolute;
	display: block;
	border-right: 1px solid var(--brown--border);
	left: 4px;
    width: 5vw;
	height: 100%;
	max-width: 55px;
	background: #fff;

	mask-repeat: no-repeat;
    mask-size: 20px auto;
    mask-position: center;
	mask-image: url(./img/ico_mail.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 20px auto;
    -webkit-mask-position: center;
    -webkit-mask-image: url(./img/ico_mail.svg);
}
.footer-info-contact__tel a{
	padding-left: 4vw;
}
.footer-info-contact__tel a:before{
	left: 0;
	width: 4vw;
	mask-image: url(./img/ico_tel.svg);
	-webkit-mask-image: url(./img/ico_tel.svg);
}
@media(min-width:1250px){
	.footer-info-contact a{
		padding-left: 55px;
	}
	.footer-info-contact__tel a{
		padding-left: 47px;
	}
}
@media(max-width:1000px){
	.footerinfo{
		padding: 2em 1em;
		flex-direction: column-reverse;
		align-items: center !important;
	}
	.footerinfo__info{
		margin: 0 auto;
		width: 100%;
		max-width: 500px;
	}
	.home-footerinfo__nav{
		padding: 1em .5em;
		width: 100%;
		background: var(--gray-bg-exlight);
	}
	.footer-info-contact a{
		display: flex;
		padding-left: 0;
		font-size: clamp(1.3rem, 4vw, 2rem);
	}
	.footer-info-contact a span{
		padding-left: .5em;
	}
	[class*="footer-info-contact_"] a::before{
		position: relative;
		width: 10vw;
		mask-size: 25px auto;
		-webkit-mask-size: 25px auto;
	}
}


/* フッターナビ */
.home-footerinfo__nav{
	flex: 1;
}
.footer-nav-list{
	justify-content: flex-start !important;
}
.footer-nav-list-item{
    flex-basis: 200px;
    margin-right: 1.5em;
    padding-left: 1.5em;
}
.footer-nav-list-item +.footer-nav-list-item{
	border-left: 1px solid #ddd;
}
.footer-nav-list-item li + li{
	margin-top: .5em;
}
.footer-nav-list-item a{
	padding: .5em 0;
	display: block;
	font-size: clamp(1.3rem, 1.5vw, 1.6rem);
	font-weight: 500;
	line-height: 1.3;
	transition: .25s;
}
.footer-nav-list-item a:hover{
	color: var(--main-dark);
}
@media(max-width:1000px){
	.footer-nav-list{
		justify-content: center !important;
	}
	@media(max-width:768px){
		.footerinfo{
			padding-top: 1em;
			gap: 3em;
			align-items: flex-start !important;
		}
		.footer-nav-list{
			display: block !important;
		}
		.footer-nav-list-item{
			margin-right: 0;
		}
		.footer-nav-list-item +.footer-nav-list-item{
			margin-top: 0.8em;
			padding-top: 0.8em;
			border-left: 0;
			border-top: 1px solid #ddd;
		}
		.footer-nav-list-item li + li{
			margin-top: .3em;
		}
		.footer-nav-list-item a{
			font-size: 1.6rem;
		}
		.footer-nav-list-item a br{
			display: none;
		}
		.footer-nav-list-item li{
			padding: .2em 0;
		}
	}
}
.footer-sp-fixbtn{
	display: none;
}
@media(max-width:768px){
	.footer-sp-fixbtn{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	.footer-sp-fixbtn ul{
		display: flex;
		width: 100%;
		height: 70px;
		border-top: 1px solid #fff;
	}
	.footer-sp-fixbtn li{
		padding-bottom: 4px;
		flex: 1;
		background: var(--main-dark);
	}
	.footer-sp-fixbtn li + li{
		border-left: 1px solid #fff;
	}
	.footer-sp-fixbtn li a{
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
		height: 100%;
		color: #fff;
		text-align: center;
		font-weight: 700;
		font-size: 1.5rem;
		white-space: nowrap;
		overflow: hidden;
	}
	.footer-sp-fixbtn li a:hover{
		color: #fff;
	}
	.footer-sp-fixbtn li:nth-child(1) img{
		padding-bottom: 6px;
		width: 32px;
	}
	.footer-sp-fixbtn li:nth-child(2) img{
		padding-bottom: 2px;
		width: 31px;
	}
	.footer-sp-fixbtn li:nth-child(3) img{
		position: relative;
		top: 3px;
		width: 46px;
	}
	.footer-sp-fixbtn li:nth-child(4) a{
		letter-spacing: -1px;
	}
	.footer-sp-fixbtn li:nth-child(4) img{
		width: 62px;
	}
}


.grecaptcha-badge{
	position: fixed;
	bottom: 80px !important;
	z-index: 9999 !important;
}




/*---------------------------------------------------------   新着情報 */
.news-box {
	padding: 20px;
	margin: 0 0 2em;
	border: 2px solid #eee;
}
.news-box:first-child {
	margin: 0;
}
.news-box .title {
	padding: 0 0 10px;
	margin: 5px 0 15px;
	border-bottom: 1px solid #eee;
	line-height: 1.3;
}
.news-box .title a {
	color: var(--main-dark);
	font-size: 18px;
}
.news-box .title a:hover {
	text-decoration: underline;
}





/*---------------------------------------------------------   主催事業・イベント案内 */
.floor-link {
	padding-top: 130px;
}
.floor-link#floor-1{
    margin-top: 0;
    margin-bottom: 100px;
    padding-top: 0;
}
.floor-link ul{
	display: flex;
	gap: 1em;
	display: none;
}
.floor-link#floor-1 ul{
	display: flex;
}
.floor-link ul li {
	flex: 1;
}
@media(max-width:500px){
	.floor-link#floor-1 ul{
		display:block;
	}
	.floor-link ul li + li {
		margin-top:.8em;
	}
}
.floor-link ul li a {
    width: 100%;
    height: 50px;
    display: block;
    position: relative;
    padding-right: 3px;
    color: #fff;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    background: var(--orange);
	font-size: 2rem;
    font-weight: 700;
    transition: all ease-in-out .2s;
	border-bottom: 0 !important;
}
.floor-link ul li a:hover {
	background: #FFC000;
}
.floor-link ul li a:before{
	content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 17px;
    right: 7px;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
    border-left: 6px solid transparent;
    padding: 0.5px;
    border-radius: 2px;
}
.floor-img {
	margin: 30px 0 30px;
	text-align: center;
	position: relative;
}
.floor-title {
	margin-bottom: 40px;
    position: relative;
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 2.5rem;
    line-height: 60px;
    background: var(--gray-bg-light);
}
@media(max-width: 768px){
	.floor-img{
		margin: 0;
	}
	.floor-img img{
		margin: 0 auto;
		display: block;
		width: 90%;
	}
}
.page .facility{
	margin: 0 0 11px;
	width: 100%;
	border: 1px solid #ddd;
	font-size: 13px;
	border-collapse: collapse;
	box-sizing: border-box;
	border: 5px solid #ddd;
}
.page .facility td {
	padding: 10px;
	vertical-align: middle;
	border: 1px solid #ddd;
	text-align: center;
	box-sizing: border-box;
}
.page .facility .head td {
	font-weight: bold;
	background: var(--green-bg);
}
.page .facility .room {
	background: var(--green-bg);
}
.page .facility .floor {
	font-weight: bold;
	background: var(--yellow-bg-light);
	font-size: 2rem;
}
.page .facility .left {
	text-align: left;
}
.page .facility .child-head {
	width: 120px;
	text-align: center !important;
}
.page .facility .rsv {
	display: block;
	padding: 3px;
	margin: 5px 0 0;
	color: #fff;
	font-size: 10px;
	border-radius: 3px;
	background: var(--orange);
}
.page .facility .photo {
	display: block;
	padding: 3px;
	margin: 5px 0 0;
	color: #fff;
	font-size: 10px;
	border-radius: 3px;
	background: var(--green-light);
}
@media(max-width:768px){
	.floor-link {
		margin: 4em 0 2em;
	}
	.page .facility .floor{
		padding-left: 2em;
		text-align: left;
		font-size: 1.8rem;
	}
}






/*--------------------------------------------------------------   市民活動団体 */
.event-archive__item {
	margin: 2em 0 0 !important;
    padding: 2em 1em;
    display: flex;
    gap: 2em;
    border-bottom: 1px solid #eee;
	transition: .25s;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.event-archive__item:hover{
	background: var(--main-bg);
	box-shadow: 0 0 15px rgba(0,0,0,0.15);
	cursor: pointer;
}
.event-archive article:first-child {
	margin: 0;
}
.event-archive article .img{
	width: 100%;
	max-width: 250px;
}
.event-archive article .img a:first-of-type{
	display: block;
    aspect-ratio: 5/2.5;
    width: 100%;
	height: auto;
    overflow: hidden;
	background: #fff;
}
.event-archive article .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-archive article .report_on,
.event-archive article .report_off{
	margin-top:.8em;
	padding:.2em;
	text-align:center;
	display: block;
	color:#fff;
	border-radius:3px;
}
.event-archive article .report_on{
	background:var(--main-vivid);
	transition:background .5s;
}
.event-archive article .report_on:hover{
	background:var(--main-dark);
}
.event-archive article .report_off{
	background:#999;
}
.event-archive article .event-content {
	flex: 1;
}
.event-archive article .event-content .status{
	font-size:14px;
	display: flex;
	justify-content: flex-start;
}
.event-archive article .event-content .date {
	font-size:14px;
	padding: 5px 10px;
	color: var(--main-dark);
	border: 2px solid var(--main-dark);
	background: var(--main-bg);
}
.event-archive article .event-content .reception-on {
	padding: 5px 10px;
	color: #fff;
	border: 2px solid var(--main-dark);
	background: var(--main-light);
}
.event-archive article .event-content .reception-off {
	padding: 5px 10px;
	color: var(--main-dark);
	border: 2px solid var(--main-dark);
	background: var(--main-bg);
}
.event-archive article .event-content .status span + span{
	border-left:none;
}
.event-archive article .event-content .sponsored{
	margin-top:10px;
	font-size:14px;
}
.event-archive article .event-content .sponsored span.title{
	color:var(--main-dark);
}
.event-archive article .event-content .sponsored span.name{
	display:inline-block;
}
.event-archive article .event-content .price {
	margin: 20px 0 5px;
}
.event-archive article .event-content .price .free {
	display: inline-block;
	height: 24px;
	padding: 0 15px;
	color: #fff;
	font-size: 12px;
	line-height: 24px;
	background: var(--main-light);
	border-radius: 12px;
}
.event-archive article .event-content .price .pay {
	display: inline-block;
	height: 24px;
	padding: 0 15px;
	color: #fff;
	font-size: 12px;
	line-height: 24px;
	background: var(--orange);
	border-radius: 12px;
}
.event-archive article .event-content h2 {
	font-size: 18px;
}
@media(max-width:768px){
	.event-archive__item{
		margin: 0 auto 3em !important;
		padding: 0 !important;
		gap: 0;
		width: 90%;
		max-width: 500px;
		flex-direction: column;
		border: 1px solid #e5e5e5;
	}
	.event-archive article .img{
		margin: 0 auto;
		max-width: 100%;
	}
	.event-archive article .event-content{
		padding: 1em 1em 1.5em;
	}
	.event-archive article .event-content h2{
		line-height: 1.4;
	}
}




.event-single {
	width: 100%;
	margin: 0 0 20px;
	border:1px solid #ddd;
}
.event-thumb {
	margin: 0 0 20px;
}
.event-thumb img {
	width: 100%;
}
.event-single td,
.event-single th {
	padding: 1em;
	border-bottom: 1px solid #ddd;
	vertical-align: middle;
}
.event-single .head,
.event-single th {
	border-right: 1px solid #ddd;
	font-weight: bold;
	text-align: center;
	background: var(--main-bg);
}
.event-single .headleft {
	border-right: 1px solid #ddd;
	font-weight: bold;
	text-align: left;
	background: var(--main-bg);
}
.event-single-content {
	margin: 0 0 40px;
}
.event-reception-on {
	padding: 20px;
	background: var(--main-bg);
}
.event-reception-on p {
	text-align: center;
	font-weight: bold;
}
.event-reception-on a {
	display: block;
	padding: 15px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	border-radius: 5px;
	background: var(--orange);
	transition: all ease-in-out .2s;
}
.event-reception-on a:hover {
	background: #FFC000;
}
.event-reception-off {
	padding: 15px;
	text-align: center;
	color: #666;
	border-radius: 5px;
	background: #ddd;
}
@media screen and (max-width: 640px) {
	.event-single td,
	.event-single th {
		display:block;
		width: 100%;
		border-bottom:none;
	}
	.event-single .head {
		text-align: left;
	}
}






/*--------------------------------------------------------------   ボランティア */
.vol-list {
	margin: 0 0 20px;
	display: flex;
	gap: 2em;
}
.vol-list h2 {
	padding: 20px 0;
	color: #fff;
	text-align: center;
	background: var(--green-light);
	border-radius: 8px 8px 0 0;
}
.vol-list h2 i {
	font-size: 18px;
}
.vol-list-2 h2{
	background: var(--orange);
}
.vol-list h3{
	font-weight: 500;
	line-height: 1.5;
}
.vol-list p {
	padding: 20px 0 0;
	text-align: center;
}
.vol-list .vol-list-1,
.vol-list .vol-list-2 {
	flex: 1;
}
.vol-list .vol-list-2 {
}
.vol-list .vol-list-wrap{
	padding: 1px 0;
	background: var(--green-bg);
}
.vol-list-2 .vol-list-wrap{
	background: var(--orange-bg);
}
.vol-list ul li {
	padding: 1em 2em;
    position: relative;
    background: #fff;
    margin: 1em;
    height: 130px;
    box-shadow: 0 0 10px rgba(0,0,0,0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    text-align: left;
}
.vol-list .date{
	position: absolute;
    right: 1em;
    bottom: 0.6em;
    font-size: 80%;
    color: #777;
}
@media(max-width:768px){
	.vol-list{
		display: block !important;
	}
	.vol-select div{
		width: 48% !important;
	}
	@media(max-width:500px){

		.vol-select{
			flex-direction: column;
			gap: 1em;
		}
		.vol-select div{
			margin: 0 auto;
			width: 90% !important;
		}
	}
}


.vol-select .left {
	width: 350px;
	float: left;
}
.vol-select .right {
	width: 350px;
	float: right;
}
.vol-select a {
	display: block;
	padding: 15px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	background: var(--orange);
	transition: all ease-in-out .2s;
}


.vol-select a:hover {
	background: #FFC000;
}
.vol-info {
	border-radius: 5px;
	background: var(--broun-bg-light);
}
.vol-info hr {
	height: 2px;
	background: var(--broun-bg);
}
.vol-info .title {
	padding: 20px 20px 10px;
	gap: 1em;
	font-size: 18px;
	text-align: center;
	line-height: 2;
}
.vol-info .title .left {
	width: 330px;
	float: left;
}
.vol-info .title .right {
	width: 330px;
	float: right;
}
.vol-info .title a {
	display: block;
	padding: 15px 0 10px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	border-radius: 5px;
	background: var(--main-light);
	transition: all ease-in-out .2s;
}
.vol-info .title a:hover {
	text-decoration: underline;
}



.vol-info .vol-info-content {
	padding: 20px 20px 40px;
	border-right: 2px solid var(--broun-bg);
	border-left: 2px solid var(--broun-bg);
	border-bottom: 2px solid var(--broun-bg);
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background: #fff;
}
.vol-info .lead {
	padding: 15px;
	margin: 0 0 15px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	background: var(--main-light);
}
.vol-info .vol-info-content h4 {
	margin: 0 0 10px;
	color: var(--main-dark);
	font-size: 21px;
	text-align: center;
}
.vol-info .vol-info-content .target {
	margin: 0 0 20px;
	text-align: center;
}
.vol-info .vol-info-content .flow .title {
	padding: 10px 0;
	margin: 0 0 20px;
	border-top: 3px solid #333;
	border-bottom: 1px solid #333;
}
.vol-info .vol-info-content .flow a {
	text-decoration: underline;
}
.vol-info .vol-info-content .flow a:hover {
	text-decoration: none;
}
.vol-info .vol-info-content .flow ul li {
	padding: 20px;
	margin: 20px 0 0;
	background: var(--yellow-bg-light);
	position: relative;
}
.vol-info .vol-info-content .flow ul li.arrow:after {
	content: "";
	position: absolute;
	bottom: -10px; left: 50%;
	margin-left: -10px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: var(--yellow-bg-light) transparent transparent transparent;
}
.vol-info .vol-info-content .flow ul li:first-child {
	margin: 0;
}
.vol-info .vol-info-content .flow ul li .step {
	margin: 0 0 5px;
	color: var(--orange);
	font-weight: 500;
	font-size: 2rem;
}
.vol-info .vol-info-content .form-link {
	text-align: center;
}
.vol-info .vol-info-content .form-link a {
	display: inline-block;
	padding: 15px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	background: var(--orange);
	transition: all ease-in-out .2s;
}
.vol-info .vol-info-content .form-link a:hover {
	background: #FFC000;
}
.vol-info .vol-info-content .form-link2 {
	text-align: center;
}
.vol-info .vol-info-content .form-link2 a:focus {
	text-decoration: underline;
}
.vol-info .vol-info-content .pdf-link a {
	text-decoration: none;
}
.vol-info .vol-info-content .q-link {
	text-align: center;
}
.vol-info .vol-info-content .q-link a {
	display: inline-block;
	padding: 15px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	background: var(--orange);
	transition: all ease-in-out .2s;
}


.vol-offer {
	padding: 20px;
	margin: 20px 0 0;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	background: var(--main-light);
}
.vol-offer h3 {
	padding: 0 0 10px;
	margin: 0 0 10px;
	font-size: 21px;
	border-bottom: 1px solid #fff;
}
.vol-offer h3 span {
	padding: 5px 10px 3px;
	color: var(--main-dark);
	background: #fff;
	border-radius: 5px;
}
@media(max-width: 768px){
	.vol-list{
		display: block;
	}
	[class*="vol-list-"]{
		margin-bottom: 100px;
	}
	.vol-list h2{
		font-size: 1.8rem;
	}
	.vol-list ul li{
		margin: 1.5em 1em;
		padding: 1em 1.5em;
		font-size: 1.7rem;
	}
	@media(max-width:500px){
		[class*="vol-list-"]:last-child{
			margin-bottom: 50px;
		}
	}
}

/* ------------------------------------    ボランティア募集ページ */

/* テーブルをスマホで縦並びに */
[class*="single-volunteer"] .group-single{
	border: 0;
}
[class*="single-volunteer"] .group-single tr{
	margin-bottom: 2em;
	display: block;
	border: 1px solid #ddd;
}
[class*="single-volunteer"] .group-single th,
[class*="single-volunteer"] .group-single td{
	display: block;
	width: 100%;
	text-align: left;
}
[class*="single-volunteer"] .group-single td:not(.head){
	padding: 1em 10px;
	border-bottom: 0;
}




/* ------------------------------------    ボランティア募集フォーム */
.volunteer-form-2 .content{
	max-width: 1000px;
}
.volunteer-form-2 .entry-content{
	padding: 3em 5em;
    border: 1px solid #ddd;
}
.volunteer-form-2 .form p:nth-child(odd){
	margin-bottom: .1em;
	font-weight: 700;
}
.volunteer-form-2 .form p:nth-child(even){
	margin-bottom: 1.5em;
    padding-bottom: 2em;
    border-bottom: 1px solid #eee;
}






/* --------------------------------------------------    市民活動団体 */

.group-list table {
	width: 100%;
	font-size: 1.6rem;
}
.group-list table h2{
	font-size: 1.6rem;
}
.group-list table tr:hover {
	background: var(--main-bg);
}
.group-list table th {
	padding: .5em 1.5em;
	color: #fff;
	background: var(--gray-bg-dark);
}
.group-list table th.col1 {
	width: auto;
}
.group-list table th.col2 {
	width: 25%;
}
.group-list table th.col3 {
	width: 15%;
}
.group-list table th.col2:nth-of-type(3) {
	padding: 1em 0.5em;
	width: 18%;
}
.group-list table tr{
	cursor: pointer;
}
.group-list table td {
	padding: 1em 1.5em;
	border-bottom: 1px solid #ddd;
	line-height: 1.5;
}
.group-list table tr > td:nth-of-type(3){
	padding: 1em 0.5em;
}


.group-check table {
	width: 100%;
	table-layout: fixed;
}
.group-check table th {
	padding: 5px;
	color: #fff;
	background: var(--main-light);
}
.group-check table td {
	padding: 5px;
	border: 1px solid #ddd;
}


.group-single {
	width: 100%;
	border:1px solid #ddd;
}
.group-single td {
	padding: 10px;
	border-bottom: 1px solid #ddd;
	vertical-align: middle;
}
.group-single .head {
	border-right: 1px solid #ddd;
	font-weight: bold;
	text-align: center;
	background: var(--main-bg);
}

@media(max-width:768px){
	.group-list table tr,
	.group-list table th,
	.group-list table td{
		display: block;
		width: 100% !important;
	}
	.group-list table tr:nth-of-type(1){
		display: none;
	}
	.group-list table td{
		border-bottom: 0;
	}
	.group-list table tr > td:first-child{
		border-bottom: 1px solid #ddd;
		background: var(--main-bg);
		line-height: 1.5;
	}
	.group-list table tr > td:nth-of-type(2){
		padding: 1em 1.5em 0.5em;
	}
	.group-list table tr > td:nth-of-type(3){
		padding: 0.5em 1.5em;
	}
	.group-list table tr > td:last-child{
		padding: 0.5em 1.5em 1em;
	}
	.group-list table tr{
		margin-bottom: 2em;
		border: 1px solid #ddd;
	}
	.group-single td,
	.group-single th {
		display:block;
		width: 100%;
		border-bottom:none;
	}
	.group-single .head {
		text-align: left;
	}
}




/* --------------------------------------------------    NPO情報 (相談窓口) */

.npo-lead {
	margin: 0 0 20px;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.4;
}
.npo-about {
	margin: 2em 0;
	display: flex;
	background: var(--main-bg);
}
.npo-about h3 {
	display: flex;
	width: 210px;
	padding: 20px;
	color: #fff;
	align-items: center;
	justify-content: center;
	background: var(--main-light);
}
.npo-about .npo-comment {
	display: table-cell;
	padding: 1.5em;
	flex: 1;
	vertical-align: middle;
}
.npo-offer {
	padding: 1em;
	margin: 0 0 2em;
	text-align: center;
	background: var(--broun-bg-light);
}
.npo-offer .free {
	padding: 0 10px 2px;
	color: #fff;
	background: var(--main-light);
	border-radius: 5px;
}
.npo-btn {
	display: inline-block;
	padding: 5px 10px;
	color: #fff !important;
	background: var(--orange);
	border-radius: 5px;
	transition: all ease-in-out .3s;
}
.npo-btn:hover {
	color: #fff;
	text-decoration: none !important;
	background: #FFC000;
}
.npo-group-title {
	margin: 0 0 10px;
	color: var(--main-dark);
	font-size: 18px;
}
.npo-group-lead {
	padding: 20px;
	margin: 0 0 20px;
	background: var(--main-bg);
}
.npo-group-lead b {
	display: inline-block;
	margin: 2em 0 10px;
	border-bottom: 2px solid #222;
	line-height: 1.5;
}
.npo-group-text {
	padding: 20px;
	background: var(--main-bg);
}
@media(max-width:768px){
	.npo-about{
		display: block !important;
	}
	.npo-about h3{
		width: 100%;
		font-size: 1.8rem;
	}
	.npo-offer{
		text-align: left;
	}
}




/* --------------------------------------------------    よくある質問 */


.faq-content {
	margin: 0 0 40px;
}
.faq-content dt {
	margin: 0 0 10px;
	padding: 0 0 0 20px;
}
.faq-content dd {
	padding: 0 0 20px 20px;
	margin: 0 0 20px;
	border-bottom: 1px dotted #ccc;
}
@media(max-width:768px){
	.faq-content dt,
	.faq-content dd{
		padding-left: 0;
	}
}





/* --------------------------------------------------    リンク */
.page-link ul {
	padding: 20px;
	border: 2px solid #eee;
}
.page-link ul li {
	padding: 20px 0 0;
	margin: 20px 0 0;
	border-top: 1px solid #eee;
}
.page-link ul li:first-child {
	border: none;
	padding: 0;
	margin: 0;
}



/* --------------------------------------------------    サイトマップ */

.sitemap a {
	font-weight: bold;
}
.sitemap ul li.child a {
	font-weight: normal;
}
.sitemap a:hover {
	text-decoration: underline;
}
.sitemap ul li {
	margin: 0 0 10px;
}


.sitemap ul .child {
	padding: 0 0 0 1.4em;
}




/* --------------------------------------------------    サイドバー */
.side-bar {
	flex-basis: 230px;
}
.side-box {
	margin: 3em 0;
	padding: 15px;
	border: 2px solid #eee;
}
.side-box a:hover {
	text-decoration: underline;
}
.side-groups li{
	font-weight: 500;
}
.side-groups li + li{
	margin-top: .5em;
}
.side-title {
	padding: 0 0 10px;
	margin: 0 0 15px;
	color: var(--main-dark);
	border-bottom: 2px solid var(--main-dark);
}
.side-news{
	margin-top: 0;
	font-size: 85%;
}
.side-news .date {
	color: var(--main-dark);
	font-weight: 500;
	font-size: 90%;
}
.side-news ul {
	margin: 0 0 10px;
}
.side-news ul li {
	padding: 15px 0 0;
	margin: 15px 0 0;
	border-top: 1px solid #eee;
}
.side-news ul li:first-child {
	padding: 0;
	margin: 0;
	border: none;
}
.side-news-link a {
    display: block;
    padding: 0.5em 1em;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 3px;
    background: var(--main-light);
}
.side-news-link a:hover {
	opacity: .8;
}
@media(max-width:1100px){
	.side-news{
		margin-top: 3em;
	}
	.side-bar{
		margin: 0 auto;
		width: 100%;
		max-width: 350px;

	}
	.fb_iframe_widget_fluid {

	}
	.fb-page span{
		width: 100% !important;
	}
	@media(max-width:768px){
		.side-bar{
			margin-top: 150px;
		}
	}
}


.side-bnr {
	padding: 15px;
	margin: 15px 0;
	text-align: center;
	border: 2px solid var(--main-dark);
	background: var(--main-bg);
}
.side-bnr h3 {
	padding-bottom: .5em;
	color: var(--main-dark);
	font-size: 1.8rem;
	line-height: 1.4;
}
.side-bnr h3 span{
	display: block;
}
.side-bnr h4 {
	color: var(--main-dark);
	font-size: 1.5rem;
}
.side-bnr h3 + div{
	line-height: 1.5;
}
.side-bnr-bottom {
	padding: 1em 0.5em;
    margin: 0 0 20px;
    background: var(--gray-bg-light);
    text-align: center;
    border-radius: 5px;
	transition: .25s;
}
.side-bnr-bottom:hover{
	background: var(--gray-border);
}
.side-bnr-bottom a{
	display: block;
	width: 100%;
	height: 100%;
}
.side-bnr-bottom h3 {
	color: var(--main-dark);
	font-size: 18px;
}
.side-bnr-bottom:hover h3 {
	color: var(--main-light);
}
.side-bnr-bottom h3 + div {
    padding: 0.5em 0;
	line-height: 1.5;
}

/* 以下のページではサイドバーを非表示 */
.volunteer-form-2 .side-bar{
	display: none;
}



/* --------------------------------------------------    ページナビ */

.wp-pagenavi {
    margin: 3em auto;
    padding-bottom: 2em;
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 620px;
}
.wp-pagenavi .pages{
    position: absolute;
    display: block;
    bottom: 0;
    text-align: center;
    width: 120px;
    border-radius: 3px;
    left: calc(50% - 60px);
    font-size: 1.5rem;
    color: #999;
    font-weight: 500;
    letter-spacing: .1em;
}
.wp-pagenavi .page,
.wp-pagenavi a.first,
.wp-pagenavi a.last {
	padding-top: 1px;
	display: inline-block;
	width: 32px;
	height: 31px;
	margin: 5px;
	border: none;
	line-height: 26px;
}
.wp-pagenavi .page:hover,
.wp-pagenavi a.first:hover,
.wp-pagenavi a.last:hover {
	color: var(--main-dark);
	background: var(--gray-bg-light);
}
.wp-pagenavi .current {
	margin: 5px;
	padding-top: 1px;
    display: inline-block;
    width: 32px;
    height: 31px;
    border: none;
    line-height: 26px;
    background: var(--gray-bg-light);
    color: var(--main-dark);
    font-weight: 700;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    width: 60px;
    height: 37px;
    float: right;
    margin: 0;
    border: none;
    text-align: center;
    line-height: 34px;
    border-radius: 5px;
    color: #fff;
    background: var(--main-light);
    font-weight: 500;
}
.wp-pagenavi .previouspostslink {
	float: left;
}
@media(max-width:768px){
	.wp-pagenavi a.first,
	.wp-pagenavi a.last,
	.wp-pagenavi .extend + .larger,
	.wp-pagenavi .extend + .larger + .larger,
	.wp-pagenavi .extend + .larger + .larger+ .larger,
	.wp-pagenavi .extend{
		display: none;
	}
}



/* --------------------------------------------------    フォーム */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="checkbox"],
input[type="tel"],
textarea {
	padding: 0.375em;
}
.wpcf7-response-output {
	padding: 20px !important;
	margin: 0 !important;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background: var(--main-light);
}
.wpcf7-mail-sent-ok {
	border: none !important;
}
.wpcf7 input[type="submit"] {
	display: block!important;
	width: 200px;
	height: 70px;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 70px;
	text-align: center;
	background: var(--orange);
	border-radius: 5px;
	transition: all ease-in-out .3s;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="submit"]:focus {
	background: #FFC000;
}

div.wpcf7-validation-errors {
	border: none;
}
.form span.wpcf7-list-item:nth-child(5):after {
    content: "\A" ;
    white-space: pre;
}
.form span.wpcf7-list-item:nth-child(10):after {
    content: "\A" ;
    white-space: pre;
}
.form span.wpcf7-list-item:nth-child(15):after {
    content: "\A" ;
    white-space: pre;
}
.form span.list-block!important .wpcf7-list-item { display: block!important; }
span.wpcf7-list-item {
display: block!important!important;
}



.form .category-other,
.form .cost-other {
	display: block!important;
	width: 120px;
	margin: 0 0 0 10px;
}
.wpcf7 input[type="chekbox"] {
display: block!important;
}


.green { color: var(--green-dark); }
.orange { color: var(--orange); }
.align-left { text-align: left !important; }
.align-center { text-align: center !important; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }


.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-35 { margin-bottom: 35px; }
.mb-40 { margin-bottom: 40px; }


/* .font-10 { font-size: 10px; }
.font-11 { font-size: 11px; }
.font-12 { font-size: 12px; }
.font-13 { font-size: 13px; }
.font-14 { font-size: 14px; }
.font-15 { font-size: 15px; }
.font-16 { font-size: 16px; }
.font-17 { font-size: 17px; }
.font-18 { font-size: 18px; }
.font-19 { font-size: 19px; }
.font-20 { font-size: 20px; }
.font-21 { font-size: 21px; }
.font-22 { font-size: 22px; }
.font-23 { font-size: 23px; }
.font-24 { font-size: 24px; } */

.font-10 { font-size: 10px; }
.font-11 { font-size: 11px; }
.font-12 { font-size: 1.3rem;}
.font-13 { font-size: 13px; }
.font-14 { font-size: 14px; }
.font-15 { font-size: 15px; }
.font-16 { font-size: 16px; }
.font-17 { font-size: 17px; }
.font-18 { font-size: 18px; }
.font-19 { font-size: 19px; }
.font-20 { font-size: 20px; }
.font-21 { font-size: 21px; }
.font-22 { font-size: 22px; }
.font-23 { font-size: 23px; }
.font-24 { font-size: 24px; }

・dl.accordion dt {
	background: #333;
	cursor: pointer;
	border-bottom: 1px solid #fff;
	word-wrap:break-word;
}

・dl.accordion dt {
	display: block!important;
	padding: 10px 30px 10px 10px;
	color: #fff;
	font-size: 15px;
}

・dl.accordion dt::before {
	content: '';
	position: relative;
	float: right;
	border: 8px solid transparent;
 	border-top-color: #fff;
 	width: 0;
 	height: 0;
 	top: 5px;
 	right: -20px;
}


・dl.accordion dt.open::before {
	content: '';
	position: relative;
	float: right;
	border: 8px solid transparent;
	border-bottom-color: #fff;
	width: 0;
	height: 0;
	top: -5px;
	right: -20px;
}


・dl.accordion dd {
	word-wrap:break-word;
}


・dl.accordion dd ul li {
	border-bottom: 1px solid #f2f2f3;
	list-style: none;
}

・dl.accordion dd ul li a {
	color: #333;
	display: block!important;
	padding: 10px 30px 10px 15px;
}


・dl.accordion dd ul li a::before {
	content: '';
	position: relative;
	float: right;
	border: 8px solid transparent;
	border-left-color: #333;
	width: 0;
	height: 0;
	top: 0;
	right: -25px;
}
.ftable{
	border:1px;
}
.fesevent-fb {
	width: 480px;
	padding: 20px;
	margin: 0 auto 20px;
	color: #3B5998;
	border: 3px solid #3B5998;
	background: var(--green-bg);
	border-radius: 5px;
}
.fesevent-offer {
	padding: 20px 0;
	margin: 0 0 20px;
	text-align: left;
	background: #d4fff1;
}
.fesevent-offer .free {
	padding: 5px 10px 3px;
	color: #fff;
	background: var(--green-light);
	border-radius: 5px;
}




/* ------------------------------------------------------------    アクションプラン */

/* カラム共通 */
.actionplan .top-col-3-bottom{
	display: flex;
	flex-wrap: wrap;
}
.actionplan .top-col-3-bottom:before,
.actionplan .top-col-3-bottom:after{
	display: none;
}
.actionplan .top-col-3-bottom > div{
	flex: 1;
}
@media(max-width:768px){
	.actionplan .top-col-3-bottom{
		margin: 0 auto;
		max-width: 500px;
		display: block;
	}
}

/* 見出し共通 */
.actionplan .common-h2{
	margin-top: 2em;
}
@media(max-width:768px){
	.actionplan .common-h2{
		margin-top: 80px;
		text-align: center;
	}
}



/* アクションプラン　活用事例 */
.actionplan .katsuyou [class*="box"]{
	margin-left: 1.5em;
	padding-left: 1.5em;
	flex: 1;
	border-left: 2px dashed #ddd;
}
.actionplan .katsuyou [class*="box"]:first-child{
	margin-left: 0;
	padding-left: 0;
	border: 0;
}
.actionplan .katsuyou [class*="box"] .b24{
	margin-bottom: 1em;
	padding: 0 1em;
	position: relative;
    display: flex;
    align-items: center;
    height: 8em;
    background: var(--main-dark);
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
}
.actionplan .katsuyou [class*="box"] .b24:after{
	position: absolute;
    content: '';
    top: 99%;
    left: calc(50% - 15px);
    border: 15px solid transparent;
    border-top: 15px solid var(--main-dark);
    width: 0;
    height: 0;
}
.actionplan .katsuyou [class*="box"] h2{
	text-align: center;
}
.actionplan .katsuyou [class*="box"] h4{
	margin: 0 1em;
	font-weight: 500;
	font-size: 1.5rem;
}
.actionplan .katsuyou [class*="box"] .b24 p{
	margin-bottom: 0;
	flex: 1;
	font-size: 1.5rem;
}
.actionplan .katsuyou [class*="box"] hr{
	margin: 1em 0;
}
@media(max-width:768px){
	.actionplan .katsuyou [class*="box"]{
		margin-left: 0;
		padding: 2em 0;
		padding-left: 0;
		max-width: 500px;
		border-top: 2px dashed #ddd;
		border-left: none;
	}
	.actionplan .katsuyou [class*="box"]:first-child{
		border: 0;
	}
	.actionplan .katsuyou [class*="box"] hr{
		display: none;
	}
	.actionplan .katsuyou [class*="box"] .b24{
		margin: 0 auto 1em;
		padding: 0.5em 1em;
		height: auto;
		width: 90%;
	}
	.actionplan .katsuyou [class*="box"] .b24 p{
		line-height: 1.5;
		text-align: center;
	}
	.actionplan .katsuyou [class*="box"] h2{
		padding: .5em 0;
	}
	.actionplan .katsuyou [class*="box"] h4{
		margin: 0 .5em;
		text-align: center;
	}
}


/* アクションプラントップの下部コンテンツナビ */
.actionplan-content-nav{
	margin-top: 1em;
	gap: 1em;
}
.actionplan-content-nav > div{
	padding: 2em 1em;
	border-radius: 10px;
	border: 1px solid #ddd;
	text-align: center;
	background: var(--main-bg);
}
.actionplan-content-nav > div h2{
	color: var(--main-dark);
	font-size: 1.8rem;
}
.actionplan-content-nav > div h3{
	margin-top: .5em;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.5;
}
@media(max-width:768px){
	.actionplan-content-nav + .actionplan-content-nav{
		margin-top: 1em;
	}
	.actionplan-content-nav .box + .box{
		margin-top: 1em;
	}
}




/* ------------------------------------------------------------    アクションプラン 子ページ */
[class*="action"] .ac-list{
	border-radius: 0;
}
[class*="action"] .ac-list ul{
	padding-top:1px;
	padding-bottom:1px;
	background:var(--main-bg);
}
[class*="action"] .ac-list li{
	background:#fff;
	border-radius: 0;
	box-shadow: none;
	border: 0;
}
/*[class*="action"] .ac-list li + li{
	border-top: 1px solid #ddd;
}*/

.actop-table + h2{
	margin-top: 2em;
}

.action-category {
	width: 680px;
	padding: 0 3px 3px;
	margin: 0 auto;
	background: #1dafc2;
	border-radius: 5px;
	box-sizing: border-box;
}
.action-category .title {
	padding: 15px 0;
	text-align: center;
	position: relative
}
.action-category .title h2 {
	display: inline-block;
	margin: 0 10px 0 0;
	color: #fff;
	font-size: 21px;
	vertical-align: middle;
}
.action-category .all {
	margin: -15px 0 0;
	position: absolute;
	right: 15px;
	top: 50%;
}
.action-category .all a {
	display: block;
	height: 30px;
	padding: 0 15px;
	border-radius: 3px;
	color: #1dafc2;
	font-size: 13px;
	line-height: 32px;
	background: #fff;
}
.action-category .all a:hover {
	text-decoration: underline;
}
.action-category .title .desc {
	display: inline-block;
	color: #fff;
	text-align: left;
	font-size: 13px;
	line-height: 1.4;
	vertical-align: middle;
}
.action-category .category {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	background: #fff;
}
.action-category .category ul {
	display: table;
	width: 100%;
	border-top: 1px solid #ddd;
}
.action-category .category ul:first-child {
	border: none;
}
.action-category .category ul li {
	display: table-cell;
	width: 20%;
	text-align: center;
	border-left: 1px solid #ddd;
	box-sizing: border-box;
}
.action-category .category ul li:first-child {
	border: none;
}
.action-category .category ul li a {
	display: block;
	padding: 20px;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	transition: all ease-in-out .2s;
}
.action-category .category ul li a i {
	margin: -6px 0 0;
	color: #ccc;
	font-size: 12px;
	position: absolute;
	right: 15px;
	top: 50%;
	transition: all ease-in-out .2s;
}
.action-category .category ul li a:hover,
.action-category .category ul li a:hover i {
	color: #1dafc2;
}


.f-data2 {
	width: 780px;
	padding: 80px 0;
	margin: 0 auto;
	text-align: center;
}
.f-data2-left {
	display: inline-block;
	height: 300px;
	width: 300px;
	padding: 15px 0;
	margin: 0 30px 0 0;
	text-align: left;
	vertical-align: middle;
}
.f-data2-right {
	display: inline-block;
	width: 320px;
	text-align: left;
	vertical-align: middle;
}
.ac-col-5 {
	display: flex;
	gap: 2em;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto 2em;
	max-width: 980px;
}
.ac-col-5 .box {
	margin: 0;
	flex-basis: calc(calc(100% - 4em) / 3);
	max-width: 500px;
	text-align: center;
}
.ac-col-5 .box:first-child {
	margin: 0;
}
.ac-col-5 .box a {
	display: block;
	padding: 20px 0 20px;
}
.ac-col-5 .box a i {
	display: block;
	width: 150px;
	height: 150px;
	padding: 10px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--main-dark);
	box-sizing: border-box;
	transition: all ease-in-out .4s;
}
@media(max-width:768px){
	.ac-col-5{
		justify-content: space-around;
		gap: 0 10vw;
	}
	.ac-col-5 .box{
		flex-basis: calc(calc(100% - 10vw) / 2);
		max-width: 150px;
	}
	.ac-col-5 .box a i{
		margin-bottom: 10px;
		width: auto;
		height: auto;
	}
	.ac-col-5 .box h2{
		margin-bottom: 0;
		line-height: 1.4;
	}
}


.ac-col-5 .box a:hover img {
	opacity: 1;
}
.ac-col-5 .box a:hover h2,
.ac-col-5 .box a:hover h3 {
	text-decoration: none;
}
.ac-col-5 .box a:hover i {
    transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
}
.ac-col-5 .box h2 {
	margin: 0 0 5px;
	color: var(--main-dark);
	font-size: 18px;
}
.ac-col-5 .box h3 {
	color: #666;
	font-size: 13px;
	font-weight: normal;
}
.ac-col-5-bottom {
	width: 980px;
	margin: 0 auto;
}
.ac-col-5-bottom .box {
	width: 314px;
	float: left;
	margin: 0 0 0 19px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.ac-col-5-bottom .box:first-child {
	margin: 0;
}
.ac-col-5-bottom .box a {
	display: block;
	padding: 20px 0;
	transition: all ease-in-out .4s;
}
.ac-col-5-bottom .box a:hover h2 {
	text-decoration: underline;
}
.ac-col-5-bottom .box h2 {
	margin: 0 0 10px;
	color: var(--main-dark);
	font-size: 18px;
}
.ac-col-5-bottom .box h3 {
	color: #666;
	font-size: 13px;
	font-weight: normal;
}
.ac-lead {
	margin: 0 0 20px;
	font-weight: bold;
	font-size: 16px;
}
.ac-about {
	display: table;
	background: var(--main-bg);
	margin: 0 0 10px 0;
}
.ac-about h3 {
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-basis: 220px;
	border: 1px;
	border-color: #f3faf8;
	color: #fff;
	background: var(--main-light);
}
.ac-about .ac-comment {
	display: table-cell;
	padding: 20px;
	flex: 1;
	border-width: 1px;
	border-color: #f3faf8;
	vertical-align: middle;
	text-align: left;
}
@media(max-width:768px){
	.ac-about{
		display: block !important;
	}
}



.ac-ul li {
	padding: 20px;
	margin: 20px 0 0;
	background: var(--main-bg);
	position: relative;
}
.ac-offer {
	padding: 20px 0;
	margin: 0 0 20px;
	text-align: center;
	background: var(--broun-bg);
}


.ac-offer .free {
	padding: 5px 10px 3px;
	color: #fff;
	background: var(--main-light);
	border-radius: 5px;
}
.ac-btn {
	display: inline-block;
	padding: 5px 10px;
	color: #fff !important;
	background: var(--orange);
	border-radius: 5px;
	transition: all ease-in-out .3s;
}
.ac-btn:hover {
	color: #fff;
	text-decoration: none !important;
	background: #FFC000;
}
.ac-group-title {
	margin: 0 0 10px;
	color: var(--main-dark);
	font-size: 18px;
}
.ac-group-lead {
	padding: 20px;
	margin: 0 0 20px;
	background: var(--main-bg);
}
.ac-group-lead b {
	display: inline-block;
	margin: 0 0 10px;
	border-bottom: 2px solid #222;
}
.a-group-text {
	padding: 20px;
	background: var(--main-bg);
}





[class*="actionplan"] .group-list tr,
[class*="actionplan"] .group-list td{
	display: block;
	width: 100%;
	border: 0;
	transition: .25s;
	box-shadow: 0 0 15px rgba(0,0,0,0);
}
[class*="actionplan"] .group-list tr:hover{
	box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
[class*="actionplan"] .group-list tbody > tr:first-child{
	display: none;
}
[class*="actionplan"] .group-list table th.col2{
	width: 100%;
}
[class*="actionplan"] .group-list tr{
    margin-top: 2em;
    background: var(--main-bg);
    border-radius: 10px;
    overflow: hidden;
    padding: 1em;
}
[class*="actionplan"] .group-list tr > td:first-child{
	padding-bottom: 0.5em;
    padding-left: 1.8em;
    padding-top: 0;
}
[class*="actionplan"] .group-list td + td{
	padding-bottom: 1em;
	font-size: 1.5rem;
    border-bottom: none;
    background: #fff;
}
[class*="actionplan"] .group-list td + td:before{
	content: "活動内容";
    display: block;
    font-size: 1.4rem;
    background: var(--gray-bg-light);
    width: 5em;
    text-align: center;
    margin-bottom: 0.5em;
    font-weight: 500;
}
[class*="actionplan"] .group-list td + td:after{
    content: "詳しく見る";
    display: block;
    font-size: 1.5rem;
    background: var(--main-light);
    width: 7em;
    text-align: center;
    margin-bottom: 0.5em;
    font-weight: 500;
    margin-left: auto;
    color: #fff;
    border-radius: 3px;
    font-weight: 700;
    margin-top: 2em;
}
[class*="actionplan"] .group-list tr td a{
	color: var(--black);
	transition: .25s;
}
[class*="actionplan"] .group-list tr:hover td a{
	color: var(--main-dark);
}
@media(max-width:768px){
	[class*="actionplan"] .group-list tr > td:first-child{
		padding-left: 1em;
	}
	[class*="actionplan"] .arrowbox{
		display: none;
	}
}



.actionplan .content{
	padding-top:40px;
}
.actionplan .breadcrumbs{
	position:relative;
	z-index:1;
	background:rgba(255,255,255,70%);
	top:5px;
}
.actionplan_hero{
	margin: 0 calc((1200px - 100svw) / 2) !important;
	position: relative;
	z-index: 0;
}
.actionplan_hero-img{
	background: url('img/actionplan.jpg') fixed no-repeat 50% 65% / cover;
	width: 100%;
	min-height:700px;
	position: absolute;
	top: -92px;
	left: 0;
}
.actionplan_hero-grid{
	margin-left:auto;
	margin-right:auto;
	width:91%;
	max-width:1200px;
	display:flex;
	justify-content:space-between;
	gap:2em;
	position:relative;
	z-index:1;
}
.actionplan_hero-grid img{
	max-width:100%;
	height:auto;
}
.actionplan_hero-msg01{
	padding-bottom:6em;
	order:2;
}
.actionplan_hero-msg02{
	padding-left:3%;
	display:flex;
	align-items:flex-end;
}
@media(max-width:1316px){
	.actionplan_hero{
		margin: 0 calc((91svw - 100svw) / 2) !important;
	}
}
@media(max-width:1100px){
	.actionplan .breadcrumbs{
		top:0;
	}
	.actionplan_hero-img{
		top: -105px;
	}
	.actionplan_hero-msg01{
		width:260px;
	}
	.actionplan_hero-msg02{
		width:300px;
	}
}
@media (orientation: portrait) {
	.actionplan_hero-img{

	}
}

.content-area .box20{
	position: relative;
	padding: 30px;
	margin: 0 0 4em 0;
	top: 0;
	background: rgba(255,255,255,80%);
}
.content-area .box20:before, .box20:after{
    position: absolute;
    top: 0;
    content:'';
    width: 10px;
    height: 100%;
    display: inline-block;
    box-sizing: border-box;
}
.content-area .box20:before{
    border-left: dotted 2px var(--main-dark);
    border-top: dotted 2px var(--main-dark);
    border-bottom: dotted 2px var(--main-dark);
    left: 0;
}
.content-area .box20:after{
    border-top: dotted 2px var(--main-dark);
    border-right: dotted 2px var(--main-dark);
    border-bottom: dotted 2px var(--main-dark);
    right: 0;
}
.content-area .box20 p {
    margin: 0;
    font-size:16px;
    font-weight:600;
    padding: 0;
}
@media(max-width:768px){
	.content-area .box20 p{
		font-size: 1.5rem;
	}
}


.ac-list {
	margin: 0 0 20px;
}
.ac-list h2 {
	padding: 1em 1em;
	color: #fff;
	text-align: left;
	background: var(--main-light);
	font-size: 1.8rem;
	line-height: 1.5;
}
.ac-list h2 i {
	font-size: 24px;
}
.ac-list h3 {
	font-size: 1.7rem;
}
.ac-list p {
	padding: 20px 0 0;
	text-align: center;
}
.ac-list .ac-list-1 {
	width: 980px;
	float: left;
}
.ac-list ul li {
	padding: 10px;
	background: var(--main-bg);
	border-top: 1px solid #ddd;
}
.ac-link a {
	display: block;
	padding: 6px 12px;
	color: #fff;
	text-align: center;
	font-size: 15px;
	border-radius: 3px;
	background: var(--main-light);
}
.ac-link a:hover {
	text-decoration: underline;
}
.ac-link2 a {
	display: block;
	padding: 6px 12px;
	color: #fff;
	text-align: center;
	font-size: 15px;
	border-radius: 3px;
	background: #949494;
}
.ac-link2 a:hover {
	text-decoration: underline;
}
.ac-nolink {
display: block;
padding: 6px 12px;
color: #fff;
text-align: center;
font-size: 15px;
border-radius: 3px;
background: #999999;
}
.ac-top {
	width: 980px;
	margin: 0 auto;
}
.ac-top .box {
	width: 980px;
	float: left;
	margin: 0 0 0 0px;
	text-align: left;
}
.ac-top .hr {
  height: 4px;
  background: url(line02.png) repeat-x 0 0;
}
.ac-top .box h2 {
	margin: 0 0 5px;
	color: var(--main-dark);
	font-size: 18px;
}
.ac-top .box h3 {
	color: #666;
	font-size: 13px;
	font-weight: normal;
}
.ac-top-bottom {
	width: 980px;
	margin: 0 auto;
}
.actop-table{
	width: calc(100% - 40px);
	border-collapse: separate;
	border-spacing: 0;
	margin:20px;
	table-layout: fixed;
	}
.actop-table td,
.actop-table th{
	padding: 1px;
	border: 0px;
	font-weight:600;
}
.actop-table tbody th{
	text-align:left;
	vertical-align:middle;
}
.actop-table td:last-child{

	text-align: left;
}
.actop-table .td-img{
	padding:0;
	width: 60px;
	height:60px;
	vertical-align: middle;
}
.actop-table .td-1{
	font-weight:600;
	font-size:18px;
	width: 40px;
	vertical-align: middle;
}
.acpage-title {
	display: inline-block;
	padding: 0 0 10px;
	margin: 0 0 20px;
	border-bottom: 4px solid #FFC000;
	color: var(--main-dark);
	font-size: 24px;
	line-height: 1.4;
	font-weight: normal;
}
.ac-data {
	display: flex;
	padding: 20px 0;
	margin: 0 auto;
	text-align: center;
}
.ac-data > * {
	flex: 1;
}
.ac-data .left {
	margin: 0 40px 0 0;
	text-align: left;
}
.ac-data .right {
	text-align: left;
}
@media(max-width:768px){
	.ac-data{
		margin: 0 auto;
		padding-bottom: 60px;
		width: 95%;
		max-width: 600px;
		flex-direction: column;
	}
	.ac-data .left{
		margin-right: 0;
	}
}



.ac-info {
	border-radius: none;
	background: #fff;
}
.ac-info .ac-info-content {
	padding: 0px;
	background: #fff;
}
.ac-info .ac-info-content h4 {
	margin: 0 0 10px;
	color: var(--main-dark);
	font-size: 21px;
	text-align: center;
}
.ac-info .ac-info-content .target {
	margin: 0 0 20px;
	text-align: center;
}


.ac-info .ac-info-content .flow ul li {
	padding: 10px;
	margin: 10px 0 0;
	background: var(--main-bg);
	position: relative;
}
.ac-info .ac-info-content .flow ul li.arrow:after {
	content: "";
	position: absolute;
	bottom: -10px; left: 50%;
	margin-left: -10px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #f3faf8 transparent transparent transparent;
}
.ac-info .ac-info-content .flow ul li:first-child {
	margin: 0;
}
.ac-info .ac-info-content .flow ul li .step {
	margin: 0 0 5px;
	color: #050505;
	font-weight: bold;
}
.ac-info .title {
	padding: 20px 20px 10px;
	font-size: 18px;
	text-align: center;
	line-height: 2;
}
.ac-info .title a {
	display: block;
	padding: 15px 0 10px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	border-radius: 5px;
	background: var(--main-light);
	transition: all ease-in-out .2s;
}
.ac-info .title a:hover {
	text-decoration: underline;
}



.ac-info .ac-info-content {
	padding: 0px;
	background: #fff;
}
.ac-info .lead {
	padding: 15px;
}
.ac-info .ac-info-content .flow .title {
    padding: 10px 0;
    margin: 0 0 20px;
    border-top: 3px solid #333;
    border-bottom: 1px solid #333;
}
.acgroup-list table {
	width: 100%;
}
.acgroup-list table tr:hover {
	background: var(--main-bg);
}
.acgroup-list table th {
	padding: 10px;
	color: #fff;
	background: var(--main-light);
}
.acgroup-list table th.col1 {
	width: 240px;
}
.acgroup-list table th.col2 {
	width: 480px;
}
.acgroup-list table td {
	padding: 15px 10px;
	border-bottom: 1px solid #ddd;
}
.arrowbox{
	width: 60px;
	height: 60px;
	margin-left: 320px;
}
.arrow1{
  width: 30px;
  height: 30px;
  border: 5px solid;
  border-color: transparent transparent #565656 #565656;
  transform: rotate(-45deg);
}
/* Q&A */
.qablock{
	position: relative;
	margin-bottom: 20px;
	background: #eee9e6;
	border:1px solid #eee9e6;
  }
.qablock2{
	position: relative;
	margin-bottom: 20px;
	background: #e8ebf3;
	border:1px solid #eee9e6;
  }

  .question_txt{
	padding:5px 15px;
	margin: 0px !important;
	cursor:pointer;
  }
  .qicon{
	color: #6f5436;
	font-weight: bold;
	margin-right:15px;
  }
  .answer_txt{
	background: #fff;
	margin: 0px !important;
	padding: 10px 15px;
  }
  .show_button{
	position: absolute;
	bottom:0px;
	right:0px;
	width:43px;
	height:43px;
  }
  .show_button:after{
	content: '▲'!important;
	display: block;
	text-align: center;
	width: 43px;
	height: 43px;
	line-height: 43px;
	top: 0;
	left: 0;
	margin-left: 0px;
	margin-top: 0px;
	color:#b4ada9;
  }
  .show_button.closebutton:after{
	content: '▼'!important;
	display: block;
	text-align: center;
	width: 43px;
	height: 43px;
	line-height: 43px;
	top: 0;
	left: 0;
	margin-left: 0px;
	margin-top: 0px;
	color:#b4ada9;
  }
.qa-about {
	display: flex;
	background: var(--main-bg);
	margin-bottom: 10px;
}
.qa-about h3 {
	display: flex;
	width: 210px;
	padding: 20px;
	color: #fff;
	text-align: center;
	justify-content:center;
	align-items:center;
	background: var(--main-light);
	margin-bottom: 10px;
	flex-shrink:0;
}
@media(max-width:500px){
	.qa-about{
		display:block;
	}
	.qa-about h3 {
		width:auto;
	}
}
.qa-about .qa-comment {
	display: table-cell;
	padding: 20px;
	width: 100%;
	vertical-align: middle;
	margin-bottom: 10px;
}
.herocenter{
	text-align : center;
}





/* =============================================================== state */
.is-hide{
	display: none;
}
.is-active{
	display: block;
}




/* =============================================================== theme */

.t-m-auto {
    margin-left: auto;
    margin-right: auto;
}
.t-ml-auto{
	margin-left: auto;
}
.t-mr-auto{
	margin-right: auto;
}
.t-relative {
    position: relative;
}
.t-absolute {
    position: absolute;
}
.t-center {
    text-align: center;
}
.t-left{
    text-align: left;
}
@media(max-width:767px) {
    .t-sp-left {
        text-align: left;
    }
}


/* 幅 */
.t-w-100 {
    width: 100% !important;
}


/* 改行 */
.t-spBR, .t-tabBR {
    display: none;
}

@media(max-width:1100px) {}

@media(max-width:767px) {
    .t-pcBR {
        display: none;
    }

    .t-spBR {
        display: block;
    }
}


/* flex */
[class*="t-flex"] {
    display: flex;
    justify-content: center;
}

[class*="t-flex"]>* {
    /* flex: 1; */
}

[class*="-sb"] {
    justify-content: space-between;
}

[class*="-sa"] {
    justify-content: space-around;
}

[class*="-sa"] .swell-block-columns__inner {
    justify-content: space-around;
}

[class*="-alcenter"] {
    align-items: center;
}

@media(max-width:767px) {
    .t-flex-sp-reverse{
        flex-direction: column-reverse;
    }
}


/* padding */
.t-pt-0 {
    padding-top: 0 !important;
}
.t-pt-1em {
    padding-top: 1em !important;
}
.t-pt-2em {
    padding-top: 2em !important;
}
.t-pt-3em {
    padding-top: 3em !important;
}
.t-pt-4em {
    padding-top: 4em !important;
}
.t-pt-5em {
    padding-top: 5em !important;
}
.t-pt-6em {
    padding-top: 6em !important;
}
.t-pt-7em {
    padding-top: 7em !important;
}
.t-pt-8em {
    padding-top: 8em !important;
}
.t-pt-9em {
    padding-top: 9em !important;
}
.t-pt-10em {
    padding-top: 10em !important;
}
.t-pb-0 {
    padding-bottom: 0 !important;
}
.t-pb-1em {
    padding-bottom: 1em !important;
}
.t-pb-2em {
    padding-bottom: 2em !important;
}
.t-pb-3em {
    padding-bottom: 3em !important;
}
.t-pb-4em {
    padding-bottom: 4em !important;
}
.t-pb-5em {
    padding-bottom: 5em !important;
}
.t-pb-6em {
    padding-bottom: 6em !important;
}
.t-pb-7em {
    padding-bottom: 7em !important;
}
.t-pb-8em {
    padding-bottom: 8em !important;
}
.t-pb-9em {
    padding-bottom: 9em !important;
}
.t-pb-10em {
    padding-bottom: 10em !important;
}
.t-pl-1em {
    padding-left: 1em !important;
}
.t-pl-2em {
    padding-left: 2em !important;
}
.t-pl-3em {
    padding-left: 3em !important;
}
.t-pl-4em {
    padding-left: 4em !important;
}
.t-pl-5em {
    padding-left: 5em !important;
}
.t-pl-6em {
    padding-left: 6em !important;
}
.t-pl-7em {
    padding-left: 7em !important;
}
.t-pl-8em {
    padding-left: 8em !important;
}
.t-pl-9em {
    padding-left: 9em !important;
}
.t-pl-10em {
    padding-left: 10em !important;
}

/* margin */
.post_content .t-mt-0 {
    margin-top: 1em !important;
}
.t-mt-1em {
    margin-top: 1em !important;
}
.t-mt-2em {
    margin-top: 2em !important;
}
.t-mt-3em {
    margin-top: 3em !important;
}
.t-mt-4em {
    margin-top: 4em !important;
}
.t-mt-5em {
    margin-top: 5em !important;
}
.t-mt-6em {
    margin-top: 6em !important;
}
.t-mt-7em {
    margin-top: 7em !important;
}
.t-mt-8em {
    margin-top: 8em !important;
}
.t-mt-9em {
    margin-top: 9em !important;
}
.t-mt-10em {
    margin-top: 10em !important;
}
.t-mb-1em {
    margin-bottom: 1em !important;
}
.t-mb-2em {
    margin-bottom: 2em !important;
}
.t-mb-3em {
    margin-bottom: 3em !important;
}
.t-mb-4em {
    margin-bottom: 4em !important;
}
.t-mb-5em {
    margin-bottom: 5em !important;
}
.t-mb-6em {
    margin-bottom: 6em !important;
}
.t-mb-7em {
    margin-bottom: 7em !important;
}
.t-mb-8em {
    margin-bottom: 8em !important;
}
.t-mb-9em {
    margin-bottom: 9em !important;
}
.t-mb-10em {
    margin-bottom: 10em !important;
}
.t-ml-1em {
    margin-left: 1em !important;
}
.t-ml-2em {
    margin-left: 2em !important;
}
.t-ml-3em {
    margin-left: 3em !important;
}
.t-ml-4em {
    margin-left: 4em !important;
}
.t-ml-5em {
    margin-left: 5em !important;
}
.t-ml-6em {
    margin-left: 6em !important;
}
.t-ml-7em {
    margin-left: 7em !important;
}
.t-ml-8em {
    margin-left: 8em !important;
}
.t-ml-9em {
    margin-left: 9em !important;
}
.t-ml-10em {
    margin-left: 10em !important;
}


/* 文字の太さ */
.t-font-400 {
    font-weight: 400 !important;
}
.t-font-500 {
    font-weight: 500;
}
.t-font-700 {
    font-weight: 700;
}


/* 文字色 */


/* 文字 下線 */



/* 文字 字間 */
.t-letter-spacing-005em {
    letter-spacing: .05em
}
.t-letter-spacing-01em {
    letter-spacing: .1em
}


/* 文字 行間 */


/* 文字サイズ */
.t-font-18{
	font-size: 1.8rem;
}
.t-font-20{
	font-size: 2rem;
}
.t-font-22{
	font-size: 2.2rem;
}


/* 表示揃え */
.t-right {
    text-align: right;
}
.t-left {
    text-align: left;
}
.t-center {
    text-align: center;
}
@media(max-width:767px) {
    .t-sp-left {
        text-align: left !important;
    }
}



/* 見出し */
.t-h2-underline{
	margin-bottom: 1em;
	font-size: 2.6rem;
	text-decoration: underline;
    text-decoration-color: var(--yellow-marker);
    text-decoration-thickness: 0.45em;
    text-underline-offset: -0.16em;
    text-align: center;
}


/* 画像 */
.t-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



/* 枠線 */
.t-border{
    border: 1px solid #ddd;
}



/* リンクの装飾 */
.t-arrow-circle{
}
.t-arrow-circle:after{
	content: "";
	position: relative;
	display: inline-block;
	left: .5em;
	width: 20px;
	height: 100%;
	background: url(img/ico_gnav_arrow.svg) center / 20px auto no-repeat;
}


/* ボタン */
.t-btn-shimple a{
	margin-top: 20px;
    margin-bottom: 0;
	padding: 0 calc(1.5em + 10px) 0 1.5em !important;
	position: relative;
    display: inline-block !important;
    width: auto;
	height: 46px;
    min-width: 140px;
    background: var(--main-light);
    color: #fff;
    line-height: 46px;
    text-align: center;
    font-weight: 400;
	font-size: 1.7rem;
	transition: .25s;
	opacity: 1;
}
.t-btn-shimple a:hover{
	opacity: .85;
}
.t-btn-shimple a:after{
    content: "";
    position: absolute;
    display: block;
	right: 10px;
	top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-top: 2.5px solid #fff;
	border-right: 2.5px solid #fff;
    transform: rotate(45deg);
}
@media(max-width:768px){
	.t-btn-shimple {
		padding-top: 0 !important;
		text-align: center !important;
	}
}

.t-list{
	padding-left:2em;
	list-style:circle;
}


.vol-list-btn{
	margin-bottom:1em;
	text-align:center;
}
.vol-list-btn.t-btn-shimple a{
	min-width:80%;
	border-radius:5px;
	background:var(--green-light);
}
.vol-list-2 .vol-list-btn.t-btn-shimple a{
	background:var(--orange);
}
.step-wrap1 {
  counter-reset:count;
  margin-bottom:2em;
  padding-left:1em;
  padding-right:1em;
  position: relative;
  background:var(--orange-bg);
 }
 .step-content1 {
  padding: 0 0 1.3em 2em;
  margin: 0;
  position: relative;
 }
 .step-content1::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: var(--orange);
  border: solid 3px #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
  box-shadow: 0 0 0 2px var(--orange);
 }
 .step-content1::after {
  content: "";
  display: block;
  height: calc(100% - 35px);
  border-left: dotted 5px #768888;
  position: absolute;
  top: 30px;
  left: 10px;
 }
 .step-title1 {
  font-weight: bold;
  font-size: 120%;
 }
 .step-label1 {
  color: #768888;
  font-weight: bold;
 }
 .step-label1::after {
  counter-increment:count;
  content:counter(count);
  position: relative;
  left: .3em;
 }
 .step-body1 {
  margin-top: .5em;
  padding: 0 0 1em;
  border-bottom: dotted 2px #ddd;
 }
 .step-wrap1 > :last-of-type::after {
  display: none;
 }
.step-wrap2 {
  counter-reset:count;
  margin-bottom:2em;
  padding-left:1em;
  padding-right:1em;
  position: relative;
  background:var(--green-bg);
 }
 .step-content2 {
  padding: 0 0 1.3em 2em;
  margin: 0;
  position: relative;
 }
 .step-content2::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: var(--green-light);
  border: solid 3px #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
  box-shadow: 0 0 0 2px var(--green-light);
 }
 .step-content2::after {
  content: "";
  display: block;
  height: calc(100% - 35px);
  border-left: dotted 5px #768888;
  position: absolute;
  top: 30px;
  left: 10px;
 }
 .step-title2 {
  font-weight: bold;
  font-size: 120%;
 }
 .step-label2 {
  color: #768888;
  font-weight: bold;
 }
 .step-label2::after {
  counter-increment:count;
  content:counter(count);
  position: relative;
  left: .3em;
 }
 .step-body2 {
  margin-top: .5em;
  padding: 0 0 1em;
  border-bottom: dotted 2px #ddd;
 }
 .step-wrap2 > :last-of-type::after {
  display: none;
 }

.check{
	padding:.5em;
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	background:var(--main-bg);
}
.check li{
	position:relative;
	padding-left:1.5em;
}
.check li::before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: .5em;
	width: 10px;
	height: 5px;
	border-left: 2px solid var(--orange);
	border-bottom: 2px solid var(--orange);
	transform: rotate(-45deg) translate(0,-50%);
}
.job-archive{
	padding:2em 0;
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:1.6em;
}
.job-archive__item {
	padding: 1em;
	transition: .25s;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	cursor: pointer;
}
.job-archive__item:hover{
	color:inherit;
	background: var(--main-bg);
	box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.job-archive__item h3{
	padding-bottom:.5em;
	margin-bottom:.5em;
	border-bottom:2px dotted #999;
	line-height:1.6;
}
.job_status{
	text-align:center;
}
.job_status .on,
.job_status .off{
	padding:.2em;
	font-size:1.4rem;
	display:block;
}
.job_status .on{
	border:2px solid var(--main-vivid);
}
.job_status .off{
	border:2px solid #999;
}
.job_desc{
	font-size:1.4rem;
}
@media(max-width:1100px){
	.job-archive{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}
}
@media(max-width:500px){
	.job-archive{
		grid-template-columns:repeat(1,minmax(0,1fr));
	}
}


.t-btn-job{
	display: block;
	padding: 15px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	border-radius: 5px;
	background: var(--orange);
	transition: all ease-in-out .2s;
}
.t-btn-job:hover {
	background: #FFC000;
}

.creatorlist-archive{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:1.6em;
}
.creatorlist-archive__item {
	padding: 1em;
	transition: .25s;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	display:flex;
	gap:1em;
}
.creatorlist-image{
	flex-shrink:0;
	width:200px;
	aspect-ratio:1 / 1;
	background:var(--main-bg);
}
.creatorlist-image img{
	width:100%;
	height:100%;
	object-fit:contain;
}
.creatorlist-info{
	padding:1em 0;
}
.creatorlist-name{
	margin-bottom:.5em;
	font-size:1.8rem;
	font-weight:700;
	line-height:1.6;
}
.creatorlist-desc{
	font-size:1.4rem;
	line-height:1.8;
}

.thumb_box{
	display:flex;
	align-items:flex-start;
	gap:1.6em;
}
@media(max-width:500px){
	.thumb_box{
		flex-wrap:wrap;
	}
}
.thumb_box-img{
	width:260px;
	flex-shrink:0;
}
.thumb_box + .thumb_box{
	margin-top:80px;
}

.shortwk-archive{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:1.6em;
}
@media(max-width:500px){
	.shortwk-archive{
		grid-template-columns:repeat(1,minmax(0,1fr));
	}
}
.shortwk-archive__item {
	padding: 1em;
	font-size:1.6rem;
	transition: .25s;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.shortwk-head{
	margin-bottom:1em;
	display:flex;
	gap:1em;
	align-items:center;
}
.shortwk-image{
	flex-shrink:0;
	width:200px;
	aspect-ratio:1 / 1;
	background:var(--broun-bg-light);
}
.shortwk-image img{
	width:100%;
	height:100%;
	object-fit:contain;
}
.shortwk-info{
	padding:1em 0;
}
.shortwk-name{
	margin-bottom:.5em;
	font-size:1.8rem;
	font-weight:700;
	line-height:1.6;
}
.shortwk-desc{
	font-size:1.4rem;
	line-height:1.8;
}
.shortwk-archive__item hr{
	margin:1em 0;
	border:none;
	border-top:2px solid #eee;
	background:none;
}

.shortwk_list{
}
.shortwk_list-item{
	padding:20px;
	border:2px solid #eee;
}
.shortwk_list-item + .shortwk_list-item{
	border-top:none;
}
.shortwk_list-item .type{
	margin-bottom:.5em;
	padding:.1em .4em;
	font-size:1.3rem;
	line-height:normal;
	width:fit-content;
	max-width:100%;
	border:1px solid var(--main-vivid);
}
.shortwk_list-item .title{
	font-size:2rem;
}
.shortwk_list-item .lead{
	margin-top:.4em;
}
.shortwk_list-item .lead span{
	font-size:1.4rem;
}

.mm_form{
	max-width:650px;
	margin-left:auto;
	margin-right:auto;
	display:grid;
	grid-template-columns:11em 1fr;
	align-items:center;
	gap:10px 20px;
}
.mm_form-title{
	font-weight:700;
	text-align:right;
}
.mm_form-title .must{
	color:#FF4000;
}
.mm_form p{
	margin:0;
	padding:0;
}
.mm_form-input{
}
.mm_form-input input{
	background:#fff;
	border:1px solid #aaa;
	border-radius:3px;
}
.mm_form > *:last-child{
	grid-column:1 / 3;
}
.mm_form input[type="submit"]{
	height:auto;
	padding-top:.8em;
	padding-bottom:.8em;
	line-height:normal;
	background:#FF4000;
}
.mm_sub{
	font-size:1.4rem;
	font-weight:500;
}
.select_area{
	margin-bottom:2em;
	padding:1em 2em;
	border-radius:5px;
	border:2px solid #efefef;
	display:flex;
	gap:2em;
}
.select_area h2{
	padding-right:2em;
	min-width:9.5em;
	display:flex;
	justify-content:center;
	align-items:center;
	border-right:2px solid #efefef;
}
.select_area ul{
	display:grid;
	grid-template-columns:repeat(5,minmax(0,1fr));
	gap:10px 20px;
}
.select_area ul li:not(:has(a)){
	color:#999;
}
.select_area ul li a{
	display:inline-block;
	border-bottom:3px dashed var(--main-light);
}
.select_area ul li a:hover{
	border-bottom-color:transparent;
}
@media(max-width:1100px){
	.select_area ul{
		grid-template-columns:repeat(3,minmax(0,1fr));
	}
}
@media(max-width:500px){
	.select_area{
		display:block;
	}
	.select_area h2{
		text-align:center;
		padding-right:0;
		border-right:none;
	}
	.select_area ul{
		grid-template-columns:repeat(3,minmax(0,1fr));
	}
}
.banner_wrap{
	margin-top:3em;
	margin-left:auto;
	margin-right:auto;
	padding-left:1.5em;
	padding-right:1.5em;
	max-width:1200px;
	display:flex;
	justify-content:center;
	gap:1.5em;
}
.banner_item{
	width:fit-content;
}
@media(max-width:1100px){
	.banner_wrap{
		flex-wrap:wrap;
	}
}
.text_link{
	border-bottom:2px dashed var(--main-vivid);
}
.text_link:hover{
	border-bottom-color:var(--yellow);
}