@charset "utf-8";
/* CSS Document */
body {
  -webkit-text-size-adjust: 100%;
  color: #313131;
  font-family: 'Noto Sans JP', sans-serif;
}
img {
  max-width: 100%;
}
/* =========================================================
 header
========================================================= */
.header {
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .12);
  height: 80px;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
}
.site_name {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
  .header_inner {
    padding-left: 30px;
  }
  .site_name {
    width: 40px;
  }
}
/* --------------------------------------------------
 header_nav
-------------------------------------------------- */
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .header_nav ul {
    display: flex;
  }
  .header_nav ul li {
    margin-left: 40px;
  }
  .header_nav ul li a {
    color: #313131;
    text-decoration: none;
    display: flex;
    height: 80px;
    align-items: center;
  }
  .header_nav ul li.header_nav_contact a {
    background: #1b1b1b;
    color: #fff;
    padding: 0 40px;
    transition: all .3s;
  }
  .header_nav ul li.header_nav_contact a:hover {
    background: #434343;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    width: 60px;
    height: 60px;
  }
  .header_nav {
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 10;
  }
.sp_nav_hide{
		display: none;
}
  .header_nav ul li a {
    display: block;
    padding: 24px 0;
    text-align: center;
    color: #313131;
    text-decoration: none;
    border-top: solid 1px #8f9992;
  }
  .header_nav ul li.header_nav_contact a {
    background: #1b1b1b;
    color: #fff;
  }
}
/* =========================================================
hero
========================================================= */
.hero {
  height: 92vh;
  width: 100%;
  background: url("../img/hero.jpg")no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_text {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #eee;
  font-size: 90px;
  font-family: 'Oswald', sans-serif;
}
@media screen and (max-width: 767px) {
  .hero {
    background-position-x: -220px;
    height: 500px;
  }
  .hero_text {
    font-size: 40px;
  }
}
@media screen and (max-width: 320px) {
  .hero_text {
    font-size: 30px;
  }
}
/* =========================================================
common
========================================================= */
.section {
  padding: 100px 0;
}
.section_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
.section_bg02 {
  background: #dde9e0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
  .section_inner {
    padding: 0 30px;
  }
}
/* --------------------------------------------------
breadcrumb
-------------------------------------------------- */
.breadcrumb {
  padding: 10px 0;
}
.breadcrumb ul {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.5;
}
.breadcrumb ul li a {
  display: flex;
  align-items: center;
  color: #313131;
  text-decoration: none;
  margin-right: 15px;
  opacity: 1;
  transition: all .3s;
}
.breadcrumb ul li a:after {
  display: block;
  content: '';
  margin-left: 10px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #313131;
  border-bottom: 1px solid #313131;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.breadcrumb ul li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul {
    padding: 0 30px;
  }
}
/* --------------------------------------------------
 tit
-------------------------------------------------- */
/*tit01
-------------------------------------------------- */
.tit01 {
  border-bottom: solid 1px;
  text-align: center;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
}
.tit01 span {
  color: #22ac38;
  display: block;
  font-size: 60px;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .tit01 {
    font-size: 13px;
    padding-bottom: 10px;
  }
  .tit01 span {
    font-size: 33px;
  }
}
/*tit02
-------------------------------------------------- */
.tit02_wrap {
  background: url("../img/tit_bg01.jpg")no-repeat center top;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tit02 {
  text-align: center;
  font-size: 22px;
  color: #cce198;
  font-weight: bold;
}
.tit02 span {
  color: #fff;
  display: block;
  font-size: 60px;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .tit02_wrap {
    height: 120px;
  }
  .tit02 {
    font-size: 13px;
  }
  .tit02 span {
    font-size: 33px;
  }
}
/*tit03
-------------------------------------------------- */
.tit03 {
  border-bottom: solid 1px;
  font-size: 36px;
  line-height: 1.5;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .tit03 {
    font-size: 24px;
    padding-bottom: 15px;
  }
}
/* --------------------------------------------------
btn
-------------------------------------------------- */
.btn_m {
  width: 300px;
  margin: 0 auto;
  margin-top: 50px;
}
.btn01 {
  background: #22ac38;
  text-align: center;
  height: 70px;
  line-height: 70px;
}
.btn01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: all .3s;
}
.btn01 a::after {
  display: block;
  content: '';
  margin-left: 10px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.btn01 a:hover {
  background: #1a892c;
}
@media screen and (max-width: 767px) {
  .btn_m {
    width: 86%;
  }
}
/* =========================================================
news
========================================================= */
.news {
  padding: 25px 0;
  border-bottom: solid 1px #d2d2d2;
  display: flex;
  align-items: flex-start;
}
.news_details {
  border-bottom: none;
  padding: 0px;
}
.news a {
  color: #313131;
  text-decoration: none;
  opacity: 1;
  transition: all .3s;
}
.news_txt {
  line-height: 1.5;
  width: 78%;
}
.news a:hover {
  opacity: 0.5;
}
.news_day {
  color: #7d7d7d;
  font-size: 14px;
  white-space: nowrap;
  width: 12%;
  padding-top: 5px;
}
.news_category {
  font-size: 12px;
  border: solid 1px #c9c9c9;
  width: 10%;
  padding: 5px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news {
    display: flex;
  }
  .news_day {
    width: 120px;
  }
  .news_category {
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .news_txt {
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
  }
  .news_day {
    font-size: 12px;
    width: auto;
    margin-right: 20px;
  }
  .news_category {
    font-size: 11px;
    width: 30%;
  }
}
/* =========================================================
company
========================================================= */
.company {
  margin: 0 auto;
  margin-top: 20px;
  max-width: 670px;
  line-height: 1.8;
}
.company th {
  font-weight: normal;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .company {
    border-collapse: separate;
    border-spacing: 0px 30px;
  }
  .company th {
    width: 140px;
    border-right: solid 1px #8f9992;
    border-top: solid 1px #8f9992;
    vertical-align: top;
    padding: 10px 10px 0 0;
  }
  .company td {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .company {
    margin-top: 30px;
  }
  .company th {
    border-left: solid 1px #8f9992;
    border-bottom: solid 1px #8f9992;
    padding: 0 0 10px 10px;
  }
  .company th, .company td {
    display: block;
  }
  .company td {
    padding: 10px 0 30px 10px;
  }
  .company tr:last-child td {
    padding-bottom: 0px;
  }
}
/* =========================================================
contact
========================================================= */
.contact {
  margin: 0 auto;
  margin-top: 20px;
  max-width: 670px;
}
.contact table {
  width: 100%;
}
.contact table th, .contact table td {
  text-align: left;
  font-weight: normal;
  display: block;
}
.contact table th {
  padding-top: 30px;
}
.contact table td {
  padding-top: 20px;
}
.contact input, .contact textarea {
  width: 100%;
  padding: 15px 10px;
  border: solid 2px #dde9e0;
}
.contact textarea {
  height: 110px;
}
.require {
  color: #e60012;
  font-size: 14px;
  margin-left: 10px;
}
.form_btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.form_btn {
  font-family: 'Noto Sans JP', sans-serif;
  padding: 22px 130px 22px 120px;
  background: #22ac38;
  border: none;
  font-size: 16px;
  text-align: center;
  color: #fff;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: all .3s;
  position: relative;
}
.form_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 46%;
  right: 110px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}
.form_btn:hover {
  background: #1a892c;
  color: #fff;
  cursor: pointer;
}
.contact_note {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 50px;
}
.contact_note a {
  color: #22ac38;
  transition: all .3s;
}
.contact_note a:hover {
  color: #1a892c;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 0px;
  }
  .contact input, .contact textarea {
    width: 94%;
  }
}
@media screen and (max-width: 320px) {
  .form_btn {
    padding: 22px 100px 22px 90px;
  }
  .form_btn::after {
    right: 80px;
  }
}
/* =========================================================
service
========================================================= */
.service {
  background: #f0f4f1;
  padding: 70px 0;
}
.service_inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.service a {
  transition: all .3s;
}
.service a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 30px 0;
  }
  .service a img {
    width: 80px;
  }
}
/* =========================================================
footer
========================================================= */
.footer {
  background: #313131;
  color: #fff;
  padding: 50px 0;
}
.footer_inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.footer a:hover {
  opacity: 0.5;
}
.footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_sns li {
  width: 32px;
  margin-right: 30px;
}
.footer_sns li:last-child {
  margin-right: 0;
}
.footer_sns li a {
  transition: all .3s;
}
.footer_nav {
  font-size: 14px;
  margin-top: 30px;
}
.footer_nav a {
  color: #22ac38;
  text-decoration: none;
  transition: all .3s;
}
.footer_co {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer_nav, .footer_co {
    font-size: 12px;
  }
}

