@charset "UTF-8";

/* ----------------------------------------
* all
---------------------------------------- */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.wrap2 {
    max-width: 1200px;
    position: relative;
}

body {
    font-family: "Oswald", sans-serif;
}
/* ----------------------------------------
* header
---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 90px;
    z-index: 99999;
    background: #fff;
}

.header .nav{
    padding: 0 10px;
    font-size: 1.6rem;
}

.header .nav a {
    text-decoration: none;
    color: #000;
    letter-spacing: 0;
}

.header .nav-separator {
    background-color: #eaeaea;
    width: 4px;
    height: 14px;
}

.header .wrap,
.header .wrap > .frow {
    height: 100%;
}

.header .wrap2,
.header .wrap2 > .frow {
    height: 100%;
}

.header .logo {
    background-image: url(/data/img/common/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 140px;
    height: 32px;
}

.header .apply {
    background-color: #ffef3f;
    padding: 13px 30px;
    font-weight: 700;
    color: #134d9f;
    position: fixed;
    top: 0;
    right: 0;
    height: 90px;
}

.header.scrolled {
    background: #134d9f;
}

.header.scrolled .nav a {
    color: #fff;
}

.header.scrolled .nav-separator {
    background-color: #3c71b4;
}

.header.scrolled .logo {
    background-image: url(/data/img/common/logo_white.png);
}

.header .menu {
    position: relative;
}

@media (max-width: 1199px) {
    .header {
        height: 60px;
    }

    .margin20 {
        margin-left: 20px;
        margin-right: 20px;
    }

    .header .logo {
        height: 28px;
    }
}

@media (min-width: 1199px) {
    .large-justify {
        justify-content: center !important;
    }
}
/* ----------------------------------------
* footer
---------------------------------------- */
.footer {
    background: #414141;
    color: #fff;
    padding: 30px 30px 130px;
}

#floating {
    position: fixed;
    bottom: 40px;
    left: 0;
    width: 100%;
}

/* ----------------------------------------
* hamburger
---------------------------------------- */
.hamburger {
    position: absolute;
    display: block;
    width: 27px;
    height: 14px;
    bottom: 0;
    right: 0;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}

.hamburger span:nth-of-type(1) {
    top: 0;
}

.hamburger span:nth-of-type(2) {
    top: 6px;
}

.hamburger span:nth-of-type(3) {
    bottom: 0;
}

.hamburger::after {
    content: "MENU";
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 8px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 1.5px;
}

.scrolled .hamburger span {
    background-color: white;
}

.scrolled .hamburger::after {
    color: white;
}

.is_open .hamburger span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
}

.is_open .hamburger span:nth-of-type(2) {
    opacity: 0;
}

.is_open .hamburger span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
}

.is_open .hamburger::after {
    content: "CLOSE";
}

/* ----------------------------------------
* sp_menu
---------------------------------------- */
.sp_menu {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: #134d9f;
    padding: 95px 50px 90px 50px;
    z-index: 999;
    overflow: auto;
}

.sp_menu ul {
    width: 100%;
}

.sp_menu ul li {
    margin: 12px 0 0 0;
    text-align: center;
    width: 280px;
    border-bottom: 1px solid #3c71b4;
    padding-bottom: 12px;
}

.sp_menu ul li:last-child {
    border: 0;
}

.sp_menu ul li a {
    color: white;
    text-decoration: none;
}

.sp_menu ul li .apply {
    background-color: #ffef3f;
    font-weight: 700;
    color: #134d9f;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
}

/* ----------------------------------------
* content
---------------------------------------- */



.background-blue{
    background-color: rgb(89, 161, 255);
}

#content {
    padding-top: 90px;
    min-width: 320px;
}

section {
    padding: 100px 15px;
}

section:first-child {
    padding-top: 0;
    padding-bottom: 0;
}

.box-1 {
    background-color: #ffef3f;
    color: #134d9f;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 2.5;
    display: inline-block;
    letter-spacing: 0.4px;
    width: 350px;
    text-align: center;
    box-shadow: 0 8px 0 0 #ffcc00;
    border-radius: 7px;
}

.box-1:hover {
    transform: translateY(3px);
    box-shadow: 0 6px 0 0 #ffcc00;
    background-color: #e6d942;
}

.box-3>div:first-child {
    height: calc(100% - 90px);
}

.box-3>div:last-child {
    height: 90px;
    padding-top: 20px;
}

.box-4 {
    background-color: #fff;
    border-radius: 10px;
}

