@charset "utf-8";
/*-----------------------------
パンくず
-----------------------------*/
.breadcrumb {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	align-items: flex-start;
	display: flex;
    white-space: nowrap; /* 横幅のMAXに達しても改行しない */
    overflow: hidden; /* 溢れた部分を隠す */
    text-overflow: ellipsis; /* 「…」と省略 */
    -webkit-text-overflow: ellipsis; /* Safari用 */
    -o-text-overflow: ellipsis; /* Opera用 */
}
.breadcrumb > li:not(:last-of-type)::after {
	margin: 0 10px;
	content: "/";
	vertical-align: top;
}
.breadcrumb > li a {
	display: inline-block;
	text-decoration: underline;
}
#breadcrumb{
	font-size: 16px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0 3%;
}
.breadcrumb li {
	display: inline-table;
}
#breadcrumb a:hover {
	color: var(--color2);
}

/*-----------------------------
page
-----------------------------*/
.page .main {
	background-color: var(--white-color);
	padding-top: 90px;
}
.page h2 {
    margin-top: 30px;
}
.page .page-main-title {
    font-weight: bold;
    margin-bottom: 50px;
    color: var(--color1);
    font-size: 40px;
    text-align: center;
    line-height: 1.3;
}
.page .page-main-title::after {
    content: '';
    margin: 20px auto 0;
    width: 120px;
    height: 4px;
    background: var(--color2);
    display: block;
}
#page_info {
	color: var(--black-color);
	background-size: cover;
	background-position: center;
}
#page_info.page-t-w,
#page_info.text-white {
	padding-bottom: 50px;
	margin-bottom: 80px;
}
#page_info.page-t-w,
#page_info.page-t-w h2,
#page_info.page-t-w .breadcrumb li,
#page_info.page-t-w .breadcrumb a,
#page_info.text-white,
#page_info.text-white h2,
#page_info.text-white .breadcrumb li,
#page_info.text-white .breadcrumb a{
	color: var(--white-color);
}

#page-catch-area {
	margin-bottom: 80px;
}
#page-catch-area .page-catch-cnt h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--color1);
    line-height: 1.4;
}
#page-catch-area .page-catch-cnt p {
    text-align: center;
    line-height: 2;
}

#flex-area {
	margin-bottom: 120px;
}
#flex-area .flex-block {
    margin-bottom: 50px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
#flex-area .flex-block:last-of-type {
	margin-bottom: 0;
}
#flex-area .flex-block:nth-child(even) {
    flex-direction: row-reverse;
}
#flex-area .flex-block:nth-child(odd) {
    flex-direction: row;
}
#flex-area .flex-block .flex-image {
	width: 48%;
}
#flex-area .flex-block .flex-cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
	width: 48%;
}
#flex-area .flex-block .flex-cnt h3 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    color: var(--color1);
    line-height: 1.2;
}
#flex-area .flex-block .flex-cnt h3::after {
    content: '';
    margin-top: 30px;
    width: 120px;
    height: 4px;
    background: var(--color2);
    display: block;
}
#flow-box {
	background: var(--gray-color);
	padding: 120px 0;
}
#flow-box .flow-cnt li {
	margin-bottom: 30px;
	counter-increment: number;
}
#flow-box .flow-cnt li:last-of-type {
	margin-bottom: 0;
}
#flow-box .flow-cnt li>.inner {
	display: flex;
	width: 100%;
	background: var(--white-color);
	padding: 50px;
}
#flow-box .flow-cnt li>.inner .left {
	width: 62%;
}
#flow-box .flow-cnt li>.inner .left h3 {
	font-size: 28px;
	font-weight: bold;
	padding-bottom: 4px;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--color1);
	color: var(--color1);
}
#flow-box .flow-cnt li>.inner .left h3::before {
    margin-right: 20px;
    content: counter(number);
	padding: 10px 20px;
	background: var(--color1);
	color: var(--white-color);
}
#flow-box .flow-cnt li>.inner .left h3 p {
	font-size: 20px;
}
#flow-box .flow-cnt li>.inner .right {
	width: 34%;
	margin-left: 4%;
}

