@charset "UTF-8";

* {
    box-sizing: border-box;
    font-family: 'Myriad Pro''Hiragino Kaku Gothic ProN'Poppins;
}

body {
    width: 100%;
}

.comp1 {
    width: 100%;
    height: 800px;
    background: url("../img/component.png")no-repeat;
    background-size: cover;
    text-align: center;
    display: table;
}

.comp1text {
    display: table-cell;
    vertical-align: middle;
    color: white;
}

.title-border {
    display: flex;
    color: white;
    align-items: center;
    font-size: 18px;
    margin-left: 40%;
}

.title-border:after {
    border-bottom: 1px solid;
    content: "";
    width: 30px
}

.title-border:after {
    margin-left: 1rem;
}

.title-border:before {
    border-bottom: 1px solid;
    content: "";
    width: 30px;
}

.title-border:before {
    margin-right: 1rem;
}

h1 {
    font-size: 48px;
}

h2 {
    text-align: center;
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

#concept {
    position: relative;
}

.text1 {
    text-align: center;

}

.comp2 {
    width: 100%;
    height: 600px;
    position: relative;
}

.comp2 img {
    width: 100%;
    padding: 5% 15%;
}

.bg1 {
    width: 100%;
    background: #ededed 0% 0% no-repeat padding-box;
    position: absolute;
    top: 1350px;
    left: 0px;
    height: 240px;
    opacity: 1;
    z-index: -1;
}

#work {
    padding-top: 100px;
}

.canvas {
    display: flex;
    margin: 0 10%;
    height: 1800px;
}

.leftRow {
    margin-left: 5px;
    margin-right: 10px;
}

.rightRow {
    margin-right: 5px;
    margin-left: 10px;
}

.unit0 {
    width: 100%;
    margin: 0 10px 40px 10px;
}

.unit0 img {
    width: 100%;
}

.spacer2 {
    width: 100px;
    height: 70px;
}

.f_wrapper {
    width: 100%;
    display: flex;
}

.unit1 {
    width: 33%;
    text-align: left;
    padding: 2%;
}

.unit1 img {
    width: 100%;
}

.unit1 h3 {
    font-size: 24px;
}

#shopInformation {
    margin-bottom: 10%;
}

.s_wrapper {
    display: flex;
    width: 100%;
}

.left1 {
    width: 45%;
}

.left1 img {
    width: 100%;
}

.spacer1 {
    width: 10%;
}

.right1 {
    width: 45%;
}

.address {
    width: 100%;
    height: 100%;
    border: 1px solid gray;
    border-style: dashed;
}

.firstTd {
    border-right: 1px solid gray;
}

#contactUs {
    width: 100%;
    height: 750px;
    background: url("../img/contact_us.png")no-repeat;
    background-size: cover;
    /* text-align: center; */
    display: table;
}

.text2 {
    text-align: center;
}

form {
    text-align: center;
}

label {
    color: white;
    font-size: 24px;
}
input {
    width: 70%;
}
textarea {
    width: 70%;
}
.buttonSub {
    color: black;
    background-color: white;
    width: 50%;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
}
.spacer3 {
    height: 100px;
}

.footer {
    text-align: center;
}

.title-b2 {
    display: flex;
    margin-left: 47%;
}

.title-b2:after {
    border-bottom: 1px solid black;
    content: "";
    width: 40px
}

.title-b2:after {
    margin-left: 1rem;
}

table {
    padding: 10px;
}

td {
    padding: 8px;
}

.hamburger-menu div {
    width: 35px;
    height: 5px;
    background-color: gray;
    margin: 6px 0;
}

.hamburger-menu+.sidenavs:target {
    overflow-x: visible;
    /* ボックスからはみ出る箇所をそのまま表示 */
    width: 100%;
    display: block;
}

.sidenavs:target {
    overflow-x: hidden;
    /* ボックスからはみ出る箇所を隠す */
    width: 0;
}

/* ハンバーガーメニュー表示時 */
.sidenavs {
    height: 100%;
    width: 0;
    position: absolute;
    /* 画像の配置を指定 */
    z-index: 1;
    top: 0;
    left: 0;
    background-color: black;
    overflow-x: hidden;
    /* 横スクロールを無効にする */
    padding-top: 60px;
    transition: 0.5s;
    /* アニメーションの時間を0.5秒に指定 */
}

/* ハンバーガーメニュー表示時のリンク */
.sidenavs a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
    /* アニメーションの時間を0.3秒に指定 */
    font-weight: bold;
}

/* マウスオーバー後のリンク */
.sidenavs a:hover {
    color: white;
}

/* クローズボタン */
.sidenavs .close-btn {
    position: absolute;
    /* 親要素との絶対位置を指定 */
    top: 40;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.clear {
    padding: 2% 0;
    background: rgb(255, 255, 255, 0.3);
}
@media screen and (max-width: 420px){
    .comp1 {
        height: 400px;
    }
    .title-border {
        margin-left: 20%;
    }
    .comp2 {
        height: 150px;
    }
    .bg1 {
        top: 700px;
        height: 150px;
    }
    h2 {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .title-b2 {
        margin-left: 40%;
        margin-bottom: 20px;
    }
    .text1 p {
        padding-left: 20px;
        padding-right: 20px;
    }
    .canvas {
        display: block;
        height: 2300px;
    }
    .spacer2 {
        display: none;
    }
    .f_wrapper {
        display: block;
    }
    .unit1 {
        width: 100%;
    }
    .s_wrapper {
        display: block;
    }
    .left1 {
        width: 100%;
    }
    .spacer1 {
        display: none;
    }
    .right1 {
        width: 100%;
    }
    .address {
        margin-left: 10px;
        margin-right: 15px;
    }
    #contactUs {
        height: 1000px;
    }
    label {
        font-size: 18px;
    }
    .clear {
        padding: 5px;
    }
}
@media screen and (min-width: 800px) {
    .buttonSub:hover {
        background-color: yellow;
        color: red;
    }
}