@charset "utf-8";

html *,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	margin: 0 auto;
	font-size: 16px;
	scroll-behavior: smooth;
}
.header, h2 {
	font-family: "Oswald", sans-serif;
}
body {
	font-family: "Kosugi", sans-serif;
	font-weight: 400;
	line-height: 1;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}
.header-inner {
	height: 70px;
	margin: 0 auto;
	padding: 10px 5px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo img {
	width: 25%;
}
.openbtn {
	display: none;
}
#g-nav {
	background: #000;
	border-radius: 100vw;
}
#g-nav ul {
	display: flex;
	align-items: center;
}
#g-nav li {
	padding: 5px 20px;
	font-size: 1.3rem;
	letter-spacing: .1em;
	font-weight: bold;
}
#g-nav li a {
	position: relative;
	top: 0;
	display: inline-block;
	padding: 5px 20px;
	color: #fff;
    text-decoration: none;
    outline: none;
    transition: all .2s;
}
#g-nav li a img {
	width: 40px;
	height: 40px;
}
#g-nav a,
#g-nav li a:hover {
	top: -5px;
	color: #e9b824;
}

/* スマホ・タブレット用ヘッダー */
@media (max-width: 1115px) {
	.header-inner {
		padding: 5px 8px;
		justify-content: space-between;
	}
	#g-nav {
		position: fixed;
		z-index: 100;
		top: -120%;
		left: 0;
		width: 100%;
		height: 100vh;
		border-radius: 0;
		transition: all .5s;
	}
	#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: 0;
		right: 0;
		cursor: pointer;
		width: 65px;
		height: 65px;
		background: #000;
		border-radius: 0 0 0 100vh;
	}
	.openbtn span {
		display: inline-block;
		position: absolute;
		left: 23px;
		width: 45%;
		height: 3px;
		border-radius: 2px;
		background: #fff;
		transition: all .3s;
	}
	.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%;
	}
}

