﻿@charset "utf-8";


/* webfont
---------------------------------------------------- */
.gfont-e {
    font-family: 'Cookie', cursive;
}


/*------------------------------------------------------------------
  anchor
------------------------------------------------------------------*/
.anchor{
    padding-top: 120px;
    margin-top: -120px;
    position: relative;
    z-index: -1;
}
@media screen and (max-width:767px){
    .anchor{
        padding-top: 70px;
        margin-top: -70px;
    }
}

/*--------------------------------------------------
  header
---------------------------------------------------*/

/* header
-------------------------------------------------*/
.header{
    position: relative;
    height: 110px;
    z-index: 1000;
}
@media screen and (max-width:991px){
    .header{
        height: 80px;
    }
}
@media screen and (max-width:575px){
    .header{
        height: 70px;
    }
}
/* header-overlay
-------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    transition: .2s ease-out;
    z-index: 1;
}
.header-overlay.is-show{
    visibility: visible;
    opacity: 1;
}
@media screen and (max-width:767px){
    .header-overlay{
        display: none;
    }
}
/* header-logo
-------------------------------------------------*/
.header-logo{
    position: fixed;
    top: 18px;
    left: 30px;
    width: 180px;
    z-index: 1;
}
.header-logo.open{
    filter: brightness(100);
}
@media screen and (max-width:991px){
    .header-logo{
        top: 13px;
        left: 10px;
        width: 140px;
    }
}
@media screen and (max-width:575px){
    .header-logo{
        top: 10px;
        width: 120px;
    }
}
/* header-nav
-------------------------------------------------*/
.header-nav{
    position: fixed;
    top: 0;
    left: 100%;
    width: 300px;
    height: 100vh;
    padding: 120px 15px 150px;
    background: #fff;
    transition: .2s ease-out;
    z-index: 2;
}
.header-nav.is-show{
    transform: translateX(-100%);
}
@media screen and (max-width:991px){
    .header-nav{
        padding: 90px 15px 150px;
        overflow-y: auto;
    }
}
@media screen and (max-width:767px){
    .header-nav{
        width: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
    }
    .header-nav.is-show{
        visibility: visible;
        opacity: 1;
        transform: initial;
    }
}
/* header-nav-logo
-------------------------------------------------*/
.header-nav-logo{
    width: 200px;
    margin: 0 auto 30px;
}
/* header-nav-main
-------------------------------------------------*/
.header-nav-main{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    margin-bottom: 15px;
    list-style: none;
}
.header-nav-main > li > a{
    position: relative;
    display: block;
    padding: 18px 15px 15px;
    background: #efefef;
    color: #333;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.header-nav-main > li > a::after{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    transition: .2s ease-out;
}
.header-nav-main > li > a:hover{
    background: #efefef;
}
.header-nav-main > li > a:hover::after{
    right: 5px;
}
/* header-nav-sub
-------------------------------------------------*/
.header-nav-sub{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    list-style: none;
}
/* header-contact
-------------------------------------------------*/
.header-contact{
    display: block;
    padding: 18px 15px 15px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.header-contact:hover{
    background: #555;
    color: #fff;
}
/* header-mainsite
-------------------------------------------------*/
.header-mainsite{
    display: block;
    padding: 18px 15px 15px;
    background: #fce1d8;
    color: #4a270d;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.header-mainsite:hover{
    background: #febda7;
    color: #4a270d;
}
/* header-hamburger
-------------------------------------------------*/
.header-hamburger{
    position: fixed;
    top: 15px;
    right: 20px;
    width: 80px;
    aspect-ratio: 1 / 1;
    background: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}
.header-hamburger .line{
    position: absolute;
    left: 28px;
    width: 24px;
    height: 1px;
    background: #333;
    transition: .2s ease-out;
}
.header-hamburger .line:nth-of-type(1){
    top: 33px;
}
.header-hamburger .line:nth-of-type(2){
    top: 39px;
}
.header-hamburger .line:nth-of-type(3){
    top: 45px;
}
/* オープン時動作 */
.header-hamburger.open .line:nth-of-type(1){
    top: 39px;
    transform: rotate(45deg);
}
.header-hamburger.open .line:nth-of-type(2){
    opacity: 0;
}
.header-hamburger.open .line:nth-of-type(3){
    top: 39px;
    transform: rotate(-45deg);
}
@media screen and (max-width:991px){
    .header-hamburger{
        top: 10px;
        right: 10px;
        width: 60px;
    }
    .header-hamburger .line{
        left: 18px;
    }
    .header-hamburger .line:nth-of-type(1){
        top: 23px;
    }
    .header-hamburger .line:nth-of-type(2){
        top: 29px;
    }
    .header-hamburger .line:nth-of-type(3){
        top: 35px;
    }
    .header-hamburger.open .line:nth-of-type(1),
    .header-hamburger.open .line:nth-of-type(3){
        top: 29px;
    }
}
@media screen and (max-width:575px){
    .header-hamburger{
        width: 50px;
    }
    .header-hamburger .line{
        width: 18px;
        left: 16px;
    }
    .header-hamburger .line:nth-of-type(1){
        top: 19px;
    }
    .header-hamburger .line:nth-of-type(2){
        top: 24px;
    }
    .header-hamburger .line:nth-of-type(3){
        top: 29px;
    }
    .header-hamburger.open .line:nth-of-type(1),
    .header-hamburger.open .line:nth-of-type(3){
        top: 24px;
    }
}

/* header-hamburger header-phone
-------------------------------------------------*/
.header-phone {
    display: none;
}

.header-instagram,.header-phone {
    position: fixed;
    top: 15px;
    width: 80px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    z-index: 3;
}

.header-instagram a,.header-phone a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-instagram img,.header-phone img {
    width: 65%;
}

.header-instagram {
    right: 110px;
}

.header-phone {
    right: 170px;
}

@media screen and (max-width:991px){
    .header-phone {
        display: block;
    }

    .header-instagram,.header-phone {
        top: 10px;
        width: 60px;
    }

    .header-instagram img,.header-phone img {
        width: 70%;
    }

    .header-instagram {
        right: 75px;
    }
    
    .header-phone {
        right: 130px;
    }
}

@media screen and (max-width:575px){
    .header-instagram,.header-phone {
        width: 50px;
    }
    .header-instagram img,.header-phone img {
        width: 80%;
    }
    .header-instagram {
        right: 65px;
    }
    .header-phone {
        right: 115px;
    }
}


/*--------------------------------------------------
  footer
---------------------------------------------------*/

/* footer
-------------------------------------------------*/
.footer{
    padding: 15px 0;
    background: #333;
}
/* footer-nav
-------------------------------------------------*/
.footer-nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 10px;
    list-style: none;
}
.footer-nav > li > a{
    color: #fff;
}


