@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;700&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@500;700&display=swap');

/**
* Foundation
* ========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
    display: none !important;
}

:where(html) {
    -webkit-text-size-adjust: none;
    color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
    :where(html) {
        block-size: 100%;
    }
}

:where(body) {
    block-size: 100%;
    block-size: 100dvb;
    line-height: 1.5;
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
}

:where(textarea) {
    resize: vertical;
    resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
    cursor: pointer;
}

:where(:disabled) {
    cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
    cursor: not-allowed;
}

:where(button) {
    border-style: solid;
}

:where(a) {
    text-underline-offset: 0.2ex;
}

:where(ul, ol) {
    list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block;
}

:where(img, picture, svg) {
    max-inline-size: 100%;
    block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word;
}

:where(h1, h2, h3) {
    line-height: calc(1em + 0.5rem);
}

:where(hr) {
    border: none;
    border-block-start: 1px solid;
    color: inherit;
    block-size: 0;
    overflow: visible;
}

:where(:focus-visible) {
    outline: 2px solid var(--focus-color, Highlight);
    outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
}



/* Base */
body {
    font: normal normal normal 16px/1.5 "Noto Sans JP", sans-serif;
    color: #000000;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

/**
* Layout
* ========================== */
/* Main */

.l-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 30px;
}

.l-wrap{
    padding: 80px 0;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .l-wrap{
        padding: 160px 0;
    }

}

/* Object
* ========================== */

.p-bg{
    background-image: url(../../assets/img/bg.png);
    background-color: #F0E8E0;
    background-size: 100%;
}

.p-mv{
    position: relative;
}

.p-mv_icn{
    position: absolute;
    left: -40px;
    bottom: -50px;
    width: 150px;
}

@media screen and (min-width: 768px) {
    .p-mv_icn {
        left: -140px;
        bottom: -150px;
        width: 400px;
    }
}

.p-mv img{
    border-radius: 0 0 15px 15px ;
}
@media screen and (min-width: 768px) {
    .p-mv img {
        border-radius: 0 0 30px 30px;
    }
}

.p-menu{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px 17px;
    margin: 40px 0 80px;
}
@media screen and (min-width: 768px) {
    .p-menu {
        background-color: #fff;
        border-radius: 15px;
        padding: 24px 50px;
        justify-content: space-between;
        gap: auto;
        margin-top: 80px;
    }
}

.p-menu_item{
    width: calc((100% - 17px)/2);
    background-color: #fff;
    border-radius: 10px;
}
@media screen and (min-width: 768px) {
    .p-menu_item {
        width: auto;
        background-color: transparent;
        border-radius: 0;
        }
}

a.p-menu_link{
    display: block;
    color: #000000;
    text-align: center;
    padding: 10px 12px 48px;
    font-size: 0.750rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    height: 100%;
    position: relative;
}

a.p-menu_link.-top {
    padding: 22px 12px 48px;
}

.p-menu_link::before {
    content: "";
    background-image: url(../../assets/img/menu_icn_sp.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    margin: auto;
}

@media screen and (min-width: 768px) {
    a.p-menu_link,a.p-menu_link.-top{
        padding: 0;
        font-size: 1rem;
        transition: all .3s ease 0s;
    }
    a.p-menu_link:hover {
        color: #E3350C;
        transform: scale(1.05);
        text-decoration: none;
    }
    .p-menu_link::after{
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #E3350C;
        transition: all .3s;
        transform: scale(0, 1);
        transform-origin: left top;
        padding-top: 2px;
    }
    .p-menu_link:hover::after {
        transform: scale(1, 1);
    }

    .p-menu_link::before{
        width: 0;
        height: 0;
    }
    
    .p-menu_link:hover::before{
        content: '';
        background-image: url(../../assets/img/menu_icn_pc.svg);
        background-size: 18px 28px;
        width: 18px;
        height: 28px;
        position: absolute;
        left: -24px;
        top: 0;
        bottom: auto;
        margin: 0;
    }
}

.p-lead{
    position: relative;
    text-align: center;
    padding-bottom: 86px;
}
.p-lead_img01 {
    position: absolute;
    top: -37px;
    left: -7px;
    animation: bound 1s infinite;
}
@keyframes bound {
    0% {
        transform: translateY(0)
    }
    30% {
        transform: translate(-10px , -10px)
    }
    60% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(0)
    }
}

.p-lead_img02 {
    position: absolute;
    bottom:40px;
    left: 0px;
    width: 43px;
}
.p-lead_img03 {
    position: absolute;
    bottom: -20px;
    right: -14px;
    width: 130px;
}

