@charset "UTF-8";

/*
汎用
*/

/* 見出し */

.top-hdg {
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	color: #333;
}

@media screen and (min-width: 530px) and (max-width: 767px) {
	.top-hdg {
		margin-bottom: 20px;
		font-size: 22px;
		text-align: center;
	}
}

@media screen and (max-width: 529px) {
	.top-hdg {
		margin-bottom: 15px;
		font-size: 22px;
		text-align: center;
	}
}

.top-hdg::before {
	position: relative;
	bottom: -.05em;
	color: #154598;
	margin-right: .4em;
	font-weight: normal;
}

@media screen and (max-width: 767px) {
	.top-hdg::before {
		bottom: -.14em;
		font-size: 30px;
		margin-right: .2em;
	}
}

.top-hdg--newshop {
}

.top-hdg--concept {
	display: none;
}

.top-hdg--information {
}

@media screen and (max-width: 767px) {
	.top-hdg--information {
	}
}

.top-hdg--otoku {
	font-size: 20px;
}

@media screen and (max-width: 767px) {
	.top-hdg--otoku {
		margin-bottom: 18px;
		font-size: 18px;
		text-align: center;
	}
}

/* 動的な長体処理 */

.chotai-basis {
	position: relative;
	overflow: hidden;
}
.chotai-container {
	width: 300%;
	text-align: left;
}
.chotai {
	display: inline-block;
	white-space: nowrap;
	transform-origin: left center;
}

/* slick共通 */

.slick-slide {
	/* slickのちらつきを回避 */
	/*
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	*/
}

.slick-dots {
}

.slick-dots li {
	width: 20px !important;
	padding: 0 !important;
	float: none !important;
}

/*
SP版ヘッダの非表示制御
*/

@media screen and (max-width: 1119px) {
	.wrap_offcanvas {
		padding-top: 0;
	}

	header .header_sp {
		-webkit-transition: background .3s, border-bottom-color .3s;
		transition: background .3s, border-bottom-color .3s;
	}

	body.is-hide-spheader header .header_sp {
		background: transparent;
		border-bottom-color: transparent;
	}

	header .header_sp .header_logo {
		-webkit-transition: opacity .3s;
		transition: opacity .3s;
	}

	body.is-hide-spheader header .header_sp .header_logo {
		opacity: 0;
		pointer-events: none;
	}
	
	.top-main::before {
		content: "";
		position: fixed;
		z-index: 1;
		left: 0;
		top: -210px;
		width: 200%;
		height: 210px;
		margin-left: -50%;
		background: radial-gradient(at center bottom,
			rgba(255, 255, 255, 0) 40%,
			rgba(255, 255, 255, .05) 45%,
			rgba(255, 255, 255, .15) 50%,
			rgba(255, 255, 255, .6) 64%,
			rgba(255, 255, 255, .8) 70%,
			rgba(255, 255, 255, 1) 79%
		);
		pointer-events: none;
		-webkit-transition: transform 1s;
		transition: transform 1s;
		transform: translateY(0);
	}
	
	body.is-hide-spheader .top-main::before {
		-webkit-transition: transform 2s;
		transition: transform 2s;
		transform: translateY(210px);
	}
}

/*
メインビジュアル領域
*/

.top-main {
	position: relative;
	background: #fff;
	overflow: hidden;
	height: calc(400px + (100vw - 1120px) * 0.2 + 210px);
	/* 400px : 最低限の天地 + 画面幅に応じての増加分 */
	/* (100vw - 1120px) * 0.2 : 画面幅に応じての増加分 */
	/* 210px : おすすめバナーの天地 */
}

@media screen and (min-width:768px) and (max-width:1119px) {
	.top-main {
		height: calc(450px + 15vw + 40px)
		/* 15vw + 40px : おすすめバナーの天地 */
	}
}

@media screen and (max-width: 767px) {
	.top-main {
		height: calc(300px + (100vw - 375px) * 0.75 + (25vw + 30px));
		/* 300px : 最低限の天地 */
		/* (100vw - 375px) * 0.75 : 画面幅に応じての増加分 */
		/* 25vw + 30px : おすすめバナーの天地 */
	}
}

.top-main h1 {
	display: none;
}

/* ロゴ */

.top-logo {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	height: calc(100% - 210px);
	/* 210px : おすすめバナーの天地 */
}

@media screen and (min-width:768px) and (max-width:1119px) {
	.top-logo {
		height: calc(100% - 15vw - 40px);
		/* 15vw + 40px : おすすめバナーの天地 */
	}
}

