@charset "utf-8";

*
*::before,
*::after {
	box-sizing: border-box;
}

/* 基本設定
****************************************/
html {
	font-size: 1vw;
}

body {
	font-size: 16px;
	line-height: 2;
	color: #333333;
	font-family: 'Satoshi','Philosopher', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	letter-spacing: 0.1em;
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

iframe {
	vertical-align: middle;
}

.MainWrap{
	position: relative;
}



/*flex---------------------------------*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.fl_between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.al_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.fl_wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.jc_center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.reverse{
	flex-direction: row-reverse;
}

/* pcでは横並び、spでは縦並び */
.fl_pcsp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width:768px) {
	html {
		font-size: 2.6666vw;
	}

	/* pcでは横並び、spでは縦並び */
	.fl_pcsp {
		display: block;
	}
}

/*inner---------------------------------*/

.headerInner,.footerInner{
	width: 90%;
	margin: 0 auto;
}

.inner_l {
	width: 90%;
	margin: 0 auto;
	max-width: 1200px;
}

.inner {
	width: 80%;
	margin: 0 auto;
	max-width: 1200px;
}

.inner_s {
	width: 80%;
	max-width: 750px;
	margin: 0 auto;
}

@media screen and (max-width:768px) {
	.inner_l,
	.inner,
	.inner_s {
		width: calc(100% - 40px);
		max-width: 100%;
	}

	.headerInner,.footerInner{
		width: calc(100% - 40px);
		max-width: 100%;
	}
}

/*PC/SP表示----------------------------*/

.sp {
	display: none;
}

.pc {
	display: block;
}

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

	.sp {
		display: block;
	}

	.pc {
		display: none;
	}
}


/*テキスト配置---------------------------------*/

.tac {
	text-align: center;
}

/* pcは中央揃え、spは左寄せ */
.pc_tac {
	text-align: center;
}

@media screen and (max-width:768px) {
	/* pcは中央揃え、spは左寄せ */
	.pc_tac {
		text-align: left;
	}
}


/*余白---------------------------------*/

.pt120 {
	padding-top: 120px;
}

.pb120 {
	padding-bottom: 120px;
}

.pt100 {
	padding-top: 100px;
}

.pb100 {
	padding-bottom: 100px;
}

.pt80 {
	padding-top: 80px;
}

.pb80 {
	padding-bottom: 80px;
}

.pt60 {
	padding-top: 60px;
}

.pb60 {
	padding-bottom: 60px;
}

.pt40 {
	padding-top: 40px;
}

.pb40 {
	padding-bottom: 40px;
}

.mt120 {
	margin-top: 120px;
}

.mb120 {
	margin-bottom: 120px;
}

.mt80 {
	margin-top: 80px;
}

.mb80 {
	margin-bottom: 80px;
}

.mt60 {
	margin-top: 60px;
}

.mb60 {
	margin-bottom: 60px;
}

.mt40 {
	margin-top: 40px;
}

.mb40 {
	margin-bottom: 40px;
}

@media screen and (max-width:768px) {
	.pt120 {
		padding-top: 80px;
	}

	.pb120 {
		padding-bottom: 80px;
	}

	.pt100 {
		padding-top: 60px;
	}

	.pb100 {
		padding-bottom: 60px;
	}

	.pt80 {
		padding-top: 60px;
	}

	.pb80 {
		padding-bottom: 60px;
	}

	.pt60 {
		padding-top: 40px;
	}

	.pb60 {
		padding-bottom: 40px;
	}

	.pt40 {
		padding-top: 30px;
	}

	.pb40 {
		padding-bottom: 30px;
	}

	.mt120 {
		margin-top: 80px;
	}

	.mb120 {
		margin-bottom: 80px;
	}

	.mb80 {
		margin-bottom: 60px;
	}

	.mt80 {
		margin-top: 60px;
	}

	.mb60 {
		margin-bottom: 40px;
	}

	.mt60 {
		margin-top: 40px;
	}
}





/*色---------------------------------*/


.theme_color {
	color: #000;
}

.bg_theme_color {
	background: #25D366;
}

.bg_black {
	background: #000000;
}

.col_w{
	color: #fff;
}


/*ボタン----------------------------------*/

