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

#scroll_wrap {
	width: 45px;
	position: fixed;
	right: 5%;
	bottom: 20px;
	z-index: 999;
}

.scroll_nav {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.circle {
	width: 45px;
	height: 45px;
	margin-top: 8px;
	margin-bottom: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	display: flex;
	align-items: center;
}

.arrow-up {
 	display: block;
 	vertical-align: middle;
 	color: #333;
 	line-height: 1;
 	position: relative;
 	width: 1px;
 	height: 1em;
	background: currentColor;
	left: 22px;
}

.arrow-up::before {
 	content: '';
 	width: 0.8em;
 	height: 0.8em;
 	border: 1px solid #333;
 	border-left: 0;
 	border-bottom: 0;
 	transform: rotate(-45deg);
 	transform-origin: top right;
 	position: absolute;
 	top: -0.05em;
 	right: 50%;
 	box-sizing: border-box;
}

.mail_btn {
	display: block;
 	position: relative;
	top: -2px;
	left: 11px;
}

/* ハンバーガーメニュー */
.ham_nav {
	display: none;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .ham_nav {
	display: block;
	}
}

.hamburger {
	width: 30px;
	height: 30px;
	opacity: 1;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 8px ;
	top: 8px ;
	z-index: 999;
	box-sizing: content-box;
}
	
.hamburger:hover {
	cursor: pointer;
}
	
.hamburger span {
	width: 25px;
	height: 2px;
	background: #333333;
	position: absolute;
	transition: 0.3s ease-out;
}
	
.hamburger span:nth-of-type(1) {
	top: 15px;
}
	
.hamburger span:nth-of-type(3) {
	bottom: 15px;
}
	
/* ハンバーガーメニューにactiveクラスがついたときのスタイル */
.hamburger.active span:nth-of-type(1) {
	transform: translateY(9px) rotate(-45deg);
	transition: 0.3s ease-out;
}
	
.hamburger.active span:nth-of-type(3) {
	transform: translateY(-9px) rotate(45deg);
	transition: 0.3s ease-out;
}
	
.hamburger.active span:nth-of-type(2) {
	opacity: 0;
}
	
/* メニュー */
.menu {
	width: 100% ;
	height: 100% ;
	background-color: rgba(255,255,255,0.9) ;
	color: #333333 ;
	font-size: 1.2em;
	text-align: center;
	position: fixed;
	padding-top: 20vh;
	opacity: 0;
	transition: .5s ease-out;
	z-index: -10;
}

.menu ul {
	width: 70%;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
}
	
.menu li {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #333333;
}
	
.menu a{
	color: #333333 ;
	transition: color 0.3s;
}

.menu img{
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
}
	
/* メニューにopenクラスがついたときのスタイル */
.menu.open {
	opacity: 1;
	transition: .5s ease-out;
	z-index: 998;
}


/* スクロールCSS */
.fade-in {
    opacity: 0;
    transition: all 1s ease;
}

.fade-in-up {
    transform: translate(0, 30px);
}

.fade-in-down {
    transform: translate(0, -30px);
}

.fade-in-left {
    transform: translate(-30px, 0);
}

.fade-in-right {
    transform: translate(30px, 0);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* ガイドライン */
.guid {
	width: 80px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 120px;
	border-top: 2px solid #CE888F;
	transform: scale(0, 1);
	transition: all 1s ease;
}

.guid.scroll-ani {
	transform: scale(1);
}

/* マージン */
.mb100 {
	margin-bottom: 100px;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .mb100 {
	margin-bottom: 60px;
	}
}

.mb200 {
	margin-bottom: 200px;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .mb200 {
	margin-bottom: 120px;
	}
}

/* フッター上部スペース */
.contents_space {
	height: 200px;
	content: "";
	background-color: #EEEEEE;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .contents_space {
	height: 100px;
	}
}

body {
	width: 100%;
	margin: 0;
	color: #333333;
	font-size: 16px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	letter-spacing: 0.1rem;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  body {
	width: 100%;
	margin: 0;
	color: #333333;
	font-size: 15px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	letter-spacing: 0.1rem;
	}
}

p {
	line-height: 1.7;
}

strong {
	font-weight: 400;
}

dd {
	line-height: 1.7;
}

a {
	color: inherit;
	text-decoration: none;
}

a:visited{
  color: inherit;
}

main {
	width: 100%;
}

section {
	contain: content;
	display: block;
}

header {
	width: 100%;
	height: auto;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
	background: rgba(255,255,255,0.7);
	position: fixed;
	display: block;
	z-index: 99;
	transition: .5s;
}

@media screen and (max-width: 768px){
  header {
	width: 100%;
	height: auto;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
	background: rgba(255,255,255,0.7);
	position: fixed;
	display: block;
	z-index: 99;
	transform: translateY(-100px);
	transition: .5s;
	}
}

.hide{
	transform: translateY(-60px);
	background: rgba(255,255,255,0.7);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .hide{
  	transform: translateY(0);
	background: rgba(255,255,255,0.7);
	}
}

header .contents {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: flex-end;
}

header h1 {
	font-size: 2rem;
	display: flex;
	margin:  0;
	position: relative;
	bottom: -5px;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  header h1 img {
	height: 30px;
	}
}

#g_nav {
	display: flex;
	flex-flow: column;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #g_nav {
	display: none;
	}
}

