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

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

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

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-name-wrapper {
    display: flex;
    gap: 14.82px;
    align-items: center;
}

.store-name-img {
    width: 192.71px;
    height: 38.29px;
}

.store-name {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.448;
    color: #000000;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 19px;
}

.btn-primary {
    background-color: #DD0012;
    color: #FFFFFF;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.448;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    text-decoration: none;
    color: #FFFFFF;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
    animation: shine 2s ease infinite;
}

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

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    width: 208px;
}

.phone-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 31px;
    line-height: 1.172;
    color: #DD0012;
}

.phone-number a,
.phone-number-fv a,
.phone-number-cta a,
.shop-phone a,
.copyright-phone a {
    color: inherit;
    text-decoration: none;
}

.phone-number a:hover,
.phone-number-fv a:hover,
.phone-number-cta a:hover,
.shop-phone a:hover,
.copyright-phone a:hover {
    opacity: 0.8;
}

.reception-hours {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.172;
    letter-spacing: 0.02em;
    color: #000000;
}

/* FV Section */
.fv {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(251, 212, 0, 1) 60%, rgba(241, 171, 10, 1) 100%);
    display: flex;
    flex-direction: column;
    padding-top: 74px;
}

.fv-content {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    grid-template-columns: 1fr 324px;
    gap: 20px;
    align-items: start;
    height: 660px;
}

.fv-award {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background-color: #DD0012;
    padding: 10px;
    padding-right: 354px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.award-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 1.448;
    color: #FFF100;
    text-align: center;
}

.fv-main-content {
    padding-top: 20px;
    width: 100%;
}

.fv-slider-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.fv-slider {
    width: 100%;
    margin: 0 auto;
}

.fv-slider .slider-item {
    padding: 0;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 278px;
}

.fv-slider .slider-item img {
    display: none;
}

/* Slickスライダーのカスタマイズ */
.fv-slider .slick-prev,
.fv-slider .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
}

.fv-slider .slick-prev {
    left: 20px;
}

.fv-slider .slick-next {
    right: 20px;
}

.fv-slider .slick-prev:before,
.fv-slider .slick-next:before {
    font-size: 40px;
    color: #FFFFFF;
    opacity: 0.8;
}

.fv-slider .slick-dots {
    bottom: 20px;
}

.fv-slider .slick-dots li button:before {
    font-size: 12px;
    color: #FFFFFF;
    opacity: 0.5;
}

.fv-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #FFFFFF;
}

.fv-main-text {
    display: block;
    gap: 11.59px;
    width: 100%;
    padding-right: 354px;
    margin-bottom: 30px;
}

.fv-subtitle {
    padding: 20px;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.448;
    text-align: center;
    color: #DD0012;
}

.fv-title-wrapper {
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.fv-title-decoration {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 23px;
    height: 15px;
    background-color: #DD0012;
}

.fv-title {
    max-width: 870px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.fv-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding-right: 354px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.fv-cta-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.362;
    text-align: center;
    color: #000000;
}

.fv-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28.5px;
    flex-wrap: wrap;
}

.btn-fv-primary {
    background-color: #DD0012;
    color: #FFFFFF;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 27px;
    line-height: 1.448;
    padding: 15px 40px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.btn-fv-primary:visited,
.btn-fv-primary:hover,
.btn-fv-primary:active,
.btn-fv-primary:focus {
    text-decoration: none;
    color: #FFFFFF;
}

.btn-fv-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
    animation: shine 2s ease infinite;
}

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

.btn-badge {
    background-color: #FFF100;
    color: #000000;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.448;
    padding: 5px 10px;
    border-radius: 100px;
}

.btn-text {
    display: block;
}

.contact-info-fv {
    display: flex;
    flex-direction: column;
    min-width: 312px;
    text-align: center;
}

.phone-number-fv {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 47px;
    line-height: 1.172;
    color: #DD0012;
}

.reception-hours-fv {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.172;
    letter-spacing: 0.02em;
    color: #000000;
}