/* ホバーアクションが必要なもの */
.hover,
.hover-opacity,
.hover-color,
.hover-bg {
	transition: .3s;
}

.hover-color{
	padding: 10px 0;
	position: relative;
	line-height: 100%;
	letter-spacing: normal;
	transition: all .3s;
}

.hover-color::after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: #25D366;
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: .3s;
}

.hover-opacity:hover {
	opacity: 0.8;
}
.hover-color:hover {
	color: #25D366;
}

.hover-color:hover::after{
	opacity: 1;
}

/* ヘッダーナビのボタン */
.navMenuBtn {
	font-size: 14px;
	color: #000000;
	padding: 12px 20px;
	border-radius: 5px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: normal;
	text-align: center;
	border: 1px solid #0D0D0D;
	background-color: #fff;
	transition: all .3s;
}

.navMenuBtn a{
	font-weight: 600;
}

.navMenuBtn:hover {
	background: #000000;
	color: #fff;
}

.navMenuBtn02 {
	background-color: #25D366;
	border: solid 1px #000000;
	transition: all .3s;
}

.navMenuBtn02:hover {
	background-color: #fff;
	color: #000000;
}

.navMenuBtn img {
	margin-left: 16px;
	transition: .3s;
}

.navMenuBtn:hover img {
	transform: translateX(3px);
}

/* 通常のボタン */
.btn {
	overflow: hidden;
	z-index: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	transition: .5s ;
	background-color: #25D366;
	border: solid 1px #000000;
	border-radius: 50px;
	width: 240px;
	padding: 20px 30px;
	transition: all .3s;
}

.btn02{
	background-color: #000000;
	border: solid 1px #000000;
	color: #fff;

}

.btn span{
	display: inline-block;
	vertical-align: middle;
}

.btn span:first-of-type{
	line-height: 100%;
	letter-spacing: 0.02em;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all .3s;
}

.btn span:last-of-type{
	width: 16px;
	height: 16px;
	margin-left: 14px;
	position: relative;
}

.btn span:last-of-type svg{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.btn span:last-of-type path{
	transition: all .3s;
}

.btn:hover{
	background-color: #000;
}

.btn:hover span:first-of-type{
	color: #fff;
}

.btn:hover span:last-of-type path{
	stroke: #fff;
}

.btn02:hover{
	background-color: #fff;
}

.btn02 span:first-of-type{
	color: #fff;
}

.btn02:hover span:first-of-type{
	color: #000000;
}

.btn02:hover span:last-of-type path{
	stroke: #000000;
}



@media screen and (max-width:768px) {
	.btn {
		font-size: 14px;
	}

	.btn02{
		margin: 0 auto;
	}
}

/*フォント---------------------------------*/

.sans-en{
	font-family: "termina", sans-serif;
}


.zen{
	font-family: 'Zen Maru Gothic', sans-serif;
}

.serfi{
	font-family: 'Noto Serif JP', serif;
}

/*タイトル（適宜変更・削除してください）-------*/


.ttl1_main{
	font-family: "termina", sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: normal;
}



.ttl2_main {
	font-family: "termina", sans-serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: normal;
}

.ttl2_sub{
	padding-top: 14px;
	line-height: 160%;
	letter-spacing: normal;
	font-size: 18px;
	font-weight: 600;
}

.ttl3_sub{
	line-height: 160%;
	letter-spacing: normal;
	padding-top: 10px;
	font-weight: 600;
}

.ttl3_main{
	font-size: 20px;
	line-height: 100%;
	letter-spacing: normal;
	font-weight: 500;
	font-family: "termina", sans-serif;
}

.ttl4_main{
	font-size: 24px;
	line-height: 160%;
	letter-spacing: 0.1em;
	font-family: 'Noto Serif JP', serif;
}


.ttl5_main {
	font-size: 20px;
	line-height: 160%;
	letter-spacing: 0.1em;
	font-family: 'Noto Serif JP', serif;
}

.ttl6_main span{
	display: inline-block;
	vertical-align: middle;
}

.ttl6_main span:first-of-type{
	font-size: 28px;
	line-height: 160%;
}

.ttl6_main span:last-of-type{
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.04em;
	padding-left: 14px;
}




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

	.ttl1_main{
		font-size: 28px;
	}



	.ttl2_main {
		font-size: 42px;
	}

	.ttl2_sub{
		padding-top: 10px;
		font-size: 16px;
	}

	.ttl3_sub{
		font-size: 14px;
	}

	.ttl3_main{
		font-size: 20px;
	}

	.ttl4_main{
		font-size: 20px;
	}


	.ttl5_main {
		font-size: 20px;
		line-height: 160%;
		letter-spacing: 0.1em;
		font-family: 'Noto Serif JP', serif;
	}


	.ttl6_main span:first-of-type{
		font-size: 24px;
		line-height: 160%;
	}

	.ttl6_main span:last-of-type{
		padding-left: 12px;
	}


}


