@charset "UTF-8";

.pc {
	display: none;
}

.container {
	width: 85%;
}

a.view-all {
	padding: 18px 0;
}

.breadcrumbs {
	margin: 5px auto 35px;
	width: 85%;
}

.breadcrumbs a {
	margin-right: 15px;
}

.breadcrumbs span.current-item {
	margin-left: 15px;
}

/* ページネーション */
.pagination {
	margin: 28px 0 58px;
}

.pagination ul li {
	width: 49px;
	height: 48px;
}

.pagination ul li:nth-of-type(2) {
	margin: 0 12px;
}

.pagination ul li a {
	font-size: 13px;
}

/* 記事前後ページネーション */
.post-navigation {
	width: 73%;
	max-width: 994px;
}

.post-navigation.top-nav {
	margin: 0 auto 23px;
	font-size: 13px;
}

.post-navigation.bottom-nav {
	margin: 0 auto 8px;
	font-size: 14px;
}

/* --------------------------------------------------------------------------------------ヘッダー-------------------------------------------------------------- */
header {
	width: 100%;
}

header .container {
	padding: 0 18px;
}

header .flex h1,
header .flex .img-box {
	width: 103px;
}

header .flex .button-box div:nth-child(1) nav ul li:nth-child(2) a {
	margin: 0 37px 0 16px;
}

header .flex .button-box div:nth-child(1) nav ul li:nth-child(2)::after {
	right: 20px;
	height: 34px;
}

header .flex .button-box > div:nth-child(1) a.hover-line {
	font-size: 13px;
}

header .flex .button-box > div:nth-child(1) p:nth-of-type(1) {
	margin-right: 24px;
	font-size: 16px;
}

header .flex .button-box div:nth-child(1) p:nth-of-type(1) span {
	margin-right: 2px;
	font-size: 16px;
}

header .flex .button-box > div:nth-child(1) p {
	font-size: 13px;
}

header .flex .button-box > div:nth-child(2) {
	margin-top: 23px;
}

header .flex .button-box div:nth-child(2) a {
	font-size: 16px;
}

header .flex .button-box > div:nth-child(2) nav > ul > li > a.hover-line {
	margin: 0 30px;
}

header .flex .button-box > div:nth-child(2) nav > ul > li:nth-child(1) {
	margin: 0 30px;
}

header
	.flex
	.button-box
	div:nth-child(2)
	ul
	li:nth-child(2)
	a.hover-line::before,
header
	.flex
	.button-box
	div:nth-child(2)
	ul
	li:nth-child(2)
	a.hover-line::after {
	height: 31px;
}

header .flex .button-box div:nth-child(2) ul li:nth-child(2) a::before {
	left: -30px;
}

header
	.flex
	.button-box
	div:nth-child(2)
	ul
	li:nth-child(2)
	a.hover-line::after {
	right: -30px;
}

header .flex.sp {
	align-items: center;
}

/* ハンバーガーメニュー */
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	margin-left: 20px;
	position: relative;
	background: var(--colorWhite);
	cursor: pointer;
	width: 24px;
	height: 19px;
	z-index: 9999;
}

/*ボタン内側*/
.openbtn span {
	display: inline-block;
	transition: all 0.4s; /*アニメーションの設定*/
	position: absolute;
	height: 1px;
	background: var(--colorDeepBlue);
	width: 100%;
}

.openbtn span:nth-of-type(1) {
	top: 0;
}

.openbtn span:nth-of-type(2) {
	top: 9px;
}

.openbtn span:nth-of-type(3) {
	bottom: 0;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
	top: 3px;
	left: 0;
	transform: translateY(6px) rotate(-45deg);
	width: 25px;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
	top: 15px;
	left: 0;
	transform: translateY(-6px) rotate(45deg);
	width: 25px;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position: fixed;
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top: -350%;
	left: 0;
	width: 100%;
	height: 100vh; /*ナビの高さ*/
	background: var(--colorWhite);
	/*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
	top: 57px;
	text-align: center;
}

#g-nav #g-nav-list {
	text-align: center;
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
	height: calc(100vh - 57px); /*表示する高さ*/
}

/*ナビゲーション*/
#g-nav ul {
	padding-top: 29px;
	position: relative;
	z-index: 999;
}

/*リストのレイアウト設定*/

#g-nav li {
	margin-bottom: 20px;
	text-align: left;
}

#g-nav li a {
	color: var(--colorBlack);
	display: block;
	letter-spacing: 0.039em;
	font-size: 14px;
	line-height: 1.57;
}

#g-nav .accordion-area li p.title {
	padding: 0 0 21px;
	font-size: 14px;
	letter-spacing: 0.039em;
	line-height: 1.57;
	font-weight: 500;
	border: none;
	width: 85%;
	margin: auto;
}

#g-nav .accordion-area li p.title::before,
#g-nav .accordion-area li p.title::after {
	right: 0;
	width: 12px;
	height: 1px;
	background-color: var(--colorLightGray);
}

#g-nav .accordion-area li .box {
	margin-bottom: 13px;
	display: none;
	background-color: var(--colorSlider);
}

#g-nav .accordion-area li .box ul {
	padding: 25px 0;
}

#g-nav .accordion-area li .box ul li {
	width: 85%;
	margin: auto;
}

#g-nav .accordion-area li .box ul li:not(:last-child) {
	margin-bottom: 25px;
}

#g-nav ul:nth-of-type(2) {
	margin: 0 auto 85px;
	padding: 0;
	width: 85%;
}

#g-nav ul:nth-of-type(2) li {
	margin-bottom: 41px;
}

#g-nav #g-nav-list .tab-flex a:nth-of-type(1) {
	margin: 0 auto 8px;
}

#g-nav #g-nav-list .tab-flex a {
	display: inline-block;
	width: 85%;
}

#g-nav #g-nav-list .tab-flex a img {
	margin: auto;
	width: 100%;
}

.top-btn {
	display: none;
}

@media screen and (min-width: 600px) {
	#g-nav #g-nav-list .tab-flex {
		display: flex;
		width: 85%;
		margin: auto;
	}
}

/* -----------------------------------------------------フッター-------------------------------------------------------------------------- */
footer .cta {
	padding: 55px 0;
	background-position: 25%;
}

footer .cta p:nth-of-type(1) {
	margin: 0 auto 20px;
	text-align: left;
	font-size: 20px;
	width: 85%;
}

footer .cta p:nth-of-type(2) {
	margin: 0 auto 17px;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--fontTextBold);
	width: 85%;
}

footer .cta > a {
	margin: 0 auto 14.5px;
	font-size: 28px;
}

