/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: #000000;
    line-height: 1.6;
    max-width: 1512px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1080px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 0 50px;
}

/* Header */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #000000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    max-width: 100%;
}

.header-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.header-logo a:hover {
    transform: scale(1.05);
}

.header-logo img {
    width: 300px;
    height: auto;
}

.btn-simulation {
    background-color: #EE3167;
    color: #FFFFFF;
    padding: 20px 40px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.362;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-simulation:hover {
    transform: scale(1.05);
}

/* FV */
.fv {
    width: 100%;
}

.fv img {
    width: 100%;
    height: auto;
}

/* 無料仮審査 */
.free-trial {
    background-color: #F8F5F5;
    padding: 50px 0;
    border-bottom: 1px solid #000000;
}

.free-trial .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.free-trial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.free-trial-button-primary {
    display: inline-block;
    transition: transform 0.3s ease;
}

.free-trial-button-primary:hover {
    transform: scale(1.05);
}

.free-trial-button-primary img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 100px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.free-trial-note {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.362;
    color: #000000;
}

.free-trial-image {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
}

.free-trial-image img {
    width: 45px;
    height: 71px;
}

/* 悩み・共感 */
.worries {
    padding: 0 0 50px;
    border-bottom: 1px solid #000000;
    background-image: url('images/tile_back.png');
    background-repeat: repeat;
}

.worries-header {
    text-align: center;
    padding: 80px 0 30px;
    position: relative;
}

.worries-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.362;
    color: #18297E;
    margin-bottom: 30px;
}

.worries-image {
    position: absolute;
    right: 15px;
    bottom: 0;
}

.worries-image img {
    width: 170px;
    height: auto;
}

@media (max-width: 1080px) {
    .worries-image {
        display: none;
    }
}

.worries-list {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.worries-item {
    flex: 1;
    background-color: #FFFFFF;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.worries-item-header {
    background-color: #18297E;
    padding: 30px;
    position: relative;
}

.worries-item-title {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 1.362;
    color: #FFFFFF;
}

.worries-item-icon {
    position: absolute;
    bottom: 0;
    right: 10px;
}

.worries-item-icon img {
    width: 60px;
    height: auto;
}

@media (max-width: 1080px) {
    .worries-item-icon {
        display: none;
    }
}

.worries-item-text {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.591;
    color: #000000;
    padding: 30px;
}

.worries-message {
    width: 100%;
}

.worries-message img {
    width: 100%;
    height: auto;
    display: block;
}

/* 3つの理由 */
.three-reasons {
    background-color: #FFEDED;
    padding: 80px 0 50px;
    border-bottom: 1px solid #000000;
    margin: 0 auto;
}

.three-reasons-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.three-reasons-header img {
    max-width: 964px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    margin-bottom: 50px;
    padding: 0 0;
    position: relative;
}

.reason-image {
    width: 40%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reason-image-01 {
    background-image: url('images/reason-01-bg.png');
}

.reason-image-02 {
    background-image: url('images/reason-02-bg.png');
}

.reason-image-03 {
    background-image: url('images/reason-03-bg.png');
}

.reason-content {
    flex: 1;
    background-color: #FFFFFF;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15);
}

.reason-header {
    background-image: url('images/pinkdot_back.png');
    background-repeat: repeat;
    
    padding: 30px 50px;
    margin-bottom: 0;
    position: relative;
}

.reason-label {
    font-weight: 600;
    font-size: 35px;
    line-height: 1.362;
    color: #FFFF00;
    margin-bottom: 10px;
}

.reason-title {
    font-weight: 700;
    font-size: 35px;
    line-height: 1.362;
    color: #FFFFFF;
}

.reason-description {
    background-color: #F2F2F2;
    padding: 30px 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.591;
    color: #000000;
}

.reason-details {
    padding: 50px;
}

.reason-details-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.346;
    color: #EE3167;
    border-bottom: 1px solid #000000;
    padding: 5px 0;
    margin-bottom: 20px;
}

.reason-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.reason-tag {
    background-color: #EBE7DA;
    padding: 5px 20px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75;
    color: #000000;
}

.reason-character {
    position: absolute;
    right: 5px;
    bottom: 0;
}

.reason-character img {
    width: 109px;
    height: 146px;
}

@media (max-width: 1080px) {
    .reason-character {
        display: none;
    }
}

/* 5つの理由 */
.five-reasons {
    padding: 80px 0 50px;
    border-bottom: 1px solid #000000;
    background-image: url('images/tile_back.png');
    background-repeat: repeat;
}

.five-reasons-header {
    text-align: center;
    margin-bottom: 50px;
}

.five-reasons-header img {
    max-width: 924px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.five-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 0 0;
}

.five-reason-card {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border-radius: 30px;
}

.five-reason-card-special {
    display: flex;
    align-items: stretch;
    max-width: 1080px;
    width: 100%;
    margin: 50px auto 0;
}

.five-reason-card-special .five-reason-image {
    width: 35%;
    height: auto;
    flex-shrink: 0;
}

.five-reason-card-special .five-reason-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.five-reason-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.five-reason-image-01 {
    background-image: url('images/reason-5-01.png');
}

.five-reason-image-02 {
    background-image: url('images/reason-5-02.png');
}

.five-reason-image-03 {
    background-image: url('images/reason-5-03.png');
}

.five-reason-image-04 {
    background-image: url('images/reason-5-04.png');
}

.five-reason-image-05 {
    background-image: url('images/reason-5-05.png');
}

.five-reason-header {
    background-image: url('images/pinkdot_back.png');
    background-repeat: repeat;
    color: #FFFFFF;
    padding: 30px 50px;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.362;
}

.five-reason-text {
    background-color: #FFFFFF;
    padding: 30px 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.591;
    color: #000000;
    border-radius: 0 0 30px 30px;
}

/* おすすめ */
.recommend {
    background-color: #F8F5F5;
    padding: 50px 0;
    border-bottom: 1px solid #000000;
    margin: 0 auto;
}

.recommend-header {
    padding: 50px 0;
    margin-bottom: 50px;
    position: relative;
}

.recommend-logo {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 10px;
    margin-bottom: 10px;
}

.recommend-logo img {
    width: 304px;
    height: auto;
}

.recommend-logo span {
    font-weight: 600;
    font-size: 35px;
    line-height: 1.362;
    color: #000000;
}

.recommend-title-border {
    border-bottom: 1px dashed #000000;
    padding-bottom: 15px;
    text-align: center;
}

.recommend-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.362;
    color: #000000;
}

