@charset "UTF-8";
/******************************

 * style
 *
 * 1. Layout（共通要素）

******************************/
@import "button-v2-3.css";
@import "util-3.css";
@import "root.css";
@import "section-top-banner.css";
@import "section-featured-listing.css";
@import "section-special-featured.css";

* {
    box-sizing: border-box;
}

.wrap {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1432px;
    padding: 0px 20px;
}

html,
body {
    font-size: var(--base-size) !important;
    font-family: Helvetica, Arial, sans-serif;
}

body *{
    font-size: 14px;
}

.page {
    width: 100%;
    min-width: 1px;
}

p {
    font-size: 1rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.section-title {
    font-size: 42px;
    font-family: "adobe-garamond-pro",serif;
    font-weight: 600;
    position: relative;
    line-height: 42px;
    color: #222222;
    padding: 25px 0 36px 0;
    margin: 0;
}

.section-title.section-title-top-border:before {
    content: "";
    width: 90px;
    height: 2px;
    background: rgba(0, 35, 104, 1);
    position: absolute;
    top: 0px;
}

.hr-ken-primary {
    width: 100%;
    margin-bottom: 35px;
    position: relative;
}

.hr-ken-primary hr {
    margin: 0px;
    background: #D8D8D8;
}

.hr-ken-primary:after {
    content: "";
    width: 40%;
    height: 5px;
    background: #002368;
    left: 0px;
    display: block;
    top: -1px;
    position: relative;
}

@media screen and (max-width: 860px) {
    .page {
        min-width: inherit;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    .section-title {
        font-size: 26px;
        line-height: 31px;
    }
}

@media screen and (max-width: 1440px) {
    .wrap {
        max-width: var(--max-width-pc-md);
    }
}