#faq {
	padding: 120px 0;
}
#faq.faq  {
	margin-top: -30px;
	padding: 0 0 120px;
}
#faq .inner {
	max-width: 1000px;
}
.module-accordion li {
	margin-bottom: 30px;
}
.qa-content .accor-title a {
	display: block;
	background: url(../images/q-icon.svg) no-repeat left top 1px;
	padding: 0;
	text-decoration: none;
	font-weight: bold;
	position: relative;
}
.qa-content .accor-title a:before {
	content: 'Q';
	background: var(--color1);
	width: 58px;
	height: 58px;
	line-height: 58px;
	text-align: center;
	border-radius: 100%;
	display: inline-block;
	color: var(--white-color);
	font-size: 24px;
	position: absolute;
	top: 0;
	left: 0;
}
.qa-content .accor-title a,
.qa-content .accor-title a:visited,
.qa-content .accor-title a:active,
.qa-content .accor-title a:focus,
.qa-content .accor-title a:hover {
	color: var(--black-color);
}
.qa-content .accor-title .accor-title-inner {
	margin-left: 70px;
	padding: 12px 70px 12px 20px;
	font-size: 18px;
	background: var(--white-color);
	border-radius: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	line-height: 1.8;
	position: relative;
	color: var(--black-color);
	font-weight: normal;
	border: 1px solid var(--color1);
	position: relative;
}
.qa-content .accor-title .accor-title-inner .dli-plus {
	display: inline-block;
	vertical-align: middle;
	color: var(--color1);
	line-height: 1;
	width: 1em;
	height: 2px;
	background: currentColor;
	border-radius: 0.1em;
	position: absolute;
	right: 2%;
	top: 50%;
	transform: translateY(-50%);
}
.qa-content .accor-title .accor-title-inner .dli-plus::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
	opacity: 1;
	transition: all 0.2s;
}
.qa-content .accor-title .active .accor-title-inner .dli-plus::before {
	opacity: 0;
}
.qa-content .accor-body {
	margin-top: 20px;
	padding-left: 70px;
	display: none;
	position: relative;
}
.qa-content .accor-body:before {
	content: 'A';
	background: var(--color2);
	width: 58px;
	height: 58px;
	line-height: 58px;
	text-align: center;
	border-radius: 100%;
	display: inline-block;
	color: var(--white-color);
	font-size: 24px;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
}
.module-accordion li.active .accor-body {
	display: block;
}
.qa-content .accor-body .accor-inner {
	background: var(--gray-color);
	padding: 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    font-size: 18px;
}
.qa-content .accor-body .accor-inner a {
	margin-top: 10px;
	color: var(--color1);
	text-decoration: underline;
}
.qa-content .accor-body .accor-inner a:hover {
	color: var(--color2);
}