footer .cta .flex a {
	width: 497px;
	height: 180px;
}

footer .cta a {
	font-size: 18px;
}

footer .cta a span {
	margin-right: 7.5px;
	font-size: 27px;
}

footer .cta p:nth-of-type(3) {
	font-size: 12px;
}

footer .cta p:nth-of-type(3) span {
	margin-left: 6px;
	font-size: 13px;
}

footer .sp-btn a {
	display: block;
	width: 100%;
}

footer .sp-btn a:nth-of-type(1) {
	background-color: var(--colorOrange);
}

footer .sp-btn a:nth-of-type(2) {
	background-color: var(--colorDeepBlue);
}

footer .sp a img {
	width: 100%;
}

footer .sp-footer {
	padding: 60px 0 0;
}

footer .sp-footer .container > a {
	margin-bottom: 30px;
	display: block;
	width: 167px;
}

footer .sp-footer nav.flex {
	flex-direction: column;
}

footer .sp-footer .accordion-area {
	margin-bottom: 20px;
}

footer .sp-footer .accordion-area li:not(:last-child) {
	margin-bottom: 20px;
}

footer .sp-footer .accordion-area li .box {
	padding: 30px 0;
	margin-bottom: 10px;
	display: none;
	background-color: var(--colorSlider);
}

footer .sp-footer .accordion-area li .box ul {
	margin: auto;
	width: 85%;
}

footer .sp-footer .accordion-area li .box ul li a {
	font-size: 12px;
	line-height: 1.4;
}

footer .sp-footer .accordion-area li .title {
	margin: auto;
	padding: 0 0 10px;
	font-size: 14px;
	border: none;
	width: 85%;
}

footer .sp-footer .accordion-area li .title::before,
footer .sp-footer .accordion-area li .title::after {
	right: 0;
	background-color: var(--colorLightGray);
	width: 12px;
	height: 1px;
}

footer .sp-footer .footer-list .container {
	padding-bottom: 30px;
}

footer .sp-footer .footer-list ul li:not(:last-child) {
	margin-bottom: 30px;
}

footer .sp-footer .footer-list ul li a {
	font-size: 14px;
	font-weight: 700;
	font-family: var(--fontTextBold);
}

footer .footer-bottom {
	padding: 25px 0;
}

footer .footer-bottom > div.flex {
	flex-direction: column;
	width: 85%;
}

footer .footer-bottom div.flex ul li a,
footer .footer-bottom div.flex p {
	font-size: 12px;
}

footer .footer-bottom div.flex ul {
	flex-direction: column;
	margin-bottom: 15px;
}

footer .footer-bottom div.flex ul li a {
	padding-bottom: 4px;
}

footer .footer-bottom div.flex p {
	text-align: center;
}

@media screen and (min-width: 700px) {
	footer .cta p:nth-of-type(1),
	footer .cta p:nth-of-type(2) {
		text-align: center;
	}

	footer > div.sp-btn {
		display: flex;
	}

	footer > div.sp-btn a {
		width: 50%;
	}
}

/* ----------------------------------------------------------------------------------トップページ------------------------------------------------------------ */
#top .fv {
	padding: 0 0 30px;
}

#top .fv p {
	margin: 97px auto 10px;
	text-align: left;
	font-size: 36px;
	width: 85%;
}

#top .fv .img-box {
	justify-content: center;
	margin: 20px auto;
	width: 85%;
}

#top .fv .img-box img {
	width: calc((100% / 3) - 30px);
}

#top .fv .img-box img:not(:last-child) {
	margin-right: 15px;
}

#top .fv a {
	margin: auto;
	width: 85%;
}

#top .fv a img {
	margin: auto;
	width: 100%;
	max-height: 84px;
}

#top .fv a img.pc {
	display: none;
}

#top .fv picture {
	margin: auto;
	position: relative;
	width: 85%;
	display: block;
}

@media screen and (min-width: 700px) {
	#top .fv p {
		font-size: 46px;
	}

	#top .fv .img-box img {
		width: 20%;
	}
}

#top .philosophy {
	padding: 63px 0;
}

#top .philosophy .big-container {
	width: 91%;
	max-width: 1240px;
}

#top .philosophy .big-container .container {
	padding: 30px 30px 60px;
	width: 100%;
}

#top .philosophy .big-container .container h2 {
	margin-bottom: 20px;
	font-size: 44px;
}

#top .philosophy .big-container .container h2 span {
	font-size: 18px;
	font-weight: 700;
	font-family: var(--fontTextBold);
}

#top .philosophy .big-container .container .blue-big {
	margin-bottom: 10px;
	font-size: 20px;
}

#top .philosophy .big-container .container > p:nth-of-type(2) {
	font-size: 14px;
}

#top .philosophy .big-container .container .flex {
	margin: 60px 0 20px;
	flex-direction: column;
}

#top .philosophy .big-container .container .flex picture {
	width: 100%;
}

#top .philosophy .big-container .container .flex picture img {
	width: 100%;
}

#top .philosophy .big-container .container .flex .text-box p:nth-child(1) {
	margin-bottom: 40px;
	margin: 10px 0 5px;
	font-size: 20px;
}

#top .philosophy .big-container .container .flex .text-box p:nth-child(1) span {
	font-size: 30px;
}

#top .philosophy .big-container .container .flex .text-box p:not(:first-child) {
	font-size: 13px;
}

#top .worries {
	padding: 60px 0;
}

#top .worries h2 {
	font-size: 24px;
	width: 85%;
}

#top .worries h2::after {
	display: none;
}

#top .worries h2 span {
	font-size: 45px;
}

#top .worries h2 span::before {
	top: -19px;
	width: 13px;
	height: 13px;
}

#top .worries > div.flex {
	margin-top: 30px;
	flex-direction: column;
}

#top .worries > div.flex > img {
	margin: auto;
	width: 205px;
}

#top .worries > div.flex ul {
	margin: 40px auto 0;
	width: 85%;
}

#top .worries > div.flex ul li {
	text-align: left;
}

#top .worries > div.flex ul li:not(:last-child) {
	margin-bottom: 26px;
}

#top .worries > div.flex ul li img {
	margin-right: 12.5px;
}

#top .worries > div.flex ul li p {
	font-size: 20px;
}

#top .resolution {
	padding: 60px 0 40px;
}

#top .resolution .flex {
	flex-direction: column;
	width: 85%;
	margin: auto;
}

#top .resolution .flex .text-box {
	text-align: center;
}

#top .resolution .flex .text-box h2 {
	margin-bottom: 40px;
	font-size: 24px;
}

