@charset "utf-8";
/*共通設定*/
.column-h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 32px;
    margin-bottom: 64px;
}

.column-h2 small {
    font-size: 14px;
    color: #999;
}
/*終わり*/  


/*<section class="fv">*/
.fv {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
}

.slide-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
    background-image: url(../img/fv_01.jpg);
}

.slide-image:nth-child(2) {
    background-image: url(../img/fv_02.jpg);
    animation-delay: 6s;
}

.slide-image:nth-child(3) {
    background-image: url(../img/fv_03.jpg);
    animation-delay: 12s;
}

.slide-image:nth-child(4) {
    background-image: url(../img/fv_04.jpg);
    animation-delay: 18s;
}

@keyframes slider-1 {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    4.16% {
        opacity: 1;
    }

    23.33% {
        opacity: 1;
    }

    31.66% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

.fv-h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    text-shadow: 0 0 8px rgba(0,0,0,0.4);
}
/*終わり*/  


/*<section class="about">*/
.about-flex-01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.about-img-wrap {
    width: 40%;
}

.about-txt-wrap {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-h2 {
    font-size: 24px;
}

.about-flex-02 {
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.about-point {
    width: 32%;
}

.about-point-img-wrap {
    width: 100%;
    height: 160px;
}

.about-point-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 16px;
}

.about-h3 span {
    background-color: #222;
    color: #fff;
    padding: 0 4px;
}

.about-point-txt {
    border-top: solid 1px #e3e3e3;
    padding-top: 16px;
    font-size: 14px;
}
/*終わり*/  


/*<section class="item">*/
.item {
    background-color: #f9f9f9;
    padding: 120px 5vw 80px 5vw;
}

.item-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.item-con {
    width: 18%;
    text-align: center;
}

.item-h3 {
    font-size: 14px;
}
/*終わり*/  


/*<section class="support">*/
.support {
    background-color: #f9f9f9;
    padding: 80px 5vw 120px 5vw;
}

.support-h2 {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}

.support-flex {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.support-con {
    width: 32%;
}

.support-img-wrap {
    width: 100%;
    height: 160px;
}

.support-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 16px;
}

.support-h3 span {
    background-color: #222;
    color: #fff;
    padding: 0 4px;
}

.support-txt {
    border-top: solid 1px #e3e3e3;
    padding-top: 16px;
    font-size: 14px;
}

.support-small-txt {
    text-align: center;
    font-size: 14px;
    margin-top: 48px;
}
/*終わり*/  


/*<section class="achieve">*/
.achieve-flex {
    display: flex;
    justify-content: left;
    gap: calc(10% / 4);
    flex-wrap: wrap;
    width: 100%;
}

.achieve-con {
    width: 18%;
    font-size: 14px;
}

.achieve-con:nth-child(-n+2) {
    position: relative;
}

.achieve-con:nth-child(-n+2)::before {
    content: "NEW";
    font-weight: 600;
    font-size: 12px;
    padding: 0 8px;
    background-color: #fff;
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 1;
}

.achieve-thumb-wrap {
    display: inline-block;
    position: relative;
    width: 100%;
}

.achieve-thumb-wrap::before{
    content: "";
    display: block;
    padding-top: 100%;
}

.achieve-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.achieve-title {
    margin-top: 8px;
}

.achieve-price {
    margin-top: 4px;
    color: #999;
}

.achieve-bold-txt {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-top: 64px;
}

.achieve-btn-wrap {
    margin-top: 40px;
}

.achieve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    background-color: #222;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.achieve-btn .arrow {
    width: 0;
    height: 0;
    border-left: 6px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-top: 3px;
}
/*終わり*/  


/*<section class="voice">*/
.voice {
    background-color: #f9f9f9;
}

.swiper-container {
    position: relative;
}

.swiper-slide {
    height: auto;
    background-color: #fff;
}

.swiper-box {
    height: 100%;
}

.voice-thumb-wrap {
    width: 100%;
    height: 240px;
}

.voice-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-con {
    padding: 16px;
}

