@charset 'utf-8';

/*===============================================
 共通パーツ base.css
===============================================*/
/*=======================================================
 - ～414.9px	：スマートフォン縦画面 (iPhone XS Max)
 - 415px ～		：タブレット環境
 - 700px ～		：切り替えが必要な場合
 - 970px ～		：PC環境
 - ～1399.9px	：iPad Pro 12.9横幅基準
 - ～1579.9px	：横幅最大値

●基本割合
・2等分：width:48%
・3等分：width:30.6%;
・4等分：width:22%;
・2分割：width:30%＆66% or 38%＆58%
=======================================================*/
@media screen and (min-width: 415px) {
}
@media print, screen and (min-width: 700px) {
}
@media print, screen and (min-width: 970px) {
}
@media print, screen and (min-width: 1400px) {
}
@media print, screen and (min-width: 1580px) {
}



/*===============================================
 Noto Sans CJK JP
 https://firstlayout.net/use-noto-sans-japanese-fast/
===============================================*/
@font-face {
	font-family: 'Noto Sans CJK JP Subset';
	font-style: normal;
	font-weight: 400;
	src: local('Noto Sans CJK JP'),
		local('NotoSansCJKjp-Regular'),
		local('NotoSansJP-Regular'),
		url(../../inc/font/NotoSansCJKjp-Regular.woff2) format('woff2'),
		url(../../inc/font/NotoSansCJKjp-Regular.woff) format('woff'),
		url(../../inc/font/NotoSansCJKjp-Regular.ttf) format('truetype');
}

@font-face {
	font-family: 'Noto Sans CJK JP Subset';
	font-style: normal;
	font-weight: 700;
	src: local('NotoSansCJKjp-Bold'),
		local('NotoSansJP-Bold'),
		url(../../inc/font/NotoSansCJKjp-Bold.woff2) format('woff2'),
		url(../../inc/font/NotoSansCJKjp-Bold.woff) format('woff'),
		url(../../inc/font/NotoSansCJKjp-Bold.ttf) format('truetype');
}



/*===============================================
 基本要素
===============================================*/
/* BODY */
* {
	box-sizing: border-box;
}

/* IE11用 */
.ie,
.edge {
	min-height: 100vh;
}
.ie *,
.edge * {
	min-height: 0%;
}

html {
	font-size: 62.5%; /* 基本フォントサイズ10px */
}

body {
	background: #fff;
	color: #000;
	counter-reset: counter;
	font-family: 'Noto Sans','Noto Sans CJK JP','Noto Sans CJK JP Subset','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Osaka,'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Arial,Verdana,sans-serif;
	font-size: 1.4rem;
	min-height: 100vh;
	line-height: 1.6;
	letter-spacing: .06em;
	overflow-x: hidden;
	max-width: 100vw;
	-webkit-text-size-adjust: 100%;
}

@media print, screen and (min-width: 700px) {
	body {
		font-size: 1.5rem;
	}
}

@media print, screen and (min-width: 970px) {
	body {
		font-size: 1.6rem;
	}
}

/* pタグ基本設定 */
p {
	letter-spacing: .1em;
}

p.right {
	text-align: right;
}

/* imgタグ基本設定 */
img {
	display: block;
	height: auto;
	max-height: 100%;
	width: auto;
	max-width: 100%;
	-ms-interpolation-mode: bicubic;
}

img.lazy {
	margin: 0 auto;
}

/* iframeタグ基本設定 */
iframe {
	pointer-events: none; /* ポインター無効化 */
}

/* input系 */
input[type='text'],
select {
	background: #fff;
	border: 1px solid #808080;
	padding: 5px;
	width: 100%;
}

input[type='text']:focus {
	outline: 0;
}

/* アンカー用 */
.anchor {
	display: block;
	height: 1px;
	margin-top: -85px;
	padding-top: 85px;
	position: relative;
	width: 1px;
	z-index: 1;
}

@media print, screen and (min-width: 970px) {
	.anchor {
		margin-top: -130px;
		padding-top: 130px;
	}
}

/* 改行調整用 */
@media screen and (max-width: 699.9px) {
	br.pc {
		display: none;
	}
}



/*===============================================
 全体枠
===============================================*/
.container {
	display: flex;
	flex-direction : column;
	min-height: 100vh;
	overflow-x: hidden;
	padding: 75px 0 0;
	position: relative;
	width: 100%;
	max-width: 100vw;
}

@media print, screen and (min-width: 970px) {
	.container {
		padding: 80px 0 0;
	}
}

/* タブレット等はみ出し防止 */
.iphone .container,
.ipad .container,
.an .container {
	overflow-x: hidden;
	max-width: 100%;
}

.iphone .container {
	height: 100%;
}



/*===============================================
 ヘッダー
===============================================*/
.header {
	background: #fff;
	height: 44px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 100vw;
	z-index: 100;
}

@media print, screen and (min-width: 970px) {
	.header {
		height: 80px;
	}
}


/*
 ヘッダー タイトル
===============================================*/
.header_title {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 44px;
	padding: 0 50px 0 10px;
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_title {
		background: #fff;
		box-shadow: 0 1px 8px rgba(0,0,0,.2);
		border-radius: 0 0 20px 0;
		height: 125px;
		left: 0;
		padding: 0;
		position: fixed;
		top: 0;
		width: 260px;
	}
}

.header_title h1 {
	height: 100%;
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_title h1 {
		height: auto;
		margin: 0 auto;
		width: 90%;
	}
}

.header_title h1 a {
	align-items: center;
	display: flex !important;
	height: 100%;
	width: 100%;
}

.header_title h1 img {
	max-height: 44px;
	width: auto;
	max-width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_title h1 img {
		height: auto;
		max-height: 100px;
	}
}

.ie .header_title h1 img {
	width: 100%
}

.header_title h1 span {
	display: block;
	height: 0;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 0;
}


/*
 ヘッダー ナビ
===============================================*/
.header_navi {
	background: #fff;
	width: 100%;
}

@media screen and (max-width: 969.9px) {
	.header_navi {
		display: none;
		max-height: calc(100vh - 44px - 80px);
		overflow-y: scroll;
		position: fixed;
		top: 44px;
		z-index: 100;
	}
}

@media print, screen and (min-width: 970px) {
	.header_navi {
		background: #fff;
		border-bottom: 1px solid #f25f5c;
		height: 80px;
		padding: 0 80px 0 260px;
	}
}

@media print, screen and (min-width: 1580px) {
	.header_navi {
		padding: 0 calc((100vw - 1400px) / 2) 0 calc(100vw - (100vw - 1400px) / 2 - 1140px);
	}
}

.header_menu_wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

@media screen and (max-width: 969.9px) {
	.header_menu_wrap {
		flex-direction : column;
	}
}