header nav ul {
	font-size: 1rem;
	display: flex;
	flex-flow: row;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

header nav .nav01 a {
	position: relative;
 	display: inline-block;
	margin-top: 15px;
	margin-left: 15px;
	text-decoration: none;
}

header nav .nav02 a {
	position: relative;
 	display: inline-block;
	margin-left: 50px;
	padding-top: 25px;
	padding-bottom: 5px;
	text-decoration: none;
}

header nav .nav02 a::after {
	width: 100%;
	height: 2px;
	background: #CE888F;
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

header nav .nav02 a:hover::after {
	transform: scale(1, 1);
	transform: translate3d(0, 0, 0);
}

#slider {
	width: 100%;
	height: 100vh;
	min-height: 400px;
	background-position: 50% 50%;
	color: #FFFFFF;
	margin: 0;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider {
	width: 100%;
	height: 90vh;
	min-height: 240px;
	background-position: 50% 50%;
	color: #FFFFFF;
	margin: 0;
	}
}

#slider .contents {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider .contents {
	width: 90%;
	max-width: 90%;
	margin: 0 auto;
	padding-left: 0;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	}
}

#slider .contents h1 {
	margin-bottom: .5rem;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

#slider .contents img.kiraku {
	width: 200px;
	margin-left: 1rem;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider .contents img.kiraku {
	width: 150px;
	margin-left: 1rem;
	}
}

#slider .contents strong.name {
	font-weight: 800;
	display: block;
	margin-top: 1rem;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}


/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider .contents strong.name {
	font-weight: 400;
	}
}

#slider .contents p {
	font-size: 1.2rem;
	font-weight: 800;
	margin-left: 1rem;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider .contents p {
	font-size: 1rem;
	font-weight: 400;
 }
}

#slider .arrow-Bottom {
	content: "";
	border-bottom: solid 1px #FFFFFF;
	border-right: solid 1px #FFFFFF;
	width: 24px;
	height: 24px;
	transform: rotate(45deg) translateX(-50%);
	display: block;
	position: absolute;
	bottom: 30px;
	left: 50%;
}

#instagram {
	width: 100%;
	background-color: #EEEEEE;
	margin-top: 0;
	padding-top: 100px;
	padding-bottom: 100px;
}

#instagram .contents {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

#instagram h2 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #instagram h2 {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	}
}

#gallery {
	width: 100%;
	background-color: #FCF5F5;
	margin-top: 0;
	padding-top: 100px;
	padding-bottom: 100px;
}