/* ページトップへ戻るボタン */
.gotop {
    position: fixed;
	right: 15px;
	bottom: 20px;
	color: #333;
	font-family: "Oswald", sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	writing-mode: vertical-rl;
	text-decoration: none;
	z-index: 50;
	transition: .3s;
}
.gotop::after {
	content: "";
	position: absolute;
	right: 10px;
	top: -40px;
	width: 2px;
	height: 33px;
	background: #333;
}
.gotop::before {
	content: "";
	position: absolute;
	top: -40px;
	right: 5px;
	width: 2px;
	height: 10px;
	background: #333;
	transform: skewX(45deg);
}
.gotop:hover {
	transform: translateY(-10px);
}
.gotop.Up {
	animation: UpAnime .4s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gotop.Down {
  animation: DownAnime .5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}


/* フッター */
.footerwraper {
	padding: 35px 10% 15px;
	background: #000;
	color: #fff;
}
.info {
	background: #939393;
}
.info p {
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Oswald", sans-serif;
	font-size: 1.1rem;
	letter-spacing: 1px;
	text-align: center;
}
.info p::before,
.info p::after {
	content: '';
	width: 3px;
	height: 20px;
	background-color: #e9b824;
}
.info p::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.info p::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
.footer-sns-container {
	margin: 0 auto 60px;
}
.footer-sns {
	display: flex;
	justify-content: center;
}
.footer-sns div {
	margin: 0 15px;
}
.footer-sns div a {
	display: block;
	width: 60px;
	height: 60px;
	transition: .2s;
}
.footer-sns div a:hover {
	transform: scale(1.3);
}
.footer-recruit-container {
	margin: 0 auto 50px;
}
.footer-recruit {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.footer-recruit-btn {
	display: block;
	width: 200px;
	margin: 0 30px;
	padding: 20px;
	background: #fff;
	border: 2px solid #4c6487;
	border-radius: 10px;
	color: #4c6487;
	transition: .2s;
}
.footer-recruit-btn .en {
	font-family: "Oswald", sans-serif;
	font-size: 1.5rem;
	font-weight: bold;
}
.footer-recruit-btn .jp {
	display: block;
	margin-top: 5px;
	font-family: "Kosugi", sans-serif;
	font-size: .9rem;
}
.footer-recruit-btn i {
	font-size: .7rem;
}
.footer-recruit-btn:hover {
	background: #4c6487;
	color: #fff;
	transform: scale(1.1);
}
.footer-logo {
	display: block;
	width: 12%;
	margin: 0 auto;
}
.footer-nav {
	margin: 0 auto;
	padding: 20px 0 10px;
}
.footer-nav ul {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 20px 0; 
}
.footer-nav-main {
	padding: 10px 0;
	font-family: "Oswald", sans-serif;
	font-size: 1.3rem;
	font-weight: bold;
}
.footer-nav-sab {
	font-size: .9rem;
}
.footer-nav ul li a {
	margin: 50px 30px 35px;
	white-space: nowrap;
}
.footer-nav ul li a:hover {
	opacity: .3;
}
.footer-nav li {
	padding: 7px 0;
}
.footer-nav i {
	font-size: .7rem;
}
.footer-copy {
	padding: 15px 70px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	font-size: .75rem;
}
@media (max-width: 1100px) {
	.footerwraper {
		flex-direction: column;
		padding: 25px 0 8px;
	}
	.footer-recruit-btn {
		width: 150px;
		margin: 0 10px;
		padding: 10px 5px;
	}
	.footer-recruit-btn .jp {
		margin-top: 5px;
		font-size: .8rem;
	}
	.footer-logo {
		width: 35%;
	}
	.footer-nav {
		margin: 10px auto;
		padding: 20px 0 10px;
	}
	.footer-nav-main {
		font-size: 1.1rem;
	}
	.footer-nav ul li a {
		margin: 15px 12px;
	}
	.footer-nav-sab {
		font-size: .8rem;
	}
	.footer-copy {
		padding: 15px 3px 20px;
		align-items: center;
		justify-content: center;
		font-size: .65rem;
	}
}

/* 本文の共通設定 */
.main {
	background: url("../images/bg.jpg") repeat;
	width: 100%;
	overflow: hidden;
}
.main-container section {
	margin: 0 auto;
	padding: 200px 20px;
}
.main-container .section-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.main-container h2 {
	margin: 0 auto 50px;
	text-align: center;
	font-size: 7rem;
	color: #333;
}
.link-btn {
	position: relative;
	width: 300px;
	margin: 0 0 0 auto;
	font-family: "Oswald", sans-serif;
	text-align: center;
	letter-spacing: 1px;
}
.link-btn a {
	display: inline-block;
	padding: 1em 110px 1em 0em;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	transition: .3s;
}
.link-btn a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 50vh;
	transition: .3s;
}
.link-btn a:hover::before {
	background: #e9b824;
	border: none;
	transform: translate(0%, -50%) scale(1.7);
}
.btn-arrow {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 2px;
	margin-left: 1.3em;
	color: #fff;
	line-height: 2;
	background: currentColor;
}
.btn-arrow::before {
	position: absolute;
	content: '';
	width: .5em;
	height: .5em;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	top: 50%;
	right: -0.05em;
	box-sizing: border-box;
}
.link-btn-bl a,
.link-btn-bl .btn-arrow {
	color: #000;
}
.link-btn-bl a::before {
	border: 1px solid #000;
}
@media (max-width: 767px) {
	.main-container section {
		padding: 60px 20px;
	}
	.main-container h2 {
		font-size: 5rem;
	}
}

/********************* トップページ *********************/
/* ヒーロー画像 */
.hero-container {
	width: 100%;
	height: 90vh;
	background: url("../images/hero01-pc.jpg") no-repeat;
	background-size: cover;
	background-position: center center;
}
@media (max-width: 1300px) {
	.hero-container {
		height: 80vh;
	}
}
@media (max-width: 1080px) {
	.hero-container {
		height: 50vh;
	}
}
@media (max-width: 850px) {
	.hero-container {
		width: 100%;
		height: 43vh;
	}
}
@media (max-width: 540px) {
	.hero-container {
		height: 98vh;
		background: url("../images/hero01-sp.jpg") no-repeat;
		background-size: cover;
		background-position: center center;
	}
}
/* スライドショー */
.pickup-container {
	margin: 0 auto;
	background: #939393;
}
.slider {
    width: 70%;
    margin: 0 auto;
}
.slider li {
	width: 100%;
    height: auto;
	opacity: .3;
	transform: scale(.7);
	transition: opacity .5s, transform .5s;
}
.slider .slick-center {
	opacity: 1;
	transform: scale(1);
}
.slider img {
	border-radius: 10px;
}
@media (max-width: 767px) {
	.pickup-container {
		margin: -35px auto 0;
	}
	.slider {
		width: 100%;
		overflow: hidden;
	}
	.slider li {
		transform: scale(.5);
	}
}


/* お店の紹介 */
.main-container .about-container {
	padding: 100px 20px;
}
.about-container {
	position: relative;
	background: #939393;
	color: #fff;
}
.about-contents p {
	width: 80%;
	margin: 50px auto 20px;
	font-size: 1.2rem;
	line-height: 1.8;
}
.about-contents img {
	display: block;
	width: 90%;
	margin: 0 auto 50px;
}
.about-img2 {
	width: 300px;
	height: 188px;
	background: url("../images/about02.jpg") no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -5%;
	right: 10%;
	border-radius: 50%;
	z-index: 5;
}
@media (max-width: 767px) {
	.about-contents .about-title {
		font-size: 1.5rem;
	}
	.about-contents p {
		width: 100%;
		margin: 20px auto;
		font-size: 1rem;
		line-height: 1.5;
	}
	.about-contents img {
		width: 100%;
		margin: 0 auto 30px;
	}
	.about-img2 {
		width: 150px;
		height: 94px;
		bottom: -2%;
	}
}

/* メニュー */
.menu-container {
	margin: 50px auto 100px;
	padding-top: 85px;
	background: #000;
	color: #fff;
}
.menu-category {
	width: 75%;
	margin: 0 auto;
	padding: 30px 25px 0;
}
.tab {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	text-align: center;
}
.tab li {
	margin: 0 15px;
}
.tab li a {
	display: block;
	width: 95%;
	padding: 20px;
	font-family: "Oswald", sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	background: #fff;
	border-radius: 100vw;
	color: #000;
	transition: .2s ease-in-out;
}
.tab li.active a,
.tab li a:hover {
	background: #e9b824;
}
.tab-area {
	display: none;
	opacity: 0;
	padding: 0;
	text-align: center;
}
.tab-area ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-row-gap: 20px;
	grid-column-gap: 40px;
}
.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 h3 {
	margin: 40px auto 20px;
	font-family: "Oswald", sans-serif;
	text-align: center;
	font-size: 3rem;
	font-weight: bold;
}
.tab-area img {
	display: block;
	margin: 25px auto 0;
}
.tab-area li {
	margin: 15px 0;
}
.tab-area figcaption {
	margin: 5px auto;
	line-height: 1.3;
}
.tab-area .jp {
	font-size: 1.5rem;
	font-weight: bold;
}
.tab-area .en {
	color: #e9b824;
	font-size: .85rem;
}
.tab-area .pr {
	display: block;
	margin-top: 5px;
	padding: 3px;
	font-size: 1.1rem;
	border: 1px solid #fff;
}
.tab-area .tx {
	display: block;
	font-size: .95rem;
	text-align: left;
}
.tab-area-box {
	padding: 20px;
	border-bottom: 1px dashed#555;
}
.tab-area-box:last-child {
	border-bottom: none;
}
.tab-area-box h4 {
	margin-bottom: 15px;
	color: #e9b824;
	font-size: 1.2rem;
}
.tab-area p {
	margin: 50px auto 0;
	font-size: .95rem;
	text-align: center;
	line-height: 2;
}
.tab-area-drink {
	line-height: 1.4;
}
.tab-area-drink img {
	display: block;
	width: 60%;
	margin: 25px auto 0;
}
.tab-area-drink .jp {
	font-size: 1.1rem;
}
.tab-area-drink .pr {
	font-size: 1rem;
}
.tab-area span {
	display: inline-block;
}
.set-menu-img {
	display: block;
	width: 100%;
	margin: 70px auto 0;
	border-radius: 30px;
}
@media (max-width: 885px) {
	.menu-category {
		width: 90%;
		margin: 0 auto;
		padding: 20px 10px;
	}
	.tab-area ul {
		grid-template-columns: 1fr 1fr;
	}
	.tab li {
		margin: 20px 15px;
	}
	.tab li a {
		width: 90%;
		padding: 15px 10px;
		font-size: 1rem;
	}
}
@media (max-width: 767px) {
	.menu-container {
		margin: 0 auto;
	}
	.tab {
		grid-template-columns: 1fr 1fr;
	}
	.menu-category {
		width: 100%;
		margin: 0 auto;
		padding: 10px 0;
	}
	.tab li {
		margin: 8px;
	}
	.tab li a {
		width: 100%;
		padding: 12px 5px;
		font-size: 1rem;
	}
	.tab-area h3 {
		margin: 20px auto 10px;
		font-size: 2.5rem;
	}
	.tab-area ul {
		grid-row-gap: 20px;
		grid-column-gap: 20px;
	}
	.tab-area img {
		width: 100%;
	}
	.tab-area .jp {
		font-size: 1rem;
	}
	.tab-area .hi {
		font-size: .9rem;
	}
	.tab-area .pr {
		padding: 3px 1px;
		font-size: .95rem;
	}
	.tab-area .tx {
		font-size: .8rem;
	}
	.tab-area-drink .jp {
		font-size: 1rem;
	}
	.tab-area-drink .pr {
		font-size: 1rem;
	}
	.tab-area-drink img {
		width: 80%;
	}
	img.set-menu-img {
		width: 100%;
		border-radius: 20px;
	}
}

