@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;
  }
}
/* --------------------------------------------------
	リンク調整
-------------------------------------------------- */

/* --------------------------------------------------
	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: 14px;
  line-height: 170%;
}
@media screen and (min-width : 1000px) {
  .fs_d {
    font-size: 14px;
  }
}
.fs_db {
  font-size: 16px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (min-width : 960px) {
  .fs_db {
    font-size: 16px;
  }
}
.fs_big {
  font-size: 44px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (min-width : 960px) {
  .fs_big {
    font-size: 55px;
  }
}
.fs_ttl {
  font-size: 30px;
  line-height: 170%;
  font-weight: 200;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #f8f8ec;
  color: #95c035;
}
@media screen and (min-width : 960px) {
  .fs_ttl {
    font-size: 85px;
    line-height: 70%;
    font-weight: 200;
    letter-spacing: 0.5em;
  }
}
.fs_ttl2 {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.5em;
  color: #222222;
}
/* --------------------------------------------------
	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: #f8f8ec;
}
@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: 30px;
    color: #222; /* 文字色 */
  }
}
.flex_item2:nth-child(1) {
  background-color: #f8f8ec; /* 背景色指定 */
}
.flex_item2:nth-child(2) {
  background-color: #f8f8ec; /* 背景色指定 */
  
}
.flex_item2:nth-child(3) {
  background-color: #f8f8ec; /* 背景色指定 */
}
.flex_item2:nth-child(4) {
  background-color: #f8f8ec; /* 背景色指定 */

}
.flex_item2:nth-child(5) {
  background-color: #f8f8ec; /* 背景色指定 */
}
.flex_item2:nth-child(6) {
  background-color: #f8f8ec; /* 背景色指定 */

}
.flex_item2:nth-child(7) {
  background-color: #f8f8ec; /* 背景色指定 */
}

.flex_item2 img{
    border-radius:20px;
}
/* --------------------------------------------------
	ttl
-------------------------------------------------- */
.ttl {
  width: 100%;
  margin: 0 auto;
  padding-top: 3%;
  padding-bottom: 3%;
  padding-left: 3%;
  padding-right: 3%;
  text-align: center;
  color: #222222;
}
/* --------------------------------------------------
	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: 100%;
    margin: 0 auto;
    padding: %;
  }
}
.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: #f8f8ec;
}
/* --------------------------------------------------
	footer
-------------------------------------------------- */
#footer {
  background-color: #f8f8ec;
  color: #95c035;
  padding-top: 2%;
  padding-bottom: 2%;
}
@media screen and (min-width : 1000px) {
  #footer {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
#footer a {
  color: #222222;
}
.flex_item {
  padding: 2%;
  color: #222;
}
.copy {
  background-color: #95c035;
  text-align: center;
  font-size: 12px;
  color: #FFF;
  padding-top: 2%;
  padding-bottom: 2%;
}
/* --------------------------------------------------
	レイアウト
-------------------------------------------------- */
.layout {
  background-color: #f8f8ec;
  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: #f8f8ec;
  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: #f8f8ec;
}
@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: #f8f8ec;
}
@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: 20px; /* 角丸       */
  font-size: 16pt; /* 文字サイズ */
  text-align: center; /* 文字位置   */
  cursor: pointer; /* カーソル   */
  padding: 0.3em 3em; /* 余白       */
  background: #95c035; /* 背景色     */
  color: #ffffff; /* 文字色     */
  line-height: 1em; /* 1行の高さ  */
  transition: .3s; /* なめらか変化 */
  
  margin-bottom: 5px;
    width: 50%;
}

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

.btn:hover {
  box-shadow: none; /* カーソル時の影消去 */
  color: #95c035; /* 背景色     */
  background: #ffffff; /* 文字色     */
}
.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: #f8f8ec;
  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
-------------------------------------------------- */

/* --------------------------------------------------
	動き
-------------------------------------------------- */
.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: #f8f8ec;
}
table.formTable td, table.formTable th {
  border: 1px solid #f8f8ec;
  padding: 15px;
}
table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #95c035;
  text-align: left;
    color:#fff;
}
/*　簡易版レスポンシブ用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;
}
/* --------------------------------------------------
	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;
}
/***********パララックス***********/
/* codepenリセット */
* {
  padding: 0;
  margin: 0;
  z-index: 1;
}
.section {
  background-color: #f8f8ec;
  width: 100%;
}
.parallax {
  width: 100%;
  height: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.parallax01 {
  background-image: url("../img/bg_img_1.jpg");
}
.parallax02 {
  background-image: url("../img/bg_img_2.jpg");
}