@charset "UTF-8";
:root {
  --content_max_width:1200px;
  --content_width:890px;
  --content_header_m_t:85px;
  --content_m_b:150px;
  --main_color:#428fd3;
  --main_color_font:#fff;
  --sub_color:#d34c42;
  --sub_color_font:#fff;
}

/*
input, select {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
select{
    position: relative;

}*/
select {
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  max-width: 100%;
  width: auto;
}

html {
  overflow-x: hidden;
  overflow-wrap: break-word;
  background: #eee;
  font-family: "Tahoma";
  overflow: auto;
}

p {
  /*white-space: pre-wrap;*/
  overflow-wrap: break-word;
  line-height: 1.6em;
}

h1, h2, h3, h4 {
  font-family: "Tahoma";
}

img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

header {
  position: fixed;
  z-index: 10;
  width: 100%;
  /*padding:30px 0;*/
  box-sizing: border-box;
  color: #fff;
  transition: background 0.3s, color 0.3s, padding 0.3s;
  background: hsla(0deg, 0%, 100%, 0.8);
  background: #fff;
}

body {
  position: relative;
  /*font-family: 'Noto Sans JP', sans-serif;*/
  font-family: "Tahoma";
  letter-spacing: 2px;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  color: #666;
}

footer {
  padding: 10px 0;
  background: #ddd;
  color: #666;
  text-align: center;
}

main {
  width: 1200px;
  min-height: calc(100vh - 131px);
  margin: var(--content_header_m_t) auto 10px;
}

/*header*/
.header_nav_bg {
  background: hsla(0deg, 0%, 100%, 0.95);
  color: #666;
  box-shadow: 0 0 10px 0 hsla(0deg, 0%, 0%, 0.15);
}
.header_nav_bg .h1_outer {
  padding: 10px 0 10px 10px !important;
}
.header_nav_bg .header_nav .gNav-menu li a {
  padding: 15px 10px;
}

.header_inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.header_inner .h1_outer {
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--main_color);
  padding: 30px 0 30px 10px;
  transition: background 0.3s, color 0.3s, padding 0.3s;
}
.header_inner .h1_outer h1 a {
  font-size: 20px;
  display: inline-block;
  font-weight: bold;
  color: var(--main_color_font);
}
.header_inner .h1_outer h1 a img {
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 25px;
}
.header_inner .header_nav ul {
  display: flex;
  width: 800px;
  height: 100%;
}
.header_inner .header_nav ul li {
  width: 100%;
  border-left: 1px solid #ddd;
}
.header_inner .header_nav ul li:first-child {
  border-left: none;
}
.header_inner .header_nav ul li:last-child {
  border-right: 1px solid #ddd;
}
.header_inner .header_nav ul li a {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #486177;
  text-align: center;
  padding: 30px 10px;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.2s;
}
.header_inner .header_nav ul li a:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main_color);
  transition: all 0.2s;
}
.header_inner .header_nav ul li a:hover {
  color: #fff;
}
.header_inner .header_nav ul li a:hover:after {
  bottom: 0;
}

/*ハンバーガーメニュー*/
#hamburger {
  display: flex;
  align-items: center;
}

.btn-gNav {
  display: none;
}

#hamburger .btn-gNav {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  width: 29px;
  height: 24px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
}

#hamburger .btn-gNav:before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: -6px;
  width: 40px;
  height: 40px;
}

#hamburger .btn-gNav span {
  z-index: 20;
  position: absolute;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 10px;
  transition: all 400ms;
}

#hamburger .btn-gNav span:nth-child(1) {
  top: 0;
}

#hamburger .btn-gNav span:nth-child(2) {
  top: 10px;
}

#hamburger .btn-gNav span:nth-child(3) {
  top: 20px;
}

#hamburger .btn-gNav.open span:nth-child(1) {
  /*background: #fff;*/
  top: 10px;
  transform: rotate(-45deg);
}

#hamburger .btn-gNav.open span:nth-child(2), #hamburger .btn-gNav.open span:nth-child(3) {
  top: 10px;
  /*background: #fff;*/
  transform: rotate(45deg);
}

#gNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  background: #444;
  font-size: 16px;
  box-sizing: border-box;
  z-index: 2;
  padding-top: 50px;
  transition: 0.3s;
}

#gNav.open {
  right: 0px;
}

#gNav .gNav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 100px;
}

#gNav .gNav-menu li {
  display: block;
  width: 100%;
  border-left: none;
  border-bottom: 1px solid #ccc;
}

#gNav .gNav-menu li:last-child {
  border-bottom: none;
}