/*----Media query----*/
@media screen and (max-width: 1100px){
	#flow-box .flow-cnt li>.inner .left h3 {
		font-size: 20px;
	}
}
@media screen and (max-width: 768px){
	#breadcrumb {
    	font-size: 14px;
	}
	.page .page-main-title {
        font-size: 28px;
    }
	#flow-box {
    	padding: 80px 0;
	}
	#flow-box .flow-cnt {
		padding: 0 15px;
	}
	#flow-box .flow-cnt li>.inner {
		display: block;
		width: 100%;
		padding: 20px 15px;
	}
	#flow-box .flow-cnt li>.inner .left {
		margin-bottom: 30px;
		width: 100%;
	}
	#flow-box .flow-cnt li>.inner .right {
		width: 100%;
		margin-left: 0;
	}
	#flow-box .flow-cnt li>.inner .right img {
		width: 100%;
	}
	#flow-box .flow-cnt li>.inner .left h3 {
		font-size: 20px;
		padding-bottom: 0;
		line-height: 1.3;
		display: flex;
		align-items: center;
	}
	#flow-box .flow-cnt li>.inner .left h3::before {
		margin-right: 10px;
		padding: 15px 10px;
	}
	.page .page-catch-cnt {
		margin-top: 0;
	}
	#page-catch-area .page-catch-cnt p {
		margin-top: 30px;
	}
	#page-catch-area .page-catch-cnt h3 {
		margin-top: 30px;
		font-size: 24px;
		margin-bottom: 20px;
	}
	#flex-area .flex-block {
		display: block;
	}
	#flex-area .flex-block .flex-image {
		width: 100%;
	}
	#flex-area .flex-block .flex-cnt {
		width: 100%;
	}
	#flex-area .flex-block .flex-cnt h3 {
		margin-bottom: 20px;
		font-size: 24px;
		margin-top: 30px;
	}
	#flex-area .flex-block .flex-cnt h3::after {
		margin-top: 20px;
	}
	.page .page-main-title {
    	margin-bottom: 30px;
	}
	.qa-content .accor-body:before {
		width: 44px;
		height: 44px;
		line-height: 44px;
	}
	.qa-content .accor-title a:before {
		width: 44px;
		height: 44px;
		line-height: 44px;
	}
	.qa-content .accor-title .accor-title-inner {
		margin-left: 55px;
		padding: 8px 30px 8px 10px;
		font-size: 16px;
	}
	.qa-content .accor-body .accor-inner {
		padding: 10px;
		font-size: 16px;
	}
	.qa-content .accor-body {
		margin-top: 15px;
		padding-left: 55px;
	}
	#faq .inner h4 {
		font-size: 20px;
	}
	#career .career-cnt li h4 {
		font-size: 20px;
	}
	#page-fee #page-catch-area {
		margin-bottom: 30px;
	}
}

/*-----------------------------
company
-----------------------------*/
#company {
	padding: 0 0 120px;
}
#company .title {
	width: 100%;
    font-size: 28px;
    padding-bottom: 10px;
    margin: 0 0 30px;
	color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
    text-align: center;
    font-weight: 500;
}
#company .company-cnt li {
	display: flex;
	align-items: stretch;
	margin-bottom: 5px;
}
#company .company-cnt li .left {
	background: var(--gray-color);
	width: 30%;
	padding: 20px;
	font-weight: 500;
}
#company .company-cnt li .right {
	width: 70%;
	padding: 20px;
	background: var(--white-color);
}
#company .company-cnt li .right iframe {
	margin-top: 20px;
	height: 300px;
	width: 100%;
}

/*----Media query----*/
@media screen and (max-width: 768px){
	#page-company {
    	padding-top: 60px;
	}
	#page-company h2 {
		padding-top: 80px;
		margin-bottom: 30px;
		margin-top: 10px;
	}
	#company .inner2 {
		padding: 0 15px;
	}
	#company .company-cnt li .left {
		padding: 15px 10px;
	}
	#company .company-cnt li .right {
		padding: 15px 10px;
	}
}