@media screen and (max-width: 767px) {
	.top-logo {
		height: calc(100% - (25vw + 30px));
		/* 25vw + 30px : おすすめバナーの天地 */
	}
}

.top-logo__image {
	display: block;
	width: 360px;
	height: auto;
	margin-top: 35px;
}

@media screen and (max-width: 767px) {
	.top-logo__image {
		max-width: 340px;
		width: 63%;
		margin-top: 20px;
	}
}

/* おすすめバナー */

.top-osusume {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
    width: 100%;
	height: 210px;
	max-width: 1140px;
    margin: 0 auto;
}

@media screen and (min-width:768px) and (max-width:1119px) {
	.top-osusume {
		height: calc(15vw + 40px);
	}
}

@media screen and (max-width: 767px) {
	.top-osusume {
		height: calc(25vw + 30px);
	}
}

.top-osusume__list {
	max-width: 1140px;
	margin: 0 auto !important;
	padding: 0 0 20px;
	-webkit-mask-image: linear-gradient(to right,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, .1) 3%,
		rgba(0, 0, 0, .25) 6%,
		rgba(0, 0, 0, 1) 12%,
		rgba(0, 0, 0, 1) 88%,
		rgba(0, 0, 0, .25) 94%,
		rgba(0, 0, 0, .1) 97%,
		rgba(0, 0, 0, 0) 100%
	);
	mask-image: linear-gradient(to right,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, .1) 3%,
		rgba(0, 0, 0, .25) 6%,
		rgba(0, 0, 0, 1) 12%,
		rgba(0, 0, 0, 1) 88%,
		rgba(0, 0, 0, .25) 94%,
		rgba(0, 0, 0, .1) 97%,
		rgba(0, 0, 0, 0) 100%
	);
}

@media screen and (max-width: 767px) {
	.top-osusume__list {
		-webkit-mask-image: none;
		mask-image: none;
	}
}

.top-osusume__list.is-alone .slick-track {
	transform: none !important;
}

.ie .top-osusume__list {
	-webkit-mask-image: none;
	mask-image: none;
}

.top-osusume__item {
	position: relative;
	display: block;
	margin: 10px;
	width: 100%;
	overflow: hidden;
	box-shadow: 0 0 8px rgba(21, 69, 152, 0.6);
}

@media screen and (max-width: 767px) {
	.top-osusume__item {
		margin: 0 4vw 7px;
		box-shadow: 0 0 8px rgba(21, 69, 152, 0.3);
	}
}

.ie .top-osusume__item:not(.slick-center) {
	opacity: 0.7;
}

.top-osusume__link {
	position: relative;
	display: block;
	background: #fff;
}

.top-osusume__link:hover {
	opacity: 1;
}

.ie .top-osusume__link {
	transition: none;
}

.top-osusume__link img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: filter .5s, opacity .5s;
	transition: filter .5s, opacity .5s;
}

.top-osusume__link:hover img {
	filter: brightness(108%);
	opacity: 0.8;
	-webkit-transition: filter .1s, opacity .1s;
	transition: filter .1s, opacity .1s;
}

@media screen and (max-width: 767px) {
	.top-osusume__link img {
		width: 100%;
		height: auto;
		-webkit-transition: none;
		transition: none;
	}

	.top-osusume__link:hover img {
		filter: none;
		opacity: 1;
		-webkit-transition: none;
		transition: none;
	}
}

.top-osusume__link img,
.top-osusume__link:hover img {
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	overflow:hidden;
}

.top-osusume__link img.pc_hide {
	display: none !important;
}

@media screen and (max-width: 767px) {
	.top-osusume__link img.sp_hide {
		display: none !important;
	}

	.top-osusume__link img.pc_hide {
		display: block !important;
	}
}

.top-osusume .slick-dots {
	bottom: 0;
}

.top-osusume .slick-dots li {
	padding: 0;
}

.top-osusume .slick-dots li button:before {
	background: #444;
}

.top-osusume .slick-dots li.slick-active button:before {
	background: #2f76f0;
}

/* メインビジュアル */

.top-mv {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* 写真下部のグラデーションについて、
	こちらの要素にmask-imageを付加するとchromeでレンダリングが乱れることがあるので::afterにbackground: linear-gradient()する */
}

.top-mv::after {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 1) 88%);
}

@media screen and (min-width:768px) and (max-width:1119px) {
	.top-mv::after {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 1) 92%);
	}
}

@media screen and (max-width: 767px) {
	.top-mv::after {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0) 73%, rgba(255, 255, 255, 1) 94%);
	}
}

