@charset "utf-8";



/***FV***/
.top_fv_sec img {
    width: 100%;
}

@media screen and (max-width: 900px) {



}

/***news***/
.top_topics_sec {
    padding: 30px 0;
    background-color: var(--dark-blue);
    color: white;
}

.top_topics_sec .wrapper {
    display: flex;
    gap: 80px;
}

.top_topics_sec .title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top_topics_sec .title h2 {
    margin-bottom: 10px;
    font-size: 4rem;
}

.top_topics_sec .title h2 span {
    color: var(--yellow);
}

.topics_btn {
    border: 2px solid var(--yellow);
    border-radius: 50px;
    font-size: 1.8rem;
    padding: 8px 30px;
}

.top_topics_sec .topics_list {
    flex: 1;
}
.topics_list article {
    border-bottom: 1px solid white;
    padding: 20px 0;
}
.topics_list article:first-of-type {
    border-top: 1px solid white;
}
.topics_list article a {
    display: flex;
    align-items: center;
    padding-right: 30px;
    position: relative;

}



.topics_list article a::before {
    width: 22px;
    height: 22px;
    content: '';
    background-color: var(--yellow);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.topics_list article a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1.5px solid var(--blue);
    border-right: 1.5px solid var(--blue);
    position: absolute;
    top: 50%;
    right: 8.5px;
    transform: translateY(-50%) rotate(45deg);
}


.topics_list article time {
    font-size: 1.4rem;
    background-color: var(--yellow);
    padding: 5px 10px;
    width: 100px;
    text-align: center;
    color: var(--font-color);
    margin-right: 30px;
    display: block;
}

.topics_list article h3 {
    flex: 1;
    font-size: 1.6rem;
    font-weight: 400;
}


@media screen and (max-width: 900px) {
    .top_topics_sec .wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .top_topics_sec .title {

        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    .top_topics_sec .title h2 {
        margin-bottom: 0px;
        font-size: 3rem;
    }

    .topics_btn {
        font-size: 1.3rem;
        padding: 8px 25px;
    }

    .topics_list article a {
        display: block;
    }

    .topics_list article time {
        margin-bottom: 5px;
    }

}


/**slider***/
.top_slide_sec {
    padding: 50px 0;
    background-color: var(--back-blue);
}

.top_slide_sec .slick-list {
    /* margin: 0 -15px; */
  }
.top_slide_sec .slick-slide {
    margin: 0 15px;
}

.top_slide_sec .slick-prev,
.top_slide_sec .slick-next {
width: 40px;
height: 40px;
border: 1px solid #000;
border-radius: 50%;
background-color: white;
}
.top_slide_sec .slick-prev {
left: 0;
}
.top_slide_sec .slick-next {
right: 0;
}

.slick-prev:before,
.slick-next:before {
color: #000;
}

.slick-prev:before {
content: '←';
}
.slick-next:before {
content: '→';

}


@media screen and (max-width: 900px) {

    .top_slide_sec .wrapper {
        width: 100%;
    }
    .top_slide_sec figure.image {
        position: relative;
        width: 70vw;
        max-width: 300px;
        height: 0;
        padding-bottom: 51%;
    }

    .top_slide_sec figure.image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    .slick-dots li button:before {
        font-size: 2rem;
    }

}

/***about***/
.top_about_sec {
    padding: 50px 0;
    text-align: center;
}

.complain_box {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}

.complain_box > li {
    flex: 1;
    background-color: var(--blue);
    color: white;
    border-radius: 30px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 5px 5px 0px var(--yellow);
}

.complain_box > li figure {
    margin: 0 auto 20px;
    width: 90%;
}

.complain_box p {
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: bold;
}

@media screen and (max-width: 900px) {

    .complain_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .complain_box > li {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 500px;
        padding: 20px 10px;
    }
    .complain_box > li figure {
        margin: 0;
        width: 100%;
        max-width: 100px;
    }
    
    .complain_box p {
        flex: 1;
        font-size: 1.5rem;
        line-height: 1.4;
    }
    

}
/***reason***/
.top_reason_sec {
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/repair_back.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 100px 0 50px;
  position: relative;
}

.top_reason_sec::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 180px solid transparent;
    border-left: 180px solid transparent;
    border-top: 80px solid #ffffff;
    border-bottom: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.top_reason_sec h2 {
    margin-bottom: 40px;
    font-size: 3rem;
}

.top_reason_list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    margin-bottom: 50px;
    max-width: 800px;
}