@media print, screen and (min-width: 970px) {
	.header_menu_wrap {
		height: 79px;
		width: 100%;
		max-width: 1140px;
	}
}

/* 大リンク */
.header_menu {
	position: relative;
}

@media screen and (max-width: 969.9px) {
	.header_menu {
		line-height: 40px;
		width: 100%;
	}
}

@media print, screen and (min-width: 970px) {
	.header_menu {
		flex-grow: 1;
		height: 100%;
		line-height: 80px;
	}
}

/* 大リンク本体 */
.header_menu_link {
	cursor: pointer;
	display: block;
	font-weight: bold;
	position: relative;
	width: 100%;
}

@media screen and (max-width: 969.9px) {
	.header_menu_link {
		border-bottom: 1px solid #474240;
		margin: 0 auto;
		padding: 0 15px;
		width: 90%;
	}
}

@media print, screen and (min-width: 970px) {
	.header_menu_link {
		font-size: 1.4rem;
		text-align: center;
	}
}

@media screen and (max-width: 969.9px) {
	.header_menu_link:before {
		bottom: 0;
		content: '→';
		display: block;
		height: 100%;
		right: 0;
		position: absolute;
	}

	.header_menu_parent .header_menu_link:before {
		content: '＋';
	}

	.header_menu_parent .header_menu_link.open:before {
		content: '－';
	}
}

@media print, screen and (min-width: 970px) {
	.header_menu_parent .header_menu_link:before {
		border-style: solid;
		border-width: 5px 5px 0 5px;
		border-color: #000 transparent transparent transparent;
		bottom: 10px;
		content: '';
		display: block;
		height: 0;
		left: 50%;
		position: absolute;
		transform: translate(-50%,0);
		width: 0;
		z-index: 102;
	}

	.header_menu_parent.pointhover .header_menu_link:before,
	.header_menu_parent.active .header_menu_link:before {
		border-color: #fff transparent transparent transparent;
	}

	.header_menu_parent.hover .header_menu_link:before,
	.header_menu_parent.hover.pointhover .header_menu_link:before {
		border-width: 0 5px 5px 5px;
		border-color: transparent transparent #fff transparent;
	}
}

/* ページとリンクが一致＆アニメーション */
@media print, screen and (min-width: 970px) {
	.pointhover .header_menu_link,
	.hover .header_menu_link,
	.header_menu.active .header_menu_link {
		color: #fff;
	}

	.header_menu_link:after {
		background: #f25f5c;
		bottom: 0;
		content: '';
		display: block;
		height: 0;
		left: 0;
		position: absolute;
		transition: all .2s ease;
		width: 100%;
		z-index: 101;
	}

	.pointhover .header_menu_link:after,
	.hover .header_menu_link:after,
	.header_menu.active .header_menu_link:after {
		height: 100%;
	}
}

.header_menu_link span {
	position: relative;
	z-index: 102;
}

/* サブリンク */
.header_menu_sublist {
	display: none;
	margin: 0 auto;
	width: 90%;
}

@media print, screen and (min-width: 970px) {
	.header_menu_sublist {
		background: #fff;
		border-bottom: 1px solid #ccc;
		box-shadow: 0 1px 8px rgba(0,0,0,.4);
		line-height: 2.1;
		margin: 0 0 -1px;
		padding: 0;
		overflow: hidden;
		position: absolute;
		top: 80px;
		width: 600px;
		z-index: 101;
	}

	.header_menu_sublist.right {
		right: 0;
	}
}

.header_menu_sublist dd {
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_menu_sublist dd {
		border-bottom: 1px solid #ccc;
		float: left;
		height: 61px;
		width: 50%;
	}

	.header_menu_sublist dd.bnone {
		border-bottom: none;
	}

	.header_menu_sublist dd:nth-of-type(2n-1) {
		border-right: 1px solid #ccc;
	}
}

.header_sublink {
	display: block;
	height: 100%;
	line-height: 40px;
	padding: 10px;
	width: 100%;
}

@media screen and (max-width: 969.9px) {
	.header_sublink {
		border-bottom: 1px solid #474240;
		margin: 0 auto;
		padding: 0 0 0 10%;
	}
}

.header_sublink.hover {
	background: #f25f5c;
	color: #fff;
}


/*
 ヘッダー 位置固定メニュー
===============================================*/
.header_fixed_menu {
	position: fixed;
	top: 44px;
	text-align: center;
	width: 100%;
	z-index: 99;
}

@media screen and (max-width: 969.9px) {
	.header_fixed_menu {
		display: flex;
		flex-wrap: wrap;
		left: 0;
	}
}

@media print, screen and (min-width: 970px) {
	.header_fixed_menu {
		top: 120px;
		right: 0;
		width: 95px;
	}
}

.fixed_menu {
	background: #4d4d4d;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	height: 33px;
	width: 33.333%;
}

@media screen and (max-width: 969.9px) {
	.fixed_menu {
		line-height: 33px;
	}

	.fixed_menu:not(:last-child) {
		border-right: 1px solid #fff;
	}
}

@media print, screen and (min-width: 970px) {
	.fixed_menu {
		border-radius: 40px 0 0 40px;
		box-shadow: 0 1px 4px rgba(0,0,0,.2);
		display: block;
		font-size: 1rem;
		height: 80px;
		margin: 0 0 10px 5px;
		padding: 19px 0 0;
		transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		width: 90px;
	}

	.fixed_menu.hover {
		margin: 0 0 10px;
		width: 95px;
	}
}

.fixed_menu_inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	justify-content: center;
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.fixed_menu_inner {
		height: auto;
	}
}

.fixed_menu img {
	height: 1em;
	margin: 0 .5em 0 0;
	width: 1em;
}

@media print, screen and (min-width: 970px) {
	.fixed_menu img {
		height: auto;
		margin: 0 auto 5px;
		padding: 0;
		width: 21px;
	}

	.ie .fixed_menu img {
		margin: 0 0 5px;
	}
}

.fixed_menu span {
	display: block;
	width: auto;
}

@media print, screen and (min-width: 970px) {
	.fixed_menu span {
		width: 100%;
	}
}

/*
 ヘッダー モーダルウィンドウ
===============================================*/
.header_modal {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 1px 8px rgba(0,0,0,.3);
	display: none;
	max-height: calc(100vh - 80px - 10px);
	left: 50%;
	overflow-y: auto;
	padding: 4%;
	position: fixed;
	top: 80px;
	transform: translate(-50%,0);
	width: 80%;
	max-width: 1000px;
	z-index: 10000;
}

@media print, screen and (max-width: 414.9px) {
	.header_modal {
		padding-bottom: 60px;
	}
}

@media print, screen and (min-width: 970px) {
	.header_modal {
		max-height: calc(100vh - 130px - 100px);
		top: 130px;
	}
}

.header_modal_inner {
	width: 100%;
}