/* 店舗 */
.shop-container {
	background: #939393;
	color: #fff;
}
.shop-contents ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-row-gap: 30px;
	grid-column-gap: 30px;
}
.shop-contents li {
	transition: .3s;
}
.shop-contents li:hover {
	opacity: .5;
}
.shop-contents img {
	display: block;
	margin: 0 auto;
	transform: scale(1);
	transition: .3s ease-in-out;
	border-radius: 10px;
}
.zoomIn a:hover img{
	transform: scale(1.2);
}
.mask{
    display: block;
    line-height: 0;
    overflow: hidden;
	border-radius: 10px;
}
.shop-contents figcaption {
	margin: 8px auto;
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
}
.shop-contents figcaption span {
	display: inline-block;
}
.shop-contents figcaption .ac {
	display: block;
	margin-top: 8px;
	font-size: .9rem;
	font-weight: 400;
}
@media (max-width: 767px) {
	.shop-contents ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-row-gap: 25px;
		grid-column-gap: 20px;
	}
	.shop-contents figcaption {
		font-size: .95rem;
	}
	.shop-contents figcaption .ac {
		font-size: .75rem;
	}
}

/* ニュース */
.news-container {
	background: url("../images/bg.jpg") no-repeat;
	background-size: cover;
	background-position: center center;
}
.news-container .news-contents {
	padding: 20px;
	background: #000;
	border-radius: 10px;
}
.news-container .news-contents-inner {
	padding: 20px;
	background: #fff;
}
.news-contents-inner .top {
	margin-bottom: 10px;
}
.news-contents-inner li {
	margin: 20px auto;
	padding-bottom: 15px;
	border-bottom: 1px dashed #bbb;
	line-height: 1.3;
}
.news-contents-inner li .cate {
	display: inline;
	margin-right: 10px;
	padding: 3px 5px;
	background: #e9b824;
	border-radius: 3px;
	color: #fff;
	font-size: .9rem
}
.news-contents-inner li .date {
	color: #bbb;
	font-weight: bold;
}
.news-contents-inner li a {
	transition: .2s ease-in-out;
}
.news-contents-inner li a:hover {
	opacity: .5;
}
@media (max-width: 767px) {
	.news-container {
		background: url("../images/bg-sp.jpg") no-repeat;
		background-size: cover;
		background-position: center center;
	}
	.news-contents-inner h3 {
		font-size: 1rem;
	}
}


