@charset "utf-8";
/* ▼▼▼ CSS（ここから）（※2） ▼▼▼ */
div.hamburger-menu {
	display: none;						/* 初期状態で非表示にする場合は「none」を設定 */
}
@media screen and (max-width: 760px) {
	div.hamburger-menu {
		display: block;
	}
}
div.hamburger-menu .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgba(0,0,0,0.3);
	cursor: pointer;
	border-radius: 10px;
}
div.hamburger-menu .menu-btn span,
div.hamburger-menu .menu-btn span:before,
div.hamburger-menu .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background-color: #ffffff80;
    position: absolute;
}
div.hamburger-menu .menu-btn span:before {
    bottom: 10px;
}
div.hamburger-menu .menu-btn span:after {
    top: 10px;
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
div.hamburger-menu #menu-btn-check {
    display: none;
}
div.hamburger-menu #menu-btn-check:checked ~ .menu-content {
    left: calc(100% - 220px);			/* メニュー領域の引き出し位置（0にすると左端まで） */
}
div.hamburger-menu .menu-content {
	width: 100%;
	height: 100vh;						/* autoにするとコンテンツ領域分までに */
    position: fixed;
    top: 0;
    left: 100%;
	overflow: auto;
    z-index: 80;
    padding: 0 10px;
    background-color: rgba(0,0,0,0.7);
    transition: all 0.5s;				/* メニュー領域の引き出しスピード */
}
div.hamburger-menu .menu-content ul {
	display: block;
	width: 200px;						/* メニュー領域の横幅を設定（100%にすると横幅いっぱい） */
    padding-top: 80px;
}
div.hamburger-menu .menu-content ul li {
    border-top: solid 1px #ffffff80;
    list-style: none;
}
div.hamburger-menu .menu-content ul li:last-child {
    border-bottom: solid 1px #ffffff80;
}
div.hamburger-menu .menu-content ul li a {
	display: block;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
	font-weight: bold;
    padding: 10px 0px;
    text-align: center;
}
div.hamburger-menu .menu-content ul li a span {
	font-size: 90%;
	font-weight: normal;
}
div.hamburger-menu .menu-content ul li a:hover {
	opacity: 0.6;
}
/* ▲▲▲ CSS（ここまで） ▲▲▲ */
/* ▼▼▼ CSS（ここから）（※2） ▼▼▼ */
/* ページトップ（jQueryの基本形）の設定 */
#page-top {								/* スクロールボタンの配置位置 */
	width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    transform: translateY(100px);
}
@keyframes UpAnime{						/* スクロールボタンを上に上げるアニメーション */
	from {
		transform: translateY(100px);
	}
	to {
		transform: translateY(0);
	}
}
#page-top.UpMove {
	animation: UpAnime 0.5s forwards;
}
@keyframes DownAnime{					/* スクロールボタンを下に下げるアニメーション */
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(100px);
	}
}
#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}
#page-top a {							/* スクロールボタンの配置位置 */
	width: 50px;
    height: 50px;
    border-radius: 30px;
    background: #ffffff80;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page-top a span {							/* スクロールボタンのスタイル設定 */
	display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
#page-top a:hover{
	opacity: 0.6;
}
/* ▲▲▲ CSS（ここまで） ▲▲▲ */

body, h1, h2, p, ul {
    padding: 0;
    margin: 0;
    font-family: Noto Sans JP;
}
img {
    vertical-align: bottom;
    margin-top: 0px;
    text-align: center;
}
header {
    background-color: #333333;
    display: flex;
    margin-bottom: -10px;
}
nav {
    display: flex;
    text-align: right;
    margin-left: auto;
    margin-top: 10px;
    margin-right: 20px;
}
@media screen and (max-width: 760px) {
	nav {
		display: none;
	}
}
h1 {
    margin-left: 30px;
    padding-top: 10px;
    margin-bottom: 100px;
}
header nav li {
    list-style-type: none;
    margin-left: 40px;
    margin-top: 20px;
    margin-right: 20px;
}

