@charset "utf-8";

/* Hero
----------------------------------------------- */
#site_hero {
    background: #000;
}
#site_hero .hero__image {
    position: relative;
    height: 100%;
    height: 100svh;
    display: -webkit-flex;
	display: flex;
    -webkit-justify-content: center;
	justify-content: center;
    -webkit-align-items: center;
	align-items: center;
}
.hero__image img {
	width: 480px;
    max-width: 85vw;
}
#site_hero nav {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
}
#site_hero nav ul {
    display: -webkit-flex;
	display: flex;
}
#site_hero nav ul li {
    width: 50%;
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
}
#site_hero nav a {
    text-decoration: none;
    color: #D3762A;
    display: -webkit-flex;
	display: flex;
    -webkit-justify-content: center;
	justify-content: center;
    -webkit-align-items: center;
	align-items: center;
    height: 50px;
}
#site_hero nav a > .label {
    display: -webkit-flex;
	display: flex;
    -webkit-flex-direction: column;
	flex-direction: column;
    -webkit-justify-content: center;
	justify-content: center;
    -webkit-align-items: center;
	align-items: center;
    font-size: 17px;
    line-height: 1;
}
#site_hero nav a > .label::after {
    font-family: "icofont";
    font-weight: 700;
    content: "\eac8";
}
@media screen and (min-width:768px) {	
	#site_hero nav a > .label {
		font-size: 20px;
	}
}
@media screen and (orientation: portrait) {
}
@media screen and (orientation: landscape) {
}


/* Item
----------------------------------------------- */
.item__list {
    display: -webkit-flex;
	display: flex;
    -webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.item__list .item {
    position: relative;
    width: 25%;
    padding-bottom: 50px;
}
.item__list .item_images {
    position: relative;
    overflow: hidden;
}
.item__list .item.new__item .item_images .mark {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    display: -webkit-inline-flex;
	display: inline-flex;
}
.item__list .item.new__item .item_images .mark::before {
    content: "";
    position: absolute;
	z-index: 10;
    top: 0;
    left: 0;
	display: -webkit-inline-flex;
	display: inline-flex;
	width: 50px;
	height: 50px;
    clip-path: polygon(0 0, 100% 0%, 0% 100%);
    background: #DC143C;
}
.item__list .item.new__item .item_images .mark > .label {
    display: block;
    position: relative;
    z-index: 20;
    color: #FFF;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-style: oblique;
    text-align: center;
    transform: rotate(-45deg) translateX(1ex);
    transform-origin: bottom right;
}
.item__list .swiper-slide a {
    display: block;
    overflow: hidden;
}
.item__list .swiper-slide a::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #CCC;
    box-sizing: border-box;
    opacity: 0;
}
.item__list .swiper-slide a:hover::before {
    opacity: 1;
}
.item__list .swiper-slide a::before,
.item__list .swiper-slide a img {
    transition: all 0.3s;
}
.item__list .item_name {
    font-weight: 700;
    font-size: 13px;
    padding: 5px 0;
}
.item__list .item_price {
    position: relative;
    text-align: right;
    font-weight: 600;
}
.item__list .item.coming-soon .item_price {
    text-decoration: line-through;
}
.item__list .item.coming-soon .item_price + .label,
.item__list .item.sold-out .item_price + .label {
    display: -webkit-flex;
	display: flex;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
    padding: 0 1em;
}
.item__list .item.coming-soon .item_price + .label > span,
.item__list .item.sold-out .item_price + .label > span {
    display: -webkit-inline-flex;
	display: inline-flex;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    padding: 0.5ex 1em;
    color: #FFF;
    background: #DC143C;
}
.item__list .item_outline {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.015em;
    margin-top: 10px;
}
.item__list .item_outline a {
    color: #000;
}
.item__list .item_outline .notes li {
    line-height: 1.75;
}
.item__list .item_outline .notes.indent li {
    text-indent: -1em;
    padding-left: 1em;
}
.item__list .show_detail {
    position: absolute;
    z-index: 20;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
}
.item__list .show_detail a {
    text-decoration: none;
    display: -webkit-flex;
	display: flex;
    -webkit-justify-content: center;
	justify-content: center;
    -webkit-align-items: center;
	align-items: center;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    color: #FFF;
    background: #D3762A;
    height: 40px;
}
.item__list .show_detail a:hover {
    background: #000;
}
.item__list .show_detail a > .label {
    position: relative;
    display: -webkit-flex;
	display: flex;
    -webkit-flex-direction: column;
	flex-direction: column;
    -webkit-justify-content: center;
	justify-content: center;
    -webkit-align-items: center;
	align-items: center;
}
.item__list .show_detail a > .label::after {
    content: attr(data-text);
}
@media screen and (min-width:768px) {
    .item__list .item {
        padding-left: 10px;
        padding-right: 10px;
    }
    .item__list .show_detail {
        width: calc(100% - 20px);
    }
}
@media screen and (min-width:768px) and (max-width:1023px) {
     .item__list .item {
         width: calc(100% / 3);
    }
    .item__list .item:nth-of-type(n+4) {
        padding-top: 40px;
    }
}
@media screen and (min-width:1024px) {
    .item__list .item:nth-of-type(n+5) {
        padding-top: 40px;
    }
}
@media screen and (min-width:1366px) {
    .item__list .item {
        padding-left: 15px;
        padding-right: 15px;
    }
    .item__list .item:nth-of-type(n+5) {
        padding-top: 50px;
    }
    .item__list .show_detail {
        width: calc(100% - 30px);
    }
}
@media screen and (max-width:767px) {
    .item__list {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .item__list .item {
        width: calc(50% - 1.75vw);
    }
    .item__list .item:nth-of-type(n+3) {
        padding-top: 30px;
    }
    .item__list .item:nth-child(odd) {
        margin-right: 0.875vw;
    }
    .item__list .item:nth-child(even) {
        margin-left: 0.875vw;
    }
    .item__list .item_name {
        min-height: 4em;
    }
}

/* magnificPopup
----------------------------------------------- */
.item-popup {
	max-width: 1000px;
	margin: 0 auto;
}
.item__detail {
	position: relative;
	color: #000;
	background: #FFF;
	padding: 15px 10px 20px;
	border: solid 7px #d3762a;
}
.item__detail a {
    color: #000;
}
.item__detail .popup-headline .item_name {
    font-size: 13px;
    font-weight: 700;
}
.item__detail .popup-headline .item_name_jp {
    
}
.item__detail .popup-headline + .popup-content {
    margin-top: 15px;
}
.item_data {
    font-family: "Noto Sans JP", sans-serif;
}
.item_data dl {
    display: -webkit-flex;
	display: flex;
}
.item_data dl + dl {
    margin-top: 5px;
}
.item_data dt,
.item_data dd {
    position: relative;
    letter-spacing: 0;
}
.item_data dt {
    width: 5em;
    padding-right: 2em;
    text-align: right;
}
.item_data dt::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "…";
    padding: 0 0.5em;
}
.item_data + .item_desc {
    margin-top: 15px;
}
.item_desc {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0;
}
.item_desc p:not(:first-child) {
    margin-top: 1em;
}
.item_notes {
    margin-top: 15px;
}
.item_notes .notes li {
    line-height: 1.75;
}
.item_notes .notes.indent li {
    text-indent: -1em;
    padding-left: 1em;
}
@media screen and (min-width:768px) {
    .item__detail {
        padding: 20px 15px;
    }
    .item__detail .popup-headline .item_name {
        font-size: 15px;
    }
}
@media screen and (max-width:767px) {
    .item__detail {
        border-width: 4px;
    }
    .item_desc p > br {
        display: none;
    }
}