#gallery .contents {
	width: 90%;
	max-width: 1000px;
	max-height: 0;
	min-height: 372px;
	overflow-y: hidden;
	transition: all .5s ease;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #gallery .contents {
	width: 90%;
	max-width: 600px;
	}
}

#gallery h2 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #gallery h2 {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	}
}

#gallery .more {
	width: 20%;
	color: #CE888F;
	text-align: center;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
	border: 1px solid #CE888F;
	cursor: pointer;
	transition: all .3s ease;
}

#gallery .more:hover {
	color: #FFFFFF;
	background-color: #CE888F;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #gallery .more {
	width: 50%;
	}
}

#tokucho {
	width: 100%;
	margin-top: 0;
}

#tokucho .heading {
	width: 100%;
	height: 680px;
	background: url("../img/tokucho_header_img.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}

@media screen and (-webkit-min-device-pixel-ratio:2),
                  (min-resolution: 2dppx){
  #tokucho .heading{
    width: 100%;
	height: 680px;
	background: url("../img/tokucho_header_img@2x.jpg") no-repeat;
	background-position: center;
	background-size: cover;
  }
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #tokucho .heading {
	height: 90vh;
	background: url("../img/tokucho_header_img.jpg") no-repeat;
	background-position: center;
	background-size: cover;
	}
}

#tokucho .heading h2 {
	width: 50%;
	color: #FFFFFF;
	text-align: center;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
	border: 1px solid #FFFFFF;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	position: relative;
	transform: translateY(-50%);
	top: 50%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #tokucho .heading h2 {
	width: 70%;
	font-size: 1rem;
	}
}

#tokucho .contents {
	width: 90%;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

#tokucho .contents h3.encounter {
	color: #CE888F;
	font-size: 2rem;
	font-weight: 800;
	margin-top: 100px;
	margin-bottom: 40px;
	padding: 0 0 0 3rem;
	position: relative;
	background: url("../img/sakura_icon@2x.png") no-repeat;
	background-size: 36px;
	background-position: left;
	background-position-y: 5px;
}

#tokucho .contents h3.encounter::after{
	content: "ENCOUNTER";
	font-size: .5rem;
	display: block;
	font-weight: normal;
	margin-top: 5px;
}

#tokucho .wrap {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	margin: 100px auto;
}

#tokucho .box {
	width: 48%;
	margin: 0 1%;
	border: 1px solid #EEEEEE;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #tokucho .box {
	width: 90%;
	margin: 0 auto;
	border: 1px solid #EEEEEE;
	}
}

#tokucho .box dt.img {
	width: 100%;
	margin-bottom: 2rem;
}

#tokucho .box dt.title {
	font-size: 1.5rem;
	margin: 0 2rem;
	padding-left: 1rem;
	border-left: 5px solid #CE888F;
}

#tokucho .box dd {
	width: 100%;
	padding: 2rem;
	margin-left: 0;
}

#tokucho .flower_info {
	width: 90%;
	max-width: 980px;
	color: #FFFFFF;
	margin: 100px auto;
	padding: 3rem 5rem;
	background-color: #CE888F;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #tokucho .flower_info {
	width: 100%;
	padding: 3rem 2rem;
	}
}

#tokucho .flower_info h3 {
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 2rem;
}

#tokucho h4 {
	font-size: 1.5rem;
	text-align: center;
	margin: 2rem auto;
}

#tokucho ul {
	width: 90%;
	max-width: 980px;
	color: #CE888F;
	margin: 0 auto 100px auto;
	padding: 3rem 5rem;
	border: 1px solid #CE888F;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #tokucho ul {
	width: 100%;
	padding: 0 2rem;
	border: none;
	margin-bottom: 200px;
	}
}

#tokucho li {
	color: #CE888F;
	list-style: none;
	margin: 1rem auto;
	padding-left: 2rem;
	background: url("../img/sakura_icon@2x.png") no-repeat;
	background-size: 20px;
	background-position: left;
	background-position-y: 0;
}

