@charset "utf-8";

/* ********************************************
// ※ブラウザのデフォルトCSSをリセット
// ***************************************** */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif !important;
}

header,
footer,
nav,
menu,
article,
aside,
section,
details,
figcaption,
figure {
    display: block;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
}

img {
    vertical-align: bottom;
}

a img {
    border: none;
}

strong {
    font-weight: normal;
}

i {
    font-style: normal;
}


/* 設定値 */

#grid-setting {
    height: 100%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 10vh auto 8vh;
}

#container-position {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.container-title {
    margin-top: 30px;
    color: #4e4e4e;
}

label {
    font-weight: normal !important;
}

h1 {
    font-size: 30px !important;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.align-light {
    text-align: right;
}

.form-group {
    margin-bottom: 30px !important;
}

footer p {
    text-align: center;
}

input:valid {
    background: transparent;
}

input:focus {
    background: #ffffff;
}

.custom-placeholder {
    color: rgb(126, 126, 126);
}

.form-container {
    margin-bottom: 50px;
}

.button020 a {
    font-size: 14px;
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.button020 a:link,
.button020 a:visited,
.button020 a:hover,
.button020 a:active {
    text-decoration: none;
    color: black;
}

.button020 a:hover {
    cursor: pointer;
    background: #edf6ff;
}

.button020 a:hover:before {
    width: 1.5rem;
}

.button020 a:hover:after {
    opacity: 1;
    width: 8px;
    height: 8px;
}