/********************* 店舗紹介ページ *********************/
.aboutus-container {
	background: #000;
	overflow: hidden;
}
.aboutus-contents .aboutus-box {
	margin: 100px auto;
}
.aboutus-contents h3 {
	position: relative;
	margin-bottom: 30px;
	padding-top: 50px;
	color: #fff;
	font-size: 2.5rem;
	line-height: 1.3;
	text-align: left;
}
.aboutus-contents h3::before {
	content: attr(data-number);
	position: absolute;
	top: -55px;
	left: 0;
	transform: translateX(-50%);
	color: rgba(233, 184, 36, .5);
	font-size: 8rem;
	font-style: italic;
}
.aboutus-contents h3 span {
	display: inline-block;
}
.aboutus-contents p {
	width: 80%;
	margin: 0 auto 30px;
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.8;
}
.aboutus-contents img {
	display: block;
	margin: 0 auto;
	width: 60%;
}
@media (max-width: 767px) {
	.aboutus-contents h3 {
		font-size: 1.5rem;
		text-align: center;
	}
	.aboutus-contents h3::before {
		left: 20px;
		font-size: 7rem;
	}
	.aboutus-contents p {
		width: 90%;
		font-size: 1rem;
		line-height: 1.5;
	}
	.aboutus-contents img {
		width: 90%;
	}
}