#tokucho li a {
	padding-bottom: .5rem;
}

#tokucho li a:hover {
	border-bottom: 1px solid #CE888F;
}

#seisan .heading {
	width: 100%;
	height: 680px;
	background: url("../img/seisan_header_img.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}

@media screen and (-webkit-min-device-pixel-ratio:2),
                  (min-resolution: 2dppx){
  #seisan .heading{
    width: 100%;
	height: 680px;
	background: url("../img/seisan_header_img@2x.jpg") no-repeat;
	background-position: center;
	background-size: cover;
  }
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .heading {
	height: 90vh;
	background: url("../img/seisan_header_img.jpg") no-repeat;
	background-position: center;
	background-size: cover;
	}
}

#seisan .heading h2 {
	width: 50%;
	color: #FFFFFF;
	text-align: center;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
	border: 1px solid #FFFFFF;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	position: relative;
	transform: translateY(-50%);
	top: 50%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .heading h2 {
	width: 70%;
	font-size: 1rem;
	}
}

#seisan .wrap {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	margin: 100px auto;
}

#seisan .box {
	width: 48%;
	margin: 0 1%;
	border: 1px solid #EEEEEE;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .box {
	width: 90%;
	margin: 0 auto;
	}
}

#seisan .box dt.img {
	width: 100%;
	margin-bottom: 2rem;
}

#seisan .box dt.title {
	font-size: 1.5rem;
	margin: 0 2rem;
	padding-left: 1rem;
	border-left: 5px solid #CE888F;
}

#seisan .box dd {
	width: 100%;
	padding: 2rem;
	margin-left: 0;
}

#seisan .label_area {
	width: 90%;
	max-width: 750px;
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .label_area {
	width: 100%;
	flex-direction: column;
	}
}

#seisan .label_area img {
	width: 360px;
	height: 360px;
	border: 1px solid #FCF5F5;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .label_area img {
	width: 100%;
	max-width: 360px;
	max-height: 360px;
	margin-left: auto;
	margin-right: auto;
	border: none;
	}
}

#seisan .label_box {
	width: 360px;
	height: 360px;
	background-color: #FCF5F5;
	position: relative;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .label_box {
	width: 100%;
	max-width: 360px;
	max-height: 360px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FCF5F5;
	position: relative;
	}
}

#seisan .label_box dl {
	width: 100%;
	margin: 0;
	padding: 2rem 3rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .label_box dl {
	padding: 2rem;
	top: 45%;
	}
}

#seisan .label_box dt {
	color: #CE888F;
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 2rem;
	padding-left: .5rem;
	background: url("../img/label_arrow@2x.png") no-repeat;
	background-size: 32px;
	background-position: left;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .label_box dt {
	margin-bottom: 1rem;
	background: url("../img/label_arrow02@2x.png") no-repeat;
	background-size: 32px;
	background-position: left;
	}
}

#seisan .label_box dd {
	margin-left: 0;
}

#seisan .label_box dd a {
	width: 50%;
	color: #CE888F;
	text-align: center;
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
	padding: .5rem;
	border: 1px solid #CE888F;
	display: block;
	transition: all .3s ease;
}

#seisan .label_box dd a:hover {
	color: #FFFFFF;
	background-color: #CE888F;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #seisan .label_box dd a {
	margin-top: 1rem;
	}
}

#seisan .planting a {
	width: 90%;
	max-width: 980px;
	color: #FFFFFF;
	text-align: left;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 3rem;
	margin-left: auto;
	margin-right: auto;
	background: url("../img/ig_icon02@2x.png") no-repeat;
	background-position: 1rem 50%;
	background-size: 24px;
	background-color: #CE888F;
	display: block;
}

#seisan .planting a:hover {
	background-color: #D5A6AB;
}

