@charset "UTF-8";

@import "base_layout.css";
@import "common_parts.css";


/* =====================================
===== first-view =====
======================================== */

.first-view {
  max-width: 100%;
  background-image: url("../../img/top2/top01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 650px;
  width: 100%;
}

.first-view-inner {
  width: 1200px;
  line-height: 1;
  height: 650px;
  margin: auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
  font-family: 'Noto Serif JP', serif;
  text-shadow: 0 0 1px #ffffff, 0 0 4px #ffffff, 0 0 8px #ffffff, 0 0 12px #ffffff, 0 0 16px #ffffff;
}

.first-view-inner span {
  font-size: 36px;
}

@media screen and (max-width: 1200px) {

  .first-view-inner {
    padding: 0 3%;
  }

}

@media screen and (max-width: 480px) {

  .first-view {
    background-position: center;
  }

  .first-view-inner span {
    font-size: 24px;
  }

}

/* =====================================
===== top01 =====
======================================== */

.top01 {
  background-image: url(../../img/top2/top02.jpg);
  background-size: cover;
  padding-bottom: 15%;
}

.top01-content01 {
  background-color: #ffffff;
  width: 80%;
  margin: auto;
  max-width: 1200px;
  padding: 1% 0;
}

.top01-flex01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #ffffff;
  margin-top: -12%;
}

.top01-title {
  background-color: #2C7C08;
  color: #ffffff;
  padding: 2%;
  margin-top: -3%;
  margin-left: -3%;
  font-size: 14px;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top01-title span {
  font-size: 28px;
  border-top: 1px solid #ffffff;
  font-family: 'Noto Serif JP', serif;
  margin-top: 10px;
}

.top01-text {
  padding: 2% 3%;
  background-color: #F8F2F2;
  margin: 2%;
  width: 70%;
}

.top01-flex02 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;

}

.top01-3-1 {
  width: 30%;
  margin-top: 3%;
}

.top01-3-1-img img {
  max-width: 100%;
}

.top01-3-1 a {
  color: #000000;
}

.top01-content02 {
  width: 90%;
  margin: auto;
  margin-top: 3%;
  max-width: 1200px;
}

.top01-flex03 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
}

.top01-left {
  width: 45%;
  color: #ffffff;
}

.top01-search {
  background-color: #3DB10A;
  padding: 3%;
}

.top01-search span {
  font-size: 24px;
  font-family: 'Noto Serif JP', serif;
}



.search_container{
  box-sizing: border-box;
  position: relative;
  border: none;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.3em;
  width: 260px;
  max-width: 100%;
  overflow: hidden;
  background-color: #9ED885;
}
.search_container input[type="text"]{
  border: none;
  height: 2.0em;
  background-color: #9ED885;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #000000;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  right: 0;
  top: -10px;
  outline : none;
}


.top01-news {
  background-color: #377D18;
  padding: 3%;
  margin-top: 10%;
}

.top01-news-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  font-family: 'Noto Serif JP', serif;
}

.top01-news-title01 {
  font-size: 24px;
}

.top01-news a {
  color: #ffffff;
  font-size: 14px;
  line-height: 3.5;
}


.top01-right {
  width: 45%;
  background-color: #ffffff;
  padding: 3%;
  margin-top: 3%;
}

.top01-right-title {
  border-bottom: 1px solid #87CE67;
  padding-bottom: 3%;
  display: inline-block;
}

.top01-right-title span {
  font-size: 24px;
  font-family: 'Noto Serif JP', serif;
}

.top01-right-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5%;
}

.top01-right-2-1 {
  width: 50%;
  font-size: 14px;
}

.top01-right-2-1 span {
  color: #C4C4C4;
  font-weight: bold;
}

.top01-right-2-1 a {
  color: #000000;
}


@media screen and (max-width: 768px) {

  .top01-flex01 {
    flex-wrap: wrap;
  }

  .top01-title {
    width: 100%;
  }

  .top01-text {
    width: 100%;
  }

  .top01-3-1 {
    width: 40%;
  }
  
  .top01-flex03 {
    flex-wrap: wrap;
  }

  .top01-left {
    width: 90%;
    margin: auto;
  }

  .top01-news {
    margin-top: 5%;
  }

  .top01-right {
    width: 90%;
    margin: auto;
    margin-top: 5%;
  }

}

@media screen and (max-width: 480px) {

  .top01-content01 {
    width: 90%;
  }

  .top01-title span {
    font-size: 24px;
  }

  .top01-3-1 {
    width: 97%;
  }

  .top01-left {
    width: 100%;
  }

  .top01-search span {
    font-size: 20px;
  }

  .top01-news-title01 {
    font-size: 20px;
}

  .top01-right {
    width: 100%;
  }

  .top01-right-title span {
    font-size: 20px;
  }

  .top01-right-2-1 {
    width: 100%;
  }

}

/* =====================================
===== top02 =====
======================================== */

.top02 {
  background-image: url(../../img/top2/top04.jpg);
  background-size: cover;
  padding: 5% 0;
  color: #ffffff;

  margin-bottom: 50px;
  margin-left: 50px;
  margin-top: -50px;
}

.top02-content01 {
  width: 80%;
  margin: auto;
  max-width: 1200px;
  padding: 1% 0;
}

.top02-title {
  font-size: 24px;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 3%;
}

.top02-title span {
  font-size: 26px;
}

.top02-flex {
  display: flex;
  justify-content: space-between;
}

.top02-2-1 {
  width: 45%;
  background-color: rgba(19, 23, 27, 0.9);
  padding: 2% 3%;
}

.top02-2-1-title {
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 1%;
}

.top02-2-1-title span {
  font-size: 24px;
}

.top02-2-1-img-left img, .top02-2-1-img-right img {
  max-width: 100%;
}

.top02-2-1-img-left {
  margin-right: -12%;
}

.top02-2-1-img-right {
  margin-left: -12%;
}

.top02-2-1-text {
  margin-top: 2%;
}

.top02-text01 {
  text-align: center;
  font-size: 22px;
  font-family: 'Noto Serif JP', serif;
  margin-top: 5%;
}

.top02-text02 {
  margin-top: 3%;
}

.top2-btn {
  width: 160px;
  margin-left: auto;
  margin-top: 3%;
}

.top2-btn a {
  color: #ffffff;
  font-family: 'Noto Serif JP', serif;
  display: inline-block;
  line-height: 0.8;
}

@media screen and (max-width: 768px) {

  .top02-flex {
    flex-wrap: wrap;
  }

  .top02-2-1 {
    width: 90%;
    margin: auto;
    margin-top: 5%;
  }

}

@media screen and (max-width: 480px) {

  .top02 {
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 0;
  }

  .top02-title {
    font-size: 18px;
  }

  .top02-title span {
    font-size: 20px;
}

  .top02-2-1 {
    width: 100%;
  }

  .top02-2-1-img-left {
    margin-right: 0;
  }

  .top02-2-1-img-right {
    margin-left: 0;
  }

.top02-text01  {
  font-size: 18px;
}

}