@media screen and (min-width: 768px) {
    .p-lead_img01 {
        top: 0px;
        left: 40px;
    }
    .p-lead_img02 {
        top: 0px;
        right: 110px;
        left: auto;
        width: 76px;
    }
    .p-lead_img03 {
        bottom: -40px;
        right: 0px;
        width: 200px;
    }
}


.p-lead_ttl{
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    color: #E3350C;
    font-size: 1.25rem;
    line-height: 32px;
}

.p-lead_b{
    font-size: 1.625rem;
    display: block;
}
.p-lead_text {
    color: #E3350C;
    font-size: 0.875rem;
    margin-top: 16px;
    line-height: 2.3;
}
@media screen and (min-width: 768px) {
    .p-lead_b{
        margin-top: 20px;
    }
    .p-lead_text{
        margin-top: 30px;
    }
}


.p-lead_body {
    color: #E3350C;
    font-size: 0.875rem;
    line-height: 1.7;
}

@media screen and (min-width: 768px) {
    .p-lead_ttl {
        font-size: 2rem;
    }
    .p-lead_b {
        font-size: 2.5rem;
    }
    .p-lead_text{
        text-align: center;
        font-size: 1.25rem;
        line-height: 2;
    }
    .p-lead_body {
        font-size: 1.25rem;
}
}

.p-head{
    margin: 0 auto;
    text-align: center;
    color: #E3350C;
}

.p-head_ttl, .p-head_ttl02{
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    font-size: clamp(1.5rem, 1.278rem + 1.11vw, 1.625rem);
}

.p-head_ttl::after,.p-head_ttl02::after{
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 12px;
    display: block;
    margin: 8px auto;
        
}
.p-head_ttl::after{
    background-image: url(../../assets/img/ttl_line.svg);
    max-width: 580px;
}
.p-head_ttl02::after {
    background-image: url(../../assets/img/ttl_line.svg);
    max-width: 480px;
}

.p-head_text{
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    .p-head_ttl,.p-head_ttl02{
        font-size: 2.5rem;
    }
    .p-head_text {
        font-size: 1.25rem;
    }
    .p-head_ttl::after,
    .p-head_ttl02::after {
        margin: 16px auto 21px;
    }

}

.p-about_grid{
    display: grid;
    grid-template-columns: [col1-start] 100% [col1-end];
    grid-template-rows: [row1-start] auto [row2-start] auto [row3-start] auto [row3-end];
    margin: 46px 0 80px;
}

.p-about_grid-02{
    display: grid;
    grid-template-columns: [col1-start] 100% [col1-end];
    grid-template-rows: [row1-start] auto [row2-start] auto [row3-start] auto [row3-end];
    margin: 0px 0 80px;
}

.p-about_box01 {
    padding: 40px 0;
}
.p-about_box01-02 {
    padding: 22px 0;
}
.p-about_box01,.p-about_box01-02{
    grid-column: col1-start;
    grid-row: row1-start;
    position: relative;
    background-color: #E3350C;
    border-radius: 15px 15px 0 0 ;
    font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", serif;
    font-weight: bold;
    text-align: center;
    font-size: 1.125rem;
    color: #fff;
}

.p-about_box01::before,.p-about_box01-02::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: 0;
    left: 0;
    bottom: -12px;
    margin: auto;
    border-top: 12px solid #E3350C;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    z-index: 10;
}
.p-about_box02,.p-about_box02-02 {
    grid-column: col1-start;
    grid-row: row2-start;
}

 .p-about_box03 .p-about_box03-02{
    grid-column: col1-start;
    grid-row: row3-start / row3-end;
 }
 
@media screen and (min-width: 768px) {
    .p-about_grid {
    grid-template-columns: [col1-start] 50% [col2-start] 50%;
        [col2-end];
    grid-template-rows: [row1-start] auto [row2-start] auto [row2-end];
    margin: 104px 0 80px;
    }
    
    .p-about_grid-02 {
        grid-template-columns: [col1-start] 50% [col2-start] 50%;
            [col2-end];
        grid-template-rows: [row1-start] auto [row2-start] auto [row2-end];
        margin: 0px 0 40px;
    }

    .p-about_box01 {
        grid-column: col1-start / col2-start;
        grid-row: row1-start;
        margin-right: 66px;
        padding: 48px 0;
    }
    .p-about_box01-02{
        grid-column: col2-start;
        grid-row: row1-start;
        margin-left: 66px;
        padding: 28px 0;
    }
    .p-about_box01, .p-about_box01-02 {
        border-radius: 20px;
        font-size: 1.5rem;
    }
    
    .p-about_box02 {
        grid-column: col2-start;
        grid-row: row1-start / row2-end;
    }
    .p-about_box02-02 {
        grid-column: col1-start / col2-start;
        grid-row: row1-start / row2-end;
        position: absolute;
        right: 0;
    }
    
    .p-about_box03 {
        grid-column: col1-start;
        grid-row: row2-start;
        margin-right: 66px;
    }
    .p-about_box03-02 {
        grid-column: col2-start;
        margin-left: 66px;
    }
}

