@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
/* CSS Document */
html{
}
body{
	font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	color: #000000;
    color: #333;
    overflow-x: hidden;
    background-color: #121212;
}

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

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

.form-box .box-wrap{
	max-width: 1000px;
}
.form-box .box-wrap .box{
	margin-bottom: 40px;
}
.form-box .box-wrap .box h3{
	width: 300px;
	position: relative;
	padding-right: 80px;
}
.form-box .box-wrap .box.required-box h3::after{
	content: "必須";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #BF272D;
	border-radius: 3px;
	padding: 2px 20px 3px;
	color: #fff;
	font-size: 14px;
	font-family: "Funnel Sans", "Noto Sans JP", "游ゴシック 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:not(.filebox) .inputbox > input,.form-box .box-wrap .box .inputbox textarea{
	background-color: #fff;
	border-radius: 6px;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 20px;
	border: #F3F4F8 solid 2px;
	font-family: "Funnel Sans", "Noto Sans JP", "游ゴシック 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: #B7B7B7;
	font-size: 14px;
}
.form-box .box-wrap .box .inputbox.date-box{
	gap: 20px
}
.form-box .box-wrap .box .inputbox.date-box input{
	width: auto;
	max-width: 120px;
}
.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:not(:last-of-type){
	margin-bottom: 10px;
}
/* ---------- radiobt ---------- */
.form-box .box-wrap .box .inputbox .check-wrap .check-box input[type="radio"] {
    appearance: none;
    -webkit-appearance: none; 
    -moz-appearance: none; 
    width: 20px; 
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%; 
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: #fff;
    vertical-align: middle;
    transition: border-color 0.3s, background-color 0.3s;
}


.form-box .box-wrap .box .inputbox .check-wrap .check-box input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px; 
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
/* ---------- inputsplit ---------- */
.inputbox.inputsplit {
	display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.inputbox.inputsplit input {
    width: 100%;
    max-width: 200px;
}

/* ---------- sendbt ---------- */
.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 {
    display: inline-block;
    padding: 12px 0;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    cursor: pointer;
    min-width: auto;
	width: 200px;
}
.send .send-bt:hover {
    background-color: #181818; 
    color: #fff;
	border: 1px solid #181818;
}


/* ---------- privacypolicy ---------- */
.privacypolicy{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 100px 100px;
	background-color: rgba(51,51,51,0.90);
	color: #ffffff;
	z-index: 99999;
	overflow: auto;
}
.privacypolicy .contents{
	font-family: "Funnel Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.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(51,51,51,1.00);
	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;
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.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){
	
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	
	.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: 0px;
	}
	.form-box .box-wrap .box.required-box h3::after{
		position: static;
		display: inline-block;
		margin-left: 20px;
		font-size: 13px;
		transform: translateY(-2px);
	}
	.form-box .box-wrap .box .inputbox{
	}
	.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;
	}
	.send .send-bt {
        width: 160px;
        font-size: 13px;
        padding: 10px 0;
    }
	.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){
	.send .send-bt {
        width: 140px; 
        font-size: 12px;
        padding: 8px 0;
    }
	.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.date-box{
		gap: 10px
	}
	.form-box .box-wrap .box .inputbox.date-box input{
		width: auto;
		max-width: 70px;
	}
	.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: 12px;
		padding: 2px 10px;
	}
	.form-box .box-wrap .box:not(.filebox) .inputbox > input, .form-box .box-wrap .box .inputbox textarea{
		padding: 10px 5px;
	}
	.form-box .box-wrap .box h3{
		padding-left: 0px;
	}
	.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;
	}
	.form-box .box-wrap .box .inputbox{
		gap: 5px;
	}
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}


/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: none;
    transition: all 0.3s ease;
}

