@charset "UTF-8";

/*================================================
 *  indexページ用
 ================================================*/

/*******共通*******/
/*見出し*/
h3.index_title {
	text-align: center;
	padding: 75px 0 50px;
}



/*パララックス*/
.parallax {
	position: absolute;
	z-index: 1;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
}

/*******メインエリア*******/
section#main_area {
	position: relative;
	width: 100%;
	height: calc(100vh - 90px);
}
section#main_area video {
	width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center center;
	vertical-align: bottom;
	display: block;
}
section#main_area h2 {
	position: absolute;
	top: 100px;
	right: 50%;
	margin-right: 300px;
}

section#main_area .scroll {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100px;
	height: 100px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: 10;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
section#main_area .scroll span {
	display: block;
	width: 22px;
	height: 34px;
	border: 2px solid #fff;
	border-radius: 50px;
	margin: 0 auto 0.7em;
	position: relative;
}
section#main_area .scroll span::before,
section#main_area .scroll span::after {
	position: absolute;
	left: 50%;
	content: '';
}
section#main_area .scroll span::before {
	top: 5px;
	width: 4px;
	height: 4px;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: mainScroll 2s infinite;
	animation: mainScroll 2s infinite;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
@keyframes mainScroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/*******新着情報*******/
section#news_area {
	position: relative;
}
section#news_area::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 120px;
	background-color: #fff;
	bottom: -1px;
	left: 0;
	z-index: 0;
}

/*画像*/
section#news_area .logo {
	position: relative;
	top: -120px;
	margin: 0 auto -120px;
	display: block;
}
section#news_area .logo.move {
	z-index: 10;
}

section#news_area [class*="img_chara"] {
	position: absolute;
	z-index: 1;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
}
section#news_area .img_people01 {
	top: 60px;
	right: 50%;
	margin-right: 250px;
}
section#news_area .img_people02 {
	top: 30px;
	left: 50%;
	margin-left: 290px;
}
section#news_area .img_chara01 {
	bottom: 65px;
	right: 50%;
	margin-right: 520px;
}
section#news_area .img_chara02 {
	bottom: -12px;
	left: 50%;
	margin-left: 525px;
}

/*ニュース*/
section#news_area .news_box {
	border-radius: 0.875em 0.875em 0 0;
	width: 860px;
	margin: 60px auto 0;
	padding: 40px 60px;
	background-color: #fff;
	position: relative;
	z-index: 10;
}
section#news_area .news_box h3 {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
section#news_area .news_box h3 a {
	width: 140px;
	height: 36px;
	border: 1px solid #C8C8C8;
	border-radius: 2em;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	position: relative;
	font-size: 14px;
	padding-right: 1em;
}
section#news_area .news_box h3 a [class*="icon-"] {
	position: absolute;
	top: 50%;
	right: 0.8em;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	font-size: 1.142em;
}

section#news_area .news_box .news {
	height: 100px;
	margin-top: 20px;
}
section#news_area .news_box .news ul li {
    padding: 10px 0;
	font-size: 14px;
	overflow: hidden;
	line-height: 1.5;
}
section#news_area .news_box .news ul li:first-child {
	padding-top: 0;
}
section#news_area .news_box .news ul li a {
	opacity: 1;
}
section#news_area .news_box .news ul li a:hover {
	text-decoration:none;
}
section#news_area .news_box .news ul li p {
	font-size: 16px;
	float: right;
	width: 485px;
	margin-top: -0.1em;
}
section#news_area .news_box .news ul li a p:hover {
	text-decoration: underline;
}
section#news_area .news_box .news ul li img {
	vertical-align: -0.3em;
	margin-left: 20px;
}


/*******こだわり*******/
section#point_area {
	padding-bottom: 120px;
	position: relative;
}
section#point_area .point_list {
	width: 1170px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
section#point_area .point_list li {
	margin: 0 15px;
}
section#point_area .point_list li:nth-child(n+4) {
	margin-top: 30px;
}
section#point_area .point_list li:nth-child(3n+2) {
	animation-delay: 0.2s;
}
section#point_area .point_list li:nth-child(3n) {
	animation-delay: 0.4s;
}





/*******お客様の声*******/
section#voice_area {
	background-color: #FFFACD;
	padding: 250px 0 120px;
	position: relative;
}

section#voice_area h3.index_title {
	padding-top: 100px;
}


section#voice_area #voice_slider {
	z-index: 10;
}
section#voice_area #voice_slider .slick-slide {
	width: 305px;
	margin: 0 13px;
}

