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


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* mvIndex */
.mvIndex {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	max-height: 1200px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),url("/img/index/bg_mv.jpg");
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mvIndex__h1 {
	font-size: 32px;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	line-height: 1.8;
}

.mvIndex__btn {
	border: 1px solid #FFF;
	color: #FFF;
	margin: 50px auto 0 auto;
}

.mvIndex__img {
	display: block;
	width: 400px;
	height: auto;
	margin: 0 auto 50px auto;
}

.scrollDown {
	position: absolute;
	bottom: 5px;
	left: 50%;
}

.scrollDown span{
	position: absolute;
	left: -15px;
	top: -100px;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
}

.scrollDown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFF;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
	0%{bottom: 45px;}
	100%{bottom: -5px;}
 }

@keyframes cirlemovehide {
	0%{opacity: 0}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
 }

.scrollDown::after{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 50px;
	background: #FFF;
}



/* news */
.news__wrapper {
	display: flex;
	justify-content: space-between;
}

.news__left {
	width: 25%;
}

.news__h2 {
	text-align: left;
}

.news__btn.pc {
	margin-top: 50px;
	max-width: 100%;
}

.news__btn.sp {
	display: none;
}

.news__right {
	width: 68%;
}

.main__item {
	border-bottom: 1px solid #222;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.main__date {
	font-size: 20px;
	font-weight: 500;
	margin-right: 20px;
	display: inline;
}

.main__category {
	display: inline;
}

.main__category p {
	display: inline;
	border: 1px solid #222;
	font-size: 16px;
	padding: 3px 5px;
}

.main__ttl {
	display: block;
	margin-top: 10px;
	line-height: 1.8;
}

.main__ttl:hover {
	text-decoration: underline;
}



/* about,price,staff */
.about,
.price,
.staff {
	display: flex;
	justify-content: center;
	align-content: center;
}

.about__h2,
.price__h2,
.staff__h2 {
	color: #FFF;
	margin-bottom: 35px;
}

.about__h2::after,
.price__h2::after,
.staff__h2::after {
	display: inline-block;
	content: "";
	width: 500px;
	height: 1px;
	background-color: #FFF;
}

.about__txt,
.price__txt,
.staff__txt {
	margin-bottom: 50px;
	text-align: center;
	color: #FFF;
}

.about__btn,
.price__btn,
.staff__btn {
	margin: 0 auto;
	color: #FFF;
	border: 1px solid #FFF;
}

.about {
	background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),url("/img/about/mv.jpg");
	background-size: cover;
	background-position: center center;
}

.price {
	background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),url("/img/price/mv.jpg");
	background-size: cover;
	background-position: center center;
}

.staff {
	background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),url("/img/staff/mv.jpg");
	background-size: cover;
	background-position: center center;
}



/* facility,factory */
.facility,
.factory {
	display: flex;	
}

.factory {
	flex-direction: row-reverse;
}

.facility__left,
.factory__left {
	width: 50%;
	display: flex;
	justify-content: center;
	align-content: center;
}

.facility__right,
.factory__right {
	width: 50%;
}

.facility__h2,
.factory__h2 {
	margin-bottom: 35px;
}

.facility__h2::after,
.factory__h2::after {
	display: inline-block;
	content: "";
	width: 500px;
	height: 1px;
	background-color: #222;
}

.facility__txt,
.factory__txt {
	margin-bottom: 50px;
	text-align: center;
}

.facility__btn,
.factory__btn {
	margin: 0 auto;
}

.facility__right {
	background-image: url("/img/facility/mv.jpg");
	background-size: cover;
	background-position: center center;
}

.factory__right {
	background-image: url("/img/factory/mv.jpg");
	background-size: cover;
	background-position: center center;
}



/* faq */
.faq__box {
	margin: 50px 0;
	border-top: 1px solid #DDD;
}

.faq__item {
	width: 100%;
	border-bottom: 1px solid #DDD;
	position: relative;
	padding: 25px 70px 25px 20px;
}

.faq__item-question {
	font-weight: 600;
	font-size: 18px;
}

.faq__item-answer {
	padding: 15px 20px;
	margin-top: 18px;
	display: none;
	background-color: #F7F7F7;
}

.faq__item:first-child .faq__item-answer {
	display: block;
}

.acco__btn {
	background-color: transparent;
	display: inline-block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 12px;
	top: 20px;
}

