@charset "UTF-8";
html {
  font-size: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 200;
}
*:before, *:after {
  box-sizing: border-box;
}

/*
input[type=text],
input[type=number],
input[type=password],
input[type=tel] {
	-webkit-appearance: none;
}
*/
header, footer, nav, main, article, section, figure, aside {
  display: block;
}

body {
  line-height: 1.5;
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 1.4rem;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}

::-webkit-input-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

:-moz-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

::-moz-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

:-ms-input-placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

::placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*
@media all and (-ms-high-contrast:none) {
	body {
		font-family: 'メイリオ',Meiryo,'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	}
}
*/
h1, h2, h3, h4, h5, h6, pre, code, address, caption, code, th, td, select, p, li {
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
}

em, strong {
  font-size: inherit;
}

em, strong, b {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6, p, li, dt, dd, th, td {
  line-height: 1.7;
  text-align: left;
}

/* base style
------------------------------------------------------------------------- */
li {
  list-style: none;
}

fieldset, img, hr {
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border-style: none;
}

th {
  vertical-align: top;
}
th br {
  display: block;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

td {
  vertical-align: top;
  word-break: break-all;
}

a {
  border: none;
  color: inherit;
  text-decoration: none;
}

input[type=text],
input[type=number],
input[type=password],
input[type=tel],
textarea {
  box-shadow: none;
  border: 1px solid #ccc;
  color: #dbd8c9;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
}

textarea {
  line-height: 1.7;
  resize: vertical;
}

select {
  font-size: 1.4rem;
}

label,
input[type=checkbox],
input[type=radio],
input[type=button],
input[type=submit],
button {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  cursor: pointer;
}

button {
  display: block;
  border: none;
  background: none;
  outline: none;
  color: #dbd8c9;
  font-size: 1.4rem;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* max-width:750px | ~ 750px
------------------------------------------------------------------------- */
@media screen and (max-width: 750px) {
  /* @media screen
  ------------------------------------------------------------------------- */
  html {
    font-size: vw(20);
  }

  body, h1, h2, h3, h4, h5, h6, pre, code, address, caption, code, th, td, select, p, li, em, strong {
    font-size: 1.2rem;
  }

  img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  iframe[src*=youtube] {
    max-width: 100%;
    height: 52vw;
  }
}
/* _setting CSS */
#header {
  margin: 0 0 20px;
  min-width: 1200px;
}
#header .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1000px;
  margin: 0 auto;
  padding: 10px 0 13px;
}
#header .logo h1 {
  font-size: 1.7rem;
}
#header .logo h1 img {
  margin: 0 12px 0 0;
}
#header .logo p {
  padding: 10px 0 0;
}
#header .nav {
  background: #40bb55;
}
#header .nav ul {
  display: flex;
  justify-content: center;
}
#header .nav ul li {
  margin: 0 15px;
  padding: 5px 0;
}
#header .nav ul li a {
  display: block;
  padding: 5px 20px;
  border-radius: 5px;
  transition: 0.3s;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}
#header .nav ul li a:hover {
  background: #fff;
  color: #04691c;
}
#header .nav ul .on a {
  background: #fff;
  color: #04691c;
}

._attention {
  color: #e70607;
}

html,
body,
#wrapper,
#contents {
  min-width: 1020px;
  min-height: 100%;
}

._flex {
  display: flex;
  flex-wrap: wrap;
}

._fwnw {
  flex-wrap: nowrap;
}

._jcsb {
  justify-content: space-between;
}

._jcc {
  justify-content: center;
}

._jcr {
  justify-content: flex-end;
}

._jcfe {
  justify-content: flex-end;
}

._aic {
  align-items: center;
}

._aife {
  align-items: flex-end;
}

._f18 {
  font-size: 1.8rem;
}

._f20 {
  font-size: 2rem;
}

._textc {
  text-align: center !important;
}

._textl {
  text-align: left !important;
}

._textr {
  text-align: right !important;
}

._mb1em {
  margin-bottom: 1em !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._mb60 {
  margin-bottom: 60px !important;
}

._mb100 {
  margin-bottom: 100px !important;
}

input[type=text],
input[type=number],
input[type=tel],
input[type=date],
input[type=month],
input[type=password] {
  width: 100%;
  height: 26px;
  padding: 2px 4px;
  border: 1px solid #cecece;
  border-radius: 5px;
  color: #333;
}

textarea {
	width: 100%;
	height: 26px;
	padding: 2px 4px;
	border: 1px solid #cecece;
	border-radius: 5px;
	color: #333;
}

.c_select {
  position: relative;
}
.c_select select {
  width: 100%;
  height: 36px;
  padding: 4px 30px 4px 15px;
  border: 1px solid #cecece;
  border-radius: 5px;
  -webkit-appearance: none;
  appearance: none;
}
.c_select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #40bb55 transparent transparent transparent;
  pointer-events: none;
  transition: -50%;
}