.top_reason_list > li {
    flex: 1;
}

@media screen and (max-width: 900px) {
    .top_reason_sec {
      padding: 50px 0 30px;
    }

    .top_reason_sec::before {
        border-right: 60px solid transparent;
        border-left: 60px solid transparent;
        border-top: 30px solid #ffffff;
    }
    .top_reason_sec h2 {
        margin-bottom: 30px;
        font-size: 1.6rem;
    }

    .top_reason_list {
        gap: 10px;
        margin-bottom: 30px;
    }


}
/***サービス***/
.top_service_sec {
    padding: 50px 0;
}
.top_service_link {
    margin-bottom: 40px;
}
.top_service_link > ul {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.top_service_link li {
    flex: 1;
}

.top_service_link li a {
    width: 100%;
    display: flex;
    border: 6px solid var(--blue);
    background-color: white;
    border-radius: 20px;
    padding: 20px 30px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.top_service_link li a::before {
    content: '';
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: yellow;
    position: absolute;
    bottom: -51%;
    right: -13%;
}

.top_service_link li a span {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    padding-left: 40px;
}

.top_service_link li a span strong {
    font-size: 3rem;
    color: var(--blue);
}

.top_service_link li a span::before {
    width: 30px;
    height: 30px;
    content: '';
    background-color: var(--yellow);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}

.top_service_link li a span::after {
    content: '';
    width: 9px;
    height: 9px;
    border-bottom: 3px solid var(--blue);
    border-right: 3px solid var(--blue);
    position: absolute;
    top: calc(50% - 1px);
    left: 11.5px;
    transform: translateY(-50%) rotate(45deg);
}

.top_service_link li a figure {
    width: 100px;
    height: 100px;
    position: relative;
}

.top_service_link li a figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    top: 0;
    left: 0;
}



.top_service_sec .wrapper > .service_search_box:not(:last-of-type) {
    margin-bottom: 40px;
}


.service_search_box h3 {
    margin-bottom: 30px;
}


.service_search_box h4 {
    text-align: center;
    background-color: var(--back-blue);
    border-radius: 50px;
    margin-bottom: 20px;
    padding: 10px 0;
    color: var(--blue);
}


.top_service_sec .service_category_list {
    margin-bottom: 30px;
}
.service_category_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.service_category_list li {
    display: flex;
    align-items: stretch;
}

.service_category_list li a {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
}

.service_category_list.square {
    gap: 20px 12px;
}

.service_category_list.square li {
    width: 190px;
}

.service_category_list.wide {
    gap: 20px;
}

.service_category_list.wide li {
    width: 285px;
}

.service_category_list li figure {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.service_category_list.square li figure {
    padding-bottom: 65%;
}

.service_category_list.wide li figure {
    padding-bottom: 51%;
}

.service_category_list li figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service_category_list li .btn {
    background-color: var(--back-blue);
    padding: 10px 18px;
    padding-right: 40px;
    min-height: 70px;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.service_category_list li .btn::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--blue);
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    position: absolute;
    border-radius: 50%;
}

.service_category_list li .btn::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 1.5px solid white;
    border-right: 1.5px solid white;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 28px;
    position: absolute;
}


.service_category_list li .area_image {
    position: relative;
}

.service_category_list li .area_image .area_name {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: white;
    font-size: 2.2rem;
}