/*パララックス*/
section#voice_area .img_people01 {
	top: 110px;
	right: 50%;
	margin-right: 355px;
}
section#voice_area .img_people02 {
	top: 190px;
	left: 50%;
	margin-left: 420px;
}
section#voice_area .img_people03 {
	top: 620px;
	right: 50%;
	margin-right: 430px;
	
}



/*******店舗の紹介*******/
section#shop_area .shop_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items : stretch;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	z-index: 10;
}
section#shop_area .shop_list > li {
	width: 454px;
	border-radius: 0.875em;
	background-color: #fff;
	overflow: hidden;
}
section#shop_area .shop_list > li:nth-of-type(n+3) {
	margin-top: 50px;
}
section#shop_area .shop_list > li .photo {
	height: 300px;
}
section#shop_area .shop_list > li .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}

section#shop_area .shop_list > li .text {
	padding: 30px 0 50px;
	line-height: 1.5;
}
section#shop_area .shop_list > li .text h6 {
	color: #1E1E1E;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.3em;
}
section#shop_area .shop_list > li .text h6 + p {
	font-size: 18px;
	text-align: center;
	padding: 0 1em;
}
section#shop_area .shop_list > li .text .tel {
	color: #f00;
	display: block;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	margin: 0.2em 0 0.5em;
	pointer-events: none;
}
section#shop_area .shop_list > li .text .tel span {
	font-size: 0.77em;
	margin-right: 0.5em;
}

section#shop_area .shop_list > li .text dl,
section#shop_area .shop_list > li .text dl + ul {
	width: 360px;
	margin: 0 auto;
}
section#shop_area .shop_list > li .text dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
section#shop_area .shop_list > li .text dl dt:nth-of-type(n+2),
section#shop_area .shop_list > li .text dl dd:nth-of-type(n+2) {
	border-top: 2px solid #fff;
}
section#shop_area .shop_list > li .text dl dt {
	background-color: #009FE8;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100px;
}
section#shop_area .shop_list > li .text dl dd {
	background-color: #f2f2f2;
	padding: 15px 20px;
	width: 260px;
	text-align: left;
}

section#shop_area .shop_list > li .text dl + ul {
	margin-top: 30px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
section#shop_area .shop_list > li .text dl + ul li {
	width: 170px;
	height: 40px;
}
section#shop_area .shop_list > li .text dl + ul li a {
	width: 100%;
	height: 100%;
	border-radius: 2em;
	border: 1px solid currentColor;
	background-color: #FFE600;
	color: #000;
	font-weight: bold;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	position: relative;
}
section#shop_area .shop_list > li .text dl + ul li a span {
	position: absolute;
	top: 50%;
	right: 0.6em;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	font-size: 1.125em;
}
section#shop_area .shop_list > li .text dl + ul li a span:before {
	position: relative;
	z-index: 1;
}
section#shop_area .shop_list > li .text dl + ul li a span::after {
	position: absolute;
	content: '';
	width: 0.7em;
	height: 0.7em;
	border-radius: 50%;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	z-index: 0;
}



/*******スタッフ紹介*******/
section#staff_area {
	padding: 100px 0 160px;
	position: relative;
}
section#staff_area::before {
	position: absolute;
	content: '';
	top: 1px;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: #f2f2f2;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
}


section#staff_area .btn_staff {
	width: 800px;
	margin: 0 auto;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items : stretch;
}
section#staff_area .btn_staff .text {
	width: 340px;
	text-align: center;
	padding-top: 90px;
	position: relative;
}
section#staff_area .btn_staff .text h4 {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: 1;
}
section#staff_area .btn_staff .text .more {
	width: 170px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 2em;
	color: #fff;
	font-weight: bold;
	margin: 30px auto 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	position: relative;
}
section#staff_area .btn_staff .text .more span {
	position: absolute;
	top: 50%;
	right: 0.6em;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	font-size: 1.125em;
}

section#staff_area .btn_staff .img01 {
	border-radius: 0.875em 0 0 0.875em;
}
section#staff_area .btn_staff .img02 {
	border-radius: 0 0.875em 0.875em 0;
}








/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {


/*******共通*******/
/*見出し*/
h3.index_title {
	padding: 12vw 0 6vw;
}
h3.index_title img {
	height: 12.5vw;
}



/*パララックス*/
.parallax {
    transition: none;
    -webkit-transition: none;
	transform: none!important;
}


/*******メインエリア*******/
section#main_area {
	height: 96vw;
}
section#main_area::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: #009FE8;
}

section#main_area h2 {
	top: 15vw;
	left: 15vw;
	right: auto;
	margin-right: 0;
}
section#main_area h2 img {
	width: 22vw;
}

section#main_area .scroll {
	display: none;
}



/*******新着情報*******/
section#news_area::after {
	height: 55vw;
}

