@charset "utf-8";
/* --------------------------------------------------
	html
-------------------------------------------------- */
html, body {
  height: 100%;
  background-color: #f8f8ec;
  color: #222;
  font-size: 1em;
  line-height: 160%;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
@media screen and (min-width : 1000px) {
  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;
  }
}
/* --------------------------------------------------
	リンク調整
-------------------------------------------------- */
#link001 {
  margin-top: -100px;
  padding-top: 100px;
}
@media only screen and (min-width: 1000px) {
  #link001 {
    margin-top: -150px;
    padding-top: 150px;
  }
}
/* --------------------------------------------------
	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;
}
/* --------------------------------------------------
	font_size
-------------------------------------------------- */
.fs_d {
  font-size: 16px;
  line-height: 170%;
}
@media screen and (min-width : 1000px) {
  .fs_d {
    font-size: 20px;
  }
}
.fs_db {
  font-size: 16px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (min-width : 960px) {
  .fs_db {
    font-size: 20px;
  }
}
.fs_big {
  font-size: 1.8em;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (min-width : 960px) {
  .fs_big {
    font-size: 3em;
  }
}
.fs_ttl {
  font-size: 18px;
  line-height: 170%;
  font-weight: bold;
  letter-spacing: 0.5em;
  border-bottom: 2px solid #b7d66c;
  padding-left: 20px;
}
@media screen and (min-width : 960px) {
  .fs_ttl {
    font-size: 26px;
    line-height: 170%;
    font-weight: bold;
    letter-spacing: 0.5em;
  }
}
.fs_ttl2 {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.5em;
  color: #999999;
}
/* --------------------------------------------------
	font_color
-------------------------------------------------- */
.red {
  color: #C00;
}
.pink {
  color: #F69;
  font-weight: bold;
}
.blue {
  color: #19193d;
  font-weight: bold;
}
.white {
  color: #FFF;
  font-weight: bold;
}
.yellow {
  color: #FAFA03;
  font-weight: bold;
}
.green {
  color: #28AA32;
  font-weight: bold;
}
.orange {
  color: #F67103;
  font-weight: bold;
}
/* --------------------------------------------------
	bg_color
-------------------------------------------------- */
.bg_red {
  background-color: #118cd2;
  color: #FFF;
}
.bg_red a {
  color: #FC0;
}
.bg_blue {
  background-color: #99ccff;
}
.bg_white {
  background-color: #fff;
}
/* --------------------------------------------------
	main_image
-------------------------------------------------- */
.flex_box {
  background-color: #ffffff;
}
@media screen and (min-width : 1000px) {
  .flex_box {
    display: flex;
    align-items: stretch;
    justify-content: start;
    flex-wrap: wrap;
  }
}
.flex_item2 {
  width: 100%;
  padding: 40px;
  color: #222; /* 文字色 */
}
@media screen and (min-width : 1000px) {
  .flex_item2 {
    width: 33%;
    padding: 20px;
    color: #222; /* 文字色 */
  }
}
.flex_item2:nth-child(1) {
  background-color: #95c035; /* 背景色指定 */
}
.flex_item2:nth-child(2) {
  background-color: #ededed; /* 背景色指定 */
}
/* --------------------------------------------------
	ttl
-------------------------------------------------- */
.ttl {
  width: 100%;
  margin: 0 auto;
  padding-top: 3%;
  padding-bottom: 3%;
  text-align: left;
  color: #222222;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}
/* --------------------------------------------------
	hr
-------------------------------------------------- */
hr {
  height: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  border-top: 1px dashed #ccc;
}
/* --------------------------------------------------
	wrapper
-------------------------------------------------- */
#wrapper {
  color: #555;
}
@media screen and (min-width : 768px) {
  #wrapper {
    width: 100%;
  }
}
@media screen and (min-width : 1000px) {
  #wrapper {
    width: 1000px;
    margin: 0 auto;
  }
  /* --------------------------------------------------
	box
-------------------------------------------------- */
}
.box {
  width: 100%;
}
@media screen and (min-width : 1000px) {
  .box {
    width: 90%;
    margin: 0 auto;
    padding: 2%;
  }
}
.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;
}
/* --------------------------------------------------
	footer
-------------------------------------------------- */
#footer {
  background-color: #b7d66c;
  color: #fff;
  padding-top: 2%;
  padding-bottom: 2%;
}
@media screen and (min-width : 1000px) {
  #footer {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
#footer a {
  color: #fff;
}
.flex_item {
  padding: 2%;
  color: #222;
}
.copy {
  background-color: #fffded;
  text-align: center;
  font-size: 12px;
  color: #999;
  padding-top: 2%;
  padding-bottom: 2%;
}
/* --------------------------------------------------
	レイアウト
-------------------------------------------------- */
.layout {
  background-color: #fff;
  color: #222222;
  padding-top: 0%;
  padding-bottom: 3%;
  width: 100%;
}
@media screen and (min-width : 1000px) {
  .layout {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.item {
  width: 100%;
  padding: 20px;
  background-color: #f5f5f5;
}
@media screen and (min-width : 1000px) {
  .item {
    width: 460px;
  }
}
.vision {
  background-color: #fff;
  color: #222222;
  padding-top: 0%;
  padding-bottom: 3%;
  width: 100%;
}
@media screen and (min-width : 1000px) {
  .vision {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.item2 {
  width: 100%;
  padding: 20px;
  background-color: #fff;
}
@media screen and (min-width : 1000px) {
  .item2 {
    width: 700px;
  }
}
.item3 {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}
@media screen and (min-width : 1000px) {
  .item3 {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 260px;
  }
}
.btn {
  display: inline-block;
  border-radius: 30px; /* 角丸       */
  font-size: 16pt; /* 文字サイズ */
  text-align: center; /* 文字位置   */
  cursor: pointer; /* カーソル   */
  padding: 0.5em 3em; /* 余白       */
  background: #95c035; /* 背景色     */
  color: #ffffff; /* 文字色     */
  line-height: 1em; /* 1行の高さ  */
  transition: .3s; /* なめらか変化 */
  box-shadow: 0px 0px 0px #666666; /* 影の設定 */
  border: 1px solid #95c035; /* 枠の指定 */
  margin-bottom: 5px;
    width: 50%;
}
.btn:hover {
  box-shadow: none; /* カーソル時の影消去 */
  color: #95c035; /* 背景色     */
  background: #ffffff; /* 文字色     */
}

@media screen and (max-width : 1000px) {
    .btn {
        width: 70%;
    }
}

.link_btn {
  overflow: hidden;
  list-style: none;
}
.link_btn li {
  float: left;
  width: 24%;
  text-align: center;
  background: #FF9900;
  margin-right: 1%;
  border-radius: 15px;
}
.link_btn li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8em;
}
/* 経営理念 */
.flex-container {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}
@media screen and (min-width : 1000px) {
  .flex-container {
    flex-direction: row;
  }
}
.flex-item {
  margin: 0px auto;
  margin-bottom: 1%;
  width: 60%;
  padding: 1%;
  box-sizing: border-box;
  color: #222;
}
@media screen and (min-width : 1000px) {
  .flex-item {
    margin: 0px auto;
    margin-bottom: 0.5%;
    width: 21%;
    padding: 1%;
    box-sizing: border-box;
    color: #222;
  }
}
.flex-item img {
  width: 60%;
}
/* --------------------------------------------------
	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: 80%;
  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: 10px;
}
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;
  }
}
/* --------------------------------------------------
	slider
-------------------------------------------------- */
.slider {
  margin: 0 0 50px;
}
.slider img {
  width: 100%;
  height: auto;
}
.single-item {
  max-width: 600px;
  margin: 0 auto 50px;
}
.slick-prev::before, .slick-next::before {
  font-size: 24px;
}
.lazy-item .slick-next, .thumb-item-nav .slick-next, .multiple-item .slick-next, .center-item .slick-next {
  right: 20px;
  z-index: 99;
}
.lazy-item .slick-prev, .thumb-item-nav .slick-prev, .multiple-item .slick-prev, .center-item .slick-prev {
  left: 15px;
  z-index: 100;
}
.single-item .slick-prev::before, .single-item .slick-next::before {
  color: #666;
}
.slick-dots {
  bottom: -25px;
}
/* 左右分割 */
.split {
  display: flex;
  width: 100%;
  background-color: #fff;
  padding-top: 0px;
  border-radius: 20px;
}
.split-item {
  display: table-cell;
  width: 50%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.split-left {
  background-color: #fff;
  color: #6e5a4c;
  position: relative;
}
.split-left img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.split-right {
  background-color: #b7d66c;
  color: #000000;
}
.split-left__inner {
  width: 100%;
  height: 100%;
}
.split-right__inner {
  padding: 80px;
  color: #fff;
}
@media only screen and (max-width: 1000px) {
  .split-right__inner {
    padding: 20px;
    color: #333;
  }
  .split-left img {
    border-radius: 20px;
  }
  .split-right {
    background-color: #fff;
    color: #000000;
  }
}
.split p {
  font-size: 2.2em;
  border-bottom: 1px solid;
  width: 100%px;
  margin-bottom: 30px;
}
.split span {
  font-size: 1.2em;
}
@media screen and (max-width:1024px) {
  .split {
    display: block;
  }
  .split-item {
    display: block;
    width: auto;
  }
  .split-left__inner {
    position: inherit;
    width: auto;
  }
}
/*ボタン*/
a.it_btn {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 400px;
  margin: auto;
  padding: 2rem 4rem;
  border: 1.5px solid #95c035;
  color: #95c035;
  border-radius: 100vh;
  transition: 0.5s;
  font-size: 1.6em;
}
a.it_btn:hover {
  color: #fff;
  background: #95c035;
}
@media only screen and (max-width: 1000px) {
  a.it_btn {
    width: 80%;
  }
}
/*****************************
過去の開催
*****************************/
table {
  width: 90%;
  margin: 20px auto;
  background-color: #efefef;
}
.tbl-r02 th {
  background: #95c035;
  color: #fff;
  border: 1px solid #efefef;
  padding: 10px;
  font-size: 1.5em;
}
.tbl-r02 td {
  padding: 10px;
  font-size: 1.5em;
}
@media screen and (max-width: 1000px) {
  .last td:last-child {
    
    width: 100%;
  }
  .tbl-r02 {
    width: 80%;
  }
  .tbl-r02 th, .tbl-r02 td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}