.b_radius5 {
	border-radius: 5px;
}


/*ヘッダー----------------------------------*/

/*ヘッダー----------------------------------*/

.header {
	padding: 26px 0;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 100;
	transition: .3s;
}

.header02 {
	position: static;
	padding: 20px 0;
	border-radius: 0;
	background-color: unset;
	box-shadow: unset;
	backdrop-filter: unset;
}

.header.scroll{
	background-color: rgba(255,255,255,1);
}

.header.active {
	opacity: 1;
	top: 0;
	transition: .8s;
}

.headerLogo a,
.navMenu a {
	text-decoration: none;
}

.headerLogo {
	z-index: 1000;
}

.headerLogo a{
	display: block;
	overflow: hidden;
	line-height: 0;
	white-space: nowrap;
	text-indent: 100%;
	width: 184px;
	transition: all .3s;
}


.headerLogo a h1{
	width: 100%;
	height: 56px;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../img/logo.png);
	transition: all .3s;
}



.navMenu {
	font-size: 16px;
	font-weight: bold;
	padding-left: 60px;
}

.navMenu li:not(:first-child) {
	margin-left: 20px;
}

.nav-other li:last-of-type{
	margin-left: 10px;
}

.navMenu a {
	display: block;
	font-weight: 600;
	font-size: 14px;
}

.nav-other02{
	padding-left: 30px;
}

.nav-other02 li a{
	display: block;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: normal;
	font-weight: 600;
	transition: all .3s;
}

.nav-other02 li a:hover{
	color: #25D366;
}

.nav-other02 li.active a{
	color: #25D366;

}

.nav-other02 li:first-of-type{
	padding-right: 4px;
	margin-right: 4px;
	position: relative;
}

.nav-other02 li:first-of-type::after{
	content: "/";
	display: block;
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	color: #000000;
	font-size: 12px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: normal;
}

#spNav {
	display: none;
}

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

	.navMenu,.nav-other {
		display: none;
	}

	#spNav {
		display: block;
	}

	.nav-other02{
		position: relative;
		z-index: 10000;
	}

	.header {
		padding: 14px 0;
	}

	/* スマホナビ */
	#nav-toggle {
		position: relative;
		z-index: 1000;
		cursor: pointer;
	}

	#nav-toggle>div {
		position: relative;
		width: 48px;
		height: 48px; 
		background-color: #25D366;
		border-radius: 50%;
	}

	#nav-toggle span {
		width: 16px;
		height: 1px;
		left: 16px;
		display: block;
		background: #fff;
		position: absolute;
		transition: .2s;
	}

	#nav-toggle span:nth-child(1) {
		top: 19px;
	}

	#nav-toggle span:nth-child(2) {
		top: 24px;
	}

	#nav-toggle span:nth-child(3) {
		top: 29px;
	}

	.open #nav-toggle span:nth-child(1) {
		top: 24px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.open #nav-toggle span:nth-child(2) {
		width: 0;
	}

	.open #nav-toggle span:nth-child(3) {
		top: 24px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	#nav-toggle {
		z-index: 1000;
	}

	#gloval-nav {
		background: #fff;
		padding: 130px 60px 30px 60px;
		position: fixed;
		top: 0;
		left: 0;
		visibility: hidden;
		width: 100%;
		height: 100%;
		opacity: 0;
		transition: .3s;
	}

	#gloval-nav ul {
		padding-bottom: 30px;
	}

	#gloval-nav ul li {
		font-size: 14px;
		font-weight: bold;
		margin-bottom: 40px;
	}

	.g-nav_pp {
		margin-top: 40px;
		font-size: 12px;
		margin-bottom: 20px;
	}

	.g-nav_copy {
		font-size: 10px;
		opacity: 0.5;
	}

	.open #gloval-nav {
		visibility: visible;
		opacity: 1;
		z-index: 990;
		overflow: scroll;
	}

}

