@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap');
/* CSS Document */
html{
}
body{
	font-family: "Zen Old Mincho", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  serif;
	background-color: #E5E5E5;
	color: #222222;
}
:root { --header-h: 100px; } 
.header_j{
    height: var(--header-h);
}
body{
    padding-top: var(--header-h);
}

/* ---------- common ---------- */
.line1{
	position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.line1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #AF2522;
}
.line1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: #D8D8D8;
}
.line2 {
	padding-bottom: 25px;
	border-bottom: #D8D8D8 1px solid;
}

.title-style1{
	flex-direction: column;
	margin-bottom: 40px;
}
.title-style1 p span{
	color: #A72620;
}
.title-style2 h2 span{
	color: #A72620;
	font-size: 38px;
	font-weight: 600;
}
.title-style1 p{
	margin-bottom: 8px;
}
.navy-label{
	width: 100%;
	background-color: #273243;
	padding: 5px 30px;
}
.gray-label{
	width: 100%;
	background-color: #DDDDDD;
	padding: 3px 30px;
	margin-bottom: 10px;
	font-weight: 600;
}

.shoplist_a .title_wrap .titlebox{
    border-bottom: #fff 1px solid;
	padding-bottom: 5px;
}
.onlineshop_d a.bg_img_wrap2::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8); 
    z-index: 1;           
    pointer-events: none;        
}
.onlineshop_d a{
	position: relative;
}
.onlineshop_d a .box .arrow{
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%); 
    --size: 42px;
    width: var(--size);
    height: var(--size);
    border: 1px solid #fff;
    display: grid;
    place-items: center;
    transition: transform .25s ease;
}
.onlineshop_d a .box .arrow img {
    width: 25%;
    height: auto;
    display: block;
}
.onlineshop_d a .box .en_title2{
	width: 100%;
    margin: 0 auto;
    text-align: center;
}
.onlineshop_d a:hover .box .arrow{
    transform: translateY(-50%) translateX(4px);
}

/* ---------- more ---------- */
.more a,.more > div {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    min-width: 260px;
    text-decoration: none;
    border: #5E6574 solid 1px;
	border-radius: 2px;
}
.more a .flex{
	justify-content: flex-start;
}
.more a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0px; 
    transform: translateY(-50%);
	transform-origin: right;
    width: 26px; 
    height: 1px; 
    background: #5E6574;
	transition: transform .28s ease;
}
.more a:hover::after{
    transform: translateY(-50%) scaleX(0);
}
.more_wrap{
	gap: 60px;
}
/* ---------- header ---------- */
.menu-wrap.burgermenu_d .ul .menu_box a p.en {
    font-family:  "EB Garamond",  sans-serif;
	font-weight: 500;
	letter-spacing: 0.12em;
}

/* ---------- pagetitle ---------- */
.pagetitle_a {
    background: #212121;
}
.pagetitle_a .pagetitle-content {
    background: #273243;
}
.pagetitle{
	position: relative;
	width: 100%;
  	height: clamp(180px, 20vw, 500px);
    display: flex;
 	justify-content: center;
  	align-items: center;
	background-color: #273243;
}
.pagetitle .titlebox {
    flex-direction: column;
    z-index: 3;
    width: 100%;
	align-items: flex-start;
}
/* ---------- footer ---------- */
.footer_g .leftbox .logo img {
    display: block;
    height: auto;
    width: clamp(200px, 18vw, 250px);  
}
.footer_g {
    background-color: #212121;
}
.footer-bottombox_g {
    background-color: #212121;
}
.footer-bottombox_g .copyright{
	color: #A3A3A3;
	text-align: center;
}
/* ---------- font ---------- */
.en_title{
	font-family: "EB Garamond",  sans-serif;
	font-size: 40px;
	letter-spacing: 0.15em;
    font-weight: 400;
}
.en_title2{
	font-family: "EB Garamond",  sans-serif;
	font-size: 30px;
	letter-spacing: 0.15em;
    font-weight: 400;
}
.en_title3{
	font-family: "EB Garamond",  sans-serif;
	font-size: 26px;
	letter-spacing: 0.15em;
    font-weight: 400;
}
.en_title4{
	font-family: "EB Garamond",  sans-serif;
	font-size: 16px;
	letter-spacing: 0.15em;
    font-weight: 400;
}
.default_title{ 
	font-size: 30px;
	letter-spacing: 0.05em;
}
.default_title2{
	font-size: 26px;
	letter-spacing: 0.05em;
}
.default_title3{
	font-size: 24px;
	letter-spacing: 0.05em;
}
.default_txt{
	font-size: 20px;
	letter-spacing: 0.05em;
}
.default_txt2{
	font-size: 18px;
	letter-spacing: 0.05em;
}
.default_txt3{
	font-size: 16px;
	letter-spacing: 0.05em;
	font-weight: 400;
}

