@charset "UTF-8";

/***-----------------------------------
pcとspでの表示非表示
-----------------------------------***/
.pc {
    display: none !important;
}

@media (min-width: 768px) {
    .pc {
        display: block !important;
    }
}

.sp {
    display: block !important;
}

@media (min-width: 768px) {
    .sp {
        display: none !important;
    }
}

/***-----------------------------------
スタイル
-----------------------------------***/
.rental {
    width: 100%;
    overflow: hidden;
}

.rental * {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 8px;
}

@media (min-width: 768px) {
    .container {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 16px 0;
    }
}

h2,
h3,
h4 {
    font-weight: 400;
}

h2 {
    color: #0286cf;
}

/***-----------------------------------
nav__sp
-----------------------------------***/
.hamburger-overlay {
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 999;
    cursor: pointer;
}

.hamburger-overlay__line {
    background: #333;
    width: 26px;
    height: 2px;
    position: absolute;
    left: 11px;
    transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) {
    top: 14px;
}

.hamburger-overlay__line:nth-of-type(2) {
    top: 23px;
}

.hamburger-overlay__line:nth-of-type(3) {
    top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
    background: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 99;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.nav-overlay__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-overlay.active .nav-overlay__item:nth-child(5) {
    transition-delay: 0.5s;
}

.nav-overlay.active .nav-overlay__item:nth-child(6) {
    transition-delay: 0.6s;
}

.nav-overlay.active .nav-overlay__item:nth-child(7) {
    transition-delay: 0.7s;
}

.nav-overlay.active .nav-overlay__item:nth-child(8) {
    transition-delay: 0.8s;
}

.nav-overlay__link {
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding: 12px;
    transition: color .3s;
}

.nav-overlay__link:hover {
    text-decoration: none;
    color: #ffc926;
}

.nav__sp .logo {
    width: 180px;
    padding-right: 16px;
    margin: 0 auto 12px;
}

@media (min-width: 1024px) {
    .nav__sp {
        display: none;
    }
}

/***-----------------------------------
header
-----------------------------------***/
.rental header {
    border-bottom: 6px solid #0286cf;
    padding: 8px;
}

.rental header .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.rental header h1 {
    font-size: 10px;
    line-height: 1.4em;
    font-weight: 400;
    margin: 4px 4px 8px;
}

.rental header .wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.rental header .wrap .logo {
    width: 200px;
}

.rental header .wrap ul {
    display: none;
}

.rental header .wrap .contact {
    display: none;
}

.rental header .wrap .contact .tel a {
    display: none;
}

@media (min-width: 768px) {
    .rental header {
        padding: 8px 32px;
    }

    .rental header h1 {
        font-size: 11px;
        margin: 4px;
    }

    .rental header .wrap .contact {
        display: block;
        width: 240px;
        margin-right: 48px;
        margin-bottom: 4px;
    }

    .rental header .wrap .contact .tel a {
        text-decoration: none;
        display: block;
        pointer-events: none;
    }
}

@media (min-width: 1024px) {
    .rental header {
        padding: 8px 40px;
    }

    .rental header h1 {
        font-size: 12px;
        font-weight: 400;
        margin: 4px;
    }

    .rental header .wrap ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-left: auto;
    }

    .rental header .wrap ul li a {
        text-decoration: none;
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-align: center;
        padding: 8px;
    }

    .rental header .wrap .contact {
        width: 180px;
        margin-right: 0;
        margin-bottom: 6px;
        margin-left: 12px;
    }
}

@media (min-width: 1280px) {
    .rental header .wrap .logo {
        width: 240px;
    }

    .rental header .wrap ul li a {
        font-size: 12px;
        padding: 12px;
    }

    .rental header .wrap .contact {
        margin-left: 24px;
    }

    .rental header .wrap .contact {
        width: 240px;
        margin-bottom: 8px;
        margin-left: 36px;
    }
}

@media (min-width: 1600px) {
    .rental header h1 {
        font-size: 13px;
    }

    .rental header .wrap .logo {
        width: 300px;
    }

    .rental header .wrap ul li a {
        font-size: 15px;
        padding: 18px;
    }

    .rental header .wrap .contact {
        width: 320px;
        margin-bottom: 12px;
        margin-left: 40px;
    }
}

/***-----------------------------------
kv
-----------------------------------***/
.rental .kv {
    background: url(../../common/images/kv.jpg) no-repeat center center;
    background-size: cover;
    height: 400px;
    margin: 0 8px;
    position: relative;
}

.rental .kv__guide {
    background: url(../../common/images/kv__guide.jpg) no-repeat center center;
    background-size: cover;
}

.rental .kv__faq {
    background: url(../../common/images/kv__faq.jpg) no-repeat center bottom;
    background-size: cover;
}

.rental .kv__flow {
    background: url(../../common/images/kv__flow.jpg) no-repeat center center;
    background-size: cover;
}

.rental .kv__company {
    background: url(../../common/images/kv__company.jpg) no-repeat center bottom;
    background-size: cover;
}

.rental .kv__contact {
    background: url(../../common/images/kv__contact.jpg) no-repeat center center;
    background-size: cover;
}

.rental .kv__order {
    background: url(../../common/images/kv__order.jpg) no-repeat center center;
    background-size: cover;
}

.rental .kv__heso {
    background: url(../../common/images/kv.jpg) no-repeat center center;
    background-size: cover;
}

.rental .kv__collect {
    background: url(../../common/images/kv__collect.jpg) no-repeat center center;
    background-size: cover;
}

