@charset "utf-8";

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

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


body {
	/* font-size: 16px; */
	font-size: clamp(10px, 1.6rem , 16px);
	line-height: 2;
	color: #fff;
	font-family: 'Inter','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.05em;
	font-feature-settings: "palt";
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
	-webkit-font-kerning: none;
	font-kerning: none;
	background-color: #001125;
}


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

iframe {
	vertical-align: middle;
}

.MainWrap{
	position: relative;
}

:root {
	--primary: #8A22B7;
	--primary02: #22AAC9;
}

/*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;
	}

	body {
		font-size: 1.4rem;
	}

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


/*Color---------------------------------*/

.col-w{
	color: #fff;
}

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

.sectionInner_l{
	margin: 0 auto;
	width: 120rem;
	max-width: calc(1440* 1em / 16);
}

.sectionInner_m{
	margin: 0 auto;
	width: 112rem;
	max-width: calc(1320* 1em / 16);
}

.sectionInner_s{
	margin: 0 auto;
	width: 92rem;
	max-width: calc(1320* 1em / 16);
}

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

	.sectionInner_l,.sectionInner_m,.sectionInner_s{	
		width: calc(100% - 4rem);
	}


}

/*Margin・Padding---------------------------------*/

.pt160{
	padding-top: 16rem;
}

.pt140{
	padding-top: 14rem;
}

.pb140{
	padding-bottom: 14rem;
}

.pt120{
	padding-top: 12rem;
}

.pb120{
	padding-bottom: 12rem;
}

.pt100{
	padding-top: 10rem;
}

.pb100{
	padding-bottom: 10rem;
}

.pt80{
	padding-top: 8rem;
}

.pb80{
	padding-bottom: 8rem;
}

.pt60{
	padding-top: 6rem;
}

.pb60{
	padding-bottom: 6rem;
}

.pt40{
	padding-top: 4rem;
}

.pb40{
	padding-bottom: 4rem;
}

.pt30{
	padding-top: 3rem;
}

.pb30{
	padding-bottom: 3rem;
}


.mt60{
	margin-top: 6rem;
}

@media screen and (max-width:768px) {
	.pt160{
		padding-top: 12rem;
	}

	.pt140{
		padding-top: 12rem;
	}

	.pb140{
		padding-bottom: 12rem;
	}

	.pt120{
		padding-top: 10rem;
	}

	.pb120{
		padding-bottom: 10rem;
	}

	.pt100{
		padding-top: 8rem;
	}

	.pb100{
		padding-bottom: 8rem;
	}

	.pt80{
		padding-top: 6rem;
	}

	.pb80{
		padding-bottom: 6rem;
	}

	.pt60{
		padding-top: 4rem;
	}

	.pb60{
		padding-bottom: 4rem;
	}

	.pt40{
		padding-top: 3rem;
	}

	.pb40{
		padding-bottom: 3rem;
	}

	.pt30{
		padding-top: 2rem;
	}

	.pb30{
		padding-bottom: 2rem;
	}


}

/*Button---------------------------------*/

.btn{
	width: fit-content;
	padding: 1rem 2rem;
	border-radius: 5px;
	border: solid 1px #fff;
	margin: 0 auto;
	transition: all .3s;
}

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

.btn-ma{
	margin: 0 auto;
}

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

.btn span:first-of-type{
	font-size: clamp(12px,1.6rem,16px);
	color: #fff;
	margin-right: 6rem;
	letter-spacing: normal;
	transition: all .3s;
}

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

.btn span:last-of-type{
	width: 2.4rem;
	height: 2.4rem;
	position: relative;
}

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

.btn path{
	transition: all .3s;
}

.btn:hover path{
	fill: #001125;
}

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

	.btn{
		width: fit-content;
		padding: 1rem 1rem 1rem 2.4rem;
		margin: 0 auto;
		justify-content: space-between;
	}

	.btn02{
		width: 100%;
		padding: 1rem 1rem 1rem 2.4rem;
	}

	.btn-ma{
		margin: 0 auto;
	}


	.btn span:first-of-type{
		font-size: 1.6rem;
		margin-right: 8rem;
	}


	.btn span:last-of-type {
		width: 2.4rem;
		height: 2.4rem;
		position: relative;
	}


}


