@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    color: #333;
    font-family: YuGothic, sans-serif;
    letter-spacing: 1px;
        }
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
    color: #000;
    font-size: 2rem;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}

/* 共通CSS */

.wrapper {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 100px;
    
}
/* 文字の半分に色つける */
.section-text {
    font-size: 2.0rem;
    margin-bottom: 50px;
}
.section-text > span {
    background:linear-gradient(transparent 0%,transparent 50%,#cccaca 50%, #cccaca 100%) ;
}

.image-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.image-text {
    font-size: 1.0rem;
    text-align: left;
}
.btn {
    color: #fff;
    font-size: 1.0rem;
    background: #000;
    padding: 2% 10%;
    border-radius: 10px;
}

.caption-title {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 30px;
}


/* header */

#header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.site-title {
    width: 30%;
}

#header .top-lists ul{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;   
    gap: 50px;
}
/* ハンバーガーメニュー */
.hamburger {
    display: none;
}
.hamburger {
    width: 100px;
    height: 100px;
    background: #d34f7b00;
    top: 0;
    right: 0;
    z-index: 30;
    position: fixed;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    line-height: 80px;
}
.hamburger:hover{
    opacity: 0.7;

}
.hamburger span:nth-child(1),
.hamburger span:nth-child(2) {
    width: 50px;
    height: 3px;
    background: #e5427b;
    position: absolute;
    left: 25px;
    transition: 0.3s;
}

.hamburger span:nth-child(3) {
    color: #e5427b;
    position: absolute;
    left: 21px;
    font-size: 1.3rem;
    font-weight: bold;
}

.hamburger span:nth-child(1) {
    top: 27px;
}
.hamburger span:nth-child(2) {
    top: 41px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}

/* active */
.hamburger.active span:nth-child(1) {
    top: 41px;
    left: 25px;
    background: #fff;
    transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2){
    top: 40px;
    background: #fff;
    transform: rotate(45deg);
}

#navi {
    width: 100%;
    height: 100vh;
    background-color: #D34F7B;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    opacity: 0;
    text-align: center;
    transition: opacity 0.6s ease,visibility 0.6s ease;
    visibility: hidden;
}
#navi.active {
    opacity: 1;
    visibility: visible;
}

#navi .menu {
    margin: 80px 9px 40px 0;
}
#navi .menu li {
    margin-bottom: 20px;
}
#navi .menu a{
    color: #fff;
    font-weight: bold;
}

/* mainvisual */
#mainvisual {
    background-image: url(../img/shopimage.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 900px;
    margin-bottom: 100px;
    
}
.main-parts {
    position: absolute;
    top: 25%;
    left: 20%;
    z-index: 30;
}
#mainvisual .main-parts .main-title {
    color: #fff;
    font-size: 6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}
#mainvisual .main-parts .main-text{
    color: #fff;
    font-size: 3rem;
    letter-spacing: 0.05em;
}


/* about */
#about {
    margin: 0 auto 100px auto;
    text-align: center;
}
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.about-text {
    padding: 5%;
    width: 50%;
}

#about .about-content .about-text .image-text p{
    margin-bottom: 50px;
}
.about-image {
    width: 50%;
}

/* addition 3つのコンテンツ　横並び */
#addition {
    padding: 0 2%;
    margin-bottom: 100px;
}

.addition-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;
}

.addition-parts {
    width: 33%;
}
.addition-image {
    margin-bottom: 30px;
}

/* concept */
#concept {
    margin-bottom: 100px;
}

.concept-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    margin: 2%;

}
.concept-list {
    width: 20vw;
    height: 20vw;
    background: #D9D9D9;
    border-radius: 50%;
    position: relative;
}
.concept-text {
    font-size: 1.2rem;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}
.concept-img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}
.concept-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
}

/* service */

#service {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
}
.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.service-text {
    padding: 5%;
    width: 50%;
}
.service-image {
    width: 50%;
}
/* system */
#system {
    margin: 0 auto;
    margin-bottom: 100px;
    text-align: center;
}
.system-lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2%;
}
.system-list {
    width: 20%;
    padding: 0 1%;
}
.system-image {
    margin-bottom: 20px;
}
.system-title {
    margin-bottom: 20px;
}
.system-text {
    margin-bottom: 20px;
    text-align: left;
}
/* contact */
#contact {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    padding: 0 5%;
    margin-bottom: 100px;
}

/* contact */
.contact-select {
    background-color: #edeaea;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 1.35rem;
    padding: 2%;
}
.contact-select:focus {
    border: 2px solid #ed782f;
}

.contact-form {
    background-color: #edeaea;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 1.35rem;
    padding: 2%;
}
.contact-form:focus {
    border: 2px solid #ed782f;
}

.form-text {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.3rem;
    margin-bottom: 10px;

}
.asterisk {
    display: inline-block;
    color: #ff3300;
    vertical-align: sub;
    line-height: 1.3rem;
}
.contact-textarea {
    background-color: #edeaea;
    width: 100%;
    font-size: 1.35rem;
    padding: 2%;
    margin-bottom: 30px;
}
.contact-textarea:focus {
    border: 2px solid #ed782f;
}
.btn-g {
    color: #fff;
    font-size: 1.3rem;
    background: #58c1c4;
    border-radius: 4px;
    padding: 2% 10%;
    font-weight: bold;
    border: 1px solid #347173;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.29);   
}
.btn-g:active {
    box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
    transform: translateY(2px);
}
.checkbox {
    text-align: left;
}

/* footer*/
#footer {
    background: #58c1c4;
    color: #fff;
    text-align: center;
    height: 100px;
}
.footer-text {
    line-height: 100px;
    font-size: 1rem;
}



@media screen and (max-width:900px) {
    /* 共通css */
    .section-title {
        margin-bottom: 20px;
    }
    .section-text {
        margin-bottom: 10px;
    }
    .image-title {
        margin-bottom: 20px;
    }

    /* header */
    #header .top-lists ul{
        display: none;
    }
    .hamburger {
        display: block;
    }
    /* mainvisual */
    #mainvisual {
        background-image: url(../img/shopimage-sp.png);
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        height: 900px;
        margin-bottom: 100px;
    }
    /* about */
    .about-content {
        flex-direction: column;
    }
    .about-image {
        width: 100%;
    }
    .about-text {
        width: 100%;
    }
    /* addition */
    .addition-content {
        flex-direction: column;
    }
    .addition-parts {
        width: 100%;
    }
    /* concept */
    .concept-list {
        width: 45vw;
        height: 45vw;
    }
    .concept-img {
        width: 45%;
    }
    /* service */
    .service-content {
        flex-wrap: wrap;
    }
    .service-reverse {
        flex-wrap: wrap-reverse;
    }
    .service-text {
    padding: 5%;
    width: 100%;
}
    .service-image {
    width: 100%;
}

/* system */
    .system-list {
        width: 45%;
    }

/* contact */
    .checkbox {
        margin-bottom: 15px;
    }
}


