@charset "UTF-8";
/*base*/
:root{
	--col_bg: #000000;
	--col_main: #ffffff;
	--col_sub: #000000;
	--col_red: #cf121b;
	--col_dred: #5f2134;
	--col_yel: #e7b128;
	}
/*anime*/
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes shakeY{
	0%{
		-webkit-transform:translateZ(0);
		transform:translateZ(0);
		opacity: 0;
	}
	10%,30%,50%,70%,90%{
		-webkit-transform:translate3d(0,-10px,0);
		transform:translate3d(0,-10px,0);
	}
	20%,40%,60%,80%{
		-webkit-transform:translate3d(0,10px,0);
		transform:translate3d(0,10px,0);
	}
	100%{
		-webkit-transform:translateZ(0);
		transform:translateZ(0);
	opacity: 1;
	}
}

@keyframes shakeY{
	0%{
		-webkit-transform:translateZ(0);
		transform:translateZ(0);
		opacity: 0;
	}
	10%,30%,50%,70%,90%{
		-webkit-transform:translate3d(0,-10px,0);
		transform:translate3d(0,-10px,0);
	}
	20%,40%,60%,80%{
		-webkit-transform:translate3d(0,10px,0);
		transform:translate3d(0,10px,0);
	}
	100%{
		-webkit-transform:translateZ(0);
		transform:translateZ(0);
		opacity: 1;
	}
}

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	}

html{
	font-size: 100%;
	overflow-y: scroll; 
	}

body{
	color: var(--col_main);
	background: var(--col_bg);
	font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
	}

p{
	line-height: 1.8;
	}

img{
	max-width: 100%;
	}

/*link*/
a img {
	border-style: none;
	}

a:link{
	color: var(--col_main);
	}

a:active{
	text-decoration: underline;
	}

a:visited{
	color: var(--col_main);
	}

a:hover{
	text-decoration: none;
	}

a img:hover{
	opacity: 0.8;
	}

/*inner*/
.inner{
	width: 1200px;
	margin-inline: auto;
	}

/*margin*/
.mgt1rem{
	margin-top: 1rem;
	}

.mgt10{
	margin-top: 10px;
	}

.mgt20{
	margin-top: 20px;
	}

.mgt30{
	margin-top: 30px;
	}

.mgt40{
	margin-top: 40px;
	}

.mgt50{
	margin-top: 50px;
	}

.mgt80{
	margin-top: 80px;
	}

/*text-align*/
.txt_alignleft{
	text-align: left;
	}
.txt_alignright{
	text-align: right;
	}
.txt_aligncenter{
	text-align: center;
	}

/*fontsize*/
.txt_reset{
	font-size: 1rem;
	}
.txt_14{
	font-size: 0.875rem;
	}
.txt_18{
	font-size: 1.125rem;
	}
.txt_20{
	font-size: 1.25rem;
	}
.txt_22{
	font-size: 1.375rem;
	}
.txt_24{
	font-size: 1.5rem;
	}
.txt_30{
	font-size: 1.875rem;
	}
.txt_36{
	font-size: 2.25rem;
	}
.txt_40{
	font-size: 2.5rem;
	}
.txt_48{
	font-size: 3rem;
	}
.txt_60{
	font-size: 3.75rem;
	}

/*font-weight*/
.txt_normal{
	font-weight: normal;
	}
.txt_bold{
	font-weight: bold;
	}

/*color*/
.col_red{
	color: var(--col_red);
	}
.col_dred{
	color: var(--col_dred);
	}
.col_yel{
	color: var(--col_yel);
	}

/*pc/sp*/
.pc{
	display: block;
	}
.sp{
	display: none;
	}

/*flex*/
.flex{
	display: flex;
	}

.spflex{
	display: flex;
	}

.align_items_start{
	align-items: start;
	}

.align_items_center{
	align-items: center;
	}

.justify_content_space_between{
	justify-content: space-between;
	}

.justify_content_start{
	justify-content: flex-start;
	}

.justify_content_center{
	justify-content: center;
	}

.flex_wrap{
	flex-wrap: wrap;
	}