.header.active {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.contact-link {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    padding: 10px 20px;
    border: none;
    border-radius: 200px;
    letter-spacing: 0.05em;
    background-color: #CC2222;
}

.contact-link p {
    color: #ffffff !important;
}

.contact-link:hover {
    background-color: #aa1a1a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(204, 34, 34, 0.3);
}

.menu-bt {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.menu-bt div {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-bt:hover div {
    background-color: #cc2222;
    transform: scaleX(1.1);
}

/* アクティブ状態でクロス（×）になる */
.menu-bt.active div:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-bt.active div:nth-child(2) {
    opacity: 0;
}

.menu-bt.active div:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}



/* ---------- common ---------- */
.more div.flex{
	gap: 15px;
}
.more.more1 a{
	position: relative;
	display: inline-block;
	border: 2px solid #CC2222;
	border-radius: 200px;
	padding: 10px 25px;
	overflow: hidden;
}
.more.more1 a::after{
	content: "";
	position: absolute;
	z-index: 1;
	background-color: #CC2222;;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	transition: ease 0.4s;
}
.more.more1 a:hover::after{
	transform: translateX(0%);
}
.more.more1 a > div{
	position: relative;
	z-index: 2;
}
.more.more1 a p,.more.more1 a i{
	color: #fff;
}
.more.more1 a p	{font-weight: 500;}
.more.more1 a i{
	transition: ease 0.3s;
}
.more.more1 a:hover i{
	transform: translateX(2px);
}
.more.more2 a{
	min-width: 290px;
	background-color: #262626;
	border-radius: 4px;
	padding: 20px;
}
.more.more2 a > div{
	justify-content: space-between;
}
.more.more2 a p{color: #fff;}
.more.more2 a i{
	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;
	background-color: #CC2222;
	color: #262626;
	aspect-ratio: 1 / 1;
	width: 30px;
	border-radius: 50%;
	transition: ease 0.3s;
}
.more.more2 a:hover i{
	transform: translateX(3px);
}
.more.more3 a{
	position: relative;
	display: inline-block;
	border: 2px solid #181818;
	border-radius: 200px;
	padding: 10px 25px;
	overflow: hidden;
}
.more.more3 a::after{
	content: "";
	position: absolute;
	z-index: 1;
	background-color: #181818;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	transition: ease 0.4s;
}
.more.more3 a:hover::after{
	transform: translateX(0%);
}
.more.more3 a > div{
	position: relative;
	z-index: 2;
}
.more.more3 a p,.more.more1 a i{
	color: #181818;
	transition: ease 0.4s;
}
.more.more3 a p	{font-weight: 500;}
.more.more3 a i{
	transition: ease 0.3s;
}
.more.more3 a:hover i{
	transform: translateX(2px);
}
.more.more3 a:hover p,.more.more1 a:hover i{
	color: #fff;
}

/* ---------- header ---------- */
.header{
}
.menu-wrap{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(0,0,0,0.90);
	z-index: 998;
}
.menu-wrap > div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.menu-wrap .menu-wrap-box{
	overflow: auto;
}
.menu-wrap > div > div{
	padding: 100px 50px;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	overflow: auto;
}
.menu-wrap > div .ul .li{
	min-width: calc(100% / 4 - 120px / 4);
	text-align: center;
}
.menu-wrap > div .ul .li a{
	margin: 0 auto;
}
.menu-wrap .footer-title{
	font-size: 24px;
}



/* ---------- footer ---------- */

/* 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: #000000;}
.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: #000000;}
.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;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
	.contact-grid{
		gap: 10px;
	}
	.footer .footer-sections{
		display: none;
	}
	.footer .footer-content{
		justify-content: center;
	}
	.footer .footer-content .footer-logo{
		margin: 0 auto;
	}
}
/* ---------- 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;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
	.footer-bottom > div{
		margin-left: auto;
		margin-right: auto;
	}
	
}
/* ---------- スマートフォン ---------- */
/* ---------- 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;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}



/* Contact Section */
.contact-container a{
	position: relative;
}
.contact-container a i{
}
.contact-container a i{
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	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;
	border: 1px solid #fff;
	color: #fff;
	aspect-ratio: 1 / 1;
	width: 30px;
	border-radius: 50%;
	transition: ease 0.3s;
	font-size: 14px;
}
.contact-container a:hover i{
	transform: translateX(3px) translateY(-50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.contact-image {
    position: relative;
    overflow: hidden;
}

.contact-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.contact-item:hover .contact-img {
    transform: scale(1.05);
}

.contact-content {
    padding: 80px 25px 65px;
    color: #ffffff;
	text-align: center;
}

.contact-title {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.contact-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
	font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
}

.contact-main {
	display: block;
    text-align: center;
	background-color: #960100;
    padding: 50px 50px;
    transition: all 0.3s ease;
}


.contact-main-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.contact-main-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
	font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	margin-bottom: 40px;
}

.footer-logo {
	flex: 0 0 200px;
	text-align: center;
}

.footer-logo-img {
	height: 60px;
	width: auto;
	margin-bottom: 20px;
}

.footer-instagram-link {
	display: block;
	color: #ffffff;
	font-size: 24px;
	transition: color 0.3s ease;
}

.footer-instagram-link i {
	color: #ffffff;
}

.footer-instagram-link:hover {
	color: #cc2222;
}

.footer-instagram-link:hover i {
	color: #cc2222;
}

.footer-sections {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #cc2222;
    margin-bottom: 15px;
	font-weight: 500;
}

.footer-text {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-item {
    margin-bottom: 8px;
}

.footer-link-item a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-link-item p {
	color: #ffffff !important;
}

.footer-link-item a:hover {
    color: #cc2222;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-address {
    text-align: left;
    color: #ffffff;
}

.footer-address p {
    color: #ffffff !important;
    font-family: 'Yu Gothic UI:Regular', 'Yu Gothic UI', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.footer-address p:first-child {
    margin-bottom: 5px;
}

.footer-copyright {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: right;
}

/* Responsive Design for Header, Contact, Footer */
@media (max-width: 1280px) {
    .header-container {
        padding: 0 15px;
    }
    
    .contact-container {
        padding: 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}

@media (max-width: 1080px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.footer-content {
		flex-direction: column;
		gap: 40px;
	}
	
	.footer-logo {
		flex: none;
		text-align: center;
	}
	
	.footer-sections {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header-logo-img {
        height: 35px;
    }
    
    .header-right {
        gap: 20px;
    }
    
    .contact-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .contact-main {
        padding: 60px 30px;
    }
    
    .contact-main-subtitle {
        font-size: 42px;
    }
    
    	.footer-content {
		flex-direction: column;
		gap: 30px;
	}
	
	.footer-sections {
		grid-template-columns: 1fr;
		gap: 25px;
	}
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-address {
        text-align: center;
    }
	.menu-wrap .footer-title{
		font-size: 20px;
		margin-bottom: 5px;
	}
	.menu-wrap .footer-sections{
		gap: 15px;
	}
	.menu-wrap .footer-sections .footer-link-item p{
		font-size: 14px;
	}
	.contact-grid{
		gap: 10px!important;
	}
}
@media screen and (max-width: 576px){
	.contact-subtitle{
		font-size: 32px;
	}
	.contact-grid{
		gap: 10px!important;
	}
}

/* Page Title Section */
.pagetitle1 {
    padding: 110px 0 80px 0;
    position: relative;
}

.pagetitle-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.pagetitle-content {
    flex: 0 0 50%;
    text-align: left;
}

.pagetitle-image {
    flex: 1;
}

.pagetitle-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pagetitle-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.page_entitle {
    font-family: 'Orbitron', 'Orbitron Medium', sans-serif;
    font-size: 70px;
    font-weight: 500;
    color: #cc2222;
    margin-bottom: 20px;
    letter-spacing: 0;
    line-height: 1;
}

.page_jptitle {
    font-family: 'Yu Gothic UI', 'Yu Gothic UI Bold', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 0;
    line-height: 1;
}

.pagetitle-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

/* Responsive Design for Page Title */
@media (max-width: 1080px) {
    .pagetitle-container {
        gap: 40px;
    }
    
    .page_entitle {
        font-size: 60px;
    }
    
    .page_jptitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .pagetitle-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .pagetitle-image {
        flex: 0 0 100%;
        order: -1;
    }
    
    .pagetitle-content {
        order: 1;
        text-align: center;
    }
    
    .page_entitle {
        font-size: 48px;
    }
    
    .page_jptitle {
        font-size: 16px;
    }
    
    .pagetitle-title {
        font-size: 36px;
    }
    
    .pagetitle-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .pagetitle1 {
        padding: 110px 0 60px 0;
    }
    
    .pagetitle-container {
        gap: 20px;
    }
    
    .page_entitle {
        font-size: 36px;
    }
    
    .page_jptitle {
        font-size: 14px;
    }
    
    .pagetitle-title {
        font-size: 28px;
    }
    
    .pagetitle-description {
        font-size: 15px;
    }
	.contact-main-subtitle{
		font-size: 32px;
	}
}