﻿/*
-------------------------------------------------------

	@@Component
	BulmaやBoostrapを参考にしています
-------------------------------------------------------
*/
/* c-grid */
.c-grid {
	display: flex;
	flex-wrap: wrap;
}

.c-grid__col {
	max-width: 100%;
	flex: 1 1 0%;
}

.c-grid--reverse {
	flex-direction: row-reverse;
}

.c-grid--nowrap {
	flex-wrap: nowrap;
}

.c-grid--left {
	justify-content: flex-start;
}

.c-grid--right {
	justify-content: flex-end;
}

.c-grid--center {
	justify-content: center;
}

.c-grid--between {
	justify-content: space-between;
}

.c-grid--around {
	justify-content: space-around;
}

.c-grid--top {
	align-items: flex-start;
}

.c-grid--bottom {
	align-items: flex-end;
}

.c-grid--middle {
	align-items: center;
}

.c-grid--baseline {
	align-items: baseline;
}

.c-grid--collapse {
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
}

.c-grid--collapse>.c-grid__col {
	padding-right: 0;
	padding-left: 0;
	margin-bottom: 0;
}

.c-grid--margin {
	margin-right: -10px;
	margin-left: -10px;
	margin-bottom: -20px;
}

.c-grid--margin>.c-grid__col {
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 20px;
}

.c-grid--margin-l {
	margin-right: -25px;
	margin-left: -25px;
	margin-bottom: -50px;
}

.c-grid--margin-l>.c-grid__col {
	padding-right: 25px;
	padding-left: 25px;
	margin-bottom: 50px;
}

.c-grid--fill>.c-grid__col {
	display: flex;
}

.c-grid--fill>.c-grid__col>* {
	flex: 0 1 100%;
	max-width: 100%;
}

@media (min-width: 768px) {
	.c-grid--pc-nowrap {
		flex-wrap: nowrap;
	}

	.c-grid--pc-left {
		justify-content: flex-start;
	}

	.c-grid--pc-right {
		justify-content: flex-end;
	}

	.c-grid--pc-center {
		justify-content: center;
	}

	.c-grid--pc-between {
		justify-content: space-between;
	}

	.c-grid--pc-around {
		justify-content: space-around;
	}

	.c-grid--pc-top {
		align-items: flex-start;
	}

	.c-grid--pc-bottom {
		align-items: flex-end;
	}

	.c-grid--pc-middle {
		align-items: center;
	}

	.c-grid--pc-baseline {
		align-items: baseline;
	}

	.c-grid--pc-collapse {
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 0;
	}

	.c-grid--pc-collapse>.c-grid__col {
		padding-right: 0;
		padding-left: 0;
		margin-bottom: 0;
	}

	.c-grid--pc-margin {
		margin-right: -10px;
		margin-left: -10px;
		margin-bottom: -20px;
	}

	.c-grid--pc-margin>.c-grid__col {
		padding-right: 10px;
		padding-left: 10px;
		margin-bottom: 20px;
	}

	.c-grid--pc-margin-l {
		margin-right: -20px;
		margin-left: -20px;
		margin-bottom: -50px;
	}

	.c-grid--pc-margin-l>.c-grid__col {
		padding-right: 20px;
		padding-left: 20px;
		margin-bottom: 50px;
	}

	.c-grid--pc-fill>.c-grid__col {
		display: flex;
	}

	.c-grid--pc-fill>.c-grid__col>* {
		flex: 0 1 100%;
		max-width: 100%;
	}
}

.c-grid__col--1-2,
.c-grid__col--2-4,
.c-grid__col--3-6,
.c-grid__col--4-8,
.c-grid__col--5-10,
.c-grid__col--6-12 {
	flex: 0 1 50%;
	max-width: 50%;
}

.c-grid__col--1-3,
.c-grid__col--2-6,
.c-grid__col--3-9,
.c-grid__col--4-12 {
	flex: 0 1 33.33333%;
	max-width: 33.33333%;
}

.c-grid__col--2-3,
.c-grid__col--4-6,
.c-grid__col--6-9,
.c-grid__col--8-12 {
	flex: 0 1 66.66667%;
	max-width: 66.66667%;
}

.c-grid__col--1-4,
.c-grid__col--2-8,
.c-grid__col--3-12 {
	flex: 0 1 25%;
	max-width: 25%;
}

.c-grid__col--3-4,
.c-grid__col--6-8,
.c-grid__col--9-12 {
	flex: 0 1 75%;
	max-width: 75%;
}

.c-grid__col--1-5,
.c-grid__col--2-10 {
	flex: 0 1 20%;
	max-width: 20%;
}

.c-grid__col--2-5,
.c-grid__col--4-10 {
	flex: 0 1 40%;
	max-width: 40%;
}

.c-grid__col--3-5,
.c-grid__col--6-10 {
	flex: 0 1 60%;
	max-width: 60%;
}

.c-grid__col--4-5,
.c-grid__col--8-10 {
	flex: 0 1 80%;
	max-width: 80%;
}

.c-grid__col--1-6,
.c-grid__col--2-12 {
	flex: 0 1 16.66667%;
	max-width: 16.66667%;
}

.c-grid__col--5-6,
.c-grid__col--10-12 {
	flex: 0 1 83.33333%;
	max-width: 83.33333%;
}

.c-grid__col--1-7 {
	flex: 0 1 14.28571%;
	max-width: 14.28571%;
}

.c-grid__col--2-7 {
	flex: 0 1 28.57143%;
	max-width: 28.57143%;
}

.c-grid__col--3-7 {
	flex: 0 1 42.85714%;
	max-width: 42.85714%;
}

.c-grid__col--4-7 {
	flex: 0 1 57.14286%;
	max-width: 57.14286%;
}

.c-grid__col--5-7 {
	flex: 0 1 71.42857%;
	max-width: 71.42857%;
}

.c-grid__col--6-7 {
	flex: 0 1 85.71429%;
	max-width: 85.71429%;
}

.c-grid__col--1-8 {
	flex: 0 1 12.5%;
	max-width: 12.5%;
}

.c-grid__col--3-8 {
	flex: 0 1 37.5%;
	max-width: 37.5%;
}

.c-grid__col--5-8 {
	flex: 0 1 62.5%;
	max-width: 62.5%;
}

.c-grid__col--7-8 {
	flex: 0 1 87.5%;
	max-width: 87.5%;
}

.c-grid__col--1-9 {
	flex: 0 1 11.11111%;
	max-width: 11.11111%;
}

.c-grid__col--2-9 {
	flex: 0 1 22.22222%;
	max-width: 22.22222%;
}

.c-grid__col--4-9 {
	flex: 0 1 44.44444%;
	max-width: 44.44444%;
}

.c-grid__col--5-9 {
	flex: 0 1 55.55556%;
	max-width: 55.55556%;
}

.c-grid__col--7-9 {
	flex: 0 1 77.77778%;
	max-width: 77.77778%;
}

.c-grid__col--8-9 {
	flex: 0 1 88.88889%;
	max-width: 88.88889%;
}

.c-grid__col--1-10 {
	flex: 0 1 10%;
	max-width: 10%;
}

.c-grid__col--3-10 {
	flex: 0 1 30%;
	max-width: 30%;
}

.c-grid__col--7-10 {
	flex: 0 1 70%;
	max-width: 70%;
}

.c-grid__col--9-10 {
	flex: 0 1 90%;
	max-width: 90%;
}

.c-grid__col--1-11 {
	flex: 0 1 9.09091%;
	max-width: 9.09091%;
}

.c-grid__col--2-11 {
	flex: 0 1 18.18182%;
	max-width: 18.18182%;
}

.c-grid__col--3-11 {
	flex: 0 1 27.27273%;
	max-width: 27.27273%;
}

.c-grid__col--4-11 {
	flex: 0 1 36.36364%;
	max-width: 36.36364%;
}

.c-grid__col--5-11 {
	flex: 0 1 45.45455%;
	max-width: 45.45455%;
}

.c-grid__col--6-11 {
	flex: 0 1 54.54545%;
	max-width: 54.54545%;
}

.c-grid__col--7-11 {
	flex: 0 1 63.63636%;
	max-width: 63.63636%;
}

.c-grid__col--8-11 {
	flex: 0 1 72.72727%;
	max-width: 72.72727%;
}

.c-grid__col--9-11 {
	flex: 0 1 81.81818%;
	max-width: 81.81818%;
}

.c-grid__col--10-11 {
	flex: 0 1 90.90909%;
	max-width: 90.90909%;
}

.c-grid__col--1-12 {
	flex: 0 1 8.33333%;
	max-width: 8.33333%;
}

.c-grid__col--5-12 {
	flex: 0 1 41.66667%;
	max-width: 41.66667%;
}

.c-grid__col--7-12 {
	flex: 0 1 58.33333%;
	max-width: 58.33333%;
}

.c-grid__col--11-12 {
	flex: 0 1 91.66667%;
	max-width: 91.66667%;
}

.c-grid__col--1-1,
.c-grid__col--2-2,
.c-grid__col--3-3,
.c-grid__col--4-4,
.c-grid__col--5-5,
.c-grid__col--6-6,
.c-grid__col--7-7,
.c-grid__col--8-8,
.c-grid__col--9-9,
.c-grid__col--10-10,
.c-grid__col--11-11,
.c-grid__col--12-12 {
	flex: 0 1 100%;
	max-width: 100%;
}

.c-grid__col--auto {
	flex: 1 1 auto;
}

.c-grid__col--justify {
	flex: 1 1 0%;
}

.c-grid__col--fit {
	flex: 0 1 auto;
}

