@charset "utf-8";
/*
    Theme Name: theme-SASATECH 
    Theme URI: https://abeone-devtest.com/test-sasatech
    Description: 株式会社ササテクニカ テストページ
    Version: 1.0
*/

/* ----------------------------------------------------------------
    #general setting & reset csss
---------------------------------------------------------------- */

:root {
/*========== Colors ==========*/
    --text-color: #000;
    --text-color-white: #fff;
    --text-link_hover: #0768E8;
    --border-color: #d6d6d6;

/*========== Font and typography ==========*/
/*.5rem = 8px | 1rem = 16px */
    --font-size--big: 42px;
    --font-size-large: 18px;
    --font-size-normal: 16px;
    --font-size-small: 12px;
    --font-size-smaller: 8px;


/*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
}

/*
    clearfix
 -------------------------*/
.clearfix:after { content: ""; display: block; clear: both; } 
.clearfix:before { content: ""; display: block; clear: both; } 
.clearfix { display: block; }


* {
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    margin: 0;
    padding: 0;
    font-size: var(--font-size-normal);
    line-height: 1.6;
    list-style: none;
}

html, body {
    width: 100%;
    height: 100%;
    color: #000;
}

h1 { font-size: 28pt; }
h2 { font-size: 20pt; }
h3 { font-size: 16pt; }
h4 { font-size: 14pt; }

a:link, a:visited {
    color: #000;
    text-decoration: none;
    transition: .3s;
}
@media (hover: hover) {
    a:hover {
        color: var(--text-link_hover);
        text-decoration: none;
    }
}
img { max-width: 100%; }

hr {
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin: 60px 0 40px 0;
}


/* ----------------------------------------------------------------
    header
---------------------------------------------------------------- */

header {
    width: 100%;
    height: 70px;
    background: rgba(97,174,59,1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.site-logo {
    position: absolute;
    top: 19px;
    left: 30px;
}
    .site-logo img {
        height: 30px;
        z-index: 10;
    }

.global-nav {
    position: absolute;
    top: 23px;
    right: 30px;
    z-index: 5;
}

    .global-nav ul li {
        display: inline-block;
        margin: 0 20px;
        font-weight: bold;
    }

    .global-nav ul li a,
    .global-nav ul li a:visited {
        color: #fff;
        transition: 0.5s;
    }
    .global-nav ul li a:hover {
        color: #000;
    }

/* ----------------------------------------------------------------
    swiper-container
---------------------------------------------------------------- */
.swiper-container {
    width: 100%;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 150px;
    position: relative;
    top: 70px;
}
.swiper-container .swiper-slide {
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

    .swiper-slide img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }


/* ----------------------------------------------------------------
    main
---------------------------------------------------------------- */
.title-page {
    position: static;
    margin: 120px auto 50px auto;
    width: 960px;
    height: 180px;
    text-align: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-contents {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
    .title-contents p {
        font-weight: bold;
        margin-bottom: -5px;
    }
    .title-contents h1 {
        font-size: 48px;
    }

main {
    width: 960px;
    margin: 20px auto;
}


.product-inner {
    margin: 20px auto;
}
    .product-inner ul {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    .product-inner ul li {
        margin: 20px;
        font-size: 22px;
    }

.about-inner {
    text-align: center;
}
.about-inner img {
    display: block;
    margin: 0 auto 40px auto;
}

.txt-aisatsu {
    width: 100%;
    margin: 20px auto;
    padding: 20px 40px;
    text-align: left;
}

.wrap-access {
    text-align: center;
}
.logo-shopinfo {
    width: 320px;
    display: block;
    margin: 20px auto 40px auto;
}



/* ----------------------------------------------------------------
    contact
---------------------------------------------------------------- */
.banner-contact {
    width: 960px;
    margin: 20px auto;
}
.img-contact {
    width: 420px;
    display: block;
    margin: 20px auto 80px auto;
    transition: 0.5s;
}
.img-contact:hover {
    opacity: 0.8;
}

.contact {
    position: static;
    padding: 40px 20px;
    background: #fff;
    margin: 0 auto 125px auto;
}
.contact-thanks {
    width: 100%;
    text-align: center;
}
    .contact-thanks h2 {
        margin-bottom: 20px;
    }
    .contact-thanks p {
        line-height: 32px;
    }
    .contact-thanks hr {
        width: 640px;
        margin:  40px auto;
    }

.font-red {
    font-size: 14pt;
    color: red;
}

.contact-txt {
    width: 640px;
    margin: 0 auto 30px auto;
}
    .contact-txt ul {
        margin-left: 20px;
    }
    .contact-txt ul li {
        font-size: var(--font-size-normal);
        font-weight: bold;
        list-style: circle;
    }


form {
    width: 640px;
    margin: 0 auto;
}

fieldset, input, textarea {
    border: none;
    border-radius: 10px;
}

.form-input {
    margin-bottom: 20px;
}
    .form-input fieldset {
        width: 100%;
        margin-bottom: 40px;
    }
        .form-input fieldset legend {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: var(--font-size-large);
        }
    .form-input input {
        width: 100%;
        padding: 10px 20px;
        border: 1px solid var(--border-color);
    }
    .form-input textarea {
        width: 100%;
        padding: 20px;
        border: 1px solid #ccc;
    }

.form-btn {
    width: 446px;
    margin: 20px auto;
}
    .form-btn input {
        width: 200px;
        background: #fff;
        color: #000;
        display: inline-block;
        margin: 0 10px;
        padding: 10px 20px;
        font-weight: bold;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        transition: 1s;
    }
    .form-btn a,
    .form-btn a:visited {
        color: #000;
    }
    @media (hover: hover) {
        .form-btn input:hover {
            cursor: pointer;
            background: #000;
            color: #fff;
        }
    }


/* ----------------------------------------------------------------
    footer
---------------------------------------------------------------- */
footer {
    padding: 20px 0;
    text-align: center;
    background: rgba(97,174,59,1);
}
.privacy {
    font-size: 10pt;
    margin-bottom: 20px;
}
.copy_right img {
    height: 30px;
}


/* ----------------------------------------------------------------
    #page_top
---------------------------------------------------------------- */
#page_top {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(255,255,255,0.8);
    background-image: url(images/icon-page_top.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    opacity: 0;
    pointer-events: none;
}
    @media (hover: hover) {
        #page_top:hover {
            cursor: pointer;
            opacity: 0.8;
            transform: translateY(-10px);
            transition: transform 0.3s, opacity 0.3s, filter 0.3s;
        }
    }
    #page_top:not(:hover) {
        transform: translateY(0);
        transition: transform 0.5s;
    }

#page_top.UpMove {
    animation: UpAnime 0.5s forwards;
    pointer-events: auto;
}
    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
  
#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}
    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }


/* ----------------------------------------------------------------
    max-width: 1024px
---------------------------------------------------------------- */
@media screen and (max-width: 1024px) {

/*  contact  */
#contact {
    width: 95%;
    margin: 0 auto 100px auto;
}

}


/* ----------------------------------------------------------------
    max-width: 960px
---------------------------------------------------------------- */
@media screen and (max-width: 960px) {

main {
    width: 100%;
}

.title-page {
    width: 95%;
}
.banner-contact {
    width: 100%;
}

hr {
    width: 90%;
    display: block;
    margin: 60px auto 40px auto;
}

}


/* ----------------------------------------------------------------
    max-width: 820px
---------------------------------------------------------------- */
@media screen and (max-width: 820px) {

    .swiper-container section h1 {
        font-size: 300%;
    }
    .swiper-container section p {
        font-size: 130%;
    }

}


/* ----------------------------------------------------------------
    max-width: 768px
---------------------------------------------------------------- */
@media screen and (max-width: 768px) {

    .global-nav {
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.9);
        opacity: 0;
        color: var(--text-color);
        transform: translateY(-100%);
        transition: all 0.5s;
        width: 100%;
        height: 100vh;
        border: none !important;
        padding: 10px 0;
        margin: 0;
    }
        .global-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
    
        .global-nav ul {
            width: 100%;
            height: auto;
            text-align: center;
            margin: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-right: -50%;
            transform: translate(-50%, -50%);
        }
            .global-nav ul li {
                list-style-type: none;
                margin: 60px auto;
                width: 50%;
                height: 22px;
                display: block;
            }
    
            .global-nav ul li a {
                font-size: 28px;
                color: #fff;
            }
                .global-nav ul li a:hover {
                    color: var(--text-link_hover);
                }
                .global-nav li a:after {
                    display: none;
                }
    
    /*
        navToggle
    -------------------------*/
    
    .navToggle {
        display: block;
        position: absolute; 
        right: 35px;
        top: 14px;
        width: 34px;
        height: 35px;
        cursor: pointer;
        z-index: 10;
        text-align: center;
        border: none !important;
    }
    
        .navToggle span {
            display: block;
            position: absolute; 
            width: 34px;
            border-bottom: solid 3px #fff;
            transition: all 0.5s;
            left: 6px;
        }
            .navToggle span:nth-child(1) {
                top: 8px;
            }
            .navToggle span:nth-child(2) {
                top: 19px;
            } 
            .navToggle span:nth-child(3) {
                top: 30px;
            }
    
            .navToggle.active span:nth-child(1) {
                top: 18px;
                left: 6px;
                border-bottom: solid 3px #fff;
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
            .navToggle.active span:nth-child(2),
            .navToggle.active span:nth-child(3) {
                top: 18px;
                border-bottom: solid 3px #fff;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                transform: rotate(45deg);
            }
  

form {
    width: 100%;
    margin: 0 auto;
}
    .swiper-container section h1 {
        font-size: 270%;
    }

}


/* ----------------------------------------------------------------
    max-width: 480px
---------------------------------------------------------------- */
@media screen and (max-width: 480px) {

.navToggle {
    right: 24px;
    top: 13px;
}

    .navToggle span {
        width: 26px;
    }
        .navToggle span:nth-child(1) {
            top: 8px;
        }
        .navToggle span:nth-child(2) {
            top: 17px;
        } 
        .navToggle span:nth-child(3) {
            top: 26px;
        }

header {
    height: 60px;
}
    .site-logo {
        top: 15px;
        left: 10px;
    }

.swiper-container {
    top: 60px;
}
    .swiper-container section h1 {
        font-size: 180%;
        margin-bottom: 20px;
    }
    .swiper-container section p {
        font-size: 130%;
    }

    .title-contents h1 {
        font-size: 32px;
    }

.title-page h1 {
    font-size: 20pt;
}


.txt-aisatsu {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
}

.img-contact {
    width: 80%;
    margin: 20px auto 60px auto;
}

.contact-txt {
    width: 100%;
    margin: 0 auto 30px auto;
}
    .contact-txt ul li {
        font-size: var(--font-size-normal);
    }

.form-btn {
    width: 100%;
    margin: 20px auto;
}
    .form-btn input {
        width: 90%;
        display: block;
        margin: 10px auto;
    }

.privacypolicy_inner dt {
    font-size: 12pt;
    font-weight: bold;
    float: none;
}
.privacypolicy_inner dd {
    margin-bottom: 15px;
}

#page_top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 20px;
}

}