@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
}
header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
    display: block;
}
li {
    list-style: none;
}
ol li {
    list-style: decimal;
}
img {
    max-width: 100%;
    height: auto;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    border: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
caption,
th {
    text-align: left;
}
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;

    border: 0;
    border-top: 1px solid #ccc;
}
input,
select {
    vertical-align: middle;
}
input,
textarea {
    margin: 0;
    padding: 0;
}
/*----------------------------------------
	Common
----------------------------------------*/
html {
    width: 100%;
    font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: #282B2B;
    position:relative;
    z-index: 0;
    line-height: 2;
    letter-spacing: .04em;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    height: 100%;
}
a {
    color: #282B2B;
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
a:hover {
    color: #282B2B;
    text-decoration: underline;
}
a[href^="tel:"] {
	cursor: default;
}
.show-mobile-inline,
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
.hide-mobile-inline {
	display: inline-block;
}
.br-mobile {
    display: none !important;
}
@media (min-width: 768px) and (max-width: 1439px){

}
@media only screen and (max-width: 767px) {
	.show-mobile {
		display: block;
	}
	.show-mobile-inline {
		display: inline-block;
	}
	.hide-mobile {
		display: none;
	}
	.hide-mobile-inline {
		display: none;
	}
    .br-mobile {
        display: block !important;
    }
    main {
        /* overflow-x: hidden; */
    }
}
@media only screen and (max-width: 999px) {
    body {
        font-size: 1.5rem;
    }
}
@media only screen and (max-width: 767px) {
    body {
        /* font-size: 1.4rem; */
    }
}
/*----------------------------------------
	Animation
----------------------------------------*/
.fadeIn {
    transition: opacity 1s .1s;
    transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
    transform: translateY(10px);
    opacity: 0;
}
.fadeIn.inview {
    transform: translateY(0);
    opacity: 1;
}
.blurIn {
    animation-name: blurInAnime;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}
@keyframes blurInAnime {
    0% {
        filter:blur(15px);
        transform:scale(1.02);
        opacity:0
    }
    100% {
        filter:blur(0);
        transform:scale(1);
        opacity:1
    }
}
.maskIn {
    color: transparent;
    /* display: inline-block; */
    max-width: fit-content;
    overflow: hidden;
    position: relative;
    transition: color 0ms 450ms;
}
.maskIn::after {
    background: #000;
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-101%, 0)
}
.maskIn.inview {
    color: inherit;
}
.maskIn.inview::after {
    animation: maskIn 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}