#top .resolution .flex .text-box p {
	margin-bottom: 40px;
	font-size: 13px;
	line-height: 2;
}

#top .resolution .flex img {
	margin: auto;
}

@media screen and (min-width: 560px) {
	#top .resolution .flex .text-box p {
		font-size: 26px;
	}
}

#top .merit .merit-menu {
	padding: 60px 0;
}

#top .merit .merit-menu h2 {
	margin-bottom: 40px;
	font-size: 24px;
}

#top .merit .merit-menu .flex {
	flex-direction: column;
	margin: auto;
	width: 85%;
}

#top .merit .merit-menu .flex li {
	border-right: none;
	border-top: 1px solid var(--colorLightGray);
}

#top .merit .merit-menu .flex li:first-child {
	border-left: none;
}

#top .merit .merit-menu .flex li:last-child {
	border-bottom: 1px solid var(--colorLightGray);
}

#top .merit .merit-menu .flex li a {
	display: flex;
	padding: 14px 7px;
}

#top .merit .merit-menu .flex li a img:nth-of-type(1) {
	margin: 0 20px 0 0;
	width: 21px;
}

#top .merit .merit-menu .flex li a img:nth-of-type(2) {
	margin: 0 0 0 auto;
	width: 14px;
}

#top .merit .merit-menu .flex li a p {
	font-size: 16px;
}

#top .merit .merit-list .container {
	padding: 60px 0;
}

#top .merit .merit-list .container ul li:not(:last-child) {
	margin-bottom: 60px;
}

#top .merit .merit-list .container ul li .flex {
	flex-direction: column;
}

#top .merit .merit-list .container ul li:nth-child(even) .flex {
	flex-direction: column-reverse;
}

#top .merit .merit-list .container ul li .flex .text-box::after {
	width: 116px;
	height: 90px;
}

#top .merit .merit-list .container ul li .flex .text-box .heading {
	margin-top: 39px;
}

#top .merit .merit-list .container ul li .flex .text-box .heading h3 {
	font-size: 12px;
}

#top .merit .merit-list .container ul li .flex .text-box .heading p {
	font-size: 20px;
}

#top .merit .merit-list .container ul li .flex .text-box .text-bold {
	margin: 30px 0;
	font-size: 23.8px;
}

#top .merit .merit-list .container ul li .flex .text-box .textarea {
	margin-bottom: 40px;
	font-size: 13px;
}

#top .merit .merit-list .container ul li .flex picture img {
	width: 100%;
}

@media screen and (min-width: 768px) {
	#top .merit .merit-menu .flex {
		flex-direction: row;
	}

	#top .merit .merit-menu .flex li:first-child {
		border-left: 1px solid var(--colorLightGray);
	}

	#top .merit .merit-menu .flex li {
		border-top: none;
		border-right: 1px solid var(--colorLightGray);
		width: calc(100% / 5);
	}

	#top .merit .merit-menu .flex li:last-child {
		border-bottom: none;
	}

	#top .merit .merit-menu .flex li a {
		flex-direction: column;
		align-items: center;
		padding: 15px;
	}

	#top .merit .merit-menu .flex li a img:nth-of-type(1) {
		margin: 0 auto 8px;
	}

	#top .merit .merit-menu .flex li a img:nth-of-type(2) {
		margin: 13px auto 0;
	}
}

#top .cta-link {
	padding: 45px 0;
}

#top .cta-link h2 {
	margin-bottom: 10px;
	font-size: 20px;
	width: 85%;
}

#top .cta-link h2::after {
	display: none;
}

#top .cta-link p {
	margin-bottom: 33px;
	font-size: 14px;
}

#top .customer {
	padding: 102px 0 0 0;
}

#top .customer h2 {
	margin-bottom: 63px;
	padding-left: 31.3px;
}

#top .customer h2 span:nth-of-type(1) {
	font-size: 56px;
}

#top .customer h2 span:nth-of-type(2) {
	margin-top: 9.2px;
	font-size: 23px;
}

#top .customer .slider li {
	margin: 0 15.5px;
	max-width: 970px;
}

#top .customer .slider li a .flex .text-box {
	padding: 0 64px 0 63px;
}

#top .customer .slider li a .flex .text-box p:nth-of-type(1) {
	margin-bottom: 5px;
	font-size: 14px;
}

#top .customer .slider li a .flex .text-box p:nth-of-type(2) {
	margin-bottom: 10px;
	font-size: 25px;
}

#top .customer .slider .slick-prev,
#top .customer .slider .slick-next {
	width: 84px;
	height: 83px;
}

#top .customer .slider .slick-prev {
	left: 19.3%;
}

#top .customer .slider .slick-next {
	right: 20%;
}

#top .customer .slider .slick-prev:before,
#top .customer .slider .slick-next:before {
	width: 84px;
	height: 83px;
}

#top .customer .view-all {
	margin: 63px auto 0;
	max-width: 994px;
	width: 73%;
}

/* トップページPRODUCTセクション */
#top .product {
	padding: 60px 0;
}

#top .product h2 {
	margin-bottom: 40px;
	padding-left: 37px;
}

#top .product h2 span.big-ttl {
	font-size: 46px;
}

#top .product h2 span.small-ttl {
	margin-top: 26px;
	font-size: 18px;
}

#top .product .container > p {
	margin-bottom: 40px;
	font-size: 14px;
}

#top .product .container ul {
	flex-direction: column;
}

#top .product .container ul li:not(:last-child) {
	margin-bottom: 30px;
}

#top .product .container ul li a picture img {
	margin: auto;
}

#top .product .container .view-all {
	margin-top: 40px;
}

#top .flow .container {
	padding: 90px 0;
}

#top .flow .container h2 {
	margin-bottom: 40px;
	font-size: 22px;
}

#top .flow .container ul {
	flex-direction: column;
}

#top .flow .container ul li {
	padding: 30px;
}

#top .flow .container ul li:not(:last-child) {
	margin-bottom: 36px;
}

#top .flow .container ul li img {
	margin: 0 auto 10px;
}

#top .flow .container ul li p:nth-of-type(1) {
	margin-bottom: 10px;
	font-size: 20px;
}

#top .flow .container ul li p:nth-of-type(2) {
	font-size: 13px;
}

@media screen and (min-width: 768px) {
	#top .flow .container ul li {
		display: flex;
		align-items: center;
	}

	#top .flow .container ul li img {
		margin: 0;
	}

	#top .flow .container ul li p:nth-of-type(1) {
		margin: 0 30px;
		white-space: nowrap;
	}

	#top .flow .container ul li p:nth-of-type(2) {
		margin: 0 0 0 auto;
		width: 55%;
	}
}