/*Title---------------------------------*/

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

.sans-en02{
	font-family: "Inter", sans-serif;
}

.bb{
    padding-bottom: 3rem;
    margin-bottom: 4rem;
	border-bottom: solid 1px rgba(255,255,255,.5);
}

.mainTtl01{
	line-height: 1;
	font-size: clamp(16px,3.6rem,36px);
	letter-spacing: normal;
}

.subTtl01{
	font-family: "area-extended", sans-serif;
	padding-top: 1rem;
	letter-spacing: normal;
	line-height: 160%;
}

.mainTtl02{
	letter-spacing: normal;
	line-height: 1.6;
	font-size: clamp(24px,4rem,52px);
}

.mainTtl03{
	letter-spacing: normal;
	line-height: 1.6;
	font-size: clamp(18px,2.8rem,36px);
}

.headTtl{
	padding: 16rem 0 0;
}

.headTtlWrap p{
	line-height: 1;
	font-size: clamp(14px,1.6rem,16px);
	letter-spacing: normal;
	padding-top: 2rem;
}

.headTtlWrap h1{
	line-height: 1;
	font-size: clamp(28px,8.6rem,96px);
	letter-spacing: normal;
}

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

	.bb{
		padding-bottom: 2rem;
		margin-bottom: 3rem;
	}

	.mainTtl01{
		font-size: 2.4rem;
	}

	.mainTtl02{
		font-size: 2.4rem;
	}

	.mainTtl03{
		font-size: 1.8rem;
	}


	.headTtl{
		padding: 10rem 0 0;
	}

	.headTtlWrap p{
		font-size: 1.4rem;
		padding-bottom: 1rem;
	}

	.headTtlWrap h1{
		font-size: 4rem;
	}
}


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

.header {
	position: fixed;
	top: 3rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: calc(100% - 8rem);
	z-index: 1000;
	/* z-index: 10000; */
}

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

.headerLogo {
	position: relative;
	z-index: 1000;
}


.headerLogo a{
	display: block;
	overflow: hidden;
	line-height: 0;
	white-space: nowrap;
	text-indent: 100%;
	width: 12rem;
}


.headerLogo a h1{
	width: 100%;
	height: 4rem;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-image: url(../img/logo01.png);
}

.header-wrapper{
	width: 100%;
}

.nav-btnList{
	width: fit-content;
}

.nav-btnList{
	column-gap: 1rem;
}

.nav-btnListItem a{
	width: fit-content;
	padding: 1rem 1.4rem;
	background-color: var(--primary);
	border: solid 1px var(--primary);
	font-size: clamp(10px,1.4rem, 14px);
	border-radius: 5px;
	transition: all .3s;
}

.nav-btnListItem:last-of-type a{
	background-color: var(--primary02);
	border: solid 1px var(--primary02);
}

.nav-btnListItem a:hover{
	opacity: .8;
}

.nav-btnListItem a span{
	display: block;
}

.nav-btnListItem a span:last-of-type{
	width: 1.8rem;
	height: 1.8rem;
	position: relative;
}

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

.nav-btnListItem a span:first-of-type{
	margin-right: 2rem;
}

.navMenu{
	width: fit-content;
	z-index: 100;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: .6rem;
	background-color: rgb(32 32 32 / 25%);
	backdrop-filter: blur(100px);
	border-radius: 2px;
}

.nav-menuList{
	column-gap: .6rem;
}

.nav-menuListItem a{
	padding: .8rem 2rem;
	display: block;
	font-size: 1.2rem;
	line-height: 140%;
	letter-spacing: normal;
	border-radius: 2px;
	transition: all .3s;
}

.nav-menuListItem a:hover{
	background-color: #00122B;
	color: #fff;
}

.nav-menuListItem.active a{
	background-color: #00122B;
	color: #fff;
}