@media (min-width: 768px) {

	.c-grid__col--pc-1-2,
	.c-grid__col--pc-2-4,
	.c-grid__col--pc-3-6,
	.c-grid__col--pc-4-8,
	.c-grid__col--pc-5-10,
	.c-grid__col--pc-6-12 {
		flex: 0 1 50%;
		max-width: 50%;
	}

	.c-grid__col--pc-1-3,
	.c-grid__col--pc-2-6,
	.c-grid__col--pc-3-9,
	.c-grid__col--pc-4-12 {
		flex: 0 1 33.33333%;
		max-width: 33.33333%;
	}

	.c-grid__col--pc-2-3,
	.c-grid__col--pc-4-6,
	.c-grid__col--pc-6-9,
	.c-grid__col--pc-8-12 {
		flex: 0 1 66.66667%;
		max-width: 66.66667%;
	}

	.c-grid__col--pc-1-4,
	.c-grid__col--pc-2-8,
	.c-grid__col--pc-3-12 {
		flex: 0 1 25%;
		max-width: 25%;
	}

	.c-grid__col--pc-3-4,
	.c-grid__col--pc-6-8,
	.c-grid__col--pc-9-12 {
		flex: 0 1 75%;
		max-width: 75%;
	}

	.c-grid__col--pc-1-5,
	.c-grid__col--pc-2-10 {
		flex: 0 1 20%;
		max-width: 20%;
	}

	.c-grid__col--pc-2-5,
	.c-grid__col--pc-4-10 {
		flex: 0 1 40%;
		max-width: 40%;
	}

	.c-grid__col--pc-3-5,
	.c-grid__col--pc-6-10 {
		flex: 0 1 60%;
		max-width: 60%;
	}

	.c-grid__col--pc-4-5,
	.c-grid__col--pc-8-10 {
		flex: 0 1 80%;
		max-width: 80%;
	}

	.c-grid__col--pc-1-6,
	.c-grid__col--pc-2-12 {
		flex: 0 1 16.66667%;
		max-width: 16.66667%;
	}

	.c-grid__col--pc-5-6,
	.c-grid__col--pc-10-12 {
		flex: 0 1 83.33333%;
		max-width: 83.33333%;
	}

	.c-grid__col--pc-1-7 {
		flex: 0 1 14.28571%;
		max-width: 14.28571%;
	}

	.c-grid__col--pc-2-7 {
		flex: 0 1 28.57143%;
		max-width: 28.57143%;
	}

	.c-grid__col--pc-3-7 {
		flex: 0 1 42.85714%;
		max-width: 42.85714%;
	}

	.c-grid__col--pc-4-7 {
		flex: 0 1 57.14286%;
		max-width: 57.14286%;
	}

	.c-grid__col--pc-5-7 {
		flex: 0 1 71.42857%;
		max-width: 71.42857%;
	}

	.c-grid__col--pc-6-7 {
		flex: 0 1 85.71429%;
		max-width: 85.71429%;
	}

	.c-grid__col--pc-1-8 {
		flex: 0 1 12.5%;
		max-width: 12.5%;
	}

	.c-grid__col--pc-3-8 {
		flex: 0 1 37.5%;
		max-width: 37.5%;
	}

	.c-grid__col--pc-5-8 {
		flex: 0 1 62.5%;
		max-width: 62.5%;
	}

	.c-grid__col--pc-7-8 {
		flex: 0 1 87.5%;
		max-width: 87.5%;
	}

	.c-grid__col--pc-1-9 {
		flex: 0 1 11.11111%;
		max-width: 11.11111%;
	}

	.c-grid__col--pc-2-9 {
		flex: 0 1 22.22222%;
		max-width: 22.22222%;
	}

	.c-grid__col--pc-4-9 {
		flex: 0 1 44.44444%;
		max-width: 44.44444%;
	}

	.c-grid__col--pc-5-9 {
		flex: 0 1 55.55556%;
		max-width: 55.55556%;
	}

	.c-grid__col--pc-7-9 {
		flex: 0 1 77.77778%;
		max-width: 77.77778%;
	}

	.c-grid__col--pc-8-9 {
		flex: 0 1 88.88889%;
		max-width: 88.88889%;
	}

	.c-grid__col--pc-1-10 {
		flex: 0 1 10%;
		max-width: 10%;
	}

	.c-grid__col--pc-3-10 {
		flex: 0 1 30%;
		max-width: 30%;
	}

	.c-grid__col--pc-7-10 {
		flex: 0 1 70%;
		max-width: 70%;
	}

	.c-grid__col--pc-9-10 {
		flex: 0 1 90%;
		max-width: 90%;
	}

	.c-grid__col--pc-1-11 {
		flex: 0 1 9.09091%;
		max-width: 9.09091%;
	}

	.c-grid__col--pc-2-11 {
		flex: 0 1 18.18182%;
		max-width: 18.18182%;
	}

	.c-grid__col--pc-3-11 {
		flex: 0 1 27.27273%;
		max-width: 27.27273%;
	}

	.c-grid__col--pc-4-11 {
		flex: 0 1 36.36364%;
		max-width: 36.36364%;
	}

	.c-grid__col--pc-5-11 {
		flex: 0 1 45.45455%;
		max-width: 45.45455%;
	}

	.c-grid__col--pc-6-11 {
		flex: 0 1 54.54545%;
		max-width: 54.54545%;
	}

	.c-grid__col--pc-7-11 {
		flex: 0 1 63.63636%;
		max-width: 63.63636%;
	}

	.c-grid__col--pc-8-11 {
		flex: 0 1 72.72727%;
		max-width: 72.72727%;
	}

	.c-grid__col--pc-9-11 {
		flex: 0 1 81.81818%;
		max-width: 81.81818%;
	}

	.c-grid__col--pc-10-11 {
		flex: 0 1 90.90909%;
		max-width: 90.90909%;
	}

	.c-grid__col--pc-1-12 {
		flex: 0 1 8.33333%;
		max-width: 8.33333%;
	}

	.c-grid__col--pc-5-12 {
		flex: 0 1 41.66667%;
		max-width: 41.66667%;
	}

	.c-grid__col--pc-7-12 {
		flex: 0 1 58.33333%;
		max-width: 58.33333%;
	}

	.c-grid__col--pc-11-12 {
		flex: 0 1 91.66667%;
		max-width: 91.66667%;
	}

	.c-grid__col--pc-1-1,
	.c-grid__col--pc-2-2,
	.c-grid__col--pc-3-3,
	.c-grid__col--pc-4-4,
	.c-grid__col--pc-5-5,
	.c-grid__col--pc-6-6,
	.c-grid__col--pc-7-7,
	.c-grid__col--pc-8-8,
	.c-grid__col--pc-9-9,
	.c-grid__col--pc-10-10,
	.c-grid__col--pc-11-11,
	.c-grid__col--pc-12-12 {
		flex: 0 1 100%;
		max-width: 100%;
	}

	.c-grid__col--pc-auto {
		flex: 1 1 auto;
	}

	.c-grid__col--pc-justify {
		flex: 1 1 0%;
	}

	.c-grid__col--pc-fit {
		flex: 0 1 auto;
	}
}

/* c-container */
.c-container {
	margin: 0 auto;
	padding: 0 30px;
}

.c-container--slim {
	max-width: 940px;
}

.c-container--extra-slim {
	max-width: 860px;
}

/* c-btn */
.c-btn {
	display: inline-block;
	text-align: left;
	line-height: 1;
	position: relative;
	padding: 17px 50px 17px 30px;
	border: 1px solid #0070bb;
	border-radius: 60px;
	background: url(../img/icon_link_type_01_off.png) no-repeat right 20px center #fff;
	font-weight: 700;
	font-size: 14px;
	color: #1f1f1f;
	transition: .2s;
}

.c-btn--fullwidth {
	color: #0070bb;
	width: 100%;
	text-align: center;
	margin: 3.5em auto;
	display: block;
	max-width: 720px;
}

.c-btn--fullwidth.--margin-small {
	margin: 1.5em auto;
}

@media (max-width: 767px) {
	.c-btn {
		padding: 23px 80px 23px 30px;
		line-height: 1.4;
		margin-right: auto;
		margin-left: auto;
		border-width: 2px;
		background: url(../img/icon_link_type_01_sp_off.png) no-repeat right 30px center #fff;
		font-size: 24px;
	}

	.c-btn--fullwidth {
		border-radius: 0.5em;
		margin: 3em auto;
		padding: 16px;
		font-size: 90%;
		background-image: none !important;
	}

	.p-column-WYSIWYG__panels .c-btn--fullwidth {
		max-width: calc(100% - 60px);
	}

	.p-column-WYSIWYG__panels .c-panel .c-btn--fullwidth {
		max-width: 100%;
	}
}

@media (min-width: 768px) {
	.c-btn--fullwidth {
		border-radius: 0.5em;
		padding: 16px;
		font-size: 100%;
		background-position: right 18px center;
		background-image: none !important;
	}

	.c-btn:hover {
		background: url(../img/icon_link_type_01_on.png) no-repeat right 20px center #0070bb;
		color: #fff;
	}
}

/* c-lists */
.c-lists--annotation li {
	text-align: left;
	line-height: 1.4;
	font-size: 14px;
	padding-left: 1em;
	text-indent: -1em;
}

@media (max-width: 767px) {
	.c-lists--annotation li {
		font-size: 18px;
	}
}


/* c-checkbox, c-radio */
.c-checkbox,
.c-radio {
	cursor: pointer;
	display: inline-block;
	line-height: 1.25;
	position: relative;
}

.c-checkbox input,
.c-radio input {
	cursor: pointer;
}

.c-checkbox:hover,
.c-radio:hover {
	color: #363636;
}

.c-checkbox[disabled],
.c-radio[disabled],
fieldset[disabled] .c-checkbox,
fieldset[disabled] .c-radio,
.c-checkbox input[disabled],
.c-radio input[disabled] {
	color: #7a7a7a;
	cursor: not-allowed;
}