#gNav .gNav-menu li a {
  color: #ddd;
  text-align: left;
  text-decoration: none;
  width: 100%;
  background: #444;
  display: block;
  padding: 20px 30px;
  box-sizing: border-box;
}

/*header end*/
/*汎用*/
.link_btn {
  display: block;
  width: 200px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  background: var(--main_color);
  border: 3px solid var(--main_color) !important;
  border-radius: 5px;
  color: var(--main_color_font);
  margin: 0 auto;
}
.link_btn:hover {
  color: var(--main_color);
  background: #fff;
}

.small_link_btn {
  display: block;
  width: 150px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  background: var(--main_color);
  border: 3px solid var(--main_color) !important;
  border-radius: 5px;
  font-size: 16px;
  color: var(--main_color_font);
  margin: 0 auto;
}
.small_link_btn:hover {
  color: var(--main_color);
  background: #fff;
}

.fit_link_btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  background: var(--main_color);
  border: 3px solid var(--main_color) !important;
  border-radius: 5px;
  font-size: 16px;
  color: var(--main_color_font);
  margin: 0 auto;
}
.fit_link_btn:hover {
  color: var(--main_color);
  background: #fff;
}

.delet_btn_area {
  text-align: right;
}
.delet_btn_area a {
  display: inline-block;
  position: relative;
  width: auto;
  padding: 10px 10px 10px 45px;
  color: #fff;
  line-height: 1em;
  border-radius: 10px;
  background: #990000;
}
.delet_btn_area a:before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  content: "!";
  color: #990000;
  letter-spacing: 0;
  background: #fff;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-radius: 20px;
}

.back_btn {
  display: inline-block;
  position: relative;
  width: auto;
  padding: 10px 10px 10px 30px;
  border: var(--sub_color);
  color: var(--sub_color);
  line-height: 1em;
  border: 2px solid var(--sub_color);
  border-radius: 10px;
  margin-bottom: 20px;
}
.back_btn::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent var(--sub_color) transparent transparent;
}
.back_btn:hover {
  background: var(--sub_color);
  color: var(--sub_color_font);
}
.back_btn:hover::before {
  border-color: transparent var(--sub_color_font) transparent transparent;
}

.info_list {
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 20px;
}
.info_list h3 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
}
.info_list ul {
  margin-bottom: 30px;
}
.info_list ul li {
  border-bottom: 1px solid #ddd;
}
.info_list ul li a {
  display: block;
  color: #666;
  padding: 10px;
}
.info_list ul li a:hover {
  background: #eee;
}
.info_list ul li a time {
  text-align: right;
  font-size: 13px;
  color: #bbb;
  display: block;
}

.general {
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
}
.general .general_title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.general .general_title h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.general .general_title time {
  font-size: 14px;
  color: #ccc;
}
.general .general_inner {
  padding: 0 20px;
  margin-bottom: 30px;
}
.general h3 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
}
.general p {
  margin-bottom: 20px;
}
.general ul {
  margin-bottom: 20px;
}
.general ul li {
  position: relative;
  padding: 5px 0 5px 20px;
  line-height: 1.4em;
}
.general ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--sub_color);
}
.general dl {
  margin-top: 40px;
  margin-bottom: 20px;
}
.general dl:first-child {
  margin-top: 0;
}
.general dl dt {
  font-size: 16px;
  font-weight: bold;
  font-family: "Tahoma";
  margin-bottom: 20px;
}
.general dl dd p {
  margin-bottom: 20px !important;
}
.general strong {
  font-size: 20px;
  color: red;
  font-weight: bold;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.pagination li {
  margin-right: 10px;
}
.pagination li:last-of-type {
  margin-right: 0;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background: #fff;
}
.pagination .active a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background: #fff;
  background: var(--main_color);
  color: var(--main_color_font);
  border: none;
}