/*grid*/
.grid_wrap{
	display: grid;
	}

/*fadein*/
.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	}

.fadein{
	opacity: 0;
	}

/*h*/
hgroup p.txt_18{
	margin-top: 20px;
	}

/*btn_float*/
a.btn_float{
	position: fixed;
	right: 40px;
	bottom: 20px;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100px;
	height: 100px;
	background: var(--col_main) url('../img/icon_link.svg') bottom 15px center no-repeat;
	background-size: 16px 9px;
	border-radius: 100px;
	color: var(--col_red);
	font-weight: bold;
	font-size: 1.125rem;
	line-height: 1.27;
	text-decoration: none;
	box-shadow: 0px 0px 15px -5px var(--col_bg);
	}
a.btn_float:hover{
	opacity: 0.8;
	}

/*header*/
header{
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 192 / 108;
	}
header picture{
	width: 100%;
	position: absolute;
	}
header img{
	display: block;
	width: 100%;
	height: auto;
	}
header .mainimg_txt{
	animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-delay: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	}

header .mainimg_ill{
	animation-name: shakeY;
	animation-duration: 1s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
	opacity: 0;
	}
header .mainimg_item{
	animation-name: shakeY;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
	}

/*lineup*/
#lineup{
	background: url('../img/bg_lineup.png');
	padding: 60px 0;
	}

#lineup .lineup_item_wrap{
	margin-top: 60px;
	gap: 40px;
	}

#lineup .item_wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 20px;
	background: var(--col_main) url('../img/bg_lineup_item.png') bottom right no-repeat;
	background-size: 50%;
	color: var(--col_sub);
	box-shadow: 0px 0px 10px -5px var(--col_bg);
	}


#lineup .item_wrap:nth-of-type(even){
	flex-direction: row-reverse;
	background-position: bottom left;
	}

#lineup .item_wrap .item_img{
	display: block;
	width: 50%;
	height: auto;
	border-radius: 20px 0 0 20px;
	}

#lineup .item_wrap:nth-of-type(even) .item_img{
	border-radius: 0 20px 20px 0;
	}
#lineup .item_wrap .item_txt{
	width: 50%;
	padding: 40px;
	}

#lineup .item_wrap .item_txt p.txt_22{
	margin: 20px 0;
	}

#lineup li.circle{
	list-style-type: none;
	margin: 0;
	padding-left: 15px;
	position: relative;
	font-size: 1.125rem;
	line-height: 1.8;
	}

#lineup li.circle::before{
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: var(--col_red);
	position: absolute;
	top: 0.5em;
	left: 0;
	}

/*about*/
#about{
	background: url('../img/bg_about.png');
	padding: 60px 0;
	}

#about .item_wrap{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	padding: 40px;
	margin: 60px 0 40px;
	border-radius: 20px;
	background: var(--col_main);
	color: var(--col_sub);
	position: relative;
	box-shadow: 0px 0px 10px -5px var(--col_bg);
	}
#about .item_wrap:after{
	content: '';
	position: absolute;
	width: 128px;
	height: 44px;
	left: 50%;
	bottom: -44px;
	transform: translateX(-50%);
	background: url('../img/img_about_fuk.png') no-repeat;
	background-size: contain;
	}

#about .item{
	display: grid;
	gap: 20px;
	place-content: center;
	place-items: center;
	grid-template-rows: subgrid;
	grid-row: span 3;
	}

#about .item .item_img{
	border-radius: 10px;
	}

#about .item .item_h{
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: repeat(2, auto);
	gap: 5px 20px;
	}
#about .item .item_h .item_h_icon{
	grid-area: 1 / 1 / 3 / 2;
	}
#about .item .item_h h3{
	grid-area: 1 / 2 / 2 / 3;
	}
#about .item .item_h p{
	grid-area: 2 / 2 / 3 / 3;
	}

#about .txt_about{
	width: 709px;
	height: auto;
	}

#about .dish_wrap{
	width: 83.3%;
	margin-top: 30px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 40px;
	}