#hanbai .heading {
	width: 100%;
	height: 680px;
	background: url("../img/hanbai_header_img.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}

@media screen and (-webkit-min-device-pixel-ratio:2),
                  (min-resolution: 2dppx){
  #hanbai .heading{
    width: 100%;
	height: 680px;
	background: url("../img/hanbai_header_img@2x.jpg") no-repeat;
	background-position: center;
	background-size: cover;
  }
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #hanbai .heading {
	height: 90vh;
	background: url("../img/hanbai_header_img.jpg") no-repeat;
	background-position: 70% 50%;
	background-size: cover;
	}
}

#hanbai .heading h2 {
	width: 50%;
	color: #FFFFFF;
	text-align: center;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 1em;
	border: 1px solid #FFFFFF;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	position: relative;
	transform: translateY(-50%);
	top: 50%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #hanbai .heading h2 {
	width: 70%;
	font-size: 1rem;
	}
}

#hanbai .wrap {
	width: 100%;
	max-width: 980px;
	display: flex;
	flex-wrap: wrap;
	margin: 100px auto 200px auto;
}

#hanbai .box {
	width: 48%;
	margin: 0 1%;
	padding: 2rem;
	border: 1px solid #EEEEEE;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #hanbai .box {
	width: 90%;
	max-width: 350px;
	margin: 0 auto 2rem auto;
	}
}

#hanbai .box dt.kojin {
	color: #FFFFFF;
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 2rem;
	padding: .5rem;
	background-color: #CE8866;
}

#hanbai .box dt.gyosha {
	color: #FFFFFF;
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 2rem;
	padding: .5rem;
	background-color: #CE888F;
}

#hanbai .box dd {
	width: 100%;
	margin-left: 0;
}

#hanbai .box dd a.kojin {
	width: 50%;
	color: #CE8866;
	text-align: center;
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
	padding: .5rem;
	border: 1px solid #CE8866;
	display: block;
	transition: all .3s ease;
}

#hanbai .box dd a.kojin:hover {
	color: #FFFFFF;
	background-color: #CE8866;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #hanbai .box dd a.kojin {
	width: 70%;
	}
}

#hanbai .box dd a.gyosha {
	width: 50%;
	color: #CE888F;
	text-align: center;
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
	padding: .5rem;
	border: 1px solid #CE888F;
	display: block;
	transition: all .3s ease;
}

#hanbai .box dd a.gyosha:hover {
	color: #FFFFFF;
	background-color: #CE888F;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #hanbai .box dd a.gyosha {
	width: 70%;
	}
}

#hanbai h3 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

#hanbai .shop_wrap {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 100px auto 50px auto;
}

#hanbai .shop_box {
	width: 31%;
	min-width: 300px;
	margin: 0 1% 2rem 1%;
	padding: 3rem;
	border: 1px solid #EEEEEE;
	background: url("../img/link_icon@2x.png") no-repeat;
	background-size: 24px;
	background-position: top 1rem right 1rem;
	transition: all .3s ease;
}

#hanbai .shop_box:hover {
	background-color: #FAFAFA;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #hanbai .shop_box {
	width: 90%;
	margin: 0 auto 2rem auto;
	padding: 2rem;
	}
}

#hanbai h3 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

#hanbai .shop_box h4 {
	font-size: 1.2rem;
	padding-left: 1rem;
	border-left: 5px solid #CE888F;
}

#hanbai .shop_box .label1 {
	color: #CE888F;
	font-size: .8rem;
	margin-right: .5rem;
	margin-bottom: 1rem;
	padding: .5rem;
	background-color: #FCF5F5;
	display: inline-block;
}

#hanbai .shop_box .label2 {
	color: #CE8866;
	font-size: .8rem;
	margin-right: .5rem;
	margin-bottom: 1rem;
	padding: .5rem;
	background-color: #F4E5DD;
	display: inline-block;
}

#hanbai .shop_box p {
	font-size: 1rem;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #hanbai .shop_box p {
	font-size: 1rem;
	}
}