/*--------------------------------------------------
  home-hero
---------------------------------------------------*/

/* home-hero
-------------------------------------------------*/
.home-hero{
    overflow: hidden;
}
.home-hero img{
    transform: scale(1.1);
    opacity: 0;
    animation: homeNbHero 1.2s forwards ease-out;
}
@keyframes homeNbHero {
    from{
        transform: scale(1.1);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

/*--------------------------------------------------
  home-feature
---------------------------------------------------*/

/* home-feature
-------------------------------------------------*/
.home-feature{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 50px;
    list-style: none;
}
@media screen and (max-width:991px){
    .home-feature{
        column-gap: 30px;
        row-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-feature{
        grid-template-columns: 1fr;
    }
}
/* home-feature-card
-------------------------------------------------*/
.home-feature-card{
    padding: 50px;
    background: #f5f5f5;
}
.home-feature-card .image{
    margin-bottom: 50px;
}
.home-feature-card .num{
    font-size: 180%;
    font-family: "Cookie";
    line-height: 1;
    margin-bottom: 5px;
}
.home-feature-card .title{
    font-size: 150%;
    line-height: 1.5;
    margin-bottom: 20px;
}
@media screen and (max-width:991px){
    .home-feature-card{
        padding: 30px;
    }
    .home-feature-card .image{
        margin-bottom: 30px;
    }
    .home-feature-card .num{
        font-size: 150%;
    }
    .home-feature-card .title{
        font-size: 130%;
    }
}

/*--------------------------------------------------
  home-news
---------------------------------------------------*/

/* home-news
-------------------------------------------------*/
.home-news{
    padding: 80px 0;
    background: #efefef;
}
@media screen and (max-width:991px){
    .home-news{
        padding: 40px 0;
    }
}


/*--------------------------------------------------
  page-top
---------------------------------------------------*/

/* page-top
-------------------------------------------------*/
.page-top{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    margin-bottom: 80px;
    overflow: hidden;
    z-index: 1;
}
.page-top .title{
    font-size: 300%;
    font-weight: 400;
    text-align: center;
    line-height: 1.1;
}
.page-top .title span{
    margin-top: 15px;
    font-size: 50%;
    display: block;
}
.page-top .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.page-top .image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.7;
    content: "";
}
.page-top .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: pageNbTop .8s forwards ease-out;
}
@keyframes pageNbTop {
    from{
        transform: scale(1.05);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}
@media screen and (max-width: 1399px) {
    .page-top{
        height: 250px;
    }
    .page-top .title {
        font-size: 250%;
    }
}
@media screen and (max-width: 991px) {
    .page-top{
        height: 200px;
        margin-bottom: 40px;
    }
    .page-top .title {
        font-size: 200%;
    }
}
@media screen and (max-width: 767px) {
    .page-top{
        height: 150px;
    }
    .page-top .title {
        font-size: 180%;
    }
}



/*--------------------------------------------------
  plan
---------------------------------------------------*/

/* plan-price-list
-------------------------------------------------*/
.plan-price-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 50px;
    list-style: none;
}
@media screen and (max-width: 991px) {
    .plan-price-list{
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}

/* plan-price-box
-------------------------------------------------*/
.plan-price-box{
    position: relative;
    padding: 60px 50px 50px;
    background: #f5f5f5;
}
.plan-price-box.premior{
    background: #faf4f4;
}
.plan-price-box.standard{
    background: #f6f5ef;
}
.plan-price-box.mini{
    background: #eef2f4;
}
.plan-price-box .ribon{
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6em 1.5em;
    background: #333;
    font-size: 120%;
    color: #fff;
    line-height: 1;
}
.plan-price-box .title{
    font-size: 260%;
    text-align: center;
    margin-bottom: 20px;
}
.plan-price-box .price{
    font-size: 240%;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
}
.plan-price-box .price .tax{
    font-size: 40%;
}
.plan-price-box .price .holiday{
    font-size: 50%;
}
.plan-price-box .menu{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    list-style: none;
}
.plan-price-box .menu > li{
    padding: 0.7em 1em;
    background: #fff;
    font-size: 120%;
    line-height: 1.5;
}
.plan-price-box .menu > li strong{
    font-size: 120%;
}
.plan-price-box .menu > li small{
    font-size: 80%;
}
@media screen and (max-width: 991px) {
    .plan-price-box{
        padding: 40px;
    }
}
@media screen and (max-width: 767px) {
    .plan-price-box{
        padding: 50px 20px 30px;
    }
}

/* plan-option-list
-------------------------------------------------*/
.plan-option-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    list-style: none;
}
@media screen and (max-width: 991px) {
    .plan-option-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .plan-option-list{
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}

/* plan-option-card
-------------------------------------------------*/
.plan-option-card{
    padding: 30px;
    background: #f5f5f5;
}
.plan-option-card .sub{
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #aaa;
}
.plan-option-card .category{
    width: fit-content;
    padding: 0.4em 1em;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    background: #333;
    font-size: 90%;
    color: #fff;
    line-height: 1;
}
.plan-option-card .title{
    margin-top: 15px;
    font-size: 160%;
    text-align: center;
    line-height: 1.2;
}
.plan-option-card .title small{
    font-size: 80%;
}
.plan-option-card .price{
    margin-top: 10px;
    font-size: 130%;
    text-align: center;
    line-height: 1;
}
.plan-option-card hr{
    display: block;
    width: 100%;
    margin: 15px 0;
    border-top: 1px solid #aaa;
}
.plan-option-card .detail{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    list-style: none;
}
.plan-option-card .detail > li{
    position: relative;
    font-size: 110%;
    padding-left: 1em;
    line-height: 1.4;
}
.plan-option-card .detail > li::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
}
.plan-option-card .attention{
    margin-top: 15px;
    padding-left: 1em;
    line-height: 1.5;
    text-indent: -1em;
}
@media screen and (max-width: 767px) {
    .plan-option-card{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 15px;
        column-gap: 15px;
    }
    .plan-option-card .image{
        flex-shrink: 0;
        width: 100px;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }
    .plan-option-card .image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .plan-option-card .main{
        flex: 1;
    }
    .plan-option-card .sub{
        width: 100%;
    }
    .plan-option-card .category{
        margin-top: initial;
        margin-left: initial;
        margin-right: initial;
    }
    .plan-option-card .title{
        margin-top: 10px;
        font-size: 150%;
        text-align: left;
    }
    .plan-option-card .price{
        font-size: 120%;
        text-align: left;
    }
}
@media screen and (max-width: 350px) {
    .plan-option-card .image{
        width: 80px;
    }
    .plan-option-card .title{
        font-size: 140%;
    }
    .plan-option-card .price{
        font-size: 110%;
    }
}



/* plan-memorial-list
-------------------------------------------------*/
.plan-memorial-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    list-style: none;
}
@media screen and (max-width: 991px) {
    .plan-memorial-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .plan-memorial-list{
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}

/* plan-memorial-card
-------------------------------------------------*/
.plan-memorial-card{
    padding: 30px;
    background: #f5f5f5;
}
.plan-memorial-card .sub{
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #aaa;
}
.plan-memorial-card .title{
    margin-top: 15px;
    font-size: 160%;
    text-align: center;
    line-height: 1.2;
}
.plan-memorial-card .title small{
    font-size: 80%;
}
.plan-memorial-card .price{
    margin-top: 10px;
    font-size: 130%;
    text-align: center;
    line-height: 1;
}
.plan-memorial-card hr{
    display: block;
    width: 100%;
    margin: 15px 0;
    border-top: 1px solid #aaa;
}
.plan-memorial-card .detail{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 15px;
    list-style: none;
    text-align: center;
}
.plan-memorial-card .detail > li{
    padding: 5px;
    background: #fff;
    line-height: 1.4;
}
@media screen and (max-width: 767px) {
    .plan-memorial-card{
        padding: 20px;
    }
    .plan-memorial-card .title{
        font-size: 150%;
    }
    .plan-memorial-card .price{
        font-size: 120%;
    }
}
@media screen and (max-width: 350px) {
    .plan-memorial-card .title{
        font-size: 140%;
    }
    .plan-memorial-card .price{
        font-size: 110%;
    }
}

/* plan-flow
-------------------------------------------------*/
.plan-flow{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    list-style: none;
}
@media screen and (max-width: 767px) {
    .plan-flow{
        row-gap: 20px;
    }
}

/* plan-flow-item
-------------------------------------------------*/
.plan-flow-item{
    position: relative;
    padding: 30px;
    background: #f5f5f5;
}
.plan-flow-item::after{
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-size: 150%;
    font-weight: bold;
    line-height: 1;
}
.plan-flow-item:last-of-type:after{
    display: none;
}
.plan-flow-item .num{
    margin-bottom: 5px;
    line-height: 1;
}
.plan-flow-item .title{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #aaa;
    font-size: 150%;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .plan-flow-item{
        padding: 30px 24px;
    }
    .plan-flow-item::after{
        bottom: -19px;
    }
    .plan-flow-item .title{
        padding-bottom: 12px;
        margin-bottom: 12px;
        font-size: 140%;
    }
}

/* plan-faq
-------------------------------------------------*/
.plan-faq{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 50px;
}

/* plan-faq-item
-------------------------------------------------*/
.plan-faq-item{
    width: 100%;
    background: #f5f5f5;
}
.plan-faq-item dt{
    position: relative;
    padding: 20px 40px 20px 20px;
    margin-left: 1.5em;
    font-size: 120%;
    font-weight: normal;
    line-height: 1.5;
    cursor: pointer;
}
.plan-faq-item dt::before{
    position: absolute;
    top: 20px;
    left: 0;
    content: "Q.";
}
.plan-faq-item dt::after{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-size: 70%;
    font-weight: bold;
    color: #666;
}
.plan-faq-item.open dt::after{
    content: "\f077";
}
.plan-faq-item dd{
    display: none;
    padding: 20px 0;
    margin: 0 20px;
    border-top: 1px solid #999;
    line-height: 1.8;
}

/* plan-faq-syuttyo
-------------------------------------------------*/
.plan-faq-syuttyo{
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
}
.plan-faq-syuttyo:last-of-type{
    margin-bottom: 0;
}
.plan-faq-syuttyo .title{
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #aaa;
    font-weight: bold;
}

/* plan-contact-box
-------------------------------------------------*/
.plan-contact-box{
    padding: 40px;
    border: 1px solid #aaa;
}
.plan-contact-box .title{
    margin-bottom: 30px;
    font-size: 150%;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .plan-contact-box{
        padding: 30px;
    }
    .plan-contact-box .title{
        margin-bottom: 20px;
        font-size: 120%;
    }
}


/*--------------------------------------------------
  gallery
---------------------------------------------------*/

/* gallery-list
-------------------------------------------------*/
.gallery-list {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    column-gap: 20px;
    row-gap: 20px;
    list-style: none;
}
@media screen and (max-width: 767px) {
    .gallery-list {
        grid-template-columns: repeat(3,1fr);
        column-gap: 10px;
        row-gap: 10px;
    }
}


/*--------------------------------------------------
  blog
---------------------------------------------------*/

/* blog-list
-------------------------------------------------*/
.blog-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 30px;
    list-style: none;
}
@media screen and (max-width: 1199px) {
    .blog-list {
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width: 991px) {
    .blog-list {
        column-gap: 15px;
        row-gap: 15px;
    }
}
@media screen and (max-width: 767px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
}

/* blog-box
-------------------------------------------------*/
.blog-box{
    position: relative;
    display: block;
    padding: 20px 20px 30px;
    background-color: #f0f0f0;
}
.blog-box::after{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid #333;
    border-left: 5px solid transparent;
    border-right: 5px solid #333;
    content: "";
}
.blog-box .image{
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
}
.blog-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-box .detail{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    column-gap: 10px;
}
.blog-box .date {
    flex-shrink: 0;
    font-weight: 500;
    color: #999;
    font-size: 80%;
}
.blog-box .category {
    display: inline-block;
    padding: 5px 10px;
    background-color: #333;
    font-size: 80%;
    color: #fff;
    text-align: center;
    line-height: 1;
}
.blog-box .text {
    line-height: normal;
    color: #333;
}
@media screen and (max-width: 767px) {
    .blog-box{
        display: flex;
        align-items: flex-start;
        column-gap: 15px;
        padding: 15px;
    }
    .blog-box::after{
        display: none;
    }
    .blog-box .image{
        flex-shrink: 0;
        width: 100px;
        margin-bottom: 0;
    }
    .blog-box .body{
        flex: 1;
    }
    .blog-box .detail{
        justify-content: flex-start;
    }
}
@media screen and (max-width: 575px) {
    .blog-box .image{
        width: 80px;
    }
}

/* blog-category-list
-------------------------------------------------*/
.blog-category-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 10px;
    row-gap: 10px;
    margin-bottom: 60px;
    list-style: none;
}
@media screen and (max-width: 991px) {
    .blog-category-list {
        grid-template-columns: repeat(3,1fr);
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767px) {
    .blog-category-list {
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width: 575px) {
    .blog-category-list {
        column-gap: 5px;
        row-gap: 5px;
    }
}

/* blog-category-btn
-------------------------------------------------*/
.blog-category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5em;
    padding: 0 10px;
    border: 1px solid #aaa;
    color: #333;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.blog-category-btn:hover{
    background: #efefef;
    color: #333;
}
.blog-category-btn.active{
    background: #333;
    border-color: #333;
    color: #fff;
}

/* blog-contents
-------------------------------------------------*/
.blog-contents {
    max-width: 900px;
    margin: 0 auto;
}
.blog-contents .detail{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    column-gap: 15px;
}
.blog-contents .date {
    flex-shrink: 0;
    font-weight: 500;
    color: #999;
}
.blog-contents .category {
    display: inline-block;
    padding: 5px 10px;
    background-color: #333;
    font-size: 90%;
    color: #fff;
    text-align: center;
    line-height: 1;
}
.blog-contents .title {
    font-size: 160%;
    padding-bottom: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid #aaa;
}
.blog-contents .image-list{
    display: flex;
    justify-content: center;
    column-gap: 30px;
    margin-bottom: 30px;
}
.blog-contents .image-list .image{
    flex: 1;
    aspect-ratio: 1 / 1;
    max-width: 320px;
}
.blog-contents .image-list .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .blog-contents {
        padding: 30px;
    }
}
@media screen and (max-width: 575px) {
    .blog-contents {
        padding: 0;
        border: initial;
    }
    .blog-contents .image-list{
        column-gap: 10px;
    }
}