#about .dish_wrap .dish_img{
	display: block;
	width: 40%;
	height: auto;
	}


/*charm*/
#charm{
	background: var(--col_bg) url('../img/bg_charm.jpg') bottom center no-repeat;
	background-size: auto 1280px;
	padding: 60px 0;
	}

#charm .charm_item_wrap{
	margin-top: 60px;
	gap: 40px;
	}

#charm .item_wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px;
	gap: 40px;
	border: 1px solid #660000;
	border-radius: 20px;
	background: url('../img/bg_charm_item.png'),linear-gradient(to right,  #330000 0%,#000000 100%);
	background-size: 50%,100%;
	color: var(--col_main);
	box-shadow: 0px 0px 10px -5px var(--col_bg);
	}

#charm .item_wrap:nth-of-type(even){
	flex-direction: row-reverse;
	background: url('../img/bg_charm_item.png'),linear-gradient(to right,  #000000 0%,#330000 100%);
	}

#charm .item_wrap .item_img{
	display: block;
	width: 50%;
	height: auto;
	border-radius: 10px;
	}

#charm .item_wrap .item_txt{
	width: 50%;
	}

#charm .item_wrap h3.txt_36{
	margin-bottom: 20px;
	}


/*noodle*/
#noodle{
	background: url('../img/bg_noodle.png');
	padding: 60px 0;
	}
#noodle .noodle_item_wrap{
	margin-top: 40px;
	grid-template-columns: auto 54%;
	gap: 30px;
	}
#noodle .h_noodle{
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--col_yel);
	color: var(--col_sub);
	font-size: 1.375rem;
	margin-bottom: 60px;
	padding: 20px 30px;
	border-radius: 10px;
	position: relative;
	}
#noodle .h_noodle:after{
	content: '';
	position: absolute;
	width: 65px;
	height: 22px;
	left: 35px;
	bottom: -22px;
	background: url('../img/img_noodle_fuk.png') no-repeat;
	background-size: contain;
	}

#noodle .item_txt{
	padding-left: 80px;
	background: url('../img/icon_noodle_check.png') no-repeat;
	background-size: 59px 51px;
	}

#noodle .item_txt .txt_24{
	margin-bottom: 10px;
	}

/*message*/
#message{
	background: url('../img/bg_message_left.png') top left no-repeat,url('../img/bg_message_right.png') bottom right no-repeat,#f8f0dd;
	background-size: 400px,430px;
	padding: 60px 0;
	color: var(--col_sub);
	}

#message .inner{
	width: 840px;
	}

#message .img_message{
	border-radius: 20px;
	margin-top: 80px;
	}

#message .txt_message{
	display: block;
	width: 552px;
	height: auto;
	margin-top: 60px;
	margin-inline: auto;
	}

/*recommend*/
#recommend{
	background: url('../img/bg_recommend.jpg') bottom no-repeat;
	background-size: cover;
	padding: 60px 0;
	}
#recommend .recommend_item_wrap{
	margin-top: 60px;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	}

#recommend .item_img{
	border-radius: 20px;
	}

#recommend .h_recommend{
	text-align: center;
	margin-top: 20px;
	padding-top: 100px;
	font-size: 1.125rem;
	}
#recommend .h_recommend.woman{
	background: url('../img/icon_recommend_woman.png') top center no-repeat;
	background-size: 80px 80px;
	}
#recommend .h_recommend.nightmeal{
	background: url('../img/icon_recommend_nightmeal.png') top center no-repeat;
	background-size: 80px 80px;
	}
#recommend .h_recommend.spicy{
	background: url('../img/icon_recommend_spicy.png') top center no-repeat;
	background-size: 80px 80px;
	}

/*new*/
#new{
	background: #e05323 url('../img/bg_new.png') bottom no-repeat;
	background-size: contain;
	padding: 60px 0;
	}
#new .new_item_wrap{
	margin-top: 60px;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	}
#new .item_wrap{
	border: 1px solid var(--col_main);
	background: rgba(255,255,255,0.4);
	box-shadow: 0px 0px 10px -5px var(--col_bg);
	padding: 40px;
	border-radius: 20px;
	}
