@charset "UTF-8";

header { width: 100%; height: auto; }
header .list__container {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 2%;
    justify-content: space-between;
    align-items: center;
    /*height: calc(130 / 1080 * 100vh);*/
    padding: 18px 24px;
    .hamburger {
    display: none;
        @media screen and (min-width: 768px) and (max-width: 1024px) {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            span{
            position: relative;
            transition: transform 0.3s ease, opacity 0.3s ease;
            font-size: 12px;
            &.menu--icon{
                display: block;
                height: 4px;
                width: 40px;
                background: #2f2f2f;
                border-radius: 100px;
                transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
                position: relative;
                bottom: 0;
                &::before,
                &::after {
                    content: "";
                    display: block;
                    height: 100%;
                    width: 100%;
                    background: #2f2f2f;
                    border-radius: 100px;
                    position: absolute;
                    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
                }        
                &::before {
                    top: 12px;
                }        
                &::after {
                    bottom: 12px;
                }        
            }
            }
            &.active{
                position: fixed;
                right: 0;
                z-index: 1100;
                span{
                    background: transparent !important;
                    transition: transform 0.3s ease, opacity 0.3s ease;
                    &.menu--icon{
                        bottom: 0px;
                        &::before,
                        &::after{
                            content: "";
                            display: block;
                            background: #382C02;
                            border-radius: 100px;
                            position: absolute;
                            transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
                        }
                        &::before{
                            transform: translateY(9px) rotate(45deg);
                            top: -14px;
                        }
                        &::after{
                            transform: translateY(-9px) rotate(-45deg);
                            bottom: -4px;
                        }
                    }
                }
            }
        }
        @media screen and (max-width: 767px) {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            span{
            position: relative;
            transition: transform 0.3s ease, opacity 0.3s ease;
            font-size: 12px;
            &.menu--icon{
                display: block;
                height: 4px;
                width: 40px;
                background: #2f2f2f;
                border-radius: 100px;
                transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
                position: relative;
                bottom: 0px;
                &::before,
                &::after {
                    content: "";
                    display: block;
                    height: 100%;
                    width: 100%;
                    background: #2f2f2f;
                    border-radius: 100px;
                    position: absolute;
                    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
                }        
                &::before {
                    top: 12px;
                }        
                &::after {
                    bottom: 12px;
                }        
            }
            }
            &.active{
                position: fixed;
                right: 0;
                z-index: 1100;
                span{
                    background: transparent !important;
                    transition: transform 0.3s ease, opacity 0.3s ease;
                    &.menu--icon{
                        bottom: 0px;
                        &::before,
                        &::after{
                            content: "";
                            display: block;
                            background: #382C02;
                            position: absolute;
                            transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
                        }
                        &::before{
                            transform: translateY(9px) rotate(45deg);
                            top: -9px;
                        }
                        &::after{
                            transform: translateY(-9px) rotate(-45deg);
                            bottom: -9px;
                        }
                    }
                }          
            }
        }
    }
}

nav{
display: none;
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        &#navArea{
            display: block;
            transform: translateX(100%);
            pointer-events: none;
            transition: transform 0.7s ease;
            background: #fff;
            position: fixed;
            top: 0;
            right: 0;
            width: 400px;
            height: /*100vh*/100%;
            padding: 80px 40px;
            text-align: center;
            z-index: 1000;
            &.active {
            transform: translateX(0);
            pointer-events: auto;
            transition: transform 1.0s ease;
            }
            .link__list{
                display: grid;
                grid-template-rows: repeat(4,auto);
                row-gap: 40px;
                justify-content: center;
                align-items: center;
                margin-bottom: 40px;
            }
        }
    }
    @media screen and (max-width: 767px) {
        &#navArea{
            display: block;
            transform: translateX(100%);
            pointer-events: none;
            transition: transform 0.7s ease;
            background: #fff;
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: /*100vh*/100%;
            padding: 80px 40px;
            text-align: center;
            z-index: 1000;
            &.active {
            transform: translateX(0);
            pointer-events: auto;
            transition: transform 1.0s ease;
            overflow-x: hidden;
            overflow-y: scroll;
            }
            .link__list{
                display: grid;
                grid-template-rows: repeat(4,auto);
                row-gap: 40px;
                justify-content: center;
                align-items: center;
                margin-bottom: 40px;
            }
        }
    }
}


