@charset "UTF-8";

/* plan-detail */
.lowerpage .main {
    padding: 160px 0 120px;
}

.plan-type {
    padding: 200px 0 75px;
}

.nav-type {
    margin: 0 0 40px;
}

.contents {
    padding: 120px 110px 40px;
    min-height: 912px;
    margin-bottom: 0;
    border: 3px solid #00422e;
    position: relative;
    background: rgba(234, 229, 219, .4);
}

.contents.long {
    padding-top: 100px;
}

.nav-type {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-type li {
    width: 48%;
}

.nav-type li.single {
    width: 100%;
}

.nav-type li a {
    display: block;
    color: #404040;
    text-align: center;
    font-size: clamp(14px, 1.8vw, 20px);
    padding: 7px 0;
    background: #666666;
    transition: all 0.3s;
}

.nav-type li a.active,
.nav-type li a:hover {
    background: #262626;
    color: #ffffff;
}

.nav-type li a.active {
    pointer-events: none;
}

.nav-type li a span {
    padding: 0 10px;
    display: inline-block;
}

.type-contents {
    padding: 0 0 40px;
}

.type-contents .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* align-items: center; */
}

.type-contents .inner .info-type {
    width: 50%;
}

.type-contents .inner .info-map {
    width: 50%;
    text-align: center;
    /* position: absolute; */
    right: 0;
    bottom: 7%;
}

.plan_a-e .type-contents .inner .info-map {
    bottom: 9.5%;
}

.type-contents .inner .info-type .type-name {
    display: flex;
    align-items: center;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    padding: 5px 0 8px;
    margin: 0 0 20px;
}

.type-contents .inner .info-type .type-name p {
    font-size: clamp(16px, 2.25vw, 20px);
    line-height: 1.4;
}

.type-contents .inner .info-type .type-name p.detail-type::first-letter {
    font-size: 180%;
    padding-right: 5px;
}

.type-contents .inner .info-type .type-name p.name {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #000000;
}

.type-contents .inner .info-type .type-name p.name span {
    font-size: 180%;
    padding-right: 5px;
}

.type-contents .dim {
    margin: 0 0 40px;
}

.type-contents .dim li:not(:first-child) {
    display: flex;
    gap: 10px;
}

.type-contents .dim li {
    font-size: clamp(14px, 1.5vw, 16px);
}

.type-contents .dim li p::first-letter {
    color: #666666;
}

.type-contents .dim li span {
    font-size: 230%;
    line-height: 1;
}

.type-contents .info-detail {
    padding-bottom: 20px;
}

.type-contents .info-detail li {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 2;
    padding-left: 15px;
    border-left: 5px solid #666666;
    margin-bottom: 20px;
}

.type-contents .note {
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    gap: 10px;
    margin-top: 0px;
}

.type-contents .note li {
    align-content: center;
    display: flex;
    align-items: center;
}

.type-contents .note li img {
    margin-right: 5px;
}

.type-contents .note li:last-child {
    width: 100%;
}

.type-contents .note-txt {
    font-size: 11px;
    margin-top: 10px;
    line-height: 1.5;
}

.other-type {
    margin: 160px auto 0;
    display: flex;
    justify-content: space-between;
}

.other-type li {
    width: 30%;
}

.other-type li a {
    display: block;
    background: #00422e;
    color: #fff;
    font-size: clamp(10px, 1.8vw, 20px);
    text-align: center;
    padding: 5px 0;
    transition: all 0.3s;
    height: 100%;
    align-content: center;
}

.other-type li a .other-name {
    font-size: clamp(12px, 1.8vw, 20px);
    display: inline-block;
    padding: 0 10px;
}

.other-type li a .other-name span {
    font-size: 185%;
    padding-right: 5px;
    line-height: 1;
}

.other-type li a:hover {
    background: #222222;
}

.other-type li:nth-of-type(2) a {
    background: #d9d9d9;
    color: #000000;
    padding: 0;
    font-size: clamp(14px, 1.8vw, 20px);
}

.other-type li:nth-of-type(2) a:hover {
    background: #222222;
    color: #ffffff;
}

.priority {
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 10px;
}

.priority-txt {
    font-size: 18px;
    line-height: 1.2;
    margin-right: 10px;
}

.priority-cap {
    font-size: 10px;
    line-height: 1.2;
}

.list-btn-other {
    display: flex;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    justify-content: space-between;
}

.btn-other {
    transition: all 0.4s;
    width: 45px;
    height: 112px;
    background: rgba(120, 144, 123, 0.9);
    position: relative;
}

.btn-other::after {
    position: absolute;
    content: "▲";
    font-size: 1.2em;
    top: -2rem;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    color: rgba(255, 255, 255, 1);
    transition: all 0.4s;
}

