@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: #1E1005;
	font-family: 'kozuka-gothic-pro','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;
}


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

iframe {
	vertical-align: middle;
}

.MainWrap{
	position: relative;
}

:root {
	--primary: #CCFA00;
}

/*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_xl{
	margin: 0 auto;
	width: 132rem;
	max-width: calc(1440* 1em / 16);
}

.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_xl,.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{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 23rem;
	margin: 0 auto;
	padding: 1rem 1rem 1rem 2rem;
	border-radius: 5px;
	background-color: var(--primary);
	border: solid 1px var(--primary);
	margin: 0 auto;
	transition: all .3s;
}

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

.btn-ma{
	margin: 0 auto;
}

.btn span{
	display: block;
}

.btn span:first-of-type{
	font-weight: 600;
	letter-spacing: normal;
	transition: all .3s;
}

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

.btn span:last-of-type{
	width: 4rem;
	height: 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{
		padding: 1rem 1rem 1rem 2rem;
		margin: 0 auto;
		justify-content: space-between;
	}

	.btn-ma{
		margin: 0 auto;
	}


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


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


}


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

.sans-en{
	font-family: "trade-gothic-next", sans-serif;
}

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

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

.mainTtl01{
	line-height: 1;
	font-family: "trade-gothic-next-condensed", sans-serif;
	font-size: clamp(48px,9.6rem,104px);
	letter-spacing: normal;
	font-weight: 800;
}

.subTtl01{
	margin-top: 2rem;
	padding-left: 2rem;
	letter-spacing: normal;
	line-height: 160%;
	font-size: clamp(10px,1.4rem,16px);
	font-weight: 700;
	position: relative;
}

.subTtl01::before{
	content: "";
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background-color: #1E1005;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.subTtl01.col-w::before{
	background-color: #fff;
}

.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{
	position: relative;
	z-index: 2;
	padding: 2rem 0 8rem;
	border-radius: 0 0 60px 60px;
}

.headTtlWrap{
	background-color: #222222;
	padding: 14rem 6rem 6rem;
	border-radius: 5px;
}

.headTtlWrap p{
	margin-top: 2rem;
	padding-left: 2rem;
	letter-spacing: normal;
	line-height: 160%;
	font-size: clamp(10px,1.4rem,16px);
	font-weight: 700;
	position: relative;
}

.headTtlWrap p::before{
	content: "";
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.headTtlWrap h1{
	font-weight: 800;
	font-family: "trade-gothic-next-condensed", sans-serif;
	line-height: 1;
	font-size: clamp(28px,9.6rem,96px);
	letter-spacing: normal;
}

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

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

	.mainTtl01{
		line-height: 1;
		font-size: 4.8rem;
	}

	.subTtl01{
		font-size: 1.2rem;
	}

	.subTtl01::before{
		width: 1rem;
		height: 1rem;
	}


	.headTtl{
		position: relative;
		z-index: 2;
		padding: 2rem 0 6rem;
	}

	.headTtlWrap{
		background-color: #222222;
		padding: 10rem 3rem 4rem;
		border-radius: 5px;
	}

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

	.headTtlWrap p::before{
		width: 1rem;
		height: 1rem;
	}

	.headTtlWrap h1{
		font-size: 4.8rem;
		letter-spacing: normal;
	}
}


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

.header {
	padding: 1.6rem 4rem;
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 120rem;
	z-index: 10000;
	transition: .3s;
	background-color: rgba(255,255,255,.8);
	backdrop-filter: blur(80px);
	box-shadow: 3px 3px 10px rgba(0,0,0,.05);
	border-radius: 10px;
}

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


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

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

.headerLogo {
	position: relative;
	z-index: 1000;
	margin-right: 5rem;
}


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


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

.header-wrapper{
	width: 100%;
}

.navMenu {
	font-size: 1rem;
	font-weight: bold;
}

.navMenu li:not(:first-child) {
	margin-left: 1.875rem;
}

.navMenu a {
	display: block;
	line-height: 100%;
	letter-spacing: normal;
}

.nav-menuListItem>a,.nav-menuListItem>p{
	position: relative;
	padding: .625rem 0;
}

.nav-menuListItem>a::after,.nav-menuListItem>p::after{
	transition: all .3s;
	opacity: 0;
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--primary);
	position: absolute;
	left: 0;
	bottom: 0;
}

.nav-menuListItem:hover>a::after,.nav-menuListItem:hover>p::after{
	opacity: 1;
}

.nav-menuListItemnot a,.spNav-otherListItemnot a{
	pointer-events: none;
}

.nav-menuListItemnot a::after{
	display: none;
}

.nav-menuListItem a,.nav-menuListItem p{
	line-height: 100%;
	letter-spacing: normal;
	cursor: pointer;
	font-size: clamp(12px ,1.4rem, 14px);
	font-weight: 400;
}


/* .nav-other li:not(:first-of-type){
margin-right: 30px;
}

.nav-other li:nth-of-type(2){
margin-right: 10px;
} */


