@charset "utf-8";

html *,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	margin: 0 auto;
	font-size: 16px;
	scroll-behavior: smooth;
}
body {
	font-family: 'Merriweather', serif;
	font-weight: 600;
	line-height: 1;
}
.header-logo,h2 {
	font-family: 'Berkshire Swash', cursive;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul,ol {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	height: 80px;
    background: crimson;
    z-index: 50;
  }
.header-inner {
	max-width: 1300px;
	height: 70px;
	margin: 0 auto 10px;
	padding: 10px 20px;
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
}
.header-logo {
	font-size: 2.5rem;
	color: #fff;
	font-weight: bold;
	white-space: nowrap;
}
.openbtn {
	display: none;
}
#g-nav ul {
	display: flex;
}
#g-nav li {
	padding: 5px 30px;
	font-size: 1.1rem;
	letter-spacing: .1em;
}
#g-nav li a {
	position: relative;
	color: #fff;
}
#g-nav a,
#g-nav li a:hover {
	color: #333;
}
#g-nav li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #333;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}
#g-nav a::after,
#g-nav li a:hover::after {
    transform: scale(1, 1);
}
/* surface・Macbook用ヘッダー */
@media (max-width: 1281px) {
	.header-inner {
		max-width: 1100px;
	}
	.header-logo {
		font-size: 2.2rem;
	}
	#g-nav li {
		padding: 5px 20px;
	}
}
/* スマホ・タブレット用ヘッダー */
@media (max-width: 839px) {
	.header {
		height: 70px;
	}
	.header-inner {
		height: 55px;
		padding: 5px 20px;
		justify-content: space-between;
	}
	.header-logo {
		font-size: 2rem;
	}
	#g-nav {
		position: fixed;
		z-index: 100;
		top: -120%;
		left: 0;
		width: 100%;
		height: 60vh;
		background: crimson;
		transition: all .6s;
	}
	#g-nav.panelactive {
		top: 0;
	}
	#g-nav ul {
		position: absolute;
		z-index: 150;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		flex-direction: column;
	}
	#g-nav li {
		list-style: none;
		text-align: center; 
	}
	#g-nav li a {
		color: #fff;
		text-decoration: none;
		padding: 25px 10px;
		display: block;
		text-transform: uppercase;
		font-size: 1.35rem;
		font-weight: bold;
		letter-spacing: .15em;
	}
	.openbtn {
		display: block;
		position: fixed;
		z-index: 999;
		top: 10px;
		right: 10px;
		cursor: pointer;
		width: 50px;
		height: 50px;
	}
	.openbtn span {
		display: inline-block;
		position: absolute;
		left: 14px;
		width: 45%;
		height: 3px;
		border-radius: 2px;
		background: #fff;
		transition: all .4s;
	}
	.openbtn span:nth-of-type(1) {
		top: 15px;	
	}
	.openbtn span:nth-of-type(2) {
		top: 23px;
	}
	.openbtn span:nth-of-type(3) {
		top: 31px;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
}

/********************* トップページ *********************/
/* ヒーロー画像 */
.hero-container {
	max-width: 100%;
	height: 100vh;
	background: #111;
	overflow: hidden;
}
.scrolldown {
	position: absolute;
	left: 50%;
	bottom: 10px;
	height: 50px;
}
.scrolldown span {
	position: absolute;
	left: -15px;
	top: -15px;
	color: crimson;
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .05em;
}
.scrolldown::after {
	content: "";
	position: absolute;
	top: 0;
	width: 2px;
	height: 30px;
	background: crimson;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}
@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}
	30% {
		height: 30px;
		opacity: 1;
	}
	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}
@media (max-width: 885px) {
	.hero-container {
		height: 45vh;
		position: relative;
	}
}
@media (max-width: 767px) {
	.hero-container {
		height: 98vh;
	}
}

