@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;
	letter-spacing: 0.05em;
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
	-webkit-font-kerning: none;
	font-kerning: none;
	color: #252525;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	letter-spacing: 0.03em;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	-webkit-font-kerning: none;
	font-kerning: none;
	-webkit-font-smoothing: antialiased;
}


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

iframe {
	vertical-align: middle;
}

.MainWrap{
	position: relative;
}

:root {
	--primary: #CFA453;
	--primary02: #F57A00;
}

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

.mt100{
	margin-top: 10rem;
}

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

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

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

.btn02:hover{
	background-color: var(--primary);
}

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

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

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

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

.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,.btn02 span rect,.btn02 span path{
	transition: all .3s;
}

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

.btn02:hover span rect{
	fill: #fff;
}

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

.btn02:hover span path{
	fill: var(--primary);
}

@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: "Montserrat", sans-serif;
}

.subTtl01{
	line-height: 160%;
	font-size: clamp(10px,1.4rem,14px);
	font-weight: 700;
	display: inline-block;
	background-color: var(--primary);
	padding: .6rem 2rem;
	border-radius: 100px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
}

.mainTtl01{
	font-size: clamp(24px,3.2rem,40px);
	line-height: 1.6;
	font-weight: 700;
	padding-top: 1rem;
}

.subTtl02{
	line-height: 160%;
	font-size: clamp(10px,2rem,20px);
	font-weight: 700;
	display: inline-block;
	background-color: var(--primary);
	padding: .8rem 4rem;
	border-radius: 100px;
	color: #fff;
}

.subTtl02.gold{
	color: var(--primary);
	background-color: #fff;
}

.mainTtl02{
	font-weight: 700;
	letter-spacing: normal;
	line-height: 1.6;
	font-size: clamp(24px,4.8rem,48px);
	padding-top: 2rem;
}

.mainTtl02 span{
	color: var(--primary);
}


.pageHead{
	padding: 18rem 0 6rem;
	background-color: #011F2C;
	border-radius: 0 0 80px 80px;
}

.pageHead02{
	padding-top: 18rem;
}

.pageHeadWrap p{
	font-weight: 700;
	line-height: 1.6;
	font-size: clamp(12px,1.8rem,20px);
	font-family: "Montserrat", sans-serif;
	position: relative;
	padding-left: 2rem;
}

.pageHeadWrap p::before{
	content: "";
	display: block;
	width: 1rem;
	height: 1rem;
	border-radius: 100px;
	background-color: var(--primary);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.pageHeadWrap h2{
	font-weight: 700;
	line-height: 1.6;
	font-size: clamp(28px,4.8rem,56px);
}

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

	.subTtl01{
		font-size: 1.4rem;
		padding: .6rem 1.6rem;
	}

	.mainTtl01{
		font-size: 2.4rem;
	}

	.subTtl02{
		font-size: 1.4rem;
		padding: .8rem 2rem;
	}

	.mainTtl02{
		font-size: 2.4rem;
		padding-top: 1rem;
	}


	.pageHead{
		padding: 10rem 0 6rem;
		border-radius: 0 0 40px 40px;
	}

	.pageHead02{
		padding-top: 10rem;
	}

	.pageHeadWrap p{
		font-size: 1.6rem;
	}

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


}


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

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

.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: 3.7rem;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-image: url(../img/common/h-logo.png);
}

.header-wrapper{
	width: 100%;
}

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

.nav-otherWrap{
	padding-left: 4rem;
}

.navMenuBtn{
	width: fit-content;
	padding: .8rem 1rem .8rem 1.6rem;
	border-radius: 100px;
	background-color: #F57A00;
	border: solid 1px #F57A00;
	color: #fff;
	font-weight: 700;
	transition: all .3s;
}

.navMenuBtn p{
	padding-right: 3rem;
}

.navMenuBtn p span{
	display: block;
}

.navMenuBtn p span:first-of-type,.navArrow{
	width: 1.6rem;
	height: 1.6rem;
	position: relative;
	margin-right: 0.6rem;
}

.navMenuBtn p span:first-of-type svg,.navArrow svg{
	position: absolute;
	left: 0;
	top: 0;
}

