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

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: 100px 80px 0;
}
.pd_wrap_all{
	padding: 100px 80px 100px;
}
.pd_wrap_side{
	padding-left: 80px;
	padding-right: 80px;
}

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

/* ---------- common ---------- */

/* ---------- header ---------- */
.header{
}

/* ---------- 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: #222222;}
.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: #222222;}
.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}



/* ---------- font-size ---------- */
.en_title{
	font-family: "Montserrat",  sans-serif;
	font-size: 40px;
	letter-spacing: 0.1em;
	font-weight: 900;
}
.en_title2{
	font-family: "Montserrat",  sans-serif;
	font-size: 50px;
	letter-spacing: 0.1em;
	font-weight: 900;
}
.default_title{ 
	font-size: 26px;
	letter-spacing: 0.05em;
	font-weight: 700;
}
.default_title2{
	font-size: 22px;
	letter-spacing: 0.05em;
	font-weight: 700; 
}
.default_title3{
	font-size: 18px;
	font-weight: 700;
}

.default_txt{
	font-size: 16px;
	line-height: 2.5;
	letter-spacing: 0.05em;
}
.default_txt2{
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.03em;
}
.en_txt{
	font-family: "Josefin Sans",  sans-serif;
	font-size: 16px;
}
.txt-color1{color: #BA1A23}
.txt-color2{color: #222}
.txt-color3{color: #021745}

.font-mo{
	font-family: "Montserrat",  sans-serif;
}
.font-josefin{
	font-family: "Josefin Sans",  sans-serif;
}
.font-noto{
	 font-family: "Noto Sans JP",  sans-serif;
}

/* ---------- side bg ---------- */
body.on .bg-left,body.on .bg-right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc(50% - 300px);
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
}
body.on .bg-left::before,
body.on .bg-right::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	z-index: 1;
	pointer-events: none;
}
.bg-left {
    left: 0;
/*
    background-image: url("../img/bg-left.jpg");
*/
}
.bg-right {
    right: 0;
/*
    background-image: url("../img/bg-right.jpg"); 
*/
}
body:not(.on) .bg-left,body:not(.on) .bg-right{
	display: inline-block;
    width: 40%;
}

/* ---------- pagetitle ---------- */
.pagetitle{
	position: relative;
	background-color: #BA1A23;
    max-width: 600px;
    margin: 0 auto;
	padding: 60px 40px 0px 40px;
    z-index: 1;
	overflow: hidden;
}
.pagetitle .yellow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px; 
    background-color: #F0D91F;
    border-bottom-right-radius: 60px;
	border-bottom-left-radius: 60px;
    z-index: 1;
}
.pagetitle .title_wrap {
	position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
	align-items: flex-start;
	z-index: 2;
}
.pagetitle .titlebox p{
	line-height: normal;
}
.pagetitle .imgbox img {
    width: 100%;
    border-radius: 20px;
}
.pagetitle2 {
	overflow: visible;
	background-color: #fff;
}
.pagetitle2 .yellow-bg {
    height: 200px; 
}
/* ---------- main ---------- */
.main-wrap{
    max-width: 600px;
	margin: 0 auto;
}
.txtbg-red{
	padding: 30px 20px;
	background-color: #A00912;
	border-radius: 10px;
}
.title-style1{
	flex-direction: column;
}
.title-line{
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 40px;
}
.title-line::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	height: 10px;
	background-image: radial-gradient(#fff 20%, transparent 21%);
	background-size: 8px 8px;
	background-repeat: repeat-x;
}
/* ---------- more ---------- */
.more a{
	background-color: transparent;
	border: 1px solid #fff;
	position: relative;
	border-radius: 200px;
	padding: 10px 35px;
	overflow: hidden;
	min-width: 200px;
}
.more a::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	background-color: #fff;
	transition: ease 0.4s;
}
.more a:hover{
	opacity: 1;
}
.more a:hover::after{
	transform: translateX(0);
}
.more a p{
	position: relative;
	z-index: 3;
	color: #fff;
	transition: ease 0.3s;
}
.more a:hover p{
	color: #BA1A23;
}
.more a p{
	padding-right: 10px;
}
.more a i{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.more a p,
.more .circle {
    position: relative;
    z-index: 2;
    color: #fff;
    transition: color 0.3s ease;
}
.more .circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.more a:hover .circle {
  border-color: #BA1A23;
  transform: translateX(4px);
}
.more .arrow{
	position: absolute;
	width: 14px;
	top: 50%;
  	left: 50%;
 	 transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}
.more .arrow1 { opacity: 1; }
.more .arrow2 { opacity: 0; }
.more a:hover .arrow1 { opacity: 0; }
.more a:hover .arrow2 { opacity: 1; }

.more2 a{
	border: 1px solid #222;
}
.more2 a p{
	color: #222;
}
.more2 .arrow1 { opacity: 0; }
.more2 .arrow2 { opacity: 1; }
.more .circle {
    border: 1px solid #E8E8E8;
}
.more2 a:hover p {
    color: #fff;
}
.more2 a::after{
	background-color: #BA1A23;
}
.more2 a:hover {
	border: 1px solid #fff;
}
.more2 a:hover .circle {
    border-color: #fff;
}
.more2 a:hover .arrow1 { opacity: 1; }
.more2 a:hover .arrow2 { opacity: 0; }

.more0 {
  display: none;
}
.more-shop a {
    background-color: #F0D91F;
	border: 1px solid rgba(186,26,35,0); 
	border-radius: 20px;
	padding: 20px;
}
.more-shop a p{
	color: #BA1A23;
}
.more-shop a .default_txt{
	color: #222;
}
.more-shop .circle {
    border: 1px solid #BA1A23;
}
.more-shop a .arrow2 {
	opacity: 1;
}
.more .shop-icon{
    width: 4%;
	position: relative;
	z-index: 2;
	transition: opacity 0.3s ease;
}
.more-shop a:hover {
	border: 1px solid #BA1A23; 
}

.header{
	position: fixed;
	top: 0;
	left: 0;
	width: calc(50% - 300px);
	justify-content: space-between;
	box-sizing: border-box;
	z-index: 10;
}
.header .logo{
	width: 80%;
	max-width: 250px;
	background-color: #fff;
	padding: 20px 40px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	margin: 0 auto;
}

.mainmenu_box{
	position: fixed;
	top: 0;
	right: 0;
	width: calc(50% - 300px);
	height: 100%;
	padding: 5% 20px;
	overflow: auto;
}
.mainmenu_box .mene_box{
	max-width: 280px;
	margin: 0 auto;
}
.mainmenu_box .mene_box .titlebox{
	background-color: #BA1A23;
	gap: 15px;
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 8px;
}
.mainmenu_box .mene_box .titlebox img{
	width: 20px;
}
.mainmenu_box .mene_box .nav_box{
	border-radius: 8px;
	background-color: #fff;
	padding: 30px;
}
.mainmenu_box .mene_box .nav_box .ul{
	margin-bottom: 20px;
}
.mainmenu_box .mene_box .nav_box .ul .li{
	border-bottom: 1px solid #E8E8E8;
	padding: 15px 0;
}
.mainmenu_box .mene_box .nav_box .ul .li a{
	justify-content: flex-start;
	gap: 15px;
}
.mainmenu_box .mene_box .nav_box .ul .li a .icon{
	width: 30px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border: 1px solid #E8E8E8;
}
.mainmenu_box .mene_box .nav_box .ul .li a .icon img{
	width: 40%;
	transition: ease 0.3s;
}
.mainmenu_box .mene_box .nav_box .ul .li a:hover .icon img{
	transform: translateX(2px);
}
.mainmenu_box .mene_box .nav_box .ul .li p{
	font-size: 18px;
	font-weight: 700;
}
.mainmenu_box .mene_box .nav_box .contact_bt a{
	border: 1px solid #222222;
	border-radius: 200px;
	justify-content: space-between;
	padding: 15px 20px;
}
.mainmenu_box .mene_box .nav_box .contact_bt a p,.mainmenu_box .mene_box .nav_box .contact_bt a i{
	font-size: 14px;
	line-height: 1;
}
.mainmenu_box .mene_box .nav_box .contact_bt a p{
	font-weight: 500;
}
.mainmenu_box .mene_box .nav_box .contact_bt a i{
	transition: ease 0.3s;
	color: #BA1A23;
}
.mainmenu_box .mene_box .nav_box .contact_bt a:hover i{
	transform: translateX(3px);
}
.menu-bt{display: none;}


.footer{
    max-width: 600px;
	margin: 0 auto;
	background-color: #2D2D2D;
	padding: 80px 50px 0;
}
.footer p{color: #fff;}
.footer .logo{
	width: 50%;
	margin: 0 auto 50px;
}
.footer .tellink img{
	width: 32px;
}
.footer .tellink p{
	font-weight: 500;
	font-size: 30px;
}

.footer .footer_menu{
	align-items: flex-start;
	gap: 50px;
	padding: 50px 30px;
	margin: 50px 0 0px;
	border-top: 1px solid rgba(255,255,255,0.20);
	border-bottom: 1px solid rgba(255,255,255,0.20);
}
.footer .footer_menu .ul{
	width: calc(100% / 2 - 50px / 2);
}
.footer .footer_menu .ul .li:not(:last-of-type){
	margin-bottom: 20px;
}
.footer .footer_menu .ul .li a > .flex{
	gap: 10px;
}
.footer .footer_menu .ul .li .circle{
	border-radius: 50%;
	border: 1px solid #fff;
	width: 20px;
	height: 20px;
}
.footer .footer_menu .ul .li .circle img{
	width: 50%;
	transition: ease 0.3s;
}
.footer .footer_menu .ul .li a:hover .circle img{
	transform: translateX(1px);
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
@media screen and (min-width: 1281px){
	.menu-wrap{display: none!important;}
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.pd_wrap{
		padding: 100px 60px 0;
	}
	.pd_wrap_all{
		padding: 100px 60px 100px;
	}
	.pd_wrap_side{
		padding-left: 60px;
		padding-right: 60px;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
	.mainmenu_box{
		display: none;
	}
	.menu-bt{
		display: block;
		position: fixed;
		z-index: 9999;
		top: 20px;
		right: 20px;
		width: 70px;
		aspect-ratio: 1 / 1;
		border: 3px solid #fff;
		border-radius: 50%;
		background-color: #BA1A23;
		cursor: pointer;
	}
	.menu-bt .line{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 30px;
		height: 20px;
	}
	.menu-bt .line > div{
		content: "";
		position: absolute;
		width: 100%;
		height: 3px;
		border-radius: 6px;
		background-color: #fff;
		left: 0;
		transition: ease 0.3s;
	}
	.menu-bt .line > div:nth-of-type(1){
		top: 0;
	}
	.menu-bt .line > div:nth-of-type(2){
		top: 50%;
		transform: translateY(-50%);
	}
	.menu-bt .line > div:nth-of-type(3){
		bottom: 0;
	}
	.menu-bt.active .line > div:nth-of-type(1){
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
	.menu-bt.active .line > div:nth-of-type(2){
		top: 50%;
		transform: translateY(-50%) translateX(50%);
		opacity: 0;
	}
	.menu-bt.active .line > div:nth-of-type(3){
		bottom: 50%;
		transform: translateY(50%) rotate(-45deg);
	}
	.menu-wrap{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color:rgba(240,217,31,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 .ul{
		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;
		padding: 50px;
	}
	.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 > div .ul .li a:hover{
		transform: translateY(-3px);
	}
	.menu-wrap > div .ul .li a p{
		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;
		color: #222222;
		font-size: 16px;
		font-weight: 900;
	}
	.menu-wrap > div .ul .li a p.en{
		font-size: 30px;
		color: #BA1A23;
		font-family: "Montserrat", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	}
/* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
/* ---------- common ---------- */
/* ---------- header ---------- */
	.header .logo{
		padding: 20px;
	}
/* ---------- footer ---------- */
}
/* ---------- 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 ---------- */
	.header{
		width: 250px;
	}
/* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 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;
	}
/* ---------- pagetitle ---------- */
	.pagetitle .yellow-bg {
		height: 220px; 
	}
	.pagetitle2 .yellow-bg {
		height: 150px; 
	}
	.pagetitle .imgbox img {
		border-radius: 10px;
	}
/* ---------- font-size ---------- */
	.en_title{
		font-size: 30px;
	}
	.en_title2{
		font-size: 40px;
	}
	.default_title{ 
		font-size: 22px;
	}
	.default_title2{
		font-size: 20px;
		letter-spacing: 0.03em;

	}
	.default_title3{
		font-size: 16px;
	}

	.default_txt{
		font-size: 14px;
		line-height: 2;
		letter-spacing: 0.03em;
	}
	.default_txt2{
		font-size: 14px;
		line-height: 2;
		letter-spacing: 0.03em;
	}

	.en_txt{
		font-family: "Josefin Sans",  sans-serif;
		font-size: 16px;
	}
	.txt-color1{color: #BA1A23}
	.txt-color2{color: #222}
	.txt-color3{color: #021745}

	.font-mo{
		font-family: "Montserrat",  sans-serif;
	}
/* ---------- main ---------- */
	.more .circle {
		width: 25px;
		height: 25px;
	}
	.more .arrow{
		width: 10px;
	}
	.more a{
		padding: 8px 20px;
	}
	.more0 {
		display: flex;
	 }
	.more .shop-icon{
		width: 6%;
	}
	.title-line{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.more-shop a {
	border-radius: 10px;
	}
/* ---------- header ---------- */
	.header{
		width: 150px;
	}
	.header .logo{
		padding: 10px;
		border-bottom-left-radius: 15px;
		border-bottom-right-radius: 15px;
	}
	.menu-bt{
		width: 50px;
		top: 10px;
		right: 10px;
	}
	.menu-bt .line{
		width: 20px;
		height: 16px;
	}
	
	.menu-wrap > div .ul{
		gap: 20px 0;
		padding: 80px 20px;
	}
	.menu-wrap > div .ul .li{
		width: 50%;
	}
	.menu-wrap > div .ul .li a p.en{
		font-size: 14px;
	}
	.menu-wrap > div .ul .li a p.jp{
		font-size: 12px;
	}
/* ---------- footer ---------- */
	.footer{
		padding: 50px 20px 0;
	}
	.footer .logo{
		width: 55%;
		margin-bottom: 30px;
	}
	.footer .tellink img{
		width: 28px;
	}
	.footer .tellink p{
		font-size: 26px;
	}
	.footer .footer_menu{
		padding: 30px 10px;
		margin-top: 30px;
		gap: 20px;
	}
	.footer .footer_menu .ul{
		width: calc(100% / 2 - 20px / 2);
	}
	.footer .footer_menu .ul .li .circle{
		width: 16px;
		height: 16px;
	}
	.footer .footer_menu .ul .li a > .flex{
		gap: 5px;
	}
	.footer .footer_menu .ul .li a p{
		font-size: 14px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}