.gNav,#nav-toggle{
	display: none;
}



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

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

	.header {
		top: 2.5rem;
		width: calc(100% - 4rem);
	}

	.headerLogo a{
		width: 10rem;
	}


	.headerLogo a h1{
		height: 2.5rem;
	}


	.nav-btnList{
		display: none;
	}

	.gNav{
		display: block;
		width: 100%;
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 10000;
		pointer-events: none;
	}

	.gnavCont{
		display: none;
		position: absolute;
		right: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background-color: #001125;
	}

	body.active .gNav{
		pointer-events: visible;
	}

	.glovalnav{
		padding: 10rem 2rem 4rem;
	}

	.gNav-listItem:not(:last-of-type){
		padding-bottom: 3rem;
	}

	.gNav-listItem a{
		transition: all .3s;
		font-size: 2rem;
		line-height: 140%;
		letter-spacing: normal;
	}

	.gnavsnsWrap p{
		font-size: 1.4rem;
		line-height: 140%;
		letter-spacing: normal;
		padding-bottom: 10px;
		margin-bottom: 3rem;
		border-bottom: solid rgba(255, 255, 255, .2);
	}

	.gNavsns-listItem a span{
		display: block;
	}

	.gNavsns-list{
		column-gap: 3rem;
		row-gap: 2rem;
	}

	.gNavsns-listItem{
		width: ((100% - (3rem * 1)) / 2);
	}

	.gNavsns-listItem a{
		transition: all .3s;
	}

	.gNavsns-listItem a:hover{
		opacity: .5;
	}

	.gNavsns-listItem a span:first-of-type{
		color: #000000;
		font-weight: 700;
		font-size: 1.8rem;
		line-height: 140%;
		letter-spacing: normal;
	}

	.gNavsns-listItem a span:last-of-type{
		width: 2rem;
		height: 2rem;
		position: relative;
		margin-left: 1rem;
	}

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

	#nav-toggle {
		display: block;
		transition: all .3s;
		position: fixed;
		z-index: 100000;
		right: 2rem;
		top: 2.5rem;
		cursor: pointer;
		padding: 1rem .8rem;
		border-radius: 2px;
		background-color: #fff;
	}

	#nav-toggle>div {
		position: relative;
		width: 1.6rem;
		height: 1rem; 
		border-radius: 50%;
	}

	#nav-toggle span {
		width: 100%;
		height: 2px;
		display: block;
		background: #001125;
		position: absolute;
		transition: .2s;
	}

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

	#nav-toggle span:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}

	#nav-toggle span:nth-child(3) {
		bottom: 0;
	}

	/* #nav-toggle.active{
	background-color: #001125;
} */

	#nav-toggle.active span:nth-child(1) {
		top: .425rem;
		-webkit-transform: rotate(30deg);
		transform: rotate(30deg);
	}

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

	#nav-toggle.active span:nth-child(3) {
		bottom: .425rem;
		-webkit-transform: rotate(-30deg);
		transform: rotate(-30deg);
	}


}

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

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


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

.footer-logoWrap{
	width: 31rem;
}

.footer-logoWrap>p{
	padding-top: 2rem;
}

.footer{
	margin-top: 16rem;
}

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

.footerWrap{
	padding: 8rem 0 3rem;
}

.footer_content {
	position: relative;
	padding-bottom: 10rem;
	border-bottom: solid 1px rgba(255, 255, 255, .1);
}

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

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

.footer_navWrap{
	column-gap: 6rem;
}

.footer_nav{
	padding-left: 2rem;
}

.footer_listItem:not(:first-of-type){
	margin-top: 2rem;
}

.footer_list a,.footer_list p{
	font-size: clamp(12px , 1.6rem , 16px);
	display: block;
	color: #fff;
}

.footer_listItem>a,.footer_listItem>p,.footer-ttl p{
	/* font-weight: 600; */
	line-height: 160%;
	transition: all .3s;
}

.footer_list02{
	padding-top: 1.4rem;
	padding-left: 2rem;
}

.footer_listItem02:not(:last-of-type){
	margin-bottom: .4rem;
}

