@charset "utf-8";
/* CSS Document */

header {
    border-top:5px solid #5d9f44;
}
#toggle-nav {
  display: none;
}
#toggle-nav:checked ~ .menu_top .hamburger {
  /*height: 28px;*/
}
#toggle-nav:checked ~ .menu_top .hamburger div {
  background-color: #5d9f44;
}
#toggle-nav:checked ~ .menu_top .hamburger div:nth-of-type(1) {
  margin-top: 9px;
  transform: rotate(135deg);
}
#toggle-nav:checked ~ .menu_top .hamburger div:nth-of-type(2) {
  opacity: 0;
}
#toggle-nav:checked ~ .menu_top .hamburger div:nth-of-type(3) {
  margin-top: -16px;
  transform: rotate(-135deg);
}
#toggle-nav:checked ~ .menu {
  opacity: 1;
  visibility: visible;
}

.menu_top {
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    z-index: 1020;
    margin: 0;
    padding: 6px;
    background-color: #FFF;
    border:2px solid #5ea645;
    border-radius: 4px;
}

.menu_top:after {
    content: "メニュー";
    display: block;
    position: absolute;
    width:100%;
    height:auto;
    bottom:3px;
    left:0;
    right:0;
    font-size: 9px;
    text-align: center;
    color: #5ea645;
    font-weight: 600;
}

#toggle-nav:checked ~ .menu_top:after {
    content: "とじる";
}

.hamburger div {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #5ea645;
  transition: background-color 0.5s, transform 0.5s;
}
.hamburger div:nth-of-type(2) {
  margin: 5px 0;
}

.menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1010;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: rgba(255,255,255,0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out;
  will-change: opacity, visibility;
}
.menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.menu ul li {
  margin-bottom: 4px;
  font-size: 24px;
  text-align:center;
  margin: 0;
  border-bottom:1px dotted #ceeac3;
}

.menu ul li:last-child {
    border-bottom: none;
}

.menu ul li a {
  display:block;
  color: #5d9f44;
  padding:15px 20px;
  text-decoration: none;
}

.menu ul li a:hover {
    padding:20px 20px;
}

header {
	position: relative;
	width:100%;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255,255,255,0);
    width:100%;
    margin: 0 auto;
	position: relative;
	padding:16px 80px 15px 15px;
}

header .siteTitle {
	flex-basis: 340px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #4ea829;
    white-space: nowrap;
    padding-top:8px;
}

header .siteTitle a {
    display: block;
    text-decoration: none;
	color: #4ea829;
}

.src_form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 2px solid #5ea445;
    background-color: #FFF;
    border-radius: 25px;
}

.src_form input[type="text"] {
    width: 200px;
    height: 40px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
}

.src_form input::placeholder{
    color: #777777;
}

.src_form button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 40px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.src_form button::after {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%235ea445'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}

/* フッター */
 
footer {
 	position: relative;
    background-color: #5ea645;
	color: #fff;
	padding:30px 0 15px;
}

.f_row {
    display: flex;
    justify-content: space-between;
}

.f_left {
    flex-basis: 50%;
}

.f_logo {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.f_txt {
    line-height: 1.6;
    font-size: 1rem;
}

footer a[href^="tel:"] {
	color:#fff;
}

.f_right {
    flex-basis:50%;
    padding-top: 68px;
}

.f_right .f_txt {
    font-size: 0.9rem;
}

 
@media only screen and (max-width: 1024px) {

header {
    width:100%;
	z-index:200;
}
	
header .siteTitle{
    flex-basis: 240px;
}
	
header .siteTitle a img {
	width:100%;
	height:auto;
}

/* フッター */



}

@media only screen and (max-width: 768px) {

.header_wrapper {
    padding: 20px;
}

header .siteTitle{
    flex-basis: 180px;
    padding-top:0;
}

.menu_top {
    top:15px;
    right:15px;
}

.menu ul li {
  font-size: 4vw;
}

.menu ul li a {
    padding: 10px 15px;
}

.menu ul li a, .menu ul li a:hover {
  padding:10px 15px;
}

footer {
    padding-bottom: 10px;
}

.f_row {
    flex-wrap: wrap;
    justify-content: center;
}

.f_left,.f_right {
    flex-basis: 100%;
    margin-bottom: 20px;
}

.f_right {
    padding-top: 10px;
}

}
 
@media only screen and (max-width: 480px) {

header {
	padding:0 ;
}

.header_wrapper {
    padding: 20px 10px;
}

header .siteTitle {
    font-size: 1.3rem;
}

.menu_top {
    top: 15px;
    right: 10px;

}

/* フッター */



}