.top-mv .slick-list,
.top-mv .slick-list .slick-track,
.top-mv .slick-list .slick-track .slick-slide,
.top-mv__image {
	width: 100%;
	height: 100%;
}

.top-mv__image {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

@media screen and (max-width: 767px) {
	.top-mv__image {
		background-repeat: no-repeat;
		background-position: center top calc((100vw - 375px) * -0.25);
		background-size: 110% auto;
	}
}

@media screen and (max-width: 375px) {
	.top-mv__image {
		background-position: center top;
	}
}

@media screen and (max-width: 767px) {
	.top-mv__image.sp_hide {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.top-mv__image.pc_hide {
		display: none !important;
	}
}

/*
クイックナビゲーション領域
*/

.top-quicknav-section {
	position: relative;
	background: #fff;
}

.top-quicknav-section * {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

.top-quicknav__container {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	height: 65px;
	margin: 0 auto;
	background: #fff;
}
@media screen and (max-width: 767px) {
	.top-quicknav__container {
		flex-wrap: wrap;
		justify-content: space-between;
		height: auto;
		margin: 0;
		padding: 0 0 15px;
	}
}

.top-quicknav__column {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 0 2.5vw;
}

@media screen and (max-width: 767px) {

	.top-quicknav__column {
		margin: 0;
		flex-grow: 0;
	}

	.top-quicknav__column--time {
		width: 100%;
		padding: 20px 0;
		border-top: 1px solid #e7e3d9;
		line-height: 1.6;
	}

	.top-quicknav__column--parking {
		width: 50%;
		padding: 20px 0;
		border-top: 1px solid #f5f4ef;
		border-bottom: 1px solid #e7e3d9;
	}

	.top-quicknav__column--parking + .top-quicknav__column--parking {
		border-top: 1px solid #f5f4ef;
		border-left: 1px solid #f5f4ef;
		border-bottom: 1px solid #e7e3d9;
	}
}

.top-quicknav__column--parking::after {
	content: "";
	position: absolute;
	left: -2.5vw;
	top: 50%;
	width: 1px;
	height: 40px;
	margin-top: -20px;
	border-left: 1px solid #d8d8d8;
}
@media screen and (max-width: 767px) {
	.top-quicknav__column--parking::after {
		content: none;
	}
}

.top-quicknav__label {
	position: relative;
	padding-left: 2em;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	.top-quicknav__label {
		padding-left: 1.6em;
		font-size: 14px;
	}
}

.top-quicknav__label[class*=" icon-"]::before {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -.45em;
	font-size: 22px;
	line-height: 1;
	color: #154598;
}

@media screen and (max-width: 767px) {
	.top-quicknav__label[class*=" icon-"]::before {
		font-size: 18px;
	}
}

.top-quicknav__content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-left: 1em;
}

@media screen and (max-width: 767px) {
	.top-quicknav__content {
		flex-direction: row;
		margin-left: 2vw;
	}
}

.top-quicknav__time {
	position: relative;
	bottom: -.05em;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	white-space: nowrap;
	color: #154598;
}

@media screen and (max-width: 767px) {
	.top-quicknav__time {
		font-size: calc(15px + ((100vw - 375px) / 30));
	}
}

.top-quicknav__link {
	position: relative;
	padding-right: 1em;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	text-decoration: underline;
	color: #154598;
	-webkit-transition: color .5s;
	transition: color .5s;
}

.top-quicknav__link:hover {
	color: #1a95ce;
	opacity: 1;
	-webkit-transition: color .1s;
	transition: color .1s;
}

@media screen and (max-width: 767px) {
	.top-quicknav__link {
		-webkit-transition: none;
		transition: none;
	}

	.top-quicknav__link:hover {
		color: #154598;
		-webkit-transition: none;
		transition: none;
	}
}

.top-quicknav__time + .top-quicknav__link {
	margin-left: 1em;
}

@media screen and (max-width: 767px) {
	.top-quicknav__time + .top-quicknav__link {
		margin-left: .5em;
		margin-top: 0;
	}
}

@media screen and (max-width: 767px) {
	.top-quicknav__link {
		font-size: 14px;
	}
}

.top-quicknav__link[class*=" icon-"]::before {
	position: absolute;
	right: -5px;
	top: 50%;
	margin-top: -.5em;
	font-size: 16px;
	line-height: 1;
	color: #154598;
	-webkit-transition: color .5s;
	transition: color .5s;
}

.top-quicknav__link:hover[class*=" icon-"]::before {
	color: #1a95ce;
	opacity: 1;
	-webkit-transition: color .1s;
	transition: color .1s;
}

@media screen and (max-width: 767px) {
	.top-quicknav__link[class*=" icon-"]::before {
		-webkit-transition: none;
		transition: none;
	}

	.top-quicknav__link:hover[class*=" icon-"]::before {
		color: #154598;
		-webkit-transition: none;
		transition: none;
	}
}

.top-quicknav__label,
.top-quicknav__time,
.top-quicknav__link {
	display: inline-block;
}

/*
TOPナビゲーション領域
*/

.top-nav-section {
	position: relative;
	background: #fff;
	border-top: 1px solid #d8d8d8;
}

.top-nav-section * {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.top-nav-section {
		border-top: 1px solid #e7e3d9;
	}
}

.top-nav__container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	max-width: 1120px;
	margin: 0 auto;
	background: #fff;
}

.top-nav__item {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: calc(100% / 8);
}

@media screen and (max-width: 767px) {
	.top-nav__item {
		width: calc(100vw / 4);
		height: calc(100vw / 4);
		border-right: 1px solid #f5f4ef;
	}

	.top-nav__item:nth-child(4n) {
		border-right: 0 none;
	}

	.top-nav__item:nth-child(-n + 4) {
		border-bottom: 1px solid #f5f4ef;
	}

	.top-nav__item:nth-last-child(1)::before,
	.top-nav__item:nth-last-child(1)::after {
		content: "";
		position: absolute;
		left: 0;
		width: 100vw;
		height: 0;
		border-top: 10px solid #fff;
	}
	.top-nav__item:nth-last-child(1)::before {
		top: 0;
	}
	.top-nav__item:nth-last-child(1)::after {
		bottom: 0;
	}
	.top-nav__item:nth-last-child(2)::before,
	.top-nav__item:nth-last-child(2)::after {
		content: "";
		position: absolute;
		top: 0;
		width: 0;
		height: 100%;
		border-left: 10px solid #fff;
	}
	.top-nav__item:nth-last-child(2)::before {
		left: 0;
	}
	.top-nav__item:nth-last-child(2)::after {
		right: 0;
	}
}

.top-nav__link {
	display: block;
	width: 100%;
	padding: 20px 0 15px;
}

.top-nav__link:hover {
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.top-nav__link {
		padding: 12px 0 0;
	}
}

.top-nav__link > [class^="icon-"] {
	display: block;
	text-align: center;
	font-size: 40px;
	text-fill-color: transparent;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-transition: filter .5s, opacity .5s;
	transition: filter .5s, opacity .5s;
}

.ie .top-nav__link > [class^="icon-"] {
	/* IE11の場合にアイコンのグラデーションが使用できないのを単色に変更して回避 */
	background: none;
	color: #154598;
}

@media screen and (max-width: 767px) {
	.top-nav__link > [class^="icon-"] {
		/* font-size: calc(100vw / 4 - 100vw / 6); */
		font-size: calc(16px + (100vw / 24));
		-webkit-transition: none;
		transition: none;
	}
}

.top-nav__link:hover > [class^="icon-"] {
	filter: brightness(130%);
	opacity: 0.8;
	-webkit-transition: filter .1s, opacity .1s;
	transition: filter .1s, opacity .1s;
}

@media screen and (max-width: 767px) {
	.top-nav__link:hover > [class^="icon-"] {
		filter: none;
		opacity: 1;
		-webkit-transition: none;
		transition: none;
	}
}

.top-nav__label-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 3em;
	margin-top: 5px;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.top-nav__label-container {
		margin-top: 2px;
	}
}

