@charset "utf-8";

/* ******************************************************************

	--common.css--

	0. BoxModel change

	1. Common setting
		1-1. Reset styles
		1-2. BoxModel styles
		1-3. Text styles
		1-4. Heading styles
		1-5. Button styles
		1-7. Table styles
		1-8. Form styles
		1-9. Other styles
		1-99. VisualFormattingModel styles

	2. Responsive setting
		2-1. Fluid grid styles

	99. SP

****************************************************************** */

/*==================================================================
	0. BoxModel change
===================================================================*/
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Reset styles
-------------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}
fieldset {
	border: 0;
}
img {
	border-style: none;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
ol,ul {
	list-style: none;
}
caption {
	text-align: left;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}
q:before,q:after {
	content: '';
}
abbr,acronym {
	border: 0;
}
table {
	width: 100%;
}

/* ------------------------------------------------------------------
	1-2. BoxModel styles
-------------------------------------------------------------------*/
.pt_00 { padding-top: 0 !important;}
.pt_10 { padding-top: 10px !important;}
.pt_20 { padding-top: 20px !important;}
.pt_30 { padding-top: 30px !important;}
.pt_40 { padding-top: 40px !important;}
.pt_50 { padding-top: 50px !important;}
.pb_00 { padding-bottom: 0 !important;}
.pb_10 { padding-bottom: 10px !important;}
.pb_20 { padding-bottom: 20px !important;}
.pb_30 { padding-bottom: 30px !important;}
.pb_40 { padding-bottom: 40px !important;}
.pb_50 { padding-bottom: 50px !important;}
.mt_00 { margin-top: 0 !important;}
.mt_10 { margin-top: 10px !important;}
.mt_20 { margin-top: 20px !important;}
.mt_30 { margin-top: 30px !important;}
.mt_40 { margin-top: 40px !important;}
.mt_50 { margin-top: 50px !important;}
.mb_00 { margin-bottom: 0 !important;}
.mb_10 { margin-bottom: 10px !important;}
.mb_20 { margin-bottom: 20px !important;}
.mb_30 { margin-bottom: 30px !important;}
.mb_40 { margin-bottom: 40px !important;}
.mb_50 { margin-bottom: 50px !important;}

/* ------------------------------------------------------------------
	1-3. Text styles
-------------------------------------------------------------------*/
.f12 { font-size: 12px;}
.f24 { font-size: 24px;}
.f32 { font-size: 32px;}

.f_color_base { color: #e18a1f;}/* MAIN_COLOR */
.f_color_sub { color: #7fb59a;}/*SUB_COLOR */

.align_left { text-align: left;}
.align_right { text-align: right;}
.align_center { text-align: center;}

.bg_color_01 { background: #f5efe6;}/* ベージュ */
/*
.bg_color_02 { background: #FFFDE9;}
.bg_color_03 { background: #F3F3F3;}
*/
.bg_grd_color_01 { background: linear-gradient(135deg, #f5e5d2, #ecfcf4);}

/*.rounded_box {
	background: #fcf8f3;
	border-radius: 20px;
	padding: 50px;
}*/

.highlight_01 {
	/*background: -webkit-linear-gradient(0deg, rgba(34, 170, 224, 0.5), rgba(102, 255, 99, 0.5));*/
	background: linear-gradient(135deg, #e18a1f, #c3dd88);
	display: inline;
	padding: 0 5px;
	font-weight: 700;
	color: #FFF;
}

/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/

/* ------------------------------------
	Heading（type1）
------------------------------------*/
.heading_01 {
	text-align: center;
	margin-bottom: 60px;
	font-size: 36px;
	position: relative;
}
.heading_01:after {
	background: #e18a1f;
	content: '';
	width: 64px;
	height: 4px;
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

/* ------------------------------------
	Heading（type2）
------------------------------------*/
.heading_02 {
	background: #fcf8f3;
	border-left: 5px solid #e18a1f;
	padding: 10px;
	margin-bottom: 40px;
	font-size: 24px;
}

/* ------------------------------------
	Heading（type3）
------------------------------------*/
.heading_03 {
	border-bottom: 2px dotted #b38a5a;
	padding-bottom: 15px;
	margin-bottom: 30px;
	/*display: inline-block;*/
	font-size: 20px;
	color: #b38a5a;
}


/* ------------------------------------------------------------------
	1-5. Button styles
-------------------------------------------------------------------*/
.btn_wrap  {
	/*text-align: center;*/
	margin: 40px 0;
}
.btn {
	background: #6c6c6c;
	border-radius: 100vh;
	padding: 15px 50px;
	display: inline-block;
/*text-align: center;*/
	font-weight: 700;
	color: #fff;
	transition: all .3s ease;
	position: relative;
}
.btn:hover {
	background: #525252;
	color: #fff;
}
.btn i {
	margin-right: 5px;
}

/* ------------------------------------
	ボタン矢印
------------------------------------*/
.btn.arw::after {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	font-size: 12px;
}


/* ------------------------------------
	サイズ固定
------------------------------------*/
.btn_fix {
	width: 320px;
}

/* ------------------------------------
	角丸ボタン（デフォルト）
------------------------------------*/
.btn_1 {
	background: #e18a1f;
	font-size: 20px;
}
.btn_1:hover {
	background: #cc7a1a;
	color: #FFF;
}

/* ------------------------------------
	角丸ボタン（サイズ小）
------------------------------------*/
.btn_2 {
	background: #e18a1f;
	padding: 10px 40px;
}
.btn_2:hover {
	background: #cc7a1a;
	color: #FFF;
}


/* ------------------------------------------------------------------
	1-7. Table styles
-------------------------------------------------------------------*/
.th_col2 {
	width: 50%;
}
.th_col3 {
	width: 33.3%;
}
.th_col4 {
	width: 25%;
}
.th_col5 {
	width: 20%;
}
.th_col6 {
	width: 16.7%;
}
.th_col7 {
	width: 14.3%;
}
.th_col8 {
	width: 12.5%;
}
.th_col9 {
	width: 11.1%;
}
.th_col10 {
	width: 10%;
}

/* 下罫線アリ */
.table_01 {
	/*background: #ccc;*/
}
.table_01 th {
	border-bottom: 1px solid #e18a1f;
	padding: 15px;
}
.table_01 td {
	border-bottom: 1px solid #e6e6e6;
	padding: 15px;
}



/*.table_01 {
	display: flex;
	margin-bottom: 2px;
}
.table_01_item {
	padding: 15px;
	line-height: 2;
}
.table_01_item.subject {
	background: #F3F3F3;
	width: 275px;
}
.table_01_item.body {
	flex: 1;
	word-break: break-all;
}
.table_01_col {
	display: flex;
	flex-wrap: wrap;
	gap: 55px;
}
.table_01_col_item {
	width: calc((100% - 55px) / 2);
}*/

/* ------------------------------------------------------------------
	1-8. Form styles
-------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: inherit;
	vertical-align: middle;
}
select::-ms-expand {
	display: none;
}
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: inherit;
	cursor: pointer;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	transition: all 0.5s;
}

/*-------------------------------*/
/*	オートフィル時の背景色を無効に
/*-------------------------------*/
input:-webkit-autofill {
	box-shadow: 0 0 0px 999px #FFF inset;
}

/*-------------------------------*/
/*	placeholder
/*-------------------------------*/
input::-webkit-input-placeholder {
	color: #7E7E7E;
}
input::-moz-placeholder {
	color: #7E7E7E;
	opacity: 1;
}
input:-ms-input-placeholder {
	color: #7E7E7E;
}

/*-------------------------------*/
/*	必須
/*-------------------------------*/
.form_require {
	background: #F3F3F3;
	border: 1px solid #F3F3F3;
	border-radius: 5px;
	width: 68px;
	padding: 3px;
	margin-right: 10px;
	text-align: center;
	color: #7E7E7E;
}
.form_require.must {
	background: #FFF;
	border: 1px solid #22AAE0;
	font-weight: 700;
	color: #22AAE0;
}
.form_subject {
	flex: 1;
	padding: 3px 0;
}

/*-------------------------------*/
/*	要素を横に並べる
/*-------------------------------*/
.form_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.form_sub_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

/*-------------------------------*/
/*	text
/*-------------------------------*/
.form_text {
	background: #fff;
	border: 1px solid #fff;
	padding: 10px;
	width: 100%;
}

/* エラー時 */
.form_text_error {
	background: #FFFDE9;
	border: 2px solid #22AAE0;
}

/*-------------------------------*/
/*	textarea
/*-------------------------------*/
.form_textarea {
	background: #fff;
	border: 1px solid #fff;
	padding: 10px;
	width: 100%;
	height: 200px;
}

/*-------------------------------*/
/*	select
/*-------------------------------*/
.form_select_wrap {
	position: relative;
}
.form_select_wrap::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f0d7";
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	color: #333;
}
.form_select {
	background: #fff;
	border: 1px solid #fff;
	width: 100%;
	padding: 10px 30px 10px 10px;
}
.form_select_02 {
	width: 180px;
}

/* エラー時 */
.form_select_error {
	background: #FFFDE9;
	border: 2px solid #22AAE0;
}

/*-------------------------------*/
/*	checkbox
/*-------------------------------*/
.form_checkbox_wrap {
	display: block;
}
.form_checkbox_wrap:not(:last-child) {
	margin-bottom: 12px;
}
.form_checkbox {
	display: none;
}
.form_checkbox_parts {
	display: inline-block;
	padding-left: 30px;
	font-size: 16px;
	line-height: 1.25;
	position: relative;
}
.form_checkbox_parts::before {
	content: "";
	display: block;
	background: #fff;
	border: 1px solid #333;
	border-radius: 3px;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 2px;
	left: 0;
}
.form_checkbox:checked + .form_checkbox_parts::before {
	background: #22AAE0;
	border: 1px solid #22AAE0;
}
.form_checkbox:checked + .form_checkbox_parts::after {
	content: "";
	display: block;
	border-bottom: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	width: 6px;
	height: 11px;
	position: absolute;
	top: 5px;
	left: 7px;
	transform: rotate(40deg);
}

/* エラー時 */
.form_checkbox_error + .form_checkbox_parts::before {
	background: #FFFDE9;
	border: 1px solid #22AAE0;
}

/*-------------------------------*/
/*	radio
/*-------------------------------*/
.form_radio {
	display: none;
}
.form_radio + label {
	padding-left: 25px;
	margin-right: 25px;
	font-size: 16px;
	white-space: nowrap;
	position: relative;
}
.form_radio + label::before {
	content: "";
	display: block;
	background: #FFF;
	border: 1px solid #333;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.form_radio:checked + label {
	/*color: #009a9a;*/
}
.form_radio:checked + label::after {
	content: "";
	display: block;
	background: #22AAE0;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 4px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* エラー時 */
.form_radio_error + label::before {
	background: #ffecec;
	border: 1px solid #F96969;
}

/*-------------------------------*/
/*	upload
/*-------------------------------*/
.form_upload {
	background: #FFF;
	padding: 10px;
	font-size: 12px;
}
.form_upload label {
	background: #F3F3F3;
	border: 1px solid #333;
	border-radius: 5px;
	display: inline-block;
	vertical-align: middle;
	padding: 8px 20px;
	position: relative;
	/*transition: all 0.3s;*/
}
/*.form_upload label:hover {
	background: #888;
}*/
.form_upload_btn {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.form_upload_text {
	margin-left: 20px;
}

/*-------------------------------*/
/*	button
/*-------------------------------*/
.form_btn_wrap {
	text-align: center;
}
.form_btn {
	background: #22AAE0;
	border: 2px solid #FFF;
	border-radius: 100vh;
	box-shadow: 0 5px 10px rgba(0,0,0,0.25);
	display: inline-block;
	padding: 25px 40px;
	width: 600px;
	font-size: 32px;
	font-weight: 700;
	color: #FFF;
	position: relative;
}
.form_btn:hover {
	background: #FFF;
	border: 2px solid #22AAE0;
	box-shadow: none;
	color: #22AAE0;
}
.form_btn .button_arw {
	right: 80px;
}
.form_btn .button_arw::before {
	border: 1px solid #FFF;
}
.form_btn .button_arw::after {
	color: #FFF;
}
.form_btn:hover .button_arw::before {
	border: 1px solid #22AAE0;
}
.form_btn:hover .button_arw::after {
	color: #22AAE0;
}

/* disabled状態 */
.form_btn:disabled {
	background: #2E4967;
	border: 2px solid #2E4967;
	box-shadow: none;
	color: #C2D3E6;
	cursor: not-allowed;
}

/*-------------------------------*/
/*	assist
/*-------------------------------*/
.form_assist {
	margin-top: 8px;
	font-size: 12px;
	color: #333;
}

/*-------------------------------*/
/*	エラー
/*-------------------------------*/
/* form_error */
.form_error {
	margin-top: 8px;
	padding-left: 24px;
	font-weight: 700;
	color: #22AAE0;
	position: relative;
}
.form_error::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f057";
	position: absolute;
	top: 5px;
	left: 0;
}

/* ------------------------------------------------------------------
	1-9. Other styles
-------------------------------------------------------------------*/
/*-------------------------------*/
/*	PAGETOP
/*-------------------------------*/
.page_top {
	background: rgba(138, 104, 65, .8);
	border-radius: 50%;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	width: 50px;
	color: #FFF;
	cursor: pointer;
}
.page_top:hover {
	background: rgba(138, 104, 65, 1);
}

/*-------------------------------*/
/*	ページネーション
/*-------------------------------*/
.wp-pagenavi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 50px 0;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	background: #FFF;
	border: 1px solid #b38a5a;
	padding: 12px 15px;
	line-height: 1;
	color: #b38a5a;
	text-decoration: none;
}
.wp-pagenavi a:hover {
	background: #b38a5a;
	color: #FFF;
}
.wp-pagenavi .extend {
	border: none;
	background: none;
	padding: 0;
}
.wp-pagenavi .current {
	border: 1px solid #b38a5a;
	background: #b38a5a;
	font-weight: bold;
	color: #FFF;
}

/*-------------------------------*/
/*	記事ナビゲーション
/*-------------------------------*/
.post_nav {
	display: flex;
	justify-content: center;
	padding: 50px 0;
}

/*-------------------------------*/
/*	症状リスト
/*-------------------------------*/
.icon_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.icon_list li {
	background: #fcf8f3;
	border-radius: 12px;
	padding: 10px;
	font-weight: bold;
}
.icon_list li i {
	margin-right: 10px;
	color: #e18a1f;
}


/* ------------------------------------------------------------------
	1-99. VisualFormattingModel styles
-------------------------------------------------------------------*/
.pc_block {
	display: block !important;
}
.pc_inline {
	display: inline !important;
}
.sp_block {
	display: none !important;
}
.sp_inline {
	display: none !important;
}

/* ------------------------------------
	CLEARFIX
------------------------------------*/
.cf:after {
	content: "";
	display: block;
	clear: both;
}



















/*==================================================================
	99 SP
===================================================================*/

@media only screen and (max-width: 640px) {
/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-2. BoxModel styles
-------------------------------------------------------------------*/
.pt_00 { padding-top: 0 !important;}
.pt_10 { padding-top: 2% !important;}
.pt_20 { padding-top: 4% !important;}
.pt_30 { padding-top: 6% !important;}
.pt_40 { padding-top: 8% !important;}
.pt_50 { padding-top: 10% !important;}
.pb_00 { padding-bottom: 0 !important;}
.pb_10 { padding-bottom: 2% !important;}
.pb_20 { padding-bottom: 4% !important;}
.pb_30 { padding-bottom: 6% !important;}
.pb_40 { padding-bottom: 8% !important;}
.pb_50 { padding-bottom: 10% !important;}
.mt_00 { margin-top: 0 !important;}
.mt_10 { margin-top: 2% !important;}
.mt_20 { margin-top: 4% !important;}
.mt_30 { margin-top: 6% !important;}
.mt_40 { margin-top: 8% !important;}
.mt_50 { margin-top: 10% !important;}
.mb_00 { margin-bottom: 0 !important;}
.mb_10 { margin-bottom: 2% !important;}
.mb_20 { margin-bottom: 4% !important;}
.mb_30 { margin-bottom: 6% !important;}
.mb_40 { margin-bottom: 8% !important;}
.mb_50 { margin-bottom: 10% !important;}

/* ------------------------------------------------------------------
	1-3. Text styles
-------------------------------------------------------------------*/
.f12 { font-size: 3.08vw;}/* 12px：画面幅360px換算 */
.f24 { font-size: 5.13vw;}/* 20px：画面幅360px換算 */
.f32 { font-size: 6.15vw;}/* 24px：画面幅360px換算 */

/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/
/* ------------------------------------
	Heading（type1）
------------------------------------*/
.heading_01 {
margin-bottom: 10%;
font-size: 6.25vw;
}
.heading_01:after {
width: 10vw;
bottom: -3.75vw;
}

/* ------------------------------------
	Heading（type2）
------------------------------------*/
.heading_02 {
padding: 3%;
margin-bottom: 5%;
font-size: 5.625vw;
}

/* ------------------------------------
	Heading（type3）
------------------------------------*/
.heading_03 {
padding-bottom: 3%;
margin-bottom: 5%;
font-size: 5vw;
}

/* ------------------------------------------------------------------
	1-5. Button styles
-------------------------------------------------------------------*/
.btn_wrap  {
margin: 8% 0;
}
.btn {
padding: 3.125vw 7.5vw;
text-align: center;
font-size: 3.125vw;
}

/* ------------------------------------
	ボタン矢印
------------------------------------*/
.btn.arw::after {
right: 4vw;
font-size: 2.5vw;
}

/* ------------------------------------
	サイズ固定
------------------------------------*/
.btn_fix {
width: 90%;
}

/* ------------------------------------
	角丸ボタン（デフォルト）
------------------------------------*/
.btn_1 {
padding: 3.125vw 7.5vw;
font-size: 4.375vw;
}

/* ------------------------------------
	角丸ボタン（サイズ小）
------------------------------------*/
.btn_2 {
	background: #e18a1f;
padding: 2.5vw 7.5vw;
}
	
	

/* ------------------------------------------------------------------
	1-7. Table styles
-------------------------------------------------------------------*/
/* 罫線ナシ */
.table_01 {
flex-direction: column;
margin-bottom: 0;
}
.table_01_item {
padding: 3%;
}
.table_01_item.subject {
width: 100%;
}
.table_01_col {
flex-direction: column;
gap: 5.13vw;
}
.table_01_col_item {
width: 100%;
}

/* ------------------------------------------------------------------
	1-8. Form styles
-------------------------------------------------------------------*/
/*-------------------------------*/
/*	必須
/*-------------------------------*/
.form_require {
width: 17.44vw;
padding: 1%;
margin-right: 3%;
}
.form_subject {
padding: 1% 0;
}

/*-------------------------------*/
/*	要素を横に並べる
/*-------------------------------*/
.form_flex {
gap: 2.05vw;
}
.form_sub_flex {
gap: 2.05vw;
flex: 1;
}

/*-------------------------------*/
/*	textarea
/*-------------------------------*/
.form_textarea {
height: 41.03vw;
}

/*-------------------------------*/
/*	select
/*-------------------------------*/
.form_select_02 {
width: 100%;
}

/*-------------------------------*/
/*	upload
/*-------------------------------*/
.form_upload {
padding: 3%;
font-size: 3.08vw;
}
.form_upload label {
padding: 2% 4%;
}
.form_upload_text {
margin-left: 3%;
}

/*-------------------------------*/
/*	button
/*-------------------------------*/
.form_btn {
padding: 2.56vw 5.13vw;
width: 100%;
text-align: left;
font-size: 4.1vw;
}
.form_btn .button_arw {
right: 8%;
}

/*-------------------------------*/
/*	assist
/*-------------------------------*/
.form_assist {
margin-top: 3%;
font-size: 3.08vw;
}

/*-------------------------------*/
/*	エラー
/*-------------------------------*/
/* form_error */
.form_error {
margin-top: 3%;
padding-left: 6.15vw;
font-size: 3.59vw;
}
.form_error::before {
top: 1.28vw;
}
	

/* ------------------------------------------------------------------
	1-9. Other styles
-------------------------------------------------------------------*/
/*-------------------------------*/
/*	PAGETOP
/*-------------------------------*/
.page_top {
bottom: 65px;
width: 10vw;
}

/*-------------------------------*/
/*	ページネーション
/*-------------------------------*/
.wp-pagenavi {
padding: 10% 0;
gap: 3.125vw;
}
.wp-pagenavi a,
.wp-pagenavi span {
padding: 3% 4%;
font-size: 3.125vw;
}

/*-------------------------------*/
/*	ページナビゲーション
/*-------------------------------*/
.page_nav {
gap: 3%;
width: 92%;
margin: 5% auto 0 auto;
}
.page_nav_item {
width: calc((100% - 3%) / 3);
font-size: 3.08vw;
}
.page_nav_item.active {
padding: 2.05vw 0;
}
.page_nav_item a {
padding: 2.05vw 0;
}


/*-------------------------------*/
/*	ページ内アンカー位置調整
/*-------------------------------*/
/*
.anq_point {
padding-top: 60px;
margin-top: -60px;
}
*/

/*-------------------------------*/
/*	ページネーション
/*-------------------------------*/
/*.wp-pagenavi {
padding: 4% 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
padding: 2% 3%;
margin: 0 1%;
font-size: 3.44vw;
}*/

/* ------------------------------------------------------------------
	1-99. VisualFormattingModel styles
-------------------------------------------------------------------*/
.pc_block {
	display: none !important;
}
.pc_inline {
	display: none !important;
}
.sp_block {
	display: block !important;
}
.sp_inline {
	display: inline !important;
}






}