.voice-title {
    padding-bottom: 16px;
    border-bottom: solid 1px #e3e3e3;
    font-weight: 600;
}

.voice-txt-wrap {
    padding-top: 16px;
    font-size: 14px;
}

.voice-txt {
    margin-top: 8px;
}

.swiper-button-prev,
.swiper-button-next {
    height: 40px;
    width: 40px;
    transition: 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.8;
}

.swiper-button-prev {
    left: -50px;
}

.swiper-button-prev::after {
    background-image: url(../img/swiper_left.svg);
}

.swiper-button-next {
    right: -50px;
}

.swiper-button-next::after {
    background-image: url(../img/swiper_right.svg);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 100%;
    margin: auto;
    width: 100%;
}
/*終わり*/  


/*<section class="faq">*/
.faq-wrap {
    background-color: #f9f9f9;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.q-txt {
    display: flex;
    gap: 16px;
}

.q-txt span {
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    z-index: 1;
}

.q-txt span::before {
    content: "";
    background-color: #222;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); 
    z-index: -1;   
}

.a-txt {
    display: flex;
    gap: 16px;
}

.a-txt span {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    padding-top: 3px;
    z-index: 1;
}

.a-txt span::before {
    content: "";
    border: solid 1px #222;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); 
    z-index: -1;   
}
/*終わり*/  


/*<section class="shop">*/
.shop {
    background-color: #f9f9f9;
}

