@charset "utf-8";
/* CSS Document */

/*========= レイアウトのためのCSS ===============*/

body {
    font-family: source-han-sans-japanese, sans-serif;

    font-weight: 400;

    font-style: normal;
}

h1 {
    font-size: 1.2rem;
}

h2 {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 30px 0;
}

p {
    margin-top: 20px;
}

small {
    color: #fff;
    display: block;
    text-align: center;
}

#header {
    background: #fff;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.logo_wrapper {
    position: relative;
}

.logo_wrapper img {
    width: 250px;
    display: block;
    margin: 0 auto;
}

.logo_wrapper .link_icon {
    position: absolute;
    width: 100px;
    top: 30px;
    right: 30px;
}

@media screen and (max-width:768px) {
    #header {
        text-align: left;
    }

    .logo_wrapper img {
        width: 180px;
    }

    .logo_wrapper .link_icon {
        position: absolute;
        width: 55px;
        top: 30px;
        right: 10px;
    }
}

section:nth-child(2n) {
    background: #f3f3f3;
}

#footer {
    background: #333;
    padding: 20px;
}

.shita {
    font-size: 13px;
    color: #696969;
    text-align: center;
}


.top-logo img {
    margin: 0 auto;
    display: block;
    padding: 40px;
}

.comment1 {
    padding: 40px 0;
    text-align: center;
}

.shop_list_ttl {
    margin: 0;
    font-size: 24px;
    position: relative;
}

.comment1 h2 {
    text-align: center;
    font-size: 22px;

    line-height: 30px;
    color: #161616;
}

@media screen and (max-width:768px) {
    .comment1 h2 {
        font-size: 20px;
    }
}

.comment1 p {
    font-size: 15px;
    line-height: 5px;
    color: #333;
    vertical-align: middle;
    letter-spacing: -1px;
    margin-top: -30px;
}

.shutter {
    display: flex;
    position: relative;
    margin: 0 auto;
    padding: 1em 0 4em;
    max-width: 1000px;
    list-style: none;
    text-align: center;
    justify-content: center;
}

.shutter figure {
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.shutter figure img {
    display: block;
    min-height: 100%;
    max-width: 100%;
}

.shutter figure figcaption,
.shutter figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



figure.shutter-photo img {
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
    object-fit: cover;
}

figure.shutter-photo:hover img {
    opacity: 0.8;
}

.figucaption p {
    color: #ffffff;
}

figure.shutter-photo figcaption::before,
figure.shutter-photo figcaption::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.shutter-photo figcaption::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

figure.shutter-photo figcaption::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

figure.shutter-photo h3 {
    padding-top: 30%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
}

figure.shutter-photo p {
    padding: 0 2.5em;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

figure.shutter-photo:hover figcaption::before,
figure.shutter-photo:hover figcaption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffffff;
}

figure.shutter-photo:hover h3,
figure.shutter-photo:hover p {
    opacity: 0.9;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

@media screen and (max-width: 768px) {


    #splash-logo img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        opacity: .9;
    }

    .top-logo img {
        margin: 0 auto;
        display: block;
        width: 80%;
    }

    .shutter figure {
        display: inline-block;
        margin: 10px;
    }

    .comment1 {
        padding: 0;
    }

    .comment1 p {
        display: inline-block;
        text-align: left;
        font-size: 15px;
        line-height: 2;
        vertical-align: middle;
        letter-spacing: -1px;
        margin-top: -30px;
    }




    figure.shutter-photo h3 {
        font-size: 14px;
        line-height: 1.25;
    }


    /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: '';
}

.clearfix:after {
    clear: both;
}



.headline-large01 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.img-text-btn-left {
    margin-top: 160px;
}

.img-text-btn-left dl {
    margin: 0 auto 160px auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.img-right dl {
    flex-direction: row-reverse;
}

.img-text-btn-left dt {
    width: 50%;
    margin: 0 5% 0 0;
}

.img-text-btn-left img {
    width: 100%;
    vertical-align: bottom;
    border-radius: 10px;
}

.img-text-btn-left dt {
    box-shadow: 20px 20px #e02e1c;
    border-radius: 10px;
}

.img-right dt {
    margin: 0 0 0 5%;
}

.img-right dt {
    box-shadow: 20px 20px #f8e53f;
    
}

.img-text-btn-left dd {
    width: 45%;
}

.img-text-btn-left dd em {
    font-size: 24px;

    font-style: normal;
    margin-bottom: 20px;
    color: #454545;
    display: block;
    border-top: 1px solid #e02e1c;
    border-bottom: 1px solid #e02e1c;
    padding: 20px 0;
}

.img-right dd em {
    border-top: 1px solid #f8e53f;
    border-bottom: 1px solid #f8e53f;
}

.img-text-btn-left dd p.btn {
    text-align: right;
    margin-top: 40px;
}

.img-text-btn-left dd .button {
    background-color: #424242;
    border: 2px solid #424242;
    color: #fff;
    line-height: 60px;
}

.img-text-btn-left dd a.button:hover {
    background-color: #fff;
    border-color: #424242;
    color: #424242;
}

@media screen and (max-width: 768px) {

    .img-text-btn-left {
        margin-top: 40px;
    }

    .img-text-btn-left dl {
        display: block;
    }

    .img-text-btn-left dt {
        width: 100%;
        margin-bottom: 10px;
    }

    .img-right dt {
        margin: 0;
    }

    .img-text-btn-left dd {
        width: 100%;
        margin: 0 0 1em 0;
    }

    .img-text-btn-left dd em {
        text-align: center;
        font-size: 20px;
        margin-top: 40px;
        padding: 10px 0;
    }

    .img-text-btn-left dd p.btn {
        text-align: center;
    }

    .img-text-btn-left dl {
        margin: 0 auto 56px auto;
    }
    .img-text-btn-left dt {
        box-shadow: 10px 10px #e02e1c;
    }
    
    .img-right dt {
        box-shadow: 10px 10px #f8e53f;
    }
}

.content-wrapper {
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
}

.fa-hand-point-right {
    margin-right: 8px;
}

@media screen and (max-width:768px) {
    .fa-hand-point-right {
        margin-right: 4px;
    }
}


.headline-large01:before {
    top: -40px;
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    border: 2px solid #000;
    border-radius: 50%;
    background: #fff;
}

.headline-large01:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}

.headline-large01 i {
    font-size: 30px;
    font-size: 2.5rem;
    line-height: 60px;
    position: absolute;
    z-index: 1;
    top: -40px;
    left: calc(50% - 40px);
    width: 80px;
    height: 60px;
    text-align: center;
}

.headline-large01 span {
    position: relative;
    z-index: 1;
}

@media screen and (max-width:768px) {
    .headline-large01 span {
        font-size: 22px;
    }
}