#new .item_img{
	border-radius: 10px;
	}
#new h3.txt_aligncenter{
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	}
#new .num{
	display: inline-block;
	padding-right: 20px;
	margin-right: 20px;
	border-right: 1px solid var(--col_main);
	font-size: 1.875rem;
	}

/*voice*/
#voice{
	padding: 60px 0;
	}
#voice .voice_item_wrap{
	margin-top: 60px;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	}
#voice .item_wrap{
	padding: 40px;
	border-radius: 20px;
	}
#voice .item_wrap.bg_01{
	background: #c66b6f;
	}
#voice .item_wrap.bg_02{
	background: #ca9f33;
	}
#voice .item_wrap.bg_03{
	background: #ab5914;
	}
#voice .item_img{
	display: block;
	width: auto;
	height: 100px;
	margin-inline: auto;
	}
#voice h3.txt_22{
	margin: 15px 0;
	}

/*buy*/
#buy{
	background: url('../img/img_buy_dragon_left.png') center left -90px no-repeat,url('../img/img_buy_dragon_right.png') center right -90px no-repeat,url('../img/bg_buy.png');
	padding: 60px 0;
	}
#buy .buy_item_wrap{
	margin-top: 60px;
	gap: 20px;
	}
#buy figure{
	width: 200px;
	}
#buy .item_img{
	display: block;
	width: auto;
	height: 200px;
	margin-inline: auto;
	}
#buy a.btn{
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
	width: 600px;
	height: 104px;
	margin-inline: auto;
	background: var(--col_main) url('../img/icon_newwin_red.svg') center right 40px no-repeat;
	background-size: 14px 14px;
	border-radius: 104px;
	color: var(--col_red);
	text-decoration: none;
	box-shadow: 0px 0px 10px -5px var(--col_bg);
	}
#buy a.btn:hover{
	background: var(--col_red) url('../img/icon_newwin_white.svg') center right 40px no-repeat;
	background-size: 14px 14px;
	color: var(--col_main);
	}

/*footer*/
footer{
	padding: 40px;
	}
footer .footer_item_wrap{
	grid-template-columns: repeat(2, 1fr);
	padding-bottom: 40px;
	border-bottom: 1px solid #333333;
	}
footer .mark_wrap{
	display: flex;
	align-items: center;
	gap: 20px;
	}
footer .footer_mark{
	display: block;
	width: 140px;
	height: auto;
	}

footer .link_wrap{
	grid-template-columns: repeat(2, 1fr);
	}

footer .link_wrap h2.txt_reset{
	margin-bottom: 30px;
	}

footer .footer_link_list li{
	list-style-type: none;
	margin-bottom: 30px;
	}
footer .footer_link_list li:last-of-type{
	margin-bottom: 0;
	}
footer .footer_link_list a:link{
	text-decoration: none;
	color: #999999;
	}
footer .footer_link_list a:visited{
	color: #999999;
	}
footer .footer_link_list a:hover{
	text-decoration: underline;
	}

footer .sns{
	display: flex;
	gap: 10px;
	}

footer .sns a.icon_sns{
	display: block;
	text-decoration: none;
	text-indent: -9999px;
	width: 48px;
	height: 48px;
	}
footer .sns a.icon_sns:hover{
	opacity: 0.8;
	}
footer .sns a.icon_sns.insta{
	background: url('../img/icon_sns_insta.png') no-repeat;
	background-size: cover;
	}
footer .sns a.icon_sns.tictok{
	background: url('../img/icon_sns_tictok.png') no-repeat;
	background-size: cover;
	}

footer .copyright_wrap{
	position: relative;
	padding-top: 40px;
	}

footer .copyright{
	text-align: center;
	color: #999999;
	}

footer a.logo{
	position: absolute;
	top: 35px;
	right: 0;
	display: block;
	text-decoration: none;
	text-indent: -9999px;
	width: 233px;
	height: 24px;
	background: url('../img/logo.png') no-repeat;
	background-size: cover;
	}