/* トップページFAQセクション */
#top .faq .container {
	padding: 60px 0;
}

#top .faq h2 {
	margin-bottom: 60px;
	padding-left: 37px;
}

#top .faq h2 span.big-ttl {
	font-size: 54px;
}

#top .faq h2 span.small-ttl {
	margin-top: 13px;
	font-size: 24px;
}

/*tabの形状*/
.tab {
	padding: 0;
}

.tab::before,
.tab::after {
	display: none;
}

.tab li {
	width: calc(100% / 3);
}

.tab li a {
	padding: 0 0 10px 0;
	font-size: 15.4px;
}

/*エリアの表示非表示と形状*/
.area {
	margin-bottom: 60px;
	padding: 40px 0 0 0;
}

/*アコーディオン全体*/
.accordion-area li:not(:last-child) {
	margin: 0 0 49.6px 0;
}

/*アコーディオンタイトル*/
#top .title {
	padding: 0 40px 46.7px 20px;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
	width: 15px;
}

.title::before {
	top: 9.2px;
	right: 15px;
}

.title::after {
	top: 9.2px;
	right: 15px;
}

#top .faq .container .title img {
	margin-right: 20px;
	width: 30px;
}

/*アコーディオンで現れるエリア*/
#top .faq .box {
	padding: 30px;
}

/* --------------------------------------------------------------------経営理念ページ--------------------------------------------------------- */
#psophy .msg {
	padding-bottom: 90px;
}

#psophy .msg .container .flex {
	flex-direction: column;
}

#psophy .msg .container h1.ttl {
	font-size: 46px;
	letter-spacing: 0.1rem;
}

#psophy .msg .container .txt {
	font-size: 20px;
}

#psophy .msg .container .textarea {
	padding-top: 30px;
	font-size: 23.8px;
}

#psophy .msg .container .box img {
	width: 100%;
}

#psophy .vision h2 {
	margin-top: 22px;
	font-size: 24px;
	font-weight: 700;
	font-family: var(--fontTextBold);
}

#psophy .vision .container .os {
	font-size: 12px;
}

#psophy .vision .container:first-of-type .os {
	padding-top: 60px;
}

#psophy .vision .container.flex {
	padding: 40px 0 90px;
	flex-direction: column;
}

#psophy .vision .container .box:not(:last-of-type) {
	margin-bottom: 36px;
}

#psophy .vision .container .box p {
	margin-top: 5px;
	font-size: 13px;
}

#psophy .vision .container .box p:nth-child(3) {
	margin-bottom: 10px;
	font-size: 20px;
}

#psophy .vision .container .box img {
	margin-bottom: 10px;
	height: 69px;
}

#psophy .industry .container {
	text-align: center;
}

#psophy .industry .container h2 {
	margin: 40px 0 20px;
	font-size: 28px;
	line-height: 1.6;
}

#psophy .industry .container .flex {
	padding-bottom: 40px;
	flex-direction: column;
}

#psophy .industry .container .flex.reverse {
	flex-direction: column;
}

#psophy .industry .container .flex:last-of-type {
	padding-bottom: 40px;
}

#psophy .industry .container .flex .box img {
	width: 100%;
}

#psophy .industry .container .flex .box.txt {
	text-align: left;
}

#psophy .industry .container .flex .box.txt h3 {
	padding-bottom: 10px;
	margin-top: 20px;
	font-size: 20px;
}

#psophy .industry .container .flex .box .value {
	font-size: 40px;
}

#psophy .industry .container .flex .box p {
	font-size: 16px;
	padding-bottom: 20px;
}

#psophy .ceo .container .flex {
	padding: 60px 0 40px;
	flex-direction: column-reverse;
}

#psophy .ceo .container .flex .img_txt img {
	width: 100%;
}

/* #psophy .ceo .container .flex .img_txt div:first-of-type {
	padding-top: 27px;
} */

#psophy .ceo .container .flex .img_txt div {
	padding-top: 20px;
}

#psophy .ceo .container .flex .img_txt div p {
	font-size: 13px;
}

#psophy .ceo .container .flex .img_txt div p:first-of-type {
	padding-right: 27px;
}

#psophy .ceo .container .flex .img_txt .flex p {
	font-size: 16px;
	padding-bottom: 20px;
}

#psophy .ceo .container .flex .img_txt .flex.txt {
	padding-top: 27px;
}

#psophy .ceo .container .flex .img_txt .flex p.b {
	font-size: 20px;
}

#psophy .ceo .container .flex .ceo_txt h2 {
	text-align: center;
	font-size: 12px;
}

#psophy .ceo .container .flex .ceo_txt .ceo-heading {
	margin: 22px 0 40px;
	font-size: 24px;
}

#psophy .ceo .container .flex .ceo_txt p {
	padding-bottom: 32px;
	font-size: 13px;
}

#psophy .ceo .container .flex .ceo_txt .b {
	font-size: 13.6px;
}

@media screen and (min-width: 600px) {
	#psophy .msg .container .flex {
		flex-direction: row;
		justify-content: space-between;
	}

	#psophy .ceo .container .flex .img_txt {
		display: flex;
		justify-content: space-between;
	}

	#psophy .ceo .container .flex .img_txt img {
		object-fit: contain;
		width: 46%;
	}

	#psophy .ceo .container .flex .img_txt .list-box {
		padding: 0;
		width: 50%;
	}
}

@media screen and (min-width: 700px) {
	#psophy .vision .container.flex {
		flex-direction: row;
	}
}

/*-------------------------- 製品一覧 ---------------------------------*/
#products .product {
	margin-bottom: 62px;
}

#products .product .container h1 {
	margin-bottom: 30px;
}

#products .product .container h1 span:nth-of-type(1) {
	font-size: 46px;
	letter-spacing: 0.1rem;
}

#products .product .container h1 span:nth-of-type(2) {
	font-size: 20px;
}

#products .product .container p {
	font-size: 14px;
	margin-bottom: 50px;
}

#products .product .container ul {
	flex-direction: column;
}

#products .product .container ul li {
	margin-bottom: 40px;
}

#products .product .container ul li a picture img {
	margin: auto;
}

/* ----------------------------------------------------------------相談支援事業所向け(メイン機能紹介ページ)------------------------------------------------------------ */
#sdan .support .container div h1 {
	margin-bottom: 30px;
	font-size: 46px;
}

#sdan .support .container .heading p {
	font-size: 14px;
}

#sdan .fture {
	margin: 60px 0;
	padding: 60px 0;
}