.spNav,.nav-item__btn,.modal-nav-background {
	display: none;
}

.nav-menuListItem{
	position: relative;
}

.nav-menuListItem>p span{
	display: inline-block;
	vertical-align: middle;
}

.nav-menuListItem>p span:last-of-type{
	width: 16px;
	height: 16px;
	margin-left: 4px;
}

.nav-menuListItem>p span:last-of-type svg{
	width: 100%;
	height: 100%;
}

.nav-menuListItem>p path{
	transition: all .3s;
}

.nav-menuListItem>p:hover path{
	stroke: var(--primary);
}

.nav-subWrapper{
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	width: 16.9rem;
	position: absolute;
	left: 0;
	top: 3.5rem;
	display: inline-block;
	box-shadow: 0 10px 30px rgba(0,0,0,.1);
	background-color: rgba(255, 255, 255, 1);
	padding: 1.875rem 1.875rem 2.5rem;
	transition: all .3s;
}

.nav-subWrapper02{
	width: 17rem;
}

.header-more:hover .nav-subWrapper{
	opacity: 1;
	visibility: visible;
}

.nav-subWrapper h3{
	color: #202733;
	line-height: 160%;
	letter-spacing: normal;
	font-size: 16px;
	padding-bottom: 20px;
}

.nav-subWrapper .sub-listItem{
	margin-left: 0!important;
	letter-spacing: normal;
	line-height: 100%;
}

.nav-subWrapper .sub-listItem a,.nav-subWrapper .sub-listItem path{
	transition: all .3s;
}

.nav-subWrapper .sub-listItem:hover a{
	color: var(--primary);
}

.nav-subWrapper .sub-listItem:hover path{
	stroke: var(--primary);
}

.nav-subWrapper .sub-listItem:not(:last-of-type){
	margin-bottom: 20px;
}

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

.nav-otherList{
	column-gap: 10px;
}

#spNav {
	display: none;
}

/* ヘッダーナビのボタン */

.nav-other{
	column-gap: 10px;
}

.nav-otherListItem02 a{
	font-size: clamp(12px ,1.4rem ,14px);
	text-decoration: underline;
}

.navMenuBtnOther{
	font-size: clamp(12px ,1.4rem ,14px);
	letter-spacing: normal;
}

.navMenuBtn {
	font-size: clamp(12px ,1.4rem, 14px);
	padding: 1rem 1.6rem;
	line-height: 100%;
	border-radius: 5px;
	line-height: 1;
	letter-spacing: normal;
	text-align: center;
	border: 1px solid var(--primary);
	background-color: var(--primary);
	transition: all .3s;
	font-weight: 600;
}

.navMenuBtn:hover {
	background: #fff;
}

.navMenuBtn02 {
	background-color: var(--bg02);
	border: solid 1px var(--bg02);
	transition: all .3s;
}

.navMenuBtn02:hover {
	background-color: #fff;
	color: var(--bg02);
}