/* 閉じるボタン */
.header_modal .close {
	cursor: pointer;
	height: 40px;
	position: absolute;
	right: 3%;
	top: 10px;
	width: 40px;
	z-index: 10001;
}

@media print, screen and (min-width: 700px) {
	.header_modal .close {
		right: 1%;
		top: 10px;
	}
}

.header_modal .close:before,
.header_modal .close:after {
	background: #000;
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	width: 100%;
}

.header_modal .close:before{
	transform: rotate(-45deg);
}

.header_modal .close:after{
	transform: rotate(-135deg);
}


.header_modal .link_wrap {
	margin: 0 0 20px;
	text-align: center;
	width: 100%;
}

.header_modal .link_wrap:last-child {
	margin: 0;
}

@media print, screen and (min-width: 970px) {
	.header_modal .link_wrap {
		margin: 0 0 40px;
	}
}

/* お問い合わせリンク */
.header_modal.dcs .header_modal_inner > .box_wrap {
	margin: 0 0 20px;
	width: 100%;
}

.header_modal.dcs .title {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 0 10px;
	text-align: left;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.header_modal.dcs .title {
		font-size: 1.8rem;
	}
}

.header_modal.dcs .shop_contact_link {
	margin: 0;
	width: 48%;
}

@media print, screen and (min-width: 970px) {
	.header_modal.dcs .title {
		width: 12em;
	}

	.header_modal.dcs .shop_contact_link {
		width: calc((90% - 13em) / 2);
	}

	.header_modal.dcs .shop_contact_link.only {
		margin: 0 calc((100% - 13em - 8px) / 2) 0 0;
	}
}

@media screen and (max-width: 414.9px) {
	.header_modal.dcs span {
		font-size: 1.1rem;
	}
}

@media screen and (min-width: 415px) and (max-width: 699.9px) {
	.header_modal.dcs span {
		font-size: 1.2rem;
	}
}

/* 展示・試乗車リンク */
.header_modal.democar .title-h4 a {
	display: flex;
}

.header_modal.democar .title-h4 a:after {
	margin: 0 0 0 1em;
	position: relative;
}


/*
 ヘッダー 開閉ボタン
===============================================*/
.sp_open {
	align-items: center;
	background: #333;
	display: flex;
	flex-direction : column;
	height: 44px;
	line-height: 1.3;
	position: fixed;
	right: 0;
	text-align: center;
	text-decoration: none;
	top: 0;
	width: 44px;
	z-index: 101;
}

.sp_open_symbol {
	background: #fff;
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 20px;
}

.sp_open_symbol:before,
.sp_open_symbol:after {
	background: #fff;
	content: '';
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}

.sp_open_symbol:before{
	margin-top: -8px;
}

.sp_open_symbol:after{
	margin-top: 8px;
}

.open .sp_open_symbol {
	height: 0;
	left: 15px;
}

.open .sp_open_symbol:before,
.open .sp_open_symbol:after {
	margin: 0;
	width: 20px;
	left: 40%;
}

.open .sp_open_symbol:before{
	transform: rotate(-45deg);
	transform-origin: center center;
}

.open .sp_open_symbol:after{
	transform: rotate(-135deg);
}

.sp_close {
	align-items: center;
	background: #5b5654;
	color: #fff;
	display: flex;
	justify-content: center;
	line-height: 50px;
	width: 100%;
}

.sp_close_symbol {
	display: inline-block;
	height: 15px;
	margin: 0 0 0 5px;
	position: relative;
	width: 15px;
}

.sp_close_symbol:before,
.sp_close_symbol:after {
	background: #fff;
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	width: 15px;
}

.sp_close_symbol:before{
	transform: rotate(-45deg);
}

.sp_close_symbol:after{
	transform: rotate(-135deg);
}

@media print, screen and (min-width: 970px) {
	.sp_open,
	.sp_close {
		display: none;
	}
}



/*===============================================
 フッター
===============================================*/
.footer {
	background: #4a4a4a;
	color: #fff;
	position: relative;
	width: 100%;
	max-width: 100vw;
}


/*
 フッター ナビ
===============================================*/
.footer_navi {
	margin: 0 auto;
	width: 100%;
}

@media screen and (max-width: 414.9px) {
	.footer_navi {
		display: none;
	}
}

/* 内部 */
.footer_navi_wrap {
	border-bottom: 1px solid #b2b2b2;
	display: none;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	padding: 20px 0 40px;
	width: 90%;
}

@media screen and (min-width: 415px) {
	.footer_navi_wrap {
		display: flex;
	}
}

@media print, screen and (min-width: 970px) {
	.footer_navi_wrap {
		max-width: calc(100% - 200px);
	}
}

@media print, screen and (min-width: 1580px) {
	.footer_navi_wrap {
		max-width: 1400px;
	}
}


/*
 フッター ナビ リンク
===============================================*/
/* リンク枠 */
.footer_navi_link {
	width: calc((100% - 4%) / 2);
}

@media print, screen and (min-width: 700px) {
	.footer_navi_link {
		width: calc((100% - 4% * 2) / 3);
	}

	.footer_navi_wrap:after { /* 1個分追加 */
		content: '';
		height: 0;
		width: calc((100% - 4% * 2) / 3);
	}
}

@media print, screen and (min-width: 970px) {
	.footer_navi_link {
		width: calc((100% - 4% * 4) / 5);
	}
}

/* 以下リンク設定 */
.footer_navi_link dl {
	margin: 0 0 25px;
}

.footer_navi_link dt {
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	padding: 0 0 10px;
}

.footer_navi_link dt:not(:only-child) {
	margin: 0 0 15px;
}

.footer_navi_link dt.calendar {
	font-weight: bold;
}

.footer_navi_link dd:not(:last-child) {
	margin-bottom: 10px;
}

.footer_navi_link a {
	color: #fff;
	font-size: 1.4rem;
	position: relative;
}

.footer_navi_link a.hover {
	text-decoration: underline;
}


/*
 フッター コピーライト
===============================================*/
.footer_copyright {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
}

/* 内部 */
.footer_copyright_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	padding: 18px 0;
	width: 90%;
}

@media print, screen and (min-width: 700px) {
	.footer_copyright_wrap {
		justify-content: center;
	}
}

@media print, screen and (min-width: 970px) {
	.footer_copyright_wrap {
		max-width: calc(100% - 200px);
	}
}

@media print, screen and (min-width: 1580px) {
	.footer_copyright_wrap {
		max-width: 1400px;
	}
}

/* ロゴ */
.footer_copyright_img {
	width: 100%;
	max-width: 100px;
}

@media screen and (max-width: 414.9px) {
	.footer_copyright_img {
		margin: 0 auto 10px;
	}
}

@media print, screen and (min-width: 700px) {
	.footer_copyright_img {
		width: 30%;
	}
}

