@charset "UTF-8";

/*　全てのページへの適用　*/
html * {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background-color: #fff;
}

h1, h2, h3, h4, h5, h6{
	font-weight:normal;
	margin: 0;
	padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.wrapper {
	width: 1000px;
	max-width:100%;
	margin: 0 auto;
}

.container-h1 {
	display: flex;
	align-items: center;
	width: 100%;
	height:50px;
	background-color: #5ac86e;
	padding: 10px 0 10px 0;
}
.container-h1-text{
	text-align: justify;
	width: 1000px;
	color: #fff;
	font-size: 15px;
	margin: 0 auto 0 auto;
	padding: 10px 0 10px 0;
}

.container-h2 {
	width: 100%;
	height:40px;
	background-color: #fcf8ef;
	padding: 10px 0 10px 0;
}
.container-h2-text{
	display: flex;
    justify-content: flex-end;
	width: 1000px;	
	color: #666666;
	font-size: 15px;
	margin: 0 auto 0 auto;
	padding: 0px 0 0px 0;
}

.container-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1000px;
	margin: 30PX auto 30px auto;
	text-align: center;
	align-items:flex-end;
	color: #666666;
	font-size: 12px;
}

.container-f0 {
	width:1000px;
	height:200px;
	margin:0 auto 0 auto;
	text-align: center;
	background-image: url("../image/machi.png");
	
	transition: opacity .7s;
  }
.container-f1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: #fcf8ef;
	text-align: center;
	width: 100%;
	height: 300px;
}
.container-f1-text {
	width: 1000px;
	text-align: center;
	line-height: 25px;
	font-size: 16px;
	margin: 0 auto 0 auto;
	padding: 100px 0 100px 0;
}
.container-f2 {
	background-color: #5ac86e;
	text-align: center;
	width: 100%;
	height: 550px;
	margin: 0 auto 0 auto;
	padding: 120px 0 100px 0;
	font-size: 16px;
	line-height: 25px;
	color: #fff;
}
.container-f2-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	width: 1000px;
	margin: 0 auto 0 auto;
	padding: 60px 0 100px 0;
	font-size: 15px;
	color: #fff;
}
.container-copy {
	background-color: #46bc50;
	text-align: center;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 13px;
	color: #fff;
}



/* ナビゲーション */
nav {
	width: 1000px;
	margin: 0 auto 50px auto;
	position: relative;
}
nav ul {
	list-style-type: none; /* リストスタイル削除 */
	padding-left: 0; /* リスト分40px左側詰め */
	display: flex;
 	justify-content: space-between;
}
nav li {
	width: 167px;
	border-collapse: collapse; /* 線を重ねる */
	border-left: 1px solid #999;
	border-right: 1px solid #999;
}

/* ナビホバー */
li a img{
	position:relative;
	top:0;
}
li a img:hover{
	top:-10px;
	transition:0.3s;
}

.navi01{
	width:165px;
	height:50px;
	background-image: url("../image/nav01.png");
  }
.navi01:hover{
	background-image:url("../image/nav01_on.png");
	opacity: 1;
	transition: opacity .6s;
  }

.navi02{
	width:165px;
	height:50px;
	background-image: url("../image/nav02.png");
  }
.navi02:hover{
	background-image:url("../image/nav02_on.png");
	opacity: 1;
	transition: opacity .6s;
  }

.navi03{
	width:165px;
	height:50px;
	background-image: url("../image/nav03.png");
  }
.navi03:hover{
	background-image:url("../image/nav03_on.png");
	opacity: 1;
	transition: opacity .6s;
  }

.navi04{
	width:165px;
	height:50px;
	background-image: url("../image/nav04.png");
  }
.navi04:hover{
	background-image:url("../image/nav04_on.png");
	opacity: 1;
	transition: opacity .6s;
  }

.navi05{
	width:165px;
	height:50px;
	background-image: url("../image/nav05.png");
  }
.navi05:hover{
	background-image:url("../image/nav05_on.png");
	opacity: 1;
	transition: opacity .6s;
  }

.navi06{
	width:165px;
	height:50px;
	background-image: url("../image/nav06.png");
  }