.p-about_nunber{
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    background-color: #fff;
    border: #E3350C solid 3px;
    border-radius: 100%;
    color: #E3350C;
    font-size: 0.875rem;
    padding-top: 7px;
    position: absolute;
    top: -15px;
    left: -15px;
    width: 66px;
   height: 66px;
   line-height: 1;
}
.p-about_nunber_b{
    display: block;
    font-size: 2.25rem;
    line-height: 1;
    margin-top: -4px;
}

.slick-list{
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
.slider{
    width: calc(50vw + 20px);
    max-width: 685px;
}
.slick-list{
    border-radius: 20px 20px 20px 20px;
}
}
.slick-prev,
.slick-next{
    background-color: #fff;
    border-radius: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    opacity: 0.6;
}
.slick-prev{
    left: 8px;
}
.slick-next {
    right: 8px;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #fff;
    outline: none;
    background: #fff;
}

.slick-prev:before,.slick-next:before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../assets/img/slide_arrow_sp.png);
}

.slick-next:before {
    transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
.slick-prev,
.slick-next{
    width: 43px;
    height: 43px;
}
.slick-prev {
    left: 24px;
}
.slick-next {
    right: 24px;
}
.slick-prev:before,.slick-next:before {
    width: 15px;
    height: 15px;
    background-image: url(../../assets/img/slide_arrow_left.png);
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background-color: #fff;
}
}

@media only screen and (min-width:767px) and (max-width:1365px) {
    #slider01 .slick-next{
        right: 44px;
    }
    #slider02 .slick-prev{
        left: 44px;
    }
}

.p-slide_caution {
    margin-top: -26px;
    font-size: 0.625rem;
    text-align: right;
}
@media screen and (min-width: 768px) {
.p-slide_caution{
    margin-top: -20px;
    font-size: 0.750rem;
}
.p-slide_caution.first{
    text-align: left;
    margin-top: -20px;
}
}
@media screen and (min-width: 768px) {
    .swiper-pagination,.swiper-pagination02 {
        width: 50vw;
        max-width: 685px;
    }
    .swiper-pagination02{
        margin-left: -185px;
    }
}
.slick-dots{
    bottom: -28px;
}
@media screen and (min-width: 768px) {
    .slick-dots{
        bottom: -42px;
}
}
.slick-dots li {
    margin: 0 4px;
}

.slick-dots li button:before {
    width: 20px;
    height: 4px;
    border-radius: 1px;
    display: block;
    content: '';
    background-color: #F0E8DF;
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .slick-dots li{
        width: 40px;
    }
    .slick-dots li button{
        width: 40px;
    }
    .slick-dots li button:before {
    width: 40px;
}
}
.slick-dots li.slick-active button:before{
    background-color: #E3350C;
}


.p-about_text{
    font-size: 0.875rem;
    margin: 18px 0 46px;
    line-height: 1.7;
}
.p-about_img01{
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .p-about_text {
        font-size: 0.875rem;
        margin: 26px 0 38px;
        line-height: 2.3;
    }
    .p-about_img01 {
        margin-left: 28px;
    }

}

.p-about_more{
    position: relative;
    background-color: #F0E8DF;
    border-radius: 15px;
    padding: 32px 15px 24px;
}
@media screen and (min-width: 768px) {
    .p-about_more{
        display: flex;
        align-items: center;
        padding: 34px 15px 34px 30%;
        margin-top: 120px;
    }
}

.p-about_more-text{
    font-family: "Zen Maru Gothic", serif;
    color: #E3350C;
    font-size: clamp(1rem, 0.778rem + 1.11vw, 1.125rem);
    line-height: 1.8;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
}
@media screen and (min-width: 768px) {
    .p-about_more-text{
        font-size: 1.25rem;
        line-height: 1.6;
    }
}

.p-about_more-img{
    margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
    .p-about_more-img{
        position: absolute;
        top: -120px;
        left: 0;
        width: 300px;
    }
}

