@charset "UTF-8";
/*------------------------------
            共通
-------------------------------*/
html{
    scroll-behavior: smooth;
}
:root{
    --main: #DF080B;
    --black: #000;
    --white: #fff;
    --pink: #FFE1D7;
    --red: #df080b;
    --gray: #727272;
    --blue: #C3E8FF;
    --yellow: #FFF4A3;
    --zenkaku_A: "Zen Kaku Gothic Antique", sans-serif;
    --zenkaku_N: "Zen Kaku Gothic New", sans-serif;
    --amiko: "Amiko", sans-serif;
    --notoJP: "Noto Sans JP", sans-serif;
    --contents_width: 1080px;
    scroll-padding-top: 75px;
}
body{
    overflow-x: hidden;
}
body.active{
    overflow: hidden;
    overflow-x: hidden;
}
*:focus {
    outline: none;
}
.hover{
    transition-property: background-color;/*変化させたいプロパティを指定*/
    transition-duration: 2s;/*要素が変化するまでの時間を指定*/
}
*{
    font-family: var(--zenkaku_A);
    font-style: normal;
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5rem;
    
}
img{
    -webkit-user-drag: none;/*イメージのドラッグを禁止*/
}
h2.h2{
    position: relative;
    font-family: var(--zenkaku_N);
    font-weight: 500;
    color: var(--main);
    text-decoration: underline;
    display: inline-block;
    line-height: 1;
    letter-spacing: 0.05rem;
    z-index: 1;
    text-underline-offset: 4px;
    margin-bottom: 3rem;
}
h2.sec-h2{
    font-size: 2.7rem;
}
h2.h2:before {
    content: "";
    background: white;
    display: block;
    width: 100%;
    height: 100%;
    top: 7.5px;
    position: absolute;
    z-index: -1;
}
.h2_sub{
    color: var(--main);
    font-family: var(--zenkaku_A);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
.container{
    padding: 0 15px 1.4rem;
}
.viewmore-div{/*viewmore-btn*/
    text-align: center;
}
hr{
    color: #c9c9c9;
}
.viewmore-div a{
    display: inline-block;
    background-color: var(--pink);
    padding: 0.25rem 4.5rem;
    margin: 1rem 0;
    font-family: var(--zenkaku_N);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.02rem;

}
section.TOP-section .viewmore-div.bk-color a{
    background: var(--white);
    color: var(--main);
}
.viewmore-div a:hover{
    background: var(--main)!important;
    color: var(--white);
}
section.TOP-section .viewmore-div.bk-color a:hover{
    background: var(--main)!important;
    color: var(--white);
}
.TOP-category,
.TOP-section{
    padding: 3rem 15px;
}
.container article.article-content{
    padding-left: 10px;
    padding-right: 10px;
}
.article-content p,
.article-content figcaption{
    font-family: var(--notoJP);
}
.article-content p{
    margin-bottom: 1.5rem;
    line-height: 2;
}
.sp-none{
    display: none;
}

/* パンくずリスト */
ul.breadcrumb li,
ul.breadcrumb li a{
    font-family: var(--zenkaku_A);
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.6;
}
ul.breadcrumb {
    line-height: 0.8;
}

ul.breadcrumb li{
    display: inline;
}
ul.breadcrumb li + li:before{
    content: ">";
    margin:.5em;
}

/*------------------------------
            header
-------------------------------*/
header.header{
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
}
header.fadeOutTop{
    animation: fadeInTop 1s ease 0s 1 normal;
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
  }
}

header.header.active,
header.header.bkground.active {
    /*background: var(--pink);*/
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: background-color 0.2s ease-in;
}
header .header-flex{
    padding: 15px;
    height: 75px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
}
header h1 a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.hamburger_btn {
    position: relative;
    width: 45px;
    height: 45px;
    z-index: 30;
}
header .hamburger_line {
    position: absolute;
    left: 8px;
    width: 32px;
    height: 3px;
    background-color: var(--main);
    -webkit-transition: all .6s;
    transition: all .6s;
}
header.header .head-nav{
    overflow: hidden;
    background: var(--pink);
    height: 0;
    transition: 1s;
}
header .hamburger_line_1{
    top: 10px;
    left: 6.5px;
}
header .hamburger_line_2{
    top: 22.5px;
    left: 6.5px;
}
header .hamburger_line_3{
    top: 35px;
    width: 21px;
    left: 6.5px;
}
.hamburger_btn.open span.hamburger_line_1 {
    width: 45px;
    top: 15px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
}
.hamburger_btn.open span.hamburger_line_2 {
    opacity: 0;
}
.hamburger_btn.open span.hamburger_line_3 {
    width: 45px;
    top: 28px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
}
.scrollDown header {
    margin-top: -75px;
    transition: none;
}
header.header.bkground{
    background-color: var(--white);
    height: inherit;
    transition: .8s;
}

