@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Klee+One:wght@400;600&family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
/* CSS Document */
html{
}
body{
	font-family: "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	background-color: #fff;
	color: #1A1A1A;
	padding-top: 100px;
}

body .bg_img_wrap {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img{
	display: none;
}
body .bg_img_wrap2 {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img{
	display: none;
}

a{
	display: inline-block;
	transition: ease 0.3s;
}
a:hover{
	opacity: 0.5;
}
a p,a,a i{
	color: #000000;
}
.font-medium{font-weight: 500;}
.font-semibold{font-weight: 600;}
.font-black{font-weight: 900;}

.font-dela{
	font-family: "Dela Gothic One", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.font-klee{
	font-family: "Klee One", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.font-outfit{
	font-family: "Outfit", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}

.pd_wrap{
	padding: 150px 80px 0;
}
.pd_wrap_all{
	padding: 150px 80px 150px;
}
.pd_wrap_side{
	padding-left: 80px;
	padding-right: 80px;
}

.cate_wrap > .cate{
	padding-top: 150px;
}

.default_title{
	font-size: 38px;
}
.default_title2{
	font-size: 32px;
}
.default_title3{
	font-size: 24px;
}
.default_txt{
	font-size: 20px;
}
.default_txt2{
	font-size: 18px;
}

/* ---------- common ---------- */
.linebox{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.titleitem1{
	min-height: 80px;
	background-image: url("https://nypro.co.jp/system_panel/uploads/images/title_item1.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.titleitem2{
	padding-bottom: 20px;
	background-image: url("https://nypro.co.jp/system_panel/uploads/images/title_item2.png");
	background-position: bottom left;
	background-repeat: no-repeat;
	background-size: 120px auto;
}

.pagetitle{
	position: relative;
	height: 400px;
	overflow: hidden;
}
.pagetitle p{
	line-height: 1;
	position: absolute;
	bottom: -3%;
	right: 0;
	font-weight: 600;
	font-size: clamp(24px, 6vw, 90px);
}
.link_wrap{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
	gap: 40px 80px;
}
.link_wrap a p{font-weight: 700;}
.link_wrap a i{
	transition: ease 0.5s;
}
.link_wrap a:hover i{
	transform: translateY(3px);
}
/* ---------- header ---------- */
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.header::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #fff;
	opacity: 0;
	transition: ease 0.6s;
}
.header.on::after{
	opacity: 0.9;
}
.header.active::after{
	opacity: 0!important;
}
.header > div{
	position: relative;
	z-index: 2;
}
.header .logo{
	padding: 20px;
	padding-left: 30px;
}
.header .logo{
	max-width: 300px;
}
.header .head_menu{
	padding: 10px 30px;
}
.header .head_menu p{
	color: #1A1A1A;
	font-weight: 500;
}
.header .head_menu,.header .head_menu .ul{
	gap: 30px;
}
.header .head_menu .ul{
	transition: ease 0.4s;
}
.header.active .head_menu .ul{
	opacity: 0;
	pointer-events: none;
}


.header .head_menu .head_bt_wrap .menu-bt{
	cursor: pointer;
	aspect-ratio: 1 / 1;
	transition: ease 0.3s;
	width: 63px;
	height: 63px;
	border-radius: 50%;
	background-color: #1A1A1A;
}
.header .head_menu .head_bt_wrap .menu-bt .line{
	position: relative;
	margin: 0 auto;
	width: 24px;
	height: 20px;
}
.header .head_menu .head_bt_wrap .menu-bt .line > div{
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 6px;
	background-color: #fff;
	transition: ease 0.4s;
}
.header .head_menu .head_bt_wrap .menu-bt .line > div:nth-of-type(1){
	top: 0;
	left: 0;
}
.header .head_menu .head_bt_wrap .menu-bt .line > div:nth-of-type(2){
	top: 50%;
	left: 0;
	width: 80%;
	transform: translateY(-50%);
}
.header .head_menu .head_bt_wrap .menu-bt .line > div:nth-of-type(3){
	bottom: 0;
	left: 0;
}
.header .head_menu .head_bt_wrap .menu-bt.active .line > div:nth-of-type(1){
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
}
.header .head_menu .head_bt_wrap .menu-bt.active .line > div:nth-of-type(2){
	top: 50%;
	left: 100%;
	transform: translateY(-50%) rotate(45deg);
	opacity: 0;
}
.header .head_menu .head_bt_wrap .menu-bt.active .line > div:nth-of-type(3){
	bottom: 50%;
	left: 0;
	transform: translateY(50%) rotate(-45deg);
}

.menu-wrap{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.90);
	z-index: 998;
}
.menu-wrap > div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.menu-wrap > div .ul{
	justify-content: center;
	align-items: stretch;
	width: 90%;
	max-width: 1280px;
	gap: 60px 30px;
}
.menu-wrap > div .ul > div{
	width: calc(100% / 3 - 60px / 3);
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	opacity: 0;
	transform: translateY(50%);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.menu-wrap.active > div .ul > div{
	animation-name: menuin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.menu-wrap.active > div .ul > div:nth-of-type(2){
	animation-delay: 0.1s;
}
.menu-wrap.active > div .ul > div:nth-of-type(3){
	animation-delay: 0.2s;
}
.menu-wrap.active > div .ul > div:nth-of-type(4){
	animation-delay: 0.3s;
}
.menu-wrap.active > div .ul > div:nth-of-type(5){
	animation-delay: 0.4s;
}
.menu-wrap.active > div .ul > div:nth-of-type(6){
	animation-delay: 0.5s;
}
.menu-wrap.active > div .ul > div:nth-of-type(7){
	animation-delay: 0.6s;
}
.menu-wrap.active > div .ul > div:nth-of-type(8){
	animation-delay: 0.7s;
}
.menu-wrap.active > div .ul > div:nth-of-type(9){
	animation-delay: 0.8s;
}
.menu-wrap.active > div .ul > div:nth-of-type(10){
	animation-delay: 0.9s;
}
.menu-wrap.active > div .ul > div:nth-of-type(11){
	animation-delay: 1.0s;
}
.menu-wrap.active > div .ul .li > a{
	display: block;
	width: 100%;
	padding: 5px;
	border: 3px solid #1a1a1a;
}

.menu-wrap > div .ul > div a p{
	text-align: center;
	color: #1a1a1a;
	font-weight: 600;
	font-size: 20px;
}

@keyframes menuin {
	0% {
		opacity: 0;
		transform: translateY(50%);
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		transform: translateY(0);
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}


/* ---------- footer ---------- */
.footer{
	background-color: #F9F5EA;
	padding: 50px;
	gap: 30px;
	align-items: flex-start;
}
.footer .logo{
	max-width: 440px;
	width: 20%;
}
.footer .ul{
	width: calc(80% - 30px);
	gap: 20px 40px;
	justify-content: flex-end;
}
.footer .ul .li p{
	font-size: 18px;
	font-weight: 500;
}
/* ---------- contact ---------- */
.form-box .box-wrap{
	max-width: 1000px;
}
.form-box .box-wrap .box{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
	margin-bottom: 40px;
}
.form-box .box-wrap .box h3{
	width: 300px;
	font-weight: 500;
	position: relative;
	padding-left: 20px;
}
.form-box .box-wrap .box.required-box h3::after{
	content: "*";
	position: absolute;
	left: 0;
	top: 0;
	color: #BF272D;
	font-size: 30px;
	line-height: 1;
	font-family: "Dela Gothic One", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.form-box .box-wrap .box .inputbox{
	width: calc(100% - 300px);
	padding-left: 30px;
}
.form-box .box-wrap .box .inputbox:not(.filebox) > input,.form-box .box-wrap .box .inputbox textarea,.form-box .box-wrap .box .addressbox input{
	background-color: #F4F8F9;
	border-radius: 3px;
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	border: none;
	font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.form-box .box-wrap .box .inputbox input::placeholder,.form-box .box-wrap .box .inputbox textarea::placeholder{
	color: #666666;
	font-size: 14px;
}
.form-box .box-wrap .box .inputbox textarea{
	height: 300px;
}
.form-box .box-wrap .box .inputbox .check-wrap{
	justify-content: flex-start;
	gap: 30px;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box{
	gap: 10px;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box input{
}
.form-box .box-wrap .box .addressbox > div:not(:last-of-type){
	margin-bottom: 10px;
}
.form-box .box-wrap .box .addressbox .address1{
	gap: 10px;
}
.form-box .box-wrap .box .addressbox .address1 input{
	max-width: 100px;
}
.form-box .box-wrap .box .old_box input{
	max-width: 80px;
}
.form-box .box-wrap .box .old_box p{
	padding-left: 10px;
}

.send,.check-area{
	text-align: center;
}
.privacy-bt{
	cursor: pointer;
}
.send .send-bt button{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	opacity: 0;
	cursor: pointer;
}
.send .send-bt{
	position: relative;
	z-index: 1;
	transition: 0.5s;
	max-width: 260px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 200px;
	padding: 15px 25px;
	background-color: #333;
	color: #fff;
	box-shadow: -3px -3px 0 #FFBEB7,3px 3px 0 #50CCCC;
}
.send .send-bt:hover{
	opacity: 0.5;
	box-shadow: 0px 0px 0 #FFBEB7,0px 0px 0 #50CCCC;
}
.privacypolicy{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 100px 100px;
	background-color: rgba(30,29,29,0.90);
	color: #ffffff;
	z-index: 99999;
	overflow: auto;
}
.privacypolicy .box-wrap{
	padding-top: 50px;
}
.privacypolicy .box-wrap .box:not(:last-of-type){
	margin-bottom: 80px;
}
.privacypolicy .box-wrap a{
	display: inline-block;
	opacity: 1;
	transition: ease 0.3s;
}
.privacypolicy .box-wrap a:hover{
	opacity: 0.5;
}
.privacypolicy .box-wrap p{
	color: #fff!important;
}
.privacypolicy .close-bt{
	position: fixed;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: rgba(30,29,29,0.90);
	transition: ease 0.3s;
	cursor: pointer;
}
.privacypolicy .close-bt:hover{opacity: 0.6}
.privacypolicy .close-bt::before,.privacypolicy .close-bt::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 3px;
	background-color: #ffffff;
}
.privacypolicy .close-bt::before{
	transform: translate(-50%,-50%) rotate(45deg);
}

.privacypolicy .close-bt::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}
.privacypolicy .box-wrap .box h3{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 2px solid #ffffff;
	color: #fff!important;
}
.privacypolicy .box-wrap .box p a{
	color: #fff!important;
}

/* ANIME */
.sc-anime.topin.on{
	opacity:0;
	transform: translateY(-50px);
}
.sc-anime.topin.on.active{
	animation-name: topin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.bottomin.on{
	opacity:0;
	transform: translateY(50px);
}
.sc-anime.bottomin.on.active{
	animation-name: bottomin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.leftin.on{
	opacity:0;
	transform: translateX(-50px);
}
.sc-anime.leftin.on.active{
	animation-name: leftin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.rightin.on{
	opacity:0;
	transform: translateX(50px);
}
.sc-anime.rightin.on.active{
	animation-name: rightin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.fadein.on{
	opacity:0;
}
.sc-anime.fadein.on.active{
	animation-name: fadein;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin.on{
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin.on.active{
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin2.on{
	opacity:0;
	transform: translateY(50px);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin2.on.active{
	animation-name: blurin2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes topin {
	0% {
		opacity:0;
		transform: translateY(-50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes bottomin {
	0% {
		opacity:0;
		transform: translateY(50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes leftin {
	0% {
		opacity:0;
		transform: translateX(-50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes rightin {
	0% {
		opacity:0;
		transform: translateX(50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes upin {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes fadein {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}
@keyframes fadeout {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes blurin {
	0% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}
@keyframes blurin2 {
	0% {
		opacity: 0;
		transform: translateY(50px);
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}

/* color */
.txt-color-normal{color: #1A1A1A;}
.txt-white{color: #ffffff;}
.txt-red{color: red;}
.txt-color1{color: #FFE93C}
.txt-color2{color: #F1F1E9}
.txt-color3{color: #021745}
.txt-color4{color: #EBF5E5}
.bg-white{background-color: #ffffff;}
.bg-black{background-color: black}
.bg-color1{background-color: #FFE93C}
.bg-color2{background-color: #F1F1E9}
.bg-color3{background-color: #021745}
.bg-color4{background-color: #EBF5E5}
.border-color1{border-color: #FFE93C}
.border-color2{border-color: #F1F1E9}
.border-color3{border-color: #021745}
.border-color4{border-color: #EBF5E5}

.hvr-txt-color-normal:hover{color: #1A1A1A;}
.hvr-txt-white:hover{color: #ffffff;}
.hvr-txt-red:hover{color: red;}
.hvr-txt-color1:hover{color: #FFE93C}
.hvr-txt-color2:hover{color: #F1F1E9}
.hvr-txt-color3:hover{color: #021745}
.hvr-txt-color4:hover{color: #EBF5E5} 
.hvr-bg-white:hover{background-color: #ffffff;}
.hvr-bg-black:hover{background-color: black}
.hvr-bg-color1:hover{background-color: #FFE93C}
.hvr-bg-color2:hover{background-color: #F1F1E9}
.hvr-bg-color3:hover{background-color: #021745}
.hvr-bg-color4:hover{background-color: #EBF5E5}
.hvr-border-color1:hover{border-color: #FFE93C}
.hvr-border-color2:hover{border-color: #F1F1E9}
.hvr-border-color3:hover{border-color: #021745}
.hvr-border-color4:hover{border-color: #EBF5E5}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.pd_wrap{
		padding: 150px 60px 0;
	}
	.pd_wrap_all{
		padding: 150px 60px 150px;
	}
	.pd_wrap_side{
		padding-left: 60px;
		padding-right: 60px;
	}
	.default_title{
		font-size: 32px;
	}
	.default_title2{
		font-size: 28px;
	}
	.default_title3{
		font-size: 22px;
	}
	.default_txt{
		font-size: 18px;
	}
	.default_txt2{
		font-size: 16px;
	}
/* ---------- common ---------- */
	.pagetitle{
		height: 360px;
	}
	.pagetitle p{
		bottom: -3%;
		font-size: clamp(24px, 6vw, 90px);
	}
	.link_wrap{
		gap: 40px 60px;
	}

/* ---------- header ---------- */
	.header .logo{
		max-width: 280px;
	}
	.header .head_menu, .header .head_menu .ul{
		gap: 20px;
	}
	.header .head_menu p{
		font-size: 14px;
	}
/* ---------- footer ---------- */
	.footer{
		padding: 50px 30px;
		gap: 20px;
	}
	.footer .logo{
		width: 25%;
	}
	.footer .ul{
		width: calc(75% - 20px);
		gap: 20px 30px;
	}
	.footer .ul .li p{
		font-size: 16px;
	}
	
/* ---------- contact ---------- */
	.form-box .box-wrap .box h3{
		width: 250px;
	}
	.form-box .box-wrap .box .inputbox{
		width: calc(100% - 250px);
	}
	.send,.check-area{
		margin-left: 250px;
	}

}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.default_title{
		font-size: 30px;
	}
	.default_title2{
		font-size: 26px;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
	.header .head_menu .ul{
		display: none;
	}
/* ---------- footer ---------- */
	.footer{
		padding: 50px 30px;
		gap: 20px;
	}
	.footer .logo{
		width: 25%;
	}
	.footer .ul{
		width: calc(75% - 20px);
		gap: 20px 20px;
	}
	.footer .ul .li p{
		font-size: 14px;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.pd_wrap{
		padding: 100px 50px 0;
	}
	.pd_wrap_all{
		padding: 100px 50px 100px;
	}
	.pd_wrap_side{
		padding-left: 50px;
		padding-right: 50px;
	}
	.cate_wrap > .cate{
		padding-top: 100px;
	}
	.default_title{
		font-size: 28px;
	}
	.default_title2{
		font-size: 24px;
	}
	.default_title3{
		font-size: 20px;
	}
	.default_txt{
		font-size: 16px;
	}
	.default_txt2{
		font-size: 14px;
	}
/* ---------- common ---------- */
	.titleitem1{
		min-height: 60px;
	}
	.titleitem2{
		background-size: 100px auto;
	}
	.pagetitle{
		height: 300px;
	}
	.pagetitle p{
		bottom: -3%;
		font-size: clamp(24px, 6vw, 90px);
	}
	.link_wrap{
		gap: 40px 50px;
	}
/* ---------- header ---------- */
/* ---------- footer ---------- */
	.footer{
		padding: 30px 30px;
		gap: 20px;
		justify-content: center;
	}
	.footer .logo{
		width: 30%;
	}
	.footer .ul{
		display: none;
	}
/* ---------- contact ---------- */
	.form-box .box-wrap .box h3{
		width: 100%;
		margin-bottom: 10px;
	}
	.form-box .box-wrap .box .inputbox{
		width: 100%;
		padding-left: 0;
	}
	.form-box .box-wrap .box.required-box h3{
		padding-right: 0;
		padding-left: 20px;
	}
	.form-box .box-wrap .box.required-box h3::after{
	}
	.form-box .box-wrap .box .inputbox{
	}
	.form-box .box-wrap .box:not(.required-box) h3{
		padding-left: 0px;
	}
	.form-box .box-wrap .box .inputbox .check-wrap{
		padding-top: 10px;
		gap: 20px;
	}
	.form-box .box-wrap .box .inputbox .check-wrap1 .check-box{
		box-sizing: border-box;
	}
	.send,.check-area{
		margin-left: 0px;
	}
	
	.privacypolicy{
		padding: 100px 50px;
	}
	.privacypolicy .box-wrap{
		padding-left: 30px;
		padding-top: 50px;
	}
	.privacypolicy .box-wrap .box h3{
		font-size: 18px;
	}
	.privacypolicy p{
		font-size: 14px;
	}
	.privacypolicy .close-bt{
		top: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
	}
	.privacypolicy .close-bt::before,.privacypolicy .close-bt::after{
		width: 36px;
		height: 2px;
	}
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.pd_wrap{
		padding: 80px 20px 0;
	}
	.pd_wrap_all{
		padding: 80px 20px 80px;
	}
	.pd_wrap_side{
		padding-left: 20px;
		padding-right: 20px;
	}
	.cate_wrap > .cate{
		padding-top: 80px;
	}
	.default_title{
		font-size: 26px;
	}
	.default_title2{
		font-size: 22px;
	}
	.default_title3{
		font-size: 18px;
	}
	.default_txt{
		font-size: 14px;
	}
	.default_txt2{
		font-size: 13px;
	}
/* ---------- common ---------- */
	.pagetitle{
		height: 280px;
		text-align: center;
	}
	.pagetitle p{
		bottom: -2%;
		font-size: clamp(32px, 6vw, 90px);
	}
	.link_wrap{
		gap: 30px 30px;
	}
/* ---------- header ---------- */
	.header .logo{
		max-width: 200px;
		padding: 20px;
	}
	.header .head_menu{
		padding: 10px 20px 0;
	}
	.header .head_menu .head_bt_wrap .menu-bt{
		width: 50px;
		height: 50px;
	}
	.header .head_menu .head_bt_wrap .menu-bt .line{
		width: 20px;
		height: 18px;
	}
	.menu-wrap > div .ul{
		gap: 20px;
	}
	.menu-wrap > div .ul > div{
		width: calc(100% / 2 - 20px / 2);
	}
	.menu-wrap > div .ul > div a p{
		font-size: 16px;
	}
/* ---------- footer ---------- */
	.footer{
		padding: 30px 20px;
		gap: 20px;
	}
	.footer .logo{
		width: 50%;
	}
/* ---------- contact ---------- */
	.form-box .box-wrap .box .inputbox > input,.form-box .box-wrap .box .inputbox textarea{
		font-size: 14px;
	}
	.form-box .box-wrap .box .inputbox{
		padding-left: 0;
	}
	.form-box .box-wrap .box .inputbox .check-wrap{
		padding-top: 20px;
		gap: 20px;
	}
	.form-box .box-wrap .box .inputbox .check-wrap1 .check-box{
		width: 100%;
		box-sizing: border-box;
	}
	.form-box .box-wrap .box.required-box h3::after{
		font-size: 20px;
	}
	.form-box .box-wrap .box.required-box h3{
	}
	.privacypolicy{
		padding: 80px 20px;
	}
	.privacypolicy .box-wrap .box:not(:last-of-type){
		margin-bottom: 50px;
	}
	.privacypolicy .box-wrap{
		padding-top: 30px;
		padding-left: 0;
	}
	.send-bt p{font-size: 18px!important;}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}
