@charset "UTF-8";
/* CSS Document */

/* 共通部分
--------------------------- */
html {
	font-size: 100%;
}

body {
	font-family: 'Noto Sans JP', Meiryo, sans-serif;
	line-height: 1.7;
	color: #171A15;
}

a {
	border: none;
	text-decoration: none;
	color: #171A15;
}
a:hover {
	color: #C2D5B9;
}

img {
	max-width: 100%;
}

.wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 4% 4%;
}

h2 {
	text-align: center;
	padding:4%;
	letter-spacing: 5px;
}
h1 {
	width: 250px;
}

header {
	background: rgba(255,255,255,0.5);
	display: flex;
    justify-content: space-between;
	padding: 3px 20px 3px;
	position: fixed;
	width: 100%;
}
.menu {
	display: flex;
}

@media (max-width: 640px){
	html {
		font-size:  87.5%;
	}
	h1 {
		width: 120px;
	}
}
nav ul {
	display: flex;
	justify-content: flex-end;
	list-style: none;
	text-transform: capitalize;
}

nav li {
	padding: 18px 13px;
}

/*　ハンバーガーボタン　*/
@media (max-width: 640px){
	nav ul {
		display: block;
	}
	
	.hamburger {
  		display : block;
 		 position: fixed;
  		z-index : 3;
  		right : 13px;
  		top   : 5px;
  		width : 42px;
  		height: 42px;
  		cursor: pointer;
  		text-align: center;
	}
	.hamburger span {
  		display : block;
  		position: absolute;
  		width   : 30px;
  		height  : 2px ;
  		left    : 6px;
  		background : #171A15;
  		-webkit-transition: 0.3s ease-in-out;
  		-moz-transition   : 0.3s ease-in-out;
  		transition        : 0.3s ease-in-out;
	}
	.hamburger span:nth-child(1) {
  		top: 10px;
	}
	.hamburger span:nth-child(2) {
  		top: 20px;
	}
	.hamburger span:nth-child(3) {
  		top: 30px;
	}

	/* ナビ開いてる時のボタン */
	.hamburger.active span:nth-child(1) {
  		top : 16px;
  		left: 6px;
  		background :#fff;
  		-webkit-transform: rotate(-45deg);
  		-moz-transform   : rotate(-45deg);
  		transform        : rotate(-45deg);
	}

	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
  		top: 16px;
  		background :#fff;
  		-webkit-transform: rotate(45deg);
  		-moz-transform   : rotate(45deg);
  		transform        : rotate(45deg);
	}

	nav.globalMenuSp {
  		position: fixed;
  		z-index : 2;
  		top  : 0;
  		left : 0;
  		color: #fff;
  		background: rgba(135,172,117,0.7);
  		text-align: center;
  		width: 100%;
  		opacity: 0;
  		transition: opacity .6s ease, visibility .6s ease;
	}

	nav.globalMenuSp ul {
  		margin: 0 auto;
  		padding: 60px;
  		width: 100%;
	}

	nav.globalMenuSp ul li {
  		list-style-type: none;
  		padding: 30px;
  		width: 100%;
  		transition: .4s all;
	}
	nav.globalMenuSp ul li:last-child {
  		padding-bottom: 100px;
	}
	nav.globalMenuSp ul li:hover{
  		background :#ddd;
	}

	nav.globalMenuSp ul li a {
  		display: block;
  		color: #fff;
  		padding: 1em 0;
  		text-decoration :none;
	}

/* このクラスを、jQueryで付与・削除する */
	nav.globalMenuSp.active {
  		opacity: 100;
	}}

/* tel ------
----------------------------------*/
.tel {
	padding: 5px;
}
.tel-1 {
	font-size: 87.5%;
	color: #87AC75;
}
.tel-2 {
	font-size: 120%;
	text-align: center;
	letter-spacing: 2px;
	font-weight: bolder;
}
@media (max-width: 640px){
	.tel {
		padding-right: 42px;
	}
	.tel-1 {
		font-size: 75%;
	}
	.tel-2 {
		font-size: 87.5%;
	}
}

/* toTop */
.toTop a {
	display: block;
	width: 60px;
	height: 60px;
	backgroud-color: rgba( 91, 188, 0, 6);
	text-align: center;
	position: fixed;
	right: 10px;
	bottom: 30px;
	z-index: 100;
	text-decoration: none;
}
.toTop a:hover {
	border: none;
	text-decoration: none;
}

@media (max-width: 640px){
	.toTop img {
		width: 30px;
		height: 30px;
	}
	.toTop a{
		bottom: 3px;
		right: 3px;
	}
}


/* main-photo
--------------------------- */
#main {
	padding-bottom: 2%;
}
@media (max-width: 640px){
	html {
		font-size: 87.5%;
	}
	.ttl {
		font-size: 87.5%;
	}
}
.img-sp {
    display: none;
}

@media screen and (max-width:640px) {
    .img-pc {
        display: none;
    }

    .img-sp {
        display: block;
    }
}

/* footer
--------------------------- */
footer {
	background-color: #C2D5B9;
}
.footer {
	display: flex;
	padding: 5% 5%;
	justify-content: center;
}
.footer img {
	width: 400px;
	padding: 20px;
}
.footer a:hover {
	color: #fff;
}

@media (max-width: 640px){ 
	.footer {
		display: block;
		padding: 10px;
	}
	.footer p {
		text-align: center;
	}
	.footer-menu1 {
		display: flex;
		text-align: center;
	}
	nav li {
		padding: 5px;
	}
	nav ul {
		justify-content: center;
	}
	.footer-menu2 {
		text-align: center;
	}
}


/* about
--------------------------- */
#about {
	background-color: #D6E3D0;
}

