/* ##############################
    Created on : 2024/12/10
    Author     : Myazou3
##############################  */

/* ##############################
	初期化
##############################  */
/*### Basic CSS ###*/
html { height: 100%; overflow-y: scroll; }
body { padding: 0; margin: 0; background: #587185; color: #FFF; font-family: "Lato", sans-serif; }
* { margin: 0; padding: 0; }
a { color: #FFF; text-decoration: none;}
a:hover { color: #000000; text-decoration: none; }
img { border-style: none; }
ul, ul li { list-style: none; list-style-position: inside; }
.hide { display: none; }
.over_show { display: block; }
.red { color: #f00; }
.red_b { color: #f00; font-weight: bold; }
.blue { color: #00F; }
.blue_b { color: #00F; font-weight: bold; }
.hide { display: none; }
.center { text-align: center; }
.bg_g {background-color: #94923e; background-image: linear-gradient(90deg, #94923e 0%, #7f7549 100%);}

/* ##### header #####  */
#head_title { display: flex; flex-wrap: wrap; justify-content: flex-start; border-bottom: 5px #95905d solid; padding: 5px; }
#head_title img { display: block; width: 80px; max-width: 80px; }
#head_title h1 { display: block; width: auto; font-size: clamp(2.5rem, 2.045rem + 2.27vw, 3.75rem); line-height: 80px; padding-left: 10px; }

/* ##### main #####  */
main { display: block; width: 100%; padding: 0 5px; box-sizing: border-box; }



/* ##### warning #####  */
#warning_area { position: fixed; width: 100%; height: 100%; left: 0; top: 0; background: rgba(0,0,0,0.8); z-index: 11; }
#warning_box { display: block; position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); color: #000; width: 90%; height: 120px; max-width: 300px; margin: 0 auto; text-align: center; font-family: 'PT Sans Narrow', sans-serif; font-size: 14px; border: 3px #ff0000 solid; border-radius: 5px; background: #FFF; box-sizing: border-box; }
#warning_icon { display: flex; width: 100%; flex-wrap: wrap; justify-content: center; padding: 5px; border-bottom: 1px #ff0000 solid; box-sizing: border-box; }
#warning_icon svg { display: block; width: 20px; height: 20px; }
#warning_title { display: block; font-size: 20px; line-height: 20px; text-align: center; margin: 0 5px; color: #F00; }

/* ##### loading #####  */
#loading-wrapper { position: fixed; width: 100%; height: 100%; left: 0; top: 0; background: rgba(0,0,0,0.8); z-index: 10; }
#loaderImage { display: block; position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); width: 200px; height: 200px; }
#loading-text { display: block; position: absolute; top: 50%; left: 50%; color: #999; width: 100px; height: 30px; margin: -7px 0 0 -45px; text-align: center; font-family: 'PT Sans Narrow', sans-serif; font-size: 17px; }
#loading-content { display: block; position: relative; left: 50%; top: 50%; width: 170px; height: 170px; margin: -85px 0 0 -85px; border: 3px solid #F00; }
#loading-content:after { content: ""; position: absolute; border: 3px solid #0F0; left: 15px; right: 15px; top: 15px; bottom: 15px; }
#loading-content:before { content: ""; position: absolute; border: 3px solid #00F; left: 5px; right: 5px; top: 5px; bottom: 5px; }
#loading-content { border: 3px solid transparent; border-top-color: #4D658D; border-bottom-color: #4D658D; border-radius: 50%; -webkit-animation: loader 2s linear infinite; -moz-animation: loader 2s linear infinite; -o-animation: loader 2s linear infinite; animation: loader 2s linear infinite; }
#loading-content:before { border: 3px solid transparent; border-top-color: #D4CC6A; border-bottom-color: #D4CC6A; border-radius: 50%; -webkit-animation: loader 3s linear infinite;   -moz-animation: loader 2s linear infinite; -o-animation: loader 2s linear infinite; animation: loader 3s linear infinite; }
#loading-content:after { border: 3px solid transparent; border-top-color: #84417C; border-bottom-color: #84417C; border-radius: 50%; -webkit-animation: loader 1.5s linear infinite; animation: loader 1.5s linear infinite;   -moz-animation: loader 2s linear infinite; -o-animation: loader 2s linear infinite; }
@-webkit-keyframes loaders { 0% {   -webkit-transform: rotate(0deg);   -ms-transform: rotate(0deg);   transform: rotate(0deg); } 100% {   -webkit-transform: rotate(360deg);   -ms-transform: rotate(360deg);   transform: rotate(360deg); } }
@keyframes loader { 0% {   -webkit-transform: rotate(0deg);   -ms-transform: rotate(0deg);   transform: rotate(0deg); } 100% {   -webkit-transform: rotate(360deg);   -ms-transform: rotate(360deg);   transform: rotate(360deg); } }
#content-wrapper { color: #FFF; position: fixed; left: 0; top: 20px; width: 100%; height: 100%; }
#header { width: 800px; margin: 0 auto; text-align: center; height: 100px; background-color: #666; }
#content { width: 800px; height: 1000px; margin: 0 auto; text-align: center; background-color: #888; }