.footer_copyright_info {
	font-size: 1.2rem;
	line-height: 1.4;
	width: 100%;
}

@media screen and (min-width: 415px) {
	.footer_copyright_info {
		padding: 0 0 0 20px;
		width: calc(100% - 100px);
	}
}

@media print, screen and (min-width: 700px) {
	.footer_copyright_info {
		font-size: 1.4rem;
		width: auto;
	}
}

.footer_copyright_info address span {
	display: block;
	width: 100%;
}

.footer_copyright_info address span:not(:last-child) {
	margin: 0 0 3px;
}

/* 販社名 */
.address_name {
	font-weight: bold;
}



/*===============================================
 コンテンツ大枠
===============================================*/
.wrap {
	align-items: center;
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	height: auto;
	position: relative;
	width: 100%;
}



/*===============================================
 コンテンツ
===============================================*/
.contents {
	flex: 1 0 auto;
	margin: 0 0 120px;
	width: 100%;
}



/*===============================================
 汎用 コンテンツブロック
===============================================*/
.content_wrap {
	padding: 50px 0 0;
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.content_wrap {
		padding: 120px 0 0;
	}
}

/* .block→h3 .sblock→h4 */
.block {
	margin: 0 0 60px;
	position: relative;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.block {
		margin-bottom: 180px;
	}
}

/* ブロック内ブロック */
.sblock {
	margin: 0 auto 30px;
	position: relative;
	width: 90%;
	max-width: 1400px;
}

@media print, screen and (min-width: 700px) {
	.sblock {
		margin-bottom: 120px;
	}
}

@media print, screen and (min-width: 970px) {
	.sblock {
		max-width: calc(100% - 200px);
	}
}

@media print, screen and (min-width: 1580px) {
	.sblock {
		max-width: 1400px;
	}
}

.block:nth-last-of-type(1),
.sblock:nth-last-of-type(1) {
	margin-bottom: 0;
}


/*
 汎用 要素均等整列用
===============================================*/
.box_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}

.box_wrap.start {
	justify-content: flex-start;
}

.box_wrap.center {
	justify-content: center;
}

.box_wrap.end {
	justify-content: flex-end;
}


/*
 可視要素表示用
===============================================*/
/* 大要素 */
.elem_fadein {
	opacity: 0;
	transform: translate(0,100px);
	transition: opacity .4s, transform .3s;
}

/* 小要素 */
.elem_fadein_mini {
	opacity: 0;
	transform: translate(0,50px);
	transition: opacity .2s, transform .4s;
}

/* 表示 */
.elem_fadein.scrollin,
.elem_fadein_mini.scrollin {
	opacity: 1;
	transform: translate(0,0);
}



/*===============================================
 各種タイトル
===============================================*/
/*
 ページトップタイトル
===============================================*/
.title_wrap {
	background: #f7f6f3 repeat-x center center;
	background-size: auto 220px;
	height: 220px;
	overflow: hidden;
	position: relative;
}

.title-h2 {
	font-size: 2.6rem;
	font-weight: bold;
	left: 50%;
	letter-spacing: .2rem;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.title-h2 {
		font-size: 3.1rem;
		top: calc((100% - 35px) / 2);
		transform: translate(-50%,-50%);
	}
}


/*
 パンくず(ページトップタイトル内パーツ)
===============================================*/
.breadcrumb {
	background: rgba(232,231,228,.9);
	bottom: 0;
	font-size: 1.3rem;
	line-height: 35px;
	mix-blend-mode: multiply;
	position: absolute;
	width: 100%;
	z-index: 1;
}

@media screen and (max-width: 699.9px) {
	.breadcrumb {
		display: none;
	}
}

.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	min-height: 100%;
	margin: 0 auto;
	width: 90%;
	max-width: 1400px;
}

.breadcrumb li:not(:last-child):after {
	border-right: 1px solid #000;
	border-top: 1px solid #000;
	content: '';
	display: inline-block;
	height: .5em;
	margin: 0 13px 0 9px;
	position: relative;
	top: -.1em;
	transform: rotate(45deg);
	width: .5em;
}


.breadcrumb a {
	text-decoration: underline;
}

.breadcrumb a.hover {
	text-decoration: none;
}


/*
 画像あり大タイトル
===============================================*/
.emphasis_title_wrap {
	min-height: 65px;
	position: relative;
}

@media print, screen and (min-width: 700px) {
	.emphasis_title_wrap {
		height: 150px;
	}
}

.emphasis_title_wrap:before {
	background: #000;
	content: '';
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 75%;
	z-index: 3;
}

/* タイトル */
.emphasis_title_inner {
	align-items: center;
	margin: 0 auto;
	padding: .5em 0 0 1em;
	position: relative;
	width: 100%;
	z-index: 3;
}

@media print, screen and (min-width: 700px) {
	.emphasis_title_inner {
		padding: 40px 0 0;
	}
}

@media print, screen and (min-width: 970px) {
	.emphasis_title_inner {
		padding: 70px 0 0;
		max-width: calc(100% - 200px);
	}
}

@media print, screen and (min-width: 1580px) {
	.emphasis_title_inner {
		max-width: 1400px;
	}
}

.emphasis_title-h3 {
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
	margin: 0 1.3em 0 0;
	width: auto;
}

@media print, screen and (min-width: 700px) {
	.emphasis_title-h3 {
		font-size: 3rem;
	}
}

/* タイトル背景 */
.emphasis_title_titleback {
	align-items: flex-start;
	bottom: 0;
	display: flex;
	height: 60px;
	left: 0;
	max-height: 90%;
	position: absolute;
	width: 80%;
	z-index: 2;
}

.emphasis_title_titleback img {
	max-height: 60px;
}

@media print, screen and (min-width: 700px) {
	.emphasis_title_titleback {
		align-items: flex-start;
		height: 130px;
	}

	.emphasis_title_titleback img {
		max-height: 130px;
	}
}

/* 装飾 */
.emphasis_title_backimg {
	display: none;
	left: 2%;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	width: 18%;
	z-index: 1;
}

@media print, screen and (min-width: 700px) {
	.emphasis_title_backimg {
		display: block;
	}
}

/* 大タイトル隣要素用 */
.emphasis_title_wrap + * {
	position: relative;
	z-index: 3;
}


/*
 汎用ページ タイトル
===============================================*/
/* 大タイトル(block) */
.title-h3 {
	color: #333;
	font-size: 2.3rem;
	font-weight: bold;
	letter-spacing: .2rem;
	line-height: 1;
	margin: 0 0 40px;
	padding: 25px 0 0;
	position: relative;
	text-align: center;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.title-h3 {
		font-size: 3.2rem;
		margin: 0 0 75px;
		padding: 40px 0 0;
	}
}

.title-h3:before,
.title-h3:after {
	background: #f25f5c;
	content: '';
	height: 5px;
	left: calc(50% - 20px);
	position: absolute;
	top: 0;
	transform: translate(-50%,0);
	width: 40px;
}