.fv-sidebar {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 0;
    right: 20px;
    width: auto;
    margin-top: -56PX;
    height: 716px;
    padding-bottom: 55px;
}

.fv-sidebar-img {
    width: auto;
    height: 100%;
    display: block;
}

.fv-sidebar-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.fv-sidebar-image img {
    width: 232px;
    height: 46px;
}

.fv-sidebar-badge {
    width: 100%;
    height: 137px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.57px;
    flex-wrap: wrap;
}

.badge-item {
    width: 39.35px;
    height: 39.35px;
    background-color: #DD0012;
    color: #FFFFFF;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.448;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7.87px;
}

.fv-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fv-sidebar-item {
    display: flex;
    justify-content: center;
    gap: 17px;
    background-color: #FFFFFF;
    padding: 33px 6px;
}

.fv-sidebar-number {
    width: 88px;
    height: 88px;
    background-color: #FFB400;
    color: #FFFFFF;
    font-family: 'Corporate Logo ver2', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 34px;
    flex-shrink: 0;
}

.fv-sidebar-text {
    flex: 1;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
    color: #000000;
    padding-right: 20px;
}

/* Reason Section */
.reason {
    background-color: #FFFFFF;
    padding: 50px 0;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.reason .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.section-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.448;
    text-align: center;
    color: #000000;
}

.section-subtitle {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.448;
    text-align: center;
    color: #DD0012;
}

.section-description {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.448;
    text-align: center;
    color: #000000;
}

.reason-list {
    width: 1000px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 30px 29px;
    border: 7px solid #FFB400;
    border-radius: 10px;
}

.reason-number {
    width: 88px;
    height: 88px;
    background-color: #DD0012;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.172;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.reason-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    text-align: left;
    width: 100%;
    height: auto;
}

.reason-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.448;
    color: #000000;
    text-align: left;
}

.reason-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.448;
    color: #000000;
    text-align: left;
}

.reason-note {
    width: 1000px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reason-note p {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.857;
    color: #000000;
}

.reason-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.reason-bottom-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.448;
    text-align: center;
    color: #DD0012;
}

.reason-badge {
    background-color: #DD0012;
    border-radius: 100px;
    padding: 10px 50px;
}

.reason-badge-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.448;
    text-align: center;
    color: #FFFFFF;
}

.reason-bottom-img-left {
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 1;
}

.reason-bottom-img-right {
    position: absolute;
    bottom: 10px;
    right: 0;
    z-index: 1;
}

@media (max-width: 1100px) {
    .reason-bottom-img-left {
        width: 279px;
        height: 232px;
    }
    
    .reason-bottom-img-right {
        width: 274px;
        height: 245px;
    }
}

@media (max-width: 1000px) {
    .reason-bottom-img-left,
    .reason-bottom-img-right {
        display: none;
    }
}

/* Flow Section */
.flow {
    background-image: url('images/bg_design.png');
    background-repeat: repeat;
    background-position: 0 0;
    padding: 50px 0;
    width: 100%;
    margin: 0 auto;
}

.flow .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
}

.flow-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 28px;
    background-color: #FFFFFF;
}

.flow-image {
    width: 256px;
    height: 181px;
    flex-shrink: 0;
}

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

.flow-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 30px;
    flex: 1;
}

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

.flow-step {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.448;
    color: #DD0012;
}

.flow-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.448;
    color: #000000;
}

.flow-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.448;
    color: #000000;
}

/* Voice Section */
.voice {
    background-image: url('images/bg_design_02.png');
    background-repeat: repeat;
    background-position: 0 0;
    padding: 50px 0;
    width: 100%;
    margin: 0 auto;
}

.voice .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 103px;
}

.voice-list {
    width: 100%;
    display: flex;
    gap: 20px;
}

.voice-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.voice-content {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px 20px;
    padding-top: 10px;
    flex: 1;
}

.voice-header {
    padding-top: 40px;
}

.voice-name {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.448;
    text-align: center;
    color: #DD0012;
}

.voice-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2em;
    color: #000000;
}

.voice-image {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 116px;
    height: 116px;
    border-radius: 50%;
    overflow: hidden;
}

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