/*--------------------------------------------------
  contact
---------------------------------------------------*/

/* contact-tel
-------------------------------------------------*/
.contact-tel{
    display: flex;
    border: 1px solid #ccc;
    margin-bottom: 60px;
}
.contact-tel .title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    padding: 30px;
    background: #efefef;
    font-size: 150%;
}
.contact-tel .detail{
    width: 60%;
    padding: 30px;
    background: #fff;
    text-align: center;
}
.contact-tel .tel{
    margin-bottom: 10px;
    font-size: 150%;
    line-height: 1;
}
.contact-tel .num{
    font-size: 200%;
    color: #333;
}
@media screen and (max-width: 991px) {
    .contact-tel{
        margin-bottom: 30px;
    }
    .contact-tel .title{
        font-size: 120%;
    }
    .contact-tel .tel{
        margin-bottom: 5px;
        font-size: 120%;
    }
}
@media screen and (max-width: 767px) {
    .contact-tel{
        display: block;
    }
    .contact-tel .title{
        width: 100%;
        padding: 20px;
    }
    .contact-tel .detail{
        width: 100%;
        padding: 20px;
    }
}

.contact_privacy {
    margin: 20px 0px;
    height: 300px;
    overflow: auto;
    font-size: 90%;
    line-height: 1.5em;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    padding: 15px;
}
.contact_privacy h3 {
    font-family: 'Cookie', cursive;
    font-size: 220%;
    text-align: center;
    line-height: normal;
    margin-bottom: 10px;
}
.contact_privacy h3 span {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    display: block;
    font-size: 40%;
}
.contact_privacy h4 {
    margin-top: 15px;
    overflow: hidden;
    font-size: 100%;
    font-weight: bold;
    margin-bottom: 10px
}
.contact_privacy h4 span {
    position: relative;
    display: inline-block;
    margin-right: 0 2.5em;
    padding-right: 0.5em;
    text-align: left;
}
.contact_privacy h4 span::before,
.contact_privacy h4 span::after {
    position: absolute;
    top: 50%;
    content: '';
    width: 1420%;
    height: 1px;
    background-color: #333;
}
.contact_privacy h4 span::before {
    right: 100%;
}
.contact_privacy h4 span::after {
    left: 100%;
}
.contact_privacy ol {
    margin-left: 20px;
}
@media print, screen and (min-width: 768px) {
    .contact_privacy {
        margin: 30px 0px;
        padding: 15px 20px 20px;
    }
    .contact_privacy h3 {
        font-size: 250%;
        margin-bottom: 20px;
    }
}
@media print, screen and (min-width: 992px) {
    .contact_privacy {
        padding: 20px 30px 30px;
    }
}


