@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;
	font-family: 'Noto Sans JP','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;
	color: #252525;
}


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_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: 10rem;
	}

	.pb140{
		padding-bottom: 10rem;
	}

	.pt120{
		padding-top: 8rem;
	}

	.pb120{
		padding-bottom: 8rem;
	}

	.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;
	align-items: center;
	justify-content: space-between;
	padding: .8rem .8rem .8rem 2rem;
	border-radius: 5px;
	background-color: var(--primary);
	border: solid 1px var(--primary);
	transition: all .3s;
	width: 20rem;
}

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

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

.btn-ma{
	margin: 0 auto;
}

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

.btn span:first-of-type{
	font-family: "proxima-nova",'Noto Sans JP', sans-serif;
	font-size: clamp(12px,1.4rem,16px);
	color: #fff;
	font-weight: 600;
	margin-right: 4rem;
	/* text-transform: uppercase; */
	letter-spacing: normal;
	transition: all .3s;
}

.btn:hover span:first-of-type{
	color: var(--primary);
}

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

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

.btn span rect,.btn span path{
	transition: all .3s;
}

.btn:hover span rect{
	fill: var(--primary);
}

.btn:hover span path{
	fill: #fff;
}

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

.navMenuBtn a{
	font-weight: 600;
}

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

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

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

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

	.btn{
		width: 60%;
		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.4rem;
		margin-right: 0;
	}


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


}

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

.sans-en{
	font-family: "agenda", 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);
}

.ttlflex{
	align-items: flex-end;
}

.mainTtl01{
	line-height: 1;
	font-family: "agenda", sans-serif;
	font-size: clamp(24px,4.8rem,56px);
	letter-spacing: normal;
	font-weight: 700;
}

.subTtl01{
	padding-top: 1rem;
	letter-spacing: normal;
	line-height: 160%;
	font-size: clamp(10px,1.4rem,14px);
	font-weight: 700;
	padding-top: 1rem;
}

.ttlflex .subTtl01{
	padding-top: 0;
	padding-left: 2rem;
	padding-bottom: .4rem;
}

.mainTtl02{
	font-family: "agenda", sans-serif;
	font-weight: 700;
	letter-spacing: normal;
	line-height: 1;
	font-size: clamp(20px,5.6rem,64px);
}

.subTtl02{
	padding-top: 1rem;
	letter-spacing: normal;
	line-height: 160%;
	font-weight: 700;
}

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

.headTtl{
	padding: 18rem 0 8rem;
}

.headTtlWrap h1{
	font-weight: 700;
	line-height: 1;
	font-size: clamp(28px,7.2rem,96px);
	letter-spacing: normal;
	font-family: "agenda", sans-serif;
}

.headTtlWrap p{
	font-weight: 700;
	line-height: 1.6;
	padding-top: 1rem;
	letter-spacing: normal;
}

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

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


	.mainTtl01{
		font-size: 3.6rem;
	}

	.subTtl01{
		font-size: 1.4rem;
		padding-top: 1.2rem;
	}

	.ttlflex .subTtl01{
		padding-top: 0;
		padding-left: 2rem;
		padding-bottom: .4rem;
	}

	.mainTtl02{
		font-size: 4rem;
	}

	.mainTtl03{
		font-size: 2rem;
	}

	.headTtl{
		padding: 12rem 0 6rem;
	}

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

	.headTtlWrap p{
		padding-top: 1rem;
	}
}


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

.header {
	padding: 2rem 0;
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 120rem;
	z-index: 10000;
	transition: .3s;
}


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


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

.header02 .headerLogo a h1{
	background-image: url(../img/logo01.png);
	transition: all .3s;
}

.header02.scroll .headerLogo a h1{
	background-image: url(../img/logo02.png);
}

.headerService .headerLogo a h1{
	background-image: url(../img/logo02.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: #B9924F;
	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: 14px;
	font-weight: 600;
}


.header02 .nav-menuListItem a,.header02 .nav-menuListItem>p span {
	color: #fff;
	transition: all .3s;
}

.header02 .sub-listItem a{
	color: #252525;
}

.header02 .nav-menuListItem>p span path{
	stroke:#fff;
}

.header02.scroll .nav-menuListItem a,.header02.scroll .nav-menuListItem>p span {
	color: #252525;
}

.header02.scroll .nav-menuListItem>p span path{
	stroke:#252525;
}

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

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

.navMenu{
	padding-right: 3rem;
}

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

.nav-subWrapper .sub-listItem:hover path{
	stroke: #B9924F;
}

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

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

	.header02 .headerLogo a h1 {
		background-image: url(../img/logo02.png);
		transition: all .3s;
	}

	.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;
		background-color: rgba(255,255,255,.9);
		backdrop-filter: blur(80px);
		box-shadow: 3px 3px 10px rgba(0,0,0,.05);
		border-radius: 10px;
	}


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




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

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

	#nav-toggle span {
		width: 23px;
		height: 3px;
		border-radius: 50px;
		display: block;
		background: #202733;
		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: 5px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

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

	#gloval-nav {
		background: #fff;
		padding: 120px 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: 5px;
	}

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

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

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