/*-----------------------------
contact
-----------------------------*/
#post-cnt-area.contact {
	padding-bottom: 120px;
}
#post-cnt-area.contact .inner {
	background: var(--white-color);
	padding: 50px 0 50px;
	border-radius: 10px;
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}
#post-cnt-area.contact h2 {
	margin-bottom: 60px;
}
#post-cnt-area.contact .flow-box {
	border-bottom: 1px solid var(--color1);
	padding-bottom: 40px;
    margin-bottom: 80px;
}
#post-cnt-area.contact .contact-flow {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
#post-cnt-area.contact .contact-flow li {
	width: 30%;
	position: relative;
	border: 1px solid var(--color1);
	border-radius: 10px;
	padding: 20px;
}
#post-cnt-area.contact .contact-flow li.triangle {
	width: 2%;
	border: none;
	border-radius: 0;
	padding: 0;
	height: 60px;
	background: var(--color1);
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
	align-self: center;
}
#post-cnt-area.contact .contact-flow li span {
	display: block;
	width: 100px;
	background: var(--white-color);
	position: absolute;
	top: -30px;
	left: 50%;
    transform: translateX(-50%);
	font-size: 32px;
	text-align: center;
	font-weight: bold;
	color: var(--color1);
}
#post-cnt-area.contact .contact-flow li img {
	margin: 0 auto;
	display: block;
	height: 90px;
}
#post-cnt-area.contact .contact-flow li .flow-title {
	text-align: center;
	padding-top: 10px;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
}
#post-cnt-area.contact .contact-flow li .contact-text {
	margin-top: 20px;
}
#post-cnt-area.contact .flow-note {
	width: 100%;
	margin-top: 20px;
}
#post-cnt-area.contact .title {
    font-size: 28px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 500;
}
#post-cnt-area.contact .wpcf7-form {
	padding: 0 50px;
}
#post-cnt-area.contact .wpcf7-form h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
#post-cnt-area.contact .wpcf7-form h4 span {
	font-size: 14px;
	margin-left: 10px;
	color: #F86E6E;
}
#post-cnt-area.contact .wpcf7-form p>span {
	margin-bottom: 50px;
	display: block;
}
#post-cnt-area.contact .wpcf7-form .wpcf7-checkbox {
	display: flex;
}
#post-cnt-area.contact .wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
#post-cnt-area.contact .wpcf7-form .wpcf7-radio>span {
	margin: 0 50px 0 0;
}
#post-cnt-area.contact .wpcf7-form h4:before {
    margin-right: 10px;
    padding: 3px 5px;
	line-height: 1;
	border-radius: 2px;
    background-color: #B6B6B6;
    color: var(--white-color);
    content: "任意";
    font-size: 12px;
	display: inline-block;
}
#post-cnt-area.contact .wpcf7-form h4.req:before {
    background-color: #F86E6E;
    content: "必須";
}
#post-cnt-area.contact .wpcf7-form .wpcf7-checkbox .wpcf7-list-item input,
#post-cnt-area.contact .wpcf7-form .wpcf7-radio input {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}
#post-cnt-area.contact .wpcf7-form .wpcf7-form-control-wrap select {
    width: 240px;
    padding: 15px 10px;
}
#post-cnt-area.contact .wpcf7-form .button {
    display: block;
    text-align: center;
    max-width: 320px;
	width: 100%;
	border: none;
    color: var(--white-color);
    font-size: 20px;
    padding: 20px 0;
	margin: 50px auto 0;
    box-sizing: border-box;
    background: var(--color2);
    text-decoration: none;
    border-radius: 100px;
	cursor: pointer;
}
#post-cnt-area.contact .wpcf7-form .button:hover {
	background: var(--color1);
	transition: all 0.2s;
}
#post-cnt-area.contact .wpcf7-form p>label {
	margin-top: -70px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
}
#post-cnt-area.contact .wpcf7-form p>label:first-of-type {
	margin-top: 0;
}
input:not([type=submit]):not([type=button]):not([type=reset]):not([type=checkbox]):not([type=radio]), textarea,
#post-cnt-area.contact-table .wpcf7-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #a9a9a9;
    line-height: 1.8;
	border-radius: 5px;
	font-size: 18px;
}
#post-cnt-area.contact .wpcf7-form #zip,
#post-cnt-area.contact .wpcf7-form #pref,
#post-cnt-area.contact .wpcf7-form #tel {
	width: 50%;
}
#post-cnt-area.contact .wpcf7-form .file-note {
	margin-top: -60px;
	margin-bottom: 80px;
	font-size: 16px;
}
#post-cnt-area.contact .wpcf7-form .pp-scroll {
	margin: 0 auto 35px;
	max-width: 800px;
	width: 100%;
	height: 300px;
	overflow-y: scroll;
    padding: 30px 20px;
    border: 1px solid #a9a9a9;
	border-radius: 10px;
	background: var(--white-color);
	line-height: 1.8;
}
#post-cnt-area.contact .wpcf7-form .pp-scroll .pp-title-b {
	font-size: 24px;
	font-weight: bold;
	color: var(--black-color);
	margin-bottom: 20px;
	text-align: center;
}
#post-cnt-area.contact .wpcf7-form .pp-scroll .pp-title {
	font-size: 20px;
	font-weight: bold;
	color: var(--black-color);
	border-bottom: 1px solid var(--color1);
	padding-bottom: 10px;
	margin-bottom: 10px;
	margin-top: 50px;
}
#post-cnt-area.contact .wpcf7-form .pp-scroll ul {
	margin: 20px 0;
	line-height: 2;
}
#post-cnt-area.contact .wpcf7-form .pp-scroll ul li {
	position: relative;
    padding: 0 0 0 15px;
}
#post-cnt-area.contact .wpcf7-form .pp-scroll ul li:before {
    background: var(--black-color);
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: .7em;
    width: 5px;
    height: 5px;
}
#post-cnt-area.contact .select-box {
	display: flex;
	align-items: center;
}
#post-cnt-area.contact .wpcf7-form .back-text {
    margin-left: 10px;
}
#post-cnt-area.contact .need-box {
	border: 1px solid #F86E6E;
	padding: 30px;
	text-align: center;
	width: 100%;
}
#post-cnt-area.contact .need-box p span {
	margin-bottom: 0;
}
#post-cnt-area.contact .need-box .wpcf7-list-item,
#post-cnt-area.contact .accept label {
	margin: 20px 0 0 0;
	padding: 15px 20px;
	border: 1px solid var(--black-color);
	border-radius: 100px;
	max-width: 280px;
	width: 100%;;
	font-size: 20px;
	font-weight: 500;
}
#post-cnt-area.contact .need-box .wpcf7-list-item label {
	display: flex;
    align-items: center;
    justify-content: center;
}
#post-cnt-area.contact .accept .wpcf7-list-item {
	margin: 0 !important;
}
#post-cnt-area.contact .need-box .wpcf7-list-item input,
#post-cnt-area.contact .accept label>span .wpcf7-list-item input{
	width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
	cursor: pointer;
}
#post-cnt-area.contact .accept-box {
	padding: 50px 0;
	max-width: 640px;
	width: 100%;
	border-top: 1px solid var(--black-color);
	border-bottom: 1px solid var(--black-color);
	margin: 50px auto 80px;
}
#post-cnt-area.contact .accept-text {
  text-align: center;
}
#post-cnt-area.contact .accept-text a {
	display: inline-block;
	color: var(--color2);
	text-decoration: underline;
	vertical-align: bottom;
}
#post-cnt-area.contact .accept-text a:hover {
	color: var(--color1);
}
#post-cnt-area.contact .accept {
	text-align: center;
	margin-top: 30px;
}
select {
    -webkit-appearance: none;
    appearance: none;
}
#post-cnt-area.contact .select-box .wpcf7-form-control-wrap {
	position: relative;
}
#post-cnt-area.contact .select-box .wpcf7-form-control-wrap::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
}
#post-cnt-area.contact .qr-box {
	width: 94%;
	box-sizing: border-box;
	padding: 50px;
	margin: 0 auto 50px;
	border-radius: 10px;
	background: var(--gray-color);
	display: flex;
	justify-content: space-between;
}
#post-cnt-area.contact .qr-box .left {
	width: 70%;
}
#post-cnt-area.contact .qr-box .left h3 {
	font-size: 36px;
	letter-spacing: 5px;
	margin-bottom: 15px;
}
#post-cnt-area.contact .qr-box .left p {
	margin-bottom: 30px;
}
#post-cnt-area.contact .telbox{
    width: 94%;
	text-align: center;
	border: 1px solid var(--black-color);
	box-sizing: border-box;
	padding: 50px;
	margin: 0 auto;
	border-radius: 10px;
}
#post-cnt-area.contact .telbox h3{
	font-weight: bold;
	font-size: 36px;
	letter-spacing: 5px;
	margin: 0 0 15px 0;
	display: block;
}
#post-cnt-area.contact .telbox h4{
	font-size: 48px;
	line-height: 1;
	letter-spacing: 5px;
	margin: 0 0 15px 0;
	display: inline-block;
}
#post-cnt-area.contact .telbox p:first-of-type{
	margin-bottom: 20px;
}
#post-cnt-area.contact .telbox .time span {
	font-weight: 500;
}

