@charset "utf-8";

body {
	font-family: 'Noto Serif JP', serif;
	-webkit-text-size-adjust: 100%;
	background-color: #ecf2f4;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	/* letter-spacing: 0.08em; */
}
.clearfix:after {
	content: ' ';
	display: block;
	clear: both;
}
*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}
a {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.font-bold {
	font-weight: bold;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.container {
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 999px) {
	.container {
		padding: 0 27px;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	.sp {
		display: none;
	}
}
.is-shadow {
	filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
}
.clip-path {
	background-color: #fff;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%);
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}
.box-shadow {
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}
.bg {
	background: url(../img/bg.jpg) repeat center top;
}
.p500 {
	padding-bottom: 500px;
}
h3 {
	font-size: 28px;
	font-weight: 700;
}
h3 span {
	font-size: 20px;
}
h4 {
	font-size: 20px;
	font-weight: 700;
}
.btn {
	background-color: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 36px;
	font-size: 16px;
	font-weight: bold;
}
.btn.clum {
	flex-flow: column;
	line-height: 1;
}
@media screen and (min-width: 1000px) {
	.btn:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.p500 {
		padding-bottom: 450px;
	}
}
/* header */
#header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 11;
}
.logo {
	margin: 0 0 0 50px;
}
.logo a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 220px;
	background-color: #e6e1c8;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1000px) {
	.logo a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 999px) {
	.logo {
		margin: 0 0 0 20px;
	}
	.logo a {
		width: 80px;
		height: 110px;
	}
	.logo a img {
		width: 56px;
	}
}
/* mainvisual */
.mainvisual {
	width: 100%;
	height: 100vh;
	position: relative;
}
.mainvisual h1 {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 767px) {
	.mainvisual h1 {
		padding-bottom: 40px;
	}
}
.mainvisual .video {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}
#youtube {
	/*天地中央配置*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*縦横幅指定*/
	width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
	height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
	min-height: 100%;
	min-width: 100%;
}
@media screen and (max-width: 767px) {
	.mainvisual .video video {
		width: auto;
		height: 100%;
		position: absolute;
		left: 50%;
		top: 0%;
		transform: translateX(-50%);
	}
	.video.is-show {
		opacity: 0;
	}
	#youtube {
		width: 100vw;
		height: 177.77777778vw;
		aspect-ratio: 9 / 16;
	}
}
.scrolling {
	position: absolute;
	right: 30px;
	bottom: 0;
	color: #fff;
	width: 22px;
}
.scrolling .text {
	display: inline-block;
	font-family: 'Noto Sans', sans-serif;
	font-size: 11px;
	letter-spacing: 0.08em;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: tb-rl;
	position: absolute;
	right: 0;
	top: 0;
}
.scrolling span.line {
	display: inline-block;
	position: relative;
	width: 1px;
	height: 170px;
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	.scrolling {
		right: 17px;
	}
	.scrolling span.line {
		height: 120px;
	}
}
.scrolling span.line:after {
	-webkit-animation: circlemove 1.8s ease-in-out infinite, cirlemovehide 1.8s ease-out infinite;
	position: absolute;
	bottom: 0;
	left: -4px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #fff;
	animation: circlemove 1.8s ease-in-out infinite, cirlemovehide 1.8s ease-out infinite;
	content: '';
}
@keyframes circlemove {
	0% {
		bottom: 100%;
	}
	100% {
		bottom: -5px;
	}
}
@-webkit-keyframes circlemove {
	0% {
		bottom: 100%;
	}
	100% {
		bottom: -5px;
	}
}
@keyframes cirlemovehide {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}
@-webkit-keyframes cirlemovehide {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}
.anchor {
	display: block;
	/* background-color: #000;
	color: #fff;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center; */
	position: fixed;
	right: 63px;
	bottom: 21px;
	/* letter-spacing: 0.08em;
	font-size: 18px; */
	z-index: 11;
}
@media screen and (min-width: 1000px) {
	.anchor:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.anchor {
		bottom: 0;
		right: 50%;
		transition: 0.3s;
		transform: translateX(50%);
		width: 227px;
	}
	.anchor img {
		width: 227px;
	}
	.anchor.is-show {
		transform: translateX(50%) scale(0.7);
		right: 25%;
	}
}
/* greeting */
.greeting {
	padding: 94px 0 106px;
}
.greeting p {
	font-size: 22px;
	line-height: 2.8;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin: 0 0 60px;
}
@media screen and (min-width: 1000px) {
	.shop-list {
		display: flex;
		flex-wrap: wrap;
	}
	.shop-list li {
		width: 32%;
		margin: 0 2% 0 0;
	}
	.shop-list li:nth-child(3n) {
		margin-right: 0;
	}
}
@media screen and (max-width: 999px) {
	.shop-list li {
		margin: 0 0 30px;
	}
	.shop-list li:last-child {
		margin: 0;
	}
}
.shop-list .photo img {
	width: 100%;
}
.shop-list .clip-path {
	background-color: #e6e1c8;
}
.shop-info {
	padding: 16px 30px 22px;
}
.shop-info h3 {
	margin: 0 0 13px;
}
.shop-info-list {
	position: relative;
}
.shop-info dl {
	display: flex;
	margin: 0 0 10px;
}
.shop-info dt {
	width: 42px;
	font-weight: bold;
}
.shop-info dd {
	width: calc(100% - 42px);
}
.map-btn {
	font-family: 'Noto Sans', sans-serif;
	font-size: 12px;
	line-height: 20px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
	width: 50px;
	position: absolute;
	right: 0;
	top: 0;
}
.shop-info .btn {
	font-family: 'Noto Sans', sans-serif;
	letter-spacing: 0.08em;
	margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
	.greeting {
		padding: 80px 0 100px;
	}
	.greeting p {
		font-size: 18px;
		text-align: center;
		margin: 0 -27px 60px;
	}
}
/* delivery */
.delivery {
	padding: 124px 0 101px;
	background: url(../img/layer1.png) no-repeat center bottom, url(../img/bg.jpg) repeat center top;
}
.delivery h2 {
	margin: 0 0 43px;
}
.delivery p.text-center {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 60px;
}
.take-list {
	margin: -50px 0 0;
}
@media screen and (min-width: 1000px) {
	.take-list {
		display: flex;
		justify-content: space-between;
		margin: -120px 0 0;
	}
	.take-list li {
		width: 48%;
	}
}
@media screen and (max-width: 999px) {
	.take-list li {
		margin: 0 0 30px;
	}
	.take-list li:last-child {
		margin-bottom: 0;
	}
	.delivery .photo {
		margin: 0 -27px;
	}
}
@media screen and (max-width: 767px) {
	.delivery {
		padding: 80px 0 90px;
		background: url(../img/layer1_2x.png) no-repeat center bottom 17px / 100% auto, url(../img/bg.jpg) repeat center top / 700px 631px;
	}
	.delivery h2 {
		margin: 0 -6px 30px;
	}
	.delivery p.text-center {
		font-size: 18px;
		line-height: 1.8;
		margin: 0 0 50px;
	}
}
.take-list li {
	position: relative;
}
.take-list li::before {
	content: '';
	position: absolute;
	z-index: 3;
}
.take-list li.icon1::before {
	width: 55px;
	height: 51px;
	background: url(../img/icon1.png) no-repeat center / cover;
	left: 29px;
	top: 23px;
}
.take-list li.icon2::before {
	width: 59px;
	height: 55px;
	background: url(../img/icon2.png) no-repeat center / cover;
	left: 26px;
	top: 19px;
}
.take-list .clip-path {
	height: 100%;
	padding: 26px 78px 28px;
}
.take-list h3,
.take-out h4,
.take-out dl {
	margin: 0 0 27px;
}