/********************* 店舗情報詳細ページ *********************/
.shopinfo-container {
	background: #f4f4f4;
}
.shopinfo-contents {
	margin: 0 auto;
	display: flex;
}
.shopinfo-contents-img {
	margin: 30px auto 0;
	max-width: 45%;
	width: 100%;
}
.shopinfo-contents-img li {
	border: 2px solid #f4f4f4;
}
.shopinfo-slider img {
	width: 100%;
	height: auto;
}
.shopinfo-thumbnail .slick-track {
	transform: unset !important;
}
.shopinfo-thumbnail li {
	opacity: .3;
	transition: opacity .3s linear;
}
.shopinfo-thumbnail .slick-current {
	opacity: 1;
}
.shopinfo-contents-text {
	margin-left: 40px;
}
.shopinfo-title {
	margin-bottom: 15px;
	padding: 10px 3px;
	background: #e9b824;
	border-radius: 10px;
	font-size: 2.2rem;
	text-align: center;
}
.shopinfo-contents dl {
	display: flex;
	align-items: center;
	padding: 20px 5px;
	border-bottom: 1px solid #bbb;
}
.shopinfo-contents dt {
	flex-basis: 25%;
	font-size: .9rem;
	font-weight: bold;
}
.shopinfo-contents dd {
	flex-basis: 75%;
	line-height: 1.4;
}
.shopinfo-contents dd .map-link {
	font-size: .8rem;
}
.shopinfo-contents dd .link {
	border-bottom: 1px solid #777;
}
.shopinfo-contents dd a:hover {
	opacity: .5;
}
.shopinfo-contents dd img {
	width: 10%;
}
.shopinfo-contents dd span {
	display: inline-block;
}
.shopinfo-notes {
	margin: 20px 10px 0;
	font-size: .85rem;
	line-height: 1.5;
}
.shopinfo-container iframe {
	margin: 20px auto;
	width: 100%;
	height: 35vh;
}
@media (max-width: 767px) {
	.shopinfo-contents {
		flex-direction: column;
	}
	.shopinfo-contents-img {
		margin: 30px auto;
		max-width: 90%;
	}
	.shopinfo-contents-text {
		margin-left: 0;
	}
	.shopinfo-title {
		margin-bottom: 10px;
		font-size: 1.7rem;
	}
	.shopinfo-contents dd img {
		width: 20%;
	}
	.shopinfo-notes {
		font-size: .75rem;
	}
}