/*--------------------------------------------------
  common
---------------------------------------------------*/

/* shop-list
-------------------------------------------------*/
.shop-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 16px;
    row-gap: 10px;
    list-style: none;
}
@media screen and (max-width:991px){
    .shop-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .shop-list{
        grid-template-columns: 1fr;
    }
}
/* shop-list-item
-------------------------------------------------*/
.shop-list-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 10px 40px 10px 10px;
    background: #efefef;
    color: #333;
    line-height: 1.4;
    --arrow-size: 30px;
}
.shop-list-item::before{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--arrow-size);
    height: var(--arrow-size);
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 10px;
    color: #666;
    transition: .4s ease-out;
    z-index: 2;
}
.shop-list-item::after{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--arrow-size);
    height: var(--arrow-size);
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 50%;
    content: "";
    transition: .4s ease-out;
    z-index: 1;
}
.shop-list-item .image{
    flex-shrink: 0;
    width: 90px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.shop-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: .4s ease-out;
}
.shop-list-item .title{
    line-height: 1.4;
}
/* ホバー時動作 */
@media (hover:hover) {
    .shop-list-item:hover::before{
        color: #fff;
    }
    .shop-list-item:hover::after{
        transform: translateY(-50%) scale(0.8);
        background: #333;
        border-color: #333;
    }
    .shop-list-item:hover .image img{
        transform: scale(1);
        filter: brightness(0.6);
    }
}
@media screen and (max-width:767px){
    .shop-list-item .image{
        width: 70px;
    }
}

/*--------------------------------------------------
  copyright
---------------------------------------------------*/

/* copyright
---------------------------------------------------- */
.copyright {
    background: url("../images/bg_footer.png") no-repeat bottom center #fff;
    padding: 30px 0px 80px;
}
.copyright small {
    text-align: center;
    display: block;
    color: #999;
    font-size: 70%;
}
.copyright small i {
    margin-right: 5px;
}
@media print, screen and (max-width: 767px) {
    .copyright {
        padding: 15px 0px 70px;
    }
}

/* copyright-logo
---------------------------------------------------- */
.copyright-logo {
    width: 200px;
    margin: 0 auto 20px;
    text-align: center;
}


/* paging
------------------------------------------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.paging-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #888 !important;
    transition: .2s ease-out;
}
.paging-text.current{
    background: #333;
    border-color: #333;
    color: #fff !important;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background: #333;
        border-color: #333;
    }
    .paging-text:hover a{
        color: #fff !important;
    }
}
@media screen and (max-width:767px){
    .paging{
        column-gap: 5px;
    }
    .paging-text{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


/* pagetop
---------------------------------------------------- */
#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}
#pagetop img {
    width: 50px;
}