/* FAQ Section */
.faq {
    background-color: #FFFFFF;
    padding: 50px 0;
    width: 100%;
    margin: 0 auto;
}

.faq .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
}

.faq-list {
    width: 1000px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.faq-list dt,
.faq-list dd {
    margin: 0;
}

.faq-list dt {
    margin-top: 26px;
    transition: margin-bottom 0.3s ease;
}

.faq-list dt:first-child {
    margin-top: 0;
}

.faq-list dt[aria-expanded="true"] {
    margin-bottom: 0;
}

.faq-list dt + dd {
    margin-top: 0;
}


.faq-list dd:not(.is-open) {
    margin-bottom: 0;
}

.faq-question {
    background-color: #DD0012;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

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

.faq-question[aria-expanded="true"] {
    border-radius: 10px 10px 0 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-q {
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.282;
    letter-spacing: 0.1em;
    text-align: center;
    color: #FFFF00;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 2em;
    color: #FFFFFF;
    flex: 1;
    margin: 0;
}

.faq-icon {
    width: 14px;
    height: 9.06px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #FFFFFF;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-answer {
    background-color: #FFFCE8;
    border-radius: 0 0 10px 10px;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0);
    transition: max-height 0.3s ease, padding 0.3s ease, transform 0.3s ease;
}

.faq-answer.is-open {
    padding: 20px;
    max-height: 1000px;
    transform: scaleY(1);
    transform-origin: top;
}

.faq-answer.is-closing {
    transform-origin: top;
    transform: scaleY(0);
}

.faq-answer-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 2em;
    color: #000000;
    margin: 0;
}

/* Shop Info Footer */
.shop-info {
    background-color: #DD0012;
    padding: 50px 0;
    width: 100%;
    margin: 0 auto;
}

.shop-info .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
}

.shop-info .section-title {
    color: #FFFFFF;
}

.shop-info .section-subtitle {
    color: #FFFF00;
}

.shop-info-content {
    width: 100%;
    display: flex;
    gap: 30px;
    background-color: #FFFFFF;
    padding: 30px;
}

.shop-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.shop-address {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.362;
    color: #000000;
}

.shop-phone {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1em;
    color: #DD0012;
}

.shop-hours,
.shop-closed {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.362;
    color: #000000;
}

.shop-map {
    width: 100%;
    height: 322px;
}

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

.shop-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.shop-info-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shop-image {
    width: 100%;
    height: 341px;
}

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

.shop-message {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5em;
    color: #000000;
}

/* Company Info Footer */
.company-info {
    background: rgba(20, 48, 91, 0.85);
    padding: 50px 0;
    width: 100%;
    margin: 0 auto;
}

.company-info .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.company-content-wrapper {
    width: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.company-logo-section {
    width: 1000px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.company-logo {
    max-width: 489px;
    width: 100%;
    height: auto;
}

.company-intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    width: 100%;
}

.company-intro-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.448;
    text-align: center;
    color: #13305E;
}

.company-intro-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.429;
    text-align: center;
    color: #000000;
}

.company-badge {
    background-color: #14305B;
    border-radius: 100px;
    padding: 10px 30px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.company-badge-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.company-description {
    width: 100%;
    padding: 20px 0 40px;
}

.company-description-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    text-align: center;
    color: #000000;
}

.company-services {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 20px;
}

.service-item {
    flex: 1;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.service-icon {
    width: 72px;
    height: auto;
    object-fit: contain;
}

.service-name {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5em;
    text-align: center;
    color: #00264D;
    flex: 1;
}

/* CTA Section */
.cta {
    background-color: #FFFFFF;
    padding: 50px 0 0;
    width: 100%;
    margin: 0 auto;
}

.cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    max-width: 991.32px;
}

.cta-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.362;
    text-align: center;
    color: #000000;
    width: 100%;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35.21px;
    width: 100%;
}

