@charset "utf-8";

/*
SP ～767px
PC 768px～
*/

/*===============
共通設定
===============*/
body {
    font-size: 16px;
    color: #000;
    text-align: center;
    font-weight: normal;
    font-family: 'Junge', cursive;
}

a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all .3s;
}

a:hover {
    opacity: 0.5;
}

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

/*===============
共通クラス
===============*/
.wrapper {
    margin: 0 10px;
}

.title {
    background-color: #fff;
}

.text {
    margin-top: 20px;
    text-align: left;
    line-height: 1.6rem;
}

.text p {
    margin-top: 0.8rem;
}

.text span {
    margin-top: 0.8rem;
    display: inline-block;
}

.btn {
    display: block;
    border: 1px solid #000;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-top: 9px;
    padding: 10px 0;
}

.btn .btn_text {
    font-size: 22px;
    position: relative;
}

.btn .btn_text::after {
    content: "";
    display: inline-block;
    width: 39.313px;
    height: 10px;
    background-image: url(../img/sp_vector.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 13.7px;
    bottom: 13px;
    transition: all .4s;
}

.btn .btn_text:hover::after {
    right: 0px;
}

.notes {
    font-size: 12px;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}

.container_center {
    text-align: center;
}

@media screen and (min-width:768px) {
    .wrapper {
        margin: 0 10%;
    }

    .btn .btn_text::after {
        display: none;
    }

    .notes {
        font-size: 16px;
    }

    .sp_br {
        display: none;
    }

    /*======min-width:768px(768px以上の時)========*/
}

/*===============
ヘッダー
===============*/
header {
    background-color: #EFEFEF;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media screen and (min-width:768px) {
    header {
        font-size: 25px;
    }

    /*======min-width:768px(768px以上の時)========*/
}

/*===============
メインビジュアル
===============*/
.main_visual {
    width: 100%;
}

/*===============
CTA
===============*/
.cta {
    background-image: url(../img/sp_background1.jpg);
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 40px;
}

.cta .cta_content {
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.cta .cta_content h1 {
    font-weight: normal;
    font-size: 22px;
    padding-top: 28px;
    letter-spacing: 0.08em;
}

.cta .cta_content h1 span {
    display: inline-block;
}

.cta .cta_content h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 6.8vw;
    background-image: url(../img/title_line.jpg);
    background-size: contain;
    background-position: center;
    margin-top: 16px;
}

.cta .cta_content .date {
    letter-spacing: 0.08em;
    line-height: 55px;
}

.cta .cta_content .coupon {
    background-color: #EFEFEF;
    padding-top: 24px;
    padding-bottom: 24px;
}

.cta .cta_content .coupon p:nth-of-type(1) {
    font-size: 20px;
}

.cta .cta_content .coupon p:nth-of-type(2) {
    font-size: 40px;
}

.cta .cta_content .notes {
    margin-top: 15px;
    padding-bottom: 35px;
}


@media screen and (min-width:768px) {
    .cta {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .cta .cta_content {
        padding-left: 10%;
        padding-right: 10%;
    }

    .cta .cta_content h1 {
        font-size: 40px;
        padding-top: 48px;
    }

    .cta .cta_content .date {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .cta .cta_content .coupon {
        width: 700px;
        height: 136px;
    }

    .cta .cta_content .coupon p:nth-of-type(2) {
        font-family: 'Jomolhari', serif;
    }

    .cta .cta_content .btn {
        width: 290px;
        height: 136px;
        margin-left: 12px;
        margin-top: 0;
        padding: 0;
    }

    .cta .cta_content .btn .btn_text {
        line-height: 136px;
        font-size: 1.9vw;
    }

    .cta .cta_content .cta_box {
        display: flex;
        align-items: center;
    }

    /*======min-width:768px(768px以上の時)========*/
}

/*===============
COSTA NOVA
===============*/
#about {
    background-image: url(../img/sp_background2.jpg);
    background-repeat: repeat-y;
}

#usability {
    background-color: #F5FDFF;
}

.about_content {
    padding-top: 35px;
    padding-bottom: 42px;
}

.grid {
    display: grid;
    gap: 6px;
}

.grid_img1 {
    grid-area: 1 / 1 / 3 / 3;
    width: 100%;
}

.grid_img2 {
    grid-area: 3 / 1 / 4 / 2;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.grid_img3 {
    grid-area: 3 / 2 / 4 / 3;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

@media screen and (min-width:768px) {
    #about {
        background-image: url(../img/background2.jpg);
        background-repeat: repeat-y;
        background-size: contain;
    }

    .grid {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1.1fr 0.9fr;
        align-items: stretch;
    }

    .grid_img1 {
        grid-area: 1 / 1 / 3 / 2;
    }

    .grid_img2 {
        grid-area: 1 / 2 / 2 / 3;
        height: auto
    }

    .grid_img3 {
        grid-area: 2 / 2 / 3 / 3;
        height: auto;
    }

    #about .text {
        text-align: center;
    }

    .about_text {
        font-size: 18px;
    }

    /*======min-width:768px(768px以上の時)========*/
}

/*===============
COLLECTIONS
===============*/
#collections {
    background-image: url(../img/background2.jpg);
    background-repeat: repeat-y;
}

.collections_content {
    padding-top: 35px;
}

.collections_content .sub_text {
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 1.8;
    text-align: left;
    display: inline-block;
    transform: translateX(6px);
}

.collections_content .notes {
    font-size: 14px;
    margin-bottom: 18px;
}

.collections_content .collections_item {
    border: 1px solid #EFEFEF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.40);
    background-color: #fff;
    padding: 5%;
    margin-top: 20px;
}

.collections_content .btn {
    margin-top: 25px;
}

.collections_content .btn .btn_text {
    font-family: 'Jomolhari', serif;
}


.collections_content .bottom_notes {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

@media screen and (min-width:768px) {
    #collections {
        padding-bottom: 95px;
        background-size: contain;
    }

    .collections_content .sub_text {
        transform: translateX(0);
    }

    .collections_content .notes {
        margin-top: 0;
        margin-bottom: 0;
    }

    .collections_content .collections_container {
        display: flex;
        justify-content: space-between;
    }

    .collections_content .collections_item {
        width: 32%;
        padding: 24px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        transition: all .5s;
    }

    .collections_content .collections_item:hover {
        transform: scale(1.05);
    }

    #collections .btn {
        width: 32%;
        margin: 46px auto 32px auto;
    }

    #collections .btn .btn_text::after {
        display: block;
    }

    /*======min-width:768px(768px以上の時)========*/
}


/*===============
フッター
===============*/
footer {
    position: relative;
}

footer .footer_bg {
    width: 100%;
    background: rgba(255, 255, 255, 0.40);
    opacity: 0.5;
    vertical-align: bottom;
}

footer .footer_logo {
    display: block;
    width: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
}

footer p small {
    display: block;
    background-color: #EFEFEF;
    padding-top: 10px;
    padding-bottom: 10px;
}

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

    footer .footer_logo {
        width: 330px;
        transform: translate(-50%, -60%);
    }

    /*======min-width:768px(768px以上の時)========*/
}