#sdan .fture .container h2 {
	margin-bottom: 40px;
	font-size: 24px;
}

#sdan .fture .container .flex {
	flex-direction: column;
}

#sdan .fture .container .flex .box {
	border-right: none;
	border-left: none;
	border-bottom: 1px solid var(--colorBlock);
	width: 100%;
}

#sdan .fture .container .flex .box:first-of-type {
	border-left: none;
	border-top: 1px solid var(--colorBlock);
}

#sdan .fture .container .flex .box:last-of-type {
	border-right: none;
}

#sdan .fture .container .flex .box a {
	display: flex;
	align-items: center;
	padding: 14px 7px;
}

#sdan .fture .container .flex .box p {
	margin-right: 20px;
	font-size: 20px;
}

#sdan .fture .container .flex .box h3 {
	text-align: left;
	font-size: 16px;
}

#sdan .fture .container .flex .box img {
	margin: 0 0 0 auto;
}

#sdan .point .container .service {
	padding-bottom: 60px;
}

#sdan .point .container .service .box > ul > li::after {
	width: 116px;
	height: 90px;
}

#sdan .point .container .service .box > ul > li > .flex {
	flex-direction: column;
}

#sdan .point .container .service .box > ul > li > .flex.row {
	flex-direction: column;
}

#sdan .point .container .service .box > ul > li .flex .text-box::after {
	width: 116px;
	height: 90px;
}

#sdan .point .container .service .box ul li .flex iframe {
	margin: 40px auto 0;
}

#sdan .point .container .service .box ul li .flex .text-box .heading h3 {
	margin-top: 39px;
	font-size: 12px;
}

#sdan .point .container .service .box ul li .flex .text-box .heading p {
	font-size: 20px;
}

#sdan .point .container .service .box ul li .flex .text-box .text-bold {
	margin: 30px 0;
	font-size: 23.8px;
}

#sdan .point .container .service .box ul li .flex .text-box .textarea {
	font-size: 13px;
}

#sdan .point .container .service .box ul li .flex .text-box .img-title {
	margin: 40px 0 10px;
	font-size: 20px;
}

#sdan .point .container .service .box ul li .flex .text-box ul li {
	margin-right: 15px;
}

#sdan .point .container .service .box ul li .flex .text-box ul li picture {
	width: 101px;
}

#sdan .point .container .service .box ul li .flex .text-box ul li p {
	margin-top: 2px;
	font-size: 13px;
}

#sdan .point .container .service .box ul li .orange-box {
	margin-top: 40px;
	width: 130px;
	height: 33px;
}

#sdan .point .container .service .box ul li > p.point-text {
	margin-top: 40px;
	padding: 17px 31px 15px;
	font-size: 13px;
}

/* タイトル */
#sdan .point .container .box h2.ttl {
	font-size: 71px;
}

#sdan .point .container .box .txt {
	font-size: 31px;
}

#sdan .point .container .box .textarea {
	font-size: 14px;
}

#sdan .info {
	padding: 60px 0 40px;
}

#sdan .info .container h2 {
	margin-bottom: 40px;
	font-size: 24px;
}

#sdan .info .container .flex.item {
	flex-wrap: wrap;
}

#sdan .info .container .flex.item.rd {
	justify-content: center;
}

#sdan .info .container .flex a {
	margin: 0 15px 15px;
	flex-basis: 33.3%;
	max-width: 4.5rem;
}

#sdan .info .container .flex a figure figcaption {
	margin-top: 0.3rem;
	font-size: 12px;
}

#sdan .info .container .others h2 {
	margin: 40px 0;
}

#sdan .info .container hr {
	margin-top: 25px;
}

#sdan .pline h2 {
	margin-bottom: 40px;
	padding-left: 22px;
	font-size: 46px;
	letter-spacing: 0.1rem;
}

#sdan .pline h2 span:nth-of-type(2) {
	margin-top: 8px;
	font-size: 20px;
}

#sdan .pline .container {
	padding: 60px 0 40px;
}

@media screen and (min-width: 768px) {
	#sdan .fture .container h2 {
		font-size: 32px;
	}

	#sdan .fture .container .flex {
		flex-direction: row;
		align-items: stretch;
	}

	#sdan .fture .container .flex .box a {
		padding: 15px;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		height: 100%;
	}

	#sdan .fture .container .flex .box {
		border-bottom: none;
		border-right: 1px solid var(--colorBlock);
	}

	#sdan .fture .container .flex .box:first-of-type {
		border-top: none;
		border-left: 1px solid var(--colorBlock);
	}

	#sdan .fture .container .flex .box:last-of-type {
		border-right: 1px solid var(--colorBlock);
	}

	#sdan .fture .container .flex .box p {
		margin-right: 0;
	}

	#sdan .fture .container .flex .box h3 {
		text-align: center;
	}

	#sdan .fture .container .flex .box img {
		margin: 10px auto 0;
	}
}

/* -------------------------------------------------------------------------------------------------その他共通機能ページ------------------------------------------------------------------------------------------------- */
#functions .heading {
	padding-bottom: 40px;
}

#functions .heading .container h1 {
	margin-bottom: 30px;
	font-size: 30px;
}

#functions .heading .container p {
	font-size: 13px;
}

#functions .function-icon {
	padding: 60px 0 40px;
}

#functions .function-icon ul {
	justify-content: center;
	width: 80%;
}

#functions .function-icon ul li {
	margin: 0 10px 15px;
	flex-basis: 15%;
	border-left: none;
}

#functions .function-icon ul li:last-of-type {
	border-right: none;
}

#functions .function-icon ul li a p {
	margin: 0.3rem 0 0;
	font-size: 12px;
}

#functions .function-list .container {
	padding: 60px 0;
}

#functions .function-list .container ul li {
	flex-direction: column;
}

#functions .function-list .container ul li:not(:last-child) {
	margin-bottom: 63px;
}

#functions .function-list .container ul li .img-box img {
	width: 100%;
}

#functions .function-list .container ul li .text-box h2 {
	margin: 30px 0;
	font-size: 23.8px;
}

#functions .function-list .container ul li .text-box h2 img {
	margin-right: 13px;
}

#functions .function-list .container > ul > li .text-box > p {
	margin-bottom: 20px;
	font-size: 13px;
}

#functions .function-list .container ul li .text-box p.img-title {
	margin-bottom: 10px;
	font-size: 20px;
}

#functions .function-list .container ul li .text-box ul li {
	margin: 0 15px 2px 0;
}

#functions .function-list .container ul li .text-box ul li p {
	font-size: 13px;
}