.footer_list02 a{
	color: rgba(255, 255, 255, .5);
	transition: all .3s;
}

.footer_other{
	padding-top: 3rem;
}

.footer_otherItem a{
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, .5);
	transition: all .3s;
}

.footer_otherItem:not(:last-of-type) a{
	margin-bottom: .4rem;
}

.footer_listItem>a:hover {
	opacity: 0.7;
}

.footer_list02 a:hover,.footer_otherItem a:hover{
	color: rgba(255, 255, 255, .3);
}

.footer_small small{
	display: block;
	font-size: 12px;
	padding: 3rem 0 0;
	color: rgba(255, 255, 255, .5);
}

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

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

.footer02 small {
	color: #202733;
}



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

	.footerInner {
		width: clac(100% - 40px);
		margin: 0 auto;
	}

	.footer-logoWrap{
		width: 100%;
	}

	.sns-wrap{
		margin-top: 40px;
	}

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

	.sns-listItem{
		width: 48%;
	}

	.sns-icon{
		width: 15px;
		height: 15px;
	}


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


	.footer{
		margin-top: 60px;
	}

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

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


	.footer_content {
		padding-bottom: 40px;
	}

	.footer-logoWrap{
		margin-bottom:40px;
	}

	.footer_logo {
		width: 22rem;
	}

	.footer_logo h2 {
		height: 6rem;
	}

	.footer_nav{
		padding-left: 0;
	}

	.footer_nav:not(:last-of-type){
		padding-bottom: 30px;
	}

	.footer_listItem:not(:first-of-type){
		margin-top: 30px;
	}

	.footer_list a{
		font-size: 14px;
		display: block;
	}

	.footer_listItem>a{
		line-height: 160%;
		transition: all .3s;
	}

	.footer_list02{
		padding-top: 14px;
		padding-left: 0;
	}

	.footer_listItem02:not(:last-of-type){
		margin-bottom: 4px;
	}

	.footer_list02 a{
		color: rgba(255, 255, 255, .5);
		transition: all .3s;
	}

	.footer_other{
		padding-top: 30px;
	}

	.footer_otherItem a{
		display: block;
		font-size: 12px;
		color: rgba(255, 255, 255, .5);
		transition: all .3s;
	}

	.footer_otherItem:not(:last-of-type) a{
		margin-bottom: 4px;
	}

	.footer_small {
		text-align: center;
	}

	.footer_list01{
		padding: 0;
		margin: 0;
	}

	.footer-listSub{
		display: none;
		padding-top: 14px;
	}

	.footer-ttl {
		position: relative;
		font-size: 12px;
		padding-bottom: 0;
		pointer-events: unset;
	}

	.footer-icon{
		width: 10px;
		height: 10px;
		position:absolute;
		right: 2px;
		top: 50%;
		transform: translatey(-50%);
		transition: all .3s;
	}

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

	.footer-ttl.open .footer-icon {
		transform: translatey(-50%) rotate(135deg);
	}

	.footer_list02 {
		padding-left: 0;
	}

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


/*お問い合わせ---------------------------------*/

.contactWrap{
	width: 80rem;
	margin: 0 auto;
}

.form{
	border-radius: 20px;
	margin-top: 6rem;
}

.form-defList:not(:last-of-type){
	margin-bottom: 2.4rem;
}

.form-defTtl p{
	line-height: 160%;
	letter-spacing: normal;
	font-size: clamp(14px ,1.4rem ,14px);
	margin-bottom: 1rem;
	font-weight: 400;
}

.colorRed{
	display: inline-block;
	padding-left: 0.4rem;
}

.formInput{
	color:#000;
	appearance: none;
	-webkit-appearance: none;
	padding: 1.2rem;
	border-radius: 5px;
	background-color: #fff;
	width: 100%;
	font-size: clamp(14px ,1.4rem ,14px);
}

textarea{
	height: 20rem;
}

.form-btn{
	width: 100%;
	margin: 0 auto;
}

.privacyCheck{
	padding-bottom: 2rem;
}

/* .privacyCheck br{
display: none;
} */