.service_category_list li .area_image figure {
    background-color: #000;
}

.service_category_list li .area_image figure img {
    opacity: 0.5;
}

@media screen and (max-width: 900px) {


    .top_service_sec {
        padding: 30px 0;
    }

    .top_service_link {
        margin-bottom: 20px;
    }

    .top_service_link > ul {
        gap: 10px;
    }

    .top_service_link li {
        width: calc(100% / 3 - 20px / 3);
    }

    .top_service_link li a {
        border: 2px solid var(--blue);
        border-radius: 20px;
        padding: 10px 5px;
        flex-direction: column-reverse;
    }

    .top_service_link li a::before {
        width: 100px;
        height: 100px;
        transform: translate(-50%, -50%);
        bottom: inherit;
        top: 0;
        right: inherit;
        left: 50%;
    }


    .top_service_link li a span {
        font-size: 1.3rem;
        padding-left: 0px;
        padding-bottom: 30px;
    }

    .top_service_link li a span strong {
        font-size: 1.6rem;
    }


    .top_service_link li a span::before {
        width: 20px;
        height: 20px;
        content: '';
        top: inherit;
        bottom: 0;
        transform: translateX(-50%);
        left: 50%;
    }

    .top_service_link li a span::after {
        width: 7px;
        height: 7px;
        border-bottom: 2px solid var(--blue);
        border-right: 2px solid var(--blue);
        top: inherit;
        bottom: 7px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
        
    .top_service_link li a figure {
        width: 40px;
        height: 40px;
        margin-bottom: 5px;
    }
    .top_service_link li a figure img {
        object-position: center;
    }

    .top_service_sec .normal_btn.service {
        margin-bottom: 20px;
    }

    .top_service_sec .wrapper > .service_search_box:not(:last-of-type) {
        margin-bottom: 30px;
    }
    .service_search_box h3 {
        margin-bottom: 20px;
    }


    .service_category_list.square {
        gap: 10px 5px;
    }

    .service_category_list.square li {
        width: calc(100% / 3 - 10px / 3);
    }


    
    .service_category_list.wide {
        gap: 20px 15px;
    }
    
    .service_category_list.wide li {
        width: calc(100% / 2 - 15px / 2);
    }

    .service_category_list li .btn {
        padding: 10px 10px;
        padding-right: 30px;
        min-height: 70px;
    }
    .service_category_list li .btn::before {
        right: 5px;

    }
    
    .service_category_list li .btn::after {
        right: 13px;

    }
    

}
/***flow***/
.top_flow_sec {
    padding: 50px 0;
}

.flow_tab .tab-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.flow_tab .tab-container::after {
    content: '';
    width: 100vw;
    height: 4px;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--blue);
}

.flow_tab .tab {
    background-color: var(--back-blue);
    padding: 10px;
    width: calc(100% / 3 - 60px / 3);
    position: relative;
    cursor: pointer;
}

.flow_tab .tab.active {
    background-color: white;
    border: 4px solid var(--blue);
    border-bottom: none;
    padding: 15px 10px;
}

.flow_tab .tab.active::after {
    width: 100%;
    height: 4px;
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: white;
    z-index: 2;
}
.flow_tab .tab_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}



.flow_tab .tab_title figure {
    width: auto;
    height: 30px;
}



.flow_tab .tab_title figure img {
    width: auto;
    height: 100%;
}

.flow_tab .tab_title p {
    font-size: 2rem;
    color: var(--blue);
    font-weight: 600;
}

.flow_tab .tab.active .tab_title figure {
    height: 40px;
}

.flow_tab .tab.active .tab_title p {
    font-size: 2.4rem;
}


.flow_tab .content-container {
    padding: 50px 0;
}

.flow_tab .content {
    display: none;
}
.flow_tab .content.show {
    display: block;
}

.flow_tab .content h3 {
    margin-bottom: 50px;
    background-color: var(--back-blue);
    text-align: center;
    padding: 10px;
    width: 100%;
    border-radius: 50px;
    color: var(--blue);
    font-size: 2.4rem;
}