.c_date {
  position: relative;
}
.c_date .datepick_input {
  display: none;
}
.c_date .datepick {
  width: 50% !important;
  padding: 4px 30px 4px 15px;
  font-weight: bold;
}
.c_date:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  background: url("../images/icon_calendar.png") no-repeat 0/100%;
  transform: translateY(-50%);
}

._hov1 {
  transition: 0.3s;
}
._hov1:hover {
  opacity: 0.7;
}

._hov_wrap1 a, ._hov_wrap1 button {
  transition: 0.3s;
}
._hov_wrap1 a:hover, ._hov_wrap1 button:hover {
  opacity: 0.7;
}

.c_btn1 {
  display: inline-block;
  min-width: 160px;
  padding: 7px;
  border-radius: 5px;
  background: #fdb93d;
  box-shadow: 4px 4px 0 #cecece;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.c_btn1.submit {
  padding: 10px;
}
.c_btn1._red {
  background: #e93a3a;
}
.c_btn1._gray {
  background: #737373;
}
.c_btn1._green {
  background: #54a735;
}
/* .c_btn1._pink {
  background: rgb(255, 175, 175);
} */
.c_btn1._blue {
  background: #208aee;
}

.c_btn2 {
  display: inline-block;
  min-width: 50px;
  padding: 3px 10px;
  border-radius: 5px;
  background: #40bb55;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
}
.c_btn2._red {
  background: #e93a3a !important;
}
.c_btn2._blue {
  background: #208aee !important;
}

.c_btn3 {
  display: inline-block;
  min-width: 80px;
  padding: 7px;
  border-radius: 5px;
  background: #fdb93d;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.c_btn3.submit {
  padding: 10px;
}
.c_btn3._red {
  background: #e93a3a;
}

.c_hd1 {
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  border-left: 5px solid #40bb55;
  font-size: 1.6rem;
  font-weight: 700;
}

.c_hd2 {
  margin: 0 0 5px;
  font-weight: 700;
}
.c_hd2 span {
  color: #40bb55;
  margin: 0 5px 0 0;
}

#contents {
  width: 1000px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 100px;
}

.head,
.line {
  width: 1000px;
  margin: 0 auto 50px;
  padding: 0 0 15px;
  border-bottom: 2px solid #40bb55;
}
.head .search_wrap,
.line .search_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head .search_wrap .label,
.line .search_wrap .label {
  line-height: 36px;
  padding: 5px 0;
  margin: 0 25px 0 0;
}
.head .search_wrap .label b,
.line .search_wrap .label b {
  color: #40bb55;
  font-size: 1.8rem;
}
.head .search_wrap .label input[type=text], .head .search_wrap .label input[type=number], .head .search_wrap .label input[type=tel], .head .search_wrap .label input[type=date],
.line .search_wrap .label input[type=text],
.line .search_wrap .label input[type=number],
.line .search_wrap .label input[type=tel],
.line .search_wrap .label input[type=date] {
  width: 140px;
  height: 36px;
}
.head .search_wrap .label select,
.line .search_wrap .label select {
  width: auto;
}

.line {
  border: none;
}

.item_wrap {
  width: 1000px;
  margin: 0 auto 30px;
}
.item_wrap .inner {
  display: inline-block;
}

.item_list {
  display: inline-block;
  position: relative;
  border: 1px solid #cecece;
  border-radius: 10px;
}
.item_list .item_list_count {
  position: absolute;
  top: -2em;
  left: 0;
  width: 100%;
}
.item_list table tr th,
.item_list table tr td {
  padding: 10px;
  border-right: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  color: #666666;
  font-size: 1.2rem;
}
.item_list table tr th:last-child,
.item_list table tr td:last-child {
  border-right: none;
}
.item_list table tr th {
  color: #40bb55;
  font-size: 1.4rem;
  text-align: center;
}
.item_list table tr th b {
  font-size: 1.5rem;
}
.item_list table tr td a {
  margin: 0 2px;
}
.item_list table tr td input[type=text],
.item_list table tr td input[type=number],
.item_list table tr td input[type=tel],
.item_list table tr td input[type=date],
.item_list table tr td input[type=month] {
  width: 80%;
  text-align: center;
}
.item_list table tr td input.auto_sum_9999413,
.item_list table tr td input.auto_sum_9999420,
.item_list table tr td input.auto_sum_9999430,
.item_list table tr td input.auto_sum_9999431,
.item_list table tr td input.auto_sum_9999432 {
  border: none;
  pointer-events: none;
}
.item_list table tr td label {
  display: inline-flex;
  align-items: center;
}
.item_list table tr td label input {
  width: 10px;
}
.item_list table tr td select {
  height: 26px;
}
.item_list table tr td .tr_btn_wrap {
  display: block;
  position: relative;
  width: 0;
  height: 0;
  margin: 0 0 0 auto;
}
.item_list table tr td .tr_btn_wrap a {
  position: absolute;
  bottom: -5px;
  right: -90px;
  min-width: 60px;
}
.item_list table tr:last-child th,
.item_list table tr:last-child td {
  border-bottom: none;
}

