@charset "utf-8";
/* --------------------------------------------------
	html
-------------------------------------------------- */
html, body {
  height: 100%;
  background-color: #FFFFFF;
  color: #222;
  font-size: 1em;
  line-height: 160%;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
@media screen and (max-width : 768px) {
  html, body {
    font-size: 1em;
  }
}
/* --------------------------------------------------
	img切り替え
-------------------------------------------------- */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* --------------------------------------------------
	float
-------------------------------------------------- */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.img-right {
  float: right;
}
.img-left {
  float: left;
  margin: 20px;
}
/* --------------------------------------------------
	margin
-------------------------------------------------- */
.ma_top_10 {
  margin-top: 10px;
}
.ma_top_20 {
  margin-top: 20px;
}
.ma_top_30 {
  margin-top: 30px;
}
.ma_top_40 {
  margin-top: 40px;
}
.ma_top_50 {
  margin-top: 50px;
}
.ma_bottom_10 {
  margin-bottom: 10px;
}
.ma_bottom_20 {
  margin-bottom: 20px;
}
.ma_bottom_30 {
  margin-bottom: 30px;
}
.ma_bottom_40 {
  margin-bottom: 40px;
}
.ma_bottom_50 {
  margin-bottom: 50px;
}
.ma_left_10 {
  margin-left: 10px;
}
.ma_left_20 {
  margin-left: 20px;
}
.ma_left_30 {
  margin-left: 30px;
}
.ma_left_40 {
  margin-left: 40px;
}
.ma_left_50 {
  margin-left: 50px;
}
/* --------------------------------------------------
	wrapper
-------------------------------------------------- */
.wrapper {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 120px;
}
/* --------------------------------------------------
	font-size
-------------------------------------------------- */
.fs-small {
  font-size: 0.8em;
  padding-left: 10px;
}
/* --------------------------------------------------
	隠す
-------------------------------------------------- */
.top_header {
  width: 100%;
  height: 120px;
  position: fixed;
  left: 0;
  top: 0;
  transition: 1s;
}
.top_header.hide {
  transform: translateY(-130px);
}
.header_inner{
	width: 1000px;
	margin:0 auto;
}
/* --------------------------------------------------
	table
-------------------------------------------------- */
.table-wrap table {
  width: 100%;
  border: 1px solid #eee;
}
.table-wrap th {
  text-align: left;
  background-color: #FBF2E1;
  padding: 20px;
}
.table-wrap tr {
  border: 1px solid #eee;
}
.table-wrap td {
  border: 1px solid #eee;
  padding: 20px;
}
.table-wrap {
  overflow-x: scroll;
}
.table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
/* --------------------------------------------------
	ttl
-------------------------------------------------- */
.ttl {
  font-weight: bold;
  padding: 1em 2em;
  background-color: #95c035;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.ttl::after {
  content: '';
  background-color: #fff;
  opacity: 0.3;
  transform: rotate(-65deg);
  position: absolute;
  bottom: -250px;
  right: -250px;
  width: 300px;
  height: 500px;
}
@media screen and (max-width : 768px) {
  .ttl {
    font-size: 18px;
    font-weight: bold;
  }
}
/* --------------------------------------------------
	hr
-------------------------------------------------- */
hr {
  height: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  border-top: 1px dashed #ccc;
}
/* --------------------------------------------------
	header
-------------------------------------------------- */
header {
  position: relative;
  width: 100%;
  background: #fffeff;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0px 5px 5px #999;
  z-index: 1;
}
header .logo_box {
  padding-left: 20px;
  width: 60%;
}
@media screen and (max-width : 768px) {
  header .logo_box {
    padding-left: 0px;
    width: 100%;
  }
}
.logo img {
  width: 200px;
}
.txt {
  font-size: 18px;
  color: #222;
  padding-left: 20px;
}
header .button img {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 300px;
  transform: translateY(-50%);
}
.button_sp img {
  width: 100%;
}
/* --------------------------------------------------
	box
-------------------------------------------------- */
.box {
  width: 100%;
}
@media screen and (min-width : 768px) {
  .box {
    width: 100%;
    margin: 0 auto;
  }
}
.box2 {
  margin: 0px auto;
  width: 90%;
}
@media screen and (min-width : 1000px) {
  .box2 {
    width: 70%;
    margin: 0 auto;
    padding: 2%;
  }
}
.box_gray {
  margin: 0 auto;
  background-color: #eeeeee;
}
img {
  vertical-align: top;
}
.txt_box {
  margin: 20px;
}
/* --------------------------------------------------
	footer
-------------------------------------------------- */
#footer {
  background-color: #fff;
  color: #222222;
  padding-top: 2%;
  padding-bottom: 2%;
}
@media screen and (min-width : 768px) {
  #footer {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
#footer a {
  color: #222222;
}
.flex_item {
  padding: 2%;
  color: #222;
}
.copy {
  background-color: #000;
  text-align: center;
  font-size: 12px;
  color: #FFF;
  padding-top: 2%;
  padding-bottom: 2%;
}
/* --------------------------------------------------
	ボックス横並び
-------------------------------------------------- */
*, *:before, *:after {
  box-sizing: border-box;
}
.col_3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.col_3 > * {
  width: calc(33.33333% - 8px);
  margin-right: 12px;
  margin-bottom: 12px;
}
.col_3 > *:nth-child(3n) {
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .col_3 > * {
    width: calc(50% - 6px);
  }
  .col_3 > *:nth-child(3n) {
    margin-right: 12px;
  }
  .col_3 > *:nth-child(2n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 580px) {
  .col_3 > * {
    width: 100%;
    margin-right: auto;
  }
  .col_3 > *:nth-child(3n) {
    margin-right: auto;
  }
}
.card {
  border: 1px solid #95c035;
  padding: 20px;
  background-color: #95c035;
    border-radius:20px;
    color:#fff;
}
.txt_01 {
  color: #95c035;
  font-size: 1.5em;
}
.txt_02 {
  color: #fff;
  font-size: 1.5em;
}
/* --------------------------------------------------
	page-top
-------------------------------------------------- */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 100%;
}
#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  width: 40px;
  padding: 10px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}
/* --------------------------------------------------
	動き
-------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all .5s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-100px, 0);
}
.sa--rl {
  transform: translate(100px, 0);
}
.sa--up {
  transform: translate(0, 100px);
}
.sa--down {
  transform: translate(0, -100px);
}
/* --------------------------------------------------
	form
-------------------------------------------------- */
#formWrap {
  width: 100%;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%;
}
table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
}
table.formTable td, table.formTable th {
  border: 1px solid #efefef;
  padding: 15px;
}
table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #ccc;
  text-align: left;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:1000px) {
  #formWrap {
    width: 100%;
    margin: 0 auto;
  }
  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }
  table.formTable th {
    margin-top: 0px;
    border-bottom: 0;
  }
  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }
  input[type="submit"], input[type="reset"], input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 1px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #fefefe;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
textarea {
  height: 150px;
  line-height: 150%;
  resize: vertical;
}