footer a.logo:hover{
	opacity: 0.8;
	}
/* Media Queries
==========================================================================*/
@media screen and (max-width:1200px) {

html {
	-webkit-text-size-adjust: none;
	}
/*inner*/
.inner{
	width: calc(100% - 40px);
	}

/*lineup*/
#lineup .item_wrap .item_img{
	width: 30%;
	height: 100%;
	object-fit: cover;
	}
#lineup .item_wrap .item_txt{
	width: 70%;
	padding: 20px;
	}

/*noodle*/
#noodle .noodle_item_wrap{
	grid-template-columns: auto 30%;
	gap: 20px;
	}
/*message*/
#message .inner{
	width: 70%;
	}
}


@media screen and (max-width:767px) {
body{
	overflow-x: hidden;
	}
.inner{
	width: calc(100% - 20px);
	}
/*margin*/
.mgt40{
	margin-top: 20px;
	}
/*fontsize*/
.txt_reset{
	font-size: 1rem;
	}
.txt_14{
	font-size: 0.875rem;
	}
.txt_18{
	font-size: 1.125rem;
	}
.txt_22{
	font-size: 1.125rem;
	}
.txt_24{
	font-size: 1.5rem;
	}
.txt_30{
	font-size: 1.25rem;
	}
.txt_36{
	font-size: 1.875rem;
	}
.txt_48{
	font-size: 1.875rem;
	}
.txt_60{
	font-size: 2.8125rem;
	}
/*h*/
hgroup h2.txt_48{
	line-height: 1.5;
	}
hgroup p.txt_18{
	margin-top: 5px;
	}

/*btn_float*/
a.btn_float{
	right: 10px;
	bottom: 10px;
	width: 70px;
	height: 70px;
	background-position: bottom 10px center;
	background-size: 11px 5.5px;
	border-radius: 70px;
	font-size: 0.75rem;
	}
a.btn_float:hover{
	opacity: 1;
	}

/*pc/sp*/
.pc{
	display: none;
	}
.sp{
	display: block;
	}

/*header*/
header{
	aspect-ratio: 15 / 24;
	}

/*lineup*/
#lineup{
	padding: 40px 0;
	background-size: 500px;
	}

#lineup .lineup_item_wrap{
	margin-top: 40px;
	gap: 20px;
	}

#lineup .item_wrap{
	flex-flow: column;
	border-radius: 20px;
	background-position: bottom center;
	background-size: 100%;
	}

#lineup .item_wrap:nth-of-type(even){
	flex-direction: column;
	background-position: bottom center;
	}

#lineup .item_wrap .item_img{
	width: 100%;
	border-radius: 20px 20px 0 0;
	}

#lineup .item_wrap:nth-of-type(even) .item_img{
	border-radius: 20px 20px 0 0;
	}

#lineup .item_wrap .item_txt{
	width: 100%;
	padding: 40px;
	}

#lineup .item_wrap .item_txt h3.txt_36{
	text-align: center;
	}


/*about*/
#about{
	padding: 40px 0;
	background-size: 480px;
	}

#about .item_wrap{
	grid-template-columns: 100%;
	gap: 40px;
	margin: 40px 0;
	}

#about .item .item_h{
	place-content: center;
	place-items: center;
	grid-template-columns: 100%;
	grid-template-rows: repeat(auto-fill, auto);
	gap: 5px;
	}
#about .item .item_h .item_h_icon{
	grid-area: auto;
	width: 80px;
	height: auto;
	}
#about .item .item_h h3{
	grid-area: auto;
	}
#about .item .item_h p{
	grid-area: auto;
	}

#about .txt_about{
	width: 100%;
	}

#about .dish_wrap{
	width: 100%;
	flex-flow: column;
	}

#about .dish_wrap .dish_img{
	width: 82%;
	}
#about .dish_wrap .dish_txt.txt_aligncenter{
	text-align: left;
	}

/*charm*/
#charm{
	padding: 40px 0;
	}

#charm .charm_item_wrap{
	margin-top: 40px;
	gap: 20px;
	}