.navi06:hover{
	background-image:url("../image/nav06_on.png");
	opacity: 1;
	transition: opacity .6s;
  }



/* トップイメージ画像 */
.topimage-slider{
	position: relative; /* 相対位置 */
	width: 1000px; /* 必要に応じて調整 */
	height: 700px;
	overflow: hidden;
	margin: 0 auto 0 auto;
}
.topimage-slider img {
	position: absolute;/* 絶対位置 */
    width: 100%;
    height: 100%;
    opacity: 0; /* 初期状態は非表示 */
    animation: slideAnimation 4s infinite steps(1, end);/* 4秒でループ  */
    left: 0px;
}

.topimage-slider img:nth-child(1) { animation-delay: 0s; }
.topimage-slider img:nth-child(2) { animation-delay: 2s; }

@keyframes slideAnimation {
	0% { opacity: 1; } /* 不透明度 */
	50% { opacity: 0; } 
	100% { opacity: 0; }
}

/* フィギュア（キャプション） */
figure {
	display: inline-block;
	margin: 0px 0px 0px 0px;
}
figcaption {
	font-size: 9pt;
	text-align: center;
	margin: 5px 0px 0px 0px;
}


/* タイトル */
.container-title {
	width: 1000px;
	text-align: center;
	font-size:1em;
	color: #999;
	margin: 60px auto 30px auto;
}
.container-title h1 {
	font-family:  "ヒラギノ角ゴ ProN W6";
	font-size:1.8em;
	line-height:20px;
	color: #999;
	margin: 20px auto 20px auto;
	padding: 25px;
	display: inline-block; /* 文字上にだけボーダーを引く */
	border-bottom: 2px dashed;
	border-color: #5ac86e;
}
.container-title p {
	font-family:  "Arial unicode ms";
	font-size:1.2em;
	color: #5ac86e;
	margin: 0px auto 50px auto;
}



/* 波波境界線トップ */
.wave-top{
	position: relative;
	width: 100%;
	height: 20vh;
	background-image: url(../image/wave-top.svg); /* 背景画像 */
	background-size: cover; /* 画像を横幅いっぱいに表示 */
	background-position: center; /* 画像を中央に配置 */
	background-repeat: no-repeat;
	margin: 0px 0px 0px 0px;
	}

/* 波波境界線ボトム */
.wave-bottom{
	position: relative;
	width: 100%;
	height: 20vh;
	background-image: url(../image/wave-bottom.svg); /* 背景画像 */
	background-size: cover; /* 画像を横幅いっぱいに表示 */
	background-position: center; /* 画像を中央に配置 */
	background-repeat: no-repeat;
	margin: 0px 0px 0px 0px;
	}

.wave-area-backcolor {
	width: 100%;
	background-color:#f0faf5;
	text-align: center;
	margin: 0px auto 0px auto;
	padding: 0 0 0 0;
	overflow: hidden;
}

/* フレックスコンテナここから */
.container {
	display: flex;
	flex-wrap: wrap;
	width: 1000px;
	justify-content:space-between;
	align-items: center;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #666;
	margin: 30px auto 30px auto;
}
.container h1{
	font-size: 2.0rem;
	line-height: 1.6;
	text-align: center;
	color: #666;
	margin: 50px auto 0px auto;
}
.container p{
	font-size: 1.2rem;
	line-height: 1.6;
	text-align: center;
	color: #666;
	margin: 0px auto 0px auto;
}
.container-center {
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	width: 1000px;
	align-items: center;
	margin: 30px auto 30px auto;
}
.container-item p{
	font-size: 1rem;
	line-height: 1.3;
	text-align: center;
	color: #666;
	margin: 10px auto 50px auto;
}




.box-infobanner {
	display: flex;
	flex-wrap: wrap;
	width: 800px;
	text-align: center;
	justify-content: space-between;
	margin: 150px auto 150px auto;
}



.box-backcolor {
	background-color:#F3EBDC;
	text-align: center;
	width: 100%;
	margin: 0 auto 0 auto;
	padding: 0 0 0 0;
}



/* テーブルデザイン*/
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #555; /* 文字をやや薄いグレーに */
}