.privacyCheck a{
	display: inline-block;
	text-align: center;
	text-decoration: underline;
	font-size: clamp(14px ,1.4rem ,14px);
}

.submit{
	text-align: center;
	color: #fff;
	display: block;
	width: 100%;
	background-color: #22AAC9;
	border: solid 1px #22AAC9;
	padding: 2.4rem 0;
	line-height: 160%;
	letter-spacing: normal;
	border-radius: 5px;
	transition: all .3s;
}

.submit02{
	background-color: #8A22B7;
	border: solid 1px #8A22B7;
}

.submit:hover{
	background-color: #fff;
	color: #22AAC9;
}

.submit02:hover{
	color: #8A22B7;
}

.downloadTtl{
	padding-bottom: 4rem;
	margin-bottom: 4rem;
	border-bottom: solid 1px #E6E6E6;
}

.downloadTtl h2{
	font-size: clamp(20px,4rem,4.8rem);
	font-weight: 700;
	letter-spacing: normal;
	line-height: 160%;
	padding-bottom: 3rem;
}

.download-l{
	width: 44rem;
}

.download-r{
	width: 61rem;
}

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

/*送信完了---------------------------------*/

.section-thanks{
	padding-top: 20rem;
}

.thanksWrap h2{
	line-height: 1.6;
	font-size: clamp(20px,3.2rem,36px);
}

.thanksTxt{
	padding-top: 3rem;
}

.thanksTxt p:not(:last-of-type){
	padding-bottom: 3rem;
}


/*404---------------------------------*/

.section-404{
	padding-top: 18rem;
}

.notImg{
	width: 42rem;
	margin: 0 auto;
}

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

	/*お問い合わせ---------------------------------*/

	.section-contact{
		padding-top: 6rem;
	}

	.contactWrap{
		width: calc( 100% - 4rem);
		margin: 0 auto;
	}

	.form{
		margin-top: 4rem;
	}

	.form-defList:not(:last-of-type){
		margin-bottom: 2rem;
	}

	.form-defTtl p{
		font-size: 1.2rem;
	}

	.colorRed{
		padding-left: 0.4rem;
	}

	.formInput{
		padding: 1rem;
		font-size: 1.2rem;
	}

	textarea{
		height: 16rem;
	}

	.form-btn{
		width: 100%;
	}

	.privacyCheck a{
		font-size: 1.2rem;
	}

	.submit{
		padding: 2rem 0;
	}

	.downloadTtl{
		padding-bottom: 3rem;
		margin-bottom: 3rem;
	}

	.downloadTtl h2{
		font-size: 2.8rem;
		padding-bottom: 2rem;
	}

	.download-l{
		width: 100%;
	}

	.download-r{
		padding-top: 3rem;
		width: 100%;
	}

	/*送信完了---------------------------------*/

	.section-thanks{
		padding-top: 12rem;
	}

	.thanksWrap h2{
		font-size: 2.4rem;
	}

	.thanksTxt{
		padding: 3rem 1rem 0;
		text-align: left;
	}

	.thanksTxt p:not(:last-of-type){
		padding-bottom: 2rem;
	}


	/*404---------------------------------*/

	.section-404{
		padding-top: 12rem;
	}

	.notImg{
		width: 100%;
		margin: 0 auto;
	}
}

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

.blog_list_wrap {
	column-gap: 3rem;
	row-gap: 4rem;
}

.blog_list_txt{
	padding-top: 1rem;
}

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

.day {
	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: 52.35%;
}

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

.blog_list {
	width: calc((100% - ( 3rem * 2 )) / 3);
	padding: 2rem 2rem 3rem;
	background-color: rgba(255,255,255,.1);
	backdrop-filet: blur(100px);
	border-radius: 10px;
}

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

.blog_list a:hover {
	opacity: 0.8;
}

.blog_list_img_wrap {
	overflow: hidden;
	border-radius: 10px;

}

.category-list{
	margin-top: 2rem;
}

.category-listItem{
	line-height: 160%;
	font-size: clamp(12px , 1.2rem, 12px);
	position: relative;
	padding: .2rem .8rem;
	border-radius: 100px;
	background-color: var(--primary02);
	border: solid 1px var(--primary02);
}