@keyframes maskIn {
    0% {
        transform: translate(-101%, 0)
    }
    40%, 60% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(101%, 0)
    }
}
/*----------------------------------------
	Misc
----------------------------------------*/
.inner {
    width: 91.667vw;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.full-width {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.t-blue {
    color: #0082C6;
}
.f-bold {
    font-weight: bold;
}
@media only screen and (max-width: 767px) {
    .inner {
        width: 86.666vw;
    }
}
/*----------------------------------------
	Components
----------------------------------------*/
.c-heading-vertical {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 6rem;
}
.c-heading-vertical h2 {
    display: flex;
    flex-direction: row-reverse;
    line-height: 1;
}
.c-heading-vertical h2 .jp {
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    font-weight: 500;
    margin-top: -0.7rem;
    margin-left: 1rem;
    position: relative;
}
.c-heading-vertical h2 .jp::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    background: url(../img/common/logo.svg) no-repeat;
    background-size: contain;
}
.c-heading-vertical h2 .en {
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.3rem;
}
@media only screen and (max-width: 767px) {
    .c-heading-vertical {
        flex-direction: column;
        align-items: center;
        padding-bottom: 2rem;
        margin-bottom: 3rem;
    }
    .c-heading-vertical h2 {
        margin-bottom: 6rem;
    }
    .c-heading-vertical h2 .jp {
        font-size: 2.4rem;
    }
    .c-heading-vertical h2 .en {
        font-size: 1rem;
        position: relative;
    }
    .c-heading-vertical h2 .jp::before {
        width: 2.4rem;
        height: 2.4rem;
        left: -1rem;
        bottom: -1.2rem;
    }
}
/*----------------------------------------
	Common Parts
----------------------------------------*/

/*----------------------------------------
	Custom Cursor
----------------------------------------*/
#cursor {
    pointer-events: none;
    position: fixed;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 1);
    border-radius: 50%;
    transition: transform 0.6s, top, 0.5s, left 0.5s, width .5s, height .5s, background-color .5s;
    transition-timing-function: cubic-bezier(0.000, 1.005, 0.975, 1.000);
    z-index: 999;
}
#cursor.is_hover {
    top: -32px;
    left: -32px;
    width: 64px;
    height: 64px;
    transition: .5s;
    background: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 999px) {
    #cursor {
        display: none;
    }
}
/*----------------------------------------
	layout
----------------------------------------*/
.l-header {
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    height: 5.4rem;
    position: fixed;
    top: 0;
    transition: all .3s ease;
    background-color: #000;
}
.when_scroll:not(.sp-menu-open) .l-header {
    transform: translateY(-120%);
}
.l-main {
    padding-top: 5.3rem;
}
.l-footer {
}
@media only screen and (max-width: 999px) {
    .l-header {
    }
    .l-main {
    }
    .l-footer {
    }
}
/*----------------------------------------
	Header
----------------------------------------*/
.p-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-header-logo,
.p-header-logo img {
    width: 3rem;
    display: flex;
    align-items: center;
}
.p-header-navi {
    width: calc(100% - 3rem);
}
.p-header-navi ul {
    display: flex;
    line-height: 1;
}
.p-header-navi ul li {
    flex-basis: 25%;
}
.p-header-navi ul li:not(:last-of-type) {
    border-right: 1px solid #fff;

}
.p-header-navi ul a {
    display: block;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
}
.p-header-navi ul li:last-of-type a img {
    width: 1.5rem;
    margin-right: .2rem;
}
.p-header-sp-content {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 7rem 6.667vw 0 6.667vw;
    transition: all .4s;
    pointer-events: none;
    opacity: 0;
}
@media only screen and (max-width: 767px) {
    .p-header-container::before {
        content: '';
        display: block;
        width: 100vw;
        height: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background-color: #fff;
    }
    .p-header-logo {
        position: absolute;
        left: 1.6rem;
        top: 1.2rem;
    }
    .p-header-navi {
        display: none;
    }
    .p-header-sp-btn {
        position: absolute;
        z-index: 100;
        top: 1.4rem;
        right: 2rem;
        width: 2.8rem;
        height: 2.8rem;
        display: block;
    }
    .p-header-sp-btn span {
        position: absolute;
        display: block;
        width: 2.8rem;
        height: 1px;
        margin: 0 auto;
        transition: .2s ease-in-out;
        background-color: #fff;
    }
    .p-header-sp-btn span.l1 {
        top: 0.4rem;
    }
    .p-header-sp-btn span.l2 {
        top: 1.2rem;
    }
    .p-header-sp-btn span.l3 {
        top: 2rem;
    }
    .p-header-sp-logo {
        width: 8rem;
        margin-bottom: 4rem;
    }
    .p-header-sp-navi {
        width: 86.666vw;
        margin-left: auto;
        margin-right: auto;
    }
    .p-header-sp-navi ul {
        border-top: 1px solid #c8c8c8;
    }
    .p-header-sp-navi ul li {
        border-bottom: 1px solid #c8c8c8;
        line-height: 1;
        padding: 1rem 1rem;
    }
    .p-header-sp-navi ul li a {
        display: flex;
        flex-direction: column;
        padding: 1rem 0;
    }
    .p-header-sp-navi ul li a:hover {
        text-decoration: none;
    }
    .p-header-sp-navi ul li .en {
        font-family: 'Gilda Display', serif;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .p-header-sp-navi ul li .jp {
        font-family: 'Noto Serif JP', serif;
        font-size: 1.2rem;
    }
    .p-header-sp-address {
        font-family: 'Noto Serif JP', serif;
        font-size: 1.2rem;
        text-align: right;
        display: flex;
        flex-direction: column;
        margin-top: 3rem;
    }
   /* メニュー開放時 */
   .sp-menu-open .p-header-sp-btn span {
        background-color: #C8C8C8;
   }
   .sp-menu-open .p-header-sp-btn .l1 {
        top: 14px;
        transform: rotate(135deg);
    }
    .sp-menu-open .p-header-sp-btn .l2 {
        display: none;
    }
    .sp-menu-open .p-header-sp-btn .l3 {
        top: 14px;
        transform: rotate(-135deg);
    }
    .sp-menu-open .p-header-sp-content {
        pointer-events: all;
        opacity: 1;
    }
}

/*----------------------------------------
	Footer
----------------------------------------*/
.p-footer-container {
    padding-bottom: 3rem;
    margin-top: 4rem;
}
.p-footer-logo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 6rem;
}
.p-footer-logo img {
    width: 9rem;
    height: auto;
    margin-bottom: 4rem;
}
.p-footer-logo .name {
    margin-bottom: 1rem;
}
.p-footer-logo .address {
    font-size: 1.3rem;
}
.p-footer-navi {
}
.p-footer-navi ul {
    display: flex;
    justify-content: center;
}
.p-footer-navi ul li {
    padding: .3rem 2.4rem;
}
.p-footer-navi ul li:not(:last-of-type) {
    border-right: 1px solid #C8C8C8;
}
.p-footer-navi ul li a {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
    text-decoration: none;
}
@media only screen and (max-width: 767px) {
    .p-footer-container {
        padding-bottom: 5rem;
        margin-top: 6rem;
        width: auto;
    }
    .p-footer-logo .address {
        font-size: 1.2rem;
    }
    .p-footer-logo {
        margin-bottom: 4rem;
    }
    .p-footer-navi ul li {
        padding: 0.3rem 1.4rem;
    }
    .p-footer-navi ul li a {
        font-size: 1rem;
        letter-spacing: 0;
    }
}
/*----------------------------------------
	Loading
----------------------------------------*/
.p-progress {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    background: #fff;
    font-weight: 500;
}
.p-progress-bar {
    position: relative;
    width: 90%;
    height: 1px;
    max-width: 22rem;
    margin: 0 auto;
}
.p-progress-bar span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 1px;
    background-color: #000;
    transition: .3s linear;
}
.p-progress-bar::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #acacac;
}
.p-progress-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80vw;
}
.p-progress-content .logo {
    width: 14rem;
    height: 14rem;
    margin: 0 auto 4rem auto;
}

