@charset "UTF-8";
/*==============================================================
>>> Home
----------------------------------------------------------------*/
/* 3.1 home
--------------------------------------------------------------*/
/* 3.1.0 homeのcommon----------------*/
.home-title {
	position: absolute;
    width: 100%;
    top: 32%;
}
.home-h1 {
    text-align: center;
    color: #FFF;
	font-size: 5rem;
}
.home-h1 small {
	display: block;
	font-size: 2.4rem;
	margin-bottom: 3rem;
}
.home-h1__desc {
	color: #FFF;
	text-align: center;
}
.home-h1__svg {
	margin: 0 auto;
}
.home-h1__svg small {
    opacity: 0;
    animation: fadein 2s ease forwards;
	animation-delay: 3s;
	display: block;
	color: #FFF;
	text-align: center;
	font-size: 1rem;
	font-weight: normal;
}
@keyframes fadein {
  100% { opacity: 1; }
}
/* media query : mobile */
@media screen and (max-width: 768px) {
	.home-h1__svg {
		max-width: 320px;	
	}
}
/* media query : desktop */
@media screen and (min-width: 769px) {
	.home-h1__svg {
		max-width: 450px;
	}
}
/* 3.1.0 homeのmv----------------*/
.home-mv {
	height: 90%;
	height: 90vh;
}
.home-mv .container {
	max-width: 100%;
	margin: 0 auto;
}
.home-mv__item {
	height: 90% !important;
	height: 90vh !important;
}
.home-mv__slider.slick-slider {
	margin-bottom: 0 !important;
}
.home-mv__slider .slick-dots {
	bottom: 2rem;
}
.home-mv__slider .slick-dots li {
	height: auto;
	padding: 0 1rem;
}
.home-mv__slider .slick-dots li button {
	background: #FAFAFA;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.8rem;
    margin: 0 auto;
}
/* media query : mobile */
@media screen and (max-width: 768px) {
}
/* media query : desktop */
@media screen and (min-width: 769px) {
	.home-mv__item {
		background-attachment: fixed !important;
	}
}
/* 3.1.1 notice お知らせ----------------*/
.home-notice {
	background: #f6f3ef;
	margin-left: auto;
	margin-right: auto;
}
.home-notice .inner {
	padding: 0;
}
.notice-list__item {
	margin-bottom: 1rem;
    border-bottom: 1px solid #72727B;
    padding-bottom: 1rem;
}
.notice-list__item:first-child {
	border-top: 1px solid #72727B;
	padding-top: 1rem;
}
.notice-list__date {
	float: left;
	width: 7rem;
	padding-top: 0.4rem;
	padding-bottom: 0.4rem;
}
.notice-list__category {
	float: left;
	width: 7rem;
	text-align: center;
    border: 1px solid;
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
	border-radius: 5rem;
}
.notice-list__title {
	float: left;
	padding-top: 0.4rem;
	padding-bottom: 0.4rem;
	font-weight: normal;
    font-size: 1rem;
}
.notice-list__more {
	float: right;
	padding-top: 0.4rem;
	padding-bottom: 0.4rem;
}
/* media query : mobile */
@media screen and (max-width: 768px) {
	.home-notice {
		width: 90%;
		margin-top: -4rem;
		margin-bottom: 1.4rem;
	}
	.home-notice .inner {
		padding: 0 1.5rem;
	}
	.notice-list__title {
		width: 100%;
	}
}
/* media query : desktop */
@media screen and (min-width: 769px) {
	.home-notice {
		max-width: 70rem;
		width: 70%;
		margin-top: -10rem;
		margin-bottom: 5rem;
	}
	.home-notice .inner {
		padding: 0 10rem;
		padding: 0 9vw;
	}
	.notice-list__title {
		width: calc(90% - 14rem);
    	padding-left: 2rem;
	}
}
/* 3.1.2 About ----------------*/

/* media query : mobile */
@media screen and (max-width: 768px) {
}
/* media query : desktop */
@media screen and (min-width: 769px) {
	.home-about .h2{
		padding-right: 56%;
	}
	.home-about .description{
		padding-right: 56%;
	}
	.home-about .button {
		padding-right: 56%;
	}
	.home-about .home-about__img {
		float: right;
		width: 50%;
		margin-top: -20rem;
	}
}
/* 3.1.3 Menu ----------------*/
.home-menu {
	background: #F6F3EF;
}
.home-menu__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.home-menu__scroll::-webkit-scrollbar {
	display:none;
}
.home-menu__list {
	display: flex;
    width: max-content;
    margin-left: -2rem;
}
.home-menu__item {
	display: flex;
	margin-left: 2rem;
	background:#FF5252;
}
.home-menu__link {
	display: block;
	line-height: 0;
}
.home-menu__link:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 1;
}
.home-menu__name {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	color: #FFF;
	z-index: 2;
}
.home-menu__link:after {
	content: "+";
	position: absolute;
	top: 50%;
	left: 50%;
	color: #FFF;
	z-index: 2;
}
/* media query : mobile */
@media screen and (max-width: 768px) {
	.home-menu__item {
		width: 16rem;
		height: 16rem;
	}
}
/* media query : desktop */
@media screen and (min-width: 769px) {
	.home-menu__item {
		width: 20rem;
		height: 20rem;
	}
}
/* 3.1.4 Product ----------------*/
.product-list a {
	overflow: hidden;
}
.product-list a img:hover {
	transform: scale(1.05);
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-list__item {
	border: 1px solid #eee;
	padding: 2rem;
}
.product-list__image {
	display: block;
}
.product-list__title {
	margin-top: 1rem;
	font-size: 1.125rem;
	line-height: 1.7;
	font-weight: 400;
}
.product-list__detail {
	display: flex;
    align-items: center;
    margin-top: 0.5rem;
	padding-top: 0.5rem;
    border-top: 1px solid #ccc;
}
.product-list__capacity {
	flex-shrink: 0;
    width: 50%;
    font-weight: 400;
	font-size: 1.125rem;
}
.product-list__price {
	width: 50%;
	text-align: right;
	font-size: 1.475rem;
}
.product-list__price small {
	font-size: 0.825rem;
	margin-left: 0.5rem;
}
/* media query : mobile */
@media screen and (max-width: 768px) {
	.product-list__item {
		margin-bottom: 2rem;
	}
}
/* media query : desktop */
@media screen and (min-width: 769px) {
	.product-list {
		margin-left: -3.125rem;
		margin-bottom: -2.5rem;
		display: flex;
    	flex-wrap: wrap;
	}
	.product-list__item {
		margin-left: 3.125rem;
		margin-bottom: 2.5rem;
		float: left;
		width: calc(33.333% - 3.125rem - 2px - 4rem);
	}
	.product-list__image {
		max-height: 14rem;
	}
	.product-list__title {
		min-height: 4rem;
	}
}
/* 3.1.5 Staff ----------------*/
.home-staff .h2 {
	color: #FF791B;
}
.home-staff .h2 small,
.home-staff .description{
	color: #FFF;
}
/* media query : mobile */
@media screen and (max-width: 768px) {
}
/* media query : desktop */
@media screen and (min-width: 769px) {
	.home-staff {
		background-attachment: fixed !important;
	}
}
/* 3.1.6 Access ----------------*/
.home-access__parking {
	display: inline-block;
}
/* media query : mobile */
@media screen and (max-width: 768px) {
}
/* media query : desktop */
@media screen and (min-width: 769px) {
	.home-access {
		background-attachment: fixed !important;
	}
}