#hanbai .shop_info {
	width: 90%;
	max-width: 980px;
	color: #CE888F;
	text-align: center;
	padding: 1rem;
	margin-left: auto;
	margin-right: auto;
	background-color: #FCF5F5;
}

#sekkei .heading {
	width: 100%;
	height: 680px;
	background: url("../img/sekkei_header_img.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}

@media screen and (-webkit-min-device-pixel-ratio:2),
                  (min-resolution: 2dppx){
  #sekkei .heading{
    width: 100%;
	height: 680px;
	background: url("../img/sekkei_header_img@2x.jpg") no-repeat;
	background-position: center;
	background-size: cover;
  }
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #sekkei .heading {
	height: 90vh;
	background: url("../img/sekkei_header_img.jpg") no-repeat;
	background-position: center;
	background-size: cover;
	}
}

#sekkei .heading h2 {
	width: 50%;
	color: #FFFFFF;
	text-align: center;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
	border: 1px solid #FFFFFF;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	position: relative;
	transform: translateY(-50%);
	top: 45%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #sekkei .heading h2 {
	width: 70%;
	font-size: 1rem;
	}
}

#sekkei .heading p {
	width: 90%;
	color: #FFFFFF;
	text-align: center;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
	position: relative;
	transform: translateY(-50%);
	top: 45%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #sekkei .heading p {
	top: 55%;
	}
}

#sekkei .casestudy {
	width: 100%;
	background-color: #FCF5F5;
	margin-top: 0;
	padding-top: 100px;
	padding-bottom: 100px;
}

#sekkei .casestudy .contents {
	width: 90%;
	max-width: 1000px;
	max-height: 0;
	min-height: 372px;
	overflow-y: hidden;
	transition: all .5s ease;
	margin-left: auto;
	margin-right: auto;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #sekkei .casestudy .contents {
	width: 90%;
	max-width: 600px;
	}
}

#sekkei .casestudy h3 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #sekkei .casestudy h3 {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	}
}

#sekkei .casestudy .more {
	width: 20%;
	color: #CE888F;
	text-align: center;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
	border: 1px solid #CE888F;
	cursor: pointer;
	transition: all .3s ease;
}

#sekkei .casestudy .more:hover {
	color: #FFFFFF;
	background-color: #CE888F;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #sekkei .casestudy .more {
	width: 50%;
	}
}

#contact {
	width: 100%;
	margin-top: 0;
	padding-top: 100px;
	padding-bottom: 100px;
}

#contact .contents {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

#contact h2 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #contact h2 {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	}
}

#contact p {
	width: 90%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
}

/* お問い合わせフォーム */
#Form {
	margin: 0 auto ;
	width: 90% ;
	max-width: 800px;
	text-align: left ;
}

#Form p {
	width: 100%;
	margin-bottom: 1rem;;
}
	
.Form-Item {
	border-top: 1px solid #CE888F;
	padding-top: .5rem;
	padding-bottom: .5rem;
	width: 100%;
	align-items: center;
}
	
.Form-Item:nth-child(5) {
	border-bottom: 1px solid #CE888F;
}
	
.Form-Item-Label {
	width: 100%;
	max-width: 800px;
	font-size: 1rem;
	margin-bottom: .5rem
}
	
.Form-Item-Label-Required {
	margin-right: .5rem;
 	padding: .5rem;
	display: inline-block;
	text-align: center;
	background: #CE888F;
	color: #fff;
	font-size: .8rem;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
}
	
.Form-Item-Input {
	border: 1px solid #CE888F;
	margin-bottom: 1rem;
	padding: 1rem ;
	width: 100%;
	background: #FCF5F5;
	color: #CE888F;
	font-size: 1rem;
}

textarea {
	appearance: none;
}
	
.Form-Item-Textarea {
	border: 1px solid #CE888F;
	height: 200px;
	padding: 1rem;
	width: 100%;
	max-width: 800px;
	background: #FCF5F5;
	color: #CE888F;
	font-size: 1rem;
}

.Form-Btn-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
}
	
