@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@900&display=swap');

/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

:root{
    --base-color: #000;
    --yellow: #F8E900;
    --red: #E22715;
}

body{
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: var(--base-color);
    letter-spacing: 0;
    font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    padding-top: 80px;
}
#body-wrap{
    min-width: 1200px;
    overflow-x: hidden;
}

body.home .wrap,
.wrap{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

a{
    transition: .2s;
    text-decoration: none;
}
a:hover{
    opacity: .6;
    text-decoration: none;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}
.padding-top{
    padding-top: 100px;
}
.padding-bottom{
    padding-bottom: 100px;
}
.padding-tb{
    padding: 100px 0;
}

/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    transition : all 600ms;
    }

.ts1 {
    transition-delay: 300ms;
}

.ts2 {
    transition-delay: 600ms;
}

.ts3 {
    transition-delay: 900ms;
}

.ts4 {
    transition-delay: 1200ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

.fadeino.scrollin {
   opacity : 1;
}


/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

/* FOOTER */
#footer{
    margin-top: 80px;
    text-align: center;
    padding-bottom: 60px;
}
#footer .footer-text{
    font-size: 20px;
    font-weight: 900;
}
#footer .footer-link a{
    text-decoration: underline;
}


/* LINEアカウント */
.line-sec{
    padding-top: 280px;
}
.line-sec .wrap{
    max-width: 1600px;
    padding: 0 50px;
}
.line-sec__cont{
    border: 2px solid var(--base-color);
    position: relative;
    z-index: 0;
    border-radius: 15px;
    background-color: #fff;
    padding: 7.4% 0 5.4% 7.69%;
}
.line-sec__cont::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../img/line-sec-bg.webp) no-repeat center center / cover;
    transform: translate(-50%,-50%);
    z-index: -1;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}
.line-sec__cont-ttl{
    position: absolute;
    top: -18%;
    left: 0;
    z-index: 1;
    width: 66.5%;
}
.line-sec__cont-img{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 37%;
}
.line-sec__cont-box{
    width: 55.2%;
}
.line-sec__cont-box__flex{
    justify-content: space-between;
}
.line-sec__cont-box__flex-item.n1{
    width: 44%;
}
.line-sec__cont-box__flex-item.n2{
    width: 53.5%;
}
.line-sec__cont-box__text{
    font-size: 40px;
    font-weight: 900;
    border-bottom: 5px solid #fff;
    color: #fff;
    margin: 40px 0;
}
.line-sec__cont-box__flex-item__text{
    padding: 15px 0 0 15px;
    color: #fff;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 900;
}
.line-sec__cont-box__bnr{
    margin-bottom: 30px;
}
.store-sec__ttl{
    margin-bottom: 40px;
    text-align: center;
}
.store-sec__cont{
    background-color: #fff;
    border-radius: 20px;
    border: 3px solid var(--base-color);
    max-width: 1200px;
    padding: 30px;
    margin: 0 auto;
}
.store-sec__cont-flex{
    align-items: flex-end;
    margin-bottom: 40px;
}
.store-sec__cont-thumb{
    width: 280px;
}
.store-sec__cont-thumb img{
    width: 100%;
}
.store-sec__cont-box{
    width: calc(100% - 280px);
    padding-left: 50px;
}
.store-sec__cont-box__name{
    font-size: 32px;
    margin-bottom: 15px;
}
.store-sec__cont-box__info table{
    width: 100%;
}
.store-sec__cont-box__info table th,
.store-sec__cont-box__info table td{
    padding: 4px 20px;
    border: 1px solid #ccc;
}
.store-sec__cont-box__info th{
    width: 200px;
    text-align: center;
    background-color: #f2f2f2;
}
.store-sec__cont-box__info td{
    width: calc(100% - 200px);
}
.store-sec__cont-box__info td br:not(.block){
    display: none;
}
.store-sec__cont-map iframe{
    width: 100%;
    height: 550px;
    vertical-align: bottom;
}