.box-5 {
    border-radius: 10px 10px 0 0;
}

.box-qa {
    background-color: #fff;
    border-radius: 5px;
    display: inline-block;
    max-width: 890px;
    width: 100%;
}

.box-qa .que,
.box-qa .ans {
    width: 30px;
    position: relative;
}

.box-qa .que::before {
    content: "Q.";
    position: absolute;
    top: -3px;
    left: 0;
    font-weight: 500;
    font-size: 2.5rem;
}

.box-qa .ans::before {
    content: "A.";
    position: absolute;
    top: -3px;
    left: 0;
    font-weight: 500;
    font-size: 2.5rem;
}

.box-qa .text {
    width: calc(100% - 60px);
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1.8;
}

.box-qa .toggle {
    width: 30px;
    text-align: right;
}

.arrow-1 {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 13.0px;
    border-color: transparent transparent transparent #134d9f; 
}

.bubble-1 {
    background-color: #ffef3f;
    color: #134d9f;
    font-size: 3.3rem;
    font-weight: 700;
    border-radius: 5px;
    padding: 12px 20px;
    line-height: 1;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.4px;
}

.bubble-1::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: #ffef3f transparent transparent transparent;
    position: absolute;
    left: 35px;
    top: 100%;
}

.bubble-2 {
    background-image: url(/data/img/lp/car4all/bubble_1.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    max-width: 100%;
    padding-bottom: 16px;
    display: inline-block;
}

.color-main {
    color: #134d9f;
}

.color-second {
    color: #28b4c4;
}

.color-info {
    color: #777777;
}

.color-attention {
    color: #ed5656;
}

.bg-main {
    background-color: #134d9f;
}

.bg-second {
    background-color: #28b4c4;
}

.bg-info {
    background-color: #eaeaea
}

.bg-attention {
    background-color: #ed5656;
}

.bg-image-1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right 20%;
    background-image: url(/data/img/lp/car4all/bg_top.png);
    padding-top: 400px !important;
    padding-bottom: 30px !important;
}

.bg-image-4 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(/data/img/lp/car4all/bg_top3.jpg);
    padding-top: 400px !important;
    padding-bottom: 30px !important;
}

.bg-image-2 {
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom left;
    background-image: url(/data/img/lp/car4all/car.png);
}

.bg-image-3 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    background-image: url(/data/img/lp/car4all/bg_step.png);
}

.link-init {
    text-decoration: none;
    color: inherit;
}

.fw-light {
    font-weight: 300;
}

.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.icon-toggle {
    background-image: url(/data/img/lp/car4all/icon_open.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    display: inline-block;
    cursor: pointer;
}

.icon-toggle.is-open {
    background-image: url(/data/img/lp/car4all/icon_close.png);
}

.headline-border {
    text-align: center;
}

.headline-border::before {
    content: "";
    width: 70px;
    border: 0.5px solid #fff;
    display: inline-block;
}

.title-border {
    border-bottom: 1px solid #666666;
}

.text-marker {
    text-indent: -2rem;
    padding-left: 3rem;
}

.text-marker::before {
    content: "・";
    color: #134d9f;
    font-size: 5rem;
    line-height: 1rem;
    width: 2rem;
    height: 1.8rem;
    display: inline-block;
    vertical-align: middle;
}

#notice{
    background-color: red;
    color: white;
    font-size: 150%;
}

/* lg+ */
@media (max-width: 1280px) {
    .bg-image-1 {
        padding-top: 300px !important;
    }
}

/* md */
@media (max-width: 1199px) {
    #content {
        padding-top: 60px;
    }

    section {
        padding: 60px 15px;
    }

    .bubble-1 {
        font-size: 2.1rem;
        padding: 7px 10px;
    }

    .bg-image-1 {
        margin-top: -30px;
    }

    .bg-image-2 {
        background-size: 330px;
    }

    .headline-border::before {
        width: 50px;
    }
    
}

/* xs */
@media (max-width: 767px) {
    #floating {
        bottom: 30px;
    }

    .box-1 {
        font-size: 2.4rem;
        width: 250px;
    }

    .box-qa .que::before {
        font-size: 2rem;
    }
    
    .box-qa .ans::before {
        font-size: 2rem;
    }
    
    .box-qa .text {
        font-size: 1.8rem;
        line-height: 1.6;
    }

    .bg-image-2 {
        background-size: 220px;
    }

    #notice{
        background-color: red;
        color: white;
        font-size: 100%;
    }
}