a.p-about_more-btn {
    position: relative;
    border: 2px solid #E3350C;
    text-align: center;
    background-color: #fff;
    color: #E3350C;
    font-size: 1rem;
    line-height: 1;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    border-radius: 32px;
    width: 100%;
    max-width: 280px;
    padding: 20px 58px 20px 15px;
    margin: 0 auto;
    display: block;
    transition: background-color .25s ease-out, color .25s ease-out, border-color .25s ease-out;
    -webkit-transition: background-color .25s ease-out, color .25s ease-out, border-color .25s ease-out;
}
a.p-about_more-btn:hover{
    border: 2px solid #E3350C;
    background-color: #E3350C;
    color: #fff;
    text-decoration: none;
}
.p-about_more-btn::after {
    position: absolute;
    content: '';
    background-image: url(../../assets/img/btn_more.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 43px;
    height: 43px;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.p-about_more-btn:hover::after {
    background-image: url(../../assets/img/btn_more-hover.svg);
}


.p-shop_box{
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    padding: 36px 0;
    margin-top: 16px;
}
@media screen and (min-width: 768px) {
    .p-shop_box{
        padding: 80px;
        margin-top: 32px;
    }
    .p-shop_img01{
        position: absolute;
        right: -60px;
        bottom: -30px;
    }
    .p-shop_img02{
        position: absolute;
        left: -130px;
        bottom: -65px;
    }
}
.p-shop_grid {
    display: grid;
    grid-template-columns: [col1-start] 100% [col1-end];
    grid-template-rows: [row1-start] auto [row2-start] auto [row3-start] auto [row3-end];
    margin: 0 ;
}
.p-shop_box01 {
    grid-column: col1-start;
    grid-row: row1-start;
    color: #E3350C;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 16px;
}

.p-shop_copy{
    font-size: 1.25rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    margin-top: 8px;
    display: block;
}
@media screen and (min-width: 768px) {
    .p-shop_box01{
        font-size: 1rem;
        text-align: left;
        white-space: nowrap
    }
    .p-shop_copy {
        font-size: 1.875rem;
        margin-top: 20px;
        line-height: 1;
    }
}

.p-shop_box02 {
    grid-column: col1-start;
    grid-row: row2-start;
}

.p-shop_box03 {
    grid-column: col1-start;
    grid-row: row3-start / row3-end;
    padding: 32px 28px 0;
}

@media screen and (min-width: 768px) {
    .p-shop_grid {
        grid-template-columns: [col1-start] 50% [col2-start] 50%;
        [col2-end];
        grid-template-rows: [row1-start] auto [row2-start] auto [row2-end];
    }
    .p-shop_box01 {
        grid-column: col1-start / col2-start;
        grid-row: row1-start;
        margin: 0 80px 0 0;
    }

    .p-shop_box02 {
        grid-column: col2-start;
        grid-row: row1-start / row2-end;
    }
    .p-shop_box03 {
        grid-column: col1-start;
        grid-row: row2-start;
        padding: 0;
        }
    .p-shop_box02-img{
        border-radius: 15px;
    }
}
@media screen and (768px <=width < 900px) {
    .p-shop_box02{
        margin-top: 100px;
    }
}



.p-shop_imgbox{
    display: flex;
    justify-content: space-between;
    column-gap: 14px;
    margin-top: 20px;
}

.swiper03 {
    overflow: hidden;
    margin-top: 32px;
}
.p-shop_cap{
    font-size: 0.625rem;
    margin: 11px auto 21px;
    text-align: center;
}
.swiper-pagination03 {
    display: flex;
    column-gap: 8px;
    justify-content: center;
    margin-top: 0;
}
.p-shop_text {
    font-size: 0.875rem;
    margin: 0 0 38px;
    line-height: 1.7;
}
@media screen and (min-width: 768px) {
    .p-shop_text {
        line-height: 2.28;
        margin-right: 66px;
    }

.p-shop_info{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;

}
}
@media screen and (768px <=width < 1060px) {
    .p-shop_text {
        margin-right: 36px;
        margin-top: 19px;
    }
    .p-shop_box02-02{
        padding-left: 20px;

    }
    .p-shop_info02{
        margin-top: 28px;
    }
}

.p-shop_label{
    background-color: #E3350C;
    border-radius: 5px;
    padding: 3.5px 0;
    text-align: center;
    width: 80px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    color: #fff;
    font-size: 0.750rem;
    margin-bottom: 8px;
}
.p-shop_address{
    font-size: 0.750rem;
    margin-bottom: 20px;
}
.p-shop_day{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    position: relative;
    font-size: 0.750rem;
}
.p-shop_day:after {
    background-color: #E3350C;
    height: 1px;
    width:100%;
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
}
.p-shop_week{
    position: relative;
    background-color: #fff;
    padding-right: 14px;
    z-index: 2;
    color: #E3350C;
    font-weight: bold;
}
.p-shop_time,.p-shop_time02 {
    position: relative;
    background-color: #fff;
    padding-left: 14px;
    z-index: 2;
}
.p-shop_time02 {
    text-align: right;
}
@media screen and (min-width: 768px) {
    .p-shop_address {
        width: calc(100% - 93px);
        margin-left: 13px;
        font-size: 0.875rem;
    }
    .p-shop_day{
        margin-left: 13px;
        font-size:0.875rem;
    }
    .p-shop_weekdate{
        width: 280px;
    }
}

.p-shop_menu{
    position: relative;
    border: 2px solid #E3350C;
    border-radius: 0 0 10px 10px;
    margin: 65px auto 0;
    padding: 40px 15px;
    width: calc(100% - 56px);
}
@media screen and (min-width: 768px) {
    .p-shop_menu {
        padding: 15px 15px 15px 30px;
        width: 100%;
        border-radius: 0 15px 15px 15px;
    }
}
.p-shop_menu_label{
    background-color: #E3350C;
    border-radius: 5px 5px 0 0;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    color: #fff;
    font-size: 0.875rem;
    line-height: 30px;
    width: calc(100% + 4px);
    text-align: center;
    position: absolute;
    top: -30px;
    left: -2px;
}
@media screen and (min-width: 768px) {
    .p-shop_menu_label {
        width: 200px;
    }
}
.p-shop_menu_label::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: 0;
    left: 0;
    bottom: -12px;
    margin: auto;
    border-top: 15px solid #E3350C;
    border-left: 12px solid transparent;
    z-index: 10;
}

.p-shop_menu-grid {
    display: grid;
    grid-template-columns: [col1-start] 100% [col1-end];
    grid-template-rows: [row1-start] auto [row2-start] auto [row3-start] auto [row3-end];
    margin: 0;
}

.p-shop_menu-box01 {
    grid-column: col1-start;
    grid-row: row1-start;
    color: #E3350C;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 16px;
}
.p-shop_menu-ttl{
    font-size: 1.25rem;
    display: block;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
}

.p-shop_menu-box02 {
    grid-column: col1-start;
    grid-row: row2-start;
}

.p-shop_menu-box03 {
    grid-column: col1-start;
    grid-row: row3-start / row3-end;
    font-size: 0.875rem;
    margin-top: 24px;
}

@media screen and (min-width: 768px) {
    .p-shop_menu-grid {
        grid-template-columns: [col1-start] 67% [col2-start] 33%;
        [col2-end];
        grid-template-rows: [row1-start] auto [row2-start] auto [row2-end];
    }

    .p-shop_menu-box01 {
        grid-column: col1-start / col2-start;
        grid-row: row1-start;
        text-align: left;
        margin-top: 10px;
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .p-shop_menu-ttl {
        margin-top: 8px;
    }

    .p-shop_menu-box02 {
        grid-column: col2-start;
        grid-row: row1-start / row2-end;
    }

    .p-shop_menu-box03 {
        grid-column: col1-start;
        grid-row: row2-start;
        line-height:2.28;
        margin-top: 0;
        padding-right: 33px;

    }
}

.p-campaign_container{
    background-color: #E3350C;
    border-radius: 15px;
    position: relative;
    padding: 40px 28px 40px;
    margin-top: 46px;
    background-image: url(../../assets/img/cam_bg-sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.p-campaign_img-sp02 {
    position: absolute;
    top: -12px;
    right: -12px;
}
.p-campaign_img-sp03 {
    position: absolute;
    top: 180px;
    left: -12px;
}
.p-campaign_img04 {
    position: absolute;
    top: -30px;
    left: -40px;
}
@media screen and (min-width: 768px) {
    .p-campaign_container {
        border-radius: 20px;
        padding: 62px 64px 80px;
        margin-top: 84px;
        background-image: url(../../assets/img/cam_bg-pc.jpg);
    }
    .p-campaign_img02{
        position: absolute;
        top: 40px;
        left: -40px;
    }
    .p-campaign_img03{
        position: absolute;
        top: 57px;
        right: 50px;
    }
    .p-campaign_img04{
        position: absolute;
        top: 370px;
        right: -43px;
        left: auto;
    }

}
@media screen and (768px <=width < 1060px) {
    .p-campaign_img04{
        position: absolute;
        top: 370px;
        right: -80px;
    }
}
.p-campaign_ttl-img{
    margin: 0 auto;
}
.p-campaign_ttl{
    color: #fff;
    font-size: 1.25rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    margin: 24px auto 56px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .p-campaign_ttl {
        font-size: 2.5rem;
        white-space: nowrap;
        margin: 40px auto 98px;
    }
}
.p-campaign_text{
    color: #fff;
    font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
    .p-campaign_text {
        text-align: center;
        font-size: 1.25rem;
        line-height: 2;
    }
}
.p-campaign_qr{
    border-radius: 10px;
    margin: 46px auto 0;
    padding: 0;
    position: relative;
}
@media screen and (min-width: 768px) {
    .p-campaign_qr {
        background-color: #fff;
        border-radius: 15px;
        display: flex;
        flex-wrap: wrap;
        padding: 20px 54px 20px 48px;
        max-width: 850px;
        margin: 80px auto 0px;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (min-width: 1060px) {
    .p-campaign_qr {
        justify-content: space-between;
    }

}
@media screen and (min-width: 768px) {
    .p-okomejuku_account{
        display: flex;
        align-items: center;

    }
}
.p-campaign_img-sp04 {
    position: absolute;
    top: 76px;
    right: -70px;
}
.p-campaign_img-sp05 {
    position: absolute;
    left: -40px;
    top: 76px;
    z-index: 99;
    transform: scale(-1, 1);
}

.p-campaign_qr-box{
    text-align: center;
}
@media screen and (min-width: 768px) {
    .p-campaign_qr-box {
        display: flex;
        align-items: center;
        column-gap: 16px;
    }
}
.p-campaign_qr-ttl{
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
    .p-campaign_qr-ttl {
        color: #E3350C;
        font-size: 1.25rem;
        white-space: nowrap;
        margin-bottom: 0;
    }
}

.p-logo_okome {
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .p-campaign_arrow-img{
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .p-campaign_qr-img {
        margin: 0 auto 0;
    }
}
@media screen and (min-width: 1060px) {
    .p-campaign_arrow-img {
        transform: rotate(0);
    }
}
.p-campaign_link{
    color: #E3350C;
    text-decoration: underline;
    font-size: 0.875rem;
    margin-top: 13px;
    text-align: center;
}

.p-campaign_item-box{
    position: relative;
    margin:64px auto 32px;
}
.p-campaign_item-box:last-child {
    margin-bottom: 0;
}
.p-campaign_img-sp06 {
    position: absolute;
    top: -60px;
    right: -46px;
}
.p-campaign_img-sp07 {
    position: absolute;
    bottom: 4px;
    left: -36px;
}

.p-campaign_item-label{
    position: absolute;
    content: '';
    background-image: url(../../assets/img/cam_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 106px;
    height: 106px;
    right: 0;
    bottom: 10px;
    margin: auto;
    color: #fff;
    font-size: 1rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    padding: 12px 0 0;
    z-index: 10;
}
.p-campaign_item-label-b {
    font-size: 2.625rem;
    display: block;
}
.p-campaign_item-box-text{
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    padding: 24px 15px 28px;
    font-size: 0.750rem;
    text-align: center;
    line-height: 2;
}
.p-campaign_item-box-text::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: 0;
    left: 0;
    bottom: -12px;
    margin: auto;
    border-top: 12px solid #fff;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    z-index: 10;
}
.p-campaign_item-con{
    position: absolute;
    content: '';
    background-image: url(../../assets/img/cam_item03-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 82px;
    height: 82px;
    left: -42px;
    bottom: 56px;
    margin: auto;
    color: #fff;
    font-size: 0.6875rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    padding: 14px 0 0;
    z-index: 100;
}
.p-campaign_item-con-inner{
    margin-bottom: 6px;
    font-weight: 500;
}
.p-campaign_item-con-b{
    font-size: 2.125rem;
}
.p-campaign_item-con-m{
    font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
.p-campaign_item01{
    margin: 36px 0 0 -30px;
    width: 209px;
}
.p-campaign_item02 {
    margin: 20px 0 0 44px;
    width: 100px;
}
}
@media screen and (min-width: 768px) {
    .p-campaign_item-box{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        min-height: 350px;
    }

    .p-campaign_img05 {
        position: absolute;
        top: -150px;
        left: -95px;
    }
    .p-campaign_img06 {
        position: absolute;
        left: 90px;
        top: -76px;
        z-index: 99;
    }

    .p-campaign_item-label{
        width: 176px;
        height: 176px;
        right: -85px;
        top: -120px;
        font-size: 1.562rem;
        padding: 24px 0 0;
    }
    .p-campaign_item-label-b {
        font-size: 4.375rem;
    }
    .p-campaign_item-box-text{
        width: 80%;
        max-width: 480px;
        padding: 60px 0;
        font-size: 0.875rem;
        right: 10px;
    }  
    .p-campaign_item-box-text::before{
        left: -25px; 
        right: auto;
        top: 0;
        bottom: 0;
        margin: auto;
        border-right: 15px solid #fff;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }
    .p-campaign_item01{
        position: absolute;
        left: -50px;
        top: 0;
        z-index: 99;
    }
    .p-campaign_item02{
        position: absolute;
        left: -20px;
        top: 30px;
        z-index: 99;
    }
    .p-campaign_item-con{
        width: 125px;
        height: 125px;
        bottom: auto;
        top: -28px;
        left: 0;
        font-size: 1.125rem;
        padding: 18px 0 0;
    }
    .p-campaign_item-con-inner {
        margin-bottom: 8px;
    }
    .p-campaign_item-con-b{
        font-size: 3.3125rem;
    }
    .p-campaign_item-con-m{
        font-size: 2.375rem;
    }
}
@media screen and (768px <=width < 900px) {
    .p-campaign_item01 {
        left: -130px;
    }
    .p-campaign_item02{
        left: -70px;
        top: 47px;
        width: 40%;
    }
}

a.p-campaign_btn {
    position: relative;
    border: 2px solid #E3350C;
    text-align: center;
    background-color: #fff;
    color: #E3350C;
    font-size: clamp(0.938rem, 0.826rem + 0.56vw, 1rem);
    line-height: 1;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    border-radius: 32px;
    width: 100%;
    max-width: 280px;
    padding: 4px 58px 4px 15px;
    margin: 0 auto;
    display: block;
    transition: background-color .25s ease-out, color .25s ease-out, border-color .25s ease-out;
    -webkit-transition: background-color .25s ease-out, color .25s ease-out, border-color .25s ease-out;
    line-height: 1.5;
}
a.p-campaign_btn.height{
    margin-top: 16px;
    padding: 20px 58px 20px 15px;
    border-radius: 36px;
}
.p-campaign_btn::after {
    position: absolute;
    content: '';
    background-image: url(../../assets/img/btn_more.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 43px;
    height: 43px;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}
a.p-campaign_btn:hover {
    border: 2px solid #fff;
    background-color: #E3350C;
    color: #fff;
    text-decoration: none;
}
a.p-campaign_btn.lineup:hover {
    border: 2px solid #E3350C;
    background-color: #E3350C;
    color: #fff;
    text-decoration: none;
}
.p-campaign_btn:hover::after {
    background-image: url(../../assets/img/btn_more-hover.svg);
}
@media screen and (min-width: 768px) {
    a.p-campaign_btn{
        min-width: 400px;
        padding: 20px 58px 20px 15px;;
    }
    .p-campaign_btn.lineup{
        min-width: 480px;
    }
}

.p-flow{
    position: relative;
    margin-top: 40px;
}
.p-campaign_img-sp08 {
    position: absolute;
    top: -67px;
    left: -36px;
}
.p-campaign_img-sp09 {
    position: absolute;
    top: -26px;
    right: -60px;
}
.p-campaign_img-sp10 {
    position: absolute;
    top: 434px;
    left: -40px;
    transform: scale(-1, 1);
}

.p-flow_ttl{
    color: #fff;
    font-size: 1.125rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .p-flow_ttl {
        font-size: 2.5rem;
    }
}
.p-flow_container{
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    margin: 16px auto 40px;
}
@media screen and (min-width: 768px) {
    .p-flow_container {
        border-radius: 15px;
        padding: 40px 36px 32px ;
    }
    .p-flow_inner{
        display: flex;
        justify-content: center;
        gap: 134px;
    }
}
.p-flow_step{
    position: relative;
    margin-bottom: 76px;
}
.p-flow_step::before{
    position: absolute;
    content: '';
    background-image: url(../../assets/img/flow_icn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 28px;
    height: 28px;
    bottom: -52px;
    left: 0;
    right: 0;
    margin: auto;
}
.p-flow_step:last-child{
    margin-bottom: 40px;
}
.p-flow_step:last-child::before{
    content: none;
    margin-bottom: 40px;
}
.p-flow_step_head {
    background-color: #E3350C;
    border-radius: 5px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    color: #fff;
    font-size: 0.875rem;
    line-height: 30px;
    width: calc(100% + 4px);
    text-align: center;
    position: relative;
}
.p-flow_step_head::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: 0;
    left: 0;
    bottom: -12px;
    margin: auto;
    border-top: 15px solid #E3350C;
    border-left: 12px solid transparent;
    z-index: 10;
}
.p-flow_step-text{
    color: #E3350C;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 24px;
}
@media screen and (min-width: 768px) {
    .p-flow_step {
        width: calc((100% - 112px)/3);
        margin-bottom: 48px;
    }
    .p-flow_step::before{
        transform: rotate(-90deg);
    bottom: 0;
    top: 30px;
    left: auto;
    right: -80px;
    margin: auto;
}
}
.p-flow_img{
    margin: 10px auto 0;
}

.p-flow_info-label{
    border: 2px solid #E3350C;
    border-radius: 6px;
    color: #E3350C;
    font-size: 0.750rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    padding: 3.5px 0;
}
.p-flow__about{
    font-size: 0.750rem;
    margin-bottom: 13px;
}
.p-flow__about:last-child{
    margin-bottom: 0;
}


@media screen and (min-width: 768px) {
    .p-flow_info{
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
    }
    .p-flow_info-label{
        width: 136px;
    }
    .p-flow_info-label:last-child{
        margin-bottom: 0;
    }
    .p-flow__about{
        width: calc(100% - 136px);
        padding-left: 16px;
        font-size: 0.875rem;
    }
}


.p-lineup {
    padding: 0 0 80px;
}

.p-lineup_text {
    text-align: center;
    font-size: 1.25rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    margin-bottom: 16px;
}

.p-share {
    margin: 80px auto 0;
    max-width: 300px;
}

@media screen and (min-width: 768px) {
    .p-share {
        max-width: none;
    }

    .p-lineup_text {
        margin-bottom: 36px;
    }
}

/**
* Utility
* ========================== */

@media screen and (max-width: 767px) {
    .u-sp-none {
        display: none;
    }
}

@media screen and (min-width: 768px) {
.u-pc-none{
    display: none;
}
}
@media screen and (min-width: 1060px) {
    .u-pc-under-none {
        display: none;
    }
}
@media (max-width:767px),(min-width:1060px){
    .u-pc-all-none {
        display: none;
    }
}


.u-bold{
    font-weight: bold;
    font-size: 1rem;
}
@media screen and (min-width: 768px) {
    .u-bold {
        font-size: 1.5rem;
    }
}

a.u-orange{
    color: #E3350C;
    text-decoration: underline;
}
.u-img-center{
    margin: 0 auto;
}

.u-relative{
    position: relative;
}

.u-mtop{
    margin-top: 52px;
}
@media screen and (max-width: 767px) {
    .u-mtop {
        margin-top: 80px;
    }
}

.u_bounce.is-show{
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-name: bounce;
    transform-origin: center bottom;
}
@keyframes bounce {

    100%,
    60%,
    30%,
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-30px);
    }

    40% {
        transform: translateY(-15px);
    }
}
.u_shake.is-show {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-name: shake;
    transform-origin: center bottom;
}
@keyframes shake {

    100%,
    60%,
    30%,
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-20px);
    }

    40% {
        transform: translateX(-10px);
    }
}

.u-more{
    animation: more 2s infinite;
}

@keyframes more {

    100%,
    60%,
    30%,
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(10px);
    }

    40% {
        transform: translateX(20px);
    }
}

.u-yura{
    animation: yura 2s infinite;
    }
    
    @keyframes yura {
    
        0%,
        100% {
            transform: translateY(0)
        }
    
        15% {
            transform: translateY(10px)
        }
    
        30% {
            transform: translateY(0)
        }
    
        50% {
            transform: translateY(0)
        }
    
        65% {
            transform: translateY(10px)
        }
    
        80% {
            transform: translateY(0)
        }
    }

.u-lazy{
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
    transition-duration: .74s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: .1s; 
}
.u-lazy.is-show {
    opacity: 1;
    transform: translate(0);
}

.pagetop {
    visibility: visible;
    position: fixed;
    z-index: 990;
    right: 24px;
    bottom: 24px;
    cursor: pointer;
    -webkit-transition: opacity .3s, visibility .3s, background .3s;
    transition: opacity .3s, visibility .3s, background .3s;
    font-size: 0;
    text-align: right;
    opacity: 0;
}
.pagetop.fadein {
    opacity: 1;
}
@media only screen and (max-width: 767px) {
    .pagetop {
        right: 20px;
    }
}
.pagetop a {
    display: inline-block;
    background: #c00;
}
.pagetop img {
    width: 50px;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
@media only screen and (max-width: 767px) {
    .pagetop img {
        width: 33px;
    }
}



footer img {
    margin: 0 auto;
}