/* =========================================================
 パララックス
========================================================= */
.fadeInUp {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}
/* =========================================================
 page_top
========================================================= */
.page_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.page_top a {
  background: #000;
  opacity: 0.2;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 100;
}
.page_top a::before {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: 30%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}
/* =========================================================
news/details.html
========================================================= */
.details_txt {
  margin-top: 50px;
  line-height: 2;
}

.details_txt b {
  font-weight: 600;
}

.details_txt i {
  font-style: italic;
}

.details_photo img {
  width: 360px;
  height: 360px;
  object-fit: contain;
}



/* --------------------------------------------------
pager
-------------------------------------------------- */
.pager {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 100px;
}
.next a, .prev a {
  display: flex;
  align-items: center;
  color: #7d7d7d;
  text-decoration: none;
  opacity: 1;
  transition: all .3s;
}
.next a::after {
  display: block;
  content: '';
  margin-left: 10px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.prev a::before {
  display: block;
  content: '';
  margin-right: 10px;
  width: 6px;
  height: 6px;
  border-left: 1px solid #7d7d7d;
  border-top: 1px solid #7d7d7d;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pager a:hover {
  opacity: 0.5;
}
/* =========================================================
privacypolicy/
========================================================= */
.privacy_read {
  line-height: 1.5;
}
.privacy_list {
  margin-top: 50px;
  line-height: 1.5;
}
.privacy_list li {
  margin-top: 30px;
}
.privacy_list li p {
  margin-top: 20px;
}

/* =========================================================
contact/confirm/
========================================================= */
table.table-confirm {
  margin-top: 20px;
}
table.table-confirm th{
  background: #a8faaf;
  padding: 15px 20px;
  padding-top: 15px;
  font-weight: 800;
  font-size: 1.1rem;
}
table.table-confirm td {
  background: #eeffee;
  padding: 15px 24px;
}