.title-h3:after {
	background: #ffbd30;
	left: calc(50% + 20px);
}

@media print, screen and (min-width: 700px) {
	.title-h3:before,
	.title-h3:after {
		left: calc(50% - 35px);
		width: 70px;
	}

	.title-h3:after {
		left: calc(50% + 35px);
	}
}

/* 中タイトル(sblock) */
.title-h4 {
	border-top: 1px solid #dbdce2;
	display: flex;
	flex-wrap: wrap;
	font-size: 2rem;
	font-weight: bold;
	justify-content: space-between;
	line-height: 1;
	margin: 0 0 25px;
	padding: 25px 0 0;
	position: relative;
	width: 100%;
}

.title-h4.small {
	padding: 25px 0 0;
	font-size: 2rem;
}

.title-h4.middle {
	padding: 20px 0 0;
	font-size: 2rem;
}

.title-h4 .title {
	line-height: 1.2;
	margin: 0 0 10px;
	width: 100%;
}

.title-h4 .date {
	font-size: 1.5rem;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.title-h4 {
		font-size: 2.8rem;
		margin: 0 0 40px;
		padding: 35px 0 0;
	}

	.title-h4.middle {
		font-size: 2.6rem;
		padding: 30px 0 0;
	}

	.title-h4 .title {
		margin: 0;
		max-width: 80%;
	}

	.title-h4 .date {
		font-size: 2rem;
		text-align: right;
		max-width: 18%;
	}
}

.title-h4:before {
	background: #ffbd30;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: -1px;
	width: 25%;
}

/* タイトル毎リンク */
.title-h4 a.titlelink {
	display: block;
	position: relative;
	width: 100%;
}

.title-h4 a.titlelink:after {
	background: url(../../images/common/arrow_black.png) no-repeat center center;
	background-size: contain;
	content: '';
	display: block;
	height: 1em;
	position: absolute;
	right: 5px;
	transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	top: 0;
	width: 1em;
}

.title-h4 a.titlelink.hover:after {
	transform: translate(5px,0);
}

/* タイトル下カテゴリ */
.title-h4 + .under_category {
	margin: -20px 0 20px;
	text-align: right;
	width: 100%;
}

/* 小タイトル(blog等) */
.title-h5 {
	align-items: center;
	background: #f3f3f5;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.8rem;
	font-weight: bold;
	justify-content: space-between;
	min-height: 50px;
	margin: 0 0 10px;
	padding: 0 0 0 50px;
	position: relative;
	width: 100%;
}

.ie .title-h5 {
	height: 68px;
}

.title-h5 .title {
	line-height: 1.2;
	width: 100%;
}

.title-h5 .date {
	display: none;
	font-size: 1.4rem;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.title-h5 {
		font-size: 2rem;
		min-height: 68px;
		margin: 0 0 20px;
	}

	.title-h5 .title {
		max-width: 50%;
	}

	.title-h5 .date {
		display: block;
		padding: 0 10px 0 0;
		text-align: right;
		max-width: 50%;
	}
}

.title-h5:before,
.title-h5:after {
	background: #f25f5c;
	content: '';
	height: 4px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	width: 15px;
}

.title-h5:after {
	background: #ffbd30;
	left: 15px;
}

/* タイトル下カテゴリ */
.title-h5 + .category_wrap {
	margin: 0 0 20px;
	width: 100%;
}

.title-h5 + .category_wrap .category {
	color: #666;
	font-size: 1rem;
}

.title-h5 + .category_wrap .date {
	font-size: 1.1rem;
}

@media print, screen and (min-width: 700px) {
	.title-h5 + .category_wrap {
		flex-flow: row-reverse;
	}

	.title-h5 + .category_wrap .category {
		font-size: 1.4rem;
	}

	.title-h5 + .category_wrap .date {
		display: none;
	}
}



/*===============================================
 ページトップリンク
===============================================*/
.pagetop {
	align-items: center;
	background: rgba(0,0,0,.6);
	border-radius: 50%;
	bottom: 55px;
	height: 45px;
	position: fixed;
	right: 0;
	transition: all .2s ease;
	width: 45px;
	z-index: 98;
}

@media print, screen and (min-width: 700px) {
	.pagetop {
		height: 60px;
		width: 60px;
	}
}

@media print, screen and (min-width: 1580px) {
	.pagetop {
		right: 50%;
		transform: translate(790px,0);
	}
}

.pagetop:before {
	background: url(../../images/common/arrow_white_reverse.png) no-repeat center center;
	background-size: contain;
	content: '';
	display: block;
	height: 50%;
	left: calc(50% + 2px);
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
	transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 40%;
}

@media print, screen and (min-width: 700px) {
	.pagetop:before {
		left: calc(50% + 3px);
	}
}

.pagetop.hover:before {
	transform: translate(-50%,calc(-50% - 5px)) rotate(90deg);
}

.ie .pagetop.hover:before {
	transform: translate(-50%,-60%) rotate(90deg);
}

.pagetop span {
	display: block;
	height: 0;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 0;
}