/*メイン*/
.main {
	background: url("../images/bg.jpg") repeat;
	width: 100%;
	overflow: hidden;
}
.main-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 30px 20px;
}
.main-container h2 {
	margin: 0 auto 20px;
	text-align: center;
	font-size: 2.7rem;
	color: crimson;
	font-weight: bold;
}

.menu-container {
	margin: 50px auto 100px;
	padding-top: 85px;
}
.menu-container h3 {
	margin: 0 auto 20px;
	text-align: center;
	font-size: 2rem;
	color: crimson;
	font-weight: bold;
}
.menu-container li {
	margin: 15px 0;
}
.menu-container figcaption {
	margin: 5px auto;
	font-size: 1.2rem;
	line-height: 1.3;
}
.sp-ramen figcaption {
	padding: 0 10px;
}
.menu-container img {
	width: 70%;
	height: 70%;
}
.sp-ramen {
	margin: 30px auto;
	padding: 30px 20px;
	background: url("../images/sp-ramen-bg.jpg") no-repeat;
	width: 100%;
	height: auto;
	color: #fff;
}
.ramen, .ice {
	margin: 35px auto;
	padding: 30px 20px;
	background: #f5f4f0;
}
.sp-ramen ul, .ice ul {
	display: flex;
	justify-content: space-around;
	text-align: center;
}
.ramen ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	text-align: center;
}
.menu-btn {
	display: block;
	width: 280px;
	margin: 55px auto 35px;
	padding: 20px 30px;
	background: #333;
	border-radius: 30px;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
}
.menu-btn:hover {
	background: crimson;
}

.owner-container {
	width: 70%;
	margin: 100px auto;
}
.owner-contents {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.balloon {
	position: relative;
	display: block;
	margin: 0 auto;
	padding: 45px 50px;
	background: #f5f4f0;
	border-radius: 20px;
	font-size: 1.1rem;
	text-align: center;
	border: 2px solid #777;
	box-sizing: border-box;
}
.balloon:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -30px;
	margin-top: -18px;
	border: 18px solid transparent;
	border-left: 18px solid #f5f4f0;
	z-index: 2;
}
.balloon:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -28px;
	margin-top: -14px;
	border: 14px solid transparent;
	border-left: 14px solid #777;
	z-index: 1;
}
.owner-contents figure {
	display: block;
	margin: 0 auto;
}
.owner-contents img {
	display: block;
	border-radius: 50%;
}
.owner-contents figcaption {
	margin-top: 10px;
	text-align: center;
}

.location-container {
	margin: 100px auto;
	padding-top: 85px;
}
.location-contents {
	margin: 0 auto;
}
.location-map iframe {
	display: block;
	width: 100%;
	height: 350px;
}
.parking {
	position: relative;
	display: block;
	width: 50%;
	margin: 50px auto;
	padding: 20px;
	background: #f5f4f0;
	border-radius: 20px;
	text-align: center;
	border: 2px solid #777;
	box-sizing: border-box;
}
.parking:before {
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -19px;
	border: 18px solid transparent;
	border-bottom: 18px solid #f5f4f0;
	z-index: 2;
}
.parking:after {
	content: "";
	position: absolute;
	top: -28px;
	left: 50%;
	margin-left: -15px;
	border: 14px solid transparent;
	border-bottom: 14px solid #777;
	z-index: 1;
}
.location-text {
	width: 80%;
	margin: 30px auto 0;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	text-shadow: 2px 2px 5px #fff;
}
.text {
	margin: 0 30px;
}
.text p {
	margin-bottom: 35px;
	font-size: 1.1rem;
}
.text a {
	border-bottom: 1px solid #555;
}
.text a:hover {
	opacity: .3;
}
.list h4 {
	font-size: 1.2rem;
}
.list dl {
	display: flex;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #777;
}
.list dl:last-child {
	border-bottom: none;
}
.list dt {
	margin-right: 5px;
	font-size: .95rem;
	font-weight: bold;
	flex-basis: 35%;
}
.list dd {
	padding: 0;
	font-size: 1.1rem;
	line-height: 1.6;
	flex-basis: 65%;
}