.navMenuBtn span{
	display: inline-block;
	padding-left: 14px;
	position: relative;
}

.navMenuBtn span::after{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 100px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s;
}

.navMenuBtn:hover span::after{
	background-color: var(--primary04);
}

.navMenuBtn02:hover span::after{
	background-color: var(--primary03);
}

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

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

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

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

	#spNav {
		display: block;
	}

	.spNav-bg{
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(0, 0, 0, .5);
		z-index: 50;
		opacity: 0;
		visibility: hidden;
		transition: all .3s;
	}

	.open .spNav-bg {
		opacity: 1;
		visibility: visible;
	}

	.header {
		padding: 16px 20px;
		width: 90%;
		transition: all .3s;
	}

	.header02 {
		padding: 16px 0;
	}

	.open .header{
		box-shadow: 3px 3px 10px rgba(0,0,0,.0);
		background-color: rgba(255,255,255,1);
		backdrop-filter: blur(0);
	}

	.headerLogo a{
		width: 100px;
	}

	.headerLogo a h1 {
		height: 19px;
	}


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

	#nav-toggle>div {
		position: relative;
		width: 23px;
		height: 14px; 
		border-radius: 50%;
	}

	#nav-toggle span {
		width: 23px;
		height: 2px;
		border-radius: 50px;
		display: block;
		background: #1E1005;
		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;
	}

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

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

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

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

	#gloval-nav {
		background: #fff;
		padding: 92px 20px 60px;
		position: fixed;
		top: 20px;
		left: 0;
		right: 0;
		margin: 0 auto;
		overflow: auto;
		visibility: hidden;
		width: 90%;
		height: 95vh;
		opacity: 0;
		transition: .3s;
		border-radius: 10px;
	}

	.spNav-listItem {
		font-size: 14px;
		font-weight: 400;
		padding-bottom: 20px;
		border-bottom: solid 1px #D9D9D9;
		color: #0D0D0D;
	}

	.spNav-listItem:not(:last-of-type){
		margin-bottom: 20px;
	}

	.spNav-ttl{
		position: relative;
	}

	.spNav-ttl span{
		display: inline-block;
		width: 12px;
		height: 12px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		transition: all .3s;
	}

	.spNav-ttl.open span{
		transform: translateY(-50%) rotate(135deg);
	}

	.spNav-ttl span svg{
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}

	.spNav-subWrap{
		display: none;
	}

	.spNav-subList{
		padding: 30px 0 10px 20px;
	}

	.spNav-subListItem:not(:last-of-type){
		margin-bottom: 20px;
	}

	.spNav-subListItem a{
		display: block;
		font-weight: 600;
		font-size: 12px;
		line-height: 100%;
		letter-spacing: normal;
		color: rgba(13,13,13,.5);
	}

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

	.navMenuBtn {
		font-size: 14px;
		padding: 12px 20px;
		width: 100%;
		display: block;
	}

}

@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{
	background-color: #222222;
	margin-top: 16rem;
}

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

.footerWrap{
	background-color: #222222;
	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: 28rem;
}

.footer_logo h2{
	width: 100%;
	height: 5rem;
	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: 28rem;
	}

	.footer_logo h2 {
		height: 5rem;
	}

	.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: 600;
}

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

.formInput{
	color:#000;
	appearance: none;
	-webkit-appearance: none;
	padding: 1.2rem;
	border-radius: 5px;
	background-color: #f7f7f7;
	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;
	display: block;
	width: 100%;
	background-color: #CCFA00;
	border: solid 1px #CCFA00;
	padding: 2.4rem 0;
	line-height: 160%;
	letter-spacing: normal;
	border-radius: 5px;
	transition: all .3s;
	font-weight: 600;
}

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

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

.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: #343434;
	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: 5px;
	background-color: var(--primary);
	border: solid 1px var(--primary);
}

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

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

.blog_list_ttl {
	font-weight: 600;
	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 0 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;
}