.Form-Btn {
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	width: 30% ;
	display: inline-block;
	background: #CE888F;
	color: #fff;
	font-size: 1rem;
	border: 0 ;
	cursor: pointer;
}

.Form-Btn:active {
	opacity: .7;
}

.Form-Btn2 {
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	width: 20% ;
	display: inline-block;
	background: #CE8866;
	color: #fff;
	font-size: 1rem;
	border: 0 ;
	cursor: pointer;
}

.Form-Btn2:active {
	opacity: .7;
}

#link {
	width: 100%;
	margin-top: 0;
	padding-top: 100px;
	padding-bottom: 100px;
	transition: all .3s ease;
}

#link a:hover {
	background-color: #FAFAFA;
}

#link h2 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #link h2 {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	}
}

#link h3 {
	font-size: 2rem;
	font-weight: normal;
	margin-bottom: 1rem;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #link h3 {
	font-size: 1.5rem;
	margin-bottom: 0;
	}
}

#link ul {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

#link li a {
	margin-bottom: 2rem;
	display: flex;
	flex-wrap: wrap;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #link li a {
	width: 100%;
	margin-bottom: 0;
	padding-left: 0;
	flex-direction: column;
	}
}

#link li .wrap {
	width: 50%;
	position: relative;
	background: url("../img/link_icon@2x.png") no-repeat;
	background-size: 24px;
	background-position: top 1rem left 80%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #link li .wrap {
	width: 100%;
	position: relative;
	background-position: top 1rem right 1rem;
	}
}

#link li .wrap .info {
	padding-left: 2rem;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #link li .wrap .info {
	width: 80%;
	margin: 0 auto 2rem auto;
	padding-left: 0;
	position: relative;
	top: 0;
	transform: translate(0,0);
	}
}

#link li picture {
	width: 50%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #link li picture {
	width: 100%;
	}
}

#link li .info p {
	color: #CE888F;
}

footer {
	color: #FFFFFF;
	background-color: #CE888F;
}

footer a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
}

footer ul {
	border-top: 1px solid #FFFFFF;
	padding-left: 0;
	z-index: 2;
}

footer .contents {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
	display: flex;
	justify-content:space-between;
	/*border-left: 1px solid #FFFFFF;*/
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  footer .contents {
	width: 90%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	/*border-left: 1px solid #FFFFFF;*/
	}
}

footer .contents a {
	margin-right: 10px;
	display: inline-block;
}

footer .contents p {
	margin-top: 30px;
	margin-bottom: 30px;
}

footer .contents address {
	width: 50%;
	height: auto;
	min-height: 300px;
	font-style: normal;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  footer .contents address {
	width: 100%;
	height: auto;
	min-height: 300px;
	font-style: normal;
	margin-top: 60px;
	}
}

footer .contents nav {
	width: 40%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  footer .contents nav {
	width: 100%;
	display: none;
	padding-left: 0;
	padding-bottom: 60px;
	}
}

footer .button {
 	position: relative;
 	display: block;
 	padding: 10px;
 	border-bottom: 1px solid #FFFFFF;
 	color: #fff;
 	text-decoration: none;
	z-index: 2;
}

footer .button:hover {
 	color: #fff;
}

footer .button::before {
	content: "";
 	position: absolute;
 	top: 0;
 	right: 0;
 	bottom: 0;
 	left: 0;
 	z-index: -1;
 	background: #D5A6AB;
 	transform-origin: right top;
 	transform: scale(0, 1);
 	transition: transform .5s;
}

footer .button:hover::before {
 	transform-origin: left top;
 	transform: scale(1, 1);
}

footer .center_line {
	width: 100%;
	height: 30px;
	content: "";
	margin-top: 100px;
	border-right: 1px solid #FFFFFF;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  footer .center_line {
	width: 50%;
	height: 30px;
	content: "";
	margin-top: 100px;
	border-right: 1px solid #FFFFFF;
	}
}