.top-nav__label-body {
	display: block;
	width: 100%;
}

.top-nav__label-text {
	display: block;
	width: 100%;
	white-space:nowrap;
	-webkit-transition: color .5s;
	transition: color .5s;
}

@media screen and (max-width: 767px) {
	.top-nav__label-text {
		-webkit-transition: none;
		transition: none;
	}
}

.top-nav__link:hover .top-nav__label-text {
	color: #1a95ce;
	-webkit-transition: color .1s;
	transition: color .1s;
}

@media screen and (max-width: 767px) {
	.top-nav__link:hover .top-nav__label-text {
		color: #333;
		-webkit-transition: none;
		transition: none;
	}
}

.top-nav__label-text + .top-nav__label-text {
	margin-top: 4px;
}

.top-nav__label-text span {
	display: block;
	width: 160%;
	margin-left: -30%;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	white-space: nowrap;
	color: inherit;
}

@media screen and (max-width: 767px) {
	.top-nav__label-text span {
		font-size: calc(8.5px + 0.9vw);
	}
}

.top-nav__chotai {
	-webkit-transform: scaleX(0.85);
	transform: scaleX(0.85);
	transform-origin: center center;
}

@media screen and (max-width: 767px) {
	.top-nav__chotai {
		-webkit-transform: scaleX(0.75);
		transform: scaleX(0.75);
	}
}

