@charset "UTF-8";
/* CSS Document */

/* 背景全体の設定 */

* {
	font-size: 14px;
}

body {
    margin: 0;
    padding: 0;
	font-family: "Noto Sans JP", sans-serif;
    background-color: #E7E7E7;
    justify-content: center;
    align-items: center;
    background-color: #EFF9FF;
    background-image: url(img/back-green.png);
    height: 97vh;
    background-repeat: repeat-x;
    background-position: 0% 100%;
    background-size: 100% auto;
}

.header {
    box-sizing: border-box;
    width: 100%;
    background-color: #00B585;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 3em;
  margin: 0 auto;
  color: #fff;
  letter-spacing: 1pt;
}

.header-inner a {
    color: #fff;
    font-size: 1.1em;  
}

.header-nav {
  display: flex;
  align-items: center;
}

.logo {
  width: 70px;
}
.logo a {
    text-decoration: none;
    color: #FFFFFF;
}	

.header-button {
  box-sizing: border-box;
  display: inline-block;
  padding: 0.5em 1.2em;
  font-size: 12px;
  text-decoration: none;
}

.content {
    width: 80%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 50px;
}

.content p {
	font-size: 1.1em;
}

.homeBack {
	margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.copy {
    bottom: 2px;
    margin: auto;
    width: 100%;
    text-align: center;
	padding: 0;
	margin: 0;
    position: fixed;
    background-color: #B6DBA8;
}

.copy p {
	font-size: 7pt;
    color: #000;
    text-decoration: none;
	letter-spacing: 0.2em;
	line-height: 6pt;
}


.content .login-bold {
    font-weight: bold;
}

.content .login-nomal {
	font-weight:normal;
}

/* ログインフォーム全体 */
form {
    background-color: #fff;
    padding: 30px 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* 見出し */
h2 {
	font-size:18pt;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}


/*ログアウト*/
	


.login-bold,
.logout {
    display: inline-block;
    vertical-align: middle; /* 高さを揃える */
    margin-right: 10px; /* 余白を調整 */
}

.logout p {
    margin: 0;
}

.logout a {
    text-decoration: none;
	}

/* ラベルと入力欄の間隔調整 */
label {
    display: block;
    margin-bottom: 15px;
}

/* テキスト入力とパスワード入力 */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* 送信ボタン */
input[type="submit"] {
    width: 100%;
	max-width: 250px;
    padding: 10px;
	margin-top: 30px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #357ae8;
}

.nyukou {
    width: 80%;
    max-width: 800px;
	margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-indent: -1em;
    padding-left: 1em;
}

/*upload.php*/
/* ローディング表示（非表示がデフォルト） */
#loading {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
}

#loading img {
    margin-top: 20%;
    width: 80px;
    height: 80px;
}

/* もしくはCSSアニメーションだけで表現も可能 */
.spinner {
	margin-left: auto;
	margin-right: auto;
    border: 6px solid #ccc;
    border-top: 6px solid #333;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-top: 20%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
