@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&family=Noto+Sans+JP:wght@400;600&display=swap');

:root {
    --green: #268381;
    --ygreen: #7eb41f;
    --summer: #2da279;
    --winter: #51578e;
    --en: 'Manrope', sans-serif;
}

.greenmodel-s * {
    box-sizing: border-box;
    /* font-family: 'Manrope', 'Noto Sans JP', sans-serif; */
}

.greenmodel-s .inner {
    width: 100%;
    max-width: 967px;
    margin: 0 auto;
    padding: min(5em, 10vw) 1em;
}

.greenmodel-s .inner1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: min(5em, 10vw) 1em;
}

.greenmodel-s img {
    max-width: 100%;
    vertical-align: bottom;
}

.greenmodel-s .green {
    color: var(--green);
}

.greenmodel-s .ygreen {
    color: var(--ygreen);
}

.greenmodel-s .summer {
    color: var(--summer);
}

.greenmodel-s .winter {
    color: var(--winter);
}

.greenmodel-s .text-center {
    text-align: center;
}

.greenmodel-s .flex-between {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.greenmodel-s .flex-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.greenmodel-s .en {
    font-family: var(--en);
    font-size: 1.1em;
}

.greenmodel-s .pc {
    display: block;
}

.greenmodel-s .sp {
    display: none;
}

.greenmodel-s .iblock {
    display: inline-block;
}

@media screen and (max-width:767px) {
    .greenmodel-s .pc {
        display: none;
    }

    .greenmodel-s .sp {
        display: block;
    }

    .greenmodel-s .sp-order0 {
        order: 0;
    }
}

.greenmodel-s .large {
    font-size: 1.2em;
}

.greenmodel-s .sml {
    font-size: .8em;
}

.greenmodel-s sup {
    font-size: .75em;
    vertical-align: top;
}

.greenmodel-s sub {
    font-size: .75em;
    vertical-align: bottom;
}

.greenmodel-s .note {
    display: block;
    margin: 1em 0;
    width: 100%;
    text-align: left;
    font-size: min(.8em, 3.3vw);
    line-height: 1.4;
}

.greenmodel-s .note li {
    list-style: none;
    margin: 0 0 .3em;
    padding-left: 1.4em;
    position: relative;
}

.greenmodel-s .note li::before {
    content: '※';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.greenmodel-s .note.numnote {}

.greenmodel-s .note.numnote li {
    padding-left: 2.2em;
    counter-increment: number;
}

.greenmodel-s .note.numnote li::before {
    content: '※' counter(number);
}

.greenmodel-s .btn-wrp {
    width: 100%;
    text-align: center !important;
    margin: 0 auto;
}

.greenmodel-s .arrow-right {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 1.5em;
}

.greenmodel-s .arrow-right::before,
.greenmodel-s .arrow-right::after {
    content: '';
    display: block;
    height: 0;
    border-bottom: 1px solid;
    position: absolute;
    top: 50%;
    right: 0;
}

.greenmodel-s .arrow-right::before {
    width: 100%;
}

.greenmodel-s .arrow-right::after {
    width: .75em;
    transform: rotate(20deg);
    transform-origin: bottom right;
}

.greenmodel-s .frame-box {
    border: 1px solid #ccc;
    padding: 1em;
}

.greenmodel-s .bgwhite {
    background-color: #fff;
}

.greenmodel-s .triangle {
    /* background: #fff; */
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

@media screen and (max-width:767px) {
    .greenmodel-s .triangle {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    }
}

.greenmodel-s .title-dash {
    display: inline-block;
    padding: 0 2em;
    position: relative;
}

.greenmodel-s .title-dash::before,
.greenmodel-s .title-dash::after {
    content: '';
    width: 1.5em;
    height: 0;
    border-top: 2px solid;
    position: absolute;
    top: 50%;
}

.greenmodel-s .title-dash::before {
    left: 0;
}

.greenmodel-s .title-dash::after {
    right: 0;
}

.greenmodel-s .title-serif {
    display: inline-block;
    padding: 0 1em;
    position: relative;
    margin: 3em 0 1em;
    color: var(--green);
}

.greenmodel-s .title-serif::before,
.greenmodel-s .title-serif::after {
    content: '';
    width: 0;
    border-left: 1px solid;
    display: inline-block;
    position: absolute;
    height: 105%;
    top: -10%;
}

.greenmodel-s .title-serif::before {
    left: 0;
    transform: translateY(.2em) rotate(-35deg);
}

.greenmodel-s .title-serif::after {
    transform: translateY(.2em) rotate(35deg);
    right: 0;
}

.marker {
    background: linear-gradient(transparent 70%, #f5f598 70%);
}

.greenmodel-s .title {
    font-size: min(2.4em, 6vw);
    line-height: 1.5;
    margin-bottom: 2em;
    font-weight: bold;
}

.greenmodel-s .subtitle {
    font-size: min(2em, 4.5vw);
    line-height: 1.5;
    margin-bottom: 1.5em;
    font-weight: bold;
}

.greenmodel-s .imgcover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.greenmodel-s .imgcontain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.greenmodel-s .w2 {
    width: 50%;
}

.greenmodel-s .mtop-0 {
    margin-top: 0 !important;
}

.greenmodel-s .mtop-05 {
    margin-top: 0.5em !important;
}

.greenmodel-s .mtop-1 {
    margin-top: 1em !important;
}

.greenmodel-s .mtop-2 {
    margin-top: 2em !important;
}

.greenmodel-s .mtop-3 {
    margin-top: 3em !important;
}

.greenmodel-s .mtop-4 {
    margin-top: 4em !important;
}

.greenmodel-s .mtop-5 {
    margin-top: 5em !important;
}

.greenmodel-s .mbtm-0 {
    margin-bottom: 0 !important;
}

.greenmodel-s .mbtm-05 {
    margin-bottom: 0.5em !important;
}

.greenmodel-s .mbtm-1 {
    margin-bottom: 1em !important;
}

.greenmodel-s .mbtm-2 {
    margin-bottom: 2em !important;
}

.greenmodel-s .mbtm-3 {
    margin-bottom: 3em !important;
}

.greenmodel-s .mbtm-4 {
    margin-bottom: 4em !important;
}

.greenmodel-s .mbtm-5 {
    margin-bottom: 5em !important;
}


/* presetn */

.presentArea01 {
    padding: 155px 0 0;
}

@media screen and (max-width: 767px) {
    .presentArea01 {
        padding: 78px 0 0;
    }
}

.presentArea01.first {
    padding: 50px 0 70px;
}

@media screen and (max-width: 767px) {
    .presentArea01.first {
        padding: 25px 0 30px;
    }
}

.presentTitle01 {
    text-align: center;
}

.presentTitle01 .title01 {
    font-size: 40px;
    font-weight: 700;
    color: #156082;
}

@media screen and (max-width: 767px) {
    .presentTitle01 .title01 {
        font-size: 20px;
    }
}

.presentTitle01 .subTitle01 {
    font-size: 30px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .presentTitle01 .subTitle01 {
        font-size: 15px;
    }
}

.presentInner01 {
    width: 100%;
    max-width: 980px;
    margin: 55px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .presentInner01 {
        margin: 20px auto;
    }
}

.presentInner01 .imgArea01 {
    width: 60%;
    position: relative;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .presentInner01 .imgArea01 {
        width: 94%;
        margin: 0 auto 10px;
    }
}

.presentInner01 .imgArea01 .brochure img {
    width: 100%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.presentInner01 .imgArea01 .brochure.brochure-v {
    width: 35%;
    margin-right: 2em;
}

.presentInner01 .imgArea01 .brochure.brochure-h {
    width: 48%;
}

.presentInner01 .txtArea01 {
    width: 40%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.presentInner01 .txtArea01 .textArea01-inner {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .presentInner01 .txtArea01 {
        width: 100%;
        text-align: center;
    }
}

.presentInner01 .txtArea01 .brochure-meta {
    margin-bottom: 1em;
    width: 100%;
}

.catalogTitle01 {
    font-size: 18px;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .catalogTitle01 {
        text-align: center;
        font-size: 15px;
    }
}

.catalogTxt01 {
    font-size: 14px;
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .catalogTxt01 {
        text-align: center;
        font-size: 12px;
    }
}

.presentLastLine01 {
    border: none;
    margin: 90px 0 0;
}

@media screen and (max-width: 767px) {
    .presentLastLine01 {
        margin: 40px 0 0;
    }
}

.detailBtn01 a {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    width: 400px;
    height: 60px;
    margin: auto;
    background: #156082;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .detailBtn01 a {
        font-size: 13px;
        width: 71%;
        height: 40px;
    }
}

.detailBtn01 a:after {
    content: "";
    width: 14px;
    height: 14px;
    margin: auto 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
}

@media screen and (max-width: 767px) {
    .detailBtn01 a:after {
        width: 10px;
        height: 10px;
        right: 15px;
    }
}

.detailBtn01 a.disable {
    margin-top: 109px;
    background: #ccc;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .detailBtn01 a.disable {
        margin-top: 85px;
    }
}

.detailBtn01.green a {
    background: #649b28;
}

@media print,
screen and (min-width: 768px) {
    .detailFootBtn01 {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .detailFootBtn01 {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9999;
        width: 100%;
        height: 60px;
        visibility: hidden;
        transform: translateY(-61px);
        transition: visibility 0ms 400ms, transform 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .detailFootBtn01 a {
        text-align: center;
        font-size: 21px;
        font-weight: 700;
        color: #fff;
        height: 60px;
        background: #ffa800;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 -5px 8px rgba(0, 0, 0, 0.3);
    }

    .detailFootBtn01.is-show {
        visibility: visible;
        transform: translateY(0px);
        transition: visibility 0ms, transform 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    }
}