@charset "utf-8";
/* =========================================================
   Base Styles
========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #333;
}
a {
    color: #BEC2C4;
    transition: opacity 0.2s ease;
}
a:hover, a:focus-visible {
    opacity: 0.8;
}
/* =========================================================
   Utility Classes
========================================================= */
.inline-block {
    display: inline-block;
}
.responsive-img {
    display: block;
    max-width: 100%;
    height: auto;
}
/* 矢印アイコン */
.arrow_circle {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
    text-decoration: none;
}
.arrow_circle::before {
    content: '';
    width: 1em;
    height: 1em;
    background: #3e8acc;
    border-radius: 50%;
    position: absolute;
    top: 55%;
    left: 0;
    margin-top: -0.5em;
}
.arrow_circle::after {
    content: '';
    width: 0.4em;
    height: 0.4em;
    border-top: solid 0.15em #fff;
    border-right: solid 0.15em #fff;
    position: absolute;
    top: 55%;
    left: 0.25em;
    margin-top: -0.2em;
    transform: rotate(45deg);
}
p {
    line-height: 1.6;
    margin: 0 0 5px;
}
p small {
    line-height: 1.4;
    font-size: 90%;
}
/* =========================================================
   Layout Containers
========================================================= */
.container {
    width: 1160px;
    max-width: 100%;
    margin: 0 auto;
}
.contents {
    margin-top: 25px;
}
.pd {
    padding: 0 10px;
}
/* =========================================================
   Header
========================================================= */
.header_container {
    background: #111111;
}
.header {
    padding-top: 15px;
    padding-bottom: 15px;
}
/* =========================================================
   Main Visual & Sub Box
========================================================= */
.main-title {
    margin: 0;
}
.main-sub-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 30px 10px;
    background: #000;
    color: #EEEFF0;
}
.block-L {
    width: 45%;
    padding: 0 20px;
}
.block-L img {
    margin-left: auto;
    width: 80%;
}
.block-R {
    width: 55%;
    padding: 0 20px;
}
.block-R p.sub-copy {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.75;
}
/* =========================================================
   Buttons & Links
========================================================= */
.drive_first {
    display: block;
    width: 100%;
    text-decoration: none;
}
.btn-line {
    display: block;
    width: 85%;
    padding: 10px 17px;
    border-radius: 3px;
    background-color: #fff;
    color: #323638;
    margin: 0 auto;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.btn-line:hover, .btn-line:focus-visible {
    background-color: #ddd;
}
.sp-txt-link {
    font-size: 70%;
    margin-left: 1em;
}
.link_btn {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    margin-bottom: 5px;
}
.link_Please {
    color: #3E8ACC;
    text-decoration: underline;
}
.link_Please:hover {
    text-decoration: none;
}
/* =========================================================
   Product Blocks (Flexboxを利用した高さ揃え)
========================================================= */
.products-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* 子要素の高さを自動的に揃える */
}
.block {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 20px 0 0;
    padding: 0 10px;
}
.black-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0;
    padding: 20px;
    background: #000;
    border-top: 1px solid #FFFFFF;
    color: #EEEFF0;
}
.black-box-inner {
    margin-bottom: 15px;
}
.black-box h2.product-copy {
    font-size: 23px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}
.black-box p {
    text-align: justify;
}
.black-box a.link_btn {
    margin-top: auto;
    align-self: flex-start;
}
/* =========================================================
   Notice Section
========================================================= */
h2.product-headline-border {
    margin: 10px 0;
    padding: 0 0 5px;
    border-bottom: 2px solid #BEC2C4;
    font-size: 25px;
}
.notice-list {
    margin: 10px 0;
    padding-left: 20px;
    line-height: 1.6;
}
.notice-list li {
    margin-bottom: 5px;
}
/* =========================================================
   Media Queries - Tablet (max-width: 920px)
========================================================= */
@media only screen and (max-width: 920px) {
    .container {
        width: 100%;
    }
    body {
        font-size: 13px;
    }
    .main-sub-box {
        padding: 15px;
    }
    .block-R p.sub-copy {
        font-size: 15px;
        line-height: 1.45;
    }
    .black-box h2.product-copy {
        font-size: 18px;
    }
    .btn-line {
        font-size: 19px;
    }
}
/* =========================================================
   Media Queries - Smartphone (max-width: 767px)
========================================================= */
@media only screen and (max-width: 767px) {
    .header {
        padding-right: 0;
        padding-left: 0;
    }
    .main-sub-box {
        flex-direction: column;
    }
    .block-L {
        width: 70%;
        margin: 0 auto;
        padding: 10px 0 0;
    }
    .block-L img {
        width: 100%;
    }
    .block-R {
        width: 100%;
        margin: 20px 0;
        padding: 0;
    }
    .block-R p.sub-copy {
        text-align: center;
        font-size: 15px;
    }
    .products-container {
        display: block;
    }
    .block {
        width: 100%;
        margin: 20px 0 0;
    }
    .link_btn {
        font-size: 15px;
    }
    h2.product-headline-border {
        font-size: 20px;
    }
    .btn-line {
        width: 95%;
        font-size: 17px;
    }
}