/* c-media */
.c-media {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.c-media+.c-media {
	margin-top: 50px;
}

.c-media-content {
	width: 100%;
}

.c-media-left,
.c-media-right {
	text-align: center;
	flex: 1;
}

.c-media-title {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
}

.c-media>.c-media-title {
	width: 100%;
	/* media直下の場合は幅100% */
	margin-bottom: 50px;
}

.c-media-title--border-bottom {
	padding-bottom: 20px;
	border-bottom: 1px dashed #0070bb;
}

.c-media .subtitle {
	font-size: 14px;
	font-weight: inherit;
	margin-top: 1.5em;
	margin-bottom: .5em;
}

.c-media--border {
	border: solid 1px #0070bb;
	padding: 30px;
	border-radius: 8px;
}

@media (min-width: 768px) {
	.c-media-content {
		max-width: 740px;
	}

	.c-media-content--short {
		max-width: 600px;
	}

	.c-media-content--veryshort {
		max-width: 540px;
	}
}

@media (max-width: 767px) {
	.c-media+.c-media {
		margin-top: 60px;
	}

	.c-media-right,
	.c-media-left {
		position: absolute;
		top: 0;
		width: auto;
	}

	.c-media-right {
		right: 0;
	}

	.c-media-left {
		left: 0;
	}

	.c-media-title {
		font-size: 30px;
	}

	.c-media-title--small {
		font-size: 24px;
	}

	.c-media .subtitle {
		font-size: 24px;
	}

	.c-media--sp-column {
		flex-direction: column;
	}

	.c-media--sp-column .c-media-right,
	.c-media--sp-column .c-media-left {
		position: initial;
		margin-bottom: 0.5em;
		width: 100%;
	}
}

/* c-card */
.c-card {
	border: 1px solid rgb(220, 232, 241);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	line-height: 1.8;
}

.c-card__head,
.c-card__body {
	padding: 15px 20px;
}


/* c-table */
.c-table td {
	vertical-align: top;
	line-height: 1.6;
}

.c-table .c-table-head--wide-margin th {
	padding-top: 30px;
	padding-bottom: 30px;
}

.c-table--tr-match-height-4 tbody tr {
	height: calc((1em * 1.6 * 4) + (25px * 2));
}

.c-table--tr-match-height-3 tbody tr {
	height: calc((1em * 1.6 * 3) + (25px * 2));
}

.c-table.c-table--vertical-align-middle th,
.c-table.c-table--vertical-align-middle td {
	vertical-align: middle;
}

.c-table-head--dark-gray th {
	background: #798186;
	color: #fff;
}

/* c-section */
.c-section--rich {
	min-width: 1200px;
	margin-bottom: 80px;
	text-align: center;
}

.c-section--rich .c-section__head {
	margin: auto;
	padding: 0 30px;
}

.c-section--rich .c-section__subtitle {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	line-height: 1;
}

.c-section--rich .c-section__title {
	margin-bottom: 20px;
	line-height: 1.6;
	font-size: 20px;
	font-weight: 700;
}

.c-section--rich .c-section__lede {
	margin-bottom: 0.5em;
	line-height: 2.0;
	font-size: 16px;
	font-weight: 700;
}

.c-section--rich .txt {
	line-height: 2.0;
	font-size: 14px;
}

.c-section--rich .c-section__body {
	margin-top: 40px;
	text-align: left;
}

@media (max-width: 767px) {
	.c-section--rich {
		min-width: 100%;
		margin-bottom: 100px;
	}

	.c-section--rich .c-section__subtitle {
		font-size: 22px;
	}

	.c-section--rich .c-section__title {
		margin-bottom: 30px;
		font-size: 32px;
	}
	.c-section--rich .c-section__lede {
		line-height: 2;
		font-size: 26px;
	}
	.c-section--rich .txt {
		line-height: 2;
		font-size: 24px;
	}

	.c-section--rich .c-section__body {
		margin: 50px 30px 0;
	}
}

/* c-tabpanels */
.c-tabpanels input[type="radio"] {
	display: none;
}

.c-tabpanels .tab_wrap {
	text-align: left;
}

.c-tabpanels .tab_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 0 20px;
	border-bottom: 1px solid #0070bb;
}

.c-tabpanels .tab_area label {
	width: 300px;
	padding: 25px 20px;
	border: solid #d1d5d8;
	border-width: 1px 1px 0;
	background-color: #d1d5d8;
	text-align: center;
	font-size: 16px;
	color: #1f1f1f;
	cursor: pointer;
}

.c-tabpanels .panel_area {
	margin-top: 40px;
	padding: 0 60px;
	line-height: 2.2;
	font-size: 14px;
}

.c-tabpanels .tab_area label,
.c-tabpanels--col1 .tab_area label {
	width: 600px;
	padding: 25px 20px;
	border: solid #d1d5d8;
	border-width: 1px 1px 0;
	background-color: #d1d5d8;
	text-align: center;
	font-size: 16px;
	color: #1f1f1f;
	cursor: pointer;
}

.c-tabpanels--col2 .tab_area label {
	width: 450px;
}

.c-tabpanels--col3 .tab_area label {
	width: 300px;
}

@media (max-width: 767px) {
	.c-tabpanels .tab_area {
		display: flex;
		padding: 0 30px;
	}

	#body .c-tabpanels .tab_area {
		justify-content: center;
	}

	.c-tabpanels .panel_area {
		margin-top: 30px;
		padding: 0 40px;
		line-height: 2.0;
		font-size: 24px;
	}

	.c-tabpanels .tab_area label,
	.c-tabpanels--col1 .tab_area label {
		width: 100%;
		padding: 20px 10px;
		line-height: 1.4;
		font-size: 22px;
	}

	.c-tabpanels--col2 .tab_area label {
		width: 49%;
	}

	.c-tabpanels--col3 .tab_area label {
		width: 32%;
	}

	.c-tabpanels .tab_area label:not(:first-child) {
		margin-left: 2%;
	}
}

.c-tabpanels input[type="radio"]:nth-of-type(1):checked~.tab_area>label:nth-of-type(1),
.c-tabpanels input[type="radio"]:nth-of-type(2):checked~.tab_area>label:nth-of-type(2),
.c-tabpanels input[type="radio"]:nth-of-type(3):checked~.tab_area>label:nth-of-type(3) {
	border-color: #0070bb;
	background-color: #fff;
	font-weight: 700;
	color: #0070bb;
}

.c-tabpanels .tab_panel {
	display: none;
}

.c-tabpanels input[type="radio"]:nth-of-type(1):checked~.panel_area>.tab_panel:nth-of-type(1),
.c-tabpanels input[type="radio"]:nth-of-type(2):checked~.panel_area>.tab_panel:nth-of-type(2),
.c-tabpanels input[type="radio"]:nth-of-type(3):checked~.panel_area>.tab_panel:nth-of-type(3) {
	display: block;
}


/* .c-columnbox */
/*
詳細度の解消まで行う余裕がないため、いったん#bodyで詳細度を上げて対処。
*/
#body .c-columnbox .navigation {
	margin-bottom: 40px;
}

#body .c-columnbox .navigation .catBtn ul {
	display: flex;
	flex-wrap: wrap;
	margin: -20px 0 0 -20px;
}

#body .c-columnbox .navigation .catBtn ul li {
	width: 235px;
	margin: 20px 0 0 20px;
	padding: 18px 20px;
	border: solid 1px #0070bb;
	border-radius: 100px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	background-image: url('../img/icon_arrow_down_off.png');
	background-repeat: no-repeat;
	background-position: right 20px center;
}

#body .c-columnbox .navigation .catBtn ul li:hover,
#body .c-columnbox .navigation .catBtn ul li.current-cat {
	background-color: #0070bb;
	background-image: url('../img/icon_arrow_down_on.png');
	color: #ffffff;
}

#body .c-columnbox .navigation p.right {
	font-size: 12px;
	margin-top: 20px;
	text-align: right;
}

#body .c-columnbox .detaile {
	margin-top: 60px;
	margin-bottom: 60px;
}

#body .c-columnbox__title {
	background-color: #0070bb;
	font-size: 18px;
	padding: 23px 30px;
	color: #ffffff;
	margin-bottom: 40px;
	line-height: 1;
	font-weight: bold;
}

#body .c-columnbox .detaile .qabox li {
	margin-top: 20px;
	text-align: left;
	font-size: 14px;
}

#body .c-columnbox .detaile .qabox li div.accordion_title {
	position: relative;
	padding: 25px 70px 25px 120px;
	border: 1px solid #798186;
	border-radius: 8px;
	background: url('../img/icon_faq_off.png') no-repeat right 30px center #798186;
	font-weight: 700;
	color: #fff;
	line-height: 1.8;
	cursor: pointer;
}

#body .c-columnbox .detaile .qabox li div.accordion_title span.qabox_Q {
	position: absolute;
	top: 50%;
	left: 50px;
	margin-top: -15px;
	font-size: 30px;
	line-height: 1.0;
}

#body .c-columnbox .detaile .qabox li div.accordion_title.active {
	border-color: #0070bb;
	background-color: #fff;
	background-image: url('../img/icon_faq_on.png');
	color: #1f1f1f;
}

#body .c-columnbox .detaile .qabox li div.accordion_title.active span.qabox_Q {
	color: #0070bb;
}

#body .c-columnbox .detaile .qabox li div.accordion_main {
	display: none;
	position: relative;
	padding: 30px 30px 30px 120px;
	line-height: 2.0;
}

#body .c-columnbox .detaile .qabox li div.accordion_main span.qabox_A {
	position: absolute;
	top: 30px;
	left: 52px;
	margin-top: -15px;
	font-size: 30px;
	font-weight: 700;
	color: #0070bb;
}

#body .c-columnbox .detaile .qabox li div.accordion_main a {
	color: inherit;
	text-decoration: underline;
}