.video-container {
	display: flex;
	justify-content: space-around;
	margin: 100px auto 0;
}
.video {
	width: 46%;
	aspect-ratio: 16 / 9;
}
.video iframe {
	margin: 20px auto;
	width: 100%;
	height: 100%;
}
@media (max-width: 885px) {
	.owner-container {
		width: 90%;
	}
	.balloon {
		padding: 30px 20px;
		text-align: left;
	}
	.location-contents {
		flex-direction: column;
	}
	.parking {
		width: 80%;
	}
	.location-text {
		width: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 20px auto 0;
		padding: 20px 15px;
		text-align: center;
	}
	.text {
		margin: 0;
	}
	.text p {
		margin: 0 auto 55px;
	}
	.list h4 {
		margin-bottom: 4px;
	}
	.list dl {
		flex-direction: column;
		margin: o auto 10px;
	}
	.list dt {
		margin-right: 0;
		flex-basis: 100%;
	}
	.list dd {
		margin: 5px auto 0;
		flex-basis: 100%;
	}
	.video-container {
		margin: 120px auto 0;
	}
}
@media (max-width: 767px) {
	.menu-container {
		margin: 0 auto;
	}
	.menu-container img {
		width: 55%;
		height: 55%;
	}
	.sp-ramen {
		background-repeat: repeat-y;
		padding: 20px 5px;
	}
	.ramen, .ice {
		padding: 20px 5px;
	}
	.sp-ramen ul,.ice ul {
		flex-direction: column;
	}
	.ramen ul {
		grid-template-columns: 1fr;
	}
	.owner-contents {
		flex-direction: column;
	}
	.balloon {
		margin-bottom: 5px;
		padding: 20px;
		font-size: 1rem;
	}
	.balloon:before {
		top: 124%;
		right: 50%;
		border: 13px solid transparent;
		border-top: 13px solid #f5f4f0;
	}
	.balloon:after {
		top: 121%;
		right: 50%;
		border: 14px solid transparent;
		border-top: 14px solid #777;
}
	.location-container {
		margin: 80px auto;
	}
	.parking {
		width: 90%;
	}
	.location-map iframe {
		margin: 0 auto;
		width: 100%;
		height: 400px;
	}
	.text span {
		text-align: left;
	}
	.list dd span {
		display: inline-block;
	}
	.video-container {
		margin: 0 auto;
		flex-direction: column;
	}
	.video {
		margin: 50px auto 0;
		width: 100%;
	}
}
/********************* メニューページ *********************/
.menus-container {
	margin: 15px auto 100px;
	padding-top: 85px;
}
.menus-category {
	width: 65%;
	margin: 0 auto;
	padding: 30px 25px 10px;
	background: crimson;
	border-radius: 30px;
}
.menus-category h2 {
	text-align: center;
	color: #333;
}
.tab {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	text-align: center;
}
.tab li {
	margin: 15px;
}
.tab li a {
	display: block;
	width: 95%;
	padding: 20px;
	background: #fff;
	border-radius: 100vw;
}
.tab li.active a,
.tab li a:hover {
	background: #333;
	color: #fff;
}
.tab-area {
	display: none;
	opacity: 0;
	padding: 0;
}
.tab-area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: .8s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.tab-area img {
	display: block;
	margin: 25px auto 0;
}
.qr {
	margin: 100px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.qr figure {
	margin: 0 100px;
	text-align: center;
}
.qr img {
	width: 150px;
	height: 150px;
}
.qr figcaption {
	margin-top: 15px;
	font-size: 1.8rem;
}
.qr figcaption a {
	display: block;
	width: 60%;
	margin: 10px auto 0;
	padding: 10px 15px;
	background: #333;
	border-radius: 30px;
	font-size: 1rem;
	color: #fff;
}
.qr figcaption a:hover {
	background: crimson;
}
@media (max-width: 885px) {
	.menus-category {
		width: 90%;
		margin: 0 auto;
		padding: 20px 10px;
	}
	.tab {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.tab li {
		margin: 20px 15px;
	}
	.tab li a {
		width: 90%;
		padding: 17px 5px;
	}
}
@media (max-width: 767px) {
	.menus-category {
		width: 100%;
		margin: 0 auto;
		padding: 20px 5px;
	}
	.tab {
		grid-template-columns: 1fr 1fr;
	}
	.tab li {
		margin: 8px;
	}
	.tab li a {
		width: 95%;
		padding: 12px 10px;
	}
	.qr {
		margin: 80px auto 0;
		flex-direction: column;
	}
	.qr figure {
		margin: 20px auto;
	}
}
/********************* 採用情報ページ *********************/
.recruitment-container {
	margin: 15px auto 100px;
	padding-top: 85px;
}
.recruitment-category {
	width: 65%;
	margin: 0 auto;
	padding: 30px 25px 10px;
	background: crimson;
	border-radius: 30px;
}
.recruitment-category h2 {
	text-align: center;
	color: #333;
}
.recruitment-list {
	width: 80%;
	margin: 25px auto 0;
	padding: 30px;
	background: #f5f4f0;
	border-radius: 20px;
	line-height: 1.25;
}
.recruitment-list h3 {
	margin: 10px auto 30px;
	color: crimson;
	font-size: 2rem;
	text-align: center;
}
.recruitment-list p {
	padding: 0 20px;
}
.recruitment-text {
	margin: 20px auto 0;
	padding-bottom: 20px;
	border-bottom: 1px solid #bbb;
}
.recruitment-text:last-child {
	border-bottom: none;
}
.recruitment-text h4 {
	color: crimson;
	font-size: 1.2rem;
}
.recruitment-text ul {
	padding: 0 50px;
	list-style: outside;
}
.recruitment-text li {
	margin: 15px auto;
	font-weight: 400;
}
.recruitment-text p {
	margin-left: 15px;
	font-weight: 400;
}
.recruitment-text a {
	color: crimson;
	border-bottom: 1px solid crimson;
	overflow-wrap: break-word;
}
.recruitment-text a:hover {
	opacity: .3;
}
.recruitment-list img {
	margin: 0 auto;
	width: 40%;
	height: auto;
}
@media (max-width: 885px) {
	.recruitment-category {
		width: 90%;
		margin: 0 auto;
		padding: 20px 10px;
	}
	.recruitment-list img {
		width: 70%;
	}
}
@media(max-width: 767px) {
	.recruitment-category {
		width: 100%;
		margin: 0 auto;
		padding: 20px 5px;
	}
	.recruitment-category h2 {
		font-size: 2.1rem;
	}
	.recruitment-category .tab {
		grid-template-columns: 1fr;
	}
	.recruitment-category .tab li a {
		width: 80%;
		margin: 8px auto;
		padding: 15px 10px;
	}
	.recruitment-list {
		width: 100%;
	}
	.recruitment-list p {
		padding: 0 10px;
	}
	.recruitment-text ul {
		padding: 0 0 0 25px;
	}
	.recruitment-list img {
		width: 100%;
	}
}

/* ページトップへ戻るボタン */
.gotop {
    position: fixed;
    right: 10px;
    bottom: 10px;
	z-index: 20;
	opacity: 0;
	transition: all 0.65s;
}
.gotop img {
	width: 50px;
	height: 50px;
}
.gotop.isActive {
	opacity: 1;
	transition: all 0.65s;
}

/* フッター */
.footer-sns {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
}
.footer-sns div {
	margin: 0 12px;
}
.footer-sns div a {
	display: block;
	width: 60px;
	height: 60px;
	background: #333;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	font-size: 1.7rem;
	line-height: 60px;
}
.footer-sns div a:hover {
	background: crimson;
}
.footer-copy {
	padding: 15px 70px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: crimson;
	color: #fff;
	font-size: .75rem;
}
@media (max-width: 885px) {
	.footer-copy {
		padding: 15px 0 20px;
		align-items: center;
		justify-content: center;
	}
}