.navMenuBtn:hover{
	background-color: #fff;
	color: var(--primary02);
}

.navMenuBtn p path,.navArrow circle,.navArrow path{
	transition: all .3s;
}

.navMenuBtn:hover p path{
	stroke: var(--primary02);
}

.navMenuBtn:hover .navArrow path{
	stroke: #fff;
}

.navMenuBtn:hover .navArrow circle{
	fill: var(--primary02);
}

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

#spNav {
	display: none;
}

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

	.navMenu,.nav-other,.nav-otherWrap {
		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: 28px;
	}

	/* スマホナビ */
	#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;
	}

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

	.spnavBtn{
		padding-top: 3rem;
	}

	.spnavBtn a{
		width: 100%;
		justify-content: space-between;
		padding: 2rem 3rem;
		font-size: 1.6rem;
		border-radius: 20px;
	}

}

@media screen and (max-width:1000px) {
	.headerLogo_img {
		width: 40px;
	}
}
/*---------------------
------フッター----------
---------------------*/
.footer{
	margin-top: 16rem;
	background-color: #011F2C;
}

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

.footerNav{
	width: 45.8%;
}

.footerNav-list{
	row-gap: 3rem;
}

.footerNav-listItem{
	width: calc(100% / 3);
}

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

.footerNav-listItem a:hover{
	opacity: .6;
}

.footerNav-listItem a p:first-of-type{
	font-size: clamp(10px,1rem,12px);
	font-weight: 700;
	padding-bottom: 0.2rem;
	line-height: 160%;
	opacity: .5;
}

.footerNav-listItem a p:last-of-type{
	font-size: clamp(10px,1.6rem,18px);
	font-weight: 700;
}

.footerNav-listItem li{
	font-size: clamp(10px,1.4rem,14px);
}

.footerNav-listItem ul{
	padding-top: 1rem;
}

.footerNav-listItem li:not(:last-of-type){
	margin-bottom: 1rem;
	line-height: 160%;
}

.footerSub-list{
	padding-top: 4rem;
}

.footerSub-listItem{
	width: calc(100% / 3);
	color: #7E8D94;
	font-size: clamp(10px,1.2rem,12px);
}

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

.footerSub-listItem a:hover{
	opacity: .6;
}

.footerSmall{
	font-size: clamp(10px,1.2rem,12px);
	color: #7E8D94;
}

.footerLogoWrap p{
	font-weight: 700;
	line-height: 160%;
}

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

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

@media screen and (max-width:768px) {
	/*---------------------
	------フッター----------
	---------------------*/
	.footer{
		margin-top: 10rem;
	}

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

	.footerNav{
		width: 100%;
		padding-top: 6rem;
	}

	.footerNav-list{
		row-gap: 3rem;
	}

	.footerNav-listItem{
		width: 100%;
	}

	.footerNav-listItem:not(:last-of-type){
		margin-bottom: 1.6rem;
	}

	.footerNav-listItem a p:first-of-type{
		font-size: clamp(10px,1rem,12px);
		font-weight: 700;
		padding-bottom: 0.2rem;
		line-height: 160%;
		opacity: .5;
	}

	.footerNav-listItem a p:last-of-type{
		font-size: 1.6rem;
	}

	.footerNav-listItem li{
		font-size: 1.2rem;
	}

	.footerSub-list{
		padding-top: 4rem;
	}

	.footerSub-listItem{
		width: 100%;
		font-size: 1.2rem;
	}

	.footerSub-listItem:not(:last-of-type){
		margin-bottom: 1rem;
	}

	.footerSmall{
		font-size: 1rem;
	}

}


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

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

.contactWrap{
	width: 55%;
}

.contactWrap>p{
	line-height: 200%;
	letter-spacing: normal;
	font-size: clamp(10px, 1.4rem,14px);
	font-weight: 700;
	padding-top: 8rem;
	padding-bottom: 2rem;
}

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

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

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

.formInput{
	appearance: none;
	-webkit-appearance: none;
	padding: 1rem;
	background-color: #FAFAFA;
	border: solid 1px #EEEEEE;
	width: 100%;
	font-weight: 300;
	font-size: clamp(14px ,1.4rem ,14px);
}