.recommend-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.recommend-item {
    background-color: #FFFFFF;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.15);
    padding: 30px;
}

.recommend-item-header {
    background-color: #EE3167;
    color: #FFFFFF;
    padding: 30px;
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.362;
    margin-bottom: 30px;
}

.recommend-item-text {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.591;
    color: #000000;
}

.recommend-image {
    position: absolute;
    right: -43px;
    bottom: 100%;
}

.recommend-image img {
    width: 230px;
    height: auto;
}

@media (max-width: 1080px) {
    .recommend-image {
        display: none;
    }
}

/* ラインナップ */
.lineup {
    padding: 50px 0;
    border-bottom: 1px solid #000000;
    background-image: url('images/tile_back.png');
    background-repeat: repeat;
}

.lineup-header {
    text-align: center;
    padding: 50px 0;
    position: relative;

}

.lineup-title-main {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.362;
    color: #000000;
    margin-bottom: 10px;
}

/* 汎用的な改行クラス */
.br-768,
.br-480 {
    display: none;
}

.lineup-title-sub {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.lineup-title-underline {
    font-weight: 600;
    font-size: 70px;
    line-height: 1.362;
    color: #EE3167;
    border-bottom: 8px solid #EE3167;
    padding-bottom: 5px;
    display: inline-block;
}

/* カルーセル */
.lineup-carousel {
    position: relative;
    max-width: 1512px;
    width: 100%;
    margin: 0 auto 40px;
    padding: 0;
    box-sizing: border-box;
}

.carousel-slider {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    box-sizing: border-box;
}

.carousel-slider .slick-list {
    margin: 0 -15px;
}

.carousel-slider .slick-slide {
    box-sizing: border-box;
    margin: 0 15px;
}

@media (min-width: 1101px) {
    .carousel-slider .slick-slide,
    .carousel-slider-2 .slick-slide {
        width: 435px !important;
    }
}

.carousel-item {
    background-color: #FFFFFF;
    border: 1px solid #000000;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    padding: 40px 30px;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    align-items: stretch;
    min-width: 0;
    flex-shrink: 0;
}

.carousel-image {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0 0;
}

.carousel-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.carousel-maker {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1em;
    color: #0B0B0B;
    padding-left: 10px;
}

.carousel-model {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 0.917em;
    color: #FFFFFF;
    background-color: #EE3167;
    padding: 10px;
}

.carousel-target {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.591em;
    color: #EE3167;
}

.carousel-description {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.556em;
    color: #000000;
}


.lineup-footer {
    padding: 40px 0 20px;
    text-align: center;
}

.lineup-footer-text {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.362;
    color: #EE3167;
    margin-bottom: 10px;
}

.lineup-footer-note {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.362;
    color: #000000;
}

.lineup-image {
    position: absolute;
    right: -50px;
    bottom: 0;
}

.lineup-image img {
    width: 260px;
    height: auto;
}

@media (max-width: 1200px) {
    .lineup-image {
        display: none;
    }
    
    /* フォントサイズのレスポンシブ */
    .btn-simulation {
        font-size: 18px;
    }
    
    .free-trial-note {
        font-size: 18px;
    }
    
    .worries-title {
        font-size: 42px;
    }
    
    .worries-item-text {
        font-size: 20px;
    }
    
    .three-reasons-highlight {
        font-size: 32px;
    }
    
    .reason-label {
        font-size: 32px;
    }
    
    .reason-title {
        font-size: 32px;
    }
    
    .reason-description {
        font-size: 20px;
    }
    
    .reason-detail-label {
        font-size: 32px;
    }
    
    .reason-detail-value {
        font-size: 20px;
    }
    
    .reason-tag {
        font-size: 24px;
    }
    
    .five-reasons-title-main {
        font-size: 32px;
    }
    
    .five-reason-header {
        font-size: 32px;
    }
    
    .five-reason-text {
        font-size: 20px;
    }
    
    .recommend-title {
        font-size: 32px;
    }
    
    .recommend-item-header {
        font-size: 32px;
    }
    
    .recommend-item-text {
        font-size: 20px;
    }
    
    .lineup-title-main {
        font-size: 28px;
    }
    
    .lineup-title-sub {
        font-size: 25px;
    }
    
    .lineup-footer-text {
        font-size: 36px;
    }
    
    .lineup-footer-note {
        font-size: 23px;
    }
    
    .carousel-maker {
        font-size: 20px;
    }
    
    .carousel-model {
        font-size: 22px;
    }
    
    .carousel-target {
        font-size: 20px;
    }
    
    .carousel-description {
        font-size: 16px;
    }
    
    .faq-title {
        font-size: 45px;
    }
    
    .faq-subtitle {
        font-size: 23px;
    }
    
    .faq-q {
        font-size: 27px;
    }
    
    .faq-question-text {
        font-size: 27px;
    }
    
    .faq-answer {
        font-size: 20px;
    }
    
    .cta-header-text {
        font-size: 21px;
    }
    
    .cta-header-label {
        font-size: 32px;
    }
    
    .cta-header-title {
        font-size: 39px;
    }
    
    .cta-body-text {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 20px;
    }
    
    .cta-note {
        font-size: 13px;
    }
    
    .footer-badge {
        font-size: 23px;
    }
    
    .footer-description-main {
        font-size: 23px;
    }
    
    .footer-description-text {
        font-size: 23px;
    }
    
    .shop-name {
        font-size: 27px;
    }
    
    .shop-type {
        font-size: 18px;
    }
    
    .shop-address,
    .shop-hours {
        font-size: 16px;
    }
    
    .shop-tel {
        font-size: 23px;
    }
    
    .copyright-text {
        font-size: 23px;
    }
    
    .copyright-note {
        font-size: 12px;
    }
}

@media (max-width: 1512px) {
    .lineup-carousel {
        padding: 0 20px;
    }
    
    .carousel-slider .slick-slide {
        margin: 0 10px;
    }
}

@media (max-width: 1000px) {
    .lineup-carousel {
        padding: 0 15px;
    }
    
    .carousel-slider .slick-list {
        margin: 0 -10px;
    }
    
    .carousel-slider .slick-slide {
        margin: 0 10px;
    }

    .carousel-item {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-image {
        width: 100%;
        height: 200px;
    }

    .lineup-image {
        position: static;
        text-align: center;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .lineup-carousel {
        padding: 0 10px;
    }

    .carousel-slider .slick-list {
        margin: 0 -5px;
    }

    .carousel-slider .slick-slide {
        margin: 0 5px;
    }
}

/* FAQ */
.faq {
    background-color: #F8F5F5;
    padding: 80px 0;
    border-bottom: 1px solid #000000;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.faq-title-section {
    margin-bottom: 20px;
}

.faq-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.448;
    color: #EE3167;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-weight: 500;
    font-size: 25px;
    line-height: 1.362;
    color: #000000;
}

.faq-image-wrapper {
    position: relative;
    display: inline-block;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
    padding: 20px;
    background-color: #FFFFFF;
    max-width: 718px;
    width: 100%;
    margin: 0 auto;
}

.faq-image-wrapper img {
    width: 100%;
    height: auto;
}

.faq-character {
    position: absolute;
    bottom: -40px;
    right: -125px;
}

.faq-character img {
    width: 216px;
    height: 246px;
}

@media (max-width: 1080px) {
    .faq-character {
        display: none;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.faq-item {
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: #EE3167;
    color: #FFFFFF;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #d12a5a;
}

.faq-q {
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.282;
    letter-spacing: 0.1em;
}

.faq-question-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.333;
    flex: 1;
}

.faq-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #FFFFFF;
    padding: 0 30px;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.455;
    color: #000000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 30px;
}

/* CTA */
.cta {
    padding: 60px 0;
    border-bottom: 1px solid #000000;
    position: relative;
    margin: 0 auto;
    background-image: url('images/tile_back.png');
    background-repeat: repeat;
}

.cta-content {
    display: flex;
    flex-direction: column;
}

.cta-header-box {
    background-color: #FF0048;
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    position: relative;
}

.cta-header-text {
    font-weight: 600;
    font-size: 23px;
    line-height: 1.362;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.cta-header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cta-header-label {
    font-weight: 700;
    font-size: 35px;
    line-height: 1.362;
    color: #FFFF00;
}

.cta-header-title {
    font-weight: 700;
    font-size: 43px;
    line-height: 1.362;
}

.cta-body-box {
    background-color: #FFFFFF;
    padding: 30px 20px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
    box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.1), 4px 4px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.cta-body-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.362;
    color: #000000;
}

.cta-button {
    background: linear-gradient(180deg, rgba(27, 32, 87, 1) 47%, rgba(14, 5, 23, 1) 100%);
    color: #FFFFFF;
    padding: 20px 40px;
    border-radius: 40px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.362;
    letter-spacing: 0.03em;
    transition: transform 0.3s ease;
    max-width: 480px;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-note {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.362;
    color: #000000;
}

.cta-image {
    position: absolute;
    right: 5px;
    bottom: 0;
}

.cta-image img {
    width: 148px;
    height: 139px;
}

@media (max-width: 1080px) {
    .cta-image {
        display: none;
    }
}

/* Footer */
.footer {
    background-color: #F8F5F5;
    padding: 80px 0;
    border-bottom: 1px solid #000000;
    margin: 0 auto;
}

.footer-header {
    text-align: center;
    margin-bottom: 35px;
}

.footer-header a {
    display: block;
    transition: transform 0.3s ease;
}

.footer-header a:hover {
    transform: scale(1.05);
}

.footer-header img {
    max-width: 370px;
    width: 100%;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}

.footer-badge {
    background-color: #FF0048;
    color: #FFFFFF;
    padding: 10px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.362;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-description {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-description-main {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.362;
    color: #FF0048;
}

.footer-description-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    color: #000000;
}

.footer-shops {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.footer-shop {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
}

/* すべての要素に上と左を設定 */
.footer-shop {
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
}

/* 右端の列（2番目と4番目）に右を追加 */
.footer-shop:nth-child(2n) {
    border-right: 1px solid #000000;
}

/* 下端の行（3番目と4番目）に下を追加 */
.footer-shop:nth-child(n+3) {
    border-bottom: 1px solid #000000;
}

.shop-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-name {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.362;
    color: #FF0048;
    padding: 0 20px;
    border-left: 6px solid #FF0048;
}

.shop-type {
    background-color: #FF0048;
    color: #FFFFFF;
    padding: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.362;
}

.shop-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shop-address,
.shop-hours {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.362;
    color: #000000;
}

.shop-tel {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.362;
    color: #000000;
}

.tel-link {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.tel-link:hover {
    opacity: 0.7;
}

.shop-image {
    width: 100%;
    height: 322px;
    overflow: hidden;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-image iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Copyright */
.copyright {
    background-color: #FF0048;
    padding: 20px 0;
    text-align: center;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .copyright {
        padding-bottom: 120px;
    }
}

.copyright-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.copyright-note {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.362;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 1100px) {
    .container {
        padding: 0 20px;
    }
}
@media (max-width: 1000px) {
    .worries-list {
        flex-direction: column;
    }

    .reason-item {
        flex-direction: column;
    }

    .reason-image {
        width: 100%;
        height: 200px;
    }

    .five-reasons-grid {
        grid-template-columns: 1fr;
    }

    .recommend-list {
        grid-template-columns: 1fr;
    }
    
    .five-reason-card-special {
        display: block;
        max-width: 100%;
        margin: 50px auto 0;
    }
    
    .five-reason-card-special .five-reason-image {
        width: 100%;
        height: 300px;
    }
    
    .five-reason-card-special .five-reason-content-wrapper {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
    }
    
    .header-button {
        display: none;
    }

    .btn-simulation {
        padding: 15px 30px;
        font-size: 16px;
    }

    .worries-list {
        flex-direction: column;
    }

    .reason-item {
        flex-direction: column;
    }

    .reason-image {
        width: 100%;
        height: 200px;
    }

    .reason-character {
        position: static;
        text-align: center;
        margin-top: 20px;
    }

    .five-reasons-grid {
        grid-template-columns: 1fr;
    }

    .recommend-list {
        grid-template-columns: 1fr;
    }

    .footer-shops {
        grid-template-columns: 1fr;
    }
    
    /* 1列になった時のボーダー調整（重なりを防ぐ） */
    .footer-shop {
        border-top: none !important;
        border-left: 1px solid #000000;
        border-right: 1px solid #000000;
        border-bottom: none !important;
    }
    
    .footer-shop:first-child {
        border-top: 1px solid #000000 !important;
    }
    
    /* 最後の要素以外はすべて下のボーダーを設定 */
    .footer-shop:not(:last-child) {
        border-bottom: 1px solid #000000 !important;
    }
    
    .footer-shop:last-child {
        border-bottom: 1px solid #000000 !important;
    }
    
    /* デフォルトのnth-childセレクタを無効化 */
    .footer-shop:nth-child(2n) {
        border-right: 1px solid #000000;
    }
    
    /* 3番目と4番目の間のボーダーを確実に表示 */
    .footer-shop:nth-child(3) {
        border-bottom: 1px solid #000000 !important;
    }

    /* フォントサイズのレスポンシブ調整 */
    .btn-simulation {
        font-size: 14px;
    }
    
    .free-trial-note {
        font-size: 16px;
    }
    
    .worries-title {
        font-size: 24px;
    }
    
    .worries-item-text {
        font-size: 18px;
    }
    
    .three-reasons-highlight {
        font-size: 26px;
    }
    
    .reason-label {
        font-size: 26px;
    }
    
    .reason-title {
        font-size: 24px;
    }
    
    .reason-description {
        font-size: 18px;
    }
    
    .reason-detail-label {
        font-size: 26px;
    }
    
    .reason-detail-value {
        font-size: 18px;
    }
    
    .reason-tag {
        font-size: 18px;
    }
    
    .five-reasons-title-main {
        font-size: 26px;
    }
    
    .five-reason-header {
        font-size: 24px;
    }
    
    .five-reason-text {
        font-size: 18px;
    }
    
    .recommend-title {
        font-size: 26px;
    }
    
    .recommend-item-header {
        font-size: 22px;
    }
    
    .recommend-item-text {
        font-size: 18px;
    }
    
    .lineup-title-main {
        font-size: 22px;
    }
    
    .lineup-title-sub {
        font-size: 20px;
    }
    
    .lineup-footer-text {
        font-size: 26px;
    }
    
    .lineup-footer-note {
        font-size: 20px;
    }
    
    .carousel-maker {
        font-size: 18px;
    }
    
    .carousel-model {
        font-size: 20px;
    }
    
    .carousel-target {
        font-size: 18px;
    }
    
    .carousel-description {
        font-size: 14px;
    }
    
    .faq-title {
        font-size: 26px;
    }
    
    .faq-subtitle {
        font-size: 20px;
    }
    
    .faq-q {
        font-size: 22px;
    }
    
    .faq-question-text {
        font-size: 18px;
    }
    
    .faq-answer {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .faq-item.active  .faq-answer {
        font-size: 16px;
        padding: 20px;
    }
    
    .cta-header-text {
        font-size: 18px;
    }
    
    .cta-header-label {
        font-size: 26px;
    }
    
    .cta-header-title {
        font-size: 26px;
    }
    
    .cta-body-text {
        font-size: 14px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 20px 30px;
    }
    
    .cta-note {
        font-size: 13px;
    }
    
    .footer-badge {
        font-size: 20px;
    }
    
    .footer-description-main {
        font-size: 20px;
    }
    
    .footer-description-text {
        font-size: 20px;
    }
    
    .shop-name {
        font-size: 24px;
    }
    
    .shop-type {
        font-size: 16px;
    }
    
    .shop-address,
    .shop-hours {
        font-size: 14px;
    }
    
    .shop-tel {
        font-size: 20px;
    }
    
    .copyright-text {
        font-size: 16px;
    }
    
    .copyright-note {
        font-size: 13px;
    }
    
    /* パディング30pxを20pxに変更 */
    .worries-item-header {
        padding: 20px;
    }
    
    .worries-item-text {
        padding: 20px;
    }
    
    .reason-header {
        padding: 20px;
    }
    
    .reason-description {
        padding: 20px;
    }
    
    .reason-details {
        padding: 20px;
    }
    
    .five-reason-header {
        padding: 20px;
    }
    
    .five-reason-text {
        padding: 20px;
    }
    
    .recommend-item {
        padding: 20px;
    }
    
    .recommend-item-header {
        padding: 20px;
    }
    
    .cta-body-box {
        padding: 20px;
    }
    
    .footer-shop {
        padding: 20px;
    }
    
    .carousel-item{
        padding: 20px;
    }
    
    .reason-details-title {
        padding: 20px 0;
    }
    
    .lineup-title-underline {
        font-size: 28px;
    }
    .worries-item-title {
     font-size: 26px;
 }
 .recommend-item-header {
    margin-bottom: 20px;
}
.worries-header {
    padding: 50px 0 0;
}
.three-reasons {
    padding: 50px 0 0;
}

.five-reasons
 {
    padding: 50px 0 50px;
}
.recommend-header {
    padding: 0 0 50px 0;
    margin-bottom: 0;
    position: relative;
}
.recommend-list {
    margin-bottom: 0;
}
.lineup-header {
    text-align: center;
    padding: 0 0 50px;
    position: relative;
}
.faq {
    padding: 50px 0;
}
.cta {
    padding: 50px 0;
}
.footer {
    padding: 50px 0;
}
.faq-question {
    padding:20px;
}
.reason-details-title {
    font-size: 22px;
}
}

@media (max-width: 768px) {
    .br-768 {
        display: inline;
    }
}

@media (max-width: 480px) {
    .br-480 {
        display: inline;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header-logo img {
        width: 250px;
        height: auto;
    }

    .btn-simulation {
        padding: 12px 20px;
        font-size: 14px;
    }

    .worries-title {
        font-size: 24px;
    }

    .three-reasons-number-large,
    .five-reasons-number-large {
        font-size: 80px;
    }

    .reason-header,
    .reason-description {
        padding: 20px 30px;
    }

    .reason-details {
        padding: 0 20px 20px 20px;
    }

    .reason-tags {
        flex-direction: column;
        gap: 10px;
    }
    
}

/* 追従バナー */
.fixed-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.fixed-banner a {
    display: block;
    transition: transform 0.3s ease;
}

.fixed-banner a:hover {
    transform: scale(1.05);
}

.fixed-banner img {
    width: 480px;
    height: auto;
    border-radius: 15px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    display: block;
}

@media (max-width: 768px) {
    .fixed-banner {
        bottom: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 400px;
    }
    
    .fixed-banner img {
        width: 100%;
        border-radius: 15px 15px 0 0;
    }
    
    /* 追従バナー分の余白をフッターに追加 */
    .copyright {
        padding-bottom: 120px;
    }
}