.message {
  position: relative;
  width: 100%;
  padding: 20px 20px 20px 100px;
  border: 2px solid #42bfd3;
  box-sizing: border-box;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3em;
  background: #fff;
}
.message::before {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  content: "!";
  line-height: 1em;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #42bfd3;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

.error {
  border: 2px solid #990000;
  background: #990000;
  color: #fff;
  margin-bottom: 0;
  border-bottom: 1px solid #fff;
}
.error::before {
  background: #fff;
  color: #990000;
  border-radius: 0;
}
.error:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

/*汎用 end*/
#login {
  display: flex;
  align-items: center;
  width: auto;
  background: #fff;
}
#login .logo {
  padding-top: 20px;
}
#login .logo figure {
  display: block;
  position: relative;
  max-width: 300px;
  margin: 0 auto 30px;
}
#login .logo figure:before {
  content: "";
  display: block;
  padding-top: 100%;
  background: #ddd;
}
#login .logo figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#login .alert {
  width: 90%;
  display: block;
  padding: 20px 10px;
  background: red;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto 20px;
}
#login .form {
  width: 500px;
  margin: 0 auto;
}
#login .form input[type=text], #login .form input[type=password] {
  display: block;
  width: 80%;
  box-sizing: border-box;
  padding: 10px;
  margin: 0 auto 20px;
}
#login .form input[type=button] {
  border: none;
}
#login .form input[type=button]:hover {
  border: 1px solid var(--main_color);
}

#top {
  display: flex;
}
#top article {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin-right: 10px;
  background: #fff;
}
#top article h2 {
  display: inline-block;
  font-size: 18px;
  padding: 10px 20px;
  background: #666;
  color: #fff;
  border-left: 1px solid #ddd;
}
#top article section {
  padding: 20px;
}
#top article section h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
#top article section dl {
  display: flex;
}
#top article section dl:last-of-type {
  margin-bottom: 50px;
}
#top article section dl dt {
  width: 30%;
  background: var(--main_color);
  color: var(--main_color_font);
  padding: 20px;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
#top article section dl dd {
  width: 70%;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}
#top article section .info_text dl {
  width: 100%;
  max-width: 600px;
  display: flex;
  margin: 0 auto;
}
#top article section .info_text dl dt {
  display: block;
  width: 200px;
  background: #666;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border: 1px solid #666;
}
#top article section .info_text dl dd {
  display: block;
  padding: 10px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
}
#top article section .info_text dl dd:last-of-type {
  border-bottom: 1px solid #666;
}
#top .side {
  width: 30%;
}