#functions .main-function {
	padding: 60px 0;
}

#functions .main-function h1 {
	margin-bottom: 40px;
	font-size: 24px;
}

#functions .main-function ul {
	flex-wrap: wrap;
	margin: auto;
	justify-content: space-between;
	width: 85%;
}

#functions .main-function ul li {
	margin-bottom: 15px;
	width: calc((100% - 46px) / 3);
}

#functions .main-function ul li a img {
	width: 100%;
}

#functions .main-function ul li p {
	margin-top: 0.3rem;
	font-size: 12px;
}

@media screen and (min-width: 500px) {
	#functions .main-function ul li {
		width: calc((100% - 46px) / 6);
	}

	#functions .main-function ul li p {
		font-size: 15px;
	}
}

/* -----------------------------------------------------------------------------------------------------導入事例やお客様の声---------------------------------------------------------------------------------------------- */
#customers .container {
	padding-bottom: 60px;
}

#customers .container h1.ttl {
	font-size: 46px;
	letter-spacing: 0.1rem;
}

#customers .container .txt {
	font-size: 20px;
}

#customers .container .textarea {
	margin: 30px 0 50px;
	font-size: 14px;
}

#customers .container .flex {
	flex-wrap: wrap;
}

#customers .container .flex a {
	margin-bottom: 40px;
	height: auto;
	width: 100%;
}

#customers .container .flex a img {
	margin-bottom: 20px;
	height: 267px;
}

#customers .container .flex a p:nth-of-type(1) {
	margin-bottom: 10px;
	font-size: 16px;
}

#customers .container .flex a p:nth-of-type(2) {
	font-size: 20px;
}

/*------------------------------------------------------------------------------------------- 導入事例やお客様の声 記事ページ------------------------------------------------------------------------------------------- */
#customer > .container {
	padding-bottom: 68px;
}

#customer .c-postContent h1 {
	margin-top: 30px;
}

#customer .c-postContent h1:last-of-type {
	padding-bottom: 20px;
}

#customer .c-postContent h1:last-of-type:after {
	width: 80px;
}

#customer .c-postContent p {
	margin-top: 20px;
}

#customer .c-postContent p .arkb-fz-l {
	margin-top: 20px;
}

#customer .c-postContent h2 {
	margin-top: 60px;
}

#customer .c-postContent h2::after {
	width: 80px;
}

#customer .other-article .container {
	padding: 60px 0;
}

#customer .other-article .container h1 {
	margin-bottom: 40px;
	font-size: 24px;
}

#customer .other-article .container ul {
	margin-bottom: 40px;
	flex-direction: column;
}

#customer .other-article .container ul li a img {
	height: 267px;
}

#customer .other-article .container ul li a p:nth-of-type(1) {
	margin: 20px 0 10px;
}

#customer .other-article .container ul li a p:nth-of-type(2) {
	font-size: 20px;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------記事ページ共通css ------------------------------------------------------------------------------------------------------------------------------------------------------*/
.c-postContent h1 {
	font-size: 28px;
}

.c-postContent p .arkb-fz-l {
	font-size: 14px !important;
}

.c-postContent h2 {
	padding-bottom: 20px;
	font-size: 20px;
}

.c-postContent p {
	font-size: 14px;
}

/* ---------------------------------------------------------------FAQよくある質問ページ------------------------------------------------------------- */
#help .faq h2 {
	margin-bottom: 60px;
}

#help .faq h2 span.big-ttl {
	font-size: 46px;
}

#help .faq h2 span.small-ttl {
	font-size: 20px;
}

#help .faq .container .title {
	padding: 0 50px 20px 20px;
}

#help .faq .container .title img {
	margin-right: 20px;
	width: 30px;
}

#help .faq .container .tab {
	margin-bottom: 40px;
}

/*アコーディオンで現れるエリア*/
#help .faq .box {
	padding: 30px;
}

#help .faq .container .box p {
	font-size: 13px;
	line-height: 26px;
}

#help .faq .container .accordion-area li:not(:last-child) {
	margin: 0 0 20px 0;
}

@media screen and (min-width: 768px) {
	#help .faq .container .title img {
		width: 39px;
	}

	#help .faq .container .title {
		padding: 0 50px 30px 20px;
	}
}

/*-------------------------- サポート体制やアフターフォローについて ---------------------------------*/
/* サポート体制 */
#support .about-support {
	margin-bottom: 60px;
}

#support .about-support .container h1 {
	margin-bottom: 30px;
}

#support .about-support .container h1 span:nth-of-type(1) {
	font-size: 46px;
}

#support .about-support .container h1 span:nth-of-type(2) {
	font-size: 20px;
}

#support .about-support .container p {
	font-size: 14px;
}

/* サポート体制メニュー */
#support .support-menu {
	padding: 60px 0;
}

#support .support-menu h2 {
	margin-bottom: 40px;
	font-size: 24px;
}

#support .support-menu .flex {
	margin: auto;
	flex-direction: column;
	width: 85%;
}

#support .support-menu .flex li {
	border-right: none;
	border-bottom: 1px solid var(--colorLightGray);
}

#support .support-menu .flex li:first-child {
	border-left: none;
	border-top: 1px solid var(--colorLightGray);
}

#support .support-menu .flex li a {
	padding: 14px 7px;
	display: flex;
}

#support .support-menu .flex li a p {
	margin: 0 0 0 20px;
	font-size: 16px;
}

#support .support-menu .flex li a img:nth-of-type(1) {
	margin: 0;
}

#support .support-menu .flex li a img:nth-of-type(2) {
	margin: 0 0 0 auto;
}

/* サポート体制説明 */
#support .support-description .container {
	padding: 60px 0;
}

#support .support-description .container ul li:not(:last-child) {
	margin-bottom: 60px;
}

#support .support-description .container ul li .flex,
#support .support-description .container ul #text2 .flex {
	flex-direction: column;
}

#support .support-description .container ul .flex picture {
	padding-top: 40px;
	width: 100%;
}

#support .support-description .container ul .flex picture img {
	width: 100%;
}

#support
	.support-description
	.container
	ul
	li:nth-child(1)
	.flex
	.text-box::after {
	width: 116px;
	height: 90px;
}

#support
	.support-description
	.container
	ul
	li:nth-child(2)
	.flex
	.text-box::after {
	width: 131px;
	height: 90px;
}

#support
	.support-description
	.container
	ul
	li:nth-child(3)
	.flex
	.text-box::after {
	width: 130px;
	height: 90px;
}

#support .support-description .container ul li .flex .text-box .heading {
	padding-top: 40px;
}

