@charset "UTF-8";

:root {
    /* Color */
    --black : #000;
    --white : #fff;
    --orange: #dea61f;
    /* Gradient */
    --gradient: linear-gradient(to right, #4facfe, #00f2fe);
    /* Font */
    --font-main: 'M PLUS 1p', sans-serif;
}

/*********************************************************************
*  Base
*********************************************************************/
html {
    background: var(--white);
    color: var(--black);
    font-family: var(--font-main);
    font-size: 62.5%;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

img {
    display: block;
    pointer-events: none;
}

ol, ul { list-style: none }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th {
    text-align: left;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

q:before, q:after { content: "" }

::before, ::after { box-sizing: border-box }

:focus { outline: none }

::placeholder {
    color: var(--black);
    opacity: .5;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
    -webkit-text-fill-color: inherit !important;
}

input, select, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    padding: 0;
    margin: 0;
    background : none;
    border: none;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    box-sizing: border-box;
}
input { -webkit-tap-highlight-color: rgba(0, 0, 0, 0) }
input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]), textarea, select {
    width: 100%;
    height: 52px;
    padding-right: 1em;
    padding-left: 1em;
    border: 1px solid #939393;
    border-radius: 2px;
    background: #f7f7f7;
    font-size: 1.8rem;
    letter-spacing: .1em;
    box-sizing: border-box;
}
@media screen and (orientation: portrait) {
    input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]), textarea, select {
        height: 42px;
        padding-right: .5625em;
        padding-left: .5625em;
        border-radius: 5px;
        font-size: 1.6rem;
    }
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
}
input[type="submit"],
input[type="button"] {
    -webkit-box-sizing: border-box;
    -webkit-appearance: button;
    appearance: button;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration { display: none }
input[type="submit"]:focus,
input[type="button"]:focus { outline-offset: -2px }

button {
    display: block;
    width: 100%;
    cursor: pointer;
}

textarea {
    resize: vertical;
    height: 122px;
    padding-top: 12px;
    line-height: 1.5;
}
@media screen and (orientation: portrait) {
    textarea {
        padding-top: 8px;
        line-height: 1.5625;
    }
}