@media screen and (max-width:1000px) {
	.headerLogo_img {
		width: 40px;
	}
}

/*-----------------------
----- 下層ページ共通 -----
-----------------------*/

/*ヘッダー分下げる-----------------------*/

.MainWrap {
	/* PC時のヘッダーの高さ */
	margin-top: 117px;
}
@media screen and (max-width:768px) {
	.MainWrap {
		/* SP時のヘッダーの高さ */
		margin-top: 100px;
	}
}


/*下層ヘッダー---------------------------*/

.PageHeading {
	padding: 80px 0 0;
}

.PageHeadingTitle_main {
	font-size: 64px;
	line-height: 120%;
	letter-spacing: 0.02em;
	font-weight: 500;
}

.PageHeadingTitle_main02{
	font-size: 40px;
	font-weight: 600;
}

.PageHeadingTitle_sub {
	display: inline-block;
	font-weight: 600;
	font-size: 18px;
	line-height: 200%;
	letter-spacing: 0.1em;
	padding-top: 14px;
}


@media screen and (max-width:768px) {
	.PageHeading {
		padding: 30px 0 0;
	}
	.PageHeadingTitle_main {
		font-size: 36px;
	}

	.PageHeading02{
		padding: 80px 0 40px;
	}
}

@media screen and (max-width:500px) {
	.PageHeadingTitle_main {
		font-size: 36px;
		padding-top: 10px;
	}
	.PageHeadingTitle_sub {
		font-size: 14px;
	}
}



/*---------------------
------フッター----------
---------------------*/

.footer-logoWrap{
	width: 32.4%;
}


.sns-wrap{
	width: 100%;
}

.sns-list{
	width: 100%;
	column-gap: 10px;
	row-gap: 10px;
}

.sns-listItem{
	width: 31.4%;
}