#support .support-description .container ul li .flex .text-box .heading h3 {
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	font-family: var(--fontTextBold);
}

#support .support-description .container ul li .flex .text-box .heading p {
	margin-bottom: 30px;
	font-size: 20px;
}

#support .support-description .container ul li .flex .text-box .text-bold {
	margin-bottom: 30px;
	font-size: 23.8px;
}

#support .support-description .container ul li .flex .text-box .textarea {
	font-size: 13px;
}

@media screen and (min-width: 768px) {
	#support .support-menu .flex {
		flex-direction: row;
	}

	#support .support-menu .flex li {
		border-bottom: none;
		border-right: 1px solid var(--colorLightGray);
		flex-basis: 33.3%;
	}

	#support .support-menu .flex li:first-child {
		border-top: none;
		border-left: 1px solid var(--colorLightGray);
	}

	#support .support-menu .flex li a {
		padding: 15px;
		flex-direction: column;
		align-items: center;
	}

	#support .support-menu .flex li a p {
		margin: 10px auto;
	}

	#support .support-menu .flex li a img:nth-of-type(2) {
		margin: 0;
	}
}

/*---------------------------------------------------------------------- お知らせアーカイブ ---------------------------------------------------------------*/
#news .container h1.ttl {
	font-size: 46px;
}

#news .container h2 {
	font-size: 20px;
	padding: 20px 0 17px;
	font-weight: 700;
	font-family: var(--fontTextBold);
}

#news .container .info .more {
	font-size: 18px;
}

#news .container .flex.ctglist::before {
	left: 33%;
}

#news .container .flex.ctglist::after {
	right: 33%;
}

#news .container .c-more__border {
	margin-left: 5px;
	width: 21px;
	top: -2px;
	margin-right: 12px;
}

#news .container .news_list a:hover .c-more__border::after {
	width: 150%;
}

#news .container .flex.ctglist::before,
#news .container .flex.ctglist::after {
	height: 35px;
}

#news .container select {
	padding: 10px 19px;
	width: 100%;
	border: 2px solid var(--colorLightGray);
	background-color: var(--colorWhite);
	font-size: 14px;
	background-image: url(../img/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right 20px center;
}

#news .container .tg_list {
	margin: 40px 0 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}

#news .container .tg_list li {
	margin-bottom: 20px;
	width: calc((100% - 20px) / 2);
}

#news .container .tg_list li a {
	padding: 4px;
	display: block;
}

#news .container .txt {
	font-size: 20px;
}

#news .container .textarea {
	margin: 30px 0 60px;
	font-size: 14px;
}

#news .container .flex.item {
	margin-top: 28px;
	flex-direction: column;
}

#news .container .flex.item .tag {
	padding: 3px 12px;
	font-size: 11px;
	display: flex;
	align-items: center;
}

#news .container .flex.item .ctg {
	padding: 3px 12px;
	margin: 0 16px 0 0;
	font-size: 11px;
	display: flex;
	align-items: center;
}

#news .container .info {
	padding: 0 11px 28px;
}

#news .container .flex .luxy a {
	width: 80%;
}

#news .container .flex a img {
	margin-bottom: 22px;
	height: 267px;
}

#news .container .flex .flex.item .time {
	margin-right: 20px;
	font-size: 15px;
}

#news .container .flex .time {
	margin-bottom: 5px;
	font-size: 16px;
}

#news .container .flex a p:nth-of-type(1) {
	font-size: 16px;
}

#news .container .news_list {
	padding-bottom: 60px;
}

@media screen and (min-width: 768px) {
	#news .container .tg_list li {
		width: calc((100% - 40px) / 4);
	}
}

/*------------------------------------------------------------------------------------------- お知らせ 記事ページ------------------------------------------------------------------------------------------- */
#single_news .container .wp-container-3.wp-container-3 {
	flex-wrap: nowrap !important;
}

#single_news .container .c-postContent .wp-block-column {
	flex-grow: inherit;
	flex-basis: auto !important;
}

#single_news .container .c-postContent .wakusen {
	padding: 0 15px;
	height: 27px;
}

#single_news .container .c-postContent .wakusen p {
	line-height: 27px;
}

#single_news .container .c-postContent .haikei {
	font-size: 16px;
}

#single_news .l_article .container {
	padding-bottom: 40px;
}

#single_news .ps_list {
	padding: 60px 0;
}

#single_news .ps_list .container .news_list {
	padding-top: 40px;
}

#single_news .ps_list .container .other_news {
	font-size: 24px;
}

#single_news .ps_list .container .news_list .p_news_lg {
	padding-bottom: 35px;
}

#single_news .ps_list .container .news_list .p_news_lg .item {
	padding-bottom: 14px;
}

#single_news .ps_list .container .news_list .p_news_lg .item .time {
	font-size: 13px;
}

#single_news .ps_list .container .news_list .p_news_lg .others_ttl {
	font-size: 13px;
}

#single_news .ps_list .container .news_list .p_news_lg a {
	padding: 5px;
}

#single_news .ps_list .view-all {
	max-width: 994px;
}

/*-------------------------- 料金について ---------------------------------*/
#price .about-price {
	margin-bottom: 60px;
}

#price .about-price .container h1 {
	margin-bottom: 30px;
}

#price .about-price .container h1 .rectangleTrigger2 {
	font-size: 46px;
	letter-spacing: 0.1rem;
}

#price .about-price .container h1 span:nth-of-type(2) {
	font-size: 20px;
}

#price .about-price .container p {
	font-size: 14px;
}

/* 導入費用と月額利用料の詳細説明 */
#price .cost-fee-description .cost-fee-description-heading .container {
	margin-bottom: 60px;
}

#price .cost-fee-description .cost-fee-description-heading .container h2 {
	margin-bottom: 40px;
	padding-left: 22px;
}

#price
	.cost-fee-description
	.cost-fee-description-heading
	.container
	h2
	span:nth-of-type(1) {
	margin-bottom: 17px;
	font-size: 14px;
}

#price
	.cost-fee-description
	.cost-fee-description-heading
	.container
	h2
	span:nth-of-type(2) {
	font-size: 22px;
}

#price .cost-fee-description .cost-fee-description-heading .container p {
	font-size: 13px;
}

/* 導入費用 */
#price .cost-fee-description .introduction-cost .container {
	margin-bottom: 60px;
	flex-direction: column;
}

#price
	.cost-fee-description
	.introduction-cost
	.container
	.introduction-cost-p
	h3 {
	margin-bottom: 30px;
	padding-top: 70px;
	font-size: 20px;
}