#body .c-columnbox .detaile .qabox li div.accordion_main .list_number {
	padding: 0 0 0 25px;
}

#body .c-columnbox .detaile .qabox li div.accordion_main .list_number li {
	list-style: decimal;
	margin: 0 0 10px;
}

#body .c-columnbox .detaile p.right {
	font-size: 14px;
	margin-top: 20px;
	text-align: right;
}

#body .c-columnbox .detaile p.right a {
	color: inherit;
	border-bottom: solid 1px #000000;
}

@media (max-width: 767px) {
	#body .c-columnbox .navigation {
		padding: 30px;
	}

	#body .c-columnbox .navigation .box {
		font-size: 20px;
		border-radius: 0;
	}

	#body .c-columnbox .navigation p.right {
		font-size: 20px;
	}

	#body .c-columnbox .navigation .catBtn ul li {
		width: 280px;
		padding: 20px 30px;
		background-image: url('../img/icon_arrow_down_1f.png');
		background-position: right 15px center;
		font-size: 20px;
	}

	#body .c-columnbox .navigation .catBtn ul li:hover,
	#body .c-columnbox .navigation .catBtn ul li.current-cat {
		background-image: url('../img/icon_arrow_down_w.png');
	}

	#body .c-columnbox .detaile {
		margin-top: 96px;
	}

	#body .c-columnbox__title {
		font-size: 24px;
	}

	#body .c-columnbox .detaile .qabox li {
		font-size: 22px;
	}

	#body .c-columnbox .detaile .qabox li div.accordion_title {
		padding: 25px 70px 25px 80px;
		background: url('../img/icon_faq_off.png') no-repeat right 30px center #798186;
		font-size: 24px;
	}

	#body .c-columnbox .detaile .qabox li div.accordion_title span.qabox_Q {
		left: 30px;
	}

	#body .c-columnbox .detaile .qabox li div.accordion_title.active {
		background-image: url('../img/icon_faq_on.png');
	}

	#body .c-columnbox .detaile .qabox li div.accordion_main {
		padding: 30px 30px 30px 80px;
	}

	#body .c-columnbox .detaile .qabox li div.accordion_main span.qabox_A {
		left: 30px;
		margin-top: -10px;
	}

	#body .c-columnbox .detaile p.right {
		font-size: 20px;
	}
}

#body .c-news-list {
	line-height: 1;
}

#body .c-news-list:first-child {
	margin-top: 0;
}

#body .c-news-list:last-child {
	margin-bottom: -20px;
}

#body .c-news-list .column-detail {
	height: 100%;
	width: 100%;
}

#body .c-news-list a {
	text-decoration: none;
	min-height: 100%;
}



.tr_head {
	margin: auto;
	padding: 0 30px;
}

@media (min-width: 768px) {
	.tr_head {
		padding: 0;
	}
}


/*
-------------------------------------------------------

	コラム人気記事

-------------------------------------------------------
*/
.c-popular-articles {
	margin-bottom: 80px;
}
.post-template-single-column .postbox .flex .left h3.c-popular-articles__ttl {
	background-color: #0070bb;
    font-size: 18px;
    padding: 23px 30px;
    color: #ffffff;
    line-height: 1;
    font-weight: bold;
	margin-bottom: 0;
}

.c-popular-articles__list {
	background: #e5f0f8;
	padding: 40px 100px;
	display: flex;
	justify-content: space-between;
}

.c-popular-articles__item {
	width: calc((100% - 200px) / 3 );
	display: flex;
	flex-direction: column;
}

.c-popular-articles__img {
	margin-bottom: 20px;
	position: relative;
}

.c-popular-articles__img::before {
	content: "";
	display: block;
	position: absolute;
	top: -5px;
	left: -5px;
	border-bottom: 50px solid transparent;
	border-left: 70px solid #cf9d01;
	z-index: 2;
}

.c-popular-articles__img::after {
	display: block;
	position: absolute;
	top: 3px;
	left: 0;
	color: #fff;
	font-weight: bold;
	z-index: 3;
}

.c-popular-articles__img--no01::after {
	content: "1位";
}

.c-popular-articles__img--no02::after {
	content: "2位";
}

.c-popular-articles__img--no03::after {
	content: "3位";
}

.c-popular-articles__img img {
	height: 120px;
	object-fit: cover;
	width: 100%;
}

.c-popular-articles__btn {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-template-single-column .postbox .flex .left h4.c-popular-articles__item-ttl {
	font-size: 16px;
    font-weight: 700;
    color: #0070bb;
	line-height: 1.3;
	margin-bottom: 15px;
}

.c-popular-articles__detail {
    display: block;
    margin: 0 auto;
    padding: 14px 22px;
    border: 1px solid #0070bb;
    border-radius: 60px;
    background: url(../img/icon_link_type_01_off.png) no-repeat right 11px center #fff;
    font-weight: 700;
    font-size: 14px;
    color: #1f1f1f;
    transition: .2s;
    width: 160px;
}

.c-popular-articles__detail:hover {
    background: url(../img/icon_link_type_01_on.png) no-repeat right 11px center #0070bb;
    color: #fff;
}

@media (max-width: 767px) {
	.c-popular-articles {
		margin-bottom: 50px;
	}

	.post-template-single-column .postbox .flex .left h3.c-popular-articles__ttl {
		font-size: 24px;
	}

	.c-popular-articles__list {
		padding: 50px 40px;
		flex-direction: column;
	}

	.c-popular-articles__item {
		width: 100%;
	}

	.c-popular-articles__item:not(:last-child) {
		margin-bottom: 50px;
	}

	.c-popular-articles__btn {
		flex-direction: row;
	}

	.c-popular-articles__img {
		margin-bottom: 0;
		width: calc(50% - 15px);
	}

	.c-popular-articles__img img {
		height: 140px;
	}

	.c-popular-articles__txt-area {
		width: calc( 50% - 15px);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.post-template-single-column .postbox .flex .left h4.c-popular-articles__item-ttl {
		font-size: 18px;
	}

	.c-popular-articles__detail {
		padding: 16px 30px;
		font-size: 16px;
		width: 180px;
	}

	.c-popular-articles__img::after {
		font-size: 20px;
	}

	.c-popular-articles__img::before {
		border-bottom: 60px solid transparent;
		border-left: 80px solid #cf9d01;
	}
}

@media (min-width: 768px) {
	.post-template-single-column .postbox .flex .left .c-popular-articles__txt-area {
		display: flex;
		flex-direction: column;
		flex: 1;
	}
	
	.post-template-single-column .postbox .flex .left h4.c-popular-articles__item-ttl {
		flex: 2;
	}
}

/*
-------------------------------------------------------

	@@Project

-------------------------------------------------------
*/

/*
-------------------------------------------------------

	固定ページ：ロゴ

-------------------------------------------------------
*/
#header figure img {
	width: 280px;
}

/*
-------------------------------------------------------

	サブビジュアル

-------------------------------------------------------
*/
.sub_main {
	width: 100%;
	min-width: 1200px;
	height: 440px;
	background-color: #edeeef;
	background-repeat: no-repeat;
	background-position: top center;
}

.sub_main .inner {
	display: table;
	height: 100%;
}

.sub_main .inner>div {
	display: table-cell;
	vertical-align: middle;
}

.sub_main .inner>div .h1_box {
	display: table;
	width: 100%;
	height: 300px;
	border-radius: 8px;
	background: #fff;
}

.sub_main .inner>div .h1_box .lead {
	color: red;
	font-weight: bold;
	font-size: 20px;
	margin-top: 20px;
	display: block;
}

.sub_main .inner>div .h1_box>div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.sub_main .inner>div .h1_box>div .h1_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	text-transform: uppercase;
}

.sub_main .inner>div .h1_box>div small {
	font-weight: normal;
}

.sub_main .inner>div .h1_box>div h1 {
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 1px;
}

.sub_main .inner>div .h1_box>div h1 span {
	display: block;
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
}

.sub_main .inner>div .h1_box>div p.txt {
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
}

.sub_main .pankz {
	position: absolute;
	left: 0;
	bottom: 27px;
	font-size: 12px;
}

.sub_main .pankz ul {
	display: flex;
}

.sub_main .pankz ul li {
	position: relative;
}

.sub_main .pankz ul li+li {
	margin-left: 40px;
}

.sub_main .pankz ul li+li:before {
	content: '/';
	position: absolute;
	top: 0;
	left: -25px;
}

.sub_main .pankz ul li a {
	white-space: nowrap;
	color: #1f1f1f;
}

.sub_main .inner>div .h2_box {
	display: table;
	width: 100%;
	height: 300px;
	border-radius: 8px;
	background: #fff;
}

.sub_main .inner>div .h2_box .lead {
	color: red;
	font-weight: bold;
	font-size: 20px;
	margin-top: 20px;
	display: block;
}

.sub_main .inner>div .h2_box>div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.sub_main .inner>div .h2_box>div .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	text-transform: uppercase;
}

.sub_main .inner>div .h2_box>div .h2_txt {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	color: #0070bb;
	text-transform: uppercase;
}

.sub_main .inner>div .h2_box>div h2 {
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 1px;
}

.sub_main .inner>div .h2_box>div h2 span {
	display: block;
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
}

.sub_main .inner>div .h2_box>div p.txt {
	margin-top: 30px;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
}

/* サブビジュアル背景設定 */
.sub_main.treatment {
	background-image: url('../img/sub_main_treatment.jpg');
}

.sub_main.treatment01 {
	background-image: url('../img/sub_main_treatment01.jpg');
}

.sub_main.clinic {
	background-image: url('../img/sub_main_clinic.jpg');
}

.sub_main.flow {
	background-image: url('../img/sub_main_treatment.jpg');
}

.sub_main.clean {
	background-image: url('../img/sub_main_clean.jpg');
}