.sns-listItem a{
	border-radius: 5px;
	padding: 8px 0;
	background-color: rgba(255,255,255,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;

}

.sns-listItem a:hover{
	background-color: rgb(255 255 255 / 20%);
}

.sns-listItem a span{
	display: inline-block;
	vertical-align: middle;
}

.sns-icon{
	width: 14px;
	height: 14px;
	position: relative;
}

.sns-icon svg{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.sns-listItem a span:last-of-type{
	margin-left: 6px;
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: normal;
}


.footer{
	padding-top: 180px;
}

.footer.active{
	padding-top: 0;
}

.footer02 {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}

.footer_content {
	position: relative;
	padding: 60px 0 147px;
	color: #ffffff;
}

.footer_content>div{
	position: relative;
	z-index: 2;
}

.footer_logo{
	display: block;
	overflow: hidden;
	line-height: 0;
	white-space: nowrap;
	text-indent: 100%;
	width: 173px;
}

.footer_logo h2{
	width: 100%;
	height: 52px;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../img/footer-logo.png);
}

.footer_list>ul:not(:last-of-type) {
	margin-right: 70px;
}

.footer_list01 {
	font-weight: 600;
	margin-bottom: 20px;
}

.footer_list02 {
	padding-left: 20px;
	font-size: 14px;
}

.footer_list02 li {
	font-weight: 400;
	margin-bottom: 8px;
	color: #fff;
}

.footer_list a {
	font-weight: 600;
	font-size: 14px;
	transition: .3s;
}

.footer_list02 li a{
	font-weight: 400;
}

.footer_list a:hover {
	opacity: 0.8;
}

.footer_small {
	font-size: 12px;
	padding: 16px 0;
}

.footer_small span {
	display: inline-block;
	color: #828282;
	margin-left: 20px;
	padding-left: 20px;
	position: relative;
}

.footer_small span:before {
	display: inline-block;
	content: '|';
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width:1050px) {
	.footer_list ul {
		margin-right: 50px;
	}

	.footer_list ul:last-child {
		margin-right: 0px;
	}

	.footer_list a {
		font-size: 12px;
	}
}

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

	.footer-logoWrap{
		width: 100%;
	}



	.sns-list{
		column-gap: 20px;
		row-gap: 20px;
	}

	.sns-listItem{
		width: 46%;
	}

	.sns-listItem a{
		border-radius: 5px;
		padding: 10px 0;
		background-color: rgba(255,255,255,.1);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.sns-listItem a span{
		display: inline-block;
		vertical-align: middle;
	}

	.sns-listItem a span:last-of-type{
		margin-left: 10px;
		font-weight: 500;
		font-size: 14px;
	}


	.footer{
		padding-top: 100px;
	}

	.footer.active{
		padding-top: 0;
	}


	.footer_list>ul:not(:last-of-type) {
		margin-right: 0;
	}
	.footer_content>div{
		padding-top: 40px;
	}

	.footer_content {
		padding: 40px 0 55px;
	}

	.footer_content {
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer_list {
		margin-bottom: 55px;
	}

}

@media screen and (max-width:600px) {
	.footer_list {
		display: block;
	}

	.footer_list a {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid #fff;
	}

	.footer_list02 {
		display: none;
	}

	.footer_list ul {
		margin-right: 0px;
	}

	.footer_small {
		font-size: 12px;
		padding: 16px 0;
	}

	.footer_small span {
		display: block;
		margin-left: 0px;
		padding-left: 0px;
		text-align: center;
	}

	.footer_small small {
		display: block;
		text-align: center;
	}

	.footer_small span:before {
		display: none;
	}

}


/*---------------------
---------投稿-----------
---------------------*/

.blog_list_wrap {
	column-gap: 30px;
	row-gap: 40px;
}

.blog_list_ttl {
	margin-bottom: 20px;
	line-height: 1.5;
}

.blog_list_day {
	color: #808080;
	font-size: 12px;
	margin-bottom: 0;
}

.blog_list_img {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: .5s;
}

.blog_list_img::before {
	content: "";
	display: block;
	padding-top: 58.88%;
}

.blog_list_img__content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.blog_list {
	width: calc((100% - 80px) / 3);
}

.blog_list a:hover .blog_list_img {
	transform: scale(1.05);
}

.blog_list a:hover {
	opacity: 0.8;
}

.blog_list_img_wrap {
	border: solid 1px #E5E5E5;
	overflow: hidden;
}

.blog_list_txt{
	padding-top: 20px;
}

.category-listItem{
	color: #808080;
	font-size: 12px;
	position: relative;
}

.category-listItem:not(:last-of-type){
	padding-right: 6px;
	margin-right: 6px;
}

.category-listItem:not(:last-of-type)::after{
	content: "";
	width: 1px;
	height: 10px;
	display: block;
	background-color: #7F7F7F;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translatey(-50%);
}

.company{
	font-size: 12px;
}

.blog_list_ttl {
	font-weight: 600;
	padding-top: 5px;
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.btn-blog{
	text-align: right;
}

.news-list{
	align-items: flex-start;
	padding-top: 20px;
	border-top: 1px solid #D9D9D9;
}

.news-listItem{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #D9D9D9;
}

.news-listItem:last-of-type{
	margin-bottom: 0;
}

.news-listImg{
	width: 18.518%;
	flex: 0 0 18.518%;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

.news-listImg::after{
	content: "";
	padding-top: 59%;
	border-radius: 10px;
	display: block;
}

.news-listTxt{
	flex: 1 1 auto;
	padding-left: 30px;
	padding-top: 20px;
}

.news-meta span{
	display: inline-block;
	font-size: 12px;
}

.news-meta span{
	color: #7F7F7F;
}

.news-listTxt h3{
	font-size: 18px;
	line-height: 160%;
	letter-spacing: normal;
	margin-top: 10px;
}

.category-list02{
	display: inline-block;
}

.category-listItem02{
	font-size: 12px;
	display: inline-block;
	color: #25D366;
	line-height: 160%;
	padding: 2px 8px;
	border-radius: 50px;
	border: solid 1px #25D366;
}

.category-listItem02:not(:first-of-type){
	margin-left: 6px;
}

/* トップページのブログカード */

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

	.top_works .blog_list_wrap,
	.recommendWrap .blog_list_wrap {
		display: block;
	}

	.top_works .blog_list,
	.recommendWrap .blog_list {
		width: 100%;
		padding: 0 0 30px 0;
	}
}

/* 投稿一覧ページ */

.blogListWrap {
	width: 100%;
}

.articleTtl {
	font-size: 32px;
	font-weight: bold;
	line-height: 200%;
	padding-top: 10px;
}

.article {
	padding: 120px 0 0;
}

.articleBtn {
	margin-bottom: 170px;
}

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

	.blog_list_wrap {
		column-gap: 30px;
		row-gap: 40px;
	}

}

@media screen and (max-width:768px) {
	.blogListWrap .blog_list {
		width: calc((100% - 30px) / 2);
	}
	.blog_wrap {
		margin: 60px 0px 90px 0;
	}

	.articleTtl {
		font-size: 20px;
	}

	.article {
		padding: 80px 0;
	}

	.articleBtn {
		margin-bottom: 80px;
	}


	.news-listImg{
		width: 100%;
	}

	.news-listImg::after{
		content: "";
		padding-top: 50%;
		border-radius: 10px;
		display: block;
	}

	.news-listTxt{
		padding-left: 0;
		padding-top: 20px;
	}

}

@media screen and (max-width:500px) {
	.blogListWrap .blog_list {
		width: 100%;
	}
}

/*--------------------------------
------お問い合わせフォーム----------
--------------------------------*/

.section-contact02{
	margin-top: -100px;
}

.footer02 {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}


.form-wrapper{
	padding-left: 5%;
}

.form-l{
	padding-top: 160px;
	width: 36.8%;
}

.form-txt{
	padding-top: 60px;
	margin-top: 60px;
	border-top: 1px solid #DFDFDF;
}

.form-txt h3{
	padding-bottom: 20px;
	font-weight: 600;
	font-size: 24px;
	line-height: 160%;
	letter-spacing: normal;
}

.form-img{
	padding-top: 60px;
}

.form-r{
	padding: 160px 60px 120px;
	width: 57.89%;
	background-color: #F8F7F4;
}

.form{
	padding: 60px;
	background-color: #fff;
	box-shadow: 3px 3px 14px rgba(0, 0, 0, .05);
}

.form-defTtl{
	line-height: 160%;
	letter-spacing: normal;
	font-weight: 600;
	padding-bottom: 10px;
}

.colorRed {
	padding-left: 6px;
	color: #E60012;
}

.form-defList:not(:last-of-type){
	padding-bottom: 26px;
}

.formInput,.textarea {
	padding: 20px;
	background: #fff;
	border: solid 1px #DFDFDF;
	width: 100%;
	border-radius: 5px;
}

textarea{
	height: 180px;
}


.submit {
	display: block;
	width: 100%;
	margin: 0 auto;
	font-weight: 600;
	text-align: center;
	padding: 24px 0;
	color: #fff;
	border-radius: 10px;
	font-size: 18px;
	border: 1px solid #25D366;
	transition: .3s;
	background-color: #25D366;
}

.submit:hover {
	background: #fff;
	color: #25D366;
}

.form-btnWrap p{
	font-size: 14px;
	padding-top: 30px;
}

.form-btnWrap p a{
	text-decoration: underline;
}

.wpcf7-spinner,.wpcf7-response-output{
	display: none;
}

.form-btn>p{
	padding-top: 0;
}

.form-tel{
	padding: 30px 60px;
	background-color: #F4F4F4;
	border-radius: 10px;
}

.form-tel h4{
	font-weight: 600;
	font-size: 20px;
	line-height: 160%;
	letter-spacing: normal;
}

.form-tel>p{
	font-size: 14px;
	padding-top: 4px;
	letter-spacing: normal;
}

.tel-num{
	justify-content: center;
	padding-top: 10px;
}

.tel-icon{
	width: 34px;
	height: 34px;
}

.tel-icon svg{
	width: 100%;
	height: 100%;
}

.tel-num a{
	display: block;
	font-weight: 600;
	margin-left: 10px;
	font-size: 2.4rem;
	line-height: 160%;
	letter-spacing: 0.02em;
}

.form-arrow{
	position: relative;
}

.form-arrow::after{
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translatey(-50%);
	width: 20px;
	height: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../img/arrow.svg);
}

@media screen and (max-width:768px) {
	.section-contact02{
		margin-top: -0;
	}

	.form-wrapper{
		padding-left: 0;
	}

	.form-l{
		padding-top: 40px;
		width: calc(100% - 40px);
		margin: 0 auto;
	}

	.form-txt{
		padding-top: 40px;
		margin-top: 40px;
	}

	.form-txt h3{
		padding-bottom: 20px;
		font-size: 20px;
	}

	.form-img{
		padding-top: 40px;
	}

	.form-r{
		margin-top: 40px;
		padding: 60px 20px 80px;
		width: 100%;
	}

	.form{
		padding: 30px 20px;
	}

	.form-defTtl{
		line-height: 160%;
		letter-spacing: normal;
		font-weight: 600;
		padding-bottom: 10px;
	}

	.form-defList:not(:last-of-type){
		padding-bottom: 20px;
	}


	.submit {
		padding: 20px 0;
		font-size: 14px;
	}

	.form-tel{
		padding: 20px ;
	}

	.form-tel h4{
		font-size: 18px;
	}

	.form-tel>p{
		font-size: 12px;
	}


	.tel-icon{
		width: 28px;
		height: 28px;
	}

	.tel-num a{
		font-size: 24px;
	}


}

/*---------------------
------送信完了----------
---------------------*/
.thanks {
	padding: 150px 0 30px;
}

.thanksTtl {
	font-weight: bold;
	font-size: 28px;
	margin-bottom: 55px;
}

.notfound{
	font-weight: bold;
	font-size: 28px;
}

.btn-404{
	margin: 0 auto;
}

@media screen and (max-width:768px) {
	.thanks {
		padding: 150px 0 60px;
	}

	.thanksTtl {
		font-size: 22px;
		margin-bottom: 30px;
	}
}

/*---------------------------------
------プライバシーポリシー-----------
---------------------------------*/
.ppInfo {
	margin: 60px 0 120px;
}

.ppTtl {
	font-weight: bold;
	letter-spacing: 0.02em;
	font-size: 28px;
	padding-bottom: 30px;
	line-height: 1.5;
	margin-bottom: 30px;
	border-bottom: 1px solid #999999;
}

.ppTxt {
	margin-bottom: 110px;
}

.ppTxt_last {
	margin-bottom: 150px;
}

@media screen and (max-width:768px) {
	.ppInfo {
		margin: 40px 0 80px;
	}

	.ppTtl {
		font-size: 20px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.ppTxt {
		margin-bottom: 40px;
	}

	.ppTxt_last {
		margin-bottom: 80px;
	}
}

/*---------------------------------
------reCAPTCHA 非表示ー-----------
---------------------------------*/
.grecaptcha-badge {
	display:none;
}


.pp-defwrap {
	border: solid 1px #000;
}

.pp-deflist:not(:last-of-type){
	border-bottom: solid 1px #000;
}

.pp-defTtl{
	width: 280px;
	flex: 0 0 280px;
	padding: 10px 20px;
	border-right: solid 1px #000;;
}

.pp-defDesc{
	flex: 1 1 auto;
	padding: 10px 20px;
}

.ppTxt_last {
	margin-bottom: 150px;
}


.ppTtl-01 {
	font-weight: bold;
	letter-spacing: 0.02em;
	font-size: 28px;
	padding-bottom: 30px;
	line-height: 1.5;
	margin-bottom: 30px;
}

.ppInfo-01 {
	margin-top: 60px;
}



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

	.pp-defwrap{
		border: solid 1px #000;;
	}

	.pp-deflist:not(:last-of-type){
		border-bottom: solid 1px #000;
	}

	.pp-defTtl{
		background-color: #f4f4f4;
		margin-bottom: 20px;
		width: 100%;
		padding: 10px 20px;
		border-right: unset;
	}

	.pp-defDesc{
		flex: 100%;
		padding: 0px 20px 20px;
	}
	
	.ppTtl-01 {
	font-weight: bold;
	letter-spacing: 0.02em;
	font-size: 20px;
	padding-bottom: 30px;
	line-height: 1.5;
	margin-bottom: 30px;
}
	
	.ppInfo-01 {
	margin-top: 40px;
}

}