header .website-title__img {
    width: calc(449 / 1920 * 100vw);
    height: auto;
    aspect-ratio: 449 / 56;
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        width: calc(380 / 1024 * 100vw);
    }
    @media screen and (min-width: 391px) and (max-width: 767px) {
        width: calc(340 / 767 * 100vw);
    }
    @media screen and (max-width: 390px) {
        width: calc(208 / 390 * 100vw);
    }
}
header .language-select__container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 230px/*260px*/;
    height: auto;
    cursor: pointer;
    font-family: 'Zen Maru Gothic', sans-serif;
}
header .language-select__container-sp {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 220px/*260px*/;
    height: auto;
    cursor: pointer;
    margin: 0 auto;
    font-family: 'Zen Maru Gothic', sans-serif;
}
@media screen and (max-width: 767px) {
header .language-select__container {
display: none;
}
}
header .language-bar__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8E8E8;
    height: 39px;
    padding-right: 30px;
    border-radius: 130px;
}
header .language-bar__container p {
    line-height: 39px;
    font-size: 1.125rem; 
    font-weight: bold; 
}
header .language-select__container.selected .menu__container {
    display: flex;
    width: 100%;
}
header .language-select__container .language-icon__image { 
    width: 26px;
    height: 26px;
    margin-right: 5px;
}

header .arrow-down__icon {
    position: absolute;
    display: inline-block;
    top: 25%;
    right: 15%;
    width: 13px;
    height: 13px;
    border-top: 2px solid #2f2f2f;
    border-right: 2px solid #2f2f2f;
    transform: rotate(135deg);
    background-color: transparent;
}

header .language-select__container .menu__container,
header .language-select__container-sp .menu__container { 
    position: absolute;
    z-index: 100;
    top: 100%;
    display: none;
    background-color: #FFF;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 260px;
    border-radius: 20px;
    border: 1px solid #E8E8E8;
}
header .language-select__container .menu__container .inner-language__container { 
    position: relative;
    display: block;
    width: 100%;
    padding: 5px;
    text-align: center;
}
header .language-select__container .menu__container .inner-language__container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
}
header .language-select__container .menu__container .inner-language__container.vi::after {
    border-bottom: none;
}
header .language-select__container .menu__container a {
    display: block;
    width: 100%;
    height: 24px;
    border-radius: 20px;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
}
header .language-select__container .menu__container a:hover {
    background-color: #E8E8E8;
}
@media (min-width: 1920px) { 
    header .language-select__image {
        width: 260px;
    } 
}

