@charset 'utf-8';

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none{
		display: none!important;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none{
		display: none!important;
	}
}


/*リキッドの場合に使用*/
@media only screen and (min-width: 768px){
/*	768px-1280px 画面幅1280px閲覧で1px=0.1rem可変*/
	html{
/*			font-size: 0.782vw;*/
		}
}
@media only screen and (max-width: 767px){
/*	-767px 画面幅375px閲覧で1px=0.1rem可変*/
	html{
			font-size: 2.67vw;
		}
}
@media only screen and (max-width: 374px){
/*	-374px 画面幅374pxで1px=0.1rem固定*/
	html{
/*			font-size: 62.5%;*/
		}
}
@media only screen and (min-width: 1280px){
/*	1280px- 画面幅1280pxで1px=0.1rem固定*/
	html{
/*		font-size: 62.5%;*/
	}
}

/*Googleフォントここから*/
body{
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	color: #6A3906;
	letter-spacing: calc((0/1000)*1em);
	/*text-decoration-thickness: 1px;
	text-decoration-line: underline;
	text-decoration-color: #000000;
	text-decoration-style: solid;
	text-underline-offset: 3px;
	text-decoration-skip-ink: none;*/
}
html.active,
body.active{
	overflow: hidden;
}

.thin{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 100;
}
.elight{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 200;
}
.light{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300;
}
.regular{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}
.mid{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
}
.sbold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 600;
}
.bold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 700;
}
.ebold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 800;
}
.black{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 900;
}
.g_font{
	font-family: "Mochiy Pop One", sans-serif;
	font-weight: 400;
	font-style: normal;
}

/*Googleフォントここまで*/
*{
	box-sizing: border-box;
}

svg{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}
iframe{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}
::-webkit-scrollbar{
	display: none;
}
::scrollbar{
	display: none;
}
::before,
::after{
	box-sizing: border-box;
}

body,
main,
header,
footer{
	min-width: 1220px;
}
@media only screen and (max-width: 767px){
	body,
	main,
	header,
	footer{
		min-width: 320px;
	}
}

body{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
}

main{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
	background-color: #F6FFD9;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	main{
	}
}