.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: 10rem 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: 42rem;
}

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

.footer_navWrap{
	column-gap: 4rem;
}

.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.4rem , 14px);
	display: block;
}

.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{
	transition: all .3s;
}

.footer_other{
	padding-top: 3rem;
}

.footer_otherItem a{
	display: block;
	font-size: 12px;
	transition: all .3s;
}

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

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


.footer_small small{
	display: block;
	font-size: 12px;
}

.footer_small span {
	display: inline-block;
	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;
}

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

.footerInfo p{
	font-weight: 700;
	line-height: 160%;
	letter-spacing: normal;
	padding-bottom: 2rem;
}

.footerInfo-defList:not(:last-of-type){
	padding-bottom: 1.6rem;
}

.footerInfo-defTtl{
	font-weight: 400;
	width: 10rem;
	flex: 0 0 10rem;
	font-size: clamp(10px,1.4rem,14px);
	line-height: 160%;
	letter-spacing: normal;
}

.footerInfo-defDesc{
	flex: 1 1 auto;
	font-size: clamp(10px,1.4rem,14px);
	line-height: 160%;
	letter-spacing: normal;
}

.cv-listItem{
	width: 50%;
}

.cv-listItem{
	display: block;
	padding: 10rem 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.cv-listItem:first-of-type{
	background-image: url(../img/common/career.png);
}

.cv-listItem:last-of-type{
	background-image: url(../img/common/contact.png);
}

.btnWrapCv{
	column-gap:  1rem;
	justify-content: center;
}


.footer_content{
	position: relative;
}

.backto{
	cursor: pointer;
	width: 4.8rem;
	height: 4.8rem;
	position: absolute;
	top: 2.4rem;
	right: 0;
}

.backto svg{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

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

.footer_list02 a:hover{
	opacity: .8;
}

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

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

	.footer-logoWrap{
		width: 100%;
	}

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


	.footer{
		margin-top: 8rem;
	}

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

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

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

	.footer_content {
		padding-bottom: 40px;
	}

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

	.footer_logo {
		width: 22rem;
		background-position: 100% 100%;
	}

	.footer_logo h2 {
		height: 5.1rem;
	}

	.footer_nav{
		padding-left: 0;
	}

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

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

	.footer_list a, .footer_list p {
		font-size: 1.4rem;
		display: block;
	}

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

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

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

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

	.footer_other{
		padding-top: 3rem;
	}

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

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

	.footer_small {
		text-align: center;
	}

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

	.footer-listSub{
		display: none;
		padding-top: 1.4rem;
	}

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

	.footerMenuWrap{
		padding-top: 0;
	}

	.footerInfo{
		padding-bottom: 4rem;
	}

	.footerInfo p{
		padding-bottom: 2rem;
	}

	.footerInfo-defList:not(:last-of-type){
		padding-bottom: 1.2rem;
	}

	.footerInfo-defTtl{
		width: 8rem;
		flex: 0 0 8rem;
		font-size: 1.2rem;
	}

	.footerInfo-defDesc{
		font-size: 1.2rem;
	}


	.cv-listItem{
		width: 100%;
		padding: 8rem 0;
	}

	.btnWrapCv .btn:not(:first-of-type){
		margin-top: 1rem;
	}


	.backto{
		width: 3rem;
		height: 3rem;
		top: 1.2rem;
		right: 0;
	}

}


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

.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;
	color: #CC1A1A;
}

.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: #B9924F;
	border: solid 1px #B9924F;
	padding: 2.4rem 0;
	line-height: 160%;
	letter-spacing: normal;
	border-radius: 5px;
	transition: all .3s;
}

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

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

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

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

@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;
	}
}

/*---------------------------------
------プライバシーポリシー-----------
---------------------------------*/
.ppInfo {
	margin: 0 0 4rem;
}

.ppWrap:not(:last-of-type){
	margin-bottom: 6rem;
}

.ppTtl {
	font-weight: 600;
	letter-spacing: normal;
	font-size: clamp(16px,2.8rem,32px);
	line-height: 1.6;
	padding-bottom: 3rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #E7E3DA;
}

.ppTxtWrap ul{
	padding-top: 1.6rem;
}

.ppTxtWrap li:not(:last-of-type){
	padding-bottom: .6rem;
}

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

.ppTxtWrap li p:not(:last-of-type){
	padding-bottom: 1rem;
}


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

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

	.ppTtl {
		font-weight: 600;
		font-size: 1.8rem;
		padding-bottom: 2rem;
		margin-bottom: 2rem;
	}

	.ppTxtWrap ul{
		padding-top: 1.2rem;
	}

	.ppTxtWrap li:not(:last-of-type){
		padding-bottom: .6rem;
	}

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

	.ppTxtWrap li p:not(:last-of-type){
		padding-bottom: 1rem;
	}
}

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

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