.sub_main.onepoint {
	background-image: url('../img/sub_main_onepoint.jpg');
}

.sub_main.p-diagnosis {
	background-image: url('../img/sub_main_diagnosis.jpg');
}

.sub_main.case {
	background-image: url('../img/sub_main_case.jpg');
}

.sub_main.mail {
	background-image: url('../img/sub_main_mail.jpg');
}

.sub_main.contact {
	background-image: url('../img/sub_main_contact.jpg');
}









@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	body {
		font-size: 24px;
	}


	/*
-------------------------------------------------------

	固定ページ：ロゴ

-------------------------------------------------------
*/
	/* 内部リンク位置調整 */
	.link_po {
		margin-top: 0;
		padding-top: 0;
	}

	/*
-------------------------------------------------------

	サブビジュアル

-------------------------------------------------------
*/
	.sub_main {
		min-width: 100%;
		height: 380px;
		padding: 0 30px;
	}

	.sub_main .inner>div .h1_box {
		height: 250px;
	}

	.sub_main .inner>div .h1_box>div {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
	}

	.sub_main .inner>div .h1_box>div .h1_txt {
		font-size: 22px;
	}

	.sub_main .inner>div .h1_box>div h1 {
		font-size: 26px;
	}

	.sub_main .inner>div .h1_box>div h1 span {
		margin-top: 25px;
		font-size: 18px;
		font-weight: 500;
	}

	.sub_main .inner>div .h1_box>div p.txt {
		margin-top: 25px;
		font-size: 18px;
		font-weight: 500;
	}

	.sub_main .inner>div .h2_box {
		height: 250px;
	}

	.sub_main .inner>div .h2_box>div {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
	}

	.sub_main .inner>div .h2_box>div .h2_txt {
		font-size: 22px;
	}

	.sub_main .inner>div .h2_box>div h2 {
		font-size: 32px;
	}

	.sub_main .inner>div .h2_box>div h2 span {
		margin-top: 25px;
		font-size: 18px;
		font-weight: 500;
	}

	.sub_main .inner>div .h2_box>div p.txt {
		margin-top: 25px;
		font-size: 18px;
		font-weight: 500;
	}

	.sub_main .pankz {
		width: 580px;
		overflow: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		bottom: 18px;
		font-size: 18px;
	}

	/* サブビジュアル背景設定 */
	.sub_main.treatment {
		background-image: url('../img/sub_main_treatment.jpg');
	}

	/*
	/*----------------------------------------------------------*/
}

.career-wrap .history {
	margin-bottom: 5px;
}

.p-dr-sig {
	text-align: right;
	font-size: 14px;
	margin-top: 20px;
}

@media (max-width: 767px) {
	.career-wrap {
		padding: 30px;
	}

	.clinic.dr .career-wrap .txt {
		font-size: 24px;
	}

	.career-wrap .history {
		text-align: center;
		margin: 10px;
	}

	.p-dr-sig {
		font-size: 22px;
		margin-top: 20px;
		letter-spacing: -0.05em;
		margin-bottom: 20px;
	}
}



/*	サイトマップ：sitemap
===============================================================*/
.sub_main.sitemap {
	background-image: url('../img/sub_main_sitemap.jpg');
}

.sitemap.detaile {
	padding-top: 60px;
	margin-bottom: 120px;
}

.sitemap.detaile .h3_txt {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
	border-bottom: solid 1px #0070bb;
	padding: 0 0 20px 10px;
}

.sitemap.detaile .box {
	width: 480px;
	margin-top: 45px;
}

.sitemap.detaile .flex {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sitemap.detaile .list_lace li a {
	color: #1f1f1f;
	display: block;
	padding: 15px 10px;
	position: relative;
}

.sitemap.detaile .list_lace li a::before {
	content: "";
	display: inline-block;
	height: 0;
	width: 0;
	margin-right: 10px;
	border: solid transparent;
	border-width: 5px 0 5px 8px;
	border-left-color: #0070bb;
}

.sitemap.detaile .list_lace li.s_level a::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 0;
	width: 20px;
	margin-right: 10px;
	border: none transparent;
	border-top: dotted 1px #0070bb;
}

.p-footer-CVA__section.sitemap_cta{padding:0 0 50px;}
.sitemap_cta .inner{
	border-top: 1px dashed #798186;
    padding: 50px 0 0 0;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.sitemap.detaile {
		padding: 60px 30px;
		margin-bottom: 100px;
	}

	.sitemap.detaile .h3_txt {
		font-size: 22px;
	}

	.sitemap.detaile .txt {
		font-size: 24px;
	}

	.sitemap.detaile .box {
		width: 640px;
		margin: 40px -30px 0;
		padding: 0 30px;
		border-radius: 0;
	}

	.sitemap.detaile .box .flex {
		display: block;
	}

	.sitemap.detaile .list_lace li {
		font-size: 20px;
	}

	.sitemap.detaile .list_lace li a::before {
		border-width: 7px 0 7px 12px;
	}
	.p-footer-CVA__section.sitemap_cta{padding:0 30px 50px;}

	.sitemap_cta .inner{
		border-top: 1px dashed #798186;
		padding: 50px 0 0 0;
	}

	/*----------------------------------------------------------*/
}

/*	プライバシーポリシー：privacy
===============================================================*/
.privacy.detaile {
	min-width: 1200px;
	padding-top: 60px;
	margin-bottom: 120px;
}

.privacy.detaile .h4_txt {
	margin-top: 45px;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	color: #0070bb;
	border-bottom: solid 1px #0070bb;
	padding: 0 0 20px 0;
}
.privacy.detaile .h5_txt {
	font-size: 100%;
	color: #0070bb;
	position: relative;
	margin: 2em 0 0.5em;
	padding-left: 1.75em;
}
.privacy.detaile .h5_txt:before {
	content: "";
	width: 1.5em;
	height: 1px;
	background: #0070bb;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.privacy.detaile .box {
	font-size: 14px;
	line-height: 2.5;
}

.privacy.detaile .list_normal li {
	margin: 0 0 10px;
	text-indent: -1.6rem;
	padding-left: 1.6rem;
}

.privacy.detaile .list_normal li::before {
	content: '■';
	margin-right: 5px;
	font-size: inherit;
	font-family: sans-serif;
	color: #2d7dc8;
}

.privacy.detaile .list_number {
	padding: 0 0 0 25px;
}

.privacy.detaile .list_number li {
	list-style: decimal;
	margin: 0 0 10px;
}

.privacy.detaile .table_01 {
	margin-top: 50px;
	width: 100%;
}

.privacy.detaile .table_01 tr+tr {
	border-top: dashed 1px #000000;
}

.privacy.detaile .table_01 th {
	background-color: #f0f2f2;
	width: 270px;
	padding: 30px 0;
}

.privacy.detaile .table_01 td {
	padding: 30px 60px;
}

.privacy.detaile .table_01 td a {
	color: inherit;
}

@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.privacy.detaile {
		min-width: auto;
		padding: 60px 30px;
		margin-bottom: 100px;
	}

	.privacy.detaile .h4_txt {
		font-size: 22px;
	}

	.privacy.detaile .txt {
		font-size: 24px;
	}

	.privacy.detaile .box {
		font-size: 20px;
		width: 640px;
		margin: 40px -30px 0;
		padding: 0 30px;
		border-radius: 0;
	}

	.privacy.detaile .table_01 th {
		width: 200px;
	}

	/*----------------------------------------------------------*/
}


/*	その他・共通：
===============================================================*/

.h3_subtit {
	font-size: 18px;
	color: #0070bb;
}

.h2_left {
	text-align: left;
}

.link_txt {
	margin-top: 20px;
	text-align: left;
}

.link_txt a {
	color: inherit;
	text-decoration: underline;
}

.left_txt {
	text-align: left;
}


@media (max-width: 767px) {

	/*----------------------------------------------------------*/
	.h3_subtit {
		font-size: 26px;
	}

	.h2_left {
		text-align: center;
	}

	.left_txt {
		line-height: 1.8;
	}


	/*----------------------------------------------------------*/
}


/*
-------------------------------------------------------

	@@Utility

-------------------------------------------------------
*/
/* display */
.d-inline {
	display: inline !important;
}

.d-none {
	display: none !important;
}

@media (min-width: 768px) {
	.d-pc-none {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.d-sp-none {
		display: none !important;
	}
}

/* width */
.w-100 {
	width: 100% !important;
}

.w-auto {
	width: auto !important;
}

@media (min-width: 768px) {
	.w-pc-100 {
		width: 100% !important;
	}

	.w-pc-320 {
		width: 320px !important;
	}

	.w-pc-auto {
		width: auto !important;
	}
}

@media (max-width: 767px) {
	.w-sp-100 {
		width: 100% !important;
	}

	.w-sp-auto {
		width: auto !important;
	}
}

.max-w-720{
	max-width: 720px;
}

/* height */
.h-100 {
	width: 100% !important;
}

.w-auto {
	width: auto !important;
}

@media (min-width: 768px) {
	.w-pc-100 {
		width: 100% !important;
	}

	.w-pc-auto {
		width: auto !important;
	}
}

/* text */
.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}
@media (min-width: 768px) {
	.text-pc-left {
		text-align: left !important;
	}
	
	.text-pc-right {
		text-align: right !important;
	}
	
	.text-pc-center {
		text-align: center !important;
	}
}
/* text-color */
.text-white {
	color: #fff !important;
}

.text-light-gray {
	color: #edeeef !important;
}

.text-dark-gray {
	color: #798186 !important;
}

.text-black {
	color: #1f1f1f !important;
}

.text-blue {
	color: #0070bb !important;
}

/* background-color */
.bg-white {
	background-color: #fff !important;
}

.bg-light-gray {
	background-color: #edeeef !important;
}

.bg-dark-gray {
	background-color: #798186 !important;
}