.rental .kv__voice {
    background: url(../../common/images/kv__voice.jpg) no-repeat center center;
    background-size: cover;
}

.rental .kv .kv__bg {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(255, 255, 255, 1.00));
    background: rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
}

.rental .kv .kv__bg p {
    font-size: 16vw;
    line-height: 400px;
    font-family: "din-condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-align: center;
    margin: 0;
}

@media (min-width: 768px) {
    .rental .kv {
        margin: 0 32px;
    }

    .rental .kv .kv__bg p {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .rental .kv {
        margin: 0 40px;
    }
}

@media (min-width: 1280px) {
    .rental .kv {
        height: 600px;
    }

    .rental .kv .kv__bg p {
        line-height: 600px;
        font-weight: 600;
    }
}

/***-----------------------------------
bread
-----------------------------------***/
.breadcrumb .container {
    padding: 16px 8px 0;
}

.breadcrumb .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 8px 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 0 22px;
    font-size: 0.9em;
    padding: 0;
    margin: 0 8px;
}

.breadcrumb ol li {
    display: flex;
    align-items: center;
}

.breadcrumb ol li:first-child::before {
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 1.0em;
    height: 1.0em;
    margin-right: 4px;
}

.breadcrumb ol li:not(:last-child)::after {
    content: "";
    display: inline-block;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    width: .3em;
    height: .3em;
    transform: rotate(45deg);
    margin-left: 10px;
}

.breadcrumb ol a {
    text-decoration: none;
    color: #333333;
}

@media (min-width: 768px) {
    .breadcrumb .container {
        padding: 16px 0 0;
    }

    .breadcrumb ol {
        margin: 0 32px;
    }
}

@media (min-width: 1024px) {
    .breadcrumb ol {
        margin: 0 40px;
    }
}

@media (min-width: 1280px) {
    .breadcrumb ol {
        margin: 0 16px;
    }
}

@media (min-width: 1600px) {
    .breadcrumb .container {
        max-width: 1200px;
    }

    .breadcrumb ol {
        margin: 0 16px;
    }
}

/***-----------------------------------
wrapper
-----------------------------------***/
.rental .wrapper {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 24px;
}

@media (min-width: 768px) {
    .rental .wrapper {
        flex-flow: row;
        max-width: 704px;
        padding: 0 0 32px;
    }
}

@media (min-width: 1024px) {
    .rental .wrapper {
        max-width: 944px;
        padding: 0 0 48px;
    }
}

@media (min-width: 1280px) {
    .rental .wrapper {
        max-width: 980px;
        padding: 0 0 64px;
    }
}

@media (min-width: 1600px) {
    .rental .wrapper {
        max-width: 1200px;
        padding: 0 0 80px;
    }
}

/***-----------------------------------
side
-----------------------------------***/
.rental .wrapper .side {
    width: 100%;
    order: 2;
}

.rental .wrapper .side .btn {
    margin-top: 24px;
}

.rental .wrapper .side .btn.form {
    margin-top: 0;
}