section#news_area .logo {
	top: -14vw;
	margin: 0 auto -14vw;
	width: 66vw;
}


/*ニュース*/
section#news_area .news_box {
	width: 92vw;
	margin: 8vw 0 0 auto;
	padding: 6vw 6vw 8vw 8vw;
	border-top-right-radius: 0;
}
section#news_area .news_box h3 img {
	height: 5vw;
}
section#news_area .news_box h3 a {
	width: 22vw;
	height: 9vw;
	font-size: 3.6vw;
}
section#news_area .news_box h3 a [class*="icon-"] {
	right: 0.5em;
}

section#news_area .news_box .news {
	height: 45vw;
	margin-top: 3vw;
}
section#news_area .news_box .news ul li {
    padding: 3vw 0;
	font-size: 3.6vw;
}
section#news_area .news_box .news ul li p {
	font-size: 4vw;
	float: none;
	display: block;
	width: 100%;
	margin-top: 0.5em;
}
section#news_area .news_box .news ul li img {
	margin-left: 0.5em;
    height: 5vw;
}


/*******こだわり*******/
section#point_area {
	padding-bottom: 20vw;
}
section#point_area .point_list {
	width: 100%;
}
section#point_area .point_list li {
	margin: 0 1.5vw;
	width: 44.5vw;
	animation-delay: 0s!important;
}
section#point_area .point_list li:nth-child(n+3) {
	margin-top: 3vw;
}
section#point_area .point_list li:nth-child(even) {
	animation-delay: 0.2s!important;
}




/*******お客様の声*******/
section#voice_area {
	padding: 50vw 0 20vw;
}


section#voice_area h3.index_title {
	padding-top: 10vw;
}


section#voice_area #voice_slider .slick-slide {
	width: 60vw;
	margin: 0 2.5vw;
}


/*パララックス*/
section#voice_area .img_people01 {
	top: 45vw;
	right: auto;
	margin-right: 0;
	left: -8vw;
	width: 37vw;
}
section#voice_area .img_people02 {
	top: auto;
	left: auto;
	margin-left: 0;
	bottom: -9vw;
	right: -8vw;
	width: 45vw;
}





/*******店舗の紹介*******/
section#shop_area .shop_list {
	display: block;
}
section#shop_area .shop_list > li {
	width: 100%;
}
section#shop_area .shop_list > li:nth-of-type(n+2) {
	margin-top: 5vw;
}
section#shop_area .shop_list > li .photo {
	height: 53vw;
}

section#shop_area .shop_list > li .text {
	padding: 6vw 0 7vw;
}
section#shop_area .shop_list > li .text h6 {
	font-size: 5.5vw;
}
section#shop_area .shop_list > li .text h6 + p {
	font-size: 4vw;
}
section#shop_area .shop_list > li .text .tel {
	font-size: 6vw;
	pointer-events: auto;
}
section#shop_area .shop_list > li .text .tel span {
	font-size: 0.77em;
	margin-right: 0.5em;
}

section#shop_area .shop_list > li .text dl,
section#shop_area .shop_list > li .text dl + ul {
	width: 76vw;
}
section#shop_area .shop_list > li .text dl dt {
	width: 21vw;
}
section#shop_area .shop_list > li .text dl dd {
	width: 55vw;
	padding: 0.5em 0.75em;
}

section#shop_area .shop_list > li .text dl + ul {
	margin-top: 5vw;
}
section#shop_area .shop_list > li .text dl + ul li {
	width: 36vw;
	height: 11vw;
}
section#shop_area .shop_list > li .text dl + ul li a {
	padding-right: 0.5em;
}
section#shop_area .shop_list > li .text dl + ul li a span {
	right: 0.4em;
}





/*******スタッフ紹介*******/
section#staff_area {
	padding: 20vw 0 20vw;
}
section#staff_area::before {
	height: 18vw;
}


section#staff_area .btn_staff {
	width: 84vw;
	display: block;
}
section#staff_area .btn_staff .text {
	border-radius: 0.875em 0.875em 0 0;
	width: 100%;
	padding: 9vw 0 7vw;
}
section#staff_area .btn_staff .text h4 {
	top: -8vw;
	width: 100%;
}
section#staff_area .btn_staff .text h4 img {
	height: 17vw;
}
section#staff_area .btn_staff .text h3 img {
	height: 15vw;
}
section#staff_area .btn_staff .text .more {
	width: 36vw;
	height: 9vw;
	margin: 5vw auto 0;
	padding-right: 0.5em;
	font-size: 3.6vw;
}
section#staff_area .btn_staff .text .more span {
	right: 0.5em;
}

section#staff_area .btn_staff .img03 {
	border-radius: 0 0 0.875em 0.875em;
	width: 100%;
}






	
}