header.header.bkground img {
    transition: none;
}


/*---------------------
          nav
-----------------------*/
header .PC-main{
    display: none;
}
.active .head-nav.open{
    height: 105vh;
    width: 200vw;
    overflow: hidden;
    display: flex;
}
header .head-nav .main,
header .head-nav .sub{
    width: 100vw;
    padding: 1rem 1.5rem;
    transition: 0.5s all;
}
header .head-nav .sub ul{
    padding: 1rem 0 0 2.5rem;
}
header .head-nav li{
    width: 95%;
    padding: 1.2rem 0;
    cursor: pointer;
}
.header .header-navnext{
    position: relative;
}
.header .header-navnext::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left: 15px solid var(--main);
}
.header li a,
.header li,
.header li span{
    font-size: 1.5rem;
    line-height: 1.1rem;
    font-weight: 500;
    display: block;
    width: 100%;
}
#series_sub-menu .header li a,
#series_sub-menu .header li,
#series_sub-menu .header li span{
    line-height: 1.2rem;

}
nav#series_sub-menu .search-box,
nav#culture_sub-menu .search-box {
    margin-top: 2rem;
}

header.header form.search-form {
    border-bottom: 4px solid var(--black);
    width: 85%;
    margin: 0 auto;
}
header.header form.search-form .footer-keysearch{
    display: flex;
    justify-content: space-between;
}
header.header .input-field {
    padding: 0.5rem 0;
    width: 90%;
    font-size: 1.4rem;
}
header .btn-meinmenu{
    max-width: var(--contents_width);
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    padding: 1rem 2rem;
    font-size: 1.55rem;
    font-weight: 500;
}
header .btn-meinmenu::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-right: 15px solid var(--main);
}
header .sub_menutitle{
    font-size: 1.55rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    text-decoration: underline;
    text-decoration-color: var(--main);

}
header .main.main-close,
header .sub.open{
    transform: translateX(-100vw);
}
nav#culture_sub-menu.sub-close,
nav#series_sub-menu.sub-close{
    display: none;
}
.header .culture_sub-menu li,
.header .culture_sub-menu li span{
    line-height: 1.8;
}
nav#culture_sub-menu li a,
nav#culture_sub-menu li a span {
    font-size: 1.3rem;
}
nav#culture_sub-menu li a {
    line-height: 1.2rem;
}
.main-menu .search-box{
    margin-top: 1rem;
}
nav#culture_sub-menu li {
    padding: 0.8rem 0;
}
header .header-inner.overlay{
    transition: 2s;
}
header.active .header-inner.overlay {
    transition: 0.8s;
    background: var(--pink);
}