.shop-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.shop-dl {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shop-dl .first-dt {
    width: 100%;
    font-size: 24px;
}

.shop-dl .first-dd {
    width: 0;
}

.shop-dl dt {
    width: 25%;
    border-bottom: solid 1px #e3e3e3;
    padding: 16px 0;
}

.shop-dl dd {
    width: 75%;
    border-bottom: solid 1px #e3e3e3;
    padding: 16px 0;
}

.shop-map-wrap {
    width: 37%;
}

.shop-map-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*終わり*/  


/*<section class="company">*/
.company {
    padding: 80px 5vw 120px 5vw;
    background-color: #f9f9f9;
}

.company-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.company-dl {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.company-dl .first-dt {
    width: 100%;
    font-size: 24px;
}

.company-dl .first-dd {
    width: 0;
}

.company-dl dt {
    width: 25%;
    border-bottom: solid 1px #e3e3e3;
    padding: 16px 0;
}

.company-dl dd {
    width: 75%;
    border-bottom: solid 1px #e3e3e3;
    padding: 16px 0;
}

.company-map-wrap {
    width: 37%;
}

.company-map-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*終わり*/  


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  


/*<section class="fv">*/
    .fv {
        height: calc(60vh - 64px);
    }

    .fv-h1 {
        padding: 0 5vw;
        width: 100%;
        text-align: center;
    }
/*終わり*/ 


/*<section class="about">*/
    .about-flex-01 {
        flex-direction: column;
        gap: 40px;
    }

    .about-txt-wrap {
        width: 100%;
        gap: 24px;
    }

    .about-flex-02 {
        flex-direction: column;
        align-items: center;
        gap: 64px;
    }

    .about-point {
        width: 100%;
    }

    .about-point-img-wrap {
        width: 80%;
        height: 240px;
        margin: 0 auto;
    }
/*終わり*/ 


/*<section class="item">*/
    .item {
        padding: 80px 5vw 40px 5vw;
    }

    .item-flex {
        justify-content: left;
        gap: 2%;
    }

    .item-con {
        width: 32%;
        margin-bottom: 40px;        
    }
/*終わり*/  


/*<section class="support">*/
    .support {
        padding: 40px 5vw 80px 5vw;
    }

    .support-flex {
        flex-direction: column;
        align-items: center;
        gap: 64px;
    }

    .support-con {
        width: 100%;
    }

    .support-img-wrap {
        width: 80%;
        height: 240px;
        margin: 0 auto;
    }
/*終わり*/  


/*<section class="voice">*/
    .swiper-button-prev {
        left: 0px;
    }

    .swiper-button-next {
        right: 0px;
    }
/*終わり*/  


/*<section class="faq">*/
    .faq-wrap {
        padding: 24px;
    }
/*終わり*/  


/*<section class="shop">*/
    .shop-flex {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    .shop-dl {
        width: 100%;
    }

    .shop-map-wrap {
        width: 80%;
        height: 240px;
    }
/*終わり*/  


/*<section class="company">*/
    .company {
        padding: 80px 5vw;
    }

    .company-flex {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    .company-dl {
        width: 100%;
    }

    .company-map-wrap {
        width: 80%;
        height: 240px;
    }
/*終わり*/  


}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .column-h2 {
        font-size: clamp(calc(24px), calc(32 / 599 * 100vw), 32px);
    }
/*終わり*/  


/*<section class="fv">*/
    .fv-h1 {
        font-size: clamp(calc(20px), calc(32 / 599 * 100vw), 32px);
    }
/*終わり*/  


/*<section class="about">*/
    .about-img-wrap {
        width: 50%;
    }

    .about-h2 {
        font-weight: 600;
        font-size: clamp(calc(16px), calc(24 / 599 * 100vw), 24px);
    }

    .about-txt {
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }

    .about-point-img-wrap {
        width: 100%;
        height: clamp(calc(200px), calc(240 / 599 * 100vw), 240px);
    }
/*終わり*/ 


/*<section class="item">*/
    .item-flex {
        justify-content: space-between;
        gap: 0;
    }

    .item-con {
        width: 48%;
        margin-bottom: 24px;        
    }
/*終わり*/  


/*<section class="support">*/
    .support-h2 {
        font-size: clamp(calc(20px), calc(24 / 599 * 100vw), 24px);
    }

    .support-img-wrap {
        width: 100%;
        height: clamp(calc(200px), calc(240 / 599 * 100vw), 240px);
    }
/*終わり*/


/*<section class="achieve">*/
    .achieve-flex {
        gap: 4%;
    }

    .achieve-con {
        width: 48%;
        margin-bottom: 24px;        
    }

    .achieve-title {
        font-size: clamp(calc(12px), calc(14 / 599 * 100vw), 14px);
    }

    .achieve-price {
        font-size: clamp(calc(12px), calc(14 / 599 * 100vw), 14px);
    }

    .achieve-bold-txt {
        font-size: clamp(calc(18px), calc(24 / 599 * 100vw), 24px);
        margin-top: 40px;
    }
/*終わり*/


/*<section class="voice">*/
    .voice-con {
        padding: 16px 24px;
    }

   .swiper-button-prev {
        left: -5vw;
        width: 35px;
    }

    .swiper-button-next {
        right: -5vw;
        width: 35px;
    }
/*終わり*/


/*<section class="faq">*/
    .faq-wrap {
        padding: 24px 16px;
    }

    .q-txt,
    .a-txt {
        font-size: 14px;
    }
/*終わり*/


/*<section class="shop">*/
    .shop {
        padding: 80px 5vw 40px 5vw;
    }

    .shop-dl {
        flex-direction: column;
    }

    .shop-dl .first-dt {
        font-size: clamp(calc(18px), calc(24 / 599 * 100vw), 24px);
    }

    .shop-dl dt {
        width: 100%;
        padding: 16px 0 0 0;
        border-bottom: none;
        font-weight: 600;
    }

    .shop-dl dd {
        width: 100%;
        padding: 8px 0 16px 0;
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }

    .shop-map-wrap {
        width: 100%;
    }
/*終わり*/


/*<section class="company">*/
    .company {
        padding: 40px 5vw 80px 5vw;
    }

    .company-dl {
        flex-direction: column;
    }

    .company-dl .first-dt {
        font-size: clamp(calc(18px), calc(24 / 599 * 100vw), 24px);
    }

    .company-dl dt {
        width: 100%;
        padding: 16px 0 0 0;
        border-bottom: none;
        font-weight: 600;
    }

    .company-dl dd {
        width: 100%;
        padding: 8px 0 16px 0;
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }

    .company-map-wrap {
        width: 100%;
    }
/*終わり*/
}