/*headerここから*/
header{
	width: 100%;
	height: 88px;
	display: block;
	background-color: #B28146;
}
@media only screen and (max-width: 767px){
	header{
		width: 100%;
		height: 80px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		background-color: initial;
	}
}
header .header01{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01{
		background-color: transparent;
		transition: all .5s;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		padding-right: 12px;
	}
}
@media only screen and (max-width: 767px){
/*メニューオープンボタン*/
	header .header01 .slide-menu-btn{
		width: 54px;
		height: 54px;
		border-radius: 8px;
		margin: 0;
		background-color: #B28146;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		flex-shrink: 0;
		cursor: pointer;
		position: relative;
		z-index: 10;
	}
	/*メニューオープンボタン内部テキスト*/
	header .header01 .slide-menu-btn::after{
		content: 'menu';
		width: auto;
		height: auto;
		margin: 5px 0 0;
		font-family: 'Noto Sans JP', sans-serif;
		font-optical-sizing: auto;
		font-style: normal;
		font-weight: 800;
		font-size: 13px;
		line-height: 13px;
		color: #ffffff;
		display: block;
		text-align: center;
	}
	header .header01 .slide-menu-btn.active::after{
		content: 'menu';
		color: #fff;
	}
	/*メニューオープンボタン内部の線*/
	header .header01 .slide-menu-btn .line-bar_area{
		width: 36px;
		height: 10px;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		position: relative;
	}
	header .header01 .slide-menu-btn.active{
		background-color: #B28146;
	}
	header .header01 .slide-menu-btn.active .line-bar_area{
		width: 26px;
	}
	header .header01 .slide-menu-btn .line-bar_area::before{
		content: '';
		width: 100%;
		height: 2px;
		background-color: #ffffff;
		display: block;
		position: absolute;
		top: 0;
		bottom: auto;
		left: 0;
		right: 0;
		margin: auto;
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar_area::before{
		background-color: #fff;
		transform: rotate(calc(180deg + 45deg));
		bottom: 0;
	}
	header .header01 .slide-menu-btn .line-bar_area::after{
		content: '';
		width: 100%;
		height: 2px;
		background-color: #ffffff;
		display: block;
		position: absolute;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar_area::after{
		background-color: #fff;
		transform: rotate(calc(180deg + 45deg + 90deg));
		top: 0;
	}
	header .header01 .slide-menu-btn .line-bar_area .line-bar{
		display: none;
	}
	header .header01 .slide-menu-btn.active .line-bar_area .line-bar{
		background-color: transparent;
		transition: all 1.0s ease;
	}
/*メニューオープンボタン*/
}
header .header01 nav{
	box-sizing: border-box;
	width: 1120px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-content: center;
	justify-content: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav{
		width: 100%;
		min-width: 320px;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		padding: 74px 0 30px;
		background-color: #B28146;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: column;
		position: fixed;
		top: calc(var(--vh, 1vh) * -100);
		right: 0;
		z-index: 1;
		transition: all .5s;
	}
	header .header01 .panelactive{
		top: 0;
		right: 0;
		transition: all .5s;
	}
}
header .header01 nav .nav_bg{
	width: auto;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_bg{
		width: 100%;
		overflow-y: scroll;
		overflow-x: hidden;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}	
}
header .header01 nav .nav_01{
	width: 971px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01{
		width: 90%;
		max-width: 320px;
		margin: 0 auto;
		display: block;
		border-bottom: 1px solid #D9D9D9;
	}
}
header .header01 nav .nav_01 > li{
	width: auto;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li{
		width: 100%;
		height: auto;
		min-height: 60px;
		border-top: 1px solid #D9D9D9;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		text-align: left;
	}
	header .header01 nav .nav_01 > li:nth-of-type(1){
		border-top: 0;
	}
}
header .header01 nav .nav_01 > li > a{
	box-sizing: border-box;
	width: auto;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li > a{
		margin: 0 auto;
	}
}
header .header01 nav .nav_01 > li:nth-of-type(1) a{
	width: 62px;
}
header .header01 nav .nav_01 > li:nth-of-type(2) a{
	width: 116px;
}
header .header01 nav .nav_01 > li:nth-of-type(3) a{
	width: 87px;
}
header .header01 nav .nav_01 > li:nth-of-type(4) a{
	width: 105px;
}
header .header01 nav .nav_01 > li:nth-of-type(5) a{
	width: 119px;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li > a{
		width: auto;
		height: auto;
		padding: 26px 0;
		font-size: 16px;
		line-height: 20px;
		justify-content: flex-start;
	}

	header .header01 nav .nav_01 > li:nth-of-type(1) a{
		width: 48px;
		padding-top: 0;
	}
	header .header01 nav .nav_01 > li:nth-of-type(2) a{
		width: 89px;
	}
	header .header01 nav .nav_01 > li:nth-of-type(3) a{
		width: 67px;
	}
	header .header01 nav .nav_01 > li:nth-of-type(4) a{
		width: 81px;
	}
	header .header01 nav .nav_01 > li:nth-of-type(5) a{
		width: 91px;
	}
}
header .header01 nav .nav_01 > li > a .nav_title{
	width: 100%;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01 nav .h_contact{
		width: 100%;
		height: auto;
		margin: 30px auto;
		text-align: center;
	}
	header .header01 nav .h_contact .h_contact_text01{
		font-size: 15px;
		line-height: 25px;
		color: #fff;
	}
	header .header01 nav .h_contact .tel{
		width: 119px;
		height: auto;
		margin: 11px auto 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 15px;
		line-height: 25px;
		color: #fff;
	}
	header .header01 nav .h_contact .tel img{
		width: 14px;
		height: auto;
		display: block;
	}
	header .header01 nav .h_contact .mail{
		width: 289px;
		height: auto;
		margin: 0 auto 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 17px;
		line-height: 27px;
		color: #fff;
	}
	header .header01 nav .h_contact .mail img{
		width: 20px;
		height: auto;
		display: block;
	}
	header .header01 nav .h_contact .cta_text02{
		text-align: center;
		font-size: 16px;
		line-height: 32px;
		letter-spacing: calc((50/1000)*1em);
		margin-top: 24px;
	} 
}

/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #B28146;
	display: block;
}
footer .footer01{
	width: 1180px;
	height: 30px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	footer .footer01{
		width: 100%;
	}
}
footer .footer01 p{
	font-size: 12px;
	line-height: 22px;
	letter-spacing: calc((50/1000)*1em);
	color: #fff;
}

/*footerここまで*/

/*btn-topここから*/
.btn-top{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: auto;
	bottom: 0;
	left: auto;
	right: 20px;
	margin: auto;
	z-index: 10;
	cursor: pointer;
}
.btn-top::before{
	content: '';
	width: 50%;
	height: 40%;
	margin: 0;
	clip-path: polygon(0 100%, 50% 0, 100% 100%);
	background-color: #fdbe56;
	display: block;
}
@media only screen and (max-width: 767px) {
	.btn-top {
		right: 0;
	}
}
/*btn-topここまで*/

/*includeここから*/

/*.eyecatch_incここから*/
.eyecatch_inc.top{
	width: 100%;
	min-width: 1120px;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
	background-image: url(../img/index/bg00.jpg);
	background-repeat: repeat;
	background-size: 97px;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top{
		min-width: 320px;
		background-image: url(../img/index/bg00_sp.svg);
		background-size: 38px;
	}
}
.eyecatch_inc.top .bg02{
	width: 100%;
	max-width: 1360px;
	height: auto;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .bg02{
		width: 100%;
		max-width: initial;
		height: auto;
	}
}
.eyecatch_inc.top .eyecatch_inc01{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
	justify-content: center;
  	align-items: center;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc01{
		width: 100%;
		justify-content: flex-start;
	}
}
.eyecatch_inc.top .eyecatch_inc01 h1{
	width: 600px;
	height: auto;
	display: block;
	margin-right: 119px;
	margin-bottom: 10px;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc01 h1{
		width: 31.8rem;
		margin-right: initial;
		margin-bottom: initial;
		margin-top: 5.0rem;
		position: relative;
		z-index: 10;
	}
}
.eyecatch_inc.top .eyecatch_inc01 h1 .hero_img{
	width: 100%;
	height: auto;
	display: block;
	/*margin-left: -0.5rem;/*==================================================2025/12/17追記*/*/
}
@media only screen and (max-width: 767px){/*==================================================2025/12/17追記*/
	.eyecatch_inc.top .eyecatch_inc01 h1 .hero_img{/*==================================================2025/12/17追記*/
		margin-left: -1.0rem;/*==================================================2025/12/17追記*/
	}/*==================================================2025/12/17追記*/
}/*==================================================2025/12/17追記*/
.eyecatch_inc.top .eyecatch_inc01 .date{
	width: 270px;
  	height: auto;
  	display: block;
  	position: absolute;
  	right: 0;
  	left: 665px;
  	top: calc(50% + 50px);
  	margin: auto;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc01 .date{
		width: 19.0rem;
		right: 0px;
		z-index: -1;
		top: calc(50% + 18.0rem);
		left: initial;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .date .date_img{
	width: 100%;
	height: auto;
	display: block;
}

.eyecatch_inc.top .eyecatch_inc02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img{
	width: 100%;
	height: 100vh;
	height: calc(var(--vh_2, 1vh) * 100 - 88px);
	min-height: 800px;
	margin: 0 auto;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
	.eyecatch_inc.top .eyecatch_inc02 .eye_img{
		width: 100%;
		height: 800px;
	}
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc02 .eye_img{
		height: 61.0rem;
		min-height: initial;
	}
}


.eyecatch_inc.short{
	width: 100%;
	min-width: 1120px;
	height: 240px;
	margin: 0 auto;
	display: block;
	background-image: url(../img/common/bg01.jpg);
	background-repeat: repeat;
	background-size: 97px;
	background-position: left top;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short{
		height: 150px;
		min-width: 326px;
		background-image: url(../img/common/bg00_sp.svg);
		background-size: 38px;
		background-position: left top;
	}
}
.eyecatch_inc.short h1{
	width: 228px;
	height: auto;
	display: block;
}
.eyecatch_inc.short h1 img{
	width: 100%;
	height: auto;
	display: block;
}
/*.eyecatch_incここまで*/





/*.pan_incここから*/
.pankuzu_inc{
	width: 100%;
	height: auto;
	padding-top: 10px;
}
.pankuzu_inc .pankuzu_inc_inner{
	width: 1120px;
	height: auto;
	margin: 0 auto;
	font-size: 0;
	line-height: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner{
		width: 90%;
		max-width: 320px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > a{
	font-size: 13px;
	line-height: 23px;
	display: inline;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > a{
		font-size: 12px;
		line-height: 22px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > span{
	font-size: 13px;
	line-height: 23px;
	display: inline;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > span{
		font-size: 12px;
		line-height: 22px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > p{
	font-size: 13px;
	line-height: 23px;
	display: inline;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > p{
		font-size: 12px;
		line-height: 22px;
	}
}
/*.pan_incここまで*/

/*.paginationここから*/
.wp-pagenavi {
	width: 930px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi {
		width: 100%;
		max-width: 320px;
	}
}
.wp-pagenavi span{
	width: 37px;
	height: 37px;
	font-size: 13px;
	line-height: 37px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: calc(30px / 2);
	border: 1px solid #cccccc;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi span{
		margin: calc(30px / 2) calc(15px / 2);
	}
}
.wp-pagenavi a{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 37px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: calc(8px / 2);
	color: #6A3906;
	padding-bottom: 4px;
}
.wp-pagenavi a:hover{
	background-color: #6A3906;
	color: #fff;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi a{
		margin: calc(8px / 2);
		width: 45px;
		height: 45px;
	}
}
.wp-pagenavi .current{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 37px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: calc(8px / 2);
	background-color: #6A3906;
	color: #fff;
	padding-bottom: 4px;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi .current{
		margin: calc(8px / 2);
		width: 45px;
		height: 45px;
	}
}
/*.wp-pagenavi .previouspostslink{
	border: 0;
	font-size: 0;
	line-height: 0;
}
.wp-pagenavi .previouspostslink::before{
	content: '';
	width: 6px;
	height: 6px;
	margin: 0 -3px 0 0;
	border-top: 1px solid #262626;
	border-left: 1px solid #262626;
	display: block;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	flex-shrink: 0;
}
.wp-pagenavi .nextpostslink{
	border: 0;
	font-size: 0;
	line-height: 0;
}
.wp-pagenavi .nextpostslink::before{
	content: '';
	width: 6px;
	height: 6px;
	margin: 0 0 0 -3px;
	border-bottom: 1px solid #262626;
	border-right: 1px solid #262626;
	display: block;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	flex-shrink: 0;
}
.wp-pagenavi .nextpostslink:hover::before{
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
}*/
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .extend,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink{
	display: none;
}

/*ctaここから*/
.cta{
	width: 100%;
	height: auto;
	display: block;
	background-color: #E8F7BB;
	position: relative;
	padding: 70px 0 40px;
}
@media only screen and (max-width: 767px){
	.cta{
		padding: 40px 0 37px;
	}
}
.cta::before{
	content:'';
	display: block;
	width: 100%;
	height: 45px;
	background-image: url(../img/common/bg03.svg);
	background-repeat:repeat-x; 
	background-size: 1400px 45px;
	position: absolute;
	top: -22px;
	left:0;
}
@media only screen and (max-width: 767px){
	.cta::before{
		height: 25px;
		background-image: url(../img/common/bg03_sp.svg);
		background-size: 375px 25px;
		top: -14px;
	}
}
.cta .cta_01{
	width: 1120px;
	height: auto;
	margin: 0 auto;
	position: relative;
}
@media only screen and (max-width: 767px){
	.cta .cta_01{
		width: 90%;
		max-width: 326px;
	}
}
.cta .cta_01 h3{
	width: 392px;
	height: auto;
	display: block;
	margin: 0 auto;
}
@media only screen and (max-width: 767px){
	.cta .cta_01 h3{
		width: 236px;
	}
}
.cta .cta_01 h3 img{
	width: 100%;
	height: auto;
	display: block;
}
.cta .cta_01 .cta_text01{
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: calc((50/1000)*1em);
	margin-top: 35px;
}
@media only screen and (max-width: 767px){
	.cta .cta_01 .cta_text01{
		font-size: 15px;
		line-height: 24px;
		margin-top: 26px;
	}
}
.cta .cta_01 .tel{
	width: 225px;
	height: auto;
	margin: 23px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 28px;
	line-height: 38px;
}
@media only screen and (max-width: 767px){
	.cta .cta_01 .tel{
		width: 146px;
		margin: 23px auto 0;
		font-size: 18px;
		line-height: 28px;
	}
}
.cta .cta_01 .tel img{
	width: 23px;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.cta .cta_01 .tel img{
		width: 18px;
	}
}
.cta .cta_01 .mail{
	width: 474px;
	height: auto;
	margin: 0 auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 28px;
	line-height: 38px;
}
@media only screen and (max-width: 767px){
	.cta .cta_01 .mail{
		width: 303px;
		font-size: 18px;
		line-height: 38px;
	}
}
.cta .cta_01 .mail img{
	width: 30px;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px){
	.cta .cta_01 .mail img{
		width: 18px;
	}
}
.cta .cta_01 .cta_text02{
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	letter-spacing: calc((50/1000)*1em);
	margin-top: 24px;
} 
@media only screen and (max-width: 767px){
	.cta .cta_01 .cta_text02{
		font-size: 14px;
		line-height: 32px;
		margin-top: 19px;
	} 
}
/*.paginationここまで*/

/*includeここまで*/