.acco__btn:hover {
	cursor: pointer;
}

.acco__btn::before {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	background-color: #FFAA00;
	position: absolute;
	top: 18px;
	left: 8px;
}

.acco__btn::after {
	content: "";
	display: block;
	width: 2px;
	height: 20px;
	background-color: #FFAA00;
	position: absolute;
	top: 9px;
	left: 17px;
	transition: .2s;
}

.acco__btn--open::after {
	opacity: 0;
}

.faq__item:first-child .acco__btn::after {
	opacity: 0;
}

.faq__item:first-child .acco__btn--open::after {
	opacity: 1;
}

.faq__item a {
	text-decoration: underline;
}




/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){

/* facility,factory */
.facility__h2::after,
.factory__h2::after {
	width: 95%;
}
	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){

/* facility,factory */
.facility,
.factory {
	display: flex;
}

.factory {
	flex-direction: row-reverse;
}

.facility__left,
.factory__left {
	width: 100%;
}

.facility__right,
.factory__right {
	display: none;
}

.facility__h2,
.factory__h2 {
	margin-bottom: 35px;
	color: #FFF;
}

.facility__h2::after,
.factory__h2::after {
	width: 500px;
	background-color: #FFF;
}

.facility__txt,
.factory__txt {
	color: #FFF;
}

.facility__btn,
.factory__btn {
	border: 1px solid #FFF;
	color: #FFF;
}

.facility__left {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/bg_facility.jpg");
	background-size: cover;
	background-position: center center;
}

.factory__left {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/bg_factory.jpg");
	background-size: cover;
	background-position: center center;
}

	
	

}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* mvIndex */
.mvIndex {
	height: 400px;
	min-height: 400px;
	max-height: 400px;
}
	
.mvIndex__content {
	margin-top: 50px;
}

.mvIndex__h1 {
	width: calc(100% - 40px);
	margin: 0 auto;
	font-size: 16px;
}

.mvIndex__btn {
	margin: 20px auto 0 auto;
}
	
	
	
/* news */
.news__wrapper {
	display: block;
}

.news__left {
	width: 100%;
}

.news__h2 {
	text-align: center;
	margin-bottom: 30px;
}

.news__btn.pc {
	display: none;
}

.news__btn.sp {
	display: block;
	margin: 35px auto 0 auto;
}

.news__right {
	width: 100%;
}

.main__item {
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.main__date {
	font-size: 16px;
	margin-right: 15px;
	display: inline;
}

.main__category p {
	font-size: 12px;
	padding: 2px 3px;
}

.main__ttl {
	display: block;
	margin-top: 10px;
}

.main__ttl:hover {
	text-decoration: underline;
}
	
	
	
/* about,price,staff */
.about__content,
.price__content,
.staff__content {
	width: calc(100vw - 40px);
}
	
.about__h2,
.price__h2,
.staff__h2 {
	color: #FFF;
	margin-bottom: 20px;
}

.about__h2::after,
.price__h2::after,
.staff__h2::after {
	width: 100%;
}
	
.about__txt,
.price__txt,
.staff__txt {
	margin-bottom: 30px;
	text-align: left;
}



	
/* facility,factory */
.facililty__content,
.factory__content {
	width: calc(100vw - 40px);
}
	
.facility__h2,
.factory__h2 {
	margin-bottom: 20px;
}
	
.facility__h2::after,
.factory__h2::after {
	width: 100%;
}
	
.facility__txt,
.factory__txt {
	margin-bottom: 30px;
	text-align: left;
}


.facility__btn,
.factory__btn {
	margin: 0 auto;
}


	
/* faq */
.faq__box {
	margin: 30px 0;
}

.faq__item {
	padding: 15px 10px;
}
	
.faq__item-question {
	font-size: 14px;
	padding-right: 25px;
}
	
.faq__item-answer {
	margin-top: 10px;
}

.acco__btn {
	width: 31px;
	height: 31px;
	position: absolute;
	right: 0px;
	top: 12px;
}

.acco__btn:hover {
	cursor: pointer;
}

.acco__btn::before {
	width: 17px;
	height: 1px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.acco__btn::after {
	width: 1px;
	height: 17px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: .2s;
}

.acco__btn--open::after {
	opacity: 0;
}
	
	


	
	
	
}