/* greeting
----------------------------------------------- */
section#greeting .content,
section#greeting .message {
    text-align: center;
}
section#greeting .content p,
section#greeting .message p {
    line-height: 1.35;
}
section#greeting .content p strong {
    display: -webkit-inline-flex;
	display: inline-flex;
    padding: 0.25em 0;
}
section#greeting .message {
    margin-top: 50px;
}
section#greeting .message span a {
    color: #000;
}
@media screen and (min-width:768px) {
    section#greeting .content,
    section#greeting .message {
        font-size: 17px;
    }
    section#greeting .message p {
        
    }
    section#greeting .message span {
        padding: 0 5px;
    }
}
@media screen and (max-width:767px) {
    /*section#greeting .content p > br:not(.leave) {
        display: none;
    }*/
    section#greeting .message {
        font-size: 14px;
    }
    section#greeting .message span {
        display: block;
        padding: 0.25em 0;
    }
    section#greeting .message span a {
        display: -webkit-inline-flex;
        display: inline-flex;
    }
}


/* information
----------------------------------------------- */
.shop__data {
    text-align: center;
}
.shop__data dl + dl {
    margin-top: 1em;
}
.shop__data dt,
.shop__data dd {
    line-height: 1.5;
}
.shop__data dt {
    font-weight: 500;
    margin-bottom: 0.25em;
}
.shop__data dt::before {
    content: "【";
}
.shop__data dt::after {
    content: "】";
}
.shop__data dd .ruby {
    display: block;
}
.shop__data + .googlemap {
    margin-top: 25px;
}
@media screen and (min-width:768px) {
}
@media screen and (max-width:1023px) {
}