/********************* ニュースページ *********************/
/* ニュース一覧 */
.newslist-container {
	background: #f4f4f4;
}
.newslist {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-row-gap: 30px;
	grid-column-gap: 30px;
}
.newslist img {
	width: 90%;
	display: block;
	margin: 0 auto 12px;
	transform: scale(1);
	transition: .3s ease-in-out;
	border-radius: 10px;
}
.newslist figcaption {
	text-align: center;
}
.newslist .cate {
	display: inline;
	margin-right: 10px;
	padding: 3px 5px;
	background: #e9b824;
	border-radius: 3px;
	color: #fff;
	font-size: .9rem
}
.newslist .date {
	color: #bbb;
	font-size: .9rem;
	font-weight: bold;
}
.newslist .title {
	display: block;
	margin: 15px auto 0;
	font-size: 1.2rem;
	font-weight: bold;
}
@media (max-width: 767px) {
	.newslist {
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 20px;
	}
	.newslist img {
		width: 100%;
	}
	.newslist .cate {
		margin-right: 0;
		line-height: 1.5;
		font-size: .8rem
	}
	.newslist .title {
		font-size: 1rem;
	}
}

/* ニュース詳細 */
.newstext-contents {
	width: 80%;
	margin: 0 auto 50px;
}
.newstext-contents .date {
	margin-bottom: 20px;
	color: #bbb;
	font-size: 1.2rem;
	font-weight: bold;
}
.newstext-contents h3 {
	padding-bottom: 10px;
	font-size: 2rem;
	border-bottom: 1px solid #000;
}
.newstext-contents img {
	display: block;
	width: 60%;
	margin: 20px auto 0;
}
.newstext-contents p {
	margin: 30px auto 0;
}
@media (max-width: 767px) {
	.newstext-contents {
		width: 100%;
	}
	.newstext-contents h3 {
		font-size: 1.5rem;
	}
	.newstext-contents img {
		width: 80%;
	}
}


/********************* デリバリーページ *********************/
.delivery-container {
	background: #000;
	color: #fff;
}
.delivery-contents div {
	margin: 50px auto;
}
.delivery-contents h3 {
	padding: 10px 3px;
	background: #e9b824;
	border-radius: 10px;
	color: #000;
	font-size: 1.8rem;
	text-align: center;
}
.delivery-contents p {
	line-height: 1.4;
	text-align: center;
}
.delivery-contents ul {
	padding: 20px 20px 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-row-gap: 30px;
	grid-column-gap: 30px;
	font-size: .95rem;
	text-align: center;
}
.delivery-contents ul li a {
	margin: 0 8px;
	transition: .2s;
}
.delivery-contents ul li a:hover {
	opacity: .4;
}
.delivery-contents img {
	width: 80px;
	height: 80px;
	margin-bottom: 8px;
}
@media (max-width: 767px) {
	.delivery-contents p {
		text-align: left;
	}
	.delivery-contents ul {
		grid-template-columns: 1fr;
		grid-row-gap: 50px;
	}
	.delivery-contents img {
		width: 70px;
		height: 70px;
	}
}