.schedule-table td {
  border: 1px solid #ccc; /* 表の区切り線 */
  padding: 15px 20px;
  vertical-align: middle;
	background: #ffffff;     /* 画像のような淡い背景（任意） */
}

.schedule-table tr td:first-child {
  width: 25%;              /* 左側列を固定幅に近づける */
  text-align: center;      /* 時間を中央揃え */
  background: #f9f9f9;     /* 画像のような淡い背景（任意） */
}

.schedule-table tr td:last-child {
  width: 75%;
  text-align: left;
}




/* フッターインデント矢印 */
.list_triangle {
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.list_triangle > li {
	color:#fff;
	font-size: 13px;
	line-height: 200%;
    position: relative;
    padding: 0px 0px 0px 1em;
}
.list_triangle > li::before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-60%);
    width: 0px;
    height: 0px;
    border: 0.3em solid transparent;
    border-left: 0.4em solid #fff;
    content: "";
}




/* トップへ戻るボタン */
#pagetop {
    position:fixed;
    bottom:100px; /* ボタンの位置下から */
    right:30px; /* ボタンの位置右から */
    color: #ffffff; /* 文字色 */
    font-size:0px;
    text-decoration:none;
    background: linear-gradient(
    -45deg,
    #fff 25%,
    #f4f4ed 25%, #f4f4ed 50%,
    #fff 50%, #fff 75%,
    #f4f4ed 75%, #f4f4ed
  );
  background-size: 0px 0px; 
  border-radius: 50%; /* ボタンの丸み */
  opacity: 1.0; /* ボタンの透明度 */
  z-index: 99;
}
/* トップへ戻るボタン：ホバー時 */
#pagetop:hover {
    color: #ffffff; /* 文字色 */
    opacity: 0.7; /* ボタンの透明度 */
}
#pagetop img {
 width:100px;
 height:100px;
}


/* フェードイン */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 300ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* ズームイン */
.anim-box.zoomin.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* ふわふわアニメーションここから */
.fuwafuwa {
    animation-name: fuwafuwa; /* アニメーションの名前 */
	animation-duration: 2s; /* アニメーションの再生時間 */
	animation-iteration-count: infinite; /* アニメーションの再生回数 */
	animation-timing-function: ease-in-out; /* アニメーションが変化する速度 */
}
/* ふわふわの動き */
@keyframes fuwafuwa {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
}





/* フォームここから */
.Form {
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
	max-width: 620px;
  }
  @media screen and (max-width: 768px) {
	.Form {
	  margin-top: 40px;
	}
  }
  .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: 768px) {
	.Form-Item {
	  padding: 16px 14px 16px 14px;
	  flex-wrap: wrap;
	}
  }
  .Form-Item:nth-child(5) {
	border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
	width: 100%;
	max-width: 190px;
	text-align: left;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 15px;
  }
  @media screen and (max-width: 768px) {
	.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: 768px) {
	.Form-Item-Label.isMsg {
	  margin-top: 0;
	}
  }
  /* 必須マーク部分 */
  .Form-Item-Label-Required {
	border-radius: 6px;
	margin-right: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 48px;
	display: inline-block;
	text-align: center;
	background: #5ac86e;
	color: #fff;
	font-size: 14px;
  }
  @media screen and (max-width: 768px) {
	.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: 20px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #eaedf2;
	font-size: 18px;
  }
::placeholder {
  color: #b6b6b6;
}
  @media screen and (max-width: 768px) {
	.Form-Item-Input {
	  margin-left: 0;
	  margin-top: 18px;
	  height: 40px;
	  flex: inherit;
	  font-size: 15px;
	}
  }
  .Form-Item-Textarea {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 20px;
	padding-left: 1em;
	padding-right: 1em;
	height: 216px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #eaedf2;
	font-size: 16px;
  }
  @media screen and (max-width: 768px) {
	.Form-Item-Textarea {
	  margin-top: 18px;
	  margin-left: 0;
	  height: 200px;
	  flex: inherit;
	  font-size: 15px;
	}
  }
  /* 送信ボタン */
  .Form-Btn {
	border-radius: 6px;
	margin: 35px auto 60px auto;
	padding: 15px 0 10px 0;
	width: 200px;
	display: block;
	letter-spacing: 0.05em;
	border: none;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.6); 
	background: #5ac86e;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
  }
  @media screen and (max-width: 480px) {
	.Form-Btn {
	  margin-top: 24px;
	  padding-top: 8px;
	  padding-bottom: 8px;
	  width: 160px;
	  font-size: 16px;
	}
  }