/*
サイト内検索領域
*/

.top-search-section {
	position: relative;
	background: #f5f4ef;
}

.top-search-section * {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

.top-search__container {
	max-width: 530px;
	margin: 0 auto;
	padding: 20px;
}

@media screen and (max-width: 767px) {
	.top-search__container {
		max-width: none;
	}
}

.box-search-name {
	position: relative;
	background: #fff;
	z-index: 1;
	box-shadow: 0 0 0 5px rgba(34, 68, 136, 0.2);
}

.box-search-name:before {
	font-size: 17px;
	position: absolute;
	top: 0;
	left: 15px;
	line-height: 40px;
	color: #154598;
}

.box-search-name input {
	width: calc(100% - 25px);
	height: 40px;
	line-height: 40px;
	padding: 0 10px 0 15px;
	border: none;
	color: #666;
	font-size: 13px;
	line-height: normal;
}

.box-search-name button {
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.box-search-name button p.icon-search {
	background: #154598;
	color: #fff;
	font-size: 15px;
	line-height: 40px;
	width: 40px;
	text-align: center;
	-webkit-transition: background .5s;
	transition: background .5s;
}

.box-search-name button p.icon-search:hover {
	background: #1a95ce;
	-webkit-transition: background .1s;
	transition: background .1s;
}

@media screen and (max-width: 767px) {
	.box-search-name button p.icon-search {
		-webkit-transition: none;
		transition: none;
	}

	.box-search-name button p.icon-search:hover {
		background: #154598;
		-webkit-transition: none;
		transition: none;
	}
}

/*
店舗ニュース領域
*/

.top-shopnews-section {
	position: relative;
	z-index: 1;
	padding: 55px 0;
	background: #e7e3d9;
}

@media screen and (max-width: 767px) {
	.top-shopnews-section {
		padding: 30px 0;
	}
}

.top-shopnews-section * {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

.top-shopnews__list {
	position: relative;
}

.top-shopnews__list.is-alone .slick-track {
	transform: none !important;
}

.top-shopnews__list .slick-list {
		position: relative;
}

@media screen and (min-width: 530px) and (max-width: 767px) {
	.top-shopnews__list .slick-list {
		padding: 0 6px !important;
	}
}

@media screen and (max-width: 529px) {
	.top-shopnews__list .slick-list {
		padding: 0 20vw 0 6px !important;
	}
}

.top-shopnews__list.lst {
	padding: 0;
}

.top-shopnews-section .btn-border {
	background-color: #e7e3d9;
}

.top-shopnews__bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	margin: auto;
	width: calc(100% - 40px);
}

@media screen and (max-width: 529px) {
	.top-shopnews__bottom {
		left: auto;
		right: 20px;
		bottom: 15px;
		width: calc(100% - 35px);
	}
}

/* リストモジュールの調整 */

.top-shopnews-section .top-shopnews__list .bevel .lst-box {
	padding: 20px !important;
}

.top-shopnews-section .top-shopnews__list .bevel .lst-box .lst-ttl {
	position: relative;
	height: 4.2em !important;
	font-size: 14px !important;
	line-height: 1.4 !important;
	overflow: hidden !important;
	margin-bottom: 1.5em !important;
}

.top-shopnews-section .top-shopnews__list .bevel .lst-box .lst-ttl::after {
	content: "";
	position: absolute;
	right: 0;
	top: 2.8em;
	width: 3em;
	height: 1.4em;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
.top-shopnews-section .top-shopnews__list .bevel .lst-box .lst-blue {
	margin-bottom: 0 !important;
	font-size: 12px !important;
	line-height: 1.4 !important;
}

@media screen and (min-width: 1120px) {
	.top-shopnews-section .top-shopnews__list .bevel .lst-img {
		height: 140px !important;
	}
}

@media screen and (min-width: 970px) and (max-width: 1119px) {
	.top-shopnews-section .top-shopnews__list .bevel .lst-img {
		height: 180px !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 969px) {
	.top-shopnews-section .top-shopnews__list .bevel .lst-img {
		height: 180px !important;
	}
}

@media screen and (min-width: 530px) and (max-width: 767px) {
	.top-shopnews-section .top-shopnews__list .bevel .lst-img {
		height: 170px !important;
	}
}

@media screen and (max-width: 529px) {
	.top-shopnews-section .top-shopnews__list .bevel {
		position: relative;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: stretch;
	}
	.top-shopnews-section .top-shopnews__list .bevel .lst-img {
		display: block !important;
		width: calc(39% - 15px) !important;
		height: 0 !important;
		margin: 15px 0 15px 15px !important;
		padding-bottom: 34% !important;
		clip-path: none !important;
	}
	.top-shopnews-section .top-shopnews__list .bevel .lst-box {
		width: 61% !important;
		padding: 20px 20px 0 15px !important;
	}
}

/* 描画軽減のためモジュール側で付与されているallプロパティに対するtransitionを解除 */

.top-shopnews__item .bevel * {
	transition: color .5s, opacity .5s !important;
}
.top-shopnews__item .bevel:hover * {
	transition: color .1s, opacity .1s !important;
}

/*
オープン・リニューアル領域
*/

.top-newshop-section {
	position: relative;
	z-index: 1;
	padding: 55px 0;
	background: #f5f4ef;
}

@media screen and (max-width: 767px) {
	.top-newshop-section {
		padding: 30px 0;
	}
}

.top-newshop-section * {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

.top-newshop__list {
	position: relative;
}

.top-newshop__list.is-alone .slick-track {
	transform: none !important;
}

.top-newshop__list .slick-list {
		position: relative;
}

@media screen and (min-width: 530px) and (max-width: 767px) {
	.top-newshop__list .slick-list {
		padding: 0 6px !important;
	}
}

@media screen and (max-width: 529px) {
	.top-newshop__list .slick-list {
		padding: 0 20vw 0 6px !important;
	}
}

.top-newshop__list.lst {
	padding: 0;
}

.top-newshop__item {
	position: relative;
}

/* リストモジュールの調整 */

.top-newshop-section .top-newshop__list .bevel .lst-box {
	padding: 20px !important;
}

@media screen and (min-width: 1120px) {
	.top-newshop-section .top-newshop__list .bevel .lst-img {
		height: 200px !important;
	}
}

@media screen and (min-width: 970px) and (max-width: 1119px) {
	.top-newshop-section .top-newshop__list .bevel .lst-img {
		height: 180px !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 969px) {
	.top-newshop-section .top-newshop__list .bevel .lst-img {
		height: 180px !important;
	}
}

@media screen and (min-width: 530px) and (max-width: 767px) {
	.top-newshop-section .top-newshop__list .bevel .lst-img {
		height: 170px !important;
	}
}

@media screen and (max-width: 529px) {
	.top-newshop-section .top-newshop__list .bevel .lst-img {
		height: 170px !important;
	}
}

/* 描画軽減のためモジュール側で付与されているallプロパティに対するtransitionを解除 */

.top-newshop__item .bevel * {
	transition: color .5s, opacity .5s !important;
}
.top-newshop__item .bevel:hover * {
	transition: color .1s, opacity .1s !important;
}

/* リストモジュールの調整 */

.top-newshop-section .newshoplst__item-zone {
	position: absolute;
	left: 0;
	bottom: 100%;
	padding: 5px 10px;
	background: #154598;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
}

.top-newshop-section .lst.lst02 li .bevel:hover .lst-box .newshoplst__item-zone {
	color: #fff !important;
}

.top-newshop-section .newshoplst__item-name {
	margin-top: 0;
	font-size: 15px !important;
	line-height: 1.5 !important;
}

.top-newshop-section .newshoplst__item-body-lower {
	display: block;
	margin-top: 5px;
}

.top-newshop-section .newshoplst__item-gyotai {
	font-size: 12px !important;
	line-height: 1.4 !important;
}

.top-newshop-section .newshoplst__item-icon-limited {
	display: inline-block;
	margin-right: .7em;
	padding: 4px;
	border: 1px solid #154598;
	background: #fff;
	line-height: 1;
	color: #154598;
}

@media screen and (max-width: 767px) {
	.top-newshop-section .newshoplst__item-icon-limited {
		margin-right: .7em;
	}
}

.top-newshop-section .lst.lst02 li .bevel:hover .lst-box .newshoplst__item-icon-limited {
	border-color: #1a95ce !important;
}

.top-newshop-section .newshoplst__item-date {
	display: inline-block;
	width: auto;
	margin-top: 0;
}

.top-newshop-section .newshoplst__item-date-text {
	display: inline-block;
}

@media screen and (max-width: 529px) {
	.top-newshop-section .top-newshop__list .bevel .lst-img {
		height: 0 !important;
		padding-bottom: 50% !important;
	}
}

/* もっと見る */

.top-more-container {
	width: 200px;
	margin-top: 40px;
	margin-bottom: 0;
}
.top-more .btn-border {
	font-weight: bold;
}

/*
コンセプト領域
*/

.top-concept-section {
	position: relative;
	padding: 130px 0 60px;
	background-color: #f5f4ef;
	background-image:
		url(https://www.ikspiari.com/resource/images/top/top-concept-arch.png),
		url(https://www.ikspiari.com/resource/images/top/top-concept-kirakira-l.png),
		url(https://www.ikspiari.com/resource/images/top/top-concept-kirakira-r.png),
		url(https://www.ikspiari.com/resource/images/top/top-concept-grad.png),
		url(https://www.ikspiari.com/resource/images/top/top-concept-photo-base-202609.jpg);
	background-repeat:
		no-repeat,
		no-repeat,
		no-repeat,
		no-repeat,
		no-repeat;
	background-position:
		center top,
		left center,
		right center,
		center top,
		center top;
	background-size:
		100% auto,
		50% auto,
		50% auto,
		100% 100%,
		100% auto;
}
@media screen and (min-width:768px) and (max-width:1119px) {
	.top-concept-section {
		background-size:
			140vw auto,
			50% auto,
			50% auto,
			100% 100%,
			160vw auto;
	}
}

@media screen and (max-width: 767px) {
	.top-concept-section {
		padding: 80px 0 50px;
		background-position:
			center top,
			left top 33%,
			right top 33%,
			center top,
			center top;
		background-size:
			220vw auto,
			50% auto,
			50% auto,
			100% 100%,
			260vw auto;
	}
}

.top-concept-section * {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

.top-concept__logo {
	position: relative;
}

.top-concept__logo-img {
	display: block;
	margin: 0 auto;
	width: 320px;
	height: auto;
}

@media screen and (max-width: 767px) {
	.top-concept__logo-img {
		max-width: 260px;
		width: 60%;
	}
}

.top-concept__introduction {
	padding-top: 60px;
	background-image: url(https://www.ikspiari.com/resource/images/top/top-concept-kazarikei.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 40px auto;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	text-shadow: 0 0 7px #154598;
	line-height: 1.8;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.top-concept__introduction {
		padding-top: 10px;
		background: none;
		font-size: 15px;
	}
}

.top-concept__more {
	display: block;
	margin-top: 20px;
	text-align: center;
}

.top-concept__more-link:hover {
	opacity: 1;
}

.top-concept__more .btn {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.top-concept__more {
		margin-top: 30px;
	}
}

.top-concept__photo {
	max-width: 1300px;
	margin: 60px auto 0;
	-webkit-mask-image: linear-gradient(to right,
		rgba(0, 0, 0, 0) 5%,
		rgba(0, 0, 0, .1) 8%,
		rgba(0, 0, 0, .25) 11%,
		rgba(0, 0, 0, 1) 17%,
		rgba(0, 0, 0, 1) 83%,
		rgba(0, 0, 0, .25) 89%,
		rgba(0, 0, 0, .1) 92%,
		rgba(0, 0, 0, 0) 95%
	);
	mask-image: linear-gradient(to right,
		rgba(0, 0, 0, 0) 5%,
		rgba(0, 0, 0, .1) 8%,
		rgba(0, 0, 0, .25) 11%,
		rgba(0, 0, 0, 1) 17%,
		rgba(0, 0, 0, 1) 83%,
		rgba(0, 0, 0, .25) 89%,
		rgba(0, 0, 0, .1) 92%,
		rgba(0, 0, 0, 0) 95%
	);
}

@media screen and (max-width: 767px) {
	.top-concept__photo {
		margin-top: 40px;
		-webkit-mask-image: none;
		mask-image: none;
	}
}

.top-concept__photo-item {
	margin: 0 10px;
	border: 3px solid #fff;
}

@media screen and (max-width: 767px) {
	.top-concept__photo-item {
		margin: 0 1.5vw;
	}
}

.top-concept__photo-img {
	width: 100%;
	height: auto;
}

/*
お知らせ領域
*/

.top-information-section {
	position: relative;
	padding: 40px 0 50px;
	background: #fff;
}

@media screen and (max-width: 767px) {
	.top-information-section {
		padding: 30px 0 40px;
	}
}

.top-information__list {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0;
}

@media screen and (max-width: 1119px) {
	.top-information__list {
		padding: 0 20px;
	}
}

@media screen and (max-width: 767px) {
	.top-information__list {
		padding: 0 15px;
	}
}

.top-information__more-container {
	max-width: 1120px;
    margin: 25px auto 0;
	text-align: right;
}

@media screen and (max-width: 1119px) {
	.top-information__more-container {
		padding: 0 20px;
	}
}

@media screen and (max-width: 767px) {
	.top-information__more-container {
		padding: 0 15px;
	}
}

.top-information__list {
}

.top-information__list.lst-info li {
}

.top-information__list.lst-info li a .lst-box {
}

.top-information__list.lst-info li a .icon-arrow-right {
}

@media screen and (max-width: 767px) {

	.top-information__list.lst-info li {
		border-top: 1px  solid #e7e3d9;
	}

	.top-information__list.lst-info li:last-child {
		border-bottom: 1px  solid #e7e3d9;
	}

	.top-information__list.lst-info li .lst-gray {
		display: inline-block;
		color: #999;
	}

	.top-information__list.lst-info li .lst-ttl {
		display: inline;
	}

	.top-information__list.lst-info li .lst-gray + .lst-ttl {
		margin-left: .5em;
	}

	.top-information__list.lst-info li a .lst-box {
		padding: 19px 1.6em 16px 5px;
	}

	.top-information__list.lst-info li a .icon-arrow-right {
		right: 0;
	}
}

.top-information__list.lst-info li a .lst-box .lst-ttl,
.top-information__list.lst-info li a .lst-box .lst-ttl span {
	color: #154598;
	-webkit-transition: color .5s;
	transition: color .5s;
}

.top-information__list.lst-info li a:hover .lst-box .lst-ttl,
.top-information__list.lst-info li a:hover .lst-box .lst-ttl span {
	color: #1a95ce;
	-webkit-transition: color .1s;
	transition: color .1s;
}

@media screen and (max-width: 767px) {
	.top-information__list.lst-info li a .lst-box .lst-ttl,
	.top-information__list.lst-info li a .lst-box .lst-ttl span {
		-webkit-transition: none;
		transition: none;
	}

	.top-information__list.lst-info li a:hover .lst-box .lst-ttl,
	.top-information__list.lst-info li a:hover .lst-box .lst-ttl span {
		color: #154598;
		-webkit-transition: none;
		transition: none;
	}
}

.top-information__more {
	position: relative;
	padding-right: 1.6em;
	font-size: 14px;
	color: #154598;
	-webkit-transition: color .5s;
	transition: color .5s;
}

.top-information__more:hover {
	opacity: 1;
	color: #1a95ce;
	-webkit-transition: color .1s;
	transition: color .1s;
}

@media screen and (max-width: 767px) {
	.top-information__more {
		-webkit-transition: none;
		transition: none;
	}

	.top-information__more:hover {
		color: #154598;
		-webkit-transition: none;
		transition: none;
	}
}

.top-information__more::before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -.5em;
}

@media screen and (max-width: 767px) {
	.top-information__more::before {
		-webkit-transition: none;
		transition: none;
	}

	.top-information__more:hover::before {
		color: #154598;
		-webkit-transition: none;
		transition: none;
	}
}

/*
TOPページ下部固定バナー領域
*/

.top-bottombanner-section {
	background-color: #ece9e0;
	width: 100%;
	padding: 30px 0;
}

@media screen and (max-width: 767px) {
	.top-bottombanner-section {
		padding: 15px 0;
	}
}

.top-bottombanner__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	max-width: 1160px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.top-bottombanner__list {
		padding: 0 15px;
	}
}

.top-bottombanner__item {
	width: calc(50% - 10px);
}

.top-bottombanner__item + .top-bottombanner__item {
	margin-left: 20px;
}

@media screen and (max-width: 767px) {
	.top-bottombanner__item {
		width: auto;
	}

	.top-bottombanner__item + .top-bottombanner__item {
		margin-left: 0;
		margin-top: 15px;
	}
}

.top-bottombanner__item img {
	display: block;
	width: 100%;
	height: auto;
}

/*
TOPページのいつでもおトク領域
*/

.top-otoku-section {
	background: #f5f4ef;
	padding: 30px 0;
}

@media screen and (max-width: 767px) {
	.top-otoku-section {
		padding: 30px 0 20px;
	}
}

.top-otoku-section * {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

.top-otoku__list {
	max-width: 920px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.top-otoku__list {
		max-width: none;
	}
}

.top-otoku__item {
	width: 25%;
	margin: 0 8px;
}

@media screen and (max-width: 767px) {
	.top-otoku__item {
		width: 50%;
		margin: 0 8px;
	}
}

.top-otoku__item a {
	display: block;
	width: 100%;
}

.top-otoku__item a img {
	display: block;
	width: 100%;
	height: auto;;
}
