@charset "UTF-8";

/*================================================
 *  一般・共通設定
 ================================================*/

body {
	font-size:16px;
	font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Helvetica,sans-serif;
	color: #1e1e1e;
	text-align: justify;
	text-justify: inter-ideograph;
}

a,.linearAnime {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
a.underline {
	text-decoration: underline;
}
a:hover {
	opacity: 0.7;
}
a.underline:hover {
	opacity: 1;
	text-decoration: none;
}
@media screen and (min-width:900.1px) {
	a[href^="tel"] {
		pointer-events: none;
	}
}

img,svg {
	vertical-align: bottom;
}



/* position */
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}

/* sp/pcの切替 */
.sp,.sp_inline {
	display: none;
}

/*文字揃え*/
.ta-l {
	text-align: justify;
	text-justify: inter-ideograph;
}
.ta-r {
	text-align: right;
}
.ta-c {
	text-align: center;
}
.pcspText { /*PC：中央揃え・SP左揃え用*/
	text-align: center;
}


/*文字太さ*/
.fontThin {
	font-weight: 100;
}
.fontExLight {
	font-weight: 200;
}
.fontLight {
	font-weight: 300;
}
.fontRegular {
	font-weight: 400;
}
.fontMedium {
	font-weight: 500;
}
.fontSemiBold {
	font-weight: 600;
}
.fontBold {
	font-weight: 700;
}
.fontExBold {
	font-weight: 800;
}
.fontBlack {
	font-weight: 900;
}

/*文字スタイル*/
.fs_italic {
	font-style: italic;
}

/*文字詰め*/
.ffs_palt {
	font-feature-settings: "palt" 1;
}
.ffs_halt {
	font-feature-settings: "halt" 1;
}

/*Text Crop*/
.textcrop {
	display: block;
}
.textcrop::before,
.textcrop::after {
	content: '';
	display: block;
	height: 0;
	width: 0;
}
.textcrop::before {
	margin-bottom: -0.16em;
}
.textcrop::after {
	margin-top: -0.09em;
}

/*幅*/
.wrap {
	max-width: 940px;
	margin: 0 auto;
	width: 100%;
}
.wrap_wide {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}
@media screen and (min-width:900.1px) {
	.pc_wrap_pdg {
		padding-left: 50px;
		padding-right: 50px;
	}
}
.hidden {
	overflow: hidden;
}
.hidden_x {
	overflow-x: hidden;
}
.hidden_y {
	overflow-y: hidden;
}

/*Animate.css用*/
.animated {
	opacity: 0;
}
.animated.move {
	opacity: 1;
}
.animation {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.lazyload {
	opacity: 0;
}

/*object-fit*/
[class*="object-fit"] {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}
.object-fit-lc {
	object-position: left center;
	font-family: 'object-fit: cover; object-position: left center;';
}
.object-fit-rc {
	object-position: right center;
	font-family: 'object-fit: cover; object-position: right center;';
}

/*******flexbox*******/
[class*="flex_start"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_end"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_between"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_center"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_inline"] {
	display: -webkit-inline-box;
	display: inline-flex;
}
.nowrap {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.align_items_start {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.align_items_center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.align_items_end {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.direction_column {
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.row_reverse {
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}




/*================================================
 *  共通コンテンツ
 ================================================*/

/*******箇条書きリスト*******/
.kome_list li,
.disc_list li,
.circle_list li,
.square_list li,
.indent_list li {
	list-style-position:inside;
	padding-left: 1em;
	text-indent: -1em;
}
/*※箇条書き*/
.kome_list > li:before{
	display: inline;
	content: "\203b";
}
/*・箇条書き*/
.disc_list > li:before{
	display: inline;
	content: "\30fb";
}
/*●箇条書き*/
.circle_list > li:before{
	display: inline;
	content: "\25CF";
}
/*■箇条書き*/
.square_list > li:before{
	display: inline;
	content: "\25A0";
}
/*()数字*/
.number_list {
	counter-reset: cnt 0;
}
.number_list > li{
	padding-left: 2.16em;
	text-indent: -2.66em;
	list-style-type:none;
	list-style-position:inside;
	counter-increment: cnt;
}
.number_list > li:before{
	display: inline;
	content: "（" counter(cnt) "）";
}
/*数字.*/
.decimal_list {
	counter-reset: dcnt 0;
}
.decimal_list > li{
	padding-left: 1em;
	text-indent: -1em;
	list-style-type:none;
	list-style-position:inside;
	counter-increment: dcnt;
}
.decimal_list > li:before{
	display: inline;
	content: counter(dcnt) ".";
}












/*================================================================================================
 *  スマートフォン向けデザイン
 ================================================================================================*/
@media screen and (max-width:900px) {

body {
	font-size: 4vw;
}	

img {
	max-width: 100%;
}



/*文字揃え*/
.pcspText { /*PC：中央揃え・SP左揃え用*/
	text-align: justify;
	text-justify: inter-ideograph;
}

/* sp/pcの切替 */
.sp {
	display: block;
}
.sp_inline {
	display: inline;
}
.pc,.sp_none {
	display: none;
}

/*幅*/
.wrap,
.wrap_wide {
	max-width: inherit;
	width: 90vw;
}
.wrap_sp_small {
	width: 80vw!important;
	margin-left: auto!important;
	margin-right: auto!important;
}

.sp_wid100 {
	width: 100%!important;
}

/*******flexbox*******/
.flex_start_spblock,
.flex_end_spblock,
.flex_between_spblock,
.flex_center_spblock,
.flex_inline_spblock {
	display: block;
}






}