.bg-black {
	background-color: #1f1f1f !important;
}

.bg-blue {
	background-color: #0070bb;
}


/* font size */
.f10 {
	font-size: 63% !important;
}

/*10px*/
.f11 {
	font-size: 69% !important;
}

/*11px*/
.f12 {
	font-size: 75% !important;
}

/*12px*/
.f13 {
	font-size: 82% !important;
}

/*13px*/
.f14 {
	font-size: 88% !important;
}

/*14px*/
.f15 {
	font-size: 94% !important;
}

/*15px*/
.f16 {
	font-size: 100% !important;
}

/*16px*/
.f18 {
	font-size: 113% !important;
}

/*18px*/
.f20 {
	font-size: 125% !important;
}

/*20px*/
.f22 {
	font-size: 138% !important;
}

/*22px*/
.f24 {
	font-size: 150% !important;
}

/*24px*/

/* overflow */
.overflow-scroll-x {
	overflow-x: scroll !important;
}

@media (max-width: 767px) {
	.overflow-sp-scroll-x {
		overflow-x: scroll !important;
	}
}

@media (min-width: 768px) {
	.overflow-pc-scroll-x {
		overflow-x: scroll !important;
	}
}

/* font-size */
.fz50 {
	font-size: 50% !important;
}

.fz75 {
	font-size: 75% !important;
}