#charm .item_wrap{
	flex-flow: column;
	}

#charm .item_wrap:nth-of-type(even){
	flex-direction: column;
	}

#charm .item_wrap .item_img{
	width: 100%;
	}

#charm .item_wrap .item_txt{
	width: 100%;
	}

#charm .item_wrap .item_txt .txt_36{
	text-align: center;
	line-height: 1.5;
	}

/*noodle*/
#noodle{
	padding: 40px 0;
	background-size: 500px;
	}
#noodle .txt_aligncenter .txt_18{
	text-align: left;
	}
#noodle .noodle_item_wrap{
	margin-top: 30px;
	grid-template-columns: 100%;
	gap: 30px;
	}
#noodle .h_noodle{
	display: block;
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 40px;
	}
#noodle .h_noodle:after{
	left: 50%;
	transform: translateX(-50%);
	}

#noodle .h_noodle .txt_30{
	font-size: 1.875rem;
	}

#noodle .item_txt{
	padding-left: 70px;
	}

#noodle  .txt_24.txt_aligncenter{
	text-align: left;
	}

/*message*/
#message{
	background-size: 262px,335px;
	padding: 40px 0;
	}

#message .inner{
	width: calc(100% - 20px);
	}

#message .img_message{
	margin-top: 40px;
	}

#message .txt_message{
	width: 330px;
	margin-top: 30px;
	}


/*recommend*/
#recommend{
	padding: 40px 0;
	}
#recommend .recommend_item_wrap{
	margin-top: 40px;
	grid-template-columns: 100%;
	}

#recommend .item_wrap{
	display: flex;
	align-items: center;
	gap: 20px;
	}

#recommend .item_img{
	width: 53%;
	height: auto;
	}

#recommend .h_recommend{
	text-align: center;
	margin-top: 0;
	padding-top: 0;
	font-size: 1.125rem;
	line-height: 1.8;
	}
#recommend .h_recommend.woman,#recommend .h_recommend.nightmeal,#recommend .h_recommend.spicy{
	background: none;
	}

/*new*/
#new{
	background-size: auto 400px;
	padding: 40px 0;
	}
#new .new_item_wrap{
	margin-top: 40px;
	grid-template-columns: 100%;
	gap: 20px;
	}


/*voice*/
#voice{
	padding: 40px 0;
	}
#voice .voice_item_wrap{
	margin-top: 40px;
	grid-template-columns: 100%;
	gap: 20px;
	}
#voice h3.txt_22{
	font-size: 1.25rem;
	line-height: 1.8;
	}

/*buy*/
#buy{
	background: url('../img/img_buy_dragon_left.png') top 40px center no-repeat,url('../img/bg_buy.png');
	background-size: 200px,500px;
	padding: 40px 0;
	}
#buy .buy_item_wrap{
	margin-top: 40px;
	gap: 10px;
	}
#buy figure{
	width: 100px;
	}
#buy .item_img{
	height: 100px;
	}
#buy a.btn{
	margin-top: 40px;
	font-size: 1.125rem;
	width: 100%;
	height: 85px;
	border-radius: 85px;
	background-position: center right 20px;
	}
#buy a.btn:hover{
	background: var(--col_red) url('../img/icon_newwin_white.svg') center right 40px no-repeat;
	background-size: 14px 14px;
	color: var(--col_main);
	}
/*footer*/
footer{
	padding: 40px 0 20px;
	}
footer .footer_item_wrap{
	grid-template-columns: 100%;
	gap: 40px;
	}
footer .mark_wrap{
	flex-flow: column;
	gap: 10px;
	}
footer .txt_wrap{
	text-align: center;
	}
footer .link_wrap h2.txt_reset{
	margin-bottom: 20px;
	}

footer .footer_link_list li{
	list-style-type: none;
	margin-bottom: 20px;
	}

footer .sns{
	display: flex;
	gap: 10px;
	}

footer .copyright_wrap{
	position: relative;
	padding-top: 20px;
	}

footer a.logo{
	position: static;
	margin-inline: auto;
	margin-bottom: 20px;
	}

}