/*----------------------------------------
	Top Page
----------------------------------------*/
.top-page .l-header {
    display: none;
}
.l-main.p-top {
    padding-top: 0;
}
/* Top visual */
.p-top-visual {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    overflow: hidden;
}
.p-top-visual iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.loaded .p-top-visual {
    opacity: 1;
}
.p-top-visual h2 {
    width: 2.4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s 2s ease-in-out;
}
.loaded .p-top-visual h2 {
    opacity: 1;
}
#player {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100%;
}
.p-top-visual::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.p-top-section {
    position: relative;
}
.p-top-navi__logo {
    width: 11rem;
    height: auto;
    position: absolute;
    left: 50%;
    top: -4rem;
    transform: translateX(-50%);
}
.p-top-navi nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14rem 0 10rem 0;
    margin-bottom: 10rem;
    border-bottom: 1px solid #C8C8C8;
}
.p-top-navi nav a {
    width: 18%;
    max-width: 13rem;
    transition: .3s;
    text-align: center;
}
.p-top-navi nav a span {
    display: block;
    font-size: 1.2rem;
    letter-spacing: .1em;
    font-family: 'Gilda Display', serif;
    line-height: 1;
}
.p-top-navi nav a:hover {
    opacity: .75;
}
/* Top Shopping */
.p-top-shopping .c-heading-vertical__content {
    font-family: 'Noto Serif JP', serif;
    padding-left: 10rem;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 2rem;
    line-height: 1.6;
}
.p-top-shopping .c-heading-vertical__content::before {
    content: '';
    display: block;
    width: 6.4rem;
    height: 6.4rem;
    position: absolute;
    left: 0;
    background: url(../img/common/icon_cart.svg) no-repeat center;
    background-size: 50% auto;
    padding: 1rem;
    border-radius: 10rem;
    border: 1px solid #000;
}
.p-top-shopping__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding-bottom: 6rem;
}
.p-top-shopping__list::before {
    content: '';
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: 0;
    padding-top: 28rem;
    background: url(../img/top/bg_banner_section.jpg) repeat center bottom;
    background-size: 40px auto;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.p-top-shopping__list .item {
    width: 32%;
    background-color: #fff;
}
.p-top-shopping__list .item a {
    display: block;
    text-decoration: none;
}
.p-top-shopping__list .item figure {
    margin: 0;
    overflow: hidden;
}
.p-top-shopping__list .item figure img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-top-shopping__list .item:hover figure img {
    transform: scale(1.2);
}
.p-top-shopping__content {
    padding: 5%;
}
.p-top-shopping__content .title {
    font-family: 'Noto Serif JP', serif;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0;
    padding-bottom: 7%;
    border-bottom: 1px solid #C8C8C8;
}
.p-top-shopping__content .meta {
    display: flex;
    justify-content: space-between;
    padding: 5% 0 0 0;
}
.p-top-shopping__content .meta .price {
    font-size: 1.4rem;
}
.p-top-shopping__content .meta .link {
    display: block;
    height: 2.8rem;
    background: url(../img/top/bg_red_btn.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
    padding: 0.6rem 2.5rem 0 1rem;
    border-radius: 4rem;
    position: relative;
}
.p-top-shopping__content .meta .link::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 0.7rem solid #FFF;
    border-top: 0.7rem solid transparent;
    border-bottom: 0.7rem solid transparent;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
}
.p-top-shopping__list .item:hover .p-top-shopping__content .meta .link::before {
    transform: translate(3px, -50%);
}
.p-top-shopping__banners {
    position: relative;
    padding-bottom: 6rem;
}
.p-top-shopping__banners::before {
    content: '';
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: 0;
    padding-top: 6rem;
    background: url(../img/top/bg_banner_section.jpg) repeat center bottom;
    background-size: 40px auto;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.p-top-shopping__banners a {
    display: block;
    margin-bottom: 2rem;
    transition: .3s;
}
.p-top-shopping__banners a:hover {
    opacity: .75;
}
/* Top News */
.p-top-news {
    padding-top: 6rem;
    margin-bottom: 10rem;
}
.p-top-news h2 {
    text-align: center;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 0 1.5rem 0;
}
/* News List */
.p-news-list {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}
.p-news-list li {
    display: flex;
    padding: 1.4rem 1rem;
    border-bottom: 1px solid #C8C8C8;
}
.p-news-list li a {
    text-decoration: none;
    line-height: 1.7;
}
.p-news-list li .date {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-right: 2rem;
}
.p-news-list li .t-blue {
    color: #0082C6;
}
/* Topics */
.p-top-topics {}
.p-top-topics .swiper-slide {
    background-size: cover;
    height: 55rem;
    display: flex;
    align-items: center;
    padding: 0 9rem;
}
.p-top-topics .swiper-slide .content {
    display: block;
    background-color: rgba(255, 255, 255, .8);
    width: 100%;
    max-width: 37rem;
    text-decoration: none;
    padding: 6rem 3rem 3rem 3rem;
    position: relative;
}
.p-top-topics .swiper-slide .content .badge {
    background-color: #D42828;
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Barlow Semi Condensed', sans-serif;
    height: 3rem;
    left: 0;
    top: 0;
    max-width: 50%;
    min-width: fit-content;
    padding: 0 0.5rem 0 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
.p-top-topics .swiper-slide .content .badge::before {
    content: '';
    display: block;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #D42828;
    position: absolute;
    right: -30px;
}
.p-top-topics .swiper-slide .content h2 {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.5;
    font-weight: normal;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #c8c8c8;
}
.p-top-topics .swiper-slide .content .lead {
    line-height: 1.6;
    margin-bottom: 1rem;
}
.p-top-topics .swiper-slide .content .more {
    color: #0082C6;
    text-decoration: underline;
}
.p-top-topics .swiper-button-prev:after,
.p-top-topics .swiper-button-next:after {
    font-size: 0;
    width: 30px;
    height: 90px;
}
.p-top-topics .swiper-button-next:after {
    background: url(../img/common/slide_right.svg) no-repeat center;
    background-size: contain;
}
.p-top-topics .swiper-button-prev:after {
    background: url(../img/common/slide_left.svg) no-repeat center;
    background-size: contain;
}
@media only screen and (max-width: 767px) {
    .top-page .l-header {
        display: block;
    }
    .top-page .l-header  .p-header-logo {
        display: none;
    }
    .l-main.p-top {
        padding-top: 5.3rem;
    }
    .p-top-visual {
        padding-bottom: 70vh;
    }
    .p-top-visual h2 {
        width: 2rem;
    }
    .p-top-navi__logo {
        width: 6.5rem;
        top: -2rem;
    }
    .p-top-navi nav {
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        padding: 10rem 0 1rem 0;
        margin-bottom: 6rem;
    }
    .p-top-navi nav a {
        width: 31%;
        margin: 0 1% 5rem 1%;
        text-align: center;
    }
    .p-top-navi nav a span {
        font-size: 1rem;
        letter-spacing: 0;
    }
    .p-top-shopping {
        position: relative;
        width: 100vw;
        padding-left: 6.667vw;
        padding-right: 6.667vw;
        background: url(../img/top/bg_banner_section.jpg) repeat center bottom;
        background-size: 40px auto;
    }
    .p-top-shopping::before {
        content: '';
        display: block;
        width: 100vw;
        height: 40rem;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
    }
    .p-top-shopping .c-heading-vertical__content::before {
        width: 4rem;
        height: 4rem;
        background-size: 44% auto;
    }
    .p-top-shopping .c-heading-vertical__content {
        padding-left: 8rem;
        font-size: 1.3rem;
    }
    .p-top-shopping .c-heading-vertical__content br {
        display: none;
    }
    .p-top-shopping__list {
        flex-direction: column;
    }
    .p-top-shopping__list .item {
        width: 82%;
        margin-left: auto;
        margin-right: auto;
    }
    .p-top-shopping__list .item:not(:last-of-type) {
        margin-bottom: 6rem;
    }
    .p-top-shopping__content .meta .price {
        font-size: 1.8rem;
    }
    .p-top-shopping__banners {
        padding-bottom: 2rem;
    }
    .p-top-news {
        margin-top: 4rem;
    }
    .p-news-list li {
        display: flex;
        flex-direction: column;
        padding: 1.4rem 0;
    }
    .p-top-topics .swiper-slide .content {
        padding: 5rem 1rem 1rem 2rem;
    }
    .p-top-topics .swiper-slide .content .badge {
        font-size: 1.2rem;
        height: 2.6rem;
    }
    .p-top-topics .swiper-slide .content .badge::before {
        border-bottom: 2.6rem solid transparent;
        border-left: 2.6rem solid #D42828;
        right: -2.6rem;
    }
    .p-top-topics .swiper-slide {
        height: initial;
        padding: 4rem 4rem;
    }
    .p-top-topics .swiper-slide .content h2 {
        font-size: 1.8rem;
    }
    .p-top-topics .swiper-button-prev:after,
    .p-top-topics .swiper-button-next:after {
        width: 15px;
        height: 45px;
    }
    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 4px !important;
    }
    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 4px !important;
    }

}
/*----------------------------------------
	Shop Page
----------------------------------------*/
/* Shop Info */
.p-restaurant-info__logo {
    width: 27.4rem;
    margin: 8rem auto;
}
.p-restaurant-info__data {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;  
}
.p-restaurant-info__data .contact {
    flex: 1;
    border-right: 1px solid #c8c8c8;
    padding: 2rem 2rem 1.8rem 2rem;
    font-family: 'Noto Serif JP', serif;
}
.p-restaurant-info__data .contact .tel {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}
.p-restaurant-info__data .contact .tel span {
    font-family: initial;
    margin-top: .4rem;
    margin-right: 1rem;
    font-size: 1.4rem;
    font-weight: normal;
}
.p-restaurant-info__data .contact .time {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: bold;
}
.p-restaurant-info__data .map {
    width: 10rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-restaurant-info__data .map a {
    display: block;
    width: 50%;
    transition: .3s;
}
.p-restaurant-info__data .map a:hover {
    opacity: .75;
}
/* Shop News */
.p-restaurant-news .p-news-list li {
    padding: .4rem 1rem;
    border-bottom: none;
}
/* Shop Feature Menu */
.p-restaurant-feature-menu {
    margin-top: 6rem;
    margin-bottom: 14rem;
}
.p-restaurant-feature-menu .swiper {
    height: 44vw;
}
.p-restaurant-feature-menu .swiper-slide {
    background-position: center;
    background-size: cover;
}
.p-restaurant-feature-menu .name {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
    margin-left: 4%;
    padding-top: 4rem;
    position: relative;
}
.p-restaurant-feature-menu .name::before {
    content: '';
    display: block;
    width: 1px;
    height: 3.6rem;
    position: absolute;
    top: 0;
    right: 1.4rem;
    border-right: 1px solid #fff;
}
/* Shop Menu */
.p-restaurant-menu .c-heading-vertical {
    margin-bottom: 8rem;
}
.p-restaurant-menu .c-heading-vertical__content {
    font-family: 'Noto Serif JP', serif;
    position: relative;
    display: flex;
    align-items: end;
    font-size: 2rem;
    line-height: 1.75;
    margin-right: 20%;
}
.p-restaurant-menu__pdf {
    padding-bottom: 5rem;
    position: relative;
}
.p-restaurant-menu__pdf::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5rem;
    z-index: -1;
    background: url(../img/shop/bg_master.jpg) repeat center top 4rem;
}
.p-restaurant-menu__pdf .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #c8c8c8;
    padding-bottom: 2rem;
}
.p-restaurant-menu__pdf a {
    display: block;
    width: 46%;
    max-width: 35rem;
    margin: 0 2% 3rem 2%;
    transition: .3s;
}
.p-restaurant-menu__pdf a:hover {
    opacity: .75;
}
.p-restaurant-menu__img {
    padding-bottom: 6rem;
    background: url(../img/shop/bg_master.jpg) repeat;
}
.p-restaurant-menu__img .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.p-restaurant-menu__img figure {
    text-align: center;
    text-decoration: none;
    width: 26%;
    margin: 0 3% 4rem 3%;
    transition: .3s;
}
.p-restaurant-menu__img figure:hover {
    opacity: .75;
}
.p-restaurant-menu__img figure img {
    width: 100%;
}
.p-restaurant-menu__img figure figcaption {
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
}
/* Shop Slide */
.p-restaurant-slide {
    margin-bottom: 14rem;
}
.p-restaurant-slide .swiper {
    height: 46vw;
}
.p-restaurant-slide .swiper-slide {
    background-size: cover;
    background-position: center;
}
.p-restaurant .swiper-horizontal>.swiper-pagination-bullets,
.p-restaurant .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-restaurant .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -3.4rem;
}
.p-restaurant .swiper-pagination-bullet {
    background: #000 !important;
}
/* Shop Master */
.p-restaurant-master {
    margin-bottom: 10rem;
    background: url(../img/shop/bg_master.jpg) no-repeat left bottom;
}
.p-restaurant-master .inner {
    display: flex;
    padding-bottom: 6rem;
}
.p-restaurant-master .inner figure {
    width: 45%;
    margin: 0 5% 0 0;
    overflow: hidden;
}
.p-restaurant-master__content {
    width: 55%;
    font-family: 'Noto Serif JP', serif;
    display: flex;
    flex-direction: column;
}
.p-restaurant-master__content .name {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
    margin: 0 10% 6rem auto;
}
.p-restaurant-master__content .name .position {
    font-size: 1.6rem;
    letter-spacing: .2em;
    margin-left: 0.5rem;
}
.p-restaurant-master__content .name .jp {
    font-size: 3rem;
    letter-spacing: .1em;
    line-height: 1.4;
    font-weight: 500;
    margin-left: 0.2rem;
}
.p-restaurant-master__content .name .en {
    font-size: 1.1rem;
}
/* Shop Banner */
.p-restaurant-banner {
    border-bottom: 1px solid #C8C8C8;
    margin-bottom: 6rem;
}
.p-restaurant-banner nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.p-restaurant-banner nav a {
    width: 46%;
    margin-bottom: 3rem;
    transition: .3s;
}
.p-restaurant-banner nav a:hover {
    opacity: .75;
}
/* Sho Link */
.p-restaurant-link {
    margin-bottom: 10rem;
    border-bottom: 1px solid #C8C8C8;
}
.p-restaurant-link h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: normal;
}
.p-restaurant-link nav {
    display: flex;
    justify-content:space-around;
    align-items: center;
    padding: 6rem 0 6rem 0;
}
.p-restaurant-link nav a {
    width: 18%;
    max-width: 13rem;
    transition: .3s;
    text-align: center;
}
.p-restaurant-link nav a span {
    display: block;
    font-size: 1.2rem;
    letter-spacing: .1em;
    font-family: 'Gilda Display', serif;
    line-height: 1;
}
.p-restaurant-link nav a:hover {
    opacity: .75;
}
@media only screen and (max-width: 767px) {
    .p-restaurant-info__logo {
        width: 50vw;
        margin: 12rem auto;
    }
    .p-restaurant-info__data {
        width: 86.666vw;
        flex-direction: column;
        margin-bottom: 6rem;
    }
    .p-restaurant-info__data .contact {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #c8c8c8;
        padding: 1.4rem 1rem 1.4rem 1rem;
    }
    .p-restaurant-info__data .contact .tel {
        font-size: 2.8rem;
    }
    .p-restaurant-info__data .contact .tel span {
        font-size: 1.2rem;
    }
    .p-restaurant-info__data .contact .time {
        font-size: 1.2rem;
    }
    .p-restaurant-info__data .map {
        width: 7rem;
        padding: 2rem 0 2.4rem 0;
    }
    .p-restaurant-news .p-news-list li {
        padding: 1.4rem 0;
        border-bottom: 1px solid #c8c8c8;
    }
    .p-restaurant-feature-menu .swiper {
        height: 25rem;
    }
    .p-restaurant-feature-menu .name {
        font-size: 1.4rem;
        padding-top: 3rem;
    }
    .p-restaurant-feature-menu .name::before {
        height: 2.4rem;
        right: 1rem;
    }
    .p-restaurant-feature-menu .name br {
        /* display: none; */
    }
    .p-restaurant-menu .c-heading-vertical {
        margin-bottom: 4rem;
    }
    .p-restaurant-menu .c-heading-vertical__content {
        font-size: 1.4rem;
        margin-right: 0;
    }
    .p-restaurant-menu .c-heading-vertical__content br {
        display: none;
    }
    .p-restaurant-menu__pdf .inner {
        flex-direction: column;
    }
    .p-restaurant-menu__pdf a {
        width: 70vw;
        margin: 0;
    }
    .p-restaurant-menu__pdf a:not(:last-child){
        margin-bottom: 2rem;
    }
    .p-restaurant-menu__img .inner {
        flex-direction: column;
        width: 70vw;
        margin-left: auto;
        margin-right: auto;
    }
    .p-restaurant-menu__img figure {
        width: 100%;
        margin: 0 0 6rem 0;
    }
    .p-restaurant-menu__img figure figcaption {
        font-size: 1.6rem;
    }
    .p-restaurant-menu__img {
        padding-bottom: 2rem;
    }
    .p-restaurant-slide .swiper {
        height: 26rem;
    }
    .p-restaurant-master {
        background: url(../img/shop/bg_master.jpg) no-repeat left top;
        background-size: 10rem 70vh;
        margin-bottom: 8rem
    }
    .p-restaurant-master .inner {
        display: block;
        position: relative;
        padding-bottom: 0;
    }
    .p-restaurant-master__content {
        width: 100%;
    }
    .p-restaurant-master .inner figure {
        width: 68%;
        max-width: 23rem;
        height: 25rem;
        position: absolute;
        left: -7vw;
        top: -1rem;
    }
    .p-restaurant-master .inner figure img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: initial;
        height: 100%;
        width: auto;
    }
    .p-restaurant-master__content .name {
        position: absolute;
        right: 1rem;
        top: 0;
        margin: 0;
    }
    .p-restaurant-master__content .name .position {
        font-size: 1.4rem;
    }
    .p-restaurant-master__content .name .jp {
        font-size: 2.6rem;
    }
    .p-restaurant-master__content .name .en {
        font-size: 1rem;
    }
    .p-restaurant-master__content .message {
        margin-top: 28rem;
    }
    .p-restaurant-master__content .message br {
        display: none;
    }
    .p-restaurant-banner {
        padding-bottom: 3rem;
    }
    .p-restaurant-banner nav {
        flex-direction: column;
    }
    .p-restaurant-banner nav a {
        width: 100%;
    }
    .p-restaurant-link {
        margin-bottom: 6rem;
    }
    .p-restaurant-link nav {
        flex-wrap: wrap;
        padding: 3rem 0 2rem 0;
    }
    .p-restaurant-link nav a {
        width: 40%;
        margin-bottom: 4rem;
    }
}
/*----------------------------------------
	Privacy Policy Page
----------------------------------------*/
.p-privacy-policy {
    line-height: 1.75;
    border-bottom: 1px solid #c8c8c8;
}
.p-privacy-policy article {
    margin: 10rem auto;
    width: 86.666vw;
    max-width: 100rem;
}
.p-privacy-policy__heading {
    padding: 4rem 0;
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 4rem;
}
.p-privacy-policy__heading h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.6rem;
    font-weight: normal;
}
.p-privacy-policy__content {
    max-width: 70rem;
    margin: 0 auto;
}
.p-privacy-policy__content h2 {
    font-weight: bold;
    font-size: 1.6rem;
}
.p-privacy-policy__content section {
    margin-bottom: 3rem;  
}
.p-privacy-policy__signature {
    text-align: right;
}
@media only screen and (max-width: 767px) {
    .p-privacy-policy article {
        margin: 0 auto 8rem auto;
    }
    .p-privacy-policy__heading h1 {
        font-size: 2rem;
    }
    .p-privacy-policy__content h2 {
        font-size: 1.4rem;
    }

}
/*----------------------------------------
	Company Page
----------------------------------------*/
.p-company__sub-visual,
.p-company__visual {
    position: relative;
}
.p-company__sub-visual::before,
.p-company__visual::before {
    content: "";
    display: block;
    padding-top: 66.6%;
}
.p-company__sub-visual figure,
.p-company__visual figure {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}
.p-company__sub-visual figure img,
.p-company__visual figure img {
    width: 100%;
    height: auto;
}
.p-company__visual figure img {
    transform: scale(1.5);
    transition: 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 1s;
}
.loaded .p-company__visual figure img {
    transform: scale(1);
}
.p-company__heading {
    max-width: 80rem;
    margin: 12rem auto 6rem auto;
}
.p-company__content {
}
.p-company__content .message {
    width: 86.666vw;
    max-width: 80rem;
    margin: 0 auto 14rem auto;
    padding-bottom: 12rem;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.7rem;
    border-bottom: 1px solid #c8c8c8;
}
.p-company__content .message p {
    width: 86.666vw;
    max-width: 70rem;
    margin: 0 auto;
    margin-bottom: 2rem;
}
.p-company__content .message p:last-of-type {
    text-align: right;
    font-size: 1.5rem;
    margin-top: 6rem;
    margin-bottom: 0;
}
.p-company__content .profile {
    width: 86.666vw;
    max-width: 50rem;
    margin: 0 auto 12rem auto;
}
.p-company__content .profile dl {
    display: flex;
    flex-wrap: wrap;
}
.p-company__content .profile dl dt {
    width: 26%;
    font-weight: 600;
    margin-bottom: 1.4rem;
}
.p-company__content .profile dl dd {
    width: 74%;
    margin-bottom: 1.4rem;
}
.p-company__content .profile dl dd ul li {
    margin-bottom: .4rem;
}
@media only screen and (max-width: 767px) {
    .p-company__visual::before {
        padding-top: 45rem;
    }
    .p-company__sub-visual figure img,
    .p-company__visual figure img {
        width: auto;
        height: 100%;
        max-width: initial;
    }
    .loaded .p-company__visual figure img {
        transform: scale(1.2);
    }
    .p-company__sub-visual {
        height: auto;
    }
    .p-company__sub-visual::before {
        display: none;
    }
    .p-company__sub-visual figure {
        position: relative;
        top: initial;
        left: initial;
        bottom: initial;
        right: initial;
        width: 100%;
        overflow: hidden;
    }
    .p-company__sub-visual figure img {
        width: 100%;
        height: auto;
    }
    .p-company__heading {
        margin: 4rem auto 3rem auto;
    }
    .p-company__content .message {
        margin: 0 auto 8rem auto;
        padding-bottom: 7rem;
        font-size: 1.4rem;
    }
    .p-company__content .profile dl dt {
        width: 10rem;
    }
    .p-company__content .profile dl dd {
        width: calc(100% - 10rem);
    }
    .p-company__content .profile {
        margin: 0 auto 6rem auto;
    }
}
/*----------------------------------------
	News Detail Page
----------------------------------------*/
.p-news-detail {
    line-height: 1.75;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 14rem;
}
.p-news-detail article {
    margin: 10rem auto;
    width: 86.666vw;
    max-width: 100rem;
}
.p-news-detail__heading {
    padding: 4rem 0;
}
.p-news-detail__heading h1 {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}
.p-news-detail__heading h1 {
    font-size: 2.6rem;
    line-height: 1.6;
    font-weight: normal;
}
.p-news-detail__contents {
    max-width: 75rem;
    margin: 0 auto;
    letter-spacing: 0;
}
.p-news-detail__main-visual {
    margin-bottom: 4rem;
}
.p-news-detail .meta {
    font-size: 1.3rem;
    text-align: center;
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid #c8c8c8;
}
/* 本文 Style */
.p-news-detail__contents > p {
    margin-bottom: 4rem;
}
.p-news-detail__contents .wp-block-image {
    margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
    .p-news-detail article {
        margin: 0 auto 8rem auto;
    }
    .p-news-detail__heading {
        padding: 4rem 0 3rem 0;
    }
    .p-news-detail__heading h1 {
        font-size: 2rem;
    }
    .p-news-detail .meta {
        font-size: 1.1rem;
    }
    .p-news-detail__main-visual {
        width: 100vw;
        max-width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
}
/*----------------------------------------
	News List Page
----------------------------------------*/
.l-main.p-news-list {
    font-family: 'Noto Serif JP', serif;
    max-width: 100rem;
    width: 86.666vw;
}
.p-news-list__heading {
    max-width: 60rem;
    text-align: center;
    margin: 12rem auto 10rem auto;
}
.p-news-list__heading h1 {
    line-height: 1;
}
.p-news-list__heading h1 span {
    font-size: 2rem;
    display: block;
    margin-top: 1.5rem;
}
.p-news-list__navi {
    border-top: 1px solid #C8C8C8;
    border-bottom: 1px solid #C8C8C8;
    margin-bottom: 2rem;
}
.p-news-list__navi ul {
    display: flex;
    width: 100%;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    white-space: nowrap;
}
.p-news-list__navi li {
    border-bottom: none;
    padding: 0;
    line-height: 1;
    min-width: min-content;
    margin-right: 0.6rem;
}
.p-news-list__navi li a {
    display: block;
    padding: 1.6rem 2rem;
    transition: .3s;
}
.p-news-list__navi li:hover a,
.p-news-list__navi li.current a {
    background-color: #000;
    color: #fff;
}
.p-news-list__contents li {
}
.p-news-list__contents .item {
    border-bottom: 1px solid #C8C8C8;
}
.p-news-list__contents .item a {
    text-decoration: none;
    display: block;
    padding: 2rem 0;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}
.p-news-list__contents h2 {
    line-height: 1.6;
    margin-bottom: .8rem;
}
.p-news-list__contents .excerpt {
    line-height: 1.6;
}
.p-news-list__contents .meta {
    margin-top: 1.6rem;
    font-size: 1.3rem;
}
/* Page Navi */
.wp-pagenavi {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8rem 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 50%;
    line-height: 1;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px;
}
.wp-pagenavi a {
    border: none;
}
.wp-pagenavi a:hover {
    border: 1px solid #000;
}
@media only screen and (max-width: 767px) {
    .p-news-list__heading {
        margin: 6rem auto 5rem auto;
    }
    .p-news-list__heading h1 span {
        font-size: 1.4rem;
    }
    .p-news-list__navi li a {
        font-size: 1.2rem;
    }
}