.category-listItem:not(:last-of-type){
	margin-right: .4rem;
}

.day{
	font-size: clamp(12px , 1.2rem, 14px);
}

.blog_list_ttl {
	padding-top: 1rem;
	font-size: clamp(14px , 1.8rem, 20px);
	line-height: 1.5;
}



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

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

	.blog_list_wrap {
		column-gap: 3rem;
		row-gap: 0;
	}

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

	.top_works .blog_list,
	.recommendWrap .blog_list {
		width: 100%;
		padding: 0 0 3rem 0;
	}
}

/* 投稿一覧ページ */

.blogListWrap {
	width: 100%;
}

.articleTtl {
	font-size: 32px;
	line-height: 160%;
	padding: 10px 0;
}

.article {
	padding: 160px 0 100px;
}

.articleBtn {
	margin-bottom: 170px;
}

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

	.blog_list_wrap {
		column-gap: 3rem;
		row-gap: 4rem;
	}

}

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



	.blogListWrap .blog_list:not(:last-of-type){
		margin-bottom: 3rem;
	}

	.blog_wrap {
		margin: 0 0px 0 0;
	}

	/* 	.blog_wrap:not(:last-of-type){
	margin: 0 0px 20px 0;
} */

	.articleTtl {
		font-size: 20px;
	}

	.article {
		padding: 120px 0 80px;
	}

	.articleBtn {
		margin-bottom: 80px;
	}

	.blog_list_txt {
		padding: 1rem 2rem 0;
	}

	.top_works .blog_list, .recommendWrap .blog_list,.blog_list {
		width: 100%;
		padding: 0 0 3rem 0;
	}

	.blog_list:not(:last-of-type){
		margin-bottom: 3rem;
	}


}

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

/*---------------------------------
------ページネーション-----------
---------------------------------*/

.pagination {
	text-align: center;
}

.section-project .pagination{
	padding-bottom: 14rem;
}

.pagination ul {
	display: flex;
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
	align-items: center;
	justify-content: center;
}

.pagination-arrow:first-of-type{
	margin-right: 2rem;
}

.pagination-arrow:last-of-type{
	margin-left: 2rem;
}

.pagination-arrow a {
	display: flex;
	align-items: center;
	column-gap: .6rem;
	font-weight: 500;
	transition: all 0.3s;
}

.pagination-arrow a:hover{
	opacity: .5;
}

.pagination-arrow .arrow {
	display: block;
	position: relative;
	width: 2.4rem;
	height: 2.4rem;
}
.pagination-arrow .arrow svg{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.pagination-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	line-height: 1;
	text-align: center;
}

.pagination-number a{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-number a::before{
	content: "";
	position:absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #000;
	border-radius: 100px;
	transition: all 0.3s;
	opacity: 0;
}

.pagination-number a:hover::before{
	opacity: 1;
}


.pagination-number span.current{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 1px solid #000;
	border-radius: 100px;
}

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

	/*---------------------------------
	------ページネーション-----------
	---------------------------------*/

	.section-project .pagination{
		padding-bottom:8rem;
	}

	.pagination ul {
		gap: .2rem;
	}

	.pagination-arrow:first-of-type{
		margin-right: 1rem;
	}

	.pagination-arrow:last-of-type{
		margin-left: 1rem;
	}

	.pagination-arrow a {
		font-size: 1.2rem;
	}

	.pagination-arrow .arrow {
		width: 2rem;
		height: 2rem;
	}

	.pagination-number {
		width: 2.4rem;
		height: 2.4rem;
	}

	.pagination-number a{
		font-size: 1.2rem;
	}

	.pagination-number a::before{
		content: "";
		position:absolute;
		left: 0;
		top: 0;
		display: block;
		width: 100%;
		height: 100%;
		border: 1px solid #000;
		border-radius: 100px;
		transition: all 0.3s;
		opacity: 0;
	}


	.pagination-number span.current{
		font-size: 1.2rem;
	}
}

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