@charset "UTF-8";
/* CSS Document */
/*=============================================================
import css
=============================================================*/
@import url("reset.css");
/*
=============================================================
共通
=============================================================
*/
@media print, screen and (min-width: 769px) {
  .pchd {
    display: none;
  }
}
body {
  font-family: 'Meiryo', "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
  margin: 0;
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
  background-image: url("/images/bg.jpg");
  background-repeat: repeat;
}
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
p {
  color: #fff;
  line-height: 1.8em;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
a {
  transition: all 0.3s;
}
/* 見出しサイズ*/
.f48 {
  font-size: clamp(1.625rem, 1.125rem + 2.5vw, 3rem);
}
.f42 {
  font-size: clamp(2rem, 1.773rem + 1.14vw, 2.625rem);
}
.f36 {
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
}
/*最大32px最小20px*/
.f32 {
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
}
/*最大32px最小24px*/
.f30 {
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}
/*最大24px最小16px*/
.f24 {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
/*最大18px最小16px*/
.f18 {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.f100 {
  font-size: clamp(3.25rem, 2.159rem + 5.45vw, 6.25rem);
}
/*最大28px最小18px*/
.f28 {
  font-size: clamp(1.125rem, 0.014rem + 2.31vw, 1.75rem);
}
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 5px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 12px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    border-radius: 50px;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 12px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

/*
=============================================================
ヘッダー
=============================================================
*/
header.header {
  display: block;
  margin-bottom: 6vw;
  border-bottom: solid 1px #ccc;
}
header.header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1vw 3% 0;
  position: relative;
}
header.header .wrap h1 {
  width: 15%;
  max-width: 200px;
  min-width: 100px;
  box-sizing: border-box;
}
header.header .wrap h1 a {
  width: 100%;
  height: auto;
  display: block;
}
header.header .wrap nav ul {
  display: flex;
  justify-content: flex-end;
  margin-top: 4vw;
  position: relative;
  z-index: 20;
}
header.header .wrap nav ul li {
font-size: clamp(0.75rem, 0.306rem + 0.93vw, 1rem);
  margin-left: 3vw;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
header.header .wrap nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: .75em 0;
  line-height: 1;
  position: relative;
  white-space: nowrap;
   color: #fff;
  font-weight: 600;
}
header.header .wrap nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #4e8940;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
header.header .wrap nav ul li a:hover::after {
  transform: scale(1, 1);
}
header.header .wrap .contact {
  width: 40%;
  position: absolute;
  top: 20px;
  right: 2.5%;
}
header.header .wrap .contact ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
header.header .wrap .contact ul li {
  margin-left: 10px;
  font-size: clamp(0.688rem, 0.132rem + 1.16vw, 1rem);
}
header.header .wrap .contact ul li.tel {
  width: 40%;
  margin-top: 1%;
}
header.header .wrap .contact ul li.header_btn {
  padding: 0px 2%;
  border: solid 1px #fff;
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
header.header .wrap .contact ul li a {
  display: block;
  text-align: center;
  color: #fff;
}
/*
=============================================================
コンテンツ
=============================================================
*/
.contents {
  width: 100%;
  margin: 3vw 0;
   color: #fff;
}
section {
  width: 80%;
  margin: 0 auto;
  padding: 10vw 0;
  border-bottom: solid 1px #ccc;
}
section:last-child {
  border: none;
}
.contents h2 {
  width: 95%;
  display: block;
  margin-left: auto;
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
   color: #fff;
  margin-bottom: 3vw;
}
.contents h2 span {
  display: block;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);/*最大値 14px 推奨値 13.58px 最小値12px*/
  color: #eee;
}
.contents h2 span:before {
  content: url("/images/h2_point.png");
  margin-right: 10px;
  position: relative;
}
.topImage {
  width: 95%;
  height: auto;
  display: block;
  margin-left: auto;
}
/*
=============================================================
フッター
=============================================================
*/
footer {
  padding: 50px 0;
  border-top: solid 1px #ccc;
}
footer .inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
footer dl {
  width: 30%;
  color: #fff;
}
footer dl dt {
  width: 80%;
  margin-bottom: 10px;
}
footer dl dd {
  width: 80%;
  font-size: clamp(0.688rem, 0.354rem + 0.69vw, 0.875rem);
  color: #fff;
  line-height: 1.5em;
}
footer ul.footer_navi {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
footer ul.footer_navi li {
  font-size: clamp(0.688rem, 0.354rem + 0.69vw, 0.875rem);
  line-height: 1.5em;
  margin-bottom: 1rem;
  color: #fff;
  margin-left: 1.8rem;
}
footer ul.footer_navi li:before {
  content: url("../images/footer_point.png");
  margin-right: 8px;
  position: relative;
  top: 1%;
}
footer ul.footer_navi li a:hover {
  opacity: 0.3;
}
footer ul.sns {
  width: 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
footer ul.sns li {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer ul.sns li img {
width: 100%;
height: auto;
}
.copyright {
font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);/*最大値 12px 最小値10px*/
text-align: center;
display: block;
 color: #fff;
}
/*
=============================================================
アニメーション
=============================================================
*/
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 50px);
}
.fade-in-down {
  transform: translate(0, -50px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}


@media screen and (max-width: 768px) {
  .sphd {
    display: none;
  }
  p {
  color: #fff;
  }
  header.header {
    width: 100%;
    height: 60px;
    background-color: #fff;
    padding: 10px 0 10px 10px;
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 50;
    transition: all 0.5s ease-in-out;
  }
  header.header .active {
    background-color: #FFF;
    box-shadow: 0px 4px 2px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 4px 2px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 4px 3px -2px rgba(0, 0, 0, 0.2);
  }
  header.header .wrap h1 {
    width: 70%;
    box-sizing: border-box;
  }
  header.header .logo a {
    width: 70%;
    display: block;
  }
  header.header dl {
    display: none;
  }
  header.header nav {
    position: fixed;
    width: 300px;
    top: 0;
    right: -300px;
    background-color: rgba(33, 33, 33, .9);
    height: 100%;
    padding-top: 80px;
    z-index: 100;
  }
  header.header nav .menu {
    display: block;
  }
  header.header .wrap nav ul {
    display: block;
    z-index: 20;
  }
  header.header .wrap nav ul li {
    font-size: 15px;
    margin-left: 0rem;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  header.header .wrap nav ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: .75em 0;
    line-height: 1;
    position: relative;
    white-space: nowrap;
    color: #fff;
    font-weight: 600;
  }
  header.header .wrap nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #4e8940;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }
  header.header .wrap nav ul li a:hover::after {
    transform: scale(1, 1);
  }
  header.header nav ul li {
  display: block;
    width: 90%;
    padding-bottom: 16px;
    border-bottom: solid 1px #eee;
    text-align: center;
    margin: 0 auto 16px!important;
  }
  header.header nav ul li a {
    color: #ffffff;
    padding-left: 20px;
  }
  header.header nav ul li a span {
    font-size: 14px;
    display: block;
    margin: 8px 0 0 20px;
  }
  header.header .btn-gnavi {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 1000;
    cursor: pointer;
    transition: all 400ms;
    -webkit-transition: all 400ms;
  }
  header.header .btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #666;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms
  }
  header.header .btn-gnavi span:nth-child(1) {
    top: 0;
  }
  header.header .btn-gnavi span:nth-child(2) {
    top: 10px;
  }
  header.header .btn-gnavi span:nth-child(3) {
    top: 20px;
  }
  header.header .btn-gnavi.hb-open {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  header.header .btn-gnavi.hb-open span {
    background: #fff;
  }
  header.header .btn-gnavi.hb-open span:nth-child(1) {
    width: 24px;
    transform: translate(-7px, 17px) rotate(45deg);
    -webkit-transform: translate(-7px, 17px) rotate(45deg);
  }
  header.header .btn-gnavi.hb-open span:nth-child(3) {
    width: 24px;
    transform: translate(-7px, -17px) rotate(-45deg);
    -webkit-transform: translate(-7px, -17px) rotate(-45deg);
  }
  header.header .wrap .contact {
    display: none;
  }
  
  /*
=============================================================
コンテンツ
=============================================================
*/
.contents {
  width: 100%;
  padding-top: 70px;
  overflow: hidden;
}

/*
=============================================================
フッター
=============================================================
*/
footer {
  padding: 50px 0 20px!important;
  border-top: solid 1px #ccc;
}
footer .inner {
display: block;
margin-bottom: 0;
}
.footer_navi {
display: none!important;
}
footer dl {
width: 100%;
margin-bottom: 40px;
}
footer dl dt {
  width: 50%;
  margin: 0 auto;
}
footer dl dd {
  width: 100%;
  color: #fff;
  line-height: 1.5em;
  text-align-last: center;
}  
footer ul.sns {
  width:30%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 30px;
}
footer ul.sns li {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright {
text-align: center;
}
  
}
ul {
padding: 0;
}