.take-out dl {
	font-weight: bold;
}
.take-out dl dt {
	font-size: 18px;
}
.take-out dl dd {
	font-size: 26px;
}
.take-out dl dd a {
	text-decoration: underline;
}
@media screen and (min-width: 1000px) {
	.take-out dl dd a:hover {
		text-decoration: none;
	}
}
.take-link {
	padding: 0;
}
.take-link .btn {
	margin: 0 auto 20px;
	width: 280px;
	height: 70px;
}
.take-link .btn .shop {
	display: inline-block;
	margin-top: 8px;
	font-size: 13px;
	text-align: center;
	font-weight: normal;
}
.take-link .btn:last-child {
	margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
	.take-out dl {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.take-out dl dt {
		width: 134px;
		line-height: 1;
	}
	.take-out dl dd {
		flex: 1;
		font-size: 24px;
	}
	.take-out small {
		font-size: 100%;
	}
}
@media screen and (max-width: 999px) {
	.take-out {
		text-align: center;
	}
	.take-link {
		padding: 17px 0 27px;
	}
}
@media screen and (max-width: 767px) {
	.take-list .clip-path {
		height: 100%;
		padding: 26px 22px 30px;
	}
	.take-list h3 {
		padding-left: 50px;
	}
	.take-list h3,
	.take-out h4,
	.take-out dl {
		margin: 0 0 30px;
	}
	.take-link .btn {
		margin: 0 auto 26px;
		width: 260px;
		height: 70px;
	}
	.take-link .btn:last-child {
		margin-bottom: 0;
	}
}
/* bringing */
.bringing {
	padding: 122px 0 60px;
	background: url(../img/layer2.png) no-repeat center top 84px, url(../img/bg.jpg) repeat center top;
}
.bringing h2 {
	margin: 0 0 47px;
}
.bringing p {
	font-size: 18px;
	line-height: 2.6;
	font-weight: 700;
	letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
	.bringing {
		padding: 60px 0 47px;
		background: url(../img/layer2_2x.png) no-repeat center top 178px, url(../img/bg.jpg) repeat center top / 700px 631px;
	}
	.bringing h2 {
		margin: 0 -3px 45px;
	}
	.bringing p {
		font-size: 16px;
		margin: 0 -27px;
		letter-spacing: normal;
	}
}
/* profile */
.profile {
	padding: 100px 0 0;
	overflow: hidden;
	background: url(../img/layer3.png) no-repeat center bottom 62px, url(../img/bg.jpg) repeat center top;
}
.profile h3 {
	margin: 0 0 30px;
}
.profile p {
	line-height: 1.85;
}
@media screen and (min-width: 1000px) {
	.profile-main {
		display: flex;
	}
	.profile-main .photo {
		width: 300px;
	}
	.info {
		width: calc(100% - 300px);
		padding-left: 40px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
}
.profile-main .photo img {
	width: 100%;
}
.info-list dl {
	display: flex;
	margin: 0 0 10px;
}
.info-list dl:last-child {
	margin: 0;
}
.info-list dt {
	width: 56px;
	font-weight: bold;
}
.info-list dd {
	flex: 1;
}

@media screen and (min-width: 1000px) {
	.introduct li {
		margin: 100px 0 0;
		position: relative;
	}
	.introduct-text {
		padding: 15px 0;
		max-width: 48%;
	}
	.introduct-text img {
		margin: 90px 0 0 10px;
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 34px) 100%, 0 100%);
	}
	.introduct .photo {
		position: absolute;
		left: 58%;
		top: 0;
	}
	.introduct .photo img {
		max-width: none;
	}
	.introduct li:nth-child(2n) {
		display: flex;
		justify-content: flex-end;
		padding-bottom: 42px;
	}
	.introduct li:nth-child(2n) .photo {
		left: inherit;
		right: 58%;
	}
	.introduct li:nth-child(2n) .introduct-text {
		padding-bottom: 0;
	}
}
@media screen and (max-width: 999px) {
	.profile-main {
		margin: 0 0 62px;
	}
	.profile-main .photo {
		margin: 0 0 40px;
	}
	.introduct li {
		margin: 0 0 77px;
	}
	.introduct li:nth-child(2n) .photo {
		margin: 0 0 43px -27px;
	}
	.introduct .photo {
		margin: 0 -27px 43px 0;
	}
	.introduct .photo img {
		width: 100%;
	}
	.introduct-text img {
		float: right;
		margin-top: 80px;
	}
	.info-main {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 767px) {
	.profile {
		padding: 55px 0 0;
		background: url(../img/layer3_2x.png) no-repeat left top / 100% auto, url(../img/bg.jpg) repeat center top / 700px 631px;
	}
	.profile h3 {
		margin: 0 0 20px;
	}
	.introduct-text div.sp {
		margin: 0 -27px;
	}
}
/* recruit */
.recruit {
	padding: 122px 0 148px;
	overflow: hidden;
}
.recruit h2 {
	margin: 0 0 45px;
}
.recruit p.text-center {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 60px;
}
.requirements {
	position: relative;
}
@media screen and (min-width: 1000px) {
	.requirements .photo {
		position: absolute;
		left: 52%;
		top: 0;
	}
	.requirements .photo img {
		max-width: none;
	}
	.requirements-cont {
		max-width: 480px;
	}
}
.recruit h3 {
	margin: 0 0 25px;
}
.recruit dl {
	display: flex;
	margin: 0 0 10px;
}
.recruit dt {
	width: 84px;
	font-weight: bold;
}
.recruit dd {
	flex: 1;
}
.contact {
	background-color: #fff;
	border: 2px solid #000;
	padding: 20px 25px 25px 30px;
	margin: 30px 0;
}
.contact li {
	margin: 10px 0 0;
}
.contact li a {
	text-decoration: underline;
}
.contact li a:hover {
	text-decoration: none;
}
.mr-10 {
	margin-right: 10px;
}
.recruit .btn {
	width: 320px;
	height: 50px;
	font-size: 18px;
}
@media screen and (max-width: 999px) {
	.requirements .photo {
		margin: 0 -27px 63px 0;
	}
	.requirements .photo img {
		width: 100%;
	}
	.recruit .btn {
		margin: 0 auto;
	}
}
@media screen and (max-width: 767px) {
	.recruit {
		padding: 82px 0 84px;
	}
	.recruit h2 {
		margin: 0 -3px 34px;
	}
	.recruit p.text-center {
		font-size: 18px;
		line-height: 1.8;
		margin: 0 0 50px;
	}
	.recruit h3 {
		margin: 0 0 20px;
	}
	.recruit dl {
		display: block;
		margin: 0 0 20px;
	}
	.recruit dt {
		width: auto;
		margin: 0 0 5px;
	}
	.recruit dd {
		flex: none;
	}
	.contact {
		background-color: #fff;
		border: 2px solid #000;
		padding: 20px 25px 25px 30px;
		margin: 30px 0;
	}
	.mr-10 {
		margin-right: 0;
	}
	.recruit .btn {
		width: 100%;
		height: 72px;
		font-size: 20px;
	}
}
/* staff */
.staff {
	padding: 107px 0 187px;
	background: url(../img/bg7.png) no-repeat center bottom, url(../img/layer4.png) no-repeat center bottom, url(../img/bg.jpg) repeat center top;
}
.staff h2 {
	margin: 0 0 100px;
}

@media screen and (min-width: 1000px) {
	.staff-list {
		display: flex;
		justify-content: space-between;
	}
	.staff-list li {
		width: 48%;
		position: relative;
	}
}
@media screen and (max-width: 999px) {
	.staff-list li {
		margin: 0 0 100px;
	}
	.staff-list li:last-child {
		margin-bottom: 0;
	}
}
.staff .photo img {
	width: 100%;
}

.position {
	position: absolute;
	left: 20px;
	top: -40px;
	z-index: 1;
	background-color: #9b493d;
	color: #fff;
	padding: 19px 25px;
	min-width: 160px;
	max-width: calc(100% - 40px);
	font-weight: bold;
}
.p-name {
	font-size: 26px;
	margin-top: 2px;
}
.voice {
	padding: 30px 30px 40px;
}
.voice h3 {
	margin: 0 0 20px;
}
.voice p {
	line-height: 1.85;
}
@media screen and (max-width: 767px) {
	.staff {
		padding: 84px 0 200px;
		background: url(../img/layer4_2x.png) no-repeat center bottom / 100% auto, url(../img/bg.jpg) repeat center top / 700px 631px;
	}
	.position {
		top: -70px;
	}
	.staff-list li {
		margin: 0 0 270px;
		position: relative;
	}
	.staff-list li::before {
		content: '';
		width: calc(100% + 54px);
		height: 240px;
		background: url(../img/bg7_2x.png) no-repeat center / contain;
		position: absolute;
		left: -27px;
		top: 100%;
		margin-top: -10px;
	}
	.staff-list li:last-child::before {
		display: none;
	}
}
/* footer */
.copyright {
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 20px;
	background-color: #9b493d;
	color: #fff;
}

/*----- フェードインしながら上へスライド -----*/
.inviewfadeInUp {
	opacity: 0;
	transform: translate(0, 90px);
	-webkit-transform: translate(0, 90px);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.fadeInUp {
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}
@media screen and (min-width: 1000px) {
	.de1 {
		transition-delay: 0.2s;
		-webkit-transition-delay: 0.2s;
	}
	.de2 {
		transition-delay: 0.4s;
		-webkit-transition-delay: 0.4s;
	}
}

.gallery {
	height: 920px;
	position: relative;
}
.gallery li {
	position: absolute;
}
@media screen and (min-width: 1000px) {
	.ga1 {
		left: 52%;
		top: 40px;
	}
	.ga2 {
		right: -188px;
		top: 136px;
	}
	.ga3 {
		left: -86px;
		top: 264px;
	}
	.ga4 {
		right: -75px;
		bottom: 189px;
	}
	.ga5 {
		right: 245px;
		bottom: 62px;
	}
}
@media screen and (max-width: 999px) {
	.gallery {
		/* height: 855px; */
		height: 228vw;
		margin: 0 -27px;
		background: url(../img/bg-ga.png) no-repeat center top 52vw / 100% auto;
	}
	.gallery li {
		width: 100%;
		left: 0;
		text-align: center;
	}
	.gallery img {
		width: 100%;
	}
	.ga1 {
		top: 0;
	}
	.ga2 {
		top: 25vw;
	}
	.ga3 {
		top: 81.74vw;
	}
	.ga4 {
		top: 145.34vw;
	}
	.ga5 {
		top: 183.74vw;
	}
}
