@charset "UTF-8";

html {
	/** #スマホを横向きにしても文字が大きくならない */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	height: 100%;
}

/** #remベース：1rem = 10px（media: w360px）〜16px（media: w1000px） */
html {
	min-height: 0vw;
	font-size: 100%;
}

/** #タグリセット（IE対策） */
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	margin: 0;
	padding: 0;
	font-size: 100%;
}

/** #ブロック系タグのリセット */
dt,
dd,
th,
td {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: unset;
	text-decoration: none;
}

/** #画像系タグのリセット */
img,
iframe,
embed,
video,
math,
svg,
img[src$=".svg"] {
	-o-object-fit: cover;
	display: inline-block;
	width: auto;
	max-width: 100%;
	object-fit: cover;
	vertical-align: middle;
}

picture {
	-o-object-fit: cover;
	display: inline-block;
	width: auto;
	max-width: 100%;
	object-fit: cover;
	vertical-align: middle;
}

/** #ボタンスタイルのリセット */
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-transition: all 0.3s ease;
	display: inline-block;
	appearance: none;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: none;
	color: inherit;
	cursor: pointer;
	transition: all 0.3s ease;
}




/* Origin CSS */
.noto_sans {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", "游ゴシック体", "Yu Gothic", "IBM Plex Sans JP", sans-serif;
}

.pagetop-btn {
	display: none;
	z-index: 9998;
	position: fixed;
	right: 19rem;
	bottom: 60px;
	width: 35px;
}

.footer_sns {
	display: none;
}

a[href^="tel:"] {
	pointer-events: none;
}

.mente {
	width: 450px;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	border: 1px solid #000;
	border-radius: 6px;
	font-size: 14px;
	text-align: center;
}

.mente span {
	display: block;
}

.mente h2 {
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 18px;
}

.mente p {
	margin-bottom: 20px;
}

.not_found {
	width: 600px;
	margin-top: 80px;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #000;
	border-radius: 6px;
	line-height: 30px;
	text-align: center;
}

.not_found h2 {
	width: 600px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	font-weight: 600;
	font-size: 22px;
}

.not_found h2 span {
	display: block;
}

.not_found p {
	width: 600px;
	font-size: 16px;
}

.not_found p span {
	display: block;
}

/*========= 1文字ずつ出現させるためのCSS ===============*/

.eachTextAnime span {
	opacity: 0;
}

.eachTextAnime.appeartext span {
	animation: text_anime_on 0.6s ease-out forwards 1;
}

@keyframes text_anime_on {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*========= *ふわっと表示 ===============*/
.fadeUp {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: fadeUpAnime;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 0;
	}

	to {
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		position: absolute;
		top: 48%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 1;
	}
}

/*========= *ページ遷移フェードイン ===============*/
body::after {
	/* 初期値 : 透過状態 */
	-webkit-transition: opacity .8s ease;
	/* 背景カラー */
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	content: '';
	/* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0;
	/* 一番手前に */
	pointer-events: none;
	/* アニメーション時間は 0.8秒 */
	transition: opacity .8s ease;
}

body.fadeout::after {
	opacity: 1;
}



.wrap_1 {
	z-index: 9999;
	position: relative;
	height: auto;
	padding-bottom: 15px;
	background-color: #0E224B;
}

/* ヘッターの設定 */
@media screen and (min-width: 1152px) {
	header {
		z-index: 9000;
		position: fixed;
		top: 0px;
		right: 0px;
		width: 18.3rem;
		height: 100%;
		background-color: #fff;
	}
}

@media screen and (max-width: 1151px) {
	header {
		z-index: 9000;
		position: fixed;
		top: 0px;
		right: 0px;
		width: 15rem;
		height: 100%;
		background-color: #fff;
	}
}

.header_wrap {
	position: relative;
	/* Flex */
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	margin-top: 2%;
}

.header_wrap .logo {
	width: 130px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 2vw;
	text-align: center;
}