footer .line {
	width: 100%;
	content: "";
	border-top: 1px solid #FFFFFF;
	margin-top: -10px;
	transform: scale(0, 1);
	transition: all 1s ease;
}

footer .line.scroll-ani {
	transform: scale(1);
}

footer small {
	width: 90%;
	max-width: 1200px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 80px;
}


/* 長尾美春桜 */
@media screen and (min-width: 769px){
  #top_pc {
	  width: 100%;
	  background: #FBFBFB ;
	  padding-top: 150px;
	  padding-bottom: 50px;
	  display: block;
  }
}

@media screen and (max-width: 768px){
  #top_pc {
	  display: none;
  }
}

#top_pc .contents {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

@media screen and (max-width: 768px){
  #top_sp {
	  width: 100%;
	  background: #FFF ;
	  margin: 0;
	  padding-bottom: 100px;
	  display: block;
  }
}

@media screen and (min-width: 769px){
  #top_sp {
	  display: none;
  }
}

#top_sp .contents {
	width: 100%;
	margin: 0 auto;
}

#top_sp .contents dl {
	font-size: 1.2rem;
	font-family: serif;
	text-align: center;
	padding: 2rem 0.5rem;
}

#top_sp .contents dd {
	margin-left: 0;
}

#top_sp .contents p {
	font-family: serif;
	padding: 1rem;
}

#image {
	width: 100%;
	background: #CCCCCC ;
	margin: 0;
}

#image .contents {
	width: 100%;
	max-width: 1200px;
	padding: 50px 0;
	margin: 0 auto;
	justify-content: center;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

#image .contents img {
	width: 30%;
	padding: 0 1%;
}

#main {
	width: 100%;
}

#main .contents {
	width: 100%;
	margin: 0 auto 150px auto;
}

#main .contents .comment {
	max-width: 1200px;
	padding: 2rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
}

#main .contents .comment h3 {
	color: #CE888F;
	font-size: 2rem;
	font-weight: 800;
	margin-top: 100px;
	margin-bottom: 2rem;
	padding: 0 0 0 3rem;
	position: relative;
	background: url("https://kirakuna-treelife.com/wp-content/themes/kirakuna/img/sakura_icon@2x.png") no-repeat;
	background-size: 36px;
	background-position: left;
	background-position-y: 5px;
}

#main .contents .features {
	justify-content: center;
	display: flex;
	margin-bottom: 100px;
}

#main .contents .features img {
	width: 45%;
}

#main .contents .features .wrap {
	width: 45%;
	margin-left: 1%;
}

#main .contents .features h4 {
	font-size: 1.5rem;
	margin-left: 2rem;
	margin-bottom: 2rem;
	padding-left: 1rem;
	border-left: 5px solid #CE888F;
}

#main .contents .features .wrap dl {
	margin-left: 2rem;
}

#main .contents .features .wrap dd {
	margin-left: 1rem;
}

@media screen and (max-width: 768px){
	#main .contents .features {
		display: block;
		padding: 0.5rem;
		margin-bottom: 100px;
	}
	#main .contents .features img {
		width: 100%;
		margin-bottom: 2rem;
	}
	#main .contents .features .wrap {
		width: 100%;
		margin-left: 0;
	}
	#main .contents .features h4 {
	margin-left: 1rem;
	}
	#main .contents .features .wrap dl {
		margin-left: 0;
	}

	#main .contents .features .wrap dd {
		margin-left: 1rem;
	}
}

#main .contents .increase {
	width: 100%;
	max-width: 980px;
	padding: 50px;
	margin: 0 auto;
	background: #CE888F;
}

@media screen and (max-width: 768px){
	#main .contents .increase {
		padding: 2rem;
	}
}

#main .contents .increase h3 {
	color: #FFF;
	text-align: center;
}

#main .contents .increase p {
	color: #FFF;
	text-align: left;
}
#infomation {
	width: 100%;
	background: #FFF;
	padding: 3rem 0;
}
#infomation .banner {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}