@charset "UTF-8";
/* reset */
/*========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

*:focus { outline: none; }

html { height: 100%; font-size: 62.5%; }

body { font-family: "M PLUS 1p", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; font-size: 1.4rem; color: #333; letter-spacing: .2px; line-height: 1.2; height: 100%; }

/* aタグ--------- */
a { color: #333; text-decoration: none; }

a:hover { transition: .3s; opacity: .7; }

/* button-------- */
button { display: block; background: transparent; border: none; box-shadow: none; }

button:hover { cursor: pointer; transition: .3s}

.button { color: white; padding: 1rem 5rem; border-radius: 4px; }

.button.pnk { background: #48a232; border: 1px solid #48a232; }

.button.pnk:hover { background: transparent; color: #48a232; }

.button.blue { background: #6abede; border: 1px solid #6abede; }

.button.blue:hover { background: transparent; color: #6abede; }

.button.grn { background: #a1ce62; border: 1px solid #a1ce62; }

.button.grn:hover { background: transparent; color: #a1ce62; }

.button.grn_bd {border: 1px solid #a1ce62; color: #a1ce62; pointer-events: none}

.bg-yel{background: #FFF450;}

/* formタグ--------- */
input, select, textarea { appearance: none; -webkit-appearance: none; box-shadow: none; display: block; border: 1px solid #ccc; padding: 1rem; font-family: "M PLUS 1p", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; font-size: 16px; transform-origin: left center; transform: scale(0.8); width: 125%; }

.select { position: relative; }

.select select { background: white; border-radius: 4px; padding: 8px 25px 8px 10px; }

.select::after { content: ""; display: block; position: absolute; top: 50%; right: 20px; pointer-events: none; transform: rotate(45deg) translateY(-100%); width: .5em; height: .5em; border: 3px solid #48a232; border-radius: 2px; border-top: 0; border-left: 0; z-index: 2; }

textarea { resize: none; }

/* wrapper main section */
/*========================== */
#wrapper { min-height: 100%; display: flex; flex-direction: column; position: relative; overflow-x: hidden; }

main { display: block; }

.bg-pnk { background: #3fb649; }

/* flex-box */
/*========================== */
.flex-box { display: flex; justify-content: space-between; align-items: center; }

.flex-around { display: flex; justify-content: space-around; align-items: center; }

/* header */
/*========================== */
header { height: 47px; padding: 0 2%; background: white; border-bottom: 1px solid #f2f2f2; position: fixed; top: 0; left: 0; right: 0; z-index: 5; }

header .user { font-size: 1.1rem; text-align: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

header .user p:first-child { margin-bottom: 3px; font-weight: bold; }

header .user p:last-child { color: #888; font-size: 1rem; }

header .sideNav_btn { margin-left: 2rem; position: relative; width: 2rem; height: 1rem; }

header .sideNav_btn span { display: block; width: 100%; height: 1px; background: #333; position: absolute; }

header .sideNav_btn span:first-child { top: 0; }

header .sideNav_btn span:last-child { bottom: 0; }

.page-title { margin-top: 47px; text-align: center; padding: 1rem 0; color: white; background: #48a232; }

.current-time { text-align: center; padding: 2rem 0; color: #fff; }

/* sideNav */
/*========================== */
.sideNav { visibility: hidden; opacity: 0; transition: .3s; width: 300px; max-width: 70%; height: 100vh; position: fixed; top: 0; right: 0; transform: translateX(300px); background: white; z-index: 7; }

.sideNav nav { padding: 5rem 2rem 2rem; }

.sideNav nav a { display: block; margin-bottom: 2rem; }

.close_bg { display: none; opacity: 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); z-index: 6; }

.open { overflow: hidden; }

.open .sideNav { visibility: visible; opacity: 1; transform: translateX(0); }

.open .close_bg { display: block; opacity: 1; }

/* footer */
/*========================== */
footer { margin-top: auto; }
