@charset "UTF-8";
/* ----------------------------------------------
	共通
---------------------------------------------- */
html {
	height: 100%;
	font-size: 10px;
	/* 1rem = 10px */
}

body {
	height: 100%;
	font-size: 1.6rem;
	color: #000000;
}

a {
	color: #0277BD;
	text-decoration: underline;
}

a:hover {
	color: #0277BD;
	text-decoration: none;
}

.rollover img {
	transition: 0.3s;
}

a.rollover:hover img {
	opacity: 0.8;
}

button, input, textarea,
body {
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* -------------------------------------
	各要素の初期設定
---------------------------------------- */
input {
	vertical-align: middle;
}

.ja {
	ime-mode: active;
}

.en {
	ime-mode: inactive;
}

.bold,
em,
strong {
	font-weight: 700;
}

.del,
del {
	text-decoration: line-through;
}

.underline {
	text-decoration: underline;
}

.left {
	text-align: left !important;
}

.right {
	text-align: right !important;
}

.center {
	text-align: center !important;
}

img {
	max-width: 100%;
}

/* -------------------------------------
	form初期設定
---------------------------------------- */
input[type="checkbox"],
input[type="radio"] {
	display: inline-block;
	margin: 0 3px 0 0;
	vertical-align: middle;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="email"],
input[type="password"] {
	border: 1px solid #CFD8DC;
	line-height: 1.5;
	margin: 0;
	padding: 10px 15px;
}

label {
	display: inline-block;
	vertical-align: middle;
}

textarea {
	border: 1px solid #CFD8DC;
	line-height: 1.5;
	margin: 0;
	padding: 10px 15px;
	resize: vertical;
}

select {
	/* デフォルト装飾を解除 */
	/*/
	-webkit-appearance:none;
	-moz-appearance: none;
	appearance: none;
/*/
	border: 1px solid #CFD8DC;
	line-height: 1.5;
	margin: 0;
	padding: 10px 10px 10px 15px;
	cursor: pointer;
}

select::-ms-expand {
	/* デフォルト装飾を解除　IE版 */
	/*/
	display: none;
/*/
}

*:disabled,
.disabled {
	background: #eee;
	color: #555;
}

/* -------------------------------------
	汎用パーツ
---------------------------------------- */
.pc {
	display: block !important;
}

.pc_inline {
	display: inline !important;
}

.pc_inline_block {
	display: inline-block !important;
}

.sp {
	display: none !important;
}

.sp_inline {
	display: none !important;
}

.sp_inline_block {
	display: none !important;
}

.red {
	color: #e60033;
}

/* -------------------------------------
	レイアウト初期設定
---------------------------------------- */
.container {
	min-height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* -------------------------------------
	header
---------------------------------------- */
.header {
	width: 100%;
	background-color: #2a2318;
	height: 50px;
	position: fixed;
	text-align: center;
	z-index: 100;
}

.header .-inner {
	margin: 0 auto 12px;
	position: relative;
	max-width: 1280px;
	text-align: center;
}

.header .-logo {
	position: relative;
	top: -16px;
}

.header_tel_area {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
}

.header_tel_area .-sns {
	margin-right: 15px;
	display: flex;
}

.header_tel_area .-sns li {
	margin-left: 15px;
}

.header_nav {
	margin: 0 auto 12px;
	max-width: 1280px;
	font-size: 1.6rem;
}

.header_nav .-nav {
	display: flex;
	justify-content: center;
	max-width: 1280px;
	background-color: #2a2318;
}

.header_nav .-nav a {
	transition: 0.3s;
}

.header_nav .-nav a:hover {
	opacity: 0.7;
}

.header_nav .-nav li {
	border-right: 1px solid #000000;
}

.header_nav .-nav li:last-child {
	border-right: none;
}

.header_nav .-nav li a {
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0 20px;
}

.header_nav .-nav li a:hover {
	background: #f7f4d4;
}

/* -------------------------------------
	footer
---------------------------------------- */
.footer {
	background: #2a2318;
	width: 100%;
	display: flex;
	justify-content: center;
}

.footer a {
	color: #000000;
	text-decoration: none;
}

.footer .-inner {
	margin: 0 auto;
	max-width: 1280px;
	padding: 35px 40px;
	display: flex;
}

.footer_nav {
	font-size: 1.4rem;
	display: flex;
}

.footer_nav ul:not(:last-of-type) {
	margin-right: 80px;
}

.footer_nav a {
	display: block;
	padding: 2px 0;
}

.footer_nav a:hover {
	text-decoration: underline;
}

.footer_info {
	display: flex;
	align-items: flex-end;
}

.footer_info .-item {
	margin-left: 15px;
}

.copyright {
	text-align: center;
	padding: 20px 0;
	font-size: 1.2rem;
	color: white;
	display: block;
}

/* -------------------------------------
	content
---------------------------------------- */
.main {
	display: block;
	flex: 1 0 auto;
}

.content {
	line-height: 1.6;
}

.content a {
	transition: 0.3s;
}

.content a:hover {
	opacity: 0.7;
}

.content_inner {
	max-width: 1280px;
	margin: 0 auto;
}

/* -------------------------------------
	main_visual
---------------------------------------- */
.main_visual {
	max-width: 1280px;
	margin: 0 auto;
}

/* -------------------------------------
	item
---------------------------------------- */
.text_link {
	color: #0277BD;
	text-decoration: underline;
}

.top_area01 {
	padding: 30px 0;
	line-height: 1.8;
}

.top_area01 .-title {
	text-align: center;
	font-weight: 700;
	font-size: 2.4rem;
	margin-bottom: 40px;
}

.top_area01 .-text {
	text-align: center;
}

.top_area02 {
	background: #2a2318;
}

.top_area02 .-inner {
	padding-top: 30px;
	padding-bottom: 40px;
	text-align: center;
}

.top_area02 .-title {
	font-size: 3.2rem;
	font-weight: 400;
	margin-bottom: 15px;
}

.top_area02 .-text {
	font-size: 2rem;
	margin-bottom: 30px;
}

.top_area02 .-img {
	margin-bottom: 30px;
}

.top_area02 .-btn {
	background: #ffbd45;
	border-radius: 12px;
	text-align: center;
	padding: 15px 0;
	max-width: 655px;
	display: block;
	text-decoration: none;
	color: #000000;
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0 auto;
}

.top_area03 {
	padding: 20px 0;
}

.top_area04 .-inner {
	background: url(../images/bg_top_area04.jpg) no-repeat center center;
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 50px;
	color: #ffffff;
	text-align: center;
	margin-bottom: 45px;
}

.top_area04 .-title {
	font-weight: 700;
	font-size: 3.8rem;
	border-bottom: 2px solid #ffffff;
	display: inline-block;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin-bottom: 35px;
}

.top_area04 .-text {
	font-weight: 700;
	font-size: 3rem;
	margin-bottom: 40px;
}

.top_area04 .-btn {
	border: 3px solid #ffffff;
	display: block;
	text-align: center;
	border-radius: 3px;
	font-size: 3rem;
	max-width: 660px;
	text-decoration: none;
	color: #ffffff;
	padding: 18px 0;
	line-height: 1;
	margin: 0 auto;
}

.top_area04 .-btn:hover {
	background-color: #000;
}

.top_area05 .-column {
	display: flex;
	justify-content: space-around;
	margin-bottom: 60px;
}

.top_area05 .-column .-item {
	width: 42%;
	max-width: 530px;
}

.item_round .-title {
	background: #f7f4d4;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	font-size: 1.8rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
}

.item_round .-title2 {
	background: #2a2318;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	font-size: 1.8rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
}

.item_img .-title {
	margin-bottom: 15px;
}

.item_img .-title2 {
	margin-bottom: 15px;
}

.information_area {
	background: #f7f4d4;
}

.information_area .-inner {
	padding: 45px 20px 25px;
}

.information_area .-title {
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 35px;
}

.information_list {
	margin: 0 auto 30px;
	max-width: 930px;
	font-size: 16px;
	text-align: left;
}

.shop_area .-inner {
	padding-top: 75px;
	padding-bottom: 30px;
}

.shop_area .-title {
	font-weight: 700;
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 50px;
}

.shop_column {
	display: flex;
	justify-content: center;
}

.shop_column .-item {
	max-width: 355px;
	margin: 0 20px;
}

.shop_column .-item .-img {
	margin-bottom: 20px;
}

.shop_column .-item .-name {
	font-weight: 700;
	font-size: 2rem;
}

.shop_column a.-item {
	text-decoration: none;
	color: #000000;
}

.shop_column a.-item:hover {
	opacity: 0.7;
}

/* -------------------------------------
	ページトップ
---------------------------------------- */
.pagetop {
	display: none;
	position: fixed;
	right: 50px;
	bottom: 50px;
	z-index: 5;
}

.pagetop a {
	background: #000000;
	border-radius: 50%;
	color: #fff;
	display: block;
	font-size: 3.2rem;
	height: 50px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	width: 50px;
}

/* -------------------------------------
	ellipsis
---------------------------------------- */
.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* -------------------------------------
	clearfix
---------------------------------------- */
.cf:before, .cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}

/*画面全体の設定*/
body,
html {
	height: 100%;
	margin: 0 auto;
}

/*固定する背景*/
.stable {
	box-sizing: border-box;
	font-size: 5rem;
	text-align: center;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 5%;
}

.blown {
	font-size: 30px;
	color: #2a2318;
}

.white {
	font-size: 30px;
	color: #FFF;
}

.stable h3 {
	font-size: 28px;
	color: #c09932;
}

.parallax-bg {
	background-attachment: fixed;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	height: 450px;
}

/*各背景の画像*/
.img-bg-01 {
	background-image: url("../images/50064.jpg");
}

.img-bg-02 {
	background-image: url("../images/50065.jpg");
}

.img-bg-03 {
	background-image: url("../images/50081.jpg");
}

.img-bg-04 {
	background-image: url("../images/50063.jpg");
}

.img-bg-05 {
	background-image: url("../images/50065.jpg");
}

/*スクロールするコンテンツ*/
.scrollbox1 {
	background-color: #2a2318;
}

.scrollbox2 {
	background-color: #2a2318;
}

.scrollbox3 {
	background-color: #e6d8b3;
	background-image: url("../images/bg_kodawari.png");
	background-repeat: no-repeat;
}

.scrollbox8 {
	background-color: #fff;
	background-image: url("../images/bg_info.png");
	background-repeat: no-repeat;
}

.scrollbox7 {
	background-color: #e6d8b3;
	background-image: url("../images/access_bg.png");
	background-repeat: no-repeat;
}

.scrollbox4 {
	background-color: #2a2318;
}

.scrollbox5 {
	background-color: #e6d8b3;
}

.scrollbox6 {
	background-color: #e6d8b3;
}

.mv {
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.information_area {
	background: #f7f4d4;
}

.w_txt {
	font-size: 16px;
	color: #FFF;
}

.b_txt {
	font-size: 16px;
	color: #2a2318;
}

.bold {
	font-weight: 700;
}

.tel {
	color: #c09932;
}

.tel_b {
	font-weight: 700;
	font-size: 2.7em;
}

.txL {
	text-align: left;
}

.txR {
	text-align: right;
}

.w50 {
	width: 47%;
}

.mb30 {
	margin-bottom: 30px;
}

.mb20 {
	margin-bottom: 20px;
}

.fs14 {
	font-size: 14px;
}

.top_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.top_menu2 {
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: space-between;
}

.insta_button0 {
	position: fixed;
	top: 200px;
	right: 5px;
}

.insta_button {
	position: fixed;
	top: 300px;
	right: 5px;
}

.access_button {
	position: fixed;
	top: 370px;
	right: 0px;
	display: block;
	background-color: #fff;
}

.50p_ph {
	width: 500px;
}

@media screen and (max-width: 768px) {
	.w50 {
		width: 100%;
	}
	.top_menu .-map iframe {
		width: 100%;
	}
	.insta_button0 {
		position: fixed;
		top: 300px;
		right: 5px;
	}
	.insta_button {
		position: fixed;
		top: 350px;
		right: 5px;
	}
	.access_button {
		position: fixed;
		top: 400px;
		right: 0px;
		display: block;
		background-color: #fff;
	}
	.tel_b {
		font-weight: 700;
		font-size: 2.0em;
	}
	.mv {
		height: 600px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.parallax-bg {
		background-attachment: fixed;
		background-position: center;
		background-size: 150%;
		background-repeat: no-repeat;
		height: 250px;
	}
	.50p_ph {
		width: 100%;
	}
	.mv::before {
		background: url(../images/50064_sp.jpg) no-repeat center;
		/* 画像（ここにfixedは入れない） */
		background-size: cover;
		/* cover指定できる */
		content: "";
		display: block;
		position: fixed;
		/* 擬似要素ごと固定 */
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
		/* 横幅いっぱい */
		height: 600px;
		/* */
	}
}

/* 20220203 メニュータブエリア */
.menu_tab_area .-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 15px;
}

.menu_tab_area .-menu .item {
	cursor: pointer;
	background: #e6d8b3;
	border: 1px solid #e6d8b3;
	font-size: 1.6rem;
	padding: 15px 5px 25px;
	width: calc(100% / 5 - 2px);
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2px;
	position: relative;
	transition: 0.3s;
}

.menu_tab_area .-menu .item:after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 7px 0 7px;
	border-color: #000 transparent transparent transparent;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10px;
	transition: 0.3s;
}

.menu_tab_area .-menu .item:hover, .menu_tab_area .-menu .item.active {
	color: #e6d8b3;
	background: #000;
}

.menu_tab_area .-menu .item:hover:after, .menu_tab_area .-menu .item.active:after {
	border-color: #e6d8b3 transparent transparent transparent;
}

.menu_tab_area .-content {
	border: 3px solid #e6d8b3;
	padding: 20px;
	color: #fff;
	font-size: 1.8rem;
	text-align: left;
	height: 600px;
	overflow: auto;
}

.menu_tab_area .-content .-tab_item {
	display: none;
	padding-bottom: 60px;
}

.menu_tab_area .-content .-tab_item:first-of-type {
	display: block;
}

.menu_tab_area .-content .-last_txt {
	text-align: right;
	font-size: 1.4rem;
}

.menu_tab_area .-inner {
	width: 80%;
	margin: 0 auto;
}

.menu_tab_area .-menu_title {
	text-align: center;
	margin-bottom: 40px;
}

.menu_tab_area .-menu_sub_title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.menu_tab_area .-menu_list_title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}