/* =================== スマートフォン向けレスポンシブここから ==================== */

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

body {
	width: 100% ; /* 最大の横幅 */
	margin: 0 auto;
}
	
/* 全体 - ナビゲーション */
img {
	max-width:100%;
	height: auto;
	vertical-align: bottom;
	position: relative;
}
.resizeimage img { width: 100%; }


/* googlemapレスポンシブ */
.google_map{
    position:relative;
    width:100%;
    height:0;
    padding-top:75%;
}
.google_map iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.wrapper {
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px 5px 20px 5px;
	max-width: 100% ;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-h1 {
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px 5px 0px 5px;
	max-width: 100% ;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-h1-text {
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px 5px 0px 5px;
	max-width: 100% ;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-h2 {
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px 5px 0px 5px;
	max-width: 100% ;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-h2-text {
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px 5px 0px 5px;
	max-width: 100% ;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-top {
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px 5px 20px 5px;
	max-width: 100% ;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}

/* ナビゲーションレスポンシブ */
nav {
	flex-wrap: wrap;
	justify-content: center;
	max-width: 100% ;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 15px;	/* 右端からの距離 */
}
nav ul {
	flex-wrap: wrap;
	justify-content: center;
}
nav ul li {
	width: auto;
	height: auto ;
	margin: 0 10px 0 10px;
}


.topimage-slider {
	flex-wrap: wrap;
	justify-content:space-around;
	max-width: 100%;	/* 最大の横幅 */
	width: auto;		/* 高さは0にする */
	height: 300px;		/* 高さは0にする */
	text-align: center;
	margin: 20px auto 20px auto;
}
.container {
	flex-wrap: wrap;
	justify-content:space-around;
	max-width: 100%;	/* 最大の横幅 */
	width: auto;		/* 高さは0にする */
	text-align: center;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
.container-center {
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px 5px 20px 5px;
	max-width: 100% ;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-f1 {
	flex-wrap: wrap;
	justify-content: center;
	max-width: 100%;	/* 最大の横幅 */
	width: 100%;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.container-f2 {
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 0 0;
	max-width: 100%;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-f2-text {
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 0 0;
	max-width: 100%;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-copy {
		flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 0 0;
	max-width: 100%;	/* 最大の横幅 */
	width: auto;
	height: auto ;		/* 高さは0にする */
	text-align: center;
	padding-right: 0px;
}
.container-title {
	flex-wrap: wrap;
	justify-content: center;
	width: auto;
	max-width: 100% ;	/* 最大の横幅 */
	height: auto ;		/* 高さは0にする */
	margin: 20px 5px 20px 5px;
	text-align: center;
	padding-right: 0px;
}
.container-title h1 {
	flex-wrap: wrap;
	justify-content: center;
	width: auto;
	max-width: 100% ;	/* 最大の横幅 */
	height: auto ;		/* 高さは0にする */
	margin: 20px 5px 20px 5px;
	text-align: center;
	padding-right: 0px;
}
.container-title p {
	flex-wrap: wrap;
	justify-content: center;
	width: auto;
	max-width: 100% ;	/* 最大の横幅 */
	height: auto ;		/* 高さは0にする */
	margin: 20px 5px 20px 5px;
	text-align: center;
	padding-right: 0px;
}
.box-infobanner {
	flex-wrap: wrap;
	justify-content: center;
	width: auto;
	max-width: 100% ;	/* 最大の横幅 */
	height: auto ;		/* 高さは0にする */
	margin: 20px 5px 20px 5px;
	text-align: center;
	padding-right: 0px;
}

.list_triangle{
	flex-wrap: wrap;
	justify-content: center;
	width: auto;
	max-width: 100% ;	/* 最大の横幅 */
	height: auto ;		/* 高さは0にする */
	margin: 20px 5px 20px 5px;
	text-align: center;
	padding-right: 0px;
}
	
}