.btn-cta-primary {
    background-color: #DD0012;
    color: #FFFFFF;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 33px;
    line-height: 1.448;
    padding: 18.53px 50px;
    border: none;
    border-radius: 18.53px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18.53px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary:visited,
.btn-cta-primary:hover,
.btn-cta-primary:active,
.btn-cta-primary:focus {
    text-decoration: none;
    color: #FFFFFF;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    z-index: 1;
    animation: shine 2s ease infinite;
}

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

.contact-info-cta {
    display: flex;
    flex-direction: column;
    width: 385.41px;
}

.phone-number-cta {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 1.172;
    color: #DD0012;
}

.reception-hours-cta {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.172;
    letter-spacing: 0.02em;
    color: #000000;
}

/* Copyright */
.copyright {
    background-color: #FFFFFF;
    padding: 30px 0;
    width: 100%;
    margin: 0 auto;
}

.copyright .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

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

.copyright-logo {
    width: 232px;
    height: 46px;
}

.copyright-map {
    width: 100%;
    max-width: 400px;
    height: 200px;
    border: 0;
    border-radius: 10px;
}

.copyright-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

.copyright-store {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 1.362;
    color: #000000;
}

.copyright-phone {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.362;
    color: #E60012;
    position: relative;
    padding-left: 50px;
}

.copyright-phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 44px;
    background-image: url('images/phone-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.copyright-hours {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.362;
    color: #000000;
}

.copyright-address {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.362;
    color: #050505;
}

.phone-icon {
    position: absolute;
    left: 31.5px;
    top: 50.71px;
    width: 32px;
    height: 44px;
}

.copyright-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.copyright-text p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.362;
    color: #000000;
}

/* Mobile line break utility class */
.br-mobile {
    display: none;
}

/* Desktop line break utility class (hidden on mobile) */
.br-desktop {
    display: block;
}

/* Responsive Design */
@media (max-width: 1151px) {
    .fv-slider .slider-item {
        height: 200px;
    }

    .fv-sidebar {
        width: 329px;
    }
}

/* Fixed Bottom CTA */
.fixed-bottom-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary-fixed {
    background-color: #DD0012;
    color: #FFFFFF;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.448;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
    animation: shine 2s ease infinite;
}

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

.btn-phone-fixed {
    display: none;
    background-color: #FFFFFF;
    color: #DD0012;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.448;
    padding: 10px 20px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-phone-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
    animation: shine 2s ease infinite;
}

.btn-phone-fixed:hover {
    background-color: #DD0012;
    color: #FFFFFF;
    transform: scale(1.05);
    border-color: #DD0012;
}

.contact-info-fixed {
    display: flex;
    flex-direction: column;
    width: 208px;
}

.phone-number-fixed {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 31px;
    line-height: 1.172;
    color: #DD0012;
}

.phone-number-fixed a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-number-fixed a:hover {
    opacity: 0.7;
}

.reception-hours-fixed {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.172;
    letter-spacing: 0.02em;
    color: #000000;
}


