
/* バナー */
.banner-block{
	width: 100%;
	background-color: black;
	text-align: center;
	height: 110px;
}
.header-banner{
	margin-top: 10px;
	margin-bottom:10px;
}

/* おしらせのヘッダー */

.news-header{
	width: 100%;
	height: 400px;
	background-image: url('../images/hero_top.jpg');
	background-size: cover;
	color: white;
	padding-top: 125px;
}
.news-header-english{
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.5em;
}
.news-header-title{
	font-size: 42px;
	text-align: center;
	letter-spacing: 0.5em;
}
.news-header-bar{
	width: 480px;
	text-align: center;
	margin-top: 25px;
	margin-bottom: 25px;
}
.news-header-description{
	text-align: center;
	font-size: 15px;
}

/* おしらせ */
.news{
	width: 90%;
	margin: 25px 5%;
}
.news-article{
	/* display: flex; */
	width: 100%;
	margin: 0 0;
	border-top: solid 1px gray;
}
.news-article:nth-of-type(2){
	border-bottom: solid 1px gray;
}
.news-article:last-of-type{
	border-bottom: solid 1px gray;
}
.news-image-block{
	width: 240px;
	margin: 25px 0;
}
.news-image{
	width:240px;
}
.news-text-block{
	margin: 25px 5px;
	padding: 0 25px;
}
.news-text-block h3{
	font-size: 20px;
}
.more{
	display: block;
	text-align: right;
	cursor: pointer;
}
.more2{
	display: none;
	text-align: right;
	cursor: pointer;
}
.hidden{
	display: none;
}

/* 店舗フォト、店舗案内、おしながきのブロック */
.store{
	display: flex;
	flex-wrap: wrap;
}

/* 店舗Photo */
.store-photo{
	width:50%;
	height:400px;
	/* background-color: gray; */
	background-image:url('../images/taikamu.jpg');
	background-size:cover;
}

/* 店舗案内 */
.store-information{
	width: 50%;
	height:400px;
	background-color: lightgray;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
}
.store-information h3{
	font-size: 28px;
	text-align: center;
	padding-bottom: 25px;
	letter-spacing: 0.2em;
}
.store-information p{
	font-size: 14px;
	text-align: center;
	padding-bottom: 25px;
}
.store-information img{
	width:120px;
	height:auto;
	text-align: center;
	padding-bottom: 25px;
}
.store-information a{
	display: block;
	width: 40%;
	height: 40x;
	line-height: 40px;
	margin:0 auto;
	text-align: center;
	background-color: gray;
	text-decoration: none;
	color: black;
}

/* おしながき */
.menu{
	width: 50%;
	height:400px;
	background-color: lightgray;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
}
.menu h3{
	font-size: 28px;
	text-align: center;
	padding-bottom: 25px;
	letter-spacing: 0.2em;
}
.menu p{
	font-size: 14px;
	text-align: center;
	padding-bottom: 25px;
}
.menu img{
	width:120px;
	height:auto;
	text-align: center;
	padding-bottom: 25px;
}
.menu a{
	display: block;
	width: 40%;
	height: 40x;
	line-height: 40px;
	margin:0 auto;
	text-align: center;
	background-color: gray;
	text-decoration: none;
	color: black;
}

/* フードPhoto */
.food-photo{
	width: 50%;
	height:400px;
	background-image: url('../images/ramenset.JPG');
	background-size: cover;
}


/* 動画を囲う親要素 */
.video-container{
	width: 100%;
  height: 100vh;
	position: relative;
	background-color: black;
}
/* 動画の上に乗せる文字 */
.video-container > p{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}


.loader {
	width: 48px;
	height: 48px;
	border: 5px solid #FFF;
	border-bottom-color: #FF3D00;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
	}

	@keyframes rotation {
	0% {
			transform: rotate(0deg);
	}
	100% {
			transform: rotate(360deg);
	}
	}

@media screen and (max-width: 765px) {
.banner-block{
	height: 100%;
}
.header-banner{
	width: 90vw;
}


/* おしらせのヘッダー */
.news-header{
	padding-top: 75px;
	height: 50vh;
}
.news-header-english{
	font-size: 16px;
}
.news-header-title{
	font-size: 36px;
}
.news-header-bar{
	width: 280px;
	text-align: center;
}
.news-header-description{
	text-align: center;
	font-size: 12px;
}

/* おしらせ */
.news{
	width: 90%;
	margin: 25px 5%;
}
.news-article{
	display:block;
	width: 100%;
	margin: 0 0;
	border-top: solid 1px gray;
}
.news-article:nth-of-type(2){
	border-bottom: solid 1px gray;
}
.news-article:last-of-type{
	border-bottom: solid 1px gray;
}
.news-image-block{
	width: 240px;
	margin: 25px 0;
}
.news-image{
	width:80vw;
}

.news-text-block{
	margin: 25px 5px;
	padding: 0 25px;
}
.news-text-block h3{
	font-size: 20px;
}
.more{
	display: block;
	text-align: right;
	cursor: pointer;
}
.more2{
	display: none;
	text-align: right;
	cursor: pointer;
}
.hidden{
	display: none;
}

/* 店舗フォト、店舗案内、おしながきのブロック */
.store{
	display: block;
}

/* 店舗Photo */
.store-photo{
	width:100%;
	height:300px;
}


/* 店舗案内 */
.store-information{
	width: 100%;
	height:300px;
}
.store-information h3{
	font-size: 24px;
	padding-bottom: 15px;
	text-align: center;
}
.store-information p{
	font-size: 12px;
	padding-bottom: 15px;
}
.store-information img{
	width:80px;
	padding-bottom: 15px;
}

/* おしながき */
.oshi{
	display: flex;
	flex-direction: column-reverse;
}	

.menu{
	width: 100%;
	height:300px;
}
.menu h3{
	font-size: 24px;
	padding-bottom: 15px;
}
.menu p{
	font-size: 14px;
	padding-bottom: 15px;
}
.menu img{
	width:80px;
	padding-bottom: 15px;
}

/* フードPhoto */
.food-photo{
	width: 100%;
	height:300px;
}

/* 動画を囲う親要素 */
.video-container{
  height: 50vh;
}
}