textarea{
	height: 180px;
}

.privacyCheck{
	font-weight:700;
	font-size: clamp(14px ,1.4rem ,14px);
	letter-spacing: normal;
	line-height: 160%;
	margin-bottom: 3rem;
}

.privacyCheck a{
	display: inline-block;
	text-decoration: underline;
}

.form-btn{
	width: 35rem;
}

.submit{
	text-align: center;
	color: #fff;
	display: block;
	width: 100%;
	background-color: #F57A00;
	border: solid 1px #F57A00;
	padding: 2rem 0;
	font-size: clamp(14px ,1.4rem ,14px);
	letter-spacing: normal;
	line-height: 160%;
	font-weight: 700;
	transition: all .3s;
}

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

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

.form__item--file {
	display: block;
	line-height: 1.5;
	text-align: center;
	width: 100%;
	margin: 0;
	cursor: pointer;
	font-weight: 700;
}

.form__item--file br{
	display: none;
}

.codedropz-upload-inner h3{
	font-size:1.2rem;
	margin: 0;
	line-height: 1.6;
}

.codedropz-upload-inner span,.codedropz-btn-wrap a{
	font-size:1rem;
}

.codedropz-upload-handler{
	background-color: #FAFAFA;
	border: solid 1px #EEEEEE;
}

input[type=file] {
	display: none;
}

.filename {
	margin-top: 1rem;
	font-weight: 700;
}

.filename.on {
	color: #cf2e2e;
}

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

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

.thanksWrap h2{
	font-weight: 700;
	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-not{
	padding-top: 18rem;
}

.notTxt h2{
	font-size: clamp(36px,12rem,120px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: normal;
	padding-bottom: 3rem;
}

.notTxt p{
	font-weight: 700;
}

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

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

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

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

	.contactWrap{
		width: 100%;
		padding-top: 4rem;
	}

	.contactWrap>p{
		font-size: 1.2rem;
	}

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

	.form-btn{
		width: 100%;
	}

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

	.submit{
		padding: 2rem 0;
	}

	.form__item--file {
		padding: 1.4rem 0;
	}

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

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

	.thanksWrap h2{
		font-weight: 300;
		font-size: 2rem;
	}

	.thanksTxt{
		padding: 3rem 0 0;
		text-align: left;
		font-size: 1.2rem;
	}

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

	.contactWrap>p{
		padding-top: 0;
	}


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

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

	.notTxt h2{
		text-align: center;
		font-size: 4.8rem;
		padding-bottom: 3rem;
	}

	.notTxt p{
		text-align: center;
		font-weight: 700;
	}
}


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

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

.news-listItem a{
	align-items: flex-start;
	padding-bottom: 3rem;
	border-bottom: solid 1px #E5E5E5;
}

.newsmetaWrap p{
	font-size: clamp(10px ,1.4rem,14px);
	line-height: 100%;
	letter-spacing: normal;
	padding-right: 1.6rem;
	padding-top: 0.4rem;
}

.news-metaListItem{
	display: inline-block;
	font-size: clamp(10px ,1.2rem,14px);
	padding: .3rem 1rem;
	border-radius: 100px;
	background-color: #EEEEEE;
	color: #919191;
	line-height: 160%;
	letter-spacing: normal;
}

.news-listItem a>p{
	letter-spacing: normal;
	padding-left: 4rem;
	line-height: 1.6;
}

@media screen and (max-width:768px){
	.news-listItem:not(:last-of-type){
		margin-bottom: 3rem;
	}

	.news-listItem a{
		padding-bottom: 3rem;
	}

	.newsmetaWrap p{
		font-size: 1.2rem;
		padding-right: 1.6rem;
		padding-top: 0;
	}

	.news-metaListItem{
		font-size: 1.2rem;
		padding: .3rem 1rem;
	}

	.news-listItem a>p{
		padding-left: 0;
		padding-top: 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: 700;
	color: #B3BCC0;
	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;
	font-weight: 700;
	transition: all 0.3s;
}

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

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

.pagination-number a:hover{
	color: #fff;
}

.pagination-number span.current{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #F57A00;
	border-radius: 100px;
	color: #fff;
	font-weight: 700;
}

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