@media (max-width: 1000px) {
    .header-container {
        gap: 20px;
        flex-wrap: wrap;
    }

    .header-right {
        display: none;
    }

    .fixed-bottom-cta {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 10px;
    }

    .reason-list,
    .faq-list {
        width: 100%;
    }

    .company-logo-section {
        width: 100%;
    }

    .company-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .fv-sidebar {
        display: none;
    }

    .fv-award {
        padding-right: 0;
    }

    .fv-main-text {
        padding-right: 0;
    }

    .fv-cta {
        padding-right: 0;
    }

    .shop-phone {
        font-size: 36px;
    }
    .fv-content {
        height: auto;
    }
    .fv-main-content {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .fv {
    padding-top: 59px;
}
    .br-desktop {
        display: none;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .header-left {
        flex-direction: row;
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .store-info {
        width: auto;
        flex-shrink: 0;
    }

    .store-name-wrapper {
        gap: 8px;
    }

    .store-name-img {
        width: auto;
        height: 30px;
    }

    .store-name {
        font-size: 13px;
        line-height: 1.2;
    }

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

    .fv-main-content {
        order: 2;
    }

    .fv-sidebar {
        order: 1;
        width: 100%;
    }

    .fv-title {
        font-size: 40px;
    }

    .fv-subtitle {
        font-size: 28px;
    }
    .reason-item,
    .flow-item {
        flex-direction: column;
        padding: 20px;
    }

    .reason-number {
        width: 60px;
        height: 60px;
    }

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

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

    .shop-info-content {
        flex-direction: column;
        padding: 20px;
    }

    .company-services {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-cta {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .reason .container {
        gap: 30px;
    }

    .flow-content {
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .company-intro-title {
        font-size: 34px;
    }

    .company-content-wrapper {
        gap: 0;
    }

    .btn-cta-primary {
        font-size: 26px;
    }

    .award-text {
        font-size: 20px;
    }

    .fv-cta-text {
        font-size: 18px;
    }

    .voice-list {
        flex-direction: column;
        gap: 100px;
    }

    .company-intro-text {
        font-size: 20px;
    }

    .company-badge-text {
        font-size: 18px;
    }

    .service-icon {
        width: 50px;
    }

    .copyright-phone {
        font-size: 46px;
    }

    .copyright-hours {
        font-size: 18px;
    }

    .copyright-address {
        font-size: 18px;
    }
    .btn-cta-primary {
    padding: 18.53px 30px;
}
}

@media (max-width: 480px) {
        .fv {
    padding-top: 54px;
}
    .br-mobile {
        display: block;
    }

    .store-name-img {
        height: 22px;
    }

    .store-name {
        font-size: 10px;
    }

    .logo-header {
        height: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .phone-number {
        font-size: 24px;
    }

    .phone-number-fv,
    .phone-number-cta {
        font-size: 32px;
    }

    .copyright-phone {
        font-size: 36px;
    }

    .btn-primary, .btn-fv-primary, .btn-cta-primary {
        font-size: 16px;
        padding: 12px 10px;
        gap: 10px;
    }

    .contact-info-fixed {
        display: none;
    }

    .fixed-bottom-cta {
        flex-direction: row;
        gap: 0px;
        padding: 0px;
    }

    .btn-primary-fixed {
        flex: 1;
        border-radius: 0;
        font-size: 14px;
        padding: 12px 10px;
    }

    .btn-primary-fixed:hover {
        background-color: #FFFFFF;
        color: #DD0012;
        transform: none;
    }


    
    .btn-phone-fixed {
        display: flex;
        flex: 1;
        border-radius: 0;
        font-size: 14px;
        padding: 12px 10px;
        border-width: 2px;
        background-color: #FFB400;
        color: #fff;
    }
        .btn-phone-fixed:hover {
        background-color: #FFFFFF;
        color: #FFB400;
        transform: none;
    }
    .reason-title {
        font-size: 20px;
    }

    .reason-bottom-title {
        font-size: 26px;
    }

    .reason-text {
        font-size: 16px;
    }

    .flow-title {
        font-size: 20px;
    }
    .flow-text {
        font-size: 16px;
    }
    .voice-text {
        font-size: 16px;
    }
    .faq-question-text {
        font-size: 16px;
    }
    .faq-answer-text {
        font-size: 16px;
    }
    .shop-address {
        font-size: 16px;
    }
    .shop-phone {
        font-size: 32px;
    }
    .shop-hours {
        font-size: 16px;
    }
    .shop-closed {
        font-size: 16px;
    }
    .shop-message {
        font-size: 16px;
    }
    .shop-image {
        height: 250px;
    }
    .shop-map {
        height: 250px;
    }
    .company-intro-title {
        font-size: 24px;
    }
    .company-intro-text {
        font-size: 16px;
        text-align: justify;
    }
    .company-badge-text {
        font-size: 16px;
    }
    .service-name {
        font-size: 16px;
    }
    .cta-text {
        font-size: 22px;
    }
    .copyright-text p {
        font-size: 14px;
    }
    .company-description-text{
        font-size: 16px;
        text-align: justify;
    }
    .reason-number {
        width: 45px;
        height: 45px;
        font-size: 26px;
    }
}