#sec_login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 0 50px;
}
#sec_login .logo {
  margin: 0 0 25px;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
}
#sec_login .logo img {
  display: block;
  margin: 0 auto 5px;
}
#sec_login p {
  margin: 0 0 15px;
  font-size: 1.6rem;
}
#sec_login p input {
  width: 250px;
  height: 45px;
}
#sec_login p b {
  display: block;
  margin: 0 0 3px;
  color: #40bb55;
}
#sec_login .btn1 {
  margin: 40px 0 0;
  text-align: center;
}
#sec_login .btn1 a {
  min-width: 220px;
  padding: 15px;
  font-size: 1.6rem;
}

#sec_home {
  width: 1020px;
  margin: 85px auto;
}
#sec_home h2 {
  margin: 0 0 38px;
  color: #4fbb4e;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
#sec_home ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#sec_home ul li {
  margin: 0 10px 20px;
}
#sec_home ul li a {
  display: block;
  position: relative;
  width: 320px;
  padding: 75px 0;
  border-radius: 5px;
  background: #fdb93d;
  box-shadow: 4px 4px 0 #cecece;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
#sec_home ul li a span {
  position: relative;
  z-index: 1;
}
#sec_home ul li a img {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

#sec_master {
  padding: 100px 0;
}
#sec_master ul {
  display: flex;
  flex-wrap: wrap;
}
#sec_master ul li {
  margin: 0 12px 20px;
}
#sec_master ul li a {
  display: block;
  position: relative;
  width: 231px;
  padding: 10px 0;
  border-radius: 5px;
  background: #fdb93d;
  box-shadow: 4px 4px 0 #cecece;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
#sec_master ul li a span {
  position: relative;
  z-index: 1;
}
#sec_master ul li a img {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.c_list_nav {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 50px 0;
  padding: 15px 0;
}
.c_list_nav li {
  margin: 0 3px;
}
.c_list_nav li a,
.c_list_nav li span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  transition: 0.4s;
  color: #4e5d6b;
  text-decoration: none;
}
.c_list_nav li a:hover,
.c_list_nav li span:hover {
  opacity: 0.7;
}
.c_list_nav li span {
  background: #4e5d6b;
  color: #fff;
}
.c_list_nav .arrow a {
  display: block;
  height: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  position: relative;
  width: 25px;
  height: 0;
  padding: 25px 0 0;
}
.c_list_nav .arrow a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -4px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 1px solid #4e5d6b;
  border-right: 1px solid #4e5d6b;
}
.c_list_nav .arrow.prev a:before {
  transform: rotate(225deg);
}

#wrapper.admin #header .nav {
  background: #4e5d6b;
}
#wrapper.admin #header .nav ul li {
  margin: 0 10px;
}
#wrapper.admin #header .nav ul li a {
  padding: 5px 15px;
}
#wrapper.admin #header .nav ul a:hover,
#wrapper.admin #header .nav ul .on a {
  color: #4e5d6b !important;
}
#wrapper.admin .c_select:after {
  border-color: #4e5d6b transparent transparent transparent;
}
#wrapper.admin .c_btn2 {
  background: #4e5d6b;
}
#wrapper.admin .c_btn3 {
  background: #4e5d6b;
}
#wrapper.admin .c_hd1 {
  border-left: 5px solid #4e5d6b;
}
#wrapper.admin .c_hd2 span {
  color: #4e5d6b;
}
#wrapper.admin .head {
  border-bottom: 2px solid #4e5d6b;
}
#wrapper.admin .head .search_wrap .label b {
  color: #4e5d6b;
}
#wrapper.admin .item_list table tr th {
  color: #4e5d6b;
}

/*# sourceMappingURL=style.css.map */