/*----Media query----*/
@media screen and (max-width: 768px){
	#post-cnt-area.contact .inner {
        padding: 30px 20px;
    }
	#post-cnt-area.contact h2 {
    	padding-top: 70px;
    	margin-bottom: 60px;
	}
	#post-cnt-area.contact .contact-flow {
    	display: block;
    	margin-bottom: 10px;
	}
	#post-cnt-area.contact .contact-flow li {
    	width: 100%;
    	padding: 20px;
	}
	#post-cnt-area.contact .contact-flow li:nth-of-type(2n) {
		width: 100%;
		padding: 10px 0 20px;
	}
	#post-cnt-area.contact .contact-flow li:nth-of-type(2n) img {
		margin: 0 auto;
		display: block;
		transform: rotate( 90deg );
	}
	#post-cnt-area.contact .wpcf7-form {
		padding: 0 !important;
	}
	#post-cnt-area.contact .wpcf7-form .wpcf7-checkbox {
		display: block;
	}
	#post-cnt-area.contact .wpcf7-form .wpcf7-list-item.first {
		margin-bottom: 20px;
	}
	#post-cnt-area.contact .wpcf7-form h4 {
		font-size: 18px;
	}
	#post-cnt-area.contact .wpcf7-form h4 span {
		font-size: 12px;
		margin-left: 8px;
	}
	#post-cnt-area.contact .need-box {
    	padding: 30px 20px;
	}
	#post-cnt-area.contact .need-box .wpcf7-list-item, #post-cnt-area.contact .accept label {
		padding: 10px;
		max-width: 200px;
		width: 100%;
		font-size: 18px;
	}
	#post-cnt-area.contact .accept-box {
    	padding: 50px 0 30px;
		margin: 50px auto;
	}
	#post-cnt-area.contact .accept-text br {
		display: none;
	}
	#post-cnt-area.contact .qr-box {
    	padding: 30px 20px;
    	display: block;
	}
	#post-cnt-area.contact .qr-box .left {
		width: 100%;
	}
	#post-cnt-area.contact .qr-box .left h3 {
		font-size: 26px;
		text-align: center;
	}
	#post-cnt-area.contact .qr-box .right {
		display: none;
	}
	#post-cnt-area.contact .wpcf7-form .button,
	.btn a {
		max-width: 240px;
		font-size: 18px;
		padding: 15px 0;
		margin: 0 auto;
		line-height: 2;
	}
	#post-cnt-area.contact .wpcf7-form .button {
		margin: 0 auto 30px;
	}
	#post-cnt-area.contact .telbox {
		padding: 30px 15px;
	}
	#post-cnt-area.contact .telbox h3 {
		font-size: 26px;
	}
	#post-cnt-area.contact .telbox h4 {
		font-size: 30px;
		letter-spacing: 2px;
		padding-left: 40px;
		background: url(../images/img_tel.svg) bottom 0px left no-repeat;
		background-size: 30px;
	}
	#post-cnt-area.contact .telbox .time {
		font-size: 14px;
	}
	#post-cnt-area.contact {
    	padding-left: 15px;
    	padding-right: 15px;
	}
}

/*-----------------------------
privacy-policy
-----------------------------*/
#post-cnt-area.privacy-policy {
	padding-bottom: 120px;
}
#post-cnt-area.privacy-policy .inner {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}
#post-cnt-area.privacy-policy .inner h3 {
  background-color: var(--color);
  font-size: 24px;
  color: var(--color1);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color1);
  text-align: left;
}
#post-cnt-area.privacy-policy .inner h4 {
  font-size: 18px;
  font-weight: bold;
  background-color: var(--gray-color);
  margin: 50px 0 20px;
  padding: 10px 15px;
  border-radius: 5px;
}