.rental .wrapper .side .btn a {
    text-decoration: none;
    display: block;
    background: #000;
    border-radius: 8px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.rental .wrapper .side .btn.form a {
    background: #f00;
    padding: 48px 24px;
}

.rental .wrapper .side .btn.shop a {
    background: #ff8e1e;
    padding: 32px 24px;
}

.rental .wrapper .side p {
    border-bottom: 1px dotted #333;
    padding-bottom: 16px;
}

.rental .wrapper .side p.first {
    margin-top: 32px;
}

.rental .wrapper .side p a {
    font-size: 14px;
    line-height: 1.4em;
}

.rental .wrapper .side h2 {
    text-decoration: none;
    display: block;
    background: linear-gradient(to bottom, #9cd4f4 0%, #5ca9d6 2%, #0286cf 100%);
    width: 100%;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 400;
    text-align: justify;
    color: #fff;
    padding: 32px 24px;
    margin-top: 56px;
}

.rental .wrapper .side ul li {
    width: 100%;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
    padding-left: 14px;
    margin-top: 4px;
    position: relative;
}

.rental .wrapper .side ul li::before {
    content: "○";
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 768px) {
    .rental .wrapper .side {
        /*border-right: 1px solid #ccc;*/
        /*max-width: 240px;*/
        max-width: 24.489795918%;
        /*margin-right: 30px;*/
        margin-right: 3.061224489%;
        padding-top: 32px;
        /*padding-right: 20px;*/
    }
}

@media (min-width: 1024px) {
    .rental .wrapper .side ul {
        margin-left: 16px;
    }
}

/***-----------------------------------
main
-----------------------------------***/
.rental .wrapper .main {
    width: 100%;
}

@media (min-width: 768px) {
    .rental .wrapper .main {
        /*max-width: 710px;*/
        max-width: 72.448979591%;
        order: 2;
    }
}

/***-----------------------------------
features
-----------------------------------***/
.features .wrap .item {
    width: 100%;
}

.features .wrap .item a {
    text-decoration: none;
    border-radius: 8px;
    display: block;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    margin: 16px auto 24px;
}

.features .wrap .item a:hover {
    background: #333;
}

.features .wrap .item a:hover img {
    transform: scale(110%);
    opacity: 0.5;
}

.features .wrap .item a img {
    object-fit: cover;
    transition: all 0.3s;
}

.features .wrap .item a p {
    background: #0286cf;
    width: 100%;
    font-size: 18px;
    line-height: 1.6em;
    font-weight: 600;
    text-align: center;
    color: #fff;
    padding: 4px;
    margin: 0;
    position: absolute;
    bottom: 0;
}

.rental .features h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .features h2.h2__features {
    font-size: 18px;
    line-height: 1.6em;
    margin-top: 64px;
}

.rental .features .features__wrap {
    display: flex;
    flex-wrap: wrap;
}

.rental .features .features__wrap .features__wrap__item {
    width: calc((100% - 12px) /2);
    margin-right: 12px;
    margin-bottom: 12px;
}

.rental .features .features__wrap .features__wrap__item:nth-child(2n) {
    margin-right: 0;
}

.rental .features .features__wrap .features__wrap__item p {
    font-size: 12px;
    line-height: 1.4em;
    text-align: center;
}

.rental .features .features__txt h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .features .features__txt p {
    font-size: 16px;
    line-height: 1.6em;
    text-align: justify;
    margin-top: 24px;
}

.rental .features .features__txt p.ex {
    font-size: 20px;
}

.rental .features .features__txt p.mt {
    margin-top: 16px;
}

.rental .features .features__txt ul {
    list-style-type: disc;
    margin-left: 24px;
}

.rental .features .features__txt ul li {
    font-size: 16px;
    line-height: 1.6em;
    text-align: justify;
}

@media (min-width: 768px) {
    .features .wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }

    .features .wrap .item {
        width: calc((100% - 24px)/2);
        margin-right: 24px;
    }

    .features .wrap .item:nth-child(2n) {
        margin-right: 0;
    }

    .features .wrap .item a {
        text-decoration: none;
        border-radius: 8px;
        display: block;
        overflow: hidden;
        transition: all 0.3s;
        position: relative;
        margin: 0;
    }

    .features .wrap .item a:hover {
        background: #333;
    }

    .features .wrap .item a:hover img {
        transform: scale(110%);
        opacity: 0.5;
    }

    .features .wrap .item a img {
        object-fit: cover;
        transition: all 0.3s;
    }

    .features .wrap .item a p {
        background: #0286cf;
        width: 100%;
        font-size: 18px;
        line-height: 1.6em;
        font-weight: 600;
        text-align: center;
        color: #fff;
        padding: 4px;
        margin: 0;
        position: absolute;
        bottom: 0;
    }

    .rental .features h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .features h2.h2__features {
        font-size: 32px;
        line-height: 1.6em;
        margin-top: 80px;
    }

    .rental .features .features__wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .rental .features .features__wrap .features__wrap__item {
        width: calc((100% - 64px) /3);
        margin-right: 32px;
        margin-bottom: 32px;
    }

    .rental .features .features__wrap .features__wrap__item:nth-child(2n) {
        margin-right: 32px;
    }

    .rental .features .features__wrap .features__wrap__item:nth-child(3n) {
        margin-right: 0;
    }

    .rental .features .features__wrap .features__wrap__item p {
        font-size: 16px;
        text-align: center;
    }

    .rental .features .features__txt h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .features .features__txt p {
        font-size: 16px;
        line-height: 1.6em;
        text-align: justify;
        margin-top: 32px;
    }

    .rental .features .features__txt p.ex {
        font-size: 24px;
    }

    .rental .features .features__txt ul {
        list-style-type: disc;
        margin-left: 24px;
    }

    .rental .features .features__txt ul li {
        font-size: 16px;
        line-height: 1.6em;
    }
}

/***-----------------------------------
guide
-----------------------------------***/
.rental .guide h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .guide .guide__item h3 {
    background: #d9edf7;
    border-color: #bce8f1;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6em;
    padding: 8px 16px;
    color: #3a87ad;
    margin-top: 12px;
}

.rental .guide .guide__item p {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0;
    margin-top: 12px;
}

.rental .guide .guide__item p span {
    display: block;
    font-weight: 600;
}

@media (min-width: 768px) {
    .rental .guide h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .guide .guide__item h3 {
        background: #d9edf7;
        border-color: #bce8f1;
        border-radius: 4px;
        font-size: 18px;
        line-height: 1.6em;
        padding: 8px 16px;
        color: #3a87ad;
        margin-top: 24px;
    }

    .rental .guide .guide__item p {
        font-size: 16px;
        line-height: 1.6em;
        padding: 0 24px;
        margin-top: 24px;
    }

    .rental .guide .guide__item p span {
        display: block;
        font-weight: 600;
    }
}

/***-----------------------------------
price
-----------------------------------***/
.rental .price h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .price .price__txt h3 {
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}

.rental .price .price__txt p {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .price .photo.size {
    text-align: center;
    margin: 12px auto 0;
}

.rental .price .photo.size img {
    max-width: 640px;
}

.rental .price .price__wrap {
    display: flex;
    flex-wrap: wrap;
}

.rental .price .price__wrap .price__wrap__item {
    width: calc((100% - 12px) /2);
    margin-right: 12px;
    margin-top: 12px;
}

.rental .price .price__wrap .price__wrap__item:nth-last-child(1) {
    margin-right: 0;
}

.rental .price .price__wrap .price__wrap__item:nth-child(2n) {
    margin-right: 0;
}

.rental .price .price__wrap .price__wrap__item p {
    font-size: 12px;
    line-height: 1.4em;
    text-align: center;
}

.rental .price table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 16px;
}

.rental .price table tr th {
    background: #ebd967;
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #777777;
    padding: 4px;
}

.rental .price table tr td {
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    text-align: center;
    color: #777777;
    padding: 4px;
}

.rental .price ul {
    margin-top: 16px;
}

.rental .price ul.vol {
    margin-top: 4px;
}

.rental .price ul li {
    font-size: 12px;
    line-height: 1.6em;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .rental .price h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .price .price__txt h3 {
        font-size: 18px;
        line-height: 1.6em;
        font-weight: 600;
    }

    .rental .price .price__txt p {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .price .photo.size {
        text-align: center;
        margin: 24px auto 0;
    }

    .rental .price .photo.size img {
        max-width: 640px;
    }

    .rental .price .price__wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .rental .price .price__wrap .price__wrap__item {
        width: calc((100% - 64px) /3);
        margin-right: 32px;
        margin-top: 32px;
    }

    .rental .price .price__wrap .price__wrap__item:nth-last-child(1) {
        margin-right: 0;
    }

    .rental .price .price__wrap .price__wrap__item:nth-child(2n) {
        margin-right: 32px;
    }

    .rental .price .price__wrap .price__wrap__item p {
        font-size: 16px;
        text-align: center;
    }

    .rental .price table {
        border-collapse: collapse;
        width: 100%;
        margin-top: 32px;
    }

    .rental .price table tr th {
        background: #ebd967;
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: center;
        color: #777777;
        padding: 8px;
    }

    .rental .price table tr td {
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        text-align: center;
        color: #777777;
        padding: 8px;
    }

    .rental .price ul {
        margin-top: 32px;
    }

    .rental .price ul.vol {
        margin-top: 8px;
    }

    .rental .price ul li {
        font-size: 16px;
        line-height: 1.6em;
        margin-top: 8px;
    }
}

/***-----------------------------------
faq
-----------------------------------***/
.rental .faq h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .faq dl.faq__txt dt p.ques {
    font-size: 16px;
    line-height: 1.6em;
    margin-top: 24px;
}

.rental .faq dl.faq__txt dt p.ques::before {
    content: "Ｑ.";
}

.rental .faq dl.faq__txt dd p.ans {
    font-size: 16px;
    line-height: 1.6em;
    margin-top: -8px;
}

.rental .faq dl.faq__txt dd p.ans::before {
    content: "Ａ.";
    font-size: 16px;
    line-height: 1.6em;
}

.rental .faq dl.faq__txt dd .faq__txt__pat p {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .faq dl.faq__txt dd .faq__txt__pat ul {
    font-size: 16px;
    line-height: 1.6em;
    margin-top: -16px;
    margin-left: 16px;
}

.rental .faq dl.faq__txt dd .faq__txt__pat p.faq__txt__pat__end {
    margin-top: 0;
}

@media (min-width: 768px) {
    .rental .faq h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .faq dl.faq__txt dt p.ques {
        font-size: 18px;
        line-height: 1.6em;
        margin-top: 32px;
    }

    .rental .faq dl.faq__txt dt p.ques::before {
        content: "Ｑ.";
    }

    .rental .faq dl.faq__txt dd p.ans {
        font-size: 16px;
        line-height: 1.6em;
        margin-top: -8px;
    }

    .rental .faq dl.faq__txt dd p.ans::before {
        content: "Ａ.";
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .faq dl.faq__txt dd .faq__txt__pat p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .rental .faq dl.faq__txt dd .faq__txt__pat ul {
        font-size: 16px;
        line-height: 1.6em;
        margin-top: -16px;
        margin-left: 16px;
    }

    .rental .faq dl.faq__txt dd .faq__txt__pat p.faq__txt__pat__end {
        margin-top: 0;
    }
}

/***-----------------------------------
tour
-----------------------------------***/
.rental .tour h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .tour .tour__txt h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .tour .tour__txt dt {
    font-size: 16px;
    line-height: 1.6em;
    margin-top: 8px;
}

.rental .tour .tour__txt dd {
    font-size: 16px;
    line-height: 1.6em;
    margin-left: 16px;
}

.rental .tour .tour__txt p {
    font-size: 12px;
    line-height: 1.6em;
}

.rental .tour .tour__txt ul {
    margin-top: 24px;
}

.rental .tour .tour__txt ul li {
    list-style: circle;
    font-size: 16px;
    line-height: 1.6em;
    margin-top: 8px;
    margin-left: 24px;
}

@media (min-width: 768px) {
    .rental .tour h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .tour .tour__txt h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .tour .tour__txt dt {
        font-size: 16px;
        line-height: 1.6em;
        margin-top: 8px;
    }

    .rental .tour .tour__txt dd {
        font-size: 16px;
        line-height: 1.6em;
        margin-left: 16px;
    }

    .rental .tour .tour__txt p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .rental .tour .tour__txt ul {
        margin-top: 32px;
    }

    .rental .tour .tour__txt ul li {
        list-style: circle;
        font-size: 16px;
        line-height: 1.6em;
        margin-top: 8px;
        margin-left: 24px;
    }
}

/***-----------------------------------
flow
-----------------------------------***/
.rental .flow h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .flow .flow__wrap .flow__wrap__box {
    border: 1px solid #ddd;
    padding: 0 12px 4px;
    margin-top: 40px;
    position: relative;
}

.rental .flow .flow__wrap .flow__wrap__box::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top: 12px solid #ffcc99;
}

.rental .flow .flow__wrap .flow__wrap__box:nth-last-child(1) {
    margin-bottom: 16px;
}

.rental .flow .flow__wrap .flow__wrap__box:nth-last-child(1)::after {
    border: none;
}

.rental .flow .flow__wrap .flow__wrap__box h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .flow .flow__wrap .flow__wrap__box p {
    font-size: 16px;
    line-height: 1.6em;
    margin-top: 4px;
}

.rental .flow .flow__wrap .flow__wrap__box table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 16px;
}

.rental .flow .flow__wrap .flow__wrap__box table tr th {
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #777777;
    padding: 4px;
}

.rental .flow .flow__wrap .flow__wrap__box table tr td {
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    text-align: justify;
    color: #777777;
    padding: 4px;
}

.rental .flow .flow__item h3 {
    background: #d9edf7;
    border-color: #bce8f1;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6em;
    padding: 8px 16px;
    color: #3a87ad;
    margin-top: 16px;
}

.rental .flow .flow__item p {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 16px;
    margin-top: 16px;
}

.rental .flow .flow__item a {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 16px;
    margin-top: 16px;
}

.rental .flow .flow__item ul {
    margin-left: 16px;
}

.rental .flow .flow__item ul li {
    font-size: 16px;
    line-height: 1.6em;
    margin-top: 4px;
}

.rental .flow .flow__item ul li span {
    display: inline;
    text-indent: 0;
}

.rental .flow .flow__item ul li::before {
    content: "※";
}

@media (min-width: 768px) {
    .rental .flow h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .flow .flow__wrap .flow__wrap__box {
        border: 1px solid #ddd;
        padding: 0 24px 8px;
        margin-top: 40px;
        position: relative;
    }

    .rental .flow .flow__wrap .flow__wrap__box::after {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top: 12px solid #ffcc99;
    }

    .rental .flow .flow__wrap .flow__wrap__box:nth-last-child(1) {
        margin-bottom: 24px;
    }

    .rental .flow .flow__wrap .flow__wrap__box:nth-last-child(1)::after {
        border: none;
    }

    .rental .flow .flow__wrap .flow__wrap__box h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .flow .flow__wrap .flow__wrap__box p {
        font-size: 16px;
        line-height: 1.6em;
        margin-top: 8px;
    }

    .rental .flow .flow__wrap .flow__wrap__box table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 16px;
    }

    .rental .flow .flow__wrap .flow__wrap__box table tr th {
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: center;
        color: #777777;
        padding: 8px;
    }

    .rental .flow .flow__wrap .flow__wrap__box table tr td {
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        text-align: justify;
        color: #777777;
        padding: 8px;
    }

    .rental .flow .flow__item h3 {
        background: #d9edf7;
        border-color: #bce8f1;
        border-radius: 4px;
        font-size: 18px;
        line-height: 1.6em;
        padding: 8px 16px;
        color: #3a87ad;
        margin-top: 24px;
    }

    .rental .flow .flow__item p {
        font-size: 16px;
        line-height: 1.6em;
        padding: 0 24px;
        margin-top: 24px;
    }

    .rental .flow .flow__item a {
        font-size: 16px;
        line-height: 1.6em;
        padding: 0 24px;
        margin-top: 24px;
    }

    .rental .flow .flow__item ul {
        margin-left: 24px;
    }

    .rental .flow .flow__item ul li {
        font-size: 16px;
        line-height: 1.6em;
        margin-top: 8px;
    }

    .rental .flow .flow__item ul li span {
        display: block;
        text-indent: 18px;
    }

    .rental .flow .flow__item ul li::before {
        content: "※";
    }
}

/***-----------------------------------
access
-----------------------------------***/
.rental .access h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .access .access__wrap .access__wrap__item {
    margin-top: 16px;
}

.rental .access .access__wrap .access__wrap__item h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .access .access__wrap .access__wrap__item h4 {
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}

.rental .access .access__wrap .access__wrap__item p {
    font-size: 16px;
    line-height: 1.6em;
    margin-left: 0;
}

.rental .access .access__wrap .access__wrap__item .google__map iframe {
    width: 100%;
    height: 200px;
}

@media (min-width: 768px) {
    .rental .access h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .access .access__wrap .access__wrap__item {
        margin-top: 32px;
    }

    .rental .access .access__wrap .access__wrap__item h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .access .access__wrap .access__wrap__item h4 {
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 600;
    }

    .rental .access .access__wrap .access__wrap__item p {
        font-size: 16px;
        line-height: 1.6em;
        margin-left: 32px;
    }

    .rental .access .access__wrap .access__wrap__item .google__map iframe {
        width: 100%;
        height: 400px;
    }
}

/***-----------------------------------
company
-----------------------------------***/
.rental .company h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .company .company__message {
    position: relative;
}

.rental .company .company__message h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .company .company__message h4 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .company .company__message .company__message__txt p {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .company .company__message .company__message__txt .mt p {
    margin-top: 20px;
}

.rental .company .company__message .company__message__txt .mt .photo {
    border: 1px solid #f0f0f0;
    width: 160px;
    padding: 8px 8px 0;
    float: right;
    margin-left: 16px;
}

.rental .company .company__message .company__message__txt .mt .photo p {
    font-size: 12px;
    text-align: center;
    margin-top: 4px;
}

.rental .company .company__outline {
    margin-top: 24px;
}

.rental .company .company__outline h3 {
    font-size: 16px;
    line-height: 1.6em;
    clear: both;
}

.rental .company .company__outline .company__outline__txt table {
    border-collapse: collapse;
    width: 100%;
}

.rental .company .company__outline .company__outline__txt table tr th {
    width: 25%;
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #777777;
    padding: 4px;
}

.rental .company .company__outline .company__outline__txt table tr td {
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    text-align: justify;
    color: #777777;
    padding: 4px;
}

.rental .company .company__business {
    margin-top: 24px;
}

.rental .company .company__business h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .company .company__business .company__business__txt table {
    border-collapse: collapse;
    width: 100%;
}

.rental .company .company__business .company__business__txt table tr th {
    width: 25%;
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #777777;
    padding: 4px;
}

.rental .company .company__business .company__business__txt table tr td {
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    text-align: justify;
    color: #777777;
    padding: 4px;
}

.rental .company .company__contact {
    margin-top: 24px;
}

.rental .company .company__contact h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .company .company__contact .company__contact__txt table {
    border-collapse: collapse;
    width: 100%;
}

.rental .company .company__contact .company__contact__txt table tr th {
    width: 25%;
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #777777;
    padding: 4px;
}

.rental .company .company__contact .company__contact__txt table tr td {
    border: 1px solid #808080;
    font-size: 12px;
    line-height: 1.6em;
    text-align: justify;
    color: #777777;
    padding: 4px;
}

@media (min-width: 768px) {
    .rental .company h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .company .company__message {
        position: relative;
    }

    .rental .company .company__message h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .company .company__message h4 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .company .company__message .company__message__txt p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .rental .company .company__message .company__message__txt .mt p {
        margin-top: 40px;
    }

    .rental .company .company__message .company__message__txt .mt .photo {
        border: 1px solid #f0f0f0;
        width: 216px;
        padding: 12px 12px 0;
        float: right;
        margin-left: 32px;
    }

    .rental .company .company__message .company__message__txt .mt .photo p {
        font-size: 12px;
        text-align: center;
        margin-top: 4px;
    }

    .rental .company .company__outline {
        margin-top: 32px;
    }

    .rental .company .company__outline h3 {
        font-size: 18px;
        line-height: 1.6em;
        clear: both;
    }

    .rental .company .company__outline .company__outline__txt table {
        border-collapse: collapse;
        width: 100%;
    }

    .rental .company .company__outline .company__outline__txt table tr th {
        width: 25%;
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: center;
        color: #777777;
        padding: 8px;
    }

    .rental .company .company__outline .company__outline__txt table tr td {
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        text-align: justify;
        color: #777777;
        padding: 8px;
    }

    .rental .company .company__business {
        margin-top: 32px;
    }

    .rental .company .company__business h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .company .company__business .company__business__txt table {
        border-collapse: collapse;
        width: 100%;
    }

    .rental .company .company__business .company__business__txt table tr th {
        width: 25%;
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: center;
        color: #777777;
        padding: 8px;
    }

    .rental .company .company__business .company__business__txt table tr td {
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        text-align: justify;
        color: #777777;
        padding: 8px;
    }

    .rental .company .company__contact {
        margin-top: 32px;
    }

    .rental .company .company__contact h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .company .company__contact .company__contact__txt table {
        border-collapse: collapse;
        width: 100%;
    }

    .rental .company .company__contact .company__contact__txt table tr th {
        width: 25%;
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: center;
        color: #777777;
        padding: 8px;
    }

    .rental .company .company__contact .company__contact__txt table tr td {
        border: 1px solid #808080;
        font-size: 16px;
        line-height: 1.6em;
        text-align: justify;
        color: #777777;
        padding: 8px;
    }
}

/***-----------------------------------
contact
-----------------------------------***/
.rental .contact h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .contact .contact__form h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .contact .contact__form h4 {
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
    margin-bottom: 4px;
}

.rental .contact .contact__form p {
    font-size: 16px;
    line-height: 1.6em;
    margin-left: 0;
    position: relative;
    margin-top: 16px;
}

.rental .contact .contact__form p.mt {
    margin-top: 4px;
}

.rental .contact .contact__form p::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 4%;
    border: 5px solid transparent;
    border-top: 10px solid #ff6600;
}

.rental .contact .contact__form p.none::after {
    border: none;
}

.rental .contact .contact__form ul {
    margin-left: 0;
}

.rental .contact .contact__form ul li {
    font-size: 12px;
    line-height: 1.6em;
}

@media (min-width: 768px) {
    .rental .contact h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .contact .contact__form h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .contact .contact__form h4 {
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .rental .contact .contact__form p {
        font-size: 16px;
        line-height: 1.6em;
        margin-left: 32px;
        position: relative;
        margin-top: 24px;
    }

    .rental .contact .contact__form p.mt {
        margin-top: 8px;
    }

    .rental .contact .contact__form p::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 4%;
        border: 5px solid transparent;
        border-top: 10px solid #ff6600;
    }

    .rental .contact .contact__form p.none::after {
        border: none;
    }

    .rental .contact .contact__form ul {
        margin-left: 32px;
    }

    .rental .contact .contact__form ul li {
        font-size: 16px;
        line-height: 1.6em;
    }
}

/***-----------------------------------
service
-----------------------------------***/
.rental .service h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .service .service__txt h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .service .service__txt p {
    font-size: 16px;
    line-height: 1.6em;
}

@media (min-width: 768px) {
    .rental .service h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .service .service__txt h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .service .service__txt p {
        font-size: 16px;
        line-height: 1.6em;
    }
}

/***-----------------------------------
point
-----------------------------------***/
.rental .point h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .point .point__txt h3 {
    background: #dff0d8;
    border-color: #d6e9c6;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6em;
    padding: 8px 16px;
    color: #468847;
    margin-top: 16px;
}

.rental .point .point__txt p {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .rental .point h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .point .point__txt h3 {
        background: #dff0d8;
        border-color: #d6e9c6;
        border-radius: 4px;
        font-size: 18px;
        line-height: 1.6em;
        padding: 8px 16px;
        color: #468847;
        margin-top: 24px;
    }

    .rental .point .point__txt p {
        font-size: 16px;
        line-height: 1.6em;
        padding: 0 24px;
        margin-top: 24px;
    }
}

/***-----------------------------------
howto
-----------------------------------***/
.rental .howto h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .howto .howto__txt .howto__txt__item {
    margin-top: 48px;
}

.rental .howto .howto__txt .howto__txt__item .photo p {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .howto .howto__txt .howto__txt__item .description p {
    font-size: 16px;
    line-height: 1.6em;
    position: relative;
    margin-bottom: 32px;
}

.rental .howto .howto__txt .howto__txt__item .description p::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 10%;
    border: 6px solid transparent;
    border-top: 12px solid #ffcc99;
}

.rental .howto .howto__txt .howto__txt__item .description.none p::after {
    border: none;
}

.rental .howto .howto__txt .howto__txt__item .description p:nth-last-child(1) {
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .rental .howto h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .howto .howto__txt .howto__txt__item {
        margin-top: 48px;
    }

    .rental .howto .howto__txt .howto__txt__item .photo p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .rental .howto .howto__txt .howto__txt__item .description p {
        font-size: 16px;
        line-height: 1.6em;
        position: relative;
        margin-bottom: 32px;
    }

    .rental .howto .howto__txt .howto__txt__item .description p::after {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 10%;
        border: 6px solid transparent;
        border-top: 12px solid #ffcc99;
    }

    .rental .howto .howto__txt .howto__txt__item .description.none p::after {
        border: none;
    }

    .rental .howto .howto__txt .howto__txt__item .description p:nth-last-child(1) {
        margin-bottom: 24px;
    }
}

/***-----------------------------------
voice
-----------------------------------***/
.rental .voice h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .voice .voice__item {
    border: 1px solid #eaeaea;
    padding: 4px 12px 16px;
    margin-top: 16px;
    box-shadow: 1px 2px 1px 1px rgba(0, 0, 0, 0.15);
}

.rental .voice .voice__item h3 {
    font-size: 16px;
    line-height: 1.6em;
    color: #0286cf;
    margin-bottom: 4px;
}

.rental .voice .voice__item .date {
    font-size: 12px;
    line-height: 1.6em;
    color: #0286cf;
}

.rental .voice .voice__item .date span {
    color: #afaeae;
}

.rental .voice .voice__item p {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .voice .voice__item .name {
    font-size: 14px;
    line-height: 1.6em;
    text-align: right;
}

@media (min-width: 768px) {
    .rental .voice h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .voice .voice__item {
        border: 1px solid #eaeaea;
        padding: 8px 24px 32px;
        margin-top: 32px;
        box-shadow: 1px 2px 1px 1px rgba(0, 0, 0, 0.15);
    }

    .rental .voice .voice__item h3 {
        font-size: 20px;
        line-height: 1.6em;
        color: #0286cf;
        margin-bottom: 8px;
    }

    .rental .voice .voice__item .date {
        font-size: 12px;
        line-height: 1.6em;
        color: #0286cf;
    }

    .rental .voice .voice__item .date span {
        color: #afaeae;
    }

    .rental .voice .voice__item p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .rental .voice .voice__item .name {
        font-size: 14px;
        line-height: 1.6em;
        text-align: right;
    }
}

/***-----------------------------------
collect
-----------------------------------***/
.rental .collect h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .collect .collect__item h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .collect .collect__item p {
    font-size: 16px;
    line-height: 1.6em;
    margin-left: 0;
}

.rental .collect .collect__item p.tenant {
    margin-left: 0;
}

@media (min-width: 768px) {
    .rental .collect h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .collect .collect__item h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .collect .collect__item p {
        font-size: 16px;
        line-height: 1.6em;
        margin-left: 32px;
    }

    .rental .collect .collect__item p.tenant {
        margin-left: 0;
    }
}

/***-----------------------------------
order
-----------------------------------***/
.rental .order h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .order .order__item h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .order .order__item h4 {
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
    margin-bottom: 4px;
}

.rental .order .order__item p {
    font-size: 16px;
    line-height: 1.6em;
    margin-left: 0;
    position: relative;
    margin-top: 16px;
}

.rental .order .order__item p.mt {
    margin-top: 4px;
}

.rental .order .order__item p::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 4%;
    border: 5px solid transparent;
    border-top: 10px solid #ff6600;
}

.rental .order .order__item p.none::after {
    border: none;
}

.rental .order .order__item ul {
    margin-left: 0;
}

.rental .order .order__item ul li {
    font-size: 12px;
    line-height: 1.6em;
}

@media (min-width: 768px) {
    .rental .order h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .order .order__item h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .order .order__item h4 {
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .rental .order .order__item p {
        font-size: 16px;
        line-height: 1.6em;
        margin-left: 32px;
        position: relative;
        margin-top: 24px;
    }

    .rental .order .order__item p.mt {
        margin-top: 8px;
    }

    .rental .order .order__item p::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 4%;
        border: 5px solid transparent;
        border-top: 10px solid #ff6600;
    }

    .rental .order .order__item p.none::after {
        border: none;
    }

    .rental .order .order__item ul {
        margin-left: 32px;
    }

    .rental .order .order__item ul li {
        font-size: 16px;
        line-height: 1.6em;
    }
}

/***-----------------------------------
oka
-----------------------------------***/
.rental .oka h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .oka .oka__txt {
    margin-top: 8px;
    margin-bottom: 24px;
}

.rental .oka .oka__txt h3 {
    font-size: 16px;
    line-height: 1.6em;
}

.rental .oka .oka__txt p {
    font-size: 16px;
    line-height: 1.6em;
    text-align: justify;
}

.rental .oka .oka__wrap {
    display: flex;
    flex-wrap: wrap;
}

.rental .oka .oka__wrap .oka__wrap__item {
    width: calc((100% - 12px) /2);
    margin-right: 12px;
    margin-top: 12px;
}

.rental .oka .oka__wrap .oka__wrap__item:nth-last-child(1) {
    margin-right: 0;
}

.rental .oka .oka__wrap .oka__wrap__item:nth-child(2n) {
    margin-right: 0;
}

.rental .oka .oka__wrap .oka__wrap__item p {
    font-size: 12px;
    line-height: 1.4em;
    text-align: center;
}

.rental .oka p.security {
    font-size: 16px;
    line-height: 1.6em;
    margin: 20px auto;
}

@media (min-width: 768px) {
    .rental .oka h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .oka .oka__txt {
        margin-top: 16px;
        margin-bottom: 32px;
    }

    .rental .oka .oka__txt h3 {
        font-size: 18px;
        line-height: 1.6em;
    }

    .rental .oka .oka__txt p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .rental .oka .oka__wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .rental .oka .oka__wrap .oka__wrap__item {
        width: calc((100% - 64px) /3);
        margin-right: 32px;
        margin-top: 32px;
    }

    .rental .oka .oka__wrap .oka__wrap__item:nth-last-child(1) {
        margin-right: 0;
    }

    .rental .oka .oka__wrap .oka__wrap__item:nth-child(2n) {
        margin-right: 32px;
    }

    .rental .oka .oka__wrap .oka__wrap__item p {
        font-size: 16px;
        text-align: center;
    }

    .rental .oka p.security {
        font-size: 16px;
        line-height: 1.6em;
        margin: 40px auto;
    }
}

/***-----------------------------------
privacy
-----------------------------------***/
.rental .privacy h2 {
    font-size: 18px;
    line-height: 1.6em;
}

.rental .privacy .privacy__item h3 {
    font-size: 16px;
    line-height: 1.6em;
    margin-top: 24px;
}

.rental .privacy .privacy__item p {
    font-size: 16px;
    line-height: 1.6em;
    margin-left: 0;
}

.rental .privacy .privacy__item ul li {
    font-size: 16px;
    line-height: 1.6em;
    margin-left: 0;
}

@media (min-width: 768px) {
    .rental .privacy h2 {
        font-size: 32px;
        line-height: 1.6em;
    }

    .rental .privacy .privacy__item h3 {
        font-size: 18px;
        line-height: 1.6em;
        margin-top: 32px;
    }

    .rental .privacy .privacy__item p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .rental .privacy .privacy__item ul li {
        font-size: 16px;
        line-height: 1.6em;
    }
}

/***-----------------------------------
thanks
-----------------------------------***/
.rental .thanks {
    margin: 0 auto;
}

.rental .thanks h2 {
    font-size: 16px;
    line-height: 1.6em;
    text-align: center;
}

.rental .thanks .thanks__item p {
    font-size: 14px;
    line-height: 1.6em;
    text-align: justify;
}

@media (min-width: 768px) {
    .rental .thanks h2 {
        font-size: 24px;
        line-height: 1.6em;
        text-align: center;
    }

    .rental .thanks .thanks__item p {
        font-size: 15px;
        line-height: 1.6em;
        text-align: center;
    }
}

/***-----------------------------------
footer__company
-----------------------------------***/
.footer__company {
    background: #303030;
}

.footer__company .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 8px;
}

