@charset "UTF-8";

/* header パンくずリスト*/
.Breadcrumb {
    padding: 1em;
}

.Breadcrumb-ListGroup {
    display: flex;
}

.Breadcrumb-ListGroup-Item-Link[href]:hover {
    opacity: 0.5;
}

.Breadcrumb-ListGroup>*+* {
    margin-left: 0.5em;
}

.Breadcrumb-ListGroup>*+*::before {
    content: ">";
    margin-left: 0.5em;
    margin-right: 0.5em;
}

/* ボタンリンク */
.btn01 {
    display: inline-block;
    padding: 10px 20px;
    color: #333;
    border: 1px solid #333;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    width: 80%;
}

.btn02 {
    width: 300px;
    margin-bottom: 30px;
    padding: 15px 30px;
    background-color: #f1f1f1;
}

.btn01 a:hover {
    color: #333;
}

.btn01 a:visited {
    color: #333;
}

.btn01 a:link {
    color: #333;
}

.btn01:hover {
    opacity: 0.5;
    transition-duration: 0.2s;
}

/* Anime */
.fade-in {
    opacity: 0;
    transition-duration: 2s;
    transition-property: opacity, transform;

}

.fade-in-up {
    transform: translate(0, 50px);
}

.fade-in-down {
    transform: translate(0, -50px);
}

.fade-in-left {
    transform: translate(-50px, 0);
}

.fade-in-right {
    transform: translate(50px, 0);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}

.delayed-image {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}


/* base_design */
.font_EN {
    font-family: "Playfair", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font_sans {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font_serif {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

.main {
    width: calc(100% - 20%);
    margin: 0 auto;
    background-color: #fff;
}

.main img {
    width: 100%;
    margin: 0 auto;
}

.main_area {
    max-width: 700px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #333;
    font-size: 13px;
    text-align: center;
    overflow: hidden;
    letter-spacing: 0.1em;
}

.main_img img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.main_title_area {
    margin: 60px 0 50px;
}

.main_title {
    font-size: 40px;
    margin-bottom: 10px;
}

.sub_title {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sub_title span {
    padding: 0 15px;
}

.sub_title::before,
.sub_title::after {
    content: '';
    width: 40px;
    height: 1px;
    background-color: #333;
}

.main_txt {
    margin: 0 auto 50px;
    line-height: 1.8;
    font-size: 14px;
}

.item_name {
    font-size: 14px;
    line-height: 1.5;
    padding: 20px 0 10px;
    font-weight: 500;
}

.item_name02 {
    font-size: 13px;
    line-height: 1.5;
    margin: 15px 0 5px;
}

.item_txt {
    margin-bottom: 20px;
    line-height: 1.5;
}

.price {
    font-size: 14px;
    margin-bottom: 20px;
}

.price_b {
    font-weight: 500;
}

.select_area {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-size: 16px;
    margin-bottom: 60px;
    line-height: 1.2;
}

.select_area a {
    color: #333;
    text-decoration: none;
}

.select01 {
    width: 45%;
    padding: 15px 30px;
    font-weight: 500;
    border: 1px solid #333;
    background-image: url(https://media.aws.locondo.jp/ufstatic/common/img/icon_down02.png);
    background-size: 24px;
    background-position: 97% 50%;
    background-repeat: no-repeat;
    background-color: #f1f1f1;
    margin-bottom: 30px;
}

.select01:hover {
    opacity: 0.7;
    transition: .3s;
}

.section_title {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1.0;
}

.section_title img {
    width: 50px;
    height: auto;
}

.other_title {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.other_title span {
    padding: 0 15px;
}

.other_title::before,
.other_title::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #333;
}

.item_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.center {
    justify-content: space-evenly;
    margin-bottom: 60px;
}

.item {
    width: 33%;
}


.btn_area {
    margin-bottom: 35px;
}

.btn_area02 {
    padding: 60px 0;
}

.pc_none {
    display: none;
}



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


    .main_area {
        max-width: 100%;
    }

    .main_title {
        font-size: 34px;
        line-height: 1.3;
    }

    .sub_title {
        font-size: 15px;
    }

    .sub_title::before,
    .sub_title::after {
        width: 20px;
    }

    .main_txt {
        font-size: 14px;
    }

    .select_area {
        margin-bottom: 50px;
    }

    .select01 {
        margin-bottom: 30px;
        background-size: 22px;
    }

    .item_box {
        flex-wrap: wrap;
    }

    .center {
        justify-content: space-between;
    }

    .item {
        width: 48%;
    }


    .item_name {
        font-size: 14px;
        padding: 15px 0;
    }

    .btn01 {
        font-size: 14px;
        padding: 15px 20px;
        line-height: 1.2;
    }

    .btn02 {
        width: 250px;
        padding: 15px 30px;
    }

    .pc_none {
        display: block;
    }

}



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

    .main {
        width: calc(100% - 10%);
    }

    .main_title_area {
        margin: 50px 0;
    }

}