@charset "UTF-8";

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 10px; }
body { color: #111; font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; font-size: 1.5rem; line-height: 1.6; -webkit-text-size-adjust: 100%; }
img { border: 0; vertical-align: top; transition: all .3s ease; -ms-interpolation-mode: bicubic; }
button { background: transparent; border: none; appearance: none; cursor: pointer; outline: none; }
a { transition: all .3s ease; }
a:link { color: #; text-decoration: none; }
a:visited { color: #; text-decoration: none; }
a:hover { color: #; text-decoration: underline; }
a:hover img { opacity: 0.8; }

/* --------------------------------------------------
  汎用クラス
-------------------------------------------------- */

.d-block { display: block; }
.d-flex { display: flex; }
.d-none { display: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.clearfix::after { content: ''; display: block; clear: both; }

/* --------------------------------------------------
  グローバルヘッダ
-------------------------------------------------- */

#globalHeader { background: var(--main-color); color: #fff; }
/*#globalHeader { background: #bc2739; color: #fff; }*/
#globalHeader .inner { margin: 0 auto; padding: 0 0 0 20px; max-width: 1500px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
#globalHeader h1 { font-size: 1.8rem; }

#globalHeader #menu { position: relative; }
#globalHeader #menu a:hover { text-decoration: none; }
#globalHeader #menu .user { padding: 0 50px; height: 60px; display: flex; align-items: center; gap: 10px; }
#globalHeader #menu .user::after { content: ''; width: 12px; height: calc(tan(60deg) * 4px); background: #fff; clip-path: polygon(0 0, 100% 0, 50% 100%); display: block; }
#globalHeader #menu ul { width: 100%; height: 0; list-style: none; position: absolute; right: 0; top: 100%; overflow: hidden; visibility: hidden; opacity: 0; transition: all .3s; }
#globalHeader #menu li { margin-top: 1px; }
#globalHeader #menu li a { padding: 10px; background: var(--main-color); text-align: center; display: block; }
#globalHeader #menu li a:hover { opacity: .8; }
body.on #globalHeader #menu ul { height: auto; overflow: auto; visibility: visible; opacity: 1; }


@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
}

/* --------------------------------------------------
  グローバルフッタ
-------------------------------------------------- */

#globalFooter { border-top: solid 1px #ccc; }
#globalFooter .inner { margin: 0 auto; padding: 10px 20px; max-width: 1500px; font-size: 1.4rem; text-align: center; }
#globalHeader a { color: #fff; }

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
}

/* --------------------------------------------------
  パンくず
-------------------------------------------------- */

#path { background: #f4f4f4; }
#path .inner { margin: 0 auto; padding: 10px 20px; max-width: 1500px; font-size: 1.4rem; }
#path span { margin: 0 10px; }
#path strong { font-weight: 400; }


/* --------------------------------------------------
  メイン
-------------------------------------------------- */

main { margin: 0 auto; padding: 20px; max-width: 1500px; display: block; }

main h2 { margin-bottom: 20px; font-size: 2rem; }

main nav { margin-bottom: 20px; }
main nav ul { list-style: none; display: flex; gap: 10px; }
main nav li {}
main nav a { padding: 5px 10px; min-width: 150px; border: solid 1px #236af6; color: #236af6; display: flex; align-items: center; justify-content: center; transition: all .3s; }
main nav a:hover, main nav .active { background: #06f; color: #fff; text-decoration: none; }
main nav input[type="text"] { padding: 5px 10px; border: solid 1px #236af6; font-size: 100%; height: 38px; }
main nav button#nav_button { padding: 5px 10px; min-width: 150px; height: 38px; background: #236af6; color: #fff; border: solid 1px #236af6; font-size: 100%; cursor: pointer; }
main nav button#nav_button:hover { background: #fff; color: #236af6; }

main div#bank_nav { margin-bottom: 20px; }
main div#bank_nav ul { list-style: none; display: flex; gap: 10px; }
main div#bank_nav li {}
main div#bank_nav p { padding: 5px 10px; min-width: 80px; display: flex; align-items: center; justify-content: center; transition: all .3s; }
main div#bank_nav a { padding: 5px 10px; min-width: 80px; color: #236af6; display: flex; align-items: center; justify-content: center; transition: all .3s; }
main div#bank_nav a:hover, main nav .active { background: #06f; color: #fff; text-decoration: none; }

main table { width: 100%; border-collapse: collapse; }
main th, main td { padding: 10px 15px; border: solid 1px #ccc; }
main th { background: #f4f4f4; }

main input[type="text"], main input[type="email"], main input[type="password"], main textarea { padding: 10px; width: 100%; border: solid 1px #ccc; font-size: 100%; }
main textarea { display: block; }
main select { padding: 5px 10px; font-size: 100%; }

main #button { margin: 20px 0; text-align: center; }

main button[type="submit"] { padding: 10px; min-width: 300px; background: #236af6; border: solid 1px #236af6; color: #fff; font-size: 100%; transition: all .3s; }
main button[type="submit"]:hover { background: #fff; color: #236af6; }

main button[type="button"] { padding: 10px; min-width: 300px; background: #236af6; border: solid 1px #236af6; color: #fff; font-size: 100%; transition: all .3s; }
main button[type="button"]:hover { background: #fff; color: #236af6; }

button#remove_button { background: #ff0000; color: #fff; border: solid 1px #fff; }
button#nav_button { margin-left: 5px; min-width: 100px; }

main form .d-flex { display: flex; align-items: start; justify-content: space-between; }
main form .d-flex table { width: 49%; }

label.error {
  display: block;
  color: var(--color-red) !important;
  display: block;
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 18px;
  font-size: 13px !important;
  font-size: 1.3rem !important;
  position: relative;
  text-align: left;
  background: rgba(252, 66, 74, 0.1);
  border-radius: 6px;
  padding: 12px 16px;
}


@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
}




/* --------------------------------------------------
  
-------------------------------------------------- */


@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
}