#list article section {
  margin-bottom: 30px;
}
#list article section:last-of-type {
  margin-bottom: 0;
}
#list article section h2 {
  display: inline-block;
  font-size: 18px;
  padding: 10px 20px;
  background: #666;
  color: #fff;
  border-left: 1px solid #ddd;
}
#list article .search_outer .search_head {
  display: flex;
  flex-wrap: wrap;
}
#list article .search_outer .dropdown {
  display: none;
}
#list article .search_outer .search_label {
  position: relative;
  display: block;
  width: 140px;
  height: 38px;
  border: none;
  margin: 0;
  z-index: 2;
}
#list article .search_outer .search_label:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "クリックで表示▼";
  color: var(--main_color_font);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 38px;
  background: var(--main_color);
  font-size: 14px;
  z-index: 1;
}
#list article .search_outer #menu {
  display: none;
}
#list article .search_outer #menu:checked + .dropdown {
  display: block !important;
}
#list article .search_outer .search_inner {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
}
#list article .search_outer .search_inner div {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#list article .search_outer .search_inner div p {
  display: block;
  width: 100%;
}
#list article .search_outer .search_inner div span {
  margin-right: 20px;
}
#list article .search_outer .search_inner div input[type=text], #list article .search_outer .search_inner div input[type=search] {
  -webkit-appearance: none;
}
#list article .search_outer .search_inner div input[type=text], #list article .search_outer .search_inner div input[type=search], #list article .search_outer .search_inner div select {
  padding: 10px;
}
#list article .search_outer .search_inner div input[type=text] {
  width: 600px;
}
#list article .list_outer {
  /*セルタイトルと新規登録*/
  /*セルサイズ管理用*/
}
#list article .list_outer .title_new-edit {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
#list article .list_outer .title_new-edit a {
  position: relative;
  box-sizing: border-box;
  padding: 20px 20px 20px 50px;
  background: var(--main_color);
  color: var(--main_color_font);
  font-weight: bold;
  margin-right: 1px;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #fff;
}
#list article .list_outer .title_new-edit a::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "+";
  background: var(--main_color_font);
  color: var(--main_color);
  font-weight: bold;
  line-height: 1em;
  letter-spacing: 0;
}
#list article .list_outer .size_cell_50 {
  display: flex;
  align-items: center;
  width: 50px;
}
#list article .list_outer .size_cell_100 {
  display: flex;
  align-items: center;
  width: 100px;
}
#list article .list_outer .size_cell_150 {
  display: flex;
  align-items: center;
  width: 150px;
}
#list article .list_outer .size_cell_200 {
  display: flex;
  align-items: center;
  width: 200px;
}
#list article .list_outer .size_cell_250 {
  display: flex;
  align-items: center;
  width: 250px;
}
#list article .list_outer .size_cell_300 {
  display: flex;
  align-items: center;
  width: 300px;
}
#list article .list_outer .size_cell_350 {
  display: flex;
  align-items: center;
  width: 350px;
}
#list article .list_outer .size_cell_400 {
  display: flex;
  align-items: center;
  width: 400px;
}
#list article .list_outer .size_cell_450 {
  display: flex;
  align-items: center;
  width: 450px;
}
#list article .list_outer .size_cell_500 {
  display: flex;
  align-items: center;
  width: 500px;
}
#list article .list_outer .size_cell_550 {
  display: flex;
  align-items: center;
  width: 550px;
}
#list article .list_outer .size_cell_600 {
  display: flex;
  align-items: center;
  width: 600px;
}
#list article .list_outer .size_cell_650 {
  display: flex;
  align-items: center;
  width: 650px;
}
#list article .list_outer .size_cell_700 {
  display: flex;
  align-items: center;
  width: 700px;
}
#list article .list_outer .size_cell_750 {
  display: flex;
  align-items: center;
  width: 750px;
}
#list article .list_outer .size_cell_800 {
  display: flex;
  align-items: center;
  width: 800px;
}
#list article .list_outer .size_cell_850 {
  display: flex;
  align-items: center;
  width: 850px;
}
#list article .list_outer .size_cell_900 {
  display: flex;
  align-items: center;
  width: 900px;
}
#list article .list_outer .size_cell_950 {
  display: flex;
  align-items: center;
  width: 950px;
}
#list article .list_outer .size_cell_1000 {
  display: flex;
  align-items: center;
  width: 1000px;
}
#list article .list_outer .user_id {
  display: flex;
  align-items: center;
  width: 300px;
}
#list article .list_outer .mail_address {
  display: flex;
  align-items: center;
  width: 600px;
}
#list article .list_outer .status {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  text-align: center;
}
#list article .list_outer .edit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}
#list article .list_outer .list_head {
  display: flex;
  justify-content: center;
}
#list article .list_outer .list_head div {
  border-left: 1px solid #ddd;
  background: var(--main_color);
  color: var(--main_color_font);
  text-align: center;
  padding: 20px 10px;
  box-sizing: border-box;
}
#list article .list_outer .list_head div:last-of-type {
  border-right: 1px solid #ddd;
}
#list article .list_outer .list {
  margin-bottom: 30px;
}
#list article .list_outer .list .new_edit div {
  background: #feffde !important;
}
#list article .list_outer .list li {
  display: flex;
  justify-content: center;
}
#list article .list_outer .list li:first-child div {
  border-top: none;
}
#list article .list_outer .list li:nth-child(2n) {
  background: #f7f7f7;
}
#list article .list_outer .list li .inner_form {
  display: flex;
}
#list article .list_outer .list li div {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px 10px;
  box-sizing: border-box;
  background: #fff;
}
#list article .list_outer .list li div:last-of-type {
  border-right: 1px solid #ddd;
}
#list article .list_outer .list li div a {
  box-sizing: border-box;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1em;
  color: var(--main_color_font);
  background: var(--main_color);
  border-radius: 5px;
}

#edit article {
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
}
#edit article section h2 {
  display: inline-block;
  font-size: 18px;
  padding: 10px 20px;
  background: #666;
  color: #fff;
  border-left: 1px solid #ddd;
  margin-bottom: 20px;
}
#edit article section .form_cell {
  display: flex;
  width: 800px;
  margin: 0 auto;
}
#edit article section .form_cell dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  background: var(--main_color);
  color: var(--main_color_font);
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
}
#edit article section .form_cell dd {
  padding: 10px;
  width: calc(100% - 200px);
  border: 1px solid #ddd;
}
#edit article section .form_cell dd input, #edit article section .form_cell dd textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
#edit article section .form_cell dd select {
  padding: 10px;
}
#edit article section .form_cell dd span {
  display: flex;
  padding: 10px 0;
}
#edit article section .form_cell dd span input {
  width: auto;
  margin-right: 10px;
}
#edit article section .submit_area {
  margin-top: 30px;
}
#edit article section .submit_area input {
  border: none;
}

#content_list article {
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
}
#content_list article section h2 {
  display: inline-block;
  font-size: 18px;
  padding: 10px 20px;
  background: #666;
  color: #fff;
  border-left: 1px solid #ddd;
  margin-bottom: 20px;
}
#content_list article section a {
  width: 500px;
  margin-bottom: 30px;
}/*# sourceMappingURL=style.css.map */