#price
	.cost-fee-description
	.introduction-cost
	.container
	.introduction-cost-p::after {
	width: 118px;
	height: 93px;
}

#price
	.cost-fee-description
	.introduction-cost
	.container
	.introduction-cost-p
	p {
	font-size: 13px;
}

#price
	.cost-fee-description
	.introduction-cost
	.container
	.introduction-cost-p
	p:first-of-type {
	margin-bottom: 26px;
}

#price .cost-fee-description .introduction-cost .container .box {
	margin-top: 40px;
}

#price .cost-fee-description .introduction-cost .container .box img {
	width: 100%;
}

/* 月額利用料 */
#price .cost-fee-description .usage-fee .container {
	margin-bottom: 60px;
	flex-direction: column;
}

#price .cost-fee-description .usage-fee .container .usage-fee-p h3 {
	margin-bottom: 30px;
	padding-top: 70px;
	font-size: 20px;
}

#price .cost-fee-description .usage-fee .container .usage-fee-p::after {
	width: 131px;
	height: 90px;
}

#price .cost-fee-description .usage-fee .container .usage-fee-p p {
	font-size: 13px;
}

#price
	.cost-fee-description
	.usage-fee
	.container
	.usage-fee-p
	p:first-of-type {
	margin-bottom: 26px;
}

/* 料金プランの比較表 */
#price .price-plan .container h2 {
	margin-bottom: 40px;
	padding-left: 22px;
}

#price .price-plan .container h2 span:nth-of-type(1) {
	margin-bottom: 17px;
	font-size: 14px;
}

#price .price-plan .container h2 .rectangleTrigger {
	font-size: 22px;
}

#price .price-plan .container p {
	margin-bottom: 60px;
	font-size: 13px;
}

#price .cost-fee-description .usage-fee .container .box {
	margin-top: 40px;
}

#price .cost-fee-description .usage-fee .container .box img {
	width: 100%;
}

/* 導入の流れ */
#price .flow .container {
	padding: 60px 0;
}

#price .flow .container h2 {
	margin-bottom: 40px;
	font-size: 24px;
}

#price .flow .container ul {
	flex-direction: column;
}

#price .flow .container ul li {
	padding: 30px;
}

#price .flow .container ul li:not(:last-child) {
	margin-bottom: 30px;
}

#price .flow .container ul li img {
	margin: 0 auto 8px;
}

#price .flow .container ul li p:nth-of-type(1) {
	margin-bottom: 10px;
	font-size: 20px;
}

#price .flow .container ul li p:nth-of-type(2) {
	font-size: 13px;
}

@media screen and (min-width: 768px) {
	#price .flow .container ul {
		flex-direction: row;
	}

	#price .flow .container ul li {
		padding: 12px 15px;
		width: 23%;
	}

	#price .flow .container ul li:not(:last-child) {
		margin: 0;
	}
}

/* ---------------------------------------------------------------------お問い合わせページ---------------------------------------------------------- */
#contact .container {
	padding: 70px 0;
}

#contact .container h1.ttl {
	font-size: 46px;
	letter-spacing: 0.1rem;
}

#contact .container .txt {
	margin-bottom: 40px;
	font-size: 20px;
}

#contact .container .textarea {
	margin-bottom: 40px;
	font-size: 14px;
}

#contact .container .content {
	padding: 30px;
	margin-bottom: 20px;
}

#contact .container .content label {
	margin-bottom: 20px;
	display: block;
}

#contact .container .content label br {
	display: none;
}

#contact .container .content div.radio-btn {
	margin-bottom: 20px;
}

#contact .container .content label span:nth-of-type(1),
#contact .container .content div.radio-btn span:nth-of-type(1) {
	margin-right: 18px;
	font-size: 14px;
	vertical-align: middle;
}

#contact .container .content label span.required,
#contact .container .content div.radio-btn span.required {
	margin-bottom: 5px;
	padding: 2px 5px;
	font-size: 11px;
	display: inline-block;
}

#contact .container .content div.radio-btn span.wpcf7-list-item.first {
	margin-bottom: 5px;
}

#contact .container .content label input {
	padding: 9px 12px;
	width: 100%;
	font-size: 14px;
}

#contact .container .content label select {
	padding: 9px 12px;
	width: 100%;
}

#contact
	.container
	.content
	p:nth-of-type(2)
	label
	span.wpcf7-form-control-wrap:after {
	top: 10px;
	right: 20px;
}

#contact .container .content div.radio-btn p {
	display: block;
}

#contact .container .content label textarea {
	padding: 9px 12px;
	width: 100%;
}

#contact .container form .wpcf7-acceptance label {
	margin-bottom: 20px;
	align-items: flex-start;
}

#contact .container form .wpcf7-list-item input {
	margin-right: 10px;
}

#contact .container form .wpcf7-acceptance input {
	margin-right: 13px;
}

#contact .container form .wpcf7-acceptance .wpcf7-list-item-label {
	text-align: left;
	white-space: inherit;
	font-size: 12px;
}

#contact .container form input.wpcf7-submit {
	padding: 10px;
	font-size: 14px;
}

/*-------------------------- プライバシーポリシー ---------------------------------*/
#privacy {
	padding: 60px 0	40px;
	font-size: 16px;
}

#privacy .top-border {
	height: 3px;
}

#privacy .container h1 {
	margin-bottom: 20px;
	padding: 5px 10px;
	font-size: 20px;
}

#privacy .container .policy_area .introduction {
	font-size: 14px;
}

#privacy .container .policy_area ul li h2 {
	margin-bottom: 20px;
	padding-top: 40px;
	font-size: 16px;
}

#privacy .container .policy_area ul li ul li:first-child {
	margin-top: 25px;
}

#privacy .container .policy_area ul li ul li:last-child {
	margin-bottom: 25px;
}

#privacy .container .policy_area ul li ul li.mb-0 {
	margin-bottom: 0px;
}

#privacy .container .policy_area ul li ul li {
	font-size: 14px;
	line-height: 2;
}

#privacy .container .policy_area ul li p {
	font-size: 14px;
	line-height: 2;
}

#privacy .container .policy_area ul .contact p {
	padding-left: 2em;
	margin-bottom: 25px;
}

#privacy .container .policy_area ul .contact p:nth-of-type(2) {
	margin-bottom: 10px;
}

#privacy .container .policy_area ul .contact p:last-child {
	margin-bottom: 50px;
}

#privacy .container .policy_area .signature {
	margin-bottom: 10px;
}

#privacy .container .policy_area .signature p {
	font-size: 14px;
	line-height: 2;
}