.header_wrap .logo img {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.header_wrap ul {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0.5vw;
}

.header_wrap ul li {
	box-sizing: border-box;
	width: 100%;
	padding-bottom: 0.15vw;
	color: #fff;
	font-weight: 600;
	font-size: 0.9vw;
	text-align: center;
}

@media screen and (max-width: 1151px) {
	.header_wrap ul li {
		box-sizing: border-box;
		width: 100%;
		padding-bottom: 0.01vw;
		color: #fff;
		font-weight: 600;
		font-size: 1.1vw;
		text-align: center;
	}
}

.line_top {
	box-sizing: border-box;
	border-top: 1px solid #fff;
}

.header_wrap a {
	display: block;
	color: #fff;
}

.header_wrap a:hover {
	display: block;
	color: #fff;
	opacity: 0.5;
}

.header_wrap .blue a {
	display: block;
	color: #fff;
}

.header_wrap .blue a:hover {
	display: block;
	color: #fff;
	opacity: 0.5;
}

.blue {
	width: 80%;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #0E224B;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
}

.blue a {
	display: block;
	color: #fff;
}

.blue a:hover {
	display: block;
	color: #fff;
	opacity: 0.5;
}

.header_middle {
	margin-top: 30px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.header_bottom {
	position: absolute;
	z-index: 10;
	bottom: 13.5px;
	left: 0px;
	right: 0px;
	margin: auto;
	width: 100%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}

.btn_left {
	margin-top: 10px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.btn_left_div {
	width: 49%;
	float: left;
}

.btn_left_div_2 {
	margin-left: 2%;
}

.magazine_btn {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	margin-bottom: 5px;
	padding-top: 6px;
	padding-bottom: 7px;
	border: 1px solid #898F9C;
	background-color: #fff;
	color: #898F9C;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
}

.contact_btn {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	margin-bottom: 5px;
	padding-top: 6px;
	padding-bottom: 7px;
	border: 1px solid #898F9C;
	background-color: #fff;
	color: #898F9C;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
}

.magazine_btn span,
.contact_btn span {
	display: block;
	font-weight: normal;
	font-size: 9px;
}

.company_btn {
	box-sizing: border-box;
	position: relative;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 7px;
	padding-bottom: 5px;
	border: 1px solid #898F9C;
	background-color: #fff;
	color: #898F9C;
	font-size: 11px;
	line-height: 18px;
	text-align: center;
}

.company_btn span {}

.down_btn {
	width: 29vh;
	margin-right: auto;
	margin-left: auto;
}

.down_btn_2 {
	width: 29vh;
	margin-right: auto;
	margin-bottom: 0.1vh;
	margin-left: auto;
}

.down_btn img,
.down_btn_2 img {
	width: 100%;
}

.down_btn_3 {
	margin-top: 10px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.yazi_btn {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
}

.icon {
	width: 7vw;
	margin-top: 11px;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (max-width: 1151px) {
	.icon {
		width: 9vw;
	}
}

.icon div {
	width: 24%;
	float: left;
}

.in_icon {
	margin-right: 14%;
	margin-left: 14%;
}


.shop,
.shop a {
color: #0E224B;
}

.shop_btn {
	margin-top: 15px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.shop_btn img {
	width: 100%;
}

.header_bottom a {
	display: block;
	color: #898F9C;
}

.header_bottom a:hover {
	display: block;
	color: #898F9C;
	opacity: 0.5;
}



/* スライドショーの設定 */

@media screen and (min-width: 1152px) {
	.top_left {
		display: block;
		position: fixed;
		width: calc(((100% - 27.5rem) / 2));
		height: 98%;
		margin-left: 0.5rem;
		overflow-y: hidden;
	}
}

@media screen and (max-width: 1151px) {
	.top_left {
		display: block;
		position: relative;
		width: calc((100% - 16rem));
		height: 100vh;
		margin-left: 0.5rem;
		overflow-y: hidden;
	}
}


.top_left_box {
	width: 100%;
	height: 100%;
}

.top_left_box2 {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border: 1px solid #0E2148;
}

.top_left_box img {
	width: 100%;
	height: 100%;
}

.mask {
	z-index: 600;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.15);
}

.slideshow {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}

.slideshow .slideshow_img {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
}

.slideshow_img span {
	display: block;
}

.slide1 {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.slide1 .move_img_1 {
	object-fit: cover;
}

.slide1 .kitty_img_1 {
	object-fit: cover;
}

@keyframes scroll-anim {
	100% {
		-webkit-transform-origin: 100% 50%;
		-moz-transform-origin: 100% 50%;
		-ms-transform-origin: 100% 50%;
		-o-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}
}

.text_1 {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 9999;
	position: absolute;
	top: 50%;
	left: 0%;
	padding-left: 10%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 2vw;
	line-height: 2.8vw;
}

@media screen and (max-width: 1151px) {
	.text_1 {
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		z-index: 9999;
		position: absolute;
		top: 50%;
		left: 0%;
		padding-left: 10%;
		transform: translateY(-50%);
		color: #fff;
		font-size: 3.5vw;
		line-height: 4.5vw;
	}
}

.slide2 {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.slide2 .move_img_2 {
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	object-fit: cover;
	transform: scale(1.08);
	transform-origin: 50% 50%;
	animation: scroll-anim2 8s linear infinite;
}

@keyframes scroll-anim2 {
	100% {
		-webkit-transform-origin: 50% 100%;
		-moz-transform-origin: 50% 100%;
		-ms-transform-origin: 50% 100%;
		-o-transform-origin: 50% 100%;
		transform-origin: 50% 100%
	}
}

.text_2 {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 9999;
	position: absolute;
	top: 30%;
	left: 0%;
	padding-left: 10%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 2vw;
	line-height: 2.8vw;
}

@media screen and (max-width: 1151px) {
	.text_2 {
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		z-index: 9999;
		position: absolute;
		top: 30%;
		left: 0%;
		padding-left: 10%;
		transform: translateY(-50%);
		color: #fff;
		font-size: 3.5vw;
		line-height: 4.5vw;
	}
}

.slide3 {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.slide3 .move_img_3 {
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	object-fit: cover;
	transform: scale(1.08);
	transform-origin: 50% 50%;
	animation: scroll-anim3 8s linear infinite;
}

@keyframes scroll-anim3 {
	100% {
		-webkit-transform-origin: 0% 50%;
		-moz-transform-origin: 0% 50%;
		-ms-transform-origin: 0% 50%;
		-o-transform-origin: 0% 50%;
		transform-origin: 0% 50%;
	}
}

.text_3 {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 9999;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 2vw;
	line-height: 2.8vw;
}

@media screen and (max-width: 1151px) {
	.text_3 {
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		z-index: 9999;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #fff;
		font-size: 3.5vw;
		line-height: 4.5vw;
	}
}


.slide4 {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.slide4 .move_img_4 {
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	object-fit: cover;
	transform: scale(1.08);
	transform-origin: 50% 50%;
	animation: scroll-anim4 8s linear infinite;
}

@keyframes scroll-anim4 {
	100% {
		-webkit-transform-origin: 50% 0%;
		-moz-transform-origin: 50% 0%;
		-ms-transform-origin: 50% 0%;
		-o-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}
}

.text_4 {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 900;
	position: absolute;
	top: 48%;
	left: 50%;
	width: 35%;
	transform: translate(-50%, -50%);
}

.text_4 img {
	width: 100%;
}






/* トップページの設定 */

@media screen and (min-width: 1152px) {
	.top_right {
		z-index: 900;
		position: relative;
		right: 18.6rem;
		width: calc(((100% - 12rem) / 2));
		height: 100%;
		margin-left: auto;
	}
}

@media screen and (max-width: 1151px) {
	.top_right {
		display: block;
		z-index: 9999;
		position: relative;
		width: calc((100% - 15.5rem));
		height: 100%;
		margin-left: 0.5rem;
	}
}

.top_right_box {
	width: 99%;
	height: 100%;
}

.hover_zoom a {
	width: 100%;
	height: 100%;
}

.hover_zoom img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1, 1);
	transition: 1s all;
}

.hover_zoom img:hover {
	transform: scale(1.05, 1.05);
	transition: 0.5s all;
}

.hover_zoom .hover_wrap {
  position: relative;
}

.top_1 {
	width: 100%;
	overflow: hidden;
}

.top_1_box1 {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 1%;
	overflow: hidden;
}

.top_1_box1 img {
	display: block;
	width: 100%;
}

.top_1_box2 {
	width: 100%;
}

.top_1_box2 .top_1_box2_div {
	position: relative;
	width: 49.5%;
	float: left;
	overflow: hidden;
}

.top_1_box2 .top_1_box2_div img {
	display: block;
	width: 100%;
}

.top_1_box2 .div_1 {
	margin-right: 1%;
}

.yazi {
	z-index: 300;
	position: absolute;
	right: 5px;
	bottom: 5px;
}

.yazi2 {
	z-index: 300;
	position: absolute;
	right: 5px;
	bottom: 5px;
}

.t_text {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
	white-space: nowrap;
}

.t_text h2 {
	font-weight: 600;
	font-size: 25px;
	letter-spacing: 1px;
}

.t_text h3 {
	margin-top: 15px;
	font-size: 15px;
}

.news {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	margin-top: 1%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0px;
	border: solid 1px #C3C0C0;
}

.news_btn {
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	text-align: center;
}

.news a {
	color: #508FFF;
}

.news a:hover {
	color: #508FFF;
	opacity: 0.5;
}

.news h2 {
	padding-bottom: 20px;
	color: #727272;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
}

.news dl {
	width: 90%;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	color: #727272;
	font-size: 13px;
}

.news dl dt {
	display: table-cell;
	width: 220px;
	vertical-align: top;
}

.news dl dt div:last-child {
	display: none;
}

.news dl dd {
	display: table-cell;
	width: 87vw;
	vertical-align: top;
}

.news dl dd div {
	display: table-cell;
}

.news dl .notice p {
	width: 70px;
	height: 24px;
	margin-right: 10px;
	margin-bottom: 3px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #0E224B;
	color: #fff;
	font-size: 10px;
	text-align: center;
}

.news dl .event p {
	width: 70px;
	height: 24px;
	margin-right: 10px;
	margin-bottom: 3px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #720F72;
	color: #fff;
	font-size: 10px;
	text-align: center;
}

.news dl .popup p {
	width: 70px;
	height: 24px;
	margin-right: 10px;
	margin-bottom: 3px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #1A72A8;
	color: #fff;
	font-size: 10px;
	text-align: center;
}

.news dl .sale p {
	width: 70px;
	height: 24px;
	margin-right: 10px;
	margin-bottom: 3px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #9B7A1E;
	color: #fff;
	font-size: 10px;
	text-align: center;
}

.yuta_num2 {
	margin-right: 1.1%;
	margin-left: 1%;
}

.recommend {
	position: relative;
	width: 100%;
	margin-top: 60px;
	margin-bottom: 1%;
}

.recommend h2 {
	color: #898F9C;
	font-weight: 600;
	font-size: 25px;
	text-align: center;
}

.recommend h3 {
	margin-top: 10px;
	margin-bottom: 30px;
	color: #898F9C;
	font-size: 16px;
	text-align: center;
}

.recommend dl {
	box-sizing: border-box;
	position: relative;
	width: 32.6%;
	height: 14vw;
	float: left;
}

.recommend dl dt {
	display: block;
	width: 100%;
	height: 14vw;
	overflow: hidden;
	border: solid 1px #C3C0C0;
	line-height: 0px;
}

.recommend dl dt img {
	width: 100%;
	object-fit: cover;
}




/* footerの設定 */
footer.footer {
	position: relative;
	width: 100%;
	margin-top: 1%;
	padding-top: 50px;
	background-color: #0E224B;
}

@media screen and (max-width: 1151px) {
	footer.footer {
		position: relative;
		width: 100%;
		margin-top: 1%;
		margin-bottom: 1%;
		padding-top: 50px;
		background-color: #0E224B;
	}
}

footer.footer a {
	display: block;
	color: #fff;
}

footer.footer a:hover {
	color: #fff;
	opacity: 0.5;
}

footer.footer h2 {
	position: relative;
	width: 25%;
	margin-right: auto;
	margin-left: auto;
}

footer.footer h2 img {
	width: 100%;
}

@media screen and (min-width: 1152px) {
	footer.footer .list_1 {
		width: 500px;
		margin-top: 50px;
		margin-right: auto;
		margin-left: auto;
		font-size: 12px;
	}
}

@media screen and (max-width: 1151px) {
	footer.footer .list_1 {
		width: 500px;
		margin-top: 50px;
		margin-right: auto;
		margin-left: auto;
		font-size: 12px;
	}
}

footer.footer .list_1 li {
	float: left;
	font-weight: 600;
}

.footer .list_1_b1 {
	width: 22%;
	margin-right: 5%;
}

.footer .list_1_b2 {
	width: 14%;
	margin-right: 5%;
}

.footer .list_1_b3 {
	width: 9%;
	margin-right: 5%;
}

.footer .list_1_b4 {
	width: 14%;
	margin-right: 5%;
}

.footer .list_1_b5 {
	width: 5%;
	margin-right: 4%;
}

.footer .list_1_b6 {
	width: 11.5%;
	margin-right: 0%;
}

footer.footer .list_2 {
	width: 345px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

footer.footer .list_2 li {
	float: left;
	font-size: 11px;
}

.footer .list_2_b1 {
	margin-right: 5%;
}

.footer .list_2_b2 {
	margin-right: 5%;
}

.footer .list_2_b3 {}

footer.footer .list_3 {
	width: 305px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
}

footer.footer .list_3 li {
	float: left;
	font-size: 11px;
}

.footer .list_3_b1 {
	margin-right: 5%;
}

.footer .list_3_b2 {}

.footer .copy {
	margin-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	font-size: 10px;
	text-align: center;
}




@media screen and (max-width: 1151px) {
	.top_yohaku_1151 {
		height: 1%;
	}
}

.top_yohaku {
	height: 1%;
}

.bottom_yohaku {
	height: 1%;
}


/* aboutの設定 */
.not_slideshow {
	position: relative;
	width: 100%;
	height: 100%;
}

.not_slideshow2 {
	position: relative;
	width: 90%;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}

.not_slideshow .slideshow_img {
	position: absolute;
	top: 0px;
	left: 0px;
}

.not_slide1 {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.not_slide1 img {
	object-fit: cover;
}

.not_slide1 .text_10 {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	display: block;
	z-index: 9999;
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-weight: 600;
	font-size: 30px;
	letter-spacing: 2px;
	text-align: center;
	white-space: nowrap;
	opacity: 0;
}

.not_slide1 .text_10 span {
	display: block;
	margin-top: 20px;
	font-weight: normal;
	font-size: 19px;
	letter-spacing: normal;
	white-space: nowrap;
}

.not_slide1 .text_11 {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	display: block;
	z-index: 9999;
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-weight: 600;
	font-size: 30px;
	letter-spacing: 2px;
	text-align: center;
	white-space: nowrap;
}

.not_slide1 .text_11 p span {
	display: inline-block;
	font-weight: 600;
	font-size: 30px;
}

.not_slide1 .text_11 span {
	display: block;
	margin-top: 20px;
	font-weight: normal;
	font-size: 19px;
	letter-spacing: normal;
	white-space: nowrap;
}

.common_h2 {
	font-weight: 600;
	font-size: 30px;
	text-align: center;
}

.common_h3 {
	margin-top: 20px;
	font-size: 19px;
	text-align: center;
}

.common_p {
	margin-top: 1.5vw;
	font-size: 14px;
	line-height: 30px;
}

.common_p span {
	display: block;
	margin-top: 1.1vw;
}

.about {
	position: relative;
	width: 100%;
}

.about img {
	display: block;
	width: 100%;
}

.about_1 {
	display: block;
	position: relative;
	width: 100%;
}

.about_1_text {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 60%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.about_1_text h2 {}

.about_1_text h3 {}

.about_1_text p {
	margin-top: 1.1vw;
	margin-bottom: 1.1vw;
}

.about_1_text p span {
	display: block;
	margin-top: 0vw;
}

.about_1_text .old_img {
	width: 25%;
	margin-right: auto;
	margin-left: auto;
}

.about_2 {
	margin-top: 1%;
	margin-right: auto;
	margin-left: auto;
}

.about_2_1 {
	position: relative;
}

.about_2_1_text {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.about_2_1_text h2 {}

.about_2_1_text h3 {}

.about_2_1_article {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #ECEDE5;
	color: #898F9C;
}

.about_2_1_article p {
	width: 60%;
	margin-right: auto;
	margin-left: auto;

}

.about_shop_btn_wrap {
	width: 160px;
	margin-right: auto;
	margin-left: auto;
}

.about_shop_btn_wrap a {
	display: block;
	color: #fff;
}

.about_shop_btn_wrap a:hover {
	color: #fff;
	opacity: 0.5;
}

.about_shop_btn {
	width: 160px;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #898F9C;
	text-align: center;
}

.about_3 {
	position: relative;
	margin-top: 1%;
}

.about_3_1 {
	position: relative;
}

.about_3_1_text {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
}

.about_3_1_text h2 {}

.about_3_1_text h3 {}

.about_3_1_text p {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}

.about_3_1_text p span {}

.about_4 {
	position: relative;
	margin-top: 1%;
}

.about_4 img {}

.about_4_1 {
	display: block;
	position: relative;
	width: 100%;
	height: 120vh;
	background-image: url(img/about_7.png);
	background-position: center;
	background-size: cover;
}

.about_4_1_text {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
}

.about_4_1_text h2 {}

.about_4_1_text h3 {}

.about_4_1_text p {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}

.about_4_1_text p span {
	display: block;
}


/* productの設定 */
.product {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.product .common_h2 {
	color: #898F9C;
}

.product .common_h3 {
	color: #898F9C;
	font-size: 16px;
}

.product_1 {
	width: 100%;
	padding-top: 60px;
	background-color: #ECEDE5;
}

.product_1_box {
	display: block;
	width: 100%;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}

.product_1_box div {
	display: block;
	position: relative;
	width: 49.5%;
	height: 20vw;
	float: left;
	overflow: hidden;
	line-height: 0px;
}

.product_1_box div {
	display: block;
	position: relative;
	width: 49.5%;
	height: 20vw;
	float: left;
	overflow: hidden;
	line-height: 0px;
}

.product_1_box img {
	display: block;
}

.product_1_box div:first-child {
	margin-right: 1%;
}

.product_2 {
	margin-top: 60px;
}

.product_2 .recommend {
	margin-top: 30px;
}

.product_3 {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 60px;
	padding-bottom: 40px;
	background-color: #ECEDE5;
}

.product_3_box {
	position: relative;
	width: 80%;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}

.product_3_box div {
	position: relative;
	width: 49.5%;
	margin-bottom: 1%;
	float: left;
	overflow: hidden;
}

.product_3_box div img {
	display: block;
}

.box_left {
	margin-right: 1%;
}

.product_3_text {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-weight: 600;
	font-size: 25px;
	text-align: center;
	white-space: nowrap;
}

.product_3_text span {}

.product_3_btn {
	width: 200px;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}

.product_3_btn a {
	display: block;
}

.product_3_btn a:hover {
	opacity: 0.5;
}

.product_4 {
	box-sizing: border-box;
	width: 100%;
	margin-top: 1%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
	padding-bottom: 40px;
	border: 1px solid #898F9C;
}

.product_5 {
	width: 100%;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: 60px;
	margin-left: auto;
	color: #898F9C;
}

.product_5 h2 {
	font-size: 20px;
	text-align: center;
}

.product_5_btn {
	position: relative;
	width: 70%;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}

.product_5_btn img {
	display: block;
}

.product_5_btn p {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-weight: 600;
	font-size: 30px;
	letter-spacing: 2px;
}

.product_5 h4 {
	width: 75%;
	margin-top: 6px;
	margin-right: auto;
	margin-left: auto;
	font-size: 13px;
	text-align: center;
}

.product_5 h4 span {
	display: block;
}

.product_5 h5 {
	display: block;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
	font-size: 20px;
	text-align: center;
}

.product_5 .bottom_bar {
	display: block;
	width: 100px;
	margin-top: 8px;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 4px solid #898F9C;
}

.p_1 {
	margin-top: 15px;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
}

.p_2 {
	margin-top: 6px;
	font-weight: 600;
	font-size: 13px;
	text-align: center;
}

.p_3 {
	font-size: 12px;
	text-align: center;
}

/* repairの設定 */
.repair {}

.repair_1 {
	padding-top: 50px;
	padding-bottom: 0px;
	background-color: #ECEDE5;
	color: #898F9C;
	text-align: center;
}

.repair_1 span {
	margin-top: 0px;
}

.repair_1_img {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 50px;
}

.repair_1 h3 {
	margin-top: 15px;
	font-size: 16px;
}

.repair_2 {
	box-sizing: border-box;
	width: 100%;
	margin-top: 1%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	border: 1px solid #898F9C;
	color: #898F9C;
}

.repair_2 h3 {
	margin-top: 15px;
	font-size: 16px;
}

.repair_2_img {
	width: 80%;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}

.repair_2 ul {
	width: 80%;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

.repair_2 ul li {
	padding-bottom: 5px;
	font-size: 13px;
}

.repair_2_l_box h4 {
	margin-top: 60px;
	font-size: 17px;
	text-align: center;
}

.repair_2_l_box p {
	margin-top: 20px;
	font-size: 13px;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
}

.repair_2_l_box p span {
	display: block;
}

.repair_2_l_box_img {
	width: 80%;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}

/* フォームの設定 */
.form_wrap {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	color: #898F9C;
}

.form_wrap ul {
	width: 100%;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
	color: #898F9C;
	font-size: 13px;
}

.form_wrap ul li {
	margin-bottom: 5px;
	list-style: none;
}

.form_wrap .form_dl {
	box-sizing: border-box;
	width: 100%;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
	border-top: 1px solid #898F9C;
	border-right: 1px solid #898F9C;
	border-left: 1px solid #898F9C;
	color: #898F9C;
}

.form_dl input {
	width: 100%;
	font-size: 13px;
}

.form_dl textarea {
	width: 100%;
	height: 150px;
	padding-top: 5px;
	padding-left: 5px;
	font-size: 13px;
}

.form_dl dl {
	display: table;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 1px solid #898F9C;
	color: #898F9C;
	font-size: 14px;
}

.form_dl dl .name_1 {
	display: table-cell;
	position: relative;
	width: 35%;
	background-color: #ECEDE5;
	vertical-align: middle;
}

.form_dl dl dt p {
	padding-left: 10px;
}

.form_dl dl dt span {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 48%;
	right: -6px;
	padding-top: 0.05vw;
	padding-right: 0.3vw;
	padding-bottom: 0.05vw;
	padding-left: 0.3vw;
	transform: translate(-50%, -50%);
	background-color: #898F9C;
	color: #fff;
	font-size: 10px;
}

.form_dl dl .name_2 {
	display: table-cell;
	width: 65%;
	padding-top: 20px;
	padding-bottom: 20px;
	vertical-align: middle;
}

.form_dl dl .file {
	display: table-cell;
	width: 65%;
	padding-top: 20px;
	padding-bottom: 20px;
	vertical-align: middle;
}

.file input {
	width: 100%;
	padding-left: 5px;
	border: none;
	font-size: 13px;
}

.file_come {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	font-size: 10px;
}

#clear_1,
#clear_2,
#clear_3 {
	display: none;
}

.form_dl dl dd div {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

.file_box {
	position: relative;
	width: 100%;
	margin-bottom: 5px;
}

.file_box .clear_box {
	position: relative;
	width: 80px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

.file_box .clear_box input {
	box-sizing: border-box;
	height: 15px;
	border: none;
	border-radius: 4px;
	background-image: none;
	background-color: #fff;
	color: #508FFF;
	font-size: 12px;
	text-align: left;
}

.form_dl dl .dl_in1 {
	display: table-cell;
	position: relative;
	width: 35%;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ECEDE5;
	vertical-align: top;
}

.form_dl dl .dl_in1 span {
	position: absolute;
	top: 30px;
	right: -6px;
	padding-top: 0.05vw;
	padding-right: 0.3vw;
	padding-bottom: 0.05vw;
	padding-left: 0.3vw;
	background-color: #898F9C;
	color: #fff;
	font-size: 10px;
}

.form_dl dl dt .nni {
	position: absolute;
	top: 30px;
	right: -6px;
	padding-top: 0.05vw;
	padding-right: 0.3vw;
	padding-bottom: 0.05vw;
	padding-left: 0.3vw;
	background-color: #B4B4B4;
	color: #fff;
	font-size: 10px;
}

.form_dl dl .dl_in2 {
	display: table-cell;
	width: 65%;
	padding-top: 20px;
	padding-bottom: 20px;
	vertical-align: top;
}

.drop {
	margin-bottom: 10px;
}

.drop select {
	box-sizing: border-box;
	height: 33px;
	font-size: 13px;
	line-height: 1.428571429;
	vertical-align: middle;
}

.form_dl .protect {
	box-sizing: border-box;
	display: table;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	border-bottom: 1px solid #898F9C;
	font-size: 14px;
}

.form_dl .protect div {
	display: table-cell;
}

.protect_left {
	position: relative;
	width: 230px;
}

.protect_left span {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 48%;
	right: -6px;
	padding-top: 0.05vw;
	padding-right: 0.3vw;
	padding-bottom: 0.05vw;
	padding-left: 0.3vw;
	transform: translate(-50%, -50%);
	background-color: #898F9C;
	color: #fff;
	font-size: 10px;
}

.protect_right {}

.protect_right input {
	width: 13px;
	height: 13px;
}

.custom-wpcf7c-confirmed .form_wrap .form_dl::before {
	content: "入力内容をご確認ください。";
	line-height: 2.44;
	padding-left: 0.7rem;
}

:is(.form_dl dl .name_2,
	.form_dl dl .dl_in2,
	.form_dl dl .file,
	.form_dl .protect):has([readonly]) {
	background: hsla(0, 0%, 96%, 1);
}


.error2 {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

.wpcf7 .wpcf7-response-output {
	border: 0px solid #fff !important;
	color: #ff0000 !important;
	text-align: center !important;
}

.wpcf7 .wpcf7-validation-errors {
	border: 0px solid #fff !important;
	color: #ff0000 !important;
	text-align: center !important;
}

.wpcf7 .wpcf7-acceptance-missing {
	border: 0px solid #fff !important;
	color: #ff0000 !important;
	text-align: center !important;
}

.wpcf7 .wpcf7-mail-sent-ok {
	display: none !important;
	border: 0px solid #fff !important;
}

.btn_box {
	width: 350px;
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: -40px;
	margin-left: auto;
}

.btn_box .btn1 {
	width: 170px;
	margin-right: auto;
	margin-left: auto;
}

.btn_box .btn1 input {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	width: 170px;
	height: 40px;
	margin-bottom: 20px;
	border-style: none;
	background-color: #898F9C;
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
}

.btn_box .btn2 {
	width: 140px;
	float: left;
}

.btn_box .btn2 input {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	width: 140px;
	height: 40px;
	margin-bottom: 20px;
	border-style: none;
	background-color: #3F3F3F;
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
}

.btn_box .btn3 {
	width: 170px;
	margin-left: 40px;
	float: left;
}

.btn_box .btn3 input {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	width: 170px;
	height: 40px;
	margin-bottom: 20px;
	border-style: none;
	background-color: #898F9C;
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
}


/* サンクスページの設定 */
.thanks {
	box-sizing: border-box;
	width: 100%;
	min-height: 43vh;
	padding-top: 80px;
	padding-bottom: 80px;
	border: 1px solid #898F9C;
	color: #898F9C;
}

.thanks h2 {
	padding-bottom: 40px;
	font-weight: 600;
	font-size: 25px;
	text-align: center;
}

.thanks p {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	font-size: 14px;
	line-height: 30px;
}

.thanks ul {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
	font-size: 14px;
}

.thanks ul li {
	padding-bottom: 6px;
}

/* ブログの設定 */
.blog {
	box-sizing: border-box;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #898F9C;
	color: #898F9C;
}

.blog_logo {
	margin-bottom: 40px;
	padding-top: 20px;
	text-align: center;
}

.blog h2 {
	width: 90%;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	padding-bottom: 6px;
	border-bottom: 1px dotted #898F9C;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}

.blog_cate {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

.blog_cate h3 {
	float: left;
}

.blog_cate h3:first-child {
	font-size: 15px;
}

.blog_cate .notice {
	width: 70px;
	height: 24px;
	margin-left: 10px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #0E224B;
	color: #fff;
	font-size: 11px;
	text-align: center;
}

.blog_cate .event {
	width: 70px;
	height: 24px;
	margin-left: 10px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #720F72;
	color: #fff;
	font-size: 11px;
	text-align: center;
}

.blog_cate .popup {
	width: 70px;
	height: 24px;
	margin-left: 10px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #1A72A8;
	color: #fff;
	font-size: 11px;
	text-align: center;
}

.blog_cate .sale {
	width: 70px;
	height: 24px;
	margin-left: 10px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #9B7A1E;
	color: #fff;
	font-size: 11px;
	text-align: center;
}

.contents {
	width: 90%;
	min-height: 43vh;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
	font-size: 14px;
	line-height: 30px;
}

.contents img {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.contents a {
	border-bottom: 1px solid #508FFF;
	color: #508FFF;
}

.contents a:hover {
	color: #508FFF;
	opacity: 0.5;
}

.next_prev {
	width: 300px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 100px;
	padding-bottom: 60px;
	font-size: 14px;
}

.next_prev a {
	width: 150px;
	float: left;
}

.next_prev a:first-child {
	text-align: left;
}

.next_prev a:last-child {
	text-align: right;
}

.next_prev a {
	color: #727272;
}

.next_prev a:hover {
	color: #727272;
	opacity: 0.5;
}

/* WordPress画像位置用のCSS */
img.alignright {
	display: block;
	margin: 0 0 0 auto;
}

img.alignleft {
	display: block;
	margin: 0 auto 0 0;
}

img.aligncenter {
	display: block;
	margin: 0 auto;
}

.blog_all {
	width: 100%;
	min-height: 43vh;
	margin-right: auto;
	margin-left: auto;
	background-color: rgba(229, 232, 236, 0.5);
	color: #898F9C;
}

.blog_all h2 {
	color: #727272;
	font-size: 28px;
}

.blog_all h3 {
	margin-top: 10px;
	margin-bottom: 30px;
	color: #727272;
	font-size: 14px;
}

.blog_all a {
	display: block;
	color: #508FFF;
}

.blog_all a:hover {
	color: #508FFF;
	opacity: 0.5;
}

.no_artical {
	width: 80%;
	margin-right: auto;
	margin-bottom: 180px;
	margin-left: auto;
	padding-bottom: 20px;
	border-bottom: 1px dotted #898F9C;
	font-size: 14px;
}

.blog_all dl {
	width: 80%;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	padding-bottom: 20px;
	border-bottom: 1px dotted #898F9C;
}

.line {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 20px;
	border-top: 1px dotted #898F9C;
}

.blog_all dl dt {
	margin-bottom: 5px;
	font-size: 14px;
}

.blog_all dl dt div {
	float: left;
}

.blog_all dl dt .notice {
	width: 70px;
	height: 24px;
	margin-left: 10px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #0E224B;
	color: #fff;
	font-size: 11px;
	text-align: center;
}

.blog_all dl dt .event {
	width: 70px;
	height: 24px;
	margin-left: 10px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #720F72;
	color: #fff;
	font-size: 11px;
	text-align: center;
}

.blog_all dl dt .popup {
	width: 70px;
	height: 24px;
	margin-left: 10px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #1A72A8;
	color: #fff;
	font-size: 11px;
	text-align: center;
}

.blog_all dl dt .sale {
	width: 70px;
	height: 24px;
	margin-left: 10px;
	padding-right: 4px;
	padding-left: 4px;
	background-color: #9B7A1E;
	color: #fff;
	font-size: 11px;
	text-align: center;
}

.blog_all dl dd {
	font-size: 15px;
	line-height: 30px;
}

.categoly {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 40px;
}

.categoly_box {
	margin-top: 25px;
}

.categoly_box a {
	color: #898F9C;
}

.categoly_box a:hover {
	color: #898F9C;
}

.categoly_box .right {
	margin-right: 1%;
}

.categoly_box div {
	width: 24%;
	float: left;
}

.categoly_box p {
	box-sizing: border-box;
	width: 100%;
	padding-top: 7px;
	padding-bottom: 7px;
	border: 1px solid #898F9C;
	font-size: 13px;
	text-align: center;
}

/*--------------------------------------
プライバシーポリシー設定
--------------------------------------*/
.privacy {
	box-sizing: border-box;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
	padding-bottom: 60px;
	border: 1px solid #898F9C;
}

.privacy_box {
	width: 85%;
	margin-right: auto;
	margin-left: auto;
}

.privacy_box .use span {
	display: inline;
}

.privacy_box h2 {
	color: #727272;
	font-size: 30px;
}

.privacy_box h3 {
	margin-bottom: 40px;
	color: #727272;
	font-size: 16px;
}

.privacy_box h4 {
	margin-top: 30px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #707070;
	color: #727272;
	font-weight: 600;
	font-size: 18px;
}

.privacy_box p {
	color: #727272;
	font-size: 14px;
	line-height: 30px;
}

.privacy_box span {
	display: block;
}

.privacy_mini {
	width: 100%;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #F2F4F6;
}

.privacy_mini_box {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

.privacy_mini_box h5 {
	width: 260px;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
	padding-bottom: 4px;
	border-bottom: 1px solid #707070;
	color: #727272;
	font-weight: 600;
	font-size: 23px;
	text-align: center;
}

.privacy_mini_box h6 {
	margin-top: 30px;
	margin-bottom: 10px;
	color: #727272;
	font-weight: 600;
	font-size: 18px;
}

.privacy_mini_box p {
	color: #727272;
	font-size: 14px;
	line-height: 30px;
}

/*--------------------------------------
サイトマップ設定
--------------------------------------*/
.site_map {
	box-sizing: border-box;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
	padding-bottom: 60px;
	border: 1px solid #898F9C;
}

.site_map a {
	display: block;
	color: #727272;
}

.site_map a:hover {
	color: #727272;
	opacity: 0.5;
}

.site_map_wrap {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}

.site_map_wrap h2 {
	color: #727272;
	font-size: 30px;
}

.site_map_wrap h3 {
	margin-bottom: 40px;
	color: #727272;
	font-size: 16px;
}

.site_map_box {
	margin-bottom: 20px;
}

.site_map_box h4 {
	color: #727272;
	font-weight: 600;
	font-size: 17px;
}

.site_map_list {
	margin-top: 20px;
	padding-bottom: 10px;
	padding-left: 5%;
}

.site_map_list h5 {
	margin-right: 20px;
	float: left;
}

.site_map_box h6 {
	color: #727272;
	font-size: 17px;
}

/*--------------------------------------
リクルート設定
--------------------------------------*/
.recruit {
	padding-top: 40px;
	background-color: #F2F4F6;
}

.recruit_wrap {}

.recruit .common_h2 {
	color: #898F9C;
}

.recruit .common_h3 {
	padding-bottom: 40px;
	color: #898F9C;
	font-size: 16px;
}

.recruit h4 {
	padding-bottom: 10px;
	color: #898F9C;
	font-size: 16px;
}

.recruit_wrap {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

.hyou {
	box-sizing: border-box;
	margin-bottom: 40px;
	border-top: 1px solid #0E2148;
}

.hyou dl {
	box-sizing: border-box;
	display: table;
	border-right: 1px solid #0E2148;
	border-bottom: 1px solid #0E2148;
	border-left: 1px solid #0E2148;
	color: #898F9C;
	font-size: 14px;
}

.hyou dl dt {
	box-sizing: border-box;
	display: table-cell;
	width: 180px;
	padding-top: 30px;
	padding-bottom: 30px;
	border-right: 1px solid #0E2148;
	background-color: #F7F5E5;
}

.hyou dl dt p {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.hyou dl dd {
	display: table-cell;
	width: 80%;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #fff;
}

.hyou dl dd div {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

.hyou dl dd div p {
	margin-bottom: 10px;
}

.how {
	width: 100%;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
}

.how h5 {
	margin-bottom: 20px;
	color: #898F9C;
	font-weight: 600;
	font-size: 17px;
}

.how_box {
	margin-bottom: 10px;
	color: #898F9C;
	font-size: 14px;
}

.how_box p {
	line-height: 25px;
}

.how_box p span {
	margin-left: 20px;
}

.sankaku {
	width: 30px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
}

.entry {
	padding-top: 60px;
	padding-bottom: 60px;
}

.entry h6 {
	width: 200px;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 1px solid #898F9C;
	color: #898F9C;
	font-size: 18px;
}

.entry .indeed {
	width: 300px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
}

/*--------------------------------------
FQA設定
--------------------------------------*/
.fqa {
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #ECEDE5;
}

.fqa_wrap {}

.fqa .common_h2 {
	color: #898F9C;
}

.fqa .common_h3 {
	padding-bottom: 40px;
	color: #898F9C;
	font-size: 16px;
}

.fqa h4 {
	margin-bottom: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #0E224B;
	color: #fff;
	font-size: 16px;
	text-align: center;
}

/*アコーディオン全体*/
.accordion-area {
	width: 90%;
	max-width: 900px;
	margin-right: auto;
	margin-bottom: 60px;
	margin-left: auto;
	list-style: none;
}

.accordion-area li {
	margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
	background-color: #fff;
}

/*アコーディオンタイトル*/
.accordion-area .title {
	position: relative;
	padding: 3% 3% 3% 50px;
	font-weight: normal;
	font-size: 16px;
	/*+マークの位置基準とするためrelative指定*/
	cursor: pointer;
	transition: all .5s ease;
}

/*アイコンの＋と×*/
.accordion-area .title::before,
.accordion-area .title::after {
	position: absolute;
	width: 15px;
	height: 2px;
	background-color: #333;
	content: '';

}

.accordion-area .title::before {
	top: 48%;
	left: 15px;
	transform: rotate(0deg);

}

.accordion-area .title::after {
	top: 48%;
	left: 15px;
	transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.accordion-area .title.close::before {
	transform: rotate(45deg);
}

.accordion-area .title.close::after {
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box_cont {
	display: none;
	margin: 0 3% 3% 3%;
	padding: 3%;
	/*はじめは非表示*/
	background: #f3f3f3;
	background-color: #F2F4F6;
	font-size: 14px;
}

.box_cont p {
	margin-bottom: 10px;
}

.box_cont p span {
	display: block;
}

/*--------------------------------------
パンクズ設定
--------------------------------------*/
.pan {
	width: 90%;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	padding-top: 30px;
}

.pan p {
	display: inline;
	margin-right: 5px;
	font-size: 12px;
}

.pan a {
	display: inline;
	color: #508FFF;
}

.pan a:hover {
	color: #508FFF;
	opacity: 0.5;
}

/*--------------------------------------
ページネーション設定
--------------------------------------*/
.page_nation2 {
	position: relative;
	width: 80%;
	height: 50px;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 50px;
}

.page_nation2 div {
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.page_nation2 a {
	display: block;
	background-color: #EFEFEF;
	color: #898989;
}

.page_nation2 a:hover {
	background-color: #EFEFEF;
	color: #898989;
	opacity: 0.5;
}

.page_nation2 .current {
	width: 30px;
	height: 30px;
	margin-right: 5px;
	margin-left: 5px;
	float: left;
	border-radius: 30px;
	background-color: #0E224B;
	color: #fff;
	line-height: 30px;
	text-align: center;
}

.page_nation2 .page-numbers {
	width: 30px;
	height: 30px;
	margin-right: 5px;
	margin-left: 5px;
	float: left;
	border-radius: 30px;
	line-height: 30px;
	text-align: center;
}

.page_nation2 .next,
.page_nation2 .prev {
	display: none;
}

/*--------------------------------------
ページネーション設定
--------------------------------------*/
.pagination {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	padding-top: 80px;
	clear: both;
	font-size: 13px;
}

.pagination span,
.pagination a {
	display: block;
	width: auto;
	margin: 4px;
	padding: 8px;
	border: 1px solid #000;
	background-color: #fff;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
}

/* ページ番号 */
.pagination .pager {
	width: 32px;
}

/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current {
	border-color: #000;
	background-color: #000;
	color: #fff;
}

/* 前へ */
.pagination a.prev {
	margin-right: 16px;
}

/* 次へ */
.pagination a.next {
	margin-left: 16px;
}

/* 最初へ */
.pagination a.first {}

/* 最後へ */
.pagination a.last {}

/* Page x / y */
.pagination span.page_num {
	display: none;
}

/*--------------------------------------
ショップリスト設定
--------------------------------------*/
.shop {
	display: block;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background-color: rgba(14, 34, 75, 0.05);
}

.shop ul li {
  line-height: 1.88em;
}

.shop_1 {
	display: block;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
	padding-bottom: 50px;
	color: #898F9C;
}

.shop_1 h3 {
	margin-bottom: 30px;
}

.chizu {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	transform: translate(-50%, -50%);
	border: none;
	outline: none;
}

.chizu h2,
.chizu h3 {
	color: #898F9C;
}

*:focus {
	outline: none;
}

.shop_1_box {
	display: block;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
}

.shop_1_box h4 {
	width: 100%;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #0E224B;
	color: #fff;
	font-size: 18px;
	letter-spacing: 3px;
	text-align: center;
}

.shop_1_box ul {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.ul_top {
	padding-top: 5px;
}

.ul_bottom {
	padding-bottom: 0px;
}

.shop_1_box ul {
	width: 100%;
}

.shop_1_box ul li {
	display: table-cell;
	font-size: 15px;
}

.shop_1_box ul li:nth-child(1) {
	width: 28%;
	padding-right: 20px;
}

.shop_1_box ul li:nth-child(2) {
	width: 140px;
	padding-right: 10px;
}

.shop_1_box ul li:nth-child(3) {
	width: 155px;
	padding-right: 0px;
}

.shop_1_box .li_big li:nth-child(2) {
	width: 180px;

}

.area {
	display: block;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	color: #898F9C;
}

.area_box {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	color: #898F9C;
}

.area_box h2 {
	display: block;
	color: #0E224B;
	font-weight: 600;
	font-size: 60px;
}

.area_box h3 {
	display: block;
	margin-top: 50px;
	padding-bottom: 11px;
	border-bottom: 1px solid #0E2148;
	color: #0E224B;
	font-size: 25px;
}

.map_img {
	display: block;
	width: 100%;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	background-color: #fff;
}

.map_img img {
	display: block;
}

.area_box_10 {
	margin-top: 20px;
}

.area_box_10 div {
	width: 49%;
	margin-right: auto;
	margin-left: auto;
	float: left;
}

.area_box_10 .area_box_text {
	color: #0E224B;
	font-size: 14px;
}

.area_box_10 .area_box_text .fz-xs_pc {
	font-size: 13px;
}

.area_box_10 .area_box_text .ul_1 {
	padding-bottom: 10px;
	border-bottom: 1px solid #0E2148;
}

.area_box_10 .area_box_text .ul_2 {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #0E2148;
}

.area_box_10 .area_box_text li {
	padding-bottom: 3px;
}

.area_box_10 .area_box_ifame {
	margin-left: 2%;
}

.area_box_10 .area_box_ifame iframe {
	width: 100%;
	height: 320px;
	margin-right: auto;
	margin-left: auto;
}

.under_line a {
	border-bottom: 1px solid #508FFF;
	color: #508FFF;
}

.under_line a:hover {
	color: #508FFF;
	opacity: 0.5;
}

/*--------------------------------------
インスタ設定
--------------------------------------*/
.in_box {
	display: block;
	position: relative;
	width: 100%;
	margin-top: 50px;
}

.in_box_kitty {
	display: block;
	position: relative;
	width: 70%;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 70px;
}

.in_box h2,
.in_box_kitty h2 {
	margin-top: 10px;
	margin-bottom: 40px;
	color: #898F9C;
	font-weight: 600;
	font-size: 25px;
	text-align: center;
}

.in_box_img {
	text-align: center;
}

.insta {
	width: 100%;
}

.insta ul {}

.insta li {
	position: relative;
	width: 24.17%;
	height: 10.5vw;
	margin-top: 1.1%;
	float: left;
	overflow: hidden;
	list-style: none;
}

@media screen and (max-width: 1151px) {
	.insta li {
		position: relative;
		width: 24.17%;
		height: 20.5vw;
		margin-top: 1.1%;
		float: left;
		overflow: hidden;
		list-style: none;
	}
}

.yuta_insta1,
.yuta_insta2,
.yuta_insta3,
.yuta_insta5,
.yuta_insta6,
.yuta_insta7 {
	margin-right: 1.1%;
}

.yuta_insta9 {
	display: none;
}

.insta img {
	display: block;
	width: 100%;
	height: 10.5vw;
	object-fit: cover;
}

@media screen and (max-width: 1151px) {
	.insta img {
		display: block;
		width: 100%;
		height: 20.5vw;
		object-fit: cover;
	}
}

.insta li a {
	display: block;
	position: relative;
}

.insta li a .like {
	display: none;
	/* 
position: absolute;
width: 30px;
right: 10px;
bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
color: #fff;
opacity: 0.6;
text-shadow: 0 0 7px #000;
*/
}


/*--------------------------------------
キティ設定
--------------------------------------*/
.kitty_header {
	position: relative;
	width: 100%;
	height: 80px;
}

.kitty_header a {
	display: block;
	color: #8F7C44;
}

.kitty_header a:hover {
	color: #8F7C44;
	opacity: 0.5;
}

.kitty_logo {
	width: 350px;
	margin-left: 3%;
	padding-top: 16px;
}

.kitty_body {
	width: 100%;
	background-image: url(img/kitty/kitty_1.png);
	background-size: contain;
	background-repeat: repeat-y;
}

.kitty_body_2 {
	width: 100%;
	padding-bottom: 100px;
	background-image: url(img/kitty/kitty_1.png);
	background-size: contain;
	background-repeat: repeat-y;
}

.right_menu {
	position: absolute;
	top: 0px;
	right: 20px;
}

.right_menu div {
	float: left;
}

.h_text_0 {
	width: 200px;
	margin-top: 15px;
	margin-right: 30px;
}

.h_text_1 {
	width: 95px;
	margin-top: 32px;
	margin-right: 30px;
}

.h_text_2 {
	width: 150px;
	margin-top: 32px;
	margin-right: 30px;
}

.btn_box_h {
	margin-top: 7px;
}

.right_menu p {
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	border: 1px #8F7C44 solid;
	color: #8F7C44;
	font-size: 14px;
	text-align: center;
}

.p_bottom {
	margin-top: 5px;
}

.height {
	width: 100%;
	height: 40px;
}

.kitty_wrap {
	position: relative;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	background-color: #fff;
}

.kitty_wrap a {
	display: block;
	z-index: 10;
	color: #fff;
}

.kitty_wrap a:hover {
	z-index: 10;
	color: #fff;
	opacity: 0.5;
}

.heart_1 {
	z-index: 0;
	position: absolute;
	top: 20px;
}

.kitty_1 {
	z-index: 10;
	text-align: center;
}

.kitty_1 h2 {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
}

.kitty_1 h3 {
	padding-top: 20px;
	font-size: 19px;
	line-height: 35px;
}

.kitty_1 h3 span {
	display: block;
}

.kitty_1 h4 {
	width: 50%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
}

.kitty_news {
	z-index: 10;
	position: relative;
	width: 850px;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
}

.kitty_news a {
	display: inline;
	color: #0042D6;
}

.kitty_news a:hover {
	display: inline;
	color: #0042D6;
}

.kitty_news_box {
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	position: absolute;
	top: 110px;
	left: 50%;
	width: 80%;
	height: 250px;
	margin-right: auto;
	margin-left: auto;
	overflow-y: scroll;
	transform: translateX(-50%);
	font-size: 18px;
}

.kitty_news_box dl {
	display: table;
	width: 100%;
	margin-bottom: 15px;
}

.kitty_news_box dl dt {
	display: table-cell;
	width: 20%;
}

.kitty_news_box dl dd {
	display: table-cell;
	width: 80%;
	line-height: 30px;
}

.kitty_news_box dl dd span {
	display: block;
}

.kitty_items {
	position: relative;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
}

.heart_2 {
	z-index: 0;
	position: absolute;
	top: 20px;
	width: 900px;
}

.kitty_items h2 {
	margin-top: 60px;
	text-align: center;
}

.main_item {
	position: relative;
	width: 700px;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
}

.main_item:not(.first-of-type) {
	margin-top: 80px;
}

.main_item>.main_image {
	border: 3px solid hsla(0, 0%, 79%, 1);
	border-radius: 25px;
}

.margint {
	margin-top: 80px;
}

.kitty_girl {
	z-index: 20;
	position: absolute;
	bottom: -65px;
	left: -150px;
	width: 220px;
}

.kitty_men {
	z-index: 20;
	position: absolute;
	right: -150px;
	bottom: -55px;
	width: 220px;
}

.kitty_text {
	position: relative;
	width: 75%;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	color: #222336;
	font-size: 15px;
	font-size: clamp(14px, calc(14px + ((1vw - 3.6px) * 0.1563)), 15px);
}

.kitty_text>.kitty_title {
	font-weight: 600;
	font-size: 24px;
	font-size: clamp(17.4px, calc(17.4px + ((1vw - 3.6px) * 1.03125)), 24px);
	text-align: center;
}

.kitty_text>p {
	margin-top: 1.25em;
}

.kitty_text>p>span {
	display: block;
}

.bezyu {
	position: absolute;
	top: 0px;
	left: 160px;
}

.kon {
	position: absolute;
	top: 0px;
	left: 330px;
}

.white {
	position: absolute;
	top: 0px;
	right: 160px;
}

.kon_shoes {
	position: absolute;
	top: 0px;
	left: 230px;
}

.bezyu_shoes {
	position: absolute;
	top: 0px;
	right: 230px;
}

.annai {
	width: 600px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	font-size: 13px;
}

.kitty_btn {
	z-index: 100;
	width: 210px;
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #222336;
	color: #fff;
	font-size: 15px;
	text-align: center;
}

.sub_item {
	z-index: 100;
	position: relative;
	width: 100%;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
}

.sub_item .box_sub {
	z-index: 100;
	position: relative;
	width: 48%;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	float: left;
}

.sub_item .box_sub_right {
	margin-right: 4%;
}

.sub_item h4 {
	margin-top: 10px;
	margin-bottom: 15px;
	color: #222336;
	font-weight: 600;
	font-size: 22px;
	line-height: 30px;
	text-align: center;
}

.sub_item h4 span {
	display: block;
}

.kyara {
	z-index: 0;
	position: relative;
	width: 100%;
	width: 100%;
	margin-top: 80px;
	margin-right: auto;
	margin-right: auto;
	margin-left: auto;
	margin-left: auto;
	font-size: 17px;
	text-align: center;
}

.kyara .kyara_img {
	z-index: 0;
	position: relative;
	top: -20px;
	left: 40px;
	width: 200px;
	margin-right: auto;
	margin-left: auto;
}

.heart_3 {
	z-index: -10;
	position: absolute;
	bottom: -250px;
}

.kitty_aikotoba {
	z-index: 10;
	position: relative;
	width: 600px;
	margin-top: 80px;
	margin-right: auto;
	margin-left: auto;
}

.kitty_aikotoba div {
	display: block;
}

.kitty_aikotoba_1 {
	margin-bottom: 20px;
}

.kitty_aikotoba a:hover {
	opacity: 1;
}

.heart_4 {
	z-index: 0;
	position: absolute;
	top: 0px;
}

.footer_kitty {
	position: relative;
	padding-bottom: 10px;
	font-size: 12px;
	text-align: center;
}

.footer_logo {
	width: 200px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}

.kitty_btn_2 {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 0px;
}

.kitty_btn_2 a {
	display: block;
}

.kitty_btn_2 a:hover {
	opacity: 0.5;
}

.kitty_detail {
	width: 75%;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 35px;
	padding-bottom: 20px;
	border-radius: 10px;
	background-color: #F8F8F8;
}

.kitty_detail_wrap {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.kitty_detail_wrap dl {
	display: table;
	width: 100%;
	margin-bottom: 15px;
	color: #707070;
	font-size: 15px;
}

.kitty_detail_wrap dl dt {
	display: table-cell;
	width: 30%;
	font-weight: 600;
	vertical-align: top;
}

.kitty_detail_wrap dl dd {
	display: table-cell;
	width: 70%;
	vertical-align: top;
}

.kitty_detail_wrap dl dd span {
	display: block;
	font-size: 12px;
}

.download_1 {
	margin-top: 60px;
	margin-bottom: 40px;
}

.download_2 {
	margin-top: 0px;
	padding-bottom: 50px;
}

/*
Colorbox Core Style:
The following CSS is consistent between example themes and should not be altered.
*/
.movie_list_wrap {
	width: 100%;
	height: 100%;
	overflow: visible;
	background-color: #000;
}

#movie_test video {
	display: block;
	width: 70vw;
	height: auto;
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
	-webkit-transform: translate3d(0, 0, 0);
	z-index: 9998;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	overflow: visible;
}

#cboxWrapper {
	max-width: none;
	overflow: visible;
}

#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: visible;
}

#cboxMiddleLeft,
#cboxBottomLeft {
	clear: left;
}

#cboxContent {
	position: relative;
}

#cboxLoadedContent {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}

#cboxTitle {
	margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	cursor: pointer;
}

.cboxPhoto {
	-ms-interpolation-mode: bicubic;
	display: block;
	max-width: none;
	margin: auto;
	float: left;
	border: 0;
}

.cboxIframe {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

/* 
User Style:
Change the following styles to modify the appearance of Colorbox.  They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
	width: 100%;
	height: 100%;
	overflow: visible;
	background: #000;
	filter: alpha(opacity=90);
	opacity: 0.9;
}

#colorbox {
	overflow: visible;
	outline: 0;
}

#cboxTopLeft {
	width: 14px;
	height: 14px;
	background: url(images/controls.png) no-repeat 0 0;
}

#cboxTopCenter {
	height: 14px;
	background: url(images/border.png) repeat-x top left;
}

#cboxTopRight {
	z-index: 9999;
	width: 14px;
	height: 14px;
	overflow: visible;
	background: url(/controls.png) no-repeat -36px 0;
	background-color: #000;
}

#cboxBottomLeft {
	width: 14px;
	height: 43px;
	background: url(/controls.png) no-repeat 0 -32px;
}

#cboxBottomCenter {
	display: none;
	height: 43px;
	background: url(/border.png) repeat-x bottom left;
}

#cboxBottomRight {
	width: 14px;
	height: 43px;
	background: url(/controls.png) no-repeat -36px -32px;
}

#cboxMiddleLeft {
	width: 14px;
	background: url(/controls.png) repeat-y -175px 0;
}

#cboxMiddleRight {
	width: 14px;
	background: url(/controls.png) repeat-y -211px 0;
}

#cboxContent {
	/*background:#fff;*/
	overflow: visible;
}

.cboxIframe {
	overflow: visible;
	background: #fff;
}

#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}

#cboxLoadedContent {
	margin-bottom: 5px;
}

#cboxLoadingOverlay {
	background: url(images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
	background: url(images/loading.gif) no-repeat center center;
}

#cboxTitle {
	position: absolute;
	bottom: -25px;
	left: 0;
	width: 100%;
	overflow: visible;
	color: #7C7C7C;
	font-weight: bold;
	text-align: center;
}

#cboxCurrent {
	display: none !important;
	position: absolute;
	bottom: -25px;
	left: 58px;
	overflow: visible;
	color: #7C7C7C;
	font-weight: bold;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
	display: block !important;
	z-index: 9999999999;
	position: absolute;
	bottom: -29px;
	width: 23px;
	height: 23px;
	margin: 0;
	padding: 0;
	overflow: visible;
	border: 0;
	background: url(/controls.png) no-repeat 0px 0px;
	text-indent: -9999px;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
	outline: 0;
}

#cboxPrevious {
	left: 0px;
	background-position: 0px 0px;
}

/*#cboxPrevious:hover{background-position:-51px 0px;}*/
#cboxNext {
	left: 27px;
	background-position: -25px 0px;
}

/*#cboxNext:hover{background-position:-75px 0px;}*/
#cboxClose {
	z-index: 999999;
	top: 0px;
	right: 1px;
	overflow: visible;
	background: url(images/controls.png) no-repeat -25px 0;
	background-color: #000;
}

/*#cboxClose:hover{background-position:-100px 0px;}*/
.cboxSlideshow_on #cboxSlideshow {
	right: 27px;
	background-position: -125px 0px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
	background-position: -150px 0px;
}

.cboxSlideshow_off #cboxSlideshow {
	right: 27px;
	background-position: -150px -25px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
	background-position: -125px 0px;
}

#my_close {
	background-color: #fff;
}

.pcnone {
	display: none;
}

.none {
	display: none;
}

.c-error,
.c-error a {
	color: hsl(13, 99%, 43%);
}