@charset "utf-8";

/* Reset CSS */
*,*::before,*::after {
	box-sizing: border-box;
}
body,h1,h2,h3,h4,h5,h6,article,section,header,footer,nav,aside,p,hr,ul,ol,li,dl,dt,dd,div,
main,em,strong,small,i,b,spantable,caption,tr,th,td,pre,label,input,textarea,select,button {
	padding: 0;
	margin: 0;
	font-weight: normal;
	line-height: 1.6;
	word-wrap: break-word;
}
body {
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
address,em,i {
	font-style: normal;
}
strong,th,b {
	font-weight: normal;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	opacity: 0.6;
}
.home{
    margin: 0 auto
}
/* ▼▼▼ CSS（ここから）（※2） ▼▼▼ */
/* 背景が中央から外に伸びる設定 */
#background-container {					/* 最初に出る背景 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #F796B3;
	z-index: 9999;
	text-align: center;
	color: #fff;
}
#background-text {	/* 背景に表示するテキスト */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 60px;
}
.container {
  background: #F796B3;
  margin-inline: auto;
}
.container.appear {
	background: #fff;
}
.background1,							/* 背景の初期状態 */
.background2 {
	display: none;
}
.container.appear .background1 {		/* 右に消える背景のアニメーション */
	display: block;
	position: fixed;
	top: 0;
	left:50%;
	z-index: 999;
	width: 100%;
	height: 100vh;
	background-color: #F796B3;
	transform: scaleX(1);
	animation-name: pageAnime1;
	animation-duration: 1.2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes pageAnime1 {
	0% {
		transform-origin: left;
		transform: scaleX(1);
	}
	50% {
		transform-origin: right;
		}
	100% {
		transform-origin: right;
		transform: scaleX(0);
	}
}
.container.appear .background2 {		/* 左に消える背景のアニメーション */
	display: block;
	position: fixed;
	top: 0;
	right: 50%;
	z-index: 999;
	width: 100%;
	height: 100vh;
	background-color: #F796B3;
	transform: scaleX(1);
	animation-name: pageAnime2;
	animation-duration: 1.2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes pageAnime2{
	0% {
		transform-origin:right;
		transform:scaleX(1);
	}

	50% {
		transform-origin:left;
		}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}
.main-container {						/* 画面遷移後のコンテンツ */
	width: 100%;  /* width: calc(100vw - 22px); スマホでの横幅改善 */
	/* hight 続きのテキストがスマホで離れないようにするため削除*/
	padding-top: 0vh;
	text-align: center;
	opacity: 0;
}
.container.appear .main-container {		/* 画面遷移後のコンテンツのフェードイン */
	animation-name: pageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes pageAnimeAppear{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.hero-image{
	width: 100%;
	min-height: 100vh;
	background-image: url(../image/back-all.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative
}
.hero-image .logo{
	width: 100%;
	max-width: 130px;
	position: fixed;
	top: 15px;
	left: 20px;
	z-index: 30;
}
@media screen and (max-width:760px) {
.hero-image .logo {
	position: absolute;
	margin: 60% 0% 0% 16%;
	width: 80%;}
.logo {
    visibility: hidden;}	
}
@media screen and (max-width: 600px) {
.logo {
    visibility: hidden;}
.hero-image {
	height: calc(100vh - 50px);
	background-image: url("../image/back-all-tate2.jpg");	
	}	
}
.navi-text {
	font-size: 1vw;
	max-width: 960px;
	margin: 0 auto;
	margin-top: 3%;
}
li{
	list-style: none;  /* テキスト前の点を消す */
	width: 25%;
	float: left;
}
@media screen and (max-width:760px) {
    .navi-text {font-size:14px;
				margin :0% 2% 0% 2%;}
}

/* 各セクションのタイトル前の横線 */
.heading {
	margin-top: 5%;
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
}
.heading::before {
  background-color: #2A2D31; /* 横線の色 */
  content: "";
  flex-grow: 0.3; /* 横幅いっぱい */
  height: 2px; /* 横線の高さ */
}
.heading::before {
  margin-right: 30px; /* 文字との余白 */
}
/* 各セクションのタイトルテキスト */
h2 {
  color: black;
  font-size: 2vw;
  font-weight: 700px;
  padding-bottom: 20px;
  padding-top: 30px;
}

.consept-container{
	padding-top: 2%;
	
}
.consept-text {
	max-width: 960px;
	font-size: 1.7vw;
	margin: 0 auto;
	margin-top: 2%;
}
@media screen and (max-width: 640px) {
.br-sp { 
 display:none;
 }
}
/* 各セクションの詳細 */
.text1 {
	font-size: 100%;
	margin: -30% 43% 0% 5%;
	position: relative;
	z-index: 2;
}
@media screen and (max-width:760px) {
    .text1 {
		font-size:20px;
		margin: 0% 5% 0% 5%;}
}
.text2 {
	font-size: 100%;
	margin: -15% 0% 0% 8%;
	position: relative;
	z-index: 1
}
@media screen and (max-width:760px) {
    .text2 {
		font-size:20px;
		margin: 0% 5% 0% 5%;}
}
.text2-2 {
	margin-top: 10%;
	font-size: 80%;
	text-align: center;
}
@media screen and (max-width:760px) {
    .text2-2 {
		font-size:20px;
		margin: 0% 5% 0% 5%;}
}
.marchandise-container{

	padding-top: 8%;

}
.blogclass {
	max-width: 200px;
	margin:  0 auto;
}
.item-photo{
	margin: 0 auto;
	margin-top: 60px;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
#item-photo1{
	padding: 80px 0;
}
#item-photo1 .slid1 .slid2 {
	max-width: 360px;
	margin: 0 40px;
	text-align: center;
}
#item-photo1 .slid1 .slid2:nth-child(even) {
	margin-top: 80px;
}
#item-photo1 .slid1 .slid2 .img img {
	border-radius: 50%;
}
#item-photo1 .slid1 .slid2 .title-slid {
	font-size: 24px;
	font-weight: bold;
	margin: 30px 0 20px;
}
#item-photo1 .slid1 .slid2 .text-slid {
	line-height: 1.8;
}
.kodawari-container{

	padding-top: 2%;

}
.text3 {
	font-size: 100%;
	margin: -25% 0% 0% 5%;
}
	@media screen and (max-width:760px) {
    .text3 {
		font-size:20px;
		margin: 0% 5% 0% 5%;}
}
.text4 {
	font-size: 100%;
	margin: -34% 0% 0% 52%;
}
@media screen and (max-width:760px) {
    .text4 {
		font-size:20px;
		margin: 0% 5% 0% 5%;}
}	
.reform-container{
	
	padding-top: 6%;
	
}
.text5 {
	font-size: 100%;
	margin: -26% 5% 0% 5%;
}
@media screen and (max-width:760px) {
    .text5 {
		font-size:20px;
		margin: 0% 5% 0% 5%;}
}	
.customer-container {
	
	padding-top: 8%;

}
@media screen and (max-width:760px) {
    h2 {font-size:30px;}
}
.footer-photo{
	margin-top: -60%;	
	position: relative;
	z-index: -1
}
.slid{
	margin: 3% 20% 0% 20%;	
}
@keyframes sway {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}
.copyright p {
    text-align: center;
}