.font-eb{
	font-family: "EB Garamond",  sans-serif;
}
.lh-2{
	line-height: 2em;
}
.lh-2h{
	line-height: 2.5em;
}
.lh-3{
	line-height: 3em;
}
/* ---------- default ---------- */
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;
}


/* 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: #273243}
.txt-color2{color: #212121}
.txt-color3{color: #F0F0F0}
.txt-color4{color: #EBF5E5}
.bg-white{background-color: #ffffff;}
.bg-black{background-color: black}
.bg-color1{background-color: #273243}
.bg-color2{background-color: #F0F0F0}
.bg-color3{background-color: #212121}
.bg-color4{background-color: #273243}
.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 ---------- */
/* ---------- font ---------- */
	.en_title{
		font-size: 34px;
	}
	.en_title2{
		font-size: 28px;
	}
	.en_title3{
		font-size: 24px;
	}
	.en_title4{
		font-size: 16px;
	}
	.default_title{ 
		font-size: 26px;
	}
	.default_title2{
		font-size: 24px;
	}
	.default_title3{
		font-size: 22px;
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
/* ---------- common ---------- */
	.more a, .more > div {
		padding: 10px 20px;
		min-width: 220px;
	}
	.shoplist_a .more a, .more > div {
		padding: 10px 20px;
		min-width: 220px;
	}
/* ---------- header ---------- */
       .menu-wrap.burgermenu_d .ul .menu_box a {
      padding: 15px　10px;
  }
    .menu-wrap.burgermenu_d > div{
    position: absolute;
    padding-left: 20px;
    padding-right: 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 ---------- */

    .onlineshop_d a .box .arrow {
        --size: 30px;
    }
	.onlineshop_d a {
		min-height: clamp(220px, 15vw, 560px);
	}
	.title-style2 h2 span {
		font-size: 30px;
	}
	.more_wrap{
		flex-direction: column;
		gap: 20px;
	}
/* ---------- header ---------- */
  .menu-wrap.burgermenu_d > div{
    position: absolute;
    padding-left: 20px;
    padding-right: 20px;
}
     .menu-wrap.burgermenu_d .ul .menu_box a {
      padding: 15px　10px;
  }
/* ---------- footer ---------- */
/* ---------- font ---------- */
	.en_title{
		font-size: 26px;
	}
	.en_title2{
		font-size: 22px;
	}
	.en_title3{
		font-size: 18px;
	}
	.en_title4{
		font-size: 14px;
	}
	.default_title{ 
		font-size: 22px;
	}
	.default_title2{
		font-size: 20px;
	}
	.default_title3{
		font-size: 18px;
	}
	.default_txt{
		font-size: 18px;
	}
	.default_txt2{
		font-size: 16px;
	}
	.default_txt3{
		font-size: 14px;
	}
}
/* ---------- スマートフォン ---------- */
/* ---------- 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 ---------- */


	.title-style1{
		margin-bottom: 30px;
	}
	.title-style1 p{
		margin-bottom: 0px;
	}
	.more a, .more > div {
		padding: 10px 20px;
		min-width: 200px;
	}
	.shoplist_a .more a, .more > div {
		padding: 10px 20px;
		min-width: 200px;
	}
	.onlineshop_d a .box .en_title2 {
		margin-right: auto;
		text-align: left;
	}

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