@charset "utf-8";
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust:none;
}

body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	border: 0 none;
	margin: 0;
	padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
/*--[Win Firefox]ロールオーバー時に、ボタン左に点線枠（focus）が入る現象についての対策--*/
:focus
{?moz-outline-style:none;}

/*--[Mac Firefox]ロールオーバー時に、ボタン左に点線枠（focus）が入る現象についての対策--*/
a { outline:none;}
a{
	text-decoration:none;
	color: #a82d42;
}
a:hover{
	text-decoration:underline;
}
hr {
	clear: both;
	border: solid 1px #fff;
	margin: 15px 0;
}
br {
	letter-spacing: 0;
}
img {
	border: none;
	vertical-align: bottom;
}

.clearfix:after {
	content: "."; /* 新しい要素を作る */
	display: block; /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
	overflow:hidden;
	font-size:0.1em;
	line-height:0;
}


/*Flex Box*/
.flex {
	clear: both;
	display: flex;
	flex-wrap: wrap;/*親の横幅以上は折り返す*/
}
.flex-item-center {
	align-items: center;/*縦中央揃え*/
}
.justify-content-space-between {
	justify-content: space-between;
}

.flex-item {
}
.flex-item img {
	max-width: 100%;
	height: auto;
}
.flex-2 .flex-item {
	width: 48%;
	margin-right: 4%;
}
.flex-2 .flex-item:nth-of-type(even) {
	margin-right: 0;
}
.flex-2 .flex-item:nth-last-of-type(-n+2) {
}
.flex-3 .flex-item {
	width: 30%;
	margin-right: 5%;
}
.flex-3 .flex-item:nth-of-type(3n) {
	margin-right: 0;
}
.flex-3 .flex-item:nth-last-of-type(-n+3) {
}
.flex-4 .flex-item {
	width: 22.0%;
	margin-right: 4%;
}
.flex-4 .flex-item:nth-of-type(4n) {
	margin-right: 0;
}
.flex-4 .flex-item:nth-last-of-type(-n+4) {
}
.flex-5 .flex-item {
	width: 18.4%;
	margin-right: 2%;
}

.order-01,
.pc-order-01{
	order: 1;
}
.order-02,
.pc-order-02{
	order: 2;
}
.order-03,
.pc-order-03{
	order: 3;
}
.order-04,
.pc-order-04{
	order: 4;
}
.order-05,
.pc-order-05{
	order: 5;
}
.order-06,
.pc-order-06{
	order: 6;
}
.order-07,
.pc-order-07{
	order: 7;
}
.order-08,
.pc-order-08{
	order: 8;
}
.order-09,
.pc-order-09{
	order: 9;
}
.order-10,
.pc-order-10{
	order: 10;
}
.order-11,
.pc-order-11{
	order: 11;
}
.order-12,
.pc-order-12{
	order: 12;
}

.none {
	display: none;
}
.shadow {
	box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
}
.marker{
	background: linear-gradient(transparent 75%,#E99480 75%);
	display: inline;
	padding: 10px 10px 0;
}


/*テキスト*/
.txtBold {
	font-weight: bold;
}
.txtLarge {
	font-size: 150%;
}
.txtSmall {
	font-size: 68.8%;
	line-height: 1.5;
}
.txtMid {
	font-size: 100%;
}
.txtXSmall {
	font-size: 75%;
	line-height: 1.35;
}
small{
	font-size: 50%;
}


/*テキストカラー*/
.txtGray {
	color: #bbb;
}
.txtGreen {
	color: #00716e;
}
.txtOrange{
	color:#f05328;
}
.txtBlue {
	color: #00A0E9;
}
.txtPink {
	color: #FFBFC6;
}
.txtRed {
	color: #C7000B;
}
.txtGold{
	color: #B5954A;
}


/*フォント*/
.txtMincho {
	font-family: ten-mincho, serif;
	font-weight: 400;
	font-style: normal;
}
/*フォント*/
@font-face {
font-family: "ipaexm";
src:url("../font/ipaexm.woff") format("woff");
}
.ipaexm{
	font-family: "ipaexm";
}



/*リストスタイル*/
.list {
	margin-left: 1.5em;
}
.list li {
	margin-bottom: 10px;
}
.list li:last-child {
	margin-bottom: 0;
}
.lstDisc {
	/*黒丸*/
	list-style-type: disc;
}
.lstNum {
	/*数字*/
	list-style-type: decimal;
}
.lstDecimal {
	/*数字*/
	list-style-type: decimal;
}
.lstCircle {
	/*白丸*/
	list-style-type: circle;
}
.lstSquare {
	/*黒四角*/
	list-style-type: square;
}
.lstAlp_L {
	/*大文字アルファベット*/
	list-style-type: upper-latin;
}
.lstNon {
	list-style-type: none !important;
	margin-left: 0;
}
.lstUpperRoman {
	/*大文字のローマ数字*/
	list-style-type: upper-roman;
}

.indent {
	margin-left: 2em;
}

/*左右中央寄せ（1）*/
.imgCenter,
.aligncenter {
	display: block;
	margin: 0 auto 20px;
}
.imgLeft,
.alignleft {
	float: left;
	margin: 0 20px 15px 0;
}
.imgRight,
.alignright {
	float: right;
	margin: 0 0 15px 20px;
}

/*左右中央寄せ（2）*/
.center {
	text-align: center;
}
.left,
.left th {
	text-align: left !important;
}
.right {
	text-align: right !important;
}

/*マージンリセット*/
.mRight0 {
	margin-right: 0 !important;
}
.mBottom0 {
	margin-bottom: 0 !important;
}


/*テーブル*/
table {
	border-collapse: collapse;
	border: none;
	margin-bottom: 2em;
	line-height: 1.7;
}

.table {
	box-sizing: border-box;
	border-collapse: collapse;
	font-size: 14px;
}
table th,
table td {
	border: solid 1px #ccc;
	text-align: left;
	padding: 8px 10px;
}
table th {
	background-color: #f1f1f1;
	font-weight: normal;
}
table td {
}
table td:nth-of-type(even){
}
table tr:last-of-type th,
table tr:last-of-type td {
	/*border-bottom: none;
	padding-bottom: 0;*/
}
table tr:nth-of-type(even) th {
}
table tr:nth-of-type(even) td:nth-of-type(even) {
}


/*全幅*/
.fullWidth {
	width: 100%;
}

/*改行しない*/
.nowrapTable th,
.nowrap {
	white-space: nowrap;
}


/*サイト構成*/
html {
	/* height: 100%; */
}
body{
	/* height: 100%; */
	color: #fff;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	font-family: "ipaexm";
	font-weight: 400;
	font-style: normal;
}

/*GoogleMapレスポンシブ対応*/
.gmap {
	clear: both;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*colorbox*/
#cboxContent {
	margin-top: 0 !important;
}
#cboxOverlay {
	background-color: rgba(255,255,255,0.8) !important;
}
#cboxLoadedContent {
	border: solid 5px #fff !important;
}