.flow_list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 40px;
}

.flow_list > li {
    position: relative;
    width: calc(50% - 40px / 2);
    border: 3px solid var(--blue);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.flow_list .num {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    top: 0;
    left: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: var(--yellow);
    color: var(--blue);
    font-size: 2.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.flow_list .image {
    flex: 1;
}

.flow_list .text {
    width: 50%;
}

.flow_list .image figure {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
    overflow: hidden;
    border-radius: 15px;
}

.flow_list .image figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.flow_list .text h4 {
    font-size: 2.4rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px dotted #ccbe02;
}

@media screen and (max-width: 900px) {

    .top_flow_sec {
        padding: 50px 0 30px;
    }

    .flow_tab .tab-container {
        gap: 10px;
    }

    .flow_tab .tab {
        width: calc(100% / 3 - 20px / 3);
        padding: 10px 5px;
    }
    .flow_tab .tab.active {
        padding: 10px 5px;
    }
    .flow_tab .tab_title {
        flex-direction: column;
        gap: 10px;
    }

    .flow_tab .tab_title figure {
        width: auto;
        height: 20px;
    }
    .flow_tab .tab.active .tab_title figure {
        height: 30px;
    }
    
    .flow_tab .tab_title p {
        font-size: 1.2rem;
        text-align: center;
    }
    .flow_tab .tab.active .tab_title p {
        font-size: 1.2rem;
    }

    .flow_tab .tab.active .tab_title p span {
        font-size: 1.6rem;
        display: block;
        font-weight: 600;
    }

    .flow_tab .content-container {
        padding: 30px 0;
    }


    .flow_tab .content h3 {
        margin-bottom: 40px;
        padding: 10px;
        font-size: 2rem;
    }
    
    .flow_list {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .flow_list > li {
        width: 100%;
        padding: 10px;
        gap: 10px;
    }
    
    .flow_list .num {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        z-index: 2;
        top: 10px;
        left: 10px;
    }

    .flow_list .image figure {
        padding-bottom: 75%;
    }

    .flow_list .text {
        width: 55%;
    }
    .flow_list .text h4 {
        font-size: 1.8rem;
        padding-bottom: 5px;
        margin-bottom: 5px;
        border-bottom: 1px dotted #ccbe02;
    }

    .flow_list .text p {
        font-size: 1.4rem;
    }
    
    

    


}

/***achivement***/

.top_achievement_sec {
    padding: 50px 0;
    background-color: var(--back-yellow);
}

.top_achievement_list {
    display: flex;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.top_achievement_list article {
    width: calc(100% / 4 - 90px / 4);
    display: flex;
    align-items: stretch;
}



.top_achievement_list article a {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: stretch;
    position: relative;
}

.top_achievement_list article .shop_tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--dark-blue);
    z-index: 2;
    padding: 5px 15px; 
    color: white;
    font-size: 1.6rem;
    display: inline-block;
}

.top_achievement_list article .eyecatch {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
    overflow: hidden;
}

.top_achievement_list article .eyecatch img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.top_achievement_list article a .content {
    background-color: white;
    padding: 20px;
    flex: 1;
}
.area_tag_list,
.symptom_tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
}
.area_tag_list li,
.symptom_tag_list li {
    font-size: 1.4rem;

    line-height: 1.4;
}


.area_tag_list li span,
.area_tag_list li a,
.symptom_tag_list li span,
.symptom_tag_list li a {
    padding: 5px 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.area_tag_list li span,
.area_tag_list li a {
    border: 1px solid var(--blue);
    color: var(--blue);
}

.symptom_tag_list li span,
.symptom_tag_list li a {
    background-color: var(--blue);
    color: white;
}

.top_achievement_list article .area_tag_list,
.top_achievement_list article .symptom_tag_list {
    display: flex;
    flex-direction: column;
    gap: 5px;

}
.top_achievement_list article .area_tag_list {
    margin-bottom: 5px;
}
.top_achievement_list article .symptom_tag_list {
    margin-bottom: 10px;
}

.top_achievement_list article .article_title {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: left;
}

.top_achievement_list article .read_more {
    background-color: var(--blue);
    padding: 5px;
    text-align: center;
    color: white;
    position: relative;
}


.top_achievement_list article .read_more::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--yellow);
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    position: absolute;
    border-radius: 50%;
}