.bottom-banner__wrapper {
    display: none;
}
@media screen and (max-width: 767px) {
    .contact-check .bottom-banner__wrapper,
    .contact-thanks .bottom-banner__wrapper {
        display: none;
    }
    .bottom-banner__wrapper {
        display: grid;
        grid-template-columns: 40% auto;
        column-gap: 2%;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 80px;
        padding: 0 16px;
        background-color: #FFFFFF;
        font-family: 'Zen Maru Gothic', sans-serif;
        position: fixed;
        z-index: 101;
        bottom: 0;
    }
    .bottom-banner__wrapper.no-language {
        grid-template-columns: auto;
    }
    .bottom-banner__wrapper .language-select__container {
        /*position: absolute;
        bottom: 20px;
        left: 10px;*/
        cursor: pointer;
    }
    .bottom-banner__wrapper .language-select__container .language-bar__container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #E8E8E8;
        width: /*190px*/auto;
        height: 40px;
        padding-right: 30px;
        border-radius: 130px;
    }
    .language-select__container-sp .language-bar__container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #E8E8E8;
        width: 220px;
        height: 40px;
        padding-right: 30px;
        border-radius: 130px;
    }
    .language-select__container-sp .language-bar__container p {
        line-height: 40px;
        font-size: 1rem; 
        font-weight: bold; 
    }
    .bottom-banner__wrapper .language-select__container .language-bar__container p {
        line-height: 40px;
        font-size: 0.8rem; 
        font-weight: bold; 
    }
    .language-select__container-sp .language-icon__image { 
        width: 26px;
        height: 26px;
        margin-right: 5px;
    }
    .bottom-banner__wrapper .language-select__container .language-icon__image { 
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }
    .language-select__container-sp .arrow-down__icon {
        position: absolute;
        display: inline-block;
        top: 25%;
        right: 15%;
        width: 13px;
        height: 13px;
        border-top: 2px solid #2f2f2f;
        border-right: 2px solid #2f2f2f;
        transform: rotate(135deg);
        background-color: transparent;
    } 
    .bottom-banner__wrapper .language-select__container .arrow-down__icon {
        position: absolute;
        display: inline-block;
        top: 30%;
        right: 15%;
        width: 10px;
        height: 10px;
        border-top: 2px solid #2f2f2f;
        border-right: 2px solid #2f2f2f;
        transform: rotate(135deg);
        background-color: transparent;
    }
    .bottom-banner__wrapper .language-select__container .menu__container,
    .language-select__container-sp .menu__container { 
        display: none;
        background-color: #FFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: /*190px*/auto;
        border-radius: 20px;
        border: 1px solid #E8E8E8;
    }
    .bottom-banner__wrapper .language-select__container .menu__container a,
    .language-select__container-sp .menu__container a { 
        display: block;
        width: 100%;
        height: 24px;
        border-radius: 20px;
        line-height: 24px;
        font-family: 'Montserrat', sans-serif;
    }
    .bottom-banner__wrapper .language-select__container .menu__container a:hover,
    .language-select__container-sp .menu__container a:hover {
        background-color: #E8E8E8;
    }
    .bottom-banner__wrapper .language-select__container .menu__container .inner-language__container,
    .language-select__container-sp .menu__container .inner-language__container { 
        position: relative;
        display: block;
        width: 100%;
        padding: 5px;
        text-align: center;
    }
    .bottom-banner__wrapper .language-select__container .menu__container .inner-language__container::after,
    .language-select__container-sp .menu__container .inner-language__container::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
    }
    .bottom-banner__wrapper .language-select__container .menu__container .inner-language__container.vi::after,
    .language-select__container-sp .menu__container .inner-language__container.vi::after { 
        border-bottom: none;
    }
    .language-select__container-sp.selected .menu__container {
        display: flex;
        width: 100%;
        box-shadow: 0px 0px 3px 3px rgba(179, 112, 5, 0.10);
    }
    .bottom-banner__wrapper .language-select__container.selected .menu__container {
        display: flex;
        width: 190px;
        box-shadow: 0px 0px 3px 3px rgba(179, 112, 5, 0.10);
        position: absolute;
        top: -115px;
        z-index: 100;
    }
}


footer {
    width: 100%;
    height: calc(140 / 1080 * 100vh);
    font-family: 'Noto Sans JP', sans-serif;
}
footer .link__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}
footer .link__container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px; /* 線の太さ */
    background-image: repeating-linear-gradient(
        to right,
        #2f2f2f 0px,
        #2f2f2f 8px,   /* 線の長さ */
        transparent 8px,
        transparent 16px  /* 間隔含めた合計 */
    );
}

footer .link__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.875rem;
    font-family: 'Montserrat', sans-serif;
}
footer .link__list li a { font-size: 1rem; border-bottom: 1px dotted #2f2f2f; }

footer .copyright__container { 
    background-color: #FFF3E9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}
footer .copyright__container p { font-size: 0.875rem; }
@media screen and (max-width: 640px) {
    footer .copyright__container { flex-direction: column; }
    footer .copyright__container p { font-size: 0.75rem; }
}