@media screen and (max-width: 1560px){
    /* INDEX */
    .line-sec__cont-box__flex-item__text{
        font-size: 16px;
    }
    .line-sec__cont-box__text{
        font-size: 30px;
        margin: 30px 0;
    }
}


@media screen and (max-width: 991px){
    #body-wrap{
        min-width: 320px;
    }
    body.home .wrap,
    .wrap{
        padding: 0 20px;
    }


    /* HEADER */
    #header{
        height: 60px;
    }


    /* FOOTER */
    #footer{
        margin-top: 30px;
        padding-bottom: 40px;
    }


    /* LINEアカウント */
    .line-sec{
        padding-top: 100px;
    }
    .line-sec__cont-ttl{
        position: initial;
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
    }
    .line-sec__cont-ttl img{
        width: 530px;
    }
    .line-sec__cont{
        padding: 50px 50px 20px;
    }
    .line-sec__cont-box{
        width: 100%;
        margin-bottom: 50px;
    }
    .line-sec__cont-box__ttl{
        text-align: center;
    }
    .line-sec__cont-box__ttl img{
        width: 300px;
    }
    .line-sec__cont-img{
        width: 100%;
        text-align: center;
        position: initial;
    }
    .line-sec__cont-img imG{
        width: 400px;
    }
    .line-sec__cont-box__flex{
        gap: 30px;
    }
    .line-sec__cont-box__flex-item.n1,
    .line-sec__cont-box__flex-item.n2{
        width: 100%;
    }
    .line-sec__cont-box__flex-item__ttl img{
        width: auto;
        height: 50px;
    }
    .line-sec__cont-box__flex-item__text br{
        display: none;
    }

    .store-sec__cont-thumb{
        width: 100%;
    }
    .store-sec__cont-box{
        width: 100%;
        margin-top: 30px;
        padding-left: 0;
    }
    .store-sec__cont-box__info td br{
        display: block;
    }
    .store-sec__cont-box__name{
        font-size: 26px;
    }
}


@media screen and (max-width: 767px){
    /* HEADER */
    #header{
        height: 50px;
    }
    #header .header-logo img{
        width: 120px;
    }


    /* FOOTER */
    #footer .footer-text{
        font-size: 14px;
    }
    #footer {
        margin-top: 20px;
        padding-bottom: 25px;
    }


    /* LINEアカウント */
    .line-sec{
        padding-top: 60px;
    }
    .line-sec .wrap{
        padding: 0 30px;
    }
    .line-sec__cont{
        border-radius: 6px;
    }
    .line-sec__cont::before {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        background: #06C755;
    }
    .line-sec__cont{
        padding: 30px 25px 5px;
    }
    .line-sec__cont-box__ttl img{
        width: 160px;
    }
    .line-sec__cont-ttl{
        margin-bottom: 10px;
    }
    .line-sec__cont-box__text{
        font-size: 18px;
        margin: 15px 0;
        border-bottom-width: 2px;
    }
    .line-sec__cont-box__flex-item__ttl img {
        height: 12vw;
    }
    .line-sec__cont-box__flex-item__text{
        padding-left: 0;
        font-size: 14px;
    }
    .line-sec__cont-box__bnr img{
        width: auto;
        height: 20vw;
    }
    .store-sec__cont-thumb{
        width: 100%;
    }
    .store-sec__cont-thumb img{
        width: 150px;
        display: block;
        margin: 0 auto;
    }
    .store-sec__cont-box{
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .store-sec__cont-box__name{
        text-align: center;
        font-size: 22px;
    }
    .store-sec__cont-box__info table th, .store-sec__cont-box__info table td{
        display: block;
        width: 100%;
        text-align: left;
        font-size: 14px;
    }
    .store-sec__cont-box__info table td{
        padding: 10px 0;
        border: none;
    }
    .store-sec__cont{
        padding: 30px 20px;
        border-radius: 10px;
        border-width: 2px;
    }
    .store-sec__cont-flex{
        margin-bottom: 20px;
    }
    .store-sec__cont-map iframe{
        height: 200px;
    }
    .store-sec__ttl img{
        width: 200px;
    }
}