.top_achievement_list article .read_more::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 1.5px solid var(--blue);
    border-right: 1.5px solid var(--blue);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 28px;
    position: absolute;
}


@media screen and (min-width: 901px) {
    .top_achievement_sec article:nth-of-type(n + 4) {
        display: none;
    }
}
@media screen and (max-width: 900px) {


    .top_achievement_sec {
        padding: 30px 0;
    }


    .top_achievement_list {
        gap: 30px 20px;
    }

    .top_achievement_list article {
        width: calc(100% / 2 - 20px / 2);
    }
    .top_achievement_list article .shop_tag {
        padding: 5px 10px; 
        font-size: 1.2rem;
    }

    .top_achievement_list article a .content {
        padding: 10px 5px;
    }

    .area_tag_list,
    .symptom_tag_list {
        display: flex;
        flex-wrap: wrap;
        gap: 5px 10px;
    }
    .area_tag_list li,
    .symptom_tag_list li {
        font-size: 1.1rem;
    }

    .area_tag_list li span,
    .area_tag_list li a,
    .symptom_tag_list li span,
    .symptom_tag_list li a {
        padding: 3px 8px;
    }
    .top_achievement_list article .article_title {
        font-size: 1.5rem;
    }

    .top_achievement_list article .read_more {
        font-size: 1.3rem;
    }


    .top_achievement_list article .read_more::before {
        width: 14px;
        height: 14px;

        right: 10px;
    }

    .top_achievement_list article .read_more::after {
        width: 5px;
        height: 5px;
        right: 15px;
    }

    
    

}

/***column***/
.top_column_sec {
    padding: 50px 0;
    background-color: var(--back-yellow);
}

.top_column_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.top_column_list article {
    width: calc(100% / 3 - 60px / 3);
    display: flex;
    align-items: stretch;
}

.top_column_list article a {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    width: 100%;
    border-bottom: 3px solid var(--blue);
}

.top_column_list article figure {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
    overflow: hidden;
}

.top_column_list article figure img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.top_column_list article .content {
    flex: 1;
    padding: 10px;
    background-color: white;
}

.top_column_list article .meta_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.column_tag_list {
    display: flex;
    gap: 10px;
}
.column_tag_list li {
    font-size: 1.4rem;
    line-height: 1;
}
.column_tag_list li span,
.column_tag_list li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--blue);
    color: white;
}

.top_column_list article .meta_box .post_date {
    color: var(--dark-blue);
}

.top_column_list article .article_title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.top_column_list article .read_more {
    margin-left: auto;
    text-align: right;
    position: relative;
}


.top_column_list article .read_more::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--yellow);
    top: 50%;
    transform: translateY(-50%);
    right: 120px;
    position: absolute;
    border-radius: 50%;
}

.top_column_list article .read_more::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 1.5px solid var(--blue);
    border-right: 1.5px solid var(--blue);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 128px;
    position: absolute;
}

@media screen and (max-width: 900px) {

    .top_column_sec {
        padding: 30px 0;
    }
    .top_column_list {
        gap: 20px;
    }
    
    .top_column_list article {
        width: calc(100% / 2 - 20px / 2);
    }
    .top_column_list article .meta_box {
        flex-direction: column-reverse;
        gap: 5px;
        align-items: flex-start;
        margin-bottom: 5px;
    }
    .column_tag_list li {
        font-size: 1.2rem;
    }
    .column_tag_list li span,
    .column_tag_list li a {
        padding: 8px 15px;
    }
    .top_column_list article .meta_box .post_date {
        font-size: 1.2rem;
    }
    .top_column_list article .article_title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .top_column_list article .read_more {
        font-size: 1.4rem;
    }
    

}