/*------------------------------
      article common design
-------------------------------*/
.post-head p.category{
    background: var(--main);
    display: inline;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
}
.s-card03-list article,
.s-card04-list article,
.TOP-category article{
    margin-bottom: 2rem;
}
h4.post-title{
    font-weight: 500;
    margin-top: 0.3rem;
}
h4.post-title{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
p.date{
    font-family: var(--amiko);
    font-weight: 400;
    color: var(--gray);
    font-size: 0.82rem;
    text-align: right;
}
.eyecatch-img{
    margin-bottom: 1rem;
    aspect-ratio: 1 / 1;
}

article .text{
    position: relative;
}
.s-card03-list article:first-child .text,
.ranking-box li:first-child .text {
    min-height: 120px;
}

.s-card03-list article:nth-child(n+2) .text,
.ranking-box li:nth-child(n+2) .text,
.s-card04-list article .text{
    min-height: 170px;
}
.s-card03-list article .date,
.s-card04-list article .date,
.ranking-box li .date{
    position: absolute;
    bottom: -10px;
    right: 0;
}
.s-card03-list,
.s-card04-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.s-card03-list article:nth-child(n+2),
.s-card04-list article{
    width: 47%;
}

.s-card03-list article:first-child .eyecatch-img{
    border-radius: 50px;
}
.s-card03-list article:first-child h4.post-title,
.ranking-box li:first-child h4.post-title{
    -webkit-line-clamp: 3;
}
.s-card03-list article:not(:first-child) .eyecatch-img,
.s-card04-list article .eyecatch-img{
    border-radius: 28px;
    overflow: hidden;
}
.eyecatch-img,
.PR_inner div{
    overflow: hidden;
}
.eyecatch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.entry-post img:hover,
.PR_inner div a:hover,
.TOP-special-img img:hover{
    transform: scale(1.1);
}
.entry-post img,
.PR_inner div a,
.TOP-special-img img{
    transition: transform .6s ease;
}
article .category,
article .category a{
    font-family: var(--zenkaku_N);
    font-size: 0.9rem;
    font-weight: 700;
}
/*---------------------------------
        記事内　ShopInfomation
----------------------------------*/
section.shop-info-box{
    border: 2px solid var(--main);
    padding: 2.5rem 1rem;
    margin: 2rem 0;
}
section.shop-info-box .shop-info_title,
section.shop-info-box .shop-info_head,
section.shop-info-box .shop-info_body,
section.shop-info-box .post-area{
    padding-left: 1rem;
    padding-right: 1rem;
}
section.shop-info-box .shop-info_title,
section.shop-info-box .date-name{
    font-family: var(--zenkaku_A);
    font-weight: 700;
}
section.shop-info-box .shop-info_title{
    color: var(--main);
    font-size: 0.85rem;
}
section.shop-info-box h5{
    font-family: var(--notoJP);
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1rem;
    line-height: 1.5;
}
section.shop-info-box .shop-name-sub{
    font-size: 0.85rem;
}
section.shop-info-box .shop-info_head:after {
    content: "";
    display: block;
    width: 20%;
    height: 2px;
    background-color: var(--main);
    min-width: 50px;
    max-width: 70px;
    margin: 1.9rem 0;
}
section.shop-info-box span.date-name{
    font-family: var(--zenkaku_A);
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}
section.shop-info-box .shop-infos,
section.shop-info-box .shop-infos a {
    font-family: var(--notoJP);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
section.shop-info-box .shop-infos a {
    text-decoration: underline;
}
section.shop-info-box .shop-infos a:hover{
    opacity: 0.5;
}


section.shop-info-box #shopmap{
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1.5rem;
}
section.shop-info-box .post-area,
section.shop-info-box .post-area .shop-area_list{
    display: flex;
}
section.shop-info-box .post-area .shop-infos{
    margin-bottom: 0;
}
section.shop-info-box .post-area .shop-infos a{
    text-decoration: underline;
}
section.shop-info-box .post-area .shop-infos:not(:last-child){
    margin-right: 1rem;
}
section.shop-info-box .post-area span.date-name{
    width: 25%;
}
section.shop-info-box .shop-SNS {
    display: flex;
    margin-bottom: 1.5rem;
}
section.shop-info-box .shop-SNS li:not(:last-child) {
    margin-right: 1rem;
}
section.shop-info-box .shop-SNS img {
    max-width: 40px;
}
/*------------------------------
       footer／footer.php
-------------------------------*/
footer{
    background: var(--main);
    padding: 0.5rem 0;
}
footer .page-link ul{
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
footer .page-link li a{
    font-size: 0.92rem;
    color: var(--white);
    font-weight: 700;
}
footer .copyright{
    text-align: center;
}
footer .copyright small{
    color: var(--white);
}
section.footer-search .footer-keysearch{
    border-bottom: 4px solid var(--black);
    width: 75%;
    margin: 0 auto;
    font-size: 0.8rem;
}


/*------------------------------
            記事一覧
-------------------------------*/
.article-list-box{
    margin-top: calc(10% + 75px);
    margin-bottom: 3rem;
}


@media screen and (min-width: 768px){
    /*-------------------------
                共通
    -------------------------*/
    *{
        font-size: 20px;
        line-height: 1.9rem;
    }
    a{
        transition: .5s;
    }
    :root{
        scroll-padding-top: 166px;
    }
    
    .TOP-category, .TOP-Insta,
    .section-bg, .TOP-special,
    .TOP-series, .PR_inner,
    .TOP-ranking{
        max-width: var(--contents_width);
        margin: 0 auto;
    }
    .TOP-category, .TOP-section{
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .post-head p.category{
        font-size: 0.93rem;
    }
    .pc-none{
        display: none!important;
    }
    .sp-none{
        display: block;
    }
    .viewmore-div a{
        width: 400px;
        padding: 0.5rem;
        margin-top: 3rem;
        font-size: 1.2rem;
    }
    .s-card03-list article,
    .s-card03-list article:nth-child(n+2),
    .s-card04-list article{
        width: 31%;
    }    
    .s-card03-list article:not(:first-child) .eyecatch-img,
    .s-card04-list article .eyecatch-img{
        border-radius: 50px;
    }
    .s-card03-list article:first-child .text,
    .s-card03-list article:nth-child(n+2) .text,
    .ranking-box li:first-child .text,
    .ranking-box li:nth-child(n+2) .text,
    .s-card01-list article .text{
        min-height: 260px;
    }
    .s-card03-list article:first-child h4.post-title,
    .ranking-box li:first-child h4.post-title{
        -webkit-line-clamp: 5;
    }
    .s-card01-list article .date{
        position: absolute;
        bottom: -10px;
        right: 0;
    }
   
    .s-card04-list article .text {
        min-height: 250px;
    }
    
    .s-card01-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }


    /*------------------------
            header
    --------------------------*/
    header.header{
        height: 166px;
    }
    header .header-flex{
        max-width: var(--contents_width);
        margin: 0 auto;
        height: inherit;
        padding: 0 15px;
    }
    header.header .header-flex{
        padding-bottom: 15px;
    }
    header .header-inner.overlay{
        padding-top: 2rem;
    }
    
    .header-flex h1 img {
        width: 600px;
    }
    .scrollDown header{
        margin-top: -200px;
    }
    .hamburger_btn{
        width: 65px;
        height: 65px;
    }
    header .hamburger_line{
        width: 60px;
        height: 4px;
        left: 0;
    }
    header .hamburger_line_1{
        top: 15px;
    }
    .hamburger_btn.open span.hamburger_line_1{
        width: 65px;
        top: 30px;
    }
    header .hamburger_line_2{
        top: 32.5px;
    }
    header .hamburger_line_3{
        top: 50px;
        width: 45px;
    }
    .hamburger_btn.open span.hamburger_line_3{
        width: 65px;
        top: 42px;
    }
    h3.h3,h2.h2 {
        line-height: 5rem;
        margin-bottom: 5rem;
        text-underline-offset: 8px;
        font-size: 2.7rem;
    }
    h3.sec-h3,h2.sec-h2 {
        font-size: 5rem;
    }
    h3.sec-h3:before,
    h2.sec-h2:before{
        top: 15px;
    }
    
    body.scrollUp .header-flex h1 img{
        width: 300px;
    }
    header.active h1 img {
        width: 300px;
        /*transition: 1s;*/
    }

    /*------------------------
                nav
    --------------------------*/
    header.header .head-nav nav{
        max-width: var(--contents_width);
        margin: 0 auto;
    }
    .active nav.head-nav{
        height: 90vh;
        padding-top: 0;
        padding-bottom: 0;
    }

    /*------------------------
        footer／footer.php
    --------------------------*/
    footer .page-link ul{
        justify-content: center;
    }
    footer .page-link ul li:not(:last-child){
        margin-right: 2em;
    }
    section.footer-search .footer-keysearch{
        width: 60%;
    }
    section.footer-search .footer-keysearch img{
        width: 45px;
        height: 45px;
    }
    section.footer-search .search-area ul {
        justify-content: normal;
    }

    /*------------------------------
                記事一覧
    -------------------------------*/
    h4.post-title,
    h4.post-title a{
        font-size: 1.15rem;
    }

    /*---------------------------------
            記事内ShopInfomation
    ----------------------------------*/
    section.shop-info-box{
        padding: 5rem 3rem;
        margin: 4rem 0;
        border: 3px solid var(--main);
    }
    section.shop-info-box .shop-info_title{
        font-size: 1.6rem;
    }
    section.shop-info-box h5{
        font-size: 1.87rem;
    }
    section.shop-info-box .shop-info_head:after{
        margin: 2.2rem 0;
        height: 3px;
    }
    section.shop-info-box .shop-infos,
    section.shop-info-box .shop-infos a{
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    section.shop-info-box #shopmap{
        margin-bottom: 2rem;
    }
    section.shop-info-box .post-area span.date-name{
        max-width: 15%;
    }
    section.shop-info-box .shop-info_title,
    section.shop-info-box .shop-info_head,
    section.shop-info-box .shop-info_body,
    section.shop-info-box .post-area{
        padding-left: 0;
        margin-right: 0;
    }
    section.shop-info-box .shop-SNS img{
        max-width: 60px;
    }
    section.shop-info-box .shop-SNS{
        margin-bottom: 2rem;
    }
    section.shop-info-box .post-area{
        display: unset;
    }
    /*------------------------------
                記事一覧
    -------------------------------*/
    .article-list-box{
        margin-top: calc(15% + 75px);
    }
    .h3_subtitle,
    .h2_subtitle{
        font-size: 1.25rem;
        margin-bottom: 10%;
    }

}

@media screen and (min-width: 1025px) {
    .s-card03-list article,
    .s-card03-list article:nth-child(n+2){
        width: 320px;
    }
    .s-card03-list article:first-child .text,
    .s-card03-list article:nth-child(n+2) .text,
    .ranking-box li:nth-child(n+2) .text,
    .ranking-box li:first-child .text,
    .s-card01-list article .text{
        min-height: 230px;
    }
    .s-card04-list article .text {
        min-height: 230px;
    }
    /*------------------------
                TOP
    --------------------------*/
    .home-mainimg li{
        height: 100vh;
    }
    /*------------------------
                nav
    --------------------------*/
    .active .head-nav.open{
        width: 100%;
    }
    header .main,
    header .sub{
        display: none;
    }
    header .PC-main{
        display: block;
        width: 100vw;
    }
    div.PC-main nav .PC-nuv{
        display: flex;
        flex-wrap: wrap;
        padding: 2rem 15px;
    }
    header.header .head-nav nav{
        height: 100%;
        overflow-y: scroll;
    }
    header.header .head-nav nav::-webkit-scrollbar{
        display: none;
    }
    div.PC-main nav ul li {
        width: 50%;
        font-size: 1.6rem;
        padding: 1.5rem 0;
    }
    div.PC-main nav ul li:hover{
        color: var(--main);
    }
    div.PC-main nav ul li a{
        font-size: 1.6rem;
        line-height: 1.2;
    }
    div.PC-main nav ul li:nth-child(3),
    div.PC-main li.sub-nav ul li{
        width: 100%;
    }
    div.PC-main li.sub-nav ul li{
        padding: 1rem;
        position: relative;
    }
    div.PC-main li.sub-nav ul li:first-child{
        padding-top: 1.5rem;
    }
    div.PC-main li.sub-nav ul li a{
        padding-left: 2rem;
        font-size: 1.2rem;
    }
    div.PC-main li.sub-nav ul li a:before{
        content: "";
        width: 20px;
        height: 3px;
        background: var(--black);
        position: absolute;
        top: 50%;
        left: 5%;
    }
    header.header .main-menu form.search-form{
        max-width: 720px;
    }
    header.header .main-menu form.search-form img{
        width: 40px;
        height: 40px;
    }
    header.header .PC-main .main-menu .search-box{
        width: 100%;
        margin: 2rem 0;
    }
    header.header .main-menu .input-field{
        width: 92%;
    }
    div.TOP-allcategory ul.category-navTOP{
        width: 95%;
        margin: 2.5rem auto 4rem;
    }

    section.TOP-section article, .TOP-category article{
        margin-bottom: 3rem;
    }
    /*------------------------------
                記事一覧
    -------------------------------*/
    h4.post-title,
    .s-card03-list article:first-child h4.post-title,
    .ranking-box li:first-child h4.post-title{
        -webkit-line-clamp: 4;
    }

}
@media screen and (min-width: 1081px) {
    header .header-flex{
        padding-right: 0;
        padding-left: 0;
    }
    .TOP-category, .TOP-section{
        padding: 8rem 0 5rem !important;
    }
    /*------------------------
            header PC-nav
    --------------------------*/
    div.PC-main nav .PC-nuv{
        padding: 3rem 0;
    }

    /*------------------------
            記事詳細
    --------------------------*/
    .container article.article-content{
        padding-left: 0;
        padding-right: 0;
    }
    .container{
        max-width: var(--contents_width);
        margin: 0 auto;
        padding: 0;
    }
    .container main{
        width: calc(100% - 350px);
    }
    /*------------------------------
                記事一覧
    -------------------------------*/
    .article-list-box{
        margin-top: 200px;
        margin-bottom: 5rem;
        padding-bottom: 0;
    }

}