.consept-tittle::before {
    content: "";
    height: 1px;
    flex-grow: 0.3;
    background-color: #3C3C3C;
    margin-right: 3rem;
}
.kira {
	margin-top: -29%;
}
@media screen and (max-width:760px) {
    .kira {
		margin-top: 8%; }
}	
.title {
  	display: flex;
  	overflow: hidden;
  	color: #FFF;
  	font-size: 60PX;
 	margin: -10% 0% 0% 0%;
	position: relative;
}
@media screen and (max-width:760px) {
.title {
	font-size: 40px; }
}

.title span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.title.-visible span {
  transform: translate(0, 0);
}

.title span:nth-child(2) {
  transition-delay: 0.06s;
}
.title span:nth-child(3) {
  transition-delay: 0.12s;
}
.title span:nth-child(4) {
  transition-delay: 0.18s;
}
.title span:nth-child(5) {
  transition-delay: 0.24s;
}
.title span:nth-child(6) {
  transition-delay: 0.30s;
}
.title span:nth-child(7) {
  transition-delay: 0.36s;
}
.title span:nth-child(8) {
  transition-delay: 0.42s;
}
.title span:nth-child(9) {
  transition-delay: 0.48s;
}
.title span:nth-child(10) {
  transition-delay: 0.54s;
}
.title span:nth-child(11) {
  transition-delay: 0.6s;
}
.title span:nth-child(12) {
  transition-delay: 0.66s;
}
.title span:nth-child(13) {
  transition-delay: 0.72s;
}
.title span:nth-child(14) {
  transition-delay: 0.78s;
}
/*-------------------------------------------
Online Store
-------------------------------------------*/
.info {
  width: 100%;
	margin-top: 6%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center top;
  background-size: cover;
	padding-top: 10%;
}
.info .info-box {
  width: 100%;
  max-width: 500px;
  background-color: rgba(255,187,204,1);
  padding: 50px 0;
  text-align: center;
}
.info .info-box .info-toiawase {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
}
.info .info-box .info-mail {
  background-color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
}


/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
  background-color: #FFBBcc;
  padding: 30px 0;
}
#footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 60px;
  padding-right: 60px;
}
#footer .footer-logo {
  max-width: 130px;
}
#footer .copyright {
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
/*-------------------------------------------
  Footer
  -------------------------------------------*/
  #footer {
    padding: 15px 0;
  }
  #footer .footer-logo {
    max-width: 80px;
  }
}	