/* margin,padding */
.m0 {
	margin-top: 0 !important;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
}
.mx-auto{
	margin: auto;
}
.mx0 {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.my0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.mt0 {
	margin-top: 0 !important
}

.mb0 {
	margin-bottom: 0 !important
}

.mr0 {
	margin-right: 0 !important
}

.ml0 {
	margin-left: 0 !important
}

.p0 {
	padding-top: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	padding-left: 0 !important;
}

.px0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.py0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.pt0 {
	padding-top: 0 !important
}

.pb0 {
	padding-bottom: 0 !important
}

.pr0 {
	padding-right: 0 !important
}

.pl0 {
	padding-left: 0 !important
}

.m5 {
	margin-top: 5px !important;
	margin-right: 5px !important;
	margin-bottom: 5px !important;
	margin-left: 5px !important;
}

.mx5 {
	margin-right: 5px !important;
	margin-left: 5px !important;
}

.my5 {
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}

.mt5 {
	margin-top: 5px !important
}

.mb5 {
	margin-bottom: 5px !important
}

.mr5 {
	margin-right: 5px !important
}

.ml5 {
	margin-left: 5px !important
}

.p5 {
	padding-top: 5px !important;
	padding-right: 5px !important;
	padding-bottom: 5px !important;
	padding-left: 5px !important;
}

.px5 {
	padding-right: 5px !important;
	padding-left: 5px !important;
}

.py5 {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}

.pt5 {
	padding-top: 5px !important
}

.pb5 {
	padding-bottom: 5px !important
}

.pr5 {
	padding-right: 5px !important
}

.pl5 {
	padding-left: 5px !important
}

.m10 {
	margin-top: 10px !important;
	margin-right: 10px !important;
	margin-bottom: 10px !important;
	margin-left: 10px !important;
}

.mx10 {
	margin-right: 10px !important;
	margin-left: 10px !important;
}

.my10 {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.mt10 {
	margin-top: 10px !important
}

.mb10 {
	margin-bottom: 10px !important
}

.mr10 {
	margin-right: 10px !important
}

.ml10 {
	margin-left: 10px !important
}

.p10 {
	padding-top: 10px !important;
	padding-right: 10px !important;
	padding-bottom: 10px !important;
	padding-left: 10px !important;
}

.px10 {
	padding-right: 10px !important;
	padding-left: 10px !important;
}

.py10 {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

.pt10 {
	padding-top: 10px !important
}

.pb10 {
	padding-bottom: 10px !important
}

.pr10 {
	padding-right: 10px !important
}

.pl10 {
	padding-left: 10px !important
}

.m15 {
	margin-top: 15px !important;
	margin-right: 15px !important;
	margin-bottom: 15px !important;
	margin-left: 15px !important;
}

.mx15 {
	margin-right: 15px !important;
	margin-left: 15px !important;
}

.my15 {
	margin-top: 15px !important;
	margin-bottom: 15px !important;
}

.mt15 {
	margin-top: 15px !important
}

.mb15 {
	margin-bottom: 15px !important
}

.mr15 {
	margin-right: 15px !important
}

.ml15 {
	margin-left: 15px !important
}

.p15 {
	padding-top: 15px !important;
	padding-right: 15px !important;
	padding-bottom: 15px !important;
	padding-left: 15px !important;
}

.px15 {
	padding-right: 15px !important;
	padding-left: 15px !important;
}

.py15 {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.pt15 {
	padding-top: 15px !important
}

.pb15 {
	padding-bottom: 15px !important
}

.pr15 {
	padding-right: 15px !important
}

.pl15 {
	padding-left: 15px !important
}

.m20 {
	margin-top: 20px !important;
	margin-right: 20px !important;
	margin-bottom: 20px !important;
	margin-left: 20px !important;
}

.mx20 {
	margin-right: 20px !important;
	margin-left: 20px !important;
}

.my20 {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}

.mt20 {
	margin-top: 20px !important
}

.mb20 {
	margin-bottom: 20px !important
}

.mr20 {
	margin-right: 20px !important
}

.ml20 {
	margin-left: 20px !important
}

.p20 {
	padding-top: 20px !important;
	padding-right: 20px !important;
	padding-bottom: 20px !important;
	padding-left: 20px !important;
}

.px20 {
	padding-right: 20px !important;
	padding-left: 20px !important;
}

.py20 {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.pt20 {
	padding-top: 20px !important
}

.pb20 {
	padding-bottom: 20px !important
}

.pr20 {
	padding-right: 20px !important
}

.pl20 {
	padding-left: 20px !important
}

.m25 {
	margin-top: 25px !important;
	margin-right: 25px !important;
	margin-bottom: 25px !important;
	margin-left: 25px !important;
}

.mx25 {
	margin-right: 25px !important;
	margin-left: 25px !important;
}

.my25 {
	margin-top: 25px !important;
	margin-bottom: 25px !important;
}

.mt25 {
	margin-top: 25px !important
}

.mb25 {
	margin-bottom: 25px !important
}

.mr25 {
	margin-right: 25px !important
}

.ml25 {
	margin-left: 25px
}

.p25 {
	padding-top: 25px !important;
	padding-right: 25px !important;
	padding-bottom: 25px !important;
	padding-left: 25px !important;
}

.px25 {
	padding-right: 25px !important;
	padding-left: 25px !important;
}

.py25 {
	padding-top: 25px !important;
	padding-bottom: 25px !important;
}

.pt25 {
	padding-top: 25px
}

.pb25 {
	padding-bottom: 25px
}

.pr25 {
	padding-right: 25px
}

.pl25 {
	padding-left: 25px
}

.m30 {
	margin-top: 30px !important;
	margin-right: 30px !important;
	margin-bottom: 30px !important;
	margin-left: 30px !important;
}

.mx30 {
	margin-right: 30px !important;
	margin-left: 30px !important;
}

.my30 {
	margin-top: 30px !important;
	margin-bottom: 30px !important;
}

.mt30 {
	margin-top: 30px !important
}

.mb30 {
	margin-bottom: 30px !important
}

.mr30 {
	margin-right: 30px !important
}

.ml30 {
	margin-left: 30px
}

.p30 {
	padding-top: 30px !important;
	padding-right: 30px !important;
	padding-bottom: 30px !important;
	padding-left: 30px !important;
}

.px30 {
	padding-right: 30px !important;
	padding-left: 30px !important;
}

.py30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.pt30 {
	padding-top: 30px
}

.pb30 {
	padding-bottom: 30px
}

.pr30 {
	padding-right: 30px
}

.pl30 {
	padding-left: 30px
}

.m35 {
	margin-top: 35px !important;
	margin-right: 35px !important;
	margin-bottom: 35px !important;
	margin-left: 35px !important;
}

.mx35 {
	margin-right: 35px !important;
	margin-left: 35px !important;
}

.my35 {
	margin-top: 35px !important;
	margin-bottom: 35px !important;
}


.mt35 {
	margin-top: 35px !important
}

.mb35 {
	margin-bottom: 35px !important
}

.mr35 {
	margin-right: 35px !important
}

.ml35 {
	margin-left: 35px
}

.p35 {
	padding-top: 35px !important;
	padding-right: 35px !important;
	padding-bottom: 35px !important;
	padding-left: 35px !important;
}

.px35 {
	padding-right: 35px !important;
	padding-left: 35px !important;
}

.py35 {
	padding-top: 35px !important;
	padding-bottom: 35px !important;
}

.pt35 {
	padding-top: 35px
}

.pb35 {
	padding-bottom: 35px
}

.pr35 {
	padding-right: 35px
}

.pl35 {
	padding-left: 35px
}

.m40 {
	margin-top: 40px !important;
	margin-right: 40px !important;
	margin-bottom: 40px !important;
	margin-left: 40px !important;
}

.mx40 {
	margin-right: 40px !important;
	margin-left: 40px !important;
}

.my40 {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}

.mt40 {
	margin-top: 40px !important
}

.mb40 {
	margin-bottom: 40px !important
}

.mr40 {
	margin-right: 40px !important
}

.ml40 {
	margin-left: 40px
}

.p40 {
	padding-top: 40px !important;
	padding-right: 40px !important;
	padding-bottom: 40px !important;
	padding-left: 40px !important;
}

.px40 {
	padding-right: 40px !important;
	padding-left: 40px !important;
}

.py40 {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

.pt40 {
	padding-top: 40px
}

.pb40 {
	padding-bottom: 40px
}

.pr40 {
	padding-right: 40px
}

.pl40 {
	padding-left: 40px
}

.m45 {
	margin-top: 45px !important;
	margin-right: 45px !important;
	margin-bottom: 45px !important;
	margin-left: 45px !important;
}

.mx45 {
	margin-right: 45px !important;
	margin-left: 45px !important;
}

.my45 {
	margin-top: 45px !important;
	margin-bottom: 45px !important;
}

.mt45 {
	margin-top: 45px !important
}

.mb45 {
	margin-bottom: 45px !important
}

.mr45 {
	margin-right: 45px !important
}

.ml45 {
	margin-left: 45px
}

.p45 {
	padding-top: 45px !important;
	padding-right: 45px !important;
	padding-bottom: 45px !important;
	padding-left: 45px !important;
}

.px45 {
	padding-right: 45px !important;
	padding-left: 45px !important;
}

.py45 {
	padding-top: 45px !important;
	padding-bottom: 45px !important;
}

.pt45 {
	padding-top: 45px
}

.pb45 {
	padding-bottom: 45px
}

.pr45 {
	padding-right: 45px
}

.pl45 {
	padding-left: 45px
}

.m50 {
	margin-top: 50px !important;
	margin-right: 50px !important;
	margin-bottom: 50px !important;
	margin-left: 50px !important;
}

.mx50 {
	margin-right: 50px !important;
	margin-left: 50px !important;
}

.my50 {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}

.mt50 {
	margin-top: 50px !important
}

.mb50 {
	margin-bottom: 50px !important
}

.mr50 {
	margin-right: 50px !important
}

.ml50 {
	margin-left: 50px
}

.p50 {
	padding-top: 50px !important;
	padding-right: 50px !important;
	padding-bottom: 50px !important;
	padding-left: 50px !important;
}

.px50 {
	padding-right: 50px !important;
	padding-left: 50px !important;
}

.py50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.pt50 {
	padding-top: 50px
}

.pb50 {
	padding-bottom: 50px
}

.pr50 {
	padding-right: 50px
}

.pl50 {
	padding-left: 50px
}

.m60 {
	margin-top: 60px !important;
	margin-right: 60px !important;
	margin-bottom: 60px !important;
	margin-left: 60px !important;
}

.mx60 {
	margin-right: 60px !important;
	margin-left: 60px !important;
}

.my60 {
	margin-top: 60px !important;
	margin-bottom: 60px !important;
}

.mt60 {
	margin-top: 60px !important
}

.mb60 {
	margin-bottom: 60px !important
}

.mr60 {
	margin-right: 60px !important
}

.ml60 {
	margin-left: 60px
}

.p60 {
	padding-top: 60px !important;
	padding-right: 60px !important;
	padding-bottom: 60px !important;
	padding-left: 60px !important;
}

.px60 {
	padding-right: 60px !important;
	padding-left: 60px !important;
}

.py60 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.pt60 {
	padding-top: 60px
}

.pb60 {
	padding-bottom: 60px
}

.pr60 {
	padding-right: 60px
}

.pl60 {
	padding-left: 60px
}

.m70 {
	margin-top: 70px !important;
	margin-right: 70px !important;
	margin-bottom: 70px !important;
	margin-left: 70px !important;
}

.mx70 {
	margin-right: 70px !important;
	margin-left: 70px !important;
}

.my70 {
	margin-top: 70px !important;
	margin-bottom: 70px !important;
}

.mt70 {
	margin-top: 70px !important
}

.mb70 {
	margin-bottom: 70px !important
}

.mr70 {
	margin-right: 70px !important
}

.ml70 {
	margin-left: 70px
}

.p70 {
	padding-top: 70px !important;
	padding-right: 70px !important;
	padding-bottom: 70px !important;
	padding-left: 70px !important;
}

.px70 {
	padding-right: 70px !important;
	padding-left: 70px !important;
}

.py70 {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.pt70 {
	padding-top: 70px
}

.pb70 {
	padding-bottom: 70px
}

.pr70 {
	padding-right: 70px
}

.pl70 {
	padding-left: 70px
}

.m80 {
	margin-top: 80px !important;
	margin-right: 80px !important;
	margin-bottom: 80px !important;
	margin-left: 80px !important;
}

.mx80 {
	margin-right: 80px !important;
	margin-left: 80px !important;
}

.my80 {
	margin-top: 80px !important;
	margin-bottom: 80px !important;
}

.mt80 {
	margin-top: 80px !important
}

.mb80 {
	margin-bottom: 80px !important
}

.mr80 {
	margin-right: 80px !important
}

.ml80 {
	margin-left: 80px
}

.p80 {
	padding-top: 80px !important;
	padding-right: 80px !important;
	padding-bottom: 80px !important;
	padding-left: 80px !important;
}

.px80 {
	padding-right: 80px !important;
	padding-left: 80px !important;
}

.py80 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

.pt80 {
	padding-top: 80px
}

.pb80 {
	padding-bottom: 80px
}

.pr80 {
	padding-right: 80px
}

.pl80 {
	padding-left: 80px
}

@media (max-width: 767px) {
	.m-sp-0 {
		margin-top: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 0 !important;
		margin-left: 0 !important;
	}

	.mx-sp-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.my-sp-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.mt-sp-0 {
		margin-top: 0 !important
	}

	.mb-sp-0 {
		margin-bottom: 0 !important
	}

	.mr-sp-0 {
		margin-right: 0 !important
	}

	.ml-sp-0 {
		margin-left: 0 !important
	}

	.p-sp-0 {
		padding-top: 0 !important;
		padding-right: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 0 !important;
	}

	.px-sp-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.py-sp-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.pt-sp-0 {
		padding-top: 0 !important
	}

	.pb-sp-0 {
		padding-bottom: 0 !important
	}

	.pr-sp-0 {
		padding-right: 0 !important
	}

	.pl-sp-0 {
		padding-left: 0 !important
	}
}

@media (min-width: 768px) {
	.m-pc-0 {
		margin-top: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 0 !important;
		margin-left: 0 !important;
	}

	.mx-pc-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.my-pc-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.mt-pc-0 {
		margin-top: 0 !important
	}

	.mb-pc-0 {
		margin-bottom: 0 !important
	}

	.mr-pc-0 {
		margin-right: 0 !important
	}

	.ml-pc-0 {
		margin-left: 0 !important
	}

	.p-pc-0 {
		padding-top: 0 !important;
		padding-right: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 0 !important;
	}

	.px-pc-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.py-pc-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.pt-pc-0 {
		padding-top: 0 !important
	}

	.pb-pc-0 {
		padding-bottom: 0 !important
	}

	.pr-pc-0 {
		padding-right: 0 !important
	}

	.pl-pc-0 {
		padding-left: 0 !important
	}

	.m-pc-20 {
		margin-top: 20px !important;
		margin-right: 20px !important;
		margin-bottom: 20px !important;
		margin-left: 20px !important;
	}

	.mx-pc-20 {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.my-pc-20 {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}

	.mt-pc-20 {
		margin-top: 20px !important
	}

	.mb-pc-20 {
		margin-bottom: 20px !important
	}

	.mr-pc-20 {
		margin-right: 20px !important
	}

	.ml-pc-20 {
		margin-left: 20px
	}

	.p-pc-20 {
		padding-top: 20px !important;
		padding-right: 20px !important;
		padding-bottom: 20px !important;
		padding-left: 20px !important;
	}

	.px-pc-20 {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.py-pc-20 {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}

	.pt-pc-20 {
		padding-top: 20px
	}

	.pb-pc-20 {
		padding-bottom: 20px
	}

	.pr-pc-20 {
		padding-right: 20px
	}

	.pl-pc-20 {
		padding-left: 20px
	}

	.m-pc-30 {
		margin-top: 30px !important;
		margin-right: 30px !important;
		margin-bottom: 30px !important;
		margin-left: 30px !important;
	}

	.mx-pc-30 {
		margin-right: 30px !important;
		margin-left: 30px !important;
	}

	.my-pc-30 {
		margin-top: 30px !important;
		margin-bottom: 30px !important;
	}

	.mt-pc-30 {
		margin-top: 30px !important
	}

	.mb-pc-30 {
		margin-bottom: 30px !important
	}

	.mr-pc-30 {
		margin-right: 30px !important
	}

	.ml-pc-30 {
		margin-left: 30px
	}

	.p-pc-30 {
		padding-top: 30px !important;
		padding-right: 30px !important;
		padding-bottom: 30px !important;
		padding-left: 30px !important;
	}

	.px-pc-30 {
		padding-right: 30px !important;
		padding-left: 30px !important;
	}

	.py-pc-30 {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}

	.pt-pc-30 {
		padding-top: 30px
	}

	.pb-pc-30 {
		padding-bottom: 30px
	}

	.pr-pc-30 {
		padding-right: 30px
	}

	.pl-pc-30 {
		padding-left: 30px
	}

	.m-pc-40 {
		margin-top: 40px !important;
		margin-right: 40px !important;
		margin-bottom: 40px !important;
		margin-left: 40px !important;
	}

	.mx-pc-40 {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.my-pc-40 {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}

	.mt-pc-40 {
		margin-top: 40px !important
	}

	.mb-pc-40 {
		margin-bottom: 40px !important
	}

	.mr-pc-40 {
		margin-right: 40px !important
	}

	.ml-pc-40 {
		margin-left: 40px
	}

	.p-pc-40 {
		padding-top: 40px !important;
		padding-right: 40px !important;
		padding-bottom: 40px !important;
		padding-left: 40px !important;
	}

	.px-pc-40 {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.py-pc-40 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.pt-pc-40 {
		padding-top: 40px
	}

	.pb-pc-40 {
		padding-bottom: 40px
	}

	.pr-pc-40 {
		padding-right: 40px
	}

	.pl-pc-40 {
		padding-left: 40px
	}

	.m-pc-50 {
		margin-top: 50px !important;
		margin-right: 50px !important;
		margin-bottom: 50px !important;
		margin-left: 50px !important;
	}

	.mx-pc-50 {
		margin-right: 50px !important;
		margin-left: 50px !important;
	}

	.my-pc-50 {
		margin-top: 50px !important;
		margin-bottom: 50px !important;
	}

	.mt-pc-50 {
		margin-top: 50px !important
	}

	.mb-pc-50 {
		margin-bottom: 50px !important
	}

	.mr-pc-50 {
		margin-right: 50px !important
	}

	.ml-pc-50 {
		margin-left: 50px
	}

	.m-pc-neg50 {
		margin-top: -50px !important;
		margin-right: -50px !important;
		margin-bottom: -50px !important;
		margin-left: -50px !important;
	}

	.mx-pc-neg50 {
		margin-right: -50px !important;
		margin-left: -50px !important;
	}

	.my-pc-neg50 {
		margin-top: -50px !important;
		margin-bottom: -50px !important;
	}

	.mt-pc-neg50 {
		margin-top: -50px !important
	}

	.mb-pc-neg50 {
		margin-bottom: -50px !important
	}

	.mr-pc-neg50 {
		margin-right: -50px !important
	}

	.ml-pc-neg50 {
		margin-left: -50px
	}

	.p-pc-50 {
		padding-top: 50px !important;
		padding-right: 50px !important;
		padding-bottom: 50px !important;
		padding-left: 50px !important;
	}

	.px-pc-50 {
		padding-right: 50px !important;
		padding-left: 50px !important;
	}

	.py-pc-50 {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

	.pt-pc-50 {
		padding-top: 50px
	}

	.pb-pc-50 {
		padding-bottom: 50px
	}

	.pr-pc-50 {
		padding-right: 50px
	}

	.pl-pc-50 {
		padding-left: 50px
	}

	.m-pc-60 {
		margin-top: 60px !important;
		margin-right: 60px !important;
		margin-bottom: 60px !important;
		margin-left: 60px !important;
	}

	.mx-pc-60 {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.my-pc-60 {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}

	.mt-pc-60 {
		margin-top: 60px !important
	}

	.mb-pc-60 {
		margin-bottom: 60px !important
	}

	.mr-pc-60 {
		margin-right: 60px !important
	}

	.ml-pc-60 {
		margin-left: 60px
	}

	.p-pc-60 {
		padding-top: 60px !important;
		padding-right: 60px !important;
		padding-bottom: 60px !important;
		padding-left: 60px !important;
	}

	.px-pc-60 {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.py-pc-60 {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.pt-pc-60 {
		padding-top: 60px
	}

	.pb-pc-60 {
		padding-bottom: 60px
	}

	.pr-pc-60 {
		padding-right: 60px
	}

	.pl-pc-60 {
		padding-left: 60px
	}

	.m-pc-70 {
		margin-top: 70px !important;
		margin-right: 70px !important;
		margin-bottom: 70px !important;
		margin-left: 70px !important;
	}

	.mx-pc-70 {
		margin-right: 70px !important;
		margin-left: 70px !important;
	}

	.my-pc-70 {
		margin-top: 70px !important;
		margin-bottom: 70px !important;
	}

	.mt-pc-70 {
		margin-top: 70px !important
	}

	.mb-pc-70 {
		margin-bottom: 70px !important
	}

	.mr-pc-70 {
		margin-right: 70px !important
	}

	.ml-pc-70 {
		margin-left: 70px
	}

	.p-pc-70 {
		padding-top: 70px !important;
		padding-right: 70px !important;
		padding-bottom: 70px !important;
		padding-left: 70px !important;
	}

	.px-pc-70 {
		padding-right: 70px !important;
		padding-left: 70px !important;
	}

	.py-pc-70 {
		padding-top: 70px !important;
		padding-bottom: 70px !important;
	}

	.pt-pc-70 {
		padding-top: 70px
	}

	.pb-pc-70 {
		padding-bottom: 70px
	}

	.pr-pc-70 {
		padding-right: 70px
	}

	.pl-pc-70 {
		padding-left: 70px
	}

	.m-pc-80 {
		margin-top: 80px !important;
		margin-right: 80px !important;
		margin-bottom: 80px !important;
		margin-left: 80px !important;
	}

	.mx-pc-80 {
		margin-right: 80px !important;
		margin-left: 80px !important;
	}

	.my-pc-80 {
		margin-top: 80px !important;
		margin-bottom: 80px !important;
	}

	.mt-pc-80 {
		margin-top: 80px !important
	}

	.mb-pc-80 {
		margin-bottom: 80px !important
	}

	.mr-pc-80 {
		margin-right: 80px !important
	}

	.ml-pc-80 {
		margin-left: 80px
	}

	.p-pc-80 {
		padding-top: 80px !important;
		padding-right: 80px !important;
		padding-bottom: 80px !important;
		padding-left: 80px !important;
	}

	.px-pc-80 {
		padding-right: 80px !important;
		padding-left: 80px !important;
	}

	.py-pc-80 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}

	.pt-pc-80 {
		padding-top: 80px
	}

	.pb-pc-80 {
		padding-bottom: 80px
	}

	.pr-pc-80 {
		padding-right: 80px
	}

	.pl-pc-80 {
		padding-left: 80px
	}
}

.position-static {
	position: static !important;
}

.position-absolute {
	position: absolute !important;
}

.position-relative {
	position: relative !important;
}

@media (max-width: 767px) {
	.position-sp-static {
		position: static !important;
	}

	.position-sp-absolute {
		position: absolute !important;
	}

	.position-sp-relative {
		position: relative !important;
	}
}

@media (min-width: 768px) {
	.position-pc-static {
		position: static !important;
	}

	.position-pc-absolute {
		position: absolute !important;
	}

	.position-pc-relative {
		position: relative !important;
	}
}

.align-top {
	vertical-align: top !important;
}

.align-middle {
	vertical-align: middle !important;
}

.align-bottom {
	vertical-align: bottom !important;
}

@media (min-width: 768px) {
	.align-pc-top {
		vertical-align: top !important;
	}

	.align-pc-middle {
		vertical-align: middle !important;
	}

	.align-pc-bottom {
		vertical-align: bottom !important;
	}
}

@media (max-width: 767px) {
	.align-sp-top {
		vertical-align: top !important;
	}

	.align-sp-middle {
		vertical-align: middle !important;
	}

	.align-sp-bottom {
		vertical-align: bottom !important;
	}
}

.flex-column {
	flex-direction: column !important;
}

.flex-row {
	flex-direction: row !important;
}

@media (min-width: 768px) {
	.flex-pc-column {
		flex-direction: column !important;
	}

	.flex-pc-row {
		flex-direction: row !important;
	}
}

.align-items-start {
	align-items: start !important;
}

.align-items-end {
	align-items: end !important;
}

.align-items-center {
	align-items: center !important;
}

.align-items-baseline {
	align-items: baseline !important;
}

.align-items-stretch {
	align-items: stretch !important;
}

@media (min-width: 768px) {
	.align-items-pc-start {
		align-items: start !important;
	}

	.align-items-pc-end {
		align-items: end !important;
	}

	.align-items-pc-center {
		align-items: center !important;
	}

	.align-items-pc-baseline {
		align-items: baseline !important;
	}

	.align-items-pc-stretch {
		align-items: stretch !important;
	}
}

.d-block {
	display: block !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-flex {
	display: flex !important;
}

@media (max-width: 767px) {
	.d-sp-block {
		display: block !important;
	}

	.d-sp-inline-block {
		display: inline-block !important;
	}

	.d-sp-flex {
		display: flex !important;
	}
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

@media (max-width: 767px) {
	.flex-sp-wrap {
		flex-wrap: wrap !important;
	}

	.flex-sp-nowrap {
		flex-wrap: nowrap !important;
	}
}

@media (min-width: 768px) {
	.flex-pc-wrap {
		flex-wrap: wrap !important;
	}

	.flex-pc-nowrap {
		flex-wrap: nowrap !important;
	}
}

.order-1 {
	order: 1 !important;
}

.order-0 {
	order: 0 !important;
}

.order-neg1 {
	order: -1 !important;
}

@media (max-width: 767px) {
	.order-sp-1 {
		order: 1 !important;
	}

	.order-sp-0 {
		order: 0 !important;
	}

	.order-sp-neg1 {
		order: -1 !important;
	}
}

@media (min-width: 768px) {
	.order-pc-1 {
		order: 1 !important;
	}

	.order-pc-0 {
		order: 0 !important;
	}

	.order-pc-neg1 {
		order: -1 !important;
	}
}


.strong {
	font-weight: bold;
}

.box-large {
	width: 27% !important;
}

@media (max-width: 767px) {
	.box-large {
		width: 38% !important;
	}
}

.table-adjust-pd{
	padding: 20px!important;
}

@media (max-width: 767px) {
	.table-adjust-pd{
		padding: 35px 80px 35px 30px!important;
	}
}

.link-underline  {
	text-decoration: underline!important;
}

.link-underline:hover  {
	text-decoration: none!important;
}

.border-left-none {
	border-left: none !important;
}

.gap-20{
	gap: 20px;
}

.c-design-img {
	margin: 20px 0 50px;
}

.post-template-single-column .postbox .flex .left .c-design-img figure {
	width :100%;
	max-width: 625px;
	margin: 0 auto;
}

.c-section__head-txt {
	margin-bottom: 20px;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 700;
}

.post-template-single-column .postbox .flex .left .post_cont .p-footer-CVA__btn.p-footer-CVA__btn--counselling {
	text-decoration: none;
}

.p-footer-CVA--tmc .p-footer-CVA__btn--counselling i,
.p-footer-CVA--ltc .p-footer-CVA__btn--counselling {
	line-height: 1;
}