/***faq***/
.top_faq_sec {
    padding: 50px 0;
    background-color: var(--blue);
}

.top_faq_sec .faq_list {
    margin-bottom: 30px;
}

.faq_list > dl {
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    border: 1px solid var(--dark-blue);
}

.faq_list > dl:not(:last-of-type) {
    margin-bottom: 30px;
}

.faq_list > dl dt {
    padding-left: 60px;
    padding-right: 40px;
    font-size: 1.8rem;
    cursor: pointer;
    position: relative;
}

.faq_list > dl dt::before {
    font-family: "Roboto", sans-serif;
    content: 'Q';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 0;
    line-height: 1;
    color: var(--blue);
}

.faq_list > dl dt::after {
    content: '›';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--blue);
    color: var(--yellow);
    border-radius: 50%;
    font-weight: bold;
    font-size: 3rem;
    line-height: 1;
    padding-bottom: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: all 0.2s ease;
}

.faq_list > dl dt.open::after {
    transform: translateY(-50%) rotate(-90deg);
}

.faq_list > dl dd {
    padding-left: 60px;
    margin-top: 30px;
    position: relative;
    display: none;
}

.faq_list > dl dd::before {
    font-family: "Roboto", sans-serif;
    content: 'A';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 2px;
    line-height: 1;
    color: var(--normal-blue);
    font-weight: bold;
}

@media screen and (max-width: 900px) {


    .top_faq_sec {
        padding: 30px 0;
    }

    .faq_list > dl {
        padding: 15px;
    }
    

    .faq_list > dl:not(:last-of-type) {
        margin-bottom: 20px;
    }
    .faq_list > dl dt {
        padding-left: 20px;
        padding-right: 30px;
        font-size: 1.6rem;
    }
    .faq_list > dl dt::before {
        font-size: 3rem;
        top: -3px;
        left: -5px;
    }

    .faq_list > dl dt::after {
        width: 20px;
        height: 20px;
        font-size: 1.8rem;
        padding-bottom: 6px;
    }

    .faq_list > dl dd {
        padding-left: 20px;
        margin-top: 20px;
        font-size: 1.4rem;
    }
    .faq_list > dl dd::before {
        font-size: 3rem;
        top: -3px;
        left: -5px;
    }
    
    

}

/***common contact***/
.common_contact_sec {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
}

.common_contact_sec::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/contact_back.jpg) center / cover no-repeat;
    z-index: -1;
}

.common_contact_sec h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.contact_list_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.contact_list_box a {
    width: calc(100% / 3 - 32px / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    font-size: 3rem;
    background-color: white;
    border-radius: 10px;
    gap: 30px;
    font-weight: bold;
}


.contact_list_box a figure {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.contact_list_box a.tel {
    color: var(--tel-color);
}
.contact_list_box a.tel figure {
    background-color: var(--tel-color);
}

.contact_list_box a.line {
    color: var(--line-color);
}
.contact_list_box a.line figure {
    background-color: var(--line-color);
}

.contact_list_box a.mail {
    color: var(--mail-color);
}
.contact_list_box a.mail figure {
    background-color: var(--mail-color);
}


@media screen and (max-width: 900px) {

    .common_contact_sec {
        padding: 50px 0;
    }
    .common_contact_sec h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    

    .contact_list_box {
        gap: 10px;
    }
    .contact_list_box a {
        width: calc(100% / 3 - 20px / 3);
        flex-direction: column;
        min-height: 80px;
        font-size: 1.6rem;
        gap: 5px;
    }


    .contact_list_box a figure {
        width: 30px;
        height: 30px;
        padding: 5px;
    }



}