.menu_tab_area .-menu_list_title > span {
	font-weight: 400;
	font-size: 1.6rem;
	margin-left: 20px;
}

.menu_tab_area .-menu_list_sub_title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.menu_tab_area .-menu_list_sub_title:before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 12px;
	background: #fff;
	margin-right: 3px;
}

.menu_tab_area .-txt {
	font-size: 1.6rem;
}

.menu_list dl {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
	line-height: 1.2;
}

.menu_list dl:last-of-type {
	margin-bottom: 60px;
}

.menu_list dl dt {
	font-size: 1.8rem;
}

.menu_list dl dt span {
	font-size: 1.4rem;
}

.menu_list dl dd {
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
}

.menu_list dl dd:before {
	content: "";
	display: block;
	background-image: radial-gradient(#ffffff 10%, transparent 20%);
	background-size: 15px 15px;
	height: 15px;
	max-width: 200px;
	width: 60%;
	margin-right: 50px;
}

.menu_list dl dd span {
	min-width: 80px;
	text-align: right;
}

.menu_list .-menu_list_txt {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
	font-size: 1.4rem;
}

.menu_list .-menu_list_txt li:not(:last-of-type):after {
	content: "／";
	margin: 0 5px;
}

.menu_list .-menu_list_txt.-mb {
	margin-bottom: 15px;
}