.sec1 {
    display: flex;
    padding-top: 50px;
    justify-content: center;
    text-align: center;
    padding-bottom: 100px;
    padding-left: 100px;
    margin-top: 20px;
}
@media screen and (max-width: 760px){
	.sec1 {
	    display: block;
	    padding-left:0px;
	}
	.sec1 p{
	    text-align:center;
	}
	.sec1 p img{
		width: 100%;
    	height: auto;
	    margin: 0;
	}
}
.ctext {
    line-height: 50px;
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 50px;
    padding-right: 100px;
    padding-top: 30px;
}
.ctext h3 {
    line-height: 50px;
}
.concept {
    background-color: #998675;
    background-repeat: no-repeat;
    padding-top: 50px;
    background-image: url(../img/flower2.png);
    background-position: 0% 8%;
    color: #333333;
}
.menu {
    background-image: url(../img/flower6.png);
    background-repeat: no-repeat;
    background-position: 100% 6%;
    background-color: #BEB2A9;
    padding-top: 80px;
    padding-bottom: 0px;
    margin: 0 auto;
    text-align: center;
    display: block;
    color: #333333;
}
.mainimage {
    background-color: #333333;
    padding-top: 200px;
}
.toptext {
    margin-bottom: 100px;
    margin-left: 40px;
}
.toptext2 {
    width: 100%;
    height: auto;
	max-width: 819px;
}
.toptext3 {
    padding: 0 40px 0 0;
}
.topflower {
    margin-left: 0px;
    text-align: right;
    margin-right: 20px;
}
.topflower2 {
    max-width: 100%;
    height: auto;
}
.mainimage img  {
    margin-right: 0px;
}
.mtext {
    text-align: left;
    line-height: 48px;
    display: inline-block;
    padding: 30px 20px 100px 20px;
}
.sec2 {
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    height: auto;
}
@media screen and (max-width:760px){
	.sec2 {
	    display: block;
	}
	.sec2 p{
	    text-align: center;
	}
	.sec2 .sec22{
		padding-bottom: 40px;
	}
    .sec2 .sec22 img{
		width: 100%;
	    height: auto;
	    margin: 0;
	}
}
.sec2 img {
    margin-right: 20px;
    margin-left: 20px;
}
.gtext {
    text-align: center;
}
.sec3 {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/flower5.png);
    background-repeat: no-repeat;
    background-position: 0% 100%;
}
@media (max-width:760px){
	.sec3 {
	    display: block;
	}
	.sec3 p{
	    text-align: center;
	}
	.sec3 .sec33{
	    padding-bottom: 40px;
	}
    .sec3 .sec33 img{
		width: 100%;
	    height: auto;
	    margin: 0;
	}
}
.sec3 img {
    margin-right: 20px;
    margin-left: 20px;
}
/* スライドする要素 */
.content {
}
.content:nth-child(1) {
    background-color: ;
}
.content:nth-child(2) {
  background-color: ;
}
.content:nth-child(3) {
  background-color: ;
}
.content:nth-child(4) {
  background-color: ;
}
/* スライドレールの枠 */
.content {
    list-style-type: none;
    margin-left: 40px;
    margin-top: 20px;
    margin-right: 20px;
} 
.wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 340px;
    margin-bottom: 0px;
    background-image: url(../img/flower8.png);
    background-repeat: no-repeat;
    background-position: 100% 90%;
    padding-bottom: 150px;
    padding-top: 50px;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.gallery {
    background-color: #A88C74;
    background-image: url(../img/flower4.png);
    background-repeat: no-repeat;
    background-position: 0% 5%;
    padding-top: 100px;
    color: #333333;
}
/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
  animation: loop-slide 20s infinite linear 1s both;
}
.info {
    background-image: url(../img/flower7.png);
    background-repeat: no-repeat;
    background-position: 100% 70%;
    line-height: 40px;
    margin-top: 100px;
    color: #333333;
}
.itext {
    margin-left: 100px;
    margin-bottom: 100px;
    margin-top: 0px;
    padding-top: 30px;
}
.footer {
    text-align: center;
    background-color: #333333;
    color: #998675;
    background-image: url(../img/flower55.png);
    background-repeat: no-repeat;
    background-position: 10% 100%;
}
.gtext h3 {
    margin-bottom: 50px;
    line-height: 30px;
    letter-spacing: 2px;
}
.info .itext p {
}
.mtext h4 {
    border-bottom: thin solid #333333;
}
.itext h4 {
    border-bottom: thin solid #333333;
    max-width: 400px;
}
@media screen and (max-width: 760px) {
	.itext h4 {
	    max-width: 200px;
	}
}
@media (max-width:760px){
	.ctext {
	    padding-top: 0px;
	    padding-right: 0px;
	    padding-left: 0px;
	    padding-bottom: 0px;
	}
	.sec1 .ctext h3 {
	    padding-top: 0px;
	    padding-right: 0px;
	    padding-left: 0px;
	    padding-bottom: 0px;
	    margin-bottom: -20px;
	}
	.gtext h3 {
	    font-size: smal;
	}
}
