:root {
    --main-color: #288065;
    --sub-color: #FFEB34;
    --gray: #F7F7F7;

    --swiper-theme-color: #5561E9;
}

body {
    font-family: 'Noto Sans JP';
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

section {
    padding: 64px 0 80px 0;
}

.section-sub-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--main-color);
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    color: #000;
    margin-top: 4px;
}
.section-title-line {
    width: 80px;
    height: 4px;
    margin: 0 auto;
    margin-top: 20px;
    background-color: var(--main-color);
}
.sp-br {
    display: none;
}
.tab-br {
    display: none;
}

.button {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    transition: .3s;
}
.button:hover {
    background-color: #398A71;
    transform: scale(1.04);
}

@media (max-width:1280px) {
    .container {
        width: 100%;
        padding: 0 40px;
    }
}

@media (max-width:768px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }
    section {
        padding: 40px 0 56px 0;
    }
    .sp-br {
        display: block;
    }
    .section-sub-title {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
        margin-top: 0;
    }
    .section-title-line {
        width: 48px;
        height: 2px;
        margin-top: 18px;
    }
}
@media (max-width:360px) {
    .container {
        padding: 0 16px;
    }
}

header {
    height: 104px;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .header-logo {
    width: 280px;
}

.header-right-box {
    display: flex;
    align-items: center;
    gap: 80px;
}

header ul {
    display: flex;
    align-items: center;
    gap: 64px;
}

header ul li a {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header ul li a img {
    width: 20px;
}

header ul li a span {
    font-size: 18px;
    font-weight: 700;
}

.header-button {
    font-size: 18px;
    font-weight: 700;
    background-color: var(--sub-color);
    border-radius: 8px;
    padding: 16px 64px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.header-button:hover {
    background-color: #FFF06D;
    transform: scale(1.04);
}

@media (max-width:1500px) {
    header {
        padding: 0 40px;
    }    
    .header-right-box {
        gap: 48px;
    }
    header ul {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .header-button {
        padding: 16px 48px;
        border-radius: 4px;
    }
}

@media (max-width:1200px) {
    header ul {
        display: none;
    }
}

@media (max-width:768px) {
    header {
        height: 64px;
        padding: 0 16px;
    }
    
    header .header-logo {
        width: 200px;
    }

    .header-right-box ul {
        display: none;
    }

    .header-button {
        font-size: 16px;
        padding: 8px 24px;
    }

    .header-button span {
        display: none;
    }
}
@media (max-width:400px) {
    header .header-logo {
        width: 54.3%;
    }
}
@media (max-width:360px) {
    .header-button {
        font-size: 12px;
    }
}


.fv-wrapper {
    height: 630px;
    position: relative;
}

.fv-background {
    height: 100%;
    display: flex;
}

.fv-left-background {
    width: 43.75%;
}

.fv-right-background {
    width: 56.25%;
}

.fv .swiper {
    height: 100%;
}

.fv .swiper .slide-image {
    height: 100%;
}

.fv .swiper .slide1 {
    background-image: url(./image/fv-image1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fv .swiper .slide2 {
    background-image: url(./image/fv-image2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fv .swiper .slide3 {
    background-image: url(./image/fv-image3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes zoomUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.05);
    }
  }
  
  .swiper-slide-active .slide-image,
  .swiper-slide-duplicate-active .slide-image,
  .swiper-slide-prev .slide-image {
    animation: zoomUp 8s ease 0s 1 normal both;  
  }

.fv-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20.8%;
}

.fv-text-box-wrapper {
    position: absolute;
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.fv-text-box {
    width: fit-content;
    text-align: center;
    padding: 64px 0;
}

.fv-text1 {
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #fff;
    padding: 12px 48px;
    border-radius: 50px;
    background-color: var(--main-color);
    display: inline-block;
}

.fv h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.4;
    margin-top: 8px;
}

.fv-text2 {
    display: inline-block;
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-weight: 700;
    background: linear-gradient(transparent 50%, var(--sub-color) 50%);
    margin-bottom: 88px;
}

.fv-text-box ul {
    display: flex;
}

.fv-text-box ul li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    padding: 0 40px;
    border-right: 1px solid #000;
    display: flex;
    align-items: center;
}
.fv-text-box ul li span {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.fv-text-box ul li:first-child {
    padding-left: 0;
}

.fv-text-box ul li:last-child {
    border-right: none;
    padding-right: 0;
}

.fv-text-box ul li:first-child span::before {
    content: '';
    background-image: url(./image/fv-icon-money.svg);
    background-size: contain;
    width: 56px;
    height: 56px;
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
}

.fv-text-box ul li:nth-of-type(2) span::before {
    content: '';
    background-image: url(./image/fv-icon-paper.svg);
    background-size: contain;
    width: 56px;
    height: 56px;
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
}

.fv-text-box ul li:last-child span::before {
    content: '';
    background-image: url(./image/fv-icon-time.svg);
    background-size: contain;
    width: 56px;
    height: 56px;
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
}

.sp-fv-background {
    display: none;
}

.cv-button {
    width: 400px;
    height: 72px;
    border-radius: 8px;
    background-color: var(--sub-color);
    color: #000;
    display: flex;
    margin: 0 auto;
    margin-top: 41px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.cv-button:hover {
    background-color: #FFF06D;
    transform: scale(1.04);
}

.cv-button .left-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
}
.cv-button .center-line {
    width: 1px;
    background-color: #000;
}
.cv-button .right-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}
.cv-button::before {
    content: '';
    content: url(./image/speech-bubble.svg);
    width: 259px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width:1280px) {
    .fv-text-box-wrapper {
        width: 100%;
        padding: 0 40px;
    }
}

@media (max-width:1160px) {
    .fv-left-background {
        width: 50%;
    }
    
    .fv-right-background {
        width: 50%;
    }
}

@media (max-width:1000px) {
    .fv-background {
        display: none;
    }

    .fv-wrapper {
        height: auto;
        position: static;
    }

    .fv-text-box-wrapper {
        position: static;
        width: 100%;
        margin: 0 auto;
        height: 100%;
        overflow: hidden;
        padding: 0;
    }

    .fv-text-box {
        width: auto;
        padding: 24px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fv-text1 {
        font-size: 16px;
        padding: 8px 24px;
    }
    .fv h1 {
        font-size: 40px;
    }
    .fv-text2 {
        margin-top: 8px;
        font-size: 20px;
        margin-bottom: 68px;
    }
    .fv-text-box ul {
        margin: 0 auto;
    }
    .fv-text-box ul li {
        font-size: 16px;
        padding: 0 24px;
        border-right: 1px solid #000;
    }
    .fv-text-box ul li:first-child span::before {
        display: inline-block;
        width: 48px;
        height: 48px;
        top: -48px;
    }
    
    .fv-text-box ul li:nth-of-type(2) span::before {
        display: inline-block;
        width: 48px;
        height: 48px;
        top: -48px;
    }
    
    .fv-text-box ul li:last-child span::before {
        display: inline-block;
        width: 48px;
        height: 48px;
        top: -48px;
    }

    .sp-fv-background {
        display: block;
        height: 60vw;
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        margin-top: 24px;
    }
    .cv-button {
        width: 100%;
        max-width: 400px;
        height: 72px;
        border-radius: 8px;
        background-color: var(--sub-color);
        color: #000;
        display: flex;
        margin: 0 auto;
        margin-top: 41px;
        position: relative;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: .3s;
    }
    .cv-button .right-box {
        font-size: 18px;
    }

    .fv .swiper {
        height: 100%;
    }
    
    .fv .swiper .slide-image {
        height: 100%;
    }
    
    .fv .swiper .slide1 {
        background-image: url(./image/fv-image1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .fv .swiper .slide2 {
        background-image: url(./image/fv-image2.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .fv .swiper .slide3 {
        background-image: url(./image/fv-image3.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    @keyframes zoomUp {
        0% {
          transform: scale(1);
        }
        100% {
          transform: scale(1.08);
        }
      }
      
      .swiper-slide-active .slide-image,
      .swiper-slide-duplicate-active .slide-image,
      .swiper-slide-prev .slide-image {
        animation: zoomUp 6s ease 0s 1 normal both;  
      }
}
@media (max-width:360px) {
    .fv h1 {
        font-size: 32px;
    }
}
@media (max-width:340px) {
    .fv-text-box ul li span {
        font-size: 14px;
    }
}
@media (max-width:325px) {
    .fv-text1 {
        font-size: 14px;
    }
}




.feature {
    background-color: var(--gray);
}

.feature h2 {
    margin-top: -8px;
}

.feature h2 span {
    font-size: 48px;
}

.feature-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}

.feature-box {
    padding: 48px 24px;
    border: 5px solid var(--main-color);
    box-shadow: 5px 5px rgba(40, 128, 101, 0.5);
    position: relative;
    flex: 1;
    text-align: center;
    background-color: #fff;
}

.feature-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 99px;
    height: 99px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background-color: var(--main-color);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    padding-top: 7px;
    padding-left: 7px;
    text-align: left;
}

.feature-illust {
    display: block;
    margin: 0 auto;
}

.feature-box h3 {
    display: inline-block;
    margin-top: 16px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(transparent 50%, var(--sub-color) 50%);
}

.feature-box p {
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width:768px) {
    .feature .section-title-line {
        margin-top: 8px;
    }
    .feature-wrapper {
        flex-direction: column;
        gap: 40px;
        margin-top: 24px;
    }
    .feature-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .feature h2 span {
        font-size: 36px;
    }
    .feature-box h3 {
        margin-top: 16px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    .feature-illust {
        height: 120px;
    }
    
}



.price {
    background-color: #fff;
}

.table-wrapper {
    width: 1120px;
    margin: 0 auto;
    margin-top: 16px;
}

.table-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    padding-left: 20px;
    border-left: 4px solid var(--main-color);
    margin-bottom: 16px;
}

.pillar-table, .handrail-table {
    margin-bottom: 48px;
}

table {
    width: 100%;
}

table {
    border-collapse: collapse;
}

table, th, td {
    text-align: center;
}

th, td {
    padding: 16px 0;
    border: solid 1px #d2d2d2;
    color: #333;
}

th {
    font-size: 18px;
    font-weight: 700;
}

td {
    font-size: 16px;
    font-weight: 700;
}

td span {
    font-size: 12px;
}

table tr th:first-child {
    width: 21.4%;
    background-color: var(--main-color);
    color: #fff;
}

table tr td {
    width: 39.3%;
}

table tr:first-child th:nth-child(2) {
    background-color: #fff;
}
table tr:first-child th:nth-child(3) {
    background-color: #f9f9f9;
} 

table tr td:nth-of-type(1) {
    background-color: #fff;
}

table tr td:nth-of-type(2) {
    background-color: #f9f9f9;
}

@media (max-width:1200px) {
    .table-wrapper {
        width: 100%;
        padding: 0 40px;
        margin: 0 auto;
        margin-top: 16px;
    }
}

@media (max-width:768px) {
    .price .section-title-line {
        margin-top: 14px;
    }
    .table-wrapper {
        width: 100%;
        padding: 0 16px;
        margin: 0 auto;
        margin-top: 24px;
    }
    .table-wrapper h3 {
        font-size: 16px;
    }
    table tr th:first-child {
        width: 23.9%;
    }
    table tr td {
        width: 38.05%;
    }
    th {
        font-size: 14px;
    }
    
    td {
        font-size: 14px;
    }
    td span {
        font-size: 10px;
    }
    .pillar-table, .handrail-table {
        margin-bottom: 40px;
    }
}



.flow {
    background-color: var(--gray);
}

.flow-wrapper {
    margin-top: 40px;
}

.flow-top {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.flow-bottom {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.flow-box {
    position: relative;
}

.flow-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
}

.flow-illust-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-box h3 {
    text-align: center;
    margin-top: 16px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.flow-arrow {
    width: 24px;
    height: 48px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: var(--main-color);
    margin-top: 96px;
}
.sp-flow-arrow {
    display: none;
}
@media (max-width:900px) {
    .flow-wrapper {
        margin-top: 32px;
    }
    .flow-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 0px;
    }
    .flow-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 16px;
    }
    .flow-arrow {
        width: 48px;
        height: 24px;
        clip-path: polygon(0 0, 50% 100%, 100% 0%);
        background-color: var(--main-color);
        margin-top: 0;
    }
    .sp-flow-arrow {
        display: block;
    }
    .flow-number {
        font-size: 40px;
    }
    .flow-illust-circle img {
        height: 144px;
    }
}



.question {
    background-color: #fff;
}

.question-wrapper {
    width: 960px;
    margin: 0 auto;
    margin-top: 40px;
}

.question-box {
    padding: 24px 32px;
    border-radius: 4px;
    background-color: var(--gray);
    margin-bottom: 16px;
}

.question-box:last-child {
    margin-bottom: 0;
}

.q-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.q-box span {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

.q-box p {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
}

.a-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.a-box span {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--sub-color);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

.a-box p {
    font-size: 18px;
    color: #000;
}

@media (max-width:1040px) {
    .question-wrapper {
        width: 100%;
        padding: 0 40px;
    }
}

@media (max-width:768px) {
    .question-wrapper {
        width: 100%;
        padding: 0 16px;
        margin: 0 auto;
        margin-top: 24px;
    }
    .question-box {
        padding: 20px 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .q-box span {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    .q-box p {
        font-size: 14px;
    }
    .a-box span {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    .a-box p {
        font-size: 14px;
    }
}



.contact {
    padding: 64px 0;
    background-image: url(./image/contact-background-img.jpg);
    background-size: cover;
    background-position: bottom center;
}

.contact .container {
    padding: 0 40px;
}

.contact-wrapper {
    margin: 0 auto;
    padding: 48px 0 48px 0;
    display: flex;
    background-color: #fff;
    border-radius: 8px;
}

.contact-left-box {
    width: 49.9%;
    padding-left: 80px;
}

.contact-left-box .section-sub-title {
    text-align: left;
}

.contact-left-box .section-title {
    text-align: left;
}

.contact-left-box .section-title-line {
    margin: 20px 0 0 0;
}

.contact-left-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 16px;
}

.contact .contact-center-line {
    width: 2px;
    background-color: #f9f9f9;
}

.contact-right-box {
    width: 49.9%;
    text-align: center;
}

.contact-right-box .button-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 33px;
}

.contact-right-box .button-box {
    margin-bottom: 24px;
}

.contact .line-button {
    background-color: var(--sub-color);
    border-radius: 8px;
    height: 72px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    width: fit-content;
    margin: 0 auto;
    transition: .3s;
    position: relative;
}
.contact .line-button:hover {
    background-color: #FFF06D;
    transform: scale(1.04);
}

.contact .line-button::before {
    content: '';
    background-image: url(./image/speech-bubble.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 259px;
    height: 45px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.contact .line-button .left-box {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .line-button .center-line {
    width: 1px;
    background-color: #000;
}

.contact .line-button .right-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 48px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.contact-right-box .qr-id-box h3 {
    font-size: 18px;
    font-weight: 700;
}

.contact-right-box .qr-id-box p {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 400;
}

.contact-right-box .qr-id-box .qr-id-box-inbox {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    gap: 40px;
}

.contact-right-box .qr-id-box .qr-id-box-inbox .qr-box img {
    width: 56px;
    height: 56px;
}

.contact-right-box .qr-id-box .id-box {
    text-align: left;
    line-height: 1.4;
}

.contact-right-box .qr-id-box .id-box h4 {
    font-size: 18px;
    font-weight: 700;
}

.contact-right-box .qr-id-box .id-box p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    margin-top: 2px;
}

@media (max-width:960px) {
    .contact-right-box {
        padding: 0 24px;
    }
    .contact .line-button .right-box {
        padding: 0 24px;
        font-size: 18px;
    }
}

@media (max-width:768px) {
    .contact {
        padding: 40px 0;
    }
    .contact-left-box .section-sub-title {
        text-align: center;
    }
    .contact-left-box .section-title-line {
        margin: 0 auto;
        margin-top: 18px;
    }
    
    .contact .container {
        padding: 0 16px;
    }
    
    .contact-wrapper {
        margin: 0 auto;
        padding: 40px 24px 40px 24px;
        flex-direction: column;
        border-radius: 4px;
    }
    
    .contact-left-box {
        width: 100%;
        padding-left: 0;
    }
    
    .contact-left-box .sub-section-title {
        text-align: center;
    }
    
    .contact-left-box .section-title {
        text-align: center;
        margin-top: 0;
    }
    
    .contact-left-box p {
        font-size: 14px;
        margin-top: 16px;
        text-align: center;
        margin-bottom: 24px;
    }
    .contact .contact-center-line {
        width: 100%;
        height: 2px;
    }
    .contact-right-box {
        width: 100%;
        padding: 0;
        margin-top: 24px;
    }
    
    .contact-right-box .button-box h3 {
        font-size: 16px;
    }
    
    .contact-right-box .button-box {
        margin-bottom: 24px;
    }
    
    .contact .line-button {
        display: flex;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact .line-button .left-box {
        width: 72px;
        height: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact .line-button .center-line {
        width: 1px;
    }
    
    .contact .line-button .right-box {
        padding: 0;
        flex: 1;
        font-size: 18px;
    }
    
    .contact-right-box .qr-id-box h3 {
        font-size: 16px;
    }
    
    .contact-right-box .qr-id-box p {
        margin-bottom: 16px;
    }
    
    .contact-right-box .qr-id-box .qr-id-box-inbox {
        gap: 24px;
        align-items: center;
    }
    
    .contact-right-box .qr-id-box .qr-id-box-inbox .qr-box img {
    }
    
    .contact-right-box .qr-id-box .id-box {
    }
    
    .contact-right-box .qr-id-box .id-box h4 {
        font-size: 16px;
    }
    
    .contact-right-box .qr-id-box .id-box p {
        font-size: 14px;
        margin-top: 4px;
    }
    
}

@media (max-width:360px) {
    .contact .container {
        padding: 0 16px;
    }
    .contact-wrapper {
        padding: 32px 16px;
    }
    .contact .line-button {
        height: 64px;
    }
    .contact .line-button .left-box {
        width: 64px;
        height: 64px;
    }
    .contact .line-button .left-box img {
        width: 40px;
        height: 40px;
    }
    .contact .line-button .right-box {
        font-size: 16px;
    }
}
@media (max-width:340px) {
    .contact .line-button::before {
        width: 240px;
        height: 41.7px;
    }
}


footer {
    background-color: var(--main-color);
    padding: 120px 40px 80px 40px;
    color: #fff;
    text-align: center;
}

footer .footer-warpper {
    display: flex;
    justify-content: space-between;
}

footer .company-information {
    color: white;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
}

footer .company-information .address {
    margin-bottom: 4px;
}

footer .company-information .business-hours {
    margin-bottom: 4px;
}

footer .company-information .tel-fax-box {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

footer .company-information .tel-fax-box .tel-box {
    display: flex;
    gap: 8px;
}

footer .company-information .tel-fax-box .fax-box {
    display: flex;
    gap: 8px;
}

.footer-warpper {
    margin-bottom: 24px;
}

footer small {
    font-size: 16px;
    font-weight: 400;
}

@media (max-width:768px) {
    footer {
        padding: 56px 0 56px 0;
    }
    
    footer .footer-warpper {
        flex-direction: column;
        justify-content: center;
        gap: 24px;
    }
    footer .logo-box img {
        width: 240px;
    }
    footer .company-information {
        text-align: center;
        font-size: 14px;
    }
    
    footer .company-information .address {
    }
    
    footer .company-information .business-hours {
    }
    
    footer .company-information .tel-fax-box {
        justify-content: center;
    }
    
    footer .company-information .tel-fax-box .tel-box {
    }
    
    footer .company-information .tel-fax-box .fax-box {
    }
    
    .footer-warpper {
        margin-bottom: 16px;
    }
    
    footer small {
        font-size: 14px;
    }
}