@charset "utf-8";

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 1.6em;
    letter-spacing: 0.05em;
    line-height: 1.6em;
    color: #545454;
}

main {
    display: block;
    padding-top: 70px;
}

h2 {
    font-size: 1.8rem;
    border-radius: 25px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    background: #3B9EA0;
    color: #fff;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

/*---------------------------------流れ---------------------------------*/
.flow {
    display: block;
    text-align: center;
    color: #b2b2b2;
    width: 90%;
    font-weight: 900;
    font-size: 1.3rem;
    margin: 30px auto;
}

.flow_here {
    color: #e35927;
}

.flow li {
    position: relative;
    width: 60%;
    margin-right: auto;
    margin-bottom: 0.5em;
    margin-left: auto;
    line-height: 1.2em;
}

.flow li:not(:last-child):after {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*---------------------------------ヘッダー・ナビSP---------------------------------*/
#header {
    font-size: 1.5rem;
    width: 100%;
    height: 70px;
    position: fixed;
    background: #fff;
    z-index: 10;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

h1 {
    height: 70px;
    width: 100%;
    line-height: 70px;
    font-size: 1.8rem;
    color: #3b9ea0;
    font-weight: 900;
    padding: 0 2.5vw;
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    padding-top: 70px;
    text-align: center;
    z-index: 1;
    transform: translateX(100%);
    transition: .4s all;
    background-color: rgba(255, 255, 255, 0.9);
}

.menu ul {
    line-height: 70px;
}

.menu ul li {
    transition: all .5s;
    cursor: pointer;
}

.menu ul li:hover {
    background: #eee;
}

#nav-btn {
    position: absolute;
    z-index: 11;
    top: 20px;
    right: 2.5vw;
    border: none;
    background: none;
}

#nav-btn:hover {
    cursor: pointer;
}

.hamburger {
    position: relative;
    width: 37px;
    height: 30px;
}

.hamburger .bdr {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 4px;
    background: #3b9ea0;
    transition: all .5s;
}

.hamburger .bdr:nth-child(1) {
    top: 0px;
}

.hamburger .bdr:nth-child(2) {
    top: 12px;
}

.hamburger .bdr:nth-child(3) {
    bottom: 0px;
}

.hamburger.is-active .bdr {
    background: #3b9ea0;
}

.hamburger.is-active .bdr:nth-child(1) {
    transform: translateY(12px) rotate(-45deg);
}

.hamburger.is-active .bdr:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .bdr:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}

.nav-open .menu {
    transform: translateX(0);
}

.nav-open #main {
    transform: translateX(100%);
}

/*---------------------------------wrap---------------------------------*/
.mainSection_wrap {
    margin: 45px auto 0;
    padding: 0 2.5vw;
}

.mainSection_wrap>p {
    text-align: center;
    margin: 2rem 0;
}

.mainSection_wrap_2 {
    margin: 45px auto 0;
    padding: 0;
    width: 100%;
}

/*---------------------------------ボタン---------------------------------*/
.input_btn input[type="submit"] {
    height: 5rem;
    line-height: 5rem;
    font-size: 1.8rem;
    padding: 0 1em;
    border-radius: 5px;
    background: #f3973f;
    border: none;
    color: #fff;
    box-shadow: 0px 6px 0 #c0752f;
    margin: 20px 10px 0;
    cursor: pointer;
}

.input_btn [type="button"] {
    height: 5rem;
    line-height: 5rem;
    font-size: 1.8rem;
    padding: 0 1em;
    border-radius: 5px;
    background: #989798;
    border: none;
    color: #fff;
    box-shadow: 0px 6px 0 #666666;
    margin: 20px 10px 0;
    cursor: pointer;
}

.input_btn input[type="submit"]:hover {
    background: #eea662;
}

.input_btn [type="button"]:hover {
    background: #adadad;
}

.input_btn input[type="submit"]:active {
    background: #eea662;
    box-shadow: 0px 3px 0 #c0752f;
    margin: 23px 10px -3px;
}

