@charset "UTF-8";

body {

    font-family: 'Zen Kaku Gothic New',
        sans-serif,
        "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo;

    background-color: #fee9e3;
    color: #333;
    transition: 1s;

    line-height: 1.5;
}

header h1 {
    font-size: 20px;
    width: 280px;
    padding-left: 20px;
}

#fixed {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: first baseline;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px 0px 15px;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 999;
}

#fixed img {
    width: 32px;
}

#pcglobal-nav {
    display: none;
}

/* ハンバーガー↓ */
.menu-trigger {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 2;
    outline: none;
}

.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    width: 25px;
    /* 線の幅 */
    height: 3px;
    /* 線の太さ */
    border-radius: 5px;
    /* 線淵丸める */
    background-color: #444;
    /* 線色 */
    transform: translate(-50%, -50%);
}

.menu-trigger span:nth-of-type(1) {
    top: 14px;
}

.menu-trigger span:nth-of-type(2) {
    top: 25px;
}

.menu-trigger span:nth-of-type(3) {
    top: 36px;
}

.menu-trigger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

#global-nav {
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 95);
    transition: all 0.6s;
}

#global-nav.panelactive {
    top: 0;
    z-index: 1;
}

#global-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#global-nav a {
    background: linear-gradient(transparent 70%, #F9A188 70%);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1.2em;
}

header li {
    padding: 20px 40px;
}


/* ハンバーガーここまで↑ */

/* テーブルここから */

#formWrap {
    width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 120%;
    font-size: 90%;
}

table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.formTable td {
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 30px;
    text-align: left;

    /* padding: 10px; */

}

table.formTable th {
    width: 30%;
    font-weight: 500;
    text-align: left;
}

#formWrap {
    width: 95%;
    margin: 0 auto;
}

table.formTable th,
table.formTable td {
    width: auto;
    display: block;
}

table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
    border: none;
}

form input[type="text"],
form textarea {
    width: 100%;
    padding: 10px;
    font-size: 110%;
    display: block;
}

/* form input[type="submit"],
    form input[type="reset"],
    form input[type="button"] {
        display: block;
        width: 100%;
        height: 40px;
    } */

form input[type="submit"],
form input[type="button"] {
    display: block;
    width: 70%;
    padding: 25px 0px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    background-color: #F9A188;
    border: #333 2px solid;
    color: #333;
    margin: 10px auto;
    border-radius: 50px;
}


form input[type="reset"],
form input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
}


/* テーブルここまで */

#formWrap {
    text-align: center;
    width: 85%;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 150px 0px 30px;
}

#message {
    padding-bottom: 50px;
    text-align: start;
    line-height: 1.5;

}

td {
    color: #888;
}

span {
    color: red;
    font-size: 15px;
}

footer {
    text-align: center;
}

footer h1 {
    padding: 50px 0px;
    font-size: 20px;
}

small {
    font-size: 13px;
}


/* PC  tbも作るなら６００～900で！*/
@media screen and (min-width:901px) {
    #formWrap {
        width: 65%;
    }

    form input[type="submit"] {
        width: 30%;
    }

    header h1 {
        font-size: 28px;
        padding-left: 0px;
    }

    #fixed {
        padding: 30px 0px 15px 135px;
        justify-content: start;
    }

    #fixed img {
        width: 40px;
    }

    .menu-trigger {
        display: none;
    }

    #pcglobal-nav {
        display: block;
        margin-left: 10%;
    }

    #pcglobal-nav li {
        padding: 0.3em 20px;
        font-size: 20px;
    }

    #pcglobal-nav ul {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }

}