/*共通 トップページ*/
.inview-fade {
	opacity: 0;
	transition: 2.5s;/*スクロールインでフェードする時間*/
}
.inview-show{
	opacity: 1.0;
}



/*@media screen and (min-width: 1281px) {*/
@media screen and (min-width: 897px) {
/*画面幅が768px以上（PC）*/
/*.pc_only {
	display: block;
}*/
.sp_only {
	/*スマホでは非表示*/
	display: none !important;
}

body {
	position: relative;
}


}/*PC End*/





@media screen and (max-width: 896px) {
/*画面幅が767px以下（スマホ専用スタイル）*/
.pc_only {
	/*PC以外は非表示*/
	display: none !important;
}
.sp_only {
	display: block;
}

/*Flex Box*/
.mb-flex-1 .flex-item {
	width: 100% !important;
}
.mb-flex-1 .flex-item:last-of-type {
}
.mb-flex-2 .flex-item {
	width: 46% !important;
	margin-right: 7% !important;
}
.mb-flex-2 .flex-item:nth-of-type(even) {
	margin-right: 0 !important;
}
.mb-flex-3 .flex-item {
	width: 30%;
	margin-right: 5%;
}
.mb-flex-3 .flex-item:nth-of-type(3n) {
	margin-right: 0;
}
.mb-flex-3 .flex-item:nth-last-of-type(-n+3) {
}
.mb-flex-4 .flex-item {
	width: 23.5%;
	margin-right: 2%;
}
.mb-flex-4 .flex-item:nth-of-type(4n) {
	margin-right: 0;
}
.mb-flex-4 .flex-item:nth-last-of-type(-n+4) {
}

.mb-order-01{
	margin-right: 0;
	order: 1;
}
.mb-order-02{
	order: 2;
}
.mb-order-03{
	order: 3;
}
.mb-order-04{
	order: 4;
}
.mb-order-05{
	order: 5;
}
.mb-order-06{
	order: 6;
}
.mb-order-07{
	order: 7;
}
.mb-order-08{
	order: 8;
}
.mb-order-09{
	order: 9;
}
.mb-order-10{
	order: 10;
}

body{
	width: 100%;
	font-size: 13px;
}
a {
	-webkit-tap-highlight-color:rgba(82,27,96,0.4);
	cursor: pointer;
}
.blur {
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	-ms-filter: blur(8px);
	filter: blur(8px);
}

.imgLeft,
.imgRight,
.imgCenter,
.aligncenter,
.alignleft,
.alignright {
	clear: both;
	display: block;
	width: 100%;
	margin: 0 0 10px;
}



/*スライドテーブル*/
.mobileSlideBlock {
	display: block;
	overflow-x: auto;
	position: relative;
	width: 100%;
}
.mobileSlideBlock .box {
	min-width: 600px;
}

.blockTable,
.blockTable tbody,
.blockTable tr,
.blockTable th,
.blockTable td {
	display: block;
}





}/*スマホ End*/