.footer__company h2 {
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.footer__company p {
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #ccc;
}

.footer__company p a {
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #ccc;
}

.footer__company p.all {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .footer__company {
        background: #303030;
    }

    .footer__company .container {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 16px 8px;
    }

    .footer__company h2 {
        font-size: 18px;
        line-height: 1.6em;
        font-weight: 600;
        text-align: center;
        color: #fff;
    }

    .footer__company p {
        font-size: 14px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: center;
        color: #ccc;
    }

    .footer__company p a {
        font-size: 14px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: center;
        color: #ccc;
    }

    .footer__company p a.tel {
        pointer-events: none;
    }

    .footer__company p.all {
        text-decoration: underline;
    }
}

/***-----------------------------------
footer__nav
-----------------------------------***/
.footer__nav {
    background: #171717;
    padding: 0 0 40px;
}

.footer__nav ul li {
    text-align: center;
}

.footer__nav ul li a {
    display: block;
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #ccc;
    padding: 8px 16px;
    position: relative;
}

.footer__nav p.copyright {
    font-size: 12px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #777;
    padding: 4px 16px;
    position: relative;
}

@media (min-width: 768px) {
    .footer__nav {
        background: #171717;
        padding: 0;
    }

    .footer__nav ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .footer__nav ul li a {
        display: block;
        font-size: 14px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: center;
        color: #ccc;
        padding: 0 16px;
        position: relative;
    }

    .footer__nav ul li a::before {
        content: "";
        border-right: 1px solid #ccc;
        width: 1px;
        height: 8px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .footer__nav p.copyright {
        font-size: 14px;
        line-height: 1.6em;
        font-weight: 400;
        text-align: right;
        color: #777;
        padding: 4px 16px;
        position: relative;
    }
}

/***-----------------------------------
footer__nav__sp
-----------------------------------***/
.footer__nav__sp {
    background: #000;
    width: 100%;
    position: fixed;
    bottom: 0;
}

.footer__nav__sp ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.footer__nav__sp ul li {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: calc((100% - 0px) /4);
}

.footer__nav__sp ul li:nth-last-child(1) {
    border-right: none;
}

.footer__nav__sp ul li a {
    text-decoration: none;
    display: block;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: center;
    color: #fff;
    padding: 10px 0;
}