.input_btn [type="button"]:active {
    background: #adadad;
    box-shadow: 0px 3px 0 #666666;
    margin: 23px 10px -3px;
}

.input_btn {
    display: flex;
    margin-top: 40px;
    justify-content: center;
}

/*---------------------------------選択内容---------------------------------*/
.rentalContents {
    text-align: center;
}

.rentalContents ul {
    border-bottom: solid 1px #7f8080;
    padding-bottom: .5em;
    margin-bottom: .5em;
}

.rentalContents span {
    font-size: 1.3rem;
}

.rentalContents li div {
    background-color: #e5e5e5;
    margin: 1em 0 .5em;
}

.rentalContents {
    border: solid 1px #ddd;
    border-radius: 4px;
    margin-top: 1vw;
    padding: 3vw 5vw 4vw;
}

/*---------------------------------フッター---------------------------------*/
footer {
    background: #696969;
    padding: 0 2.5vw;
    margin-top: 70px;
}

h4 {
    color: #fff;
    font-size: 2.4rem;
    text-align: center;
    line-height: 4em;
    height: 4em;
}

footer p {
    color: #fff;
}

footer p>a {
    color: #3b9ea0;
    border-bottom: 1px solid #3b9ea0;
}

.footer_marks {
    padding: 20px 0;
}

/* .logo_sp{
    margin: 20px auto;
} */
.footer_marks a img {
    margin: 10px auto;
}

.footer_marks ul {
    display: flex;
    justify-content: space-between;
    width: 200px;
    margin: 0px auto;
}

.footer_marks ul li img {
    width: 60%;
}

.footer_small {
    text-align: center;
    font-size: 1.2rem;
}


/*---------------------------------

PCここから

---------------------------------*/

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

    .pc {
        display: block;
    }

    .sp {
        display: none;
    }

    main {

        min-height: calc(100vh - 300px);
    }

    /*---------------------------------ヘッダー・ナビSP---------------------------------*/
    h1 {
        max-width: 800px;
        margin: 0 auto;
    }

    #nav-btn {
        display: none;
    }

    .menu {
        position: absolute;
        height: auto;
        padding-top: 0;
        transform: none;
        background-color: rgba(255, 255, 255, 0);
    }

    .menu ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .menu ul li {
        padding: 0 10px;
    }

    /*---------------------------------wrap---------------------------------*/
    .mainSection_wrap {
        max-width: 800px;
        padding: 0 2.5vw;
    }

    /*---------------------------------流れ---------------------------------*/
    .flow {
        display: flex;
        justify-content: space-between;
        max-width: 508px;
        font-size: 1.5rem;
        margin: 30px auto;
        line-height: 36px;
        height: 36px;
    }

    .flow li {
        line-height: 1.2em;
        display: grid;
        place-items: center center;
        grid-template-columns: 100%;
        width: auto;
        padding-right: 32px;
    }

    .flow li:not(:last-child):after {
        margin-right: 1em;
        margin-left: 1em;
    }

    /*---------------------------------選択内容---------------------------------*/
    .rentalContents {
        padding: 10px 20px 30px 20px;
    }

    /*---------------------------------フッター---------------------------------*/
    footer {
        height: 300px;
    }

    .footer_wrap {
        max-width: 800px;
        padding: 50px 0;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    footer .footer_about {
        width: 500px;
        display: flex;
        justify-content: center;
        font-size: 1.4rem;
    }

    footer .footer_about div img {
        width: 160px;
        margin-right: 20px;
    }

    h4 {
        text-align: start;
        line-height: 1.3em;
        height: 1.3em;
    }

    .footer_marks {
        width: 130px;
        padding: 0px;
    }

    /* .footer_marks ul{
        display: flex;
        justify-content: space-between;
        width: 200px;
        margin: 0px auto;
    } */
    .footer_marks ul {
        width: 100%;
    }

    .footer_marks ul li img {
        width: 65%;
    }
}