#about .about-container{
    max-width:1000px;
    margin:0px auto;
    padding:30px 0px;
}
#about .about-container .about-content {
        /*display: flex;*/
        align-items: center;
        justify-content: center;
		text-align: center;
}
#about .about-item {
	/*width: 85%;*/
	line-height: 2.5;
	margin: 0 auto;
	font-size: 87.5%;
}

#about .about-img{
	max-width:80%;
    margin:0px auto;
	border-radius:100%;
}

@media (min-width: 992px) { 
	#about .about-container .about-content {
		display: flex;
    	align-items: center;
        justify-content: center;
		text-align: center;
	}
	#about .about-content-item {
        width:50%;
    }
}

/* point
--------------------------- */
#point {
	padding-bottom: 5%;
	margin: 0 10%;
}

#point .point-item {
	display: flex;
	text-align: center;
	padding: 10px;
	align-items: center;
}
#point .point-img {
	width: 500px;
	padding: 50px 20px 20px;
}
#point .point-p {
	width: 850px;
	padding: 10px;
	text-align: justify;
	line-height: 1.8;
}
#point .point-ttl {
	font-size: x-large;
	padding: 10px 0;
}
.point-img2-sp {
	display: none;
}
@media (max-width: 640px){
	#point .point-item {
		display: block;
		width: 100%;
	}
	.point-img2-pc {
        display: none;
    }
	.point-img2-sp {
        display: block;
		margin: 0 auto;
    }
	#point .point-img {
		width: 100%;
		padding: 0;
	}
	#point .point-p {
		width: 100%;
	}
	#point .point-ttl {
		text-align: center;
		font-size: 125%;
	}
}

#spot {
	text-align: center;
	margin: 5%;
}
#spot .container{
    max-width:1000px;
    margin:0px auto;
    padding:5% 0;
}
#spot .content .list {
        display: flex;
        justify-content: center;
    }
#spot .content .list-item {
    margin:10px 0px;
    padding:0px 30px;
    text-align:center;
}
#spot .content .list-item {
        margin:0px;
        width:calc(100% / 3);
    }
#spot .content .list-item .image{
    display:block;
    width:100%;
    max-width:300px;
    margin:0px auto 20px auto;
    border-radius:100%;
}
.spot-ttl {
	color: #87AC75; 
	font-size: large; 
	letter-spacing: 5px;
}

@media (max-width: 640px){ 
	#spot {
		margin: 0 auto;
	}
	#spot .content .list{
		display: flex;
	}
	#spot .content .list-item .image {
		width: 100px;
		margin: 0 auto;
		text-align: center;
	}
	#spot .content .list-item {
		padding: 0 10px;
		justify-content: center;
		width: 100%;
	}
	.text {
		font-size: 76.5%;
	}
	.spot-ttl {
		font-size: 50.5%;
		letter-spacing: normal;
	}
}

/* spec&price
--------------------------- */
#spec {
	background-color: #D6E3D0;
}

#spec .spec-container{
    max-width:1000px;
    margin:0px auto;
    padding:30px 0px;
}
#spec .spec-container .spec-content {
        display: flex;
        align-items: center;
        justify-content: center;
		text-align: center;
}
@media (max-width: 640px){
	#spec .spec-container .spec-content {
        display: block;
	}
}
#spec .spec-item {
	width: 100%;
	line-height: 2.5;
}

#spec .spec-img{
	max-width:60%;
    margin:0px auto;
	border-radius:100%;
}
.spec-price {
	margin: 20px;
}
.spec-price a {
	background-color: #fff;
	padding: 10px 60px;
	border-radius: 50px;
}

.spec-price a:hover {
	color: #87AC75;
}

/* contact
--------------------------- */
#contact {
	padding-bottom: 5%;
	margin: 0 10%;
	text-align: center;
}

.toiawase {
	margin: 30px;
	
}
.toiawase img {
	width: 500px;
}
/*.toiawase a {
	background-color: #C2D5B9;
	padding: 15px 50px;
	border-radius: 50px;
}
.toiawase a:hover {
	background-color: #87AC75;
	color: #171A15;
}*/
.toiawase a[href^="tel:"]{
    	pointer-events: none;
  	}
@media(max-width: 640px){
	.toiawase {
		font-size: 87.5%;
		margin: 30px 0 10px;
	}
	
	
}


#contact .p-pc {
	padding: 15px;
	margin-bottom: 15px;
	line-height: 1.9;
}
#contact .p-mb {
	display: none;
}

/*#contact .botton {
	background-color: #293250;
	border-radius: 50px;
	padding: 18px 32px;
	text-decoration: none;
	color: #fff;
}
#contact .botton:hover {
	background-color: #394C8E;
	text-decoration: none;
}*/

@media (max-width: 640px){
	#contact .p-mb {
		display: block;
		font-size: 75%;
		margin: 10px 10px 30px;
		line-height: 1.9;
	}
	#contact .ttl {
		margin: 0;
	}
	#contact .p-pc {
		display: none;
	}
}

.Form {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
	.radio {
		 font-size: 81.3%;
		padding: 10px;
	}
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 8px;
  margin-left: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #C2D5B9;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.radio {
	text-align: left;
}
.Form-Item-Radio {
	margin-left: 40px;
	margin-right: 15px;
	padding-left: 1em;
	padding-right: 1em;
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 100px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #C2D5B9;
  font-size: 20px;
}
.Form-Btn:hover {
	background-color: #87AC75;
	text-decoration: none;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}


/* footer-photos
--------------------------- */
#footer-photos {
	padding: 5% 0;
	width: 100%;
}
#footer-photos .sns-img {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 10px;
	margin: 0 auto;
}

@media (max-width: 640px){
	#footer-photos .sns-img {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 10px;
	margin: 0 auto;
}}