.btn-other.pre::after {
    left: 45%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.btn-other:hover {
    background: #00422e;
}

.btn-other:hover::after {
    color: rgba(255, 255, 255, 1);
}

@media (min-width:769px) and (max-width: 940px) {
    .type-contents .inner .info-type .type-name {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .type-contents .inner .info-type .type-name p.name {
        padding: 0;
        margin-right: 0;
        padding-bottom: 10px;
        border-right: 0;
        border-bottom: 1px solid #000;
    }

    .type-contents .dim li:not(:first-child) {
        display: block;
    }

    .contents {
        padding: 40px min(8vw, 80px);
        min-height: 960px;
    }

    .other-type {
        margin-top: 60px;
    }

    .type-contents .inner .info-map {
        position: unset;
    }
}

@media screen and (max-width: 768px) {
    .type-contents .inner .info-map {
        position: unset;
    }

    .contents {
        min-height: unset;
    }

    .btn-other {
        width: 35px;
        height: 82px;
    }

    .lowerpage .main {
        padding: 100px 0 60px;
    }

    .plan-type {
        padding: 140px 40px 35px;
    }

    .nav-type {
        margin: 0 0 30px;
    }

    .contents {
        padding: 15px;
    }

    .contents.long {
        padding-top: 30px;
    }

    .type-contents {
        padding: 0 0 30px;
    }

    .nav-type li {
        width: 49%;
    }

    .nav-type li a span {
        padding: 0 2px;
    }

    .type-contents .dim {
        margin: 0 0 30px;
    }

    .type-contents .inner .info-type {
        width: 100%;
    }

    .type-contents .inner .info-map {
        width: 100%;
        margin: 0 0 20px;
    }

    .type-contents .info-detail li {
        line-height: 1.5;
    }

    .type-contents .note {
        margin-top: 20px;
    }

    .other-type li {
        width: 32%;
    }

    .other-type li a {
        padding: 5px 0;
    }

    .other-type {
        margin: 0 -15px;
    }

    .list-btn-other {
        padding: 0;
    }

    .priority {
        flex-wrap: wrap;
        text-align: center;
    }

    .priority-txt {
        width: 100%;
        margin-bottom: 5px;
    }

    .priority-cap {
        width: 100%;
    }

    .btn-other::after {
        left: 56%;
    }
}

@media screen and (max-width: 576px) {
    .list-btn-other .pre {
        left: -18px;
    }

    .list-btn-other .next {
        right: -18px;
    }


}

@media screen and (max-width: 410px) {
    .nav-type li a {
        font-size: 12px;
    }

    .type-contents .inner .info-type .type-name {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .type-contents .inner .info-type .type-name p.name {
        padding: 0;
        margin-right: 0;
        padding-bottom: 10px;
        border-right: 0;
        border-bottom: 1px solid #000;
    }

    .type-contents .dim li:not(:first-child) {
        display: block;
    }

    .other-type li a .other-name span {
        font-size: 140%;
    }
}

.nav-type li a.disable {
    pointer-events: none;
}

.btnBack {
    background: #666666;
    display: block;
    max-width: 150px;
    width: 100%;
    text-align: center;
    margin: 40px auto 0;
    padding: 0.2em 1em 0.3em;
    color: #fff;
    font-size: clamp(14px, 1.8vw, 20px);
}

.btnBack::before {
    content: "<<<";
    display: inline-block;
    position: relative;
    margin-right: 10px;
    font-size: 1.6rem;
}

.btnBack:hover {
    background: #222;
}

/* Print */
@media print {
    @page {
        size: landscape;
    }

    header,
    .cvBnr,
    .scene-wrap:before,
    .scene-wrap:after,
    .nav-type,
    .other-type,
    .btnBack,
    .pageDirection,
    footer {
        display: none !important;
    }

    .scene-wrap {
        background: #ffffff !important;
    }

    .plan-type {
        padding: 0 !important;
    }

    .contents {
        padding: 30px !important;
    }

    .type-contents {
        padding: 0 !important;
    }

    .type-contents .inner {
        align-items: flex-start;
    }

    .type-contents .dim {
        margin: 0 0 20px !important;
    }

    .type-contents {
        padding: 0 !important;
    }

    .type-contents .note {
        margin-top: 20px !important;
    }

    .type-contents .inner .info-map {
        line-height: 1;
        width: 43% !important;
        margin-right: 5% !important;
    }

    .type-contents .info-detail {
        padding: 0 !important;
    }

    .only-pc {
        display: block !important;
    }

    .only-sp {
        display: none !important;
    }
}

@media print {

    /* body{ -webkit-print-color-adjust: exact;print-color-adjust: exact;} */
    .main {
        padding: 10px 0;
    }

    .contents {
        min-height: unset;
    }

    .contents .info-map img {
        width: 80%;
    }

    .list-btn-other {
        display: none;
    }

    .type-contents .inner .info-map {
        position: unset;
    }

}