/*===============================================
 大要素以外のリンク関連
===============================================*/
/*
 基本設定
===============================================*/
a {
	color: #2b2b2b;
	text-decoration: none;
	transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/*
 アンダーバー
===============================================*/
a.textlink,
a .textlink {
	text-decoration: underline;
}

a.textlink.hover,
a.hover .textlink {
	text-decoration: none;
}


/*
 hover後にアンダーバー
===============================================*/
a.atextlink,
a .atextlink {
	text-decoration: none;
}

a.atextlink.hover,
a.hover .atextlink {
	text-decoration: underline;
}


/*
 透明度
===============================================*/
a.opacity:not(.box_wrap) {
	display: block;
}

.opacity {
	transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a.opacity.hover,
span.opacity.hover,
a.hover .opacity {
	opacity: .7;
}


/*
 外部リンク
===============================================*/
a.external:after {
	background: url(../../images/common/external_black.png) no-repeat center center;
	background-size: contain;
	content: '';
	display: inline-block;
	height: 1em;
	margin: 0 0 0 .5em;
	width: 1em;
}

a.external.white:after {
	background-image: url(../../images/common/external_white.png);
}

a.external.hover:after {
	background-image: url(../../images/common/external_white.png);
}

a.external.textlink.hover:after {
	background-image: url(../../images/common/external_black.png);
}



/*===============================================
 リスト類
===============================================*/
/*
 ポチありリスト(タイトル有りはdl)
===============================================*/
.list_dl dt {
	font-weight: bold;
	letter-spacing: .1em;
}

.list_dl dd,
.list_ul li {
	letter-spacing: .1em;
	line-height: 1.6;
	padding: 0 0 0 1em;
	position: relative;
}

.list_dl dd:before,
.list_ul li:before {
	background: #f25f5c;
	border-radius: 50%;
	content: '';
	height: .35em;
	left: 0;
	position: absolute;
	top: .675em;
	width: .35em;
}


/*
 ※ありリスト
===============================================*/
.notes_ul li {
	letter-spacing: .1em;
	line-height: 1.6;
	padding: 0 0 0 1em;
	position: relative;
}

.notes_ul li:before {
	content: '\203B';
	left: 0;
	position: absolute;
}


/*
 数字リスト
===============================================*/
.ol_number_counter {
	counter-reset: counter;
}

.ol_number_counter li {
	line-height: 1.6;
	padding: 0 0 0 1.5em;
	position: relative;
}

.ol_number_counter li:not(:last-child) {
	margin: 0 0 .5em;
}

.ol_number_counter li:before {
	content: counter(counter)'.';
	counter-increment: counter;
	left: 0;
	position: absolute;
}

/* 数字リスト 0つき数字. */
.ol_number_counter.ecimal-leading-zero li:before {
	content: counter(counter, decimal-leading-zero)'.';
}

/* 数字リスト ローマ数字(小文字). */
.ol_number_counter.lower-roman li:before {
	content: counter(counter, lower-roman)'.';
}

/* 数字リスト ローマ数字(大文字). */
.ol_number_counter.upper-roman li:before {
	content: counter(counter, upper-roman)'.';
}

/* アルファベット 小文字. */
.ol_number_counter.lower-alpha li:before {
	content: counter(counter, lower-alpha)'.';
}

/* アルファベット 大文字. */
.ol_number_counter.upper-alpha li:before {
	content: counter(counter, upper-alpha)'.';
}

/* アルファベット 漢数字、 */
.ol_number_counter.cjk-ideographic li:before {
	content: counter(counter, cjk-ideographic)'、';
}

/* ひらがな、 */
.ol_number_counter.hiragana li:before {
	content: counter(counter, hiragana)'、';
}

/* カタカナ、 */
.ol_number_counter.katakana li:before {
	content: counter(counter, katakana)'、';
}

/* いろは、 */
.ol_number_counter.hiragana-iroha li:before {
	content: counter(counter, hiragana-iroha)'、';
}

/* イロハ、 */
.ol_number_counter.katakana-iroha li:before {
	content: counter(counter, katakana-iroha)'、';
}



/*===============================================
 ページナビ
===============================================*/
.pagenavi ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 10px;
}

.pagenavi li {
	margin: 0 .2em;
}

.pagenavi li:not(.connect) a {
	border: 2px solid #4d4d4d;
	border-radius: 50%;
	display: block;
	font-size: 1.2rem;
	height: 25px;
	line-height: 21px;
	overflow: hidden;
	text-align: center;
	width: 25px;
}

@media print, screen and (min-width: 700px) {
	.pagenavi li {
		margin: 0 .5em;
	}

	.pagenavi li:not(.connect) a {
		font-size: 1.5rem;
		height: 40px;
		line-height: 36px;
		width: 40px;
	}
}

.pagenavi li:not(.connect):not(.nolink) a.hover,
.pagenavi .current a {
	background-color: #4d4d4d;
	color: #fff;
}

/* 前の、次の */
.pagenavi li.prev:not(.connect) a,
.pagenavi li.next:not(.connect) a {
	background-repeat: no-repeat;
	background-size: 1em;
	border-radius: 20px;
	width: 7em;
}

.pagenavi li.prev.nolink:not(.connect) a,
.pagenavi li.next.nolink:not(.connect) a {
	opacity: .5;
}

.pagenavi li.prev:not(.connect) a {
	background-image: url(../../images/common/arrow_black_reverse.png);
	background-position: 10% 50%;
	padding: 0 0 0 1.2em;
}

.pagenavi li.next:not(.connect) a {
	background-image: url(../../images/common/arrow_black.png);
	background-position: 90% 50%;
	padding: 0 1.2em 0 0;
}

.pagenavi li.prev:not(.connect):not(.nolink) a.hover {
	background-image: url(../../images/common/arrow_white_reverse.png);
}

.pagenavi li.next:not(.connect):not(.nolink) a.hover {
	background-image: url(../../images/common/arrow_white.png);
}

.pagenavi p {
	color: #666;
	font-size: 1.4rem;
	margin: 10px 0 0;
	text-align: center;
}



/*===============================================
 テーブル基本設定
===============================================*/
.page_table {
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	letter-spacing: .1rem;
	table-layout: fixed;
	width: 100%;
}

.page_table th,
.page_table td {
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 15px;
}

.page_table thead tr:first-child th,
.page_table thead tr.collapse + tr th {
	border-top: 1px solid #ddd;
}

@media print, screen and (min-width: 700px) {
	.page_table th,
	.page_table td {
		font-size: 1.4rem;
	}
}

@media print, screen and (min-width: 970px) {
	.page_table th,
	.page_table td {
		font-size: 1.6rem;
		padding: 15px 25px;
	}
}

.page_table th {
	background: #eee;
	font-weight: bold;
}

@media screen and (max-width: 699.9px) {
	.page_table:not(.multiple):not(.notbrake) th,
	.page_table:not(.multiple):not(.notbrake) td {
		display: block;
		width: 100%;
	}
}

/* 先頭行colspan時の幅指定用tr */
.page_table .collapse {
	height: 0 !important;
	visibility: collapse !important;
}


@media screen and (max-width: 699.9px) {
	.ie .page_table .collapse {
		visibility: visible !important;
	}
}
.page_table .collapse th,
.page_table .collapse td {
	height: 0 !important;
	padding: 0 !important;
}

@media screen and (min-width: 700px) {
	.page_table .collapse th,
	.page_table .collapse td {
		border-bottom: none !important;
	}
}

.page_table .collapse + tr th {}


/* .multiple：基本2行 */
/* .notbrake：テーブルキープ */
@media screen and (max-width: 699.9px) {
	.page_table:not(.multiple):not(.notbrake),
	.page_table:not(.multiple):not(.notbrake) thead,
	.page_table:not(.multiple):not(.notbrake) tbody,
	.page_table:not(.multiple):not(.notbrake) tr {
		display: block;
	}
}

/* 複数列設定 各ページで設定 以下基本設定 */
@media screen and (max-width: 699.9px) {
	.page_table.multiple tr {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.page_table.multiple th,
	.page_table.multiple td {
		display: flex;
		width: 50%;
	}
 }

.page_table caption {
	font-size: 1.7rem;
	font-weight: bold;
	margin: 0 0 20px;
}

@media screen and (min-width: 415px) {
	.page_table caption {
		font-size: 2.1rem;
	}
}



/*===============================================
 ページ使用パーツ類
===============================================*/
/*
 矢印ボタン装飾
===============================================*/
.arrow {
	background: #4d4d4d;
	border-radius: 16px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 32px;
	padding: 0 .9em;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

@media print, screen and (min-width: 700px) {
	.arrow {
		font-size: 1.3rem;
	}
}

@media print, screen and (min-width: 970px) {
	.arrow {
		border-radius: 18px;
		font-size: 1.4rem;
		line-height: 36px;
		padding: 0 1.2em;
	}
}

.arrow.red { background-color: #f25f5c;}
.arrow.orange { background-color: #f1a020;}
.arrow.green { background-color: #62baab;}

html:not(.edge):not(.ie) .arrow:after {
	background: url(../../images/common/arrow_white.png) no-repeat center center;
	background-size: contain;
	content: '';
	display: block;
	margin: 0 0 0 .5em;
	transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 1em;
}

.ie .arrow,
.edge .arrow {
	background-image: url(../../images/common/arrow_white.png);
	background-repeat: no-repeat;
	background-position: 90% 50%;
	background-size: 1em;
}

/* もっと見る */
.ie .arrow.more,
.edge .arrow.more {
	padding: 0 2em 0 .5em;
	width: 9em;
}

/* リンク時 */
a .arrow {
	transition: opacity .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a.arrow.hover,
a.hover .arrow {
	opacity: .7;
}

html:not(.edge):not(.ie) a.arrow.hover:after,
html:not(.edge):not(.ie) a.hover .arrow:after {
	transform: translate(5px,0);
}

.ie a.arrow.hover,
.ie a.hover .arrow,
.edge a.arrow.hover,
.edge a.hover .arrow {
	background-position: 92% 50%;
}


/*
 正円矢印
===============================================*/
.circle_arrow {
	background: url(../../images/common/arrow_black.png) no-repeat center center #fff;
	background-size: 40%;
	border-radius: 50%;
	box-shadow: 0 0 8px 0 rgba(20,16,7,.2);
	display: block;
	transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 30%;
}

.circle_arrow.small {
	width: 15%;
}

.circle_arrow:before {
	content: '';
	display: block;
	padding: 100% 0 0;
}

a.hover .circle_arrow {
	transform: translate(5px,0);
}



/*
 お問い合わせボタン
===============================================*/
.shop_contact_link {
	margin: 0 auto 10px;
	position: relative;
	width: calc(80% + 5px);
}

@media print, screen and (min-width: 700px) {
	.shop_contact_link {
		margin: 0 auto 20px;
		width: 100%;
	}
}

.shop_contact_link:before {
	background-size: auto auto;
	background-color: rgba(255,255,255,0);
	background-image: repeating-linear-gradient(135deg,transparent,transparent 2px,rgba(0,0,0,.2) 2px,rgba(0,0,0,.2) 4px);
	border-radius: 5px;
	content: '';
	display: block;
	height: 100%;
	left: 5px;
	position: absolute;
	top: 5px;
	width: calc(100% - 5px);
	z-index: 1;
}

.shop_contact_link a {
	align-items: center;
	border-radius: 5px;
	color: #fff;
	font-weight: bold;
	line-height: 25px;
	position: relative;
	text-align: center;
	width: calc(100% - 5px);
	z-index: 2;
}

@media screen and (min-width: 415px) {
	.shop_contact_link a {
		line-height: 50px;
	}
}

.shop_contact_link .tel {
	background: #f25f5c;
}

@media print, screen and (min-width: 700px) {
	.shop_contact_link .tel {
		pointer-events: none;
	}
}

.shop_contact_link .web {
	background: #62baab;
}

/* ボタン内部 */
.shop_contact_link a img {
	margin: 5px auto 0;
	width: 2em;
}

@media screen and (min-width: 415px) {
	.shop_contact_link a img {
		margin: 0 .5em 0 0;
	}
}

.shop_contact_link a span {
	width: 100%;
}

@media screen and (min-width: 415px) {
	.shop_contact_link a span {
		width: auto;
	}
}

@media print, screen and (min-width: 700px) {
	.shop_contact_link a span {
		font-size: 1.5rem;
		position: relative;
		text-align: center;
	}
}


/*
 NEWアイコン
===============================================*/
.icon_new {
	background: #f25f5c;
	color: #fff;
	display: inline-block;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0 0 0 .5em;
	padding: 0 1em;
}


/*
 検索ボタン
===============================================*/
.searchbtn {
	background: url(../../images/common/icon_search.png) no-repeat 10% 50% #4d4d4d;
	background-size: 1em;
	border-radius: 5px;
	box-shadow: 0 0 8px 0 rgba(20,16,7,.2);
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	height: 30px;
	padding: 0 0 0 2em;
	width: 5em;
}



/*
 要素共通Shadow
===============================================*/
.boxshadow {
	box-shadow: 0 0 8px 0 rgba(20,16,7,.2);
}


/*
 要素後ろの背景(700px以上)
===============================================*/
@media print, screen and (min-width: 700px) {
	.box_partback:before {
	/* 大きさは各要素設定 */
		background: rgba(178,178,178,.2);
		bottom: -10%;
		content: '';
		height: 50%;
		left: 0;
		mix-blend-mode: multiply;
		position: absolute;
		width: 100%;
	}
}



/*===============================================
 汎用デザイン
===============================================*/
/*
 カテゴリーリンク
===============================================*/
.category_link_wrap {
	position: relative;
	z-index: 2;
}

.category_link_wrap li {
	line-height: 56px;
}

.category_link_wrap li:not(:last-child) {
	border-right: 1px solid #ddd;
	margin: 0 10px 0 0;
	padding: 0 10px 0 0;
}

.category_link_wrap a {
	align-items: center;
	display: flex;
	font-weight: bold;
	width: 100%;
}

.category_link_wrap a:after {
	content: '\025bc';
	display: inline-block;
	font-size: 1rem;
	margin: 0 0 0 5px;
}


/*
 汎用3・4等分枠
===============================================*/
.trisect:before,
.trisect:after,
.quarter:before,
.quarter:after {
	content: '';
	display: block;
	height: 0;
}

.car_wrap:before,
.quarter:before {
	order: 1;
}

.purpose_trisect,
.purpose_quarter {
	border-radius: 5px;
	background: #fff;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 0 0 20px;
	position: relative;
	width: 100%;
	z-index: 2;
}

@media screen and (max-width: 699.9px) {
	.purpose_trisect:not(:nth-last-of-type(1)),
	.purpose_quarter:not(:nth-last-of-type(1)) {
		margin: 0 0 20px;
	}
}

@media print, screen and (min-width: 700px) {
	.purpose_trisect,
	.purpose_quarter {
		margin: 0 0 20px;
		width: 30.6%;
	}

	.trisect:before,
	.quarter:after {
		width: 30.6%;
	}
}

@media print, screen and (min-width: 970px) {
	.purpose_quarter {
		width: 22%;
	}

 	.quarter:before {
 		display: none;
	}

	.quarter:after {
		width: 22%;
	}
}

.purpose_trisect .title,
.purpose_quarter .title {
	background: #feefef;
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 10px 5% 20px;
	text-align: center;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.purpose_trisect .title,
	.purpose_quarter .title {
		font-size: 2rem;
		padding: 20px 5% 30px;
	}
}

.purpose_trisect.green .title,
.purpose_quarter.green .title {
	background: #eff8f7;
}

.purpose_trisect.orange .title,
.purpose_quarter.orange .title {
	background: #fff8ea;
}

.purpose_trisect.blue .title,
.purpose_quarter.blue .title {
	background: #e5f5fb;
}

.purpose_trisect.pink .title,
.purpose_quarter.pink .title {
	background: #fdeff6;
}

.purpose_trisect.purple .title,
.purpose_quarter.purple .title {
	background: #f2f2fa;
}

.purpose_trisect .img,
.purpose_quarter .img {
	margin: -10px 0 20px;
	padding: 0 10%;
	position: relative;
	text-align: center;
	width: 100%;
}

.purpose_trisect .img:before,
.purpose_quarter .img:before {
	background: #fbcfce;
	content: '';
	left: 0;
	height: 50%;
	position: absolute;
	top: 10px;
	width: 100%;
}

.purpose_trisect.green .img:before,
.purpose_quarter.green .img:before {
	background: #d0eae6;
}

.purpose_trisect.orange .img:before,
.purpose_quarter.orange .img:before {
	background: #ffebc1;
}

.purpose_trisect.blue .img:before,
.purpose_quarter.blue .img:before {
	background: #b2e0f2;
}

.purpose_trisect.pink .img:before,
.purpose_quarter.pink .img:before {
	background: #facee3;
}

.purpose_trisect.purple .img:before,
.purpose_quarter.purple .img:before {
	background: #d9d8f0;
}

.purpose_trisect .img img,
.purpose_quarter .img img {
	border-radius: 5px;
	position: relative;
}

.purpose_trisect .text,
.purpose_quarter .text {
	margin: auto auto 20px;
	width: 80%;
}

.purpose_trisect .text span,
.purpose_quarter .text span {
	display: block;
	font-size: 1.3rem;
	padding: 0 0 0 2em;
	position: relative;
}

@media print, screen and (min-width: 700px) {
	.purpose_trisect .text span,
	.purpose_quarter .text span {
		font-size: 1.5rem;
	}
}

.purpose_trisect .text span:not(:last-child),
.purpose_quarter .text span:not(:last-child) {
	margin: 0 0 10px;
}

.purpose_trisect .text span:before,
.purpose_quarter .text span:before {
	background: no-repeat center center;
	background-size: contain;
	content: '';
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 1em;
}

.purpose_trisect .text span.shop_address:before,
.purpose_quarter .text span.shop_address:before {
	background-image: url(../../images/common/icon_map.png);
}

.purpose_trisect .text span.shop_tel:before,
.purpose_quarter .text span.shop_tel:before {
	background-image: url(../../images/common/icon_tel.png);
}

.purpose_trisect .text span.shop_holiday:before,
.purpose_quarter .text span.shop_holiday:before {
	background-image: url(../../images/common/icon_calendar.png);
}

.purpose_trisect .link_wrap,
.purpose_quarter .link_wrap {
	margin: auto auto 0;
	width: 80%;
}

.purpose_trisect .link_wrap .arrow,
.purpose_quarter .link_wrap .arrow {
	border-radius: 20px;
	margin: 0 auto;
	line-height: 40px;
	width: 100%;
}

.purpose_trisect .link_wrap .arrow:not(:last-child),
.purpose_quarter .link_wrap .arrow:not(:last-child) {
	margin: 0 0 10px;
}

/* デモカーリンク */
.purpose_quarter.democar_link {
	padding: 0 0 10px;
}

.purpose_quarter.democar_link .title {
	padding: 10px 5% 30px;
}

.purpose_quarter.democar_link .title .area {
	font-size: 1.5rem;
}

.purpose_quarter.democar_link .link_wrap {
	margin: -18px auto 0;
}


/*
 汎用2分割
===============================================*/
@media print, screen and (min-width: 700px) {
	.split_wrap {
		align-items: flex-start;
	}

	.split_wrap.reverse {
		flex-direction : row-reverse;
	}
}

/* 小要素小さめ */
.split_short,
.split_long {
	width: 100%;
}

@media screen and (max-width: 699.9px) {
	.split_short + .split_long,
	.split_long + .split_short {
		margin: 10px 0 0;
	}
}

@media print, screen and (min-width: 700px) {
	.split_short {
		width: 30%;
	}

	.split_long {
		width: 66%;
	}
}

/* 小要素大きめ */
.split_shortb,
.split_longb {
	width: 100%;
}

@media screen and (max-width: 699.9px) {
	.split_shortb + .split_longb,
	.split_longb + .split_shortb {
		margin: 10px 0 0;
	}
}

@media print, screen and (min-width: 700px) {
	.split_shortb {
		width: 38%;
	}

	.split_longb {
		width: 58%;
	}
}



/*===============================================
 印刷用
===============================================*/
@page {
	size: A4 portrait;
	margin: 10mm;
}

@media print {
	* {
		min-height: 0 !important;
	}

	html {
		font-size: 50%;
	}

	body {
		width: 100% !important;
		-webkit-print-color-adjust: exact;
	}

	.container,
	.wrap,
	.contents {
		display: block !important;
		padding: 0 !important;
		margin: 0 auto;
		width: 100% !important;
	}

	.contents {
		margin: 0 auto 100px;
		overflow-x: hidden;
	}

	.header_fixed_menu {
		display: none;
	}
	

	.header {
		height: 44px !important;
		position: static !important;
	}

	.header_title {
		box-shadow: none !important;
		height: 44px !important;
		margin: 0 auto;
		position: static !important;
		transform: translate(0,0);
		width: auto !important;
	}

	.header_title h1,
	.header_title h1 img {
		height: 44px !important;
	}

	.header_title h1 picture {
		margin: 0 auto;
	}

	.footer_copyright_img {
		margin: 0 10px 0 0;
	}

	.header_navi,
	.header_entry_wrap,
	.header_menu_sublist,
	.sp_open,
	.header_search,
	.pagetop,
	.page_fixed_menu,
	.banner_slide,
	.footer_moy {
		display: none !important;
	}

	.block,
	.sblock,
	.index_block_inner,
	.shop_sblock {
		width: 100% !important;
		max-width: 99999px !important;
	}

	.title_wrap {
		height: 150px;
	}

	.page_table th,
	.page_table td {
		padding: 5px 10px !important;
	}

	.shop_info_text {
		position: absolute !important;
		top: 0 !important;
	}
}