@charset "UTF-8";

body,div,pre,p,blockquote,form,fieldset,input,textarea,select,option,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,table,th,td,embed,object{margin: 0;padding: 0;vertical-align: baseline;}h1,h2,h3,h4,h5,h6 {font-style: normal;font-weight: normal;font-size: 100%;}table{border-spacing:0;}* html table{border-collapse:collapse;}*:first-child+html table{border-collapse:collapse;}caption,th{text-align:left; font-weight:normal;}table,th,td,img {border:0;}img,input{vertical-align:top;}q:before,q:after{content:'';}strong,em,address{font-weight:normal;font-stretch:normal;font-style:normal;}ul{list-style:none;}article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block;}

html {
	overflow-y: scroll;	
	min-height: 100vh;
	height: -webkit-fill-available;
	font-size: 16px;
	color: #232323;
	font-family: 'Noto Sans JP', sans-serif;
}

body {
	word-break: break-all;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	padding-top: 80px;
	line-height: 1.5;
}

@media screen and (max-width:1024px) {
	html {
		font-size: 13px;
	}
	body {
		padding-top: 60px;
	}
}

img { 
	max-width: 100%;
	height: auto; 
}

a {
	text-decoration: none;
	color: #232323;
}

a:hover {
	opacity: 0.7;
}

strong {
	font-weight: bold;
}

@media screen and (min-width:1025px) {
	.sp {
		display: none!important;
	}
}
@media screen and (max-width:1024px) {
	.pc {
		display: none!important;
	}
}

/*=========================================================

00.共通設定

=========================================================*/

/* レイアウト
------------------------------------------*/

.bgWhite {
	background: #fff;
}

.bgGray {
	background: #f7f7f7;
}

.bgBlack {
	background: #121212;
}

/* インナー
------------------------------------------*/

.inner {
	max-width: 1180px;
	margin: 0 auto;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

/* 下層テンプレート
------------------------------------------*/

#pageDefault {
	padding: 100px 20px;
}

#pageDefault .read {
	text-align: center;
	margin-bottom: 50px;
}

#pageDefault .pageDefaultContents {
	background: #fff;
	padding: 50px;
	border-radius: 10px;
}

@media screen and (max-width:1024px) {
	
	#pageDefault {
		padding: 50px 15px 50px;
	}
	
	#pageDefault .read {
		text-align: center;
		margin-bottom: 25px;
	}
	
	#pageDefault .pageDefaultContents {
		padding: 25px;
	}
	
}

/* 見出し
------------------------------------------*/

.heading {
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
	letter-spacing: 2px;
}

.heading:after {
	content: attr( data-title );
	font-size: 0.7rem;
	display: block;
	margin: 10px auto 50px;
	color: #999;
	letter-spacing: 1px;
	line-height: 1;
	font-weight: normal;
}

@media screen and (max-width:1024px) {
	.heading {
		letter-spacing: 1px;
	}

	.heading:after {
		margin: 10px auto 25px;
	}	
}

/* ボタン
------------------------------------------*/

.btn {
	display: block;
}

.btn a {
	display: inline-block;
	background: #232323;
	color: #fff;
	padding: 15px 45px;
	box-sizing: border-box;
	min-width: 180px;
	border-radius: 100px;
	font-size: 0.9rem;
	font-weight: bold;
	text-align: center;
}

.bgBlack .btn a {
	background: #fff;
	color: #232323;
}

@media screen and (max-width:1024px) {

	.btn a {
		padding: 15px 30px;
		min-width: 150px;
		font-size: 0.9rem;
	}
}

/* ヘッダー
------------------------------------------*/

#header {
	display: table;
	padding: 0 20px;
	box-sizing: border-box;
	height: 80px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
}

#header .logo {
	display: table-cell;
	vertical-align: middle;
}

#header nav {
	display: table-cell;
	vertical-align: middle;
	text-align: right;
}

#header nav li {
	display: inline-block;
	font-size: 0.9rem;
	padding-left: 20px;
	font-weight: bold;
}

#header nav li:last-child a {
	display: inline-block;
	background: #232323;
	color: #fff;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 100px;
	font-weight: bold;	
}

@media screen and (max-width:1024px) {
	
	#header {
		padding: 0 10px;
		height: 60px;
		z-index: 2000;
	}
	
	#header .logo img {
		height: 40px;
		width: auto;
	}

	.modalBtn {
		display: block;
		vertical-align: middle;
		width: 40px;
		position: relative;
		position: absolute;
		top: 10px;
		right: 10px;
	}
	.mnuTrg {
		display: inline-block;
		width: 40px;
		height: 40px;
		vertical-align: middle;
		cursor: pointer;
		z-index: 3100;
		border-radius: 5px;
	}
	.mnuTrg span {
		display: inline-block;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		width: 26px;
		height: 3px;
		background: #232323;
		transition: all .5s;
		z-index: 3101;
	}

	.mnuTrg:active {
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}

	.mnuTrg.active {
		/*background: #000;*/
	}

	.mnuTrg.active span {
		background: #232323;
	}

	.mnuTrg span:nth-of-type(1) {
		top: 9px;
		left: calc(50% - 13px);
		position: absolute;
	}

	.mnuTrg.active span:nth-of-type(1) {
		transform: translateY(10px) rotate(-45deg);
	}

	.mnuTrg span:nth-of-type(2) {
		position: absolute;
		top: 18px;
		left: calc(50% - 13px);
		margin: 0;
	}

	.mnuTrg.active span:nth-of-type(2) {
		opacity: 0;
	}

	.mnuTrg span:nth-of-type(3) {
		position: absolute;
		top: 27px;
		left: calc(50% - 13px);
	}

	.mnuTrg.active span:nth-of-type(3) {
		  transform: translateY(-8px) rotate(45deg);
	}

	.mNav {
		width: 300px;
		height: calc(100% - 60px);
		padding: 15px;
		background: #232323;
		position: fixed;
		top: 60px;
		box-sizing: border-box;
		right: 0;
		transform: translate(370px);
		transition: all .5s;
		z-index: 3050;
		font-size: 12px;
		overflow-y: scroll;
	}

	.mNav.open {
		transform: translateZ(0);
	}

	.mNav .mNavMenu {
		margin: 0 0 20px;
	}

	.mNav .mNavMenu {
		text-align: left;
		font-size: 1rem;
	}

	.mNav .mNavMenu a {
		position: relative;
		padding: 15px 0;
		display: block;
		color: #fff;
	}

	.mNav .mNavMenu li:not(:first-child) {
		border-top: solid 1px rgba(255,255,255,0.2);
	}
	
	.mNav .mNavMenu li:last-child {
		text-align: center;
		border: none
	}
	
	.mNav .mNavMenu li:last-child a {
		display: inline-block;
		background: #fff;
		color: #232323;
		padding: 10px 20px;
		box-sizing: border-box;
		border-radius: 100px;
		font-weight: bold;	
		margin-top: 20px;
		min-width: 150px;
	}

	.overlay {
	  content: "";
	  display: block;
	  width: 0;
	  height: 0;
	  background-color: rgba(0, 0, 0, 0.5);
	  position: fixed;
	  top: 0;
	  left: 0;
	  opacity: 0;
	  transition: opacity .5s;
	  z-index: 50;
	}
	.overlay.open {
	  width: 100%;
	  height: 100%;
	  opacity: 1;
	}
	
}

/* フッター
------------------------------------------*/

#footer {
	background: #232323;
	text-align: center;
}

#footer nav {
	padding: 70px 0 0;
}

#footer nav ul {
	text-align: center;
}

#footer nav li {
	display: inline;
	margin: 0 20px;
}

#footer nav a {
	color: #fff;
	font-size: 0.9rem;
	font-weight: bold;
}

.footerLogo {
	padding-bottom: 70px;
	padding-top: 70px;
}

.footerLogo img {
	width: 117px;
}

.copyRight {
	background: #fff;
	padding: 40px 0;
	width: 100%;
	display: block;
	letter-spacing: 2px;
	font-size: 0.8rem;
}

@media screen and (max-width:1024px) {

	#footer nav {
		padding: 35px 0 0;
		text-align: center;
	}
	
	#footer nav ul {
	display: inline-block;
		
	}

	#footer nav li {
		text-align: left;
	}

	#footer nav a {
		color: #fff;
		font-size: 0.9rem;
		font-weight: bold;
		display: block;
	}

	.footerLogo {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.footerLogo img {
		width: 58px;
	}

	.copyRight {
		padding: 20px 0;
	}	
}

/*=========================================================

01.TOP

=========================================================*/


/* fv
------------------------------------------*/

#fv {
	padding: 130px 20px;
	background-image: url("../images/fv.png");
	background-repeat: no-repeat;
	background-position: right 20% center;
	background-size: auto 110%;
}

#fv .copy01 {
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 2px;
	margin-bottom: 40px;
}

#fv .copy02 {
	font-weight: bold;
	letter-spacing: 1px;
	margin-bottom: 45px;
}

@media screen and (max-width:1024px) {
	
	#fv {
		padding: 70px 15px;
		background-image: url("../images/fv.png");
		background-repeat: no-repeat;
		background-position: right -50px center;
		background-size: auto 110%;
	}

	#fv .copy01 {
		font-size: 1.8rem;
		letter-spacing: 1px;
		margin-bottom: 20px;
	}

	#fv .copy02 {
		margin-bottom: 22px;
	}
	
}

/* worry
------------------------------------------*/

#worry {
	padding: 100px 20px;
}

.worryList {
	display: flex;
	flex-wrap: wrap;
}

.worryList li {
	width: 31%;
	margin-right: 3.5%;
	margin-top: 20px;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 25px;
	box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2);
}

.worryList li:nth-child(3n){
	margin-right: 0;
}

.worryList li:nth-child(1),
.worryList li:nth-child(2),
.worryList li:nth-child(3){
	margin-top: 0;
}

@media screen and (max-width:1024px) {
	#worry {
		padding: 50px 15px;
	}

	.worryList li {
		width: 100%;
		margin-right: 0;
		margin-top: 10px;
		padding: 12px;
	}

	.worryList li:nth-child(2),
	.worryList li:nth-child(3){
		margin-top: 10px;
	}	
}

/* concept
------------------------------------------*/

#concept {
	padding: 100px 20px;	
	color: #fff;
	text-align: center;
}

#concept p {
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 5px;
	margin-bottom: 40px;
}

#concept p span {
	font-size: 1.4rem;
	display: inline-block;
	line-height: 2.2;
	margin-bottom: 10px;
}

@media screen and (max-width:1024px) {

	#concept {
		padding: 50px 15px;	
	}

	#concept p {
		font-size: 1.8rem;
		font-weight: bold;
		letter-spacing: 2px;
		margin-bottom: 10px;
	}

	#concept p span {
		font-size: 1.1rem;
		margin-bottom: 5px;
	}	
	
}

/* important
------------------------------------------*/

#important {
	padding: 100px 20px;
}

#important .info {
	width: 56%;
	margin-right: 6%;
}

#important .image {
	width: 38%;
}

#important .copy {
	font-size: 1.5rem;
	margin-bottom: 30px;
	font-weight: bold;
	letter-spacing: 1px;
}

#important .text {
	line-height: 2;
}

#important .image h3 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 20px;
}

#important .image p {
	margin-bottom: 50px;
}

#important .image p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:1024px) {
	
	#important {
		padding: 50px 15px;
	}

	#important .info {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	#important .image {
		width: 100%;
	}

	#important .copy {
		margin-bottom: 15px;
	}

	#important .text {
		line-height: 2;
	}

	#important .image h3 {
		font-size: 1.1rem;
		font-weight: bold;
		margin-bottom: 20px;
	}

	#important .image p {
		margin-bottom: 25px;
		text-align: center;
	}	
	
}

/* support
------------------------------------------*/

#support {
	padding: 100px 20px;
}

#support .info {
	width: 56%;
	margin-right: 6%;
}

#support .image {
	width: 38%;
}

#support .text {
	line-height: 2;
}

@media screen and (max-width:1024px) {
	
	#support {
		padding: 50px 15px;
	}

	#support .info {
		width:100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	#support .image {
		width:100%;
		margin-right: 0;
	}
	
	#support .image p {
		text-align: center;
	}
	
}

/* service
------------------------------------------*/

#service {
	padding: 100px 20px 20px;
}
#service .text {
	line-height: 2;
}

#service h3 {
	display: table;
	margin-bottom: 50px;
}

#service h3 span {
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 1px;
	display: table-cell;
	vertical-align: middle;
}

#service h3:after {
	content: attr( data-title );
	font-size: 0.7rem;
	color: #999;
	letter-spacing: 1px;
	font-weight: normal;
	display: table-cell;
	vertical-align: middle;
	padding-left: 15px;
}

.serviceList {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 30px;
}

.serviceList li {
	width: 31%;
	margin-right: 3.5%;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.serviceList li:nth-child(3n){
	margin-right: 0;
}

.serviceList h4 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	font-weight: bold;
}

.serviceList p {
	line-height: 2;
}


@media screen and (max-width:1024px) {
	
	#service {
		padding: 50px 15px 10px;
	}

	#service h3 {
		display: table;
		margin-bottom: 12px;
	}

	.serviceList {
		padding-bottom: 15px;
	}

	.serviceList li {
		width: 100%;
		margin-right: 0;		
		box-sizing: border-box;
		margin-bottom: 25px;
	}
	
	.serviceList li:nth-child(2n){
		margin-right: 0;
	}

	.serviceList li:nth-child(3n){
		margin-right: auto;
	}

	.serviceList h4 {
		margin-bottom: 10px;
	}
	
	.serviceList p {
		line-height: 1.5;
	}
	
}

/* contact
------------------------------------------*/

#contact {
	padding: 100px 20px;	
	color: #fff;
	text-align: center;
}

@media screen and (max-width:1024px) {

	#contact {
		padding: 50px 10px;	
		color: #fff;
		text-align: center;
	}
	
}

/* strength
------------------------------------------*/

#strength {
	padding: 100px 20px;	
}

.strengthList {
	display: table;
	width: 100%;	
}

.strengthList li {
	display:table-row;
}

.strengthList li span {
	display: table-cell;
	width: 120px;
	vertical-align: middle;
	padding-bottom: 80px;
}

.strengthList li span:after {
	content: "";
	display: block;
	width: 80px;
	height: 52px;
	background-size: cover;
}

.strengthList li:nth-child(1) span:after {
	background-image: url("../images/number_01.png");
}

.strengthList li:nth-child(2) span:after {
	background-image: url("../images/number_02.png");
}

.strengthList li:nth-child(3) span:after {
	background-image: url("../images/number_03.png");
}

.strengthList li:nth-child(4) span:after {
	background-image: url("../images/number_04.png");
}

.strengthList li:nth-child(5) span:after {
	background-image: url("../images/number_05.png");
}

.strengthList li:last-child {
	margin-bottom: 0;
}

.strengthList li h3 {
	display: table-cell;
	padding-right: 50px;
	vertical-align: middle;
	font-size: 1.5rem;
	font-weight: bold;
	padding-bottom: 80px;
}

.strengthList li p {
	display: table-cell;
	font-size: 1.1rem;
	vertical-align: middle;
	padding-bottom: 80px;
}


@media screen and (max-width:1024px) {
	
	#strength {
		padding: 50px 15px;	
	}

	.strengthList li span {
		width: 55px;
		padding-bottom: 0;
		padding-right] 10px;
	}

	.strengthList li span:after {
		width: 40px;
		height: 26px;
		background-size: cover;
	}

	.strengthList li:nth-child(1) span:after {
		background-image: url("../images/number_01.png");
	}

	.strengthList li:nth-child(2) span:after {
		background-image: url("../images/number_02.png");
	}

	.strengthList li:nth-child(3) span:after {
		background-image: url("../images/number_03.png");
	}

	.strengthList li:nth-child(4) span:after {
		background-image: url("../images/number_04.png");
	}

	.strengthList li:nth-child(5) span:after {
		background-image: url("../images/number_05.png");
	}

	.strengthList li:last-child {
		margin-bottom: 0;
	}
	
	.strengthList li div {
		display: table;
		margin-bottom: 10px;
	}

	.strengthList li h3 {
		padding-right: 0;
		padding-bottom: 0;
	}
	
	.strengthList li p {
		display: block;
		padding-bottom: 20px;
	}
	
	.strengthList li:last-child p {
		padding-bottom: 0;
	}
	
}

/* case
------------------------------------------*/

#case {
	padding: 100px 20px;
}

#case .copy {
	font-size: 1.5rem;
	margin-bottom: 60px;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
}

.caseList {
	display: flex;
	width: 100%;
	padding: 30px 45px;
	background: #fff;
	flex-wrap: wrap;
	border-radius: 10px;
	box-sizing: border-box;
}

.caseList li {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 15%;
	height: 100px;
	margin: 15px 5%;
}

@media screen and (max-width:1024px) {
	#case {
		padding: 50px 15px;
	}

	#case .copy {
		margin-bottom: 30px;
	}

	.caseList {
		display: flex;
		padding: 15px 22px;
	}

	.caseList li {
		width: 40%;
		margin: 7px 5%;
	}
}

/* information
------------------------------------------*/

#information {
	padding: 100px 20px;	
}

.informationList li {
	border-bottom: 1px solid #ccc;
	padding: 30px 0;
}

.informationList li:last-child {
	border-bottom: none;
}

.informationList li time {
	margin-right: 20px;
}

@media screen and (max-width:1024px) {
	#information {
		padding: 50px 15px;	
	}

	.informationList li {
		padding: 15px 0;
	}

	.informationList li time {
		margin-right: 0;
		display: block;
	}	
}

/* greeting
------------------------------------------*/

#greeting {
	padding: 100px 20px;	
}

.message {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 1px solid #ccc;
}

.message .copy {
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 50px;
	font-weight: bold;
}

.message .text {
	margin-bottom: 30px;
	line-height: 1.8;
}

.message .sign {
	text-align: right;
	line-height: 2;
}

.message .sign span {
	font-size: 0.9rem;
}

.profile {
	display: table;
	width: 100%;
}

.profile .image {
	display: table-cell;
	vertical-align: top;
	width: 240px;
	padding-right: 50px;
}

.profile .info {
	display: table-cell;
	vertical-align: top;
}

.profile .name {
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 2;
}

.profile .name span {
	font-size: 0.9rem;
}

.profile .text {
	margin-bottom: 20px;
	line-height: 1.8;
}

.profile .sns li {
	display: inline-block;
	margin-right: 5px;
	width: 26px;
}

@media screen and (max-width:1024px) {
	#greeting {
		padding: 50px 15px;	
	}

	.message {
		padding-bottom: 25px;
		margin-bottom: 25px;
	}

	.message .copy {
		margin-bottom: 25px;
	}

	.message .text {
		margin-bottom: 10px;
		line-height: 1.5;
	}

	.message .sign {
		line-height: 1.5;
	}

	.message .sign span {
		font-size: 0.9rem;
	}

	.profile {
		display: table;
		width: 100%;
	}

	.profile .image {
		display: table-cell;
		vertical-align: middle;
		width: 120px;
		padding-right: 25px;
	}

	.profile .info {
		display: table-cell;
		vertical-align: middle;
	}

	.profile .name {
		margin-bottom: 10px;
	}

	.profile .name span {
		font-size: 0.9rem;
	}

	.profileText {
		margin-bottom: 0;
		padding-top: 20px;
		line-height: 1.5;
	}

	.profile .sns li {
		width: 20px;
	}	
}






/*=========================================================

02.お問い合わせ

=========================================================*/

/* service
------------------------------------------*/

#pageContact {
	padding: 100px 20px;
}

#pageContact .text {
	line-height: 2;
}

#pageContact h2 {
	display: table;
	margin-bottom: 50px;
}

#pageContact h2 span {
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 1px;
	display: table-cell;
	vertical-align: middle;
}

#pageContact h2:after {
	content: attr( data-title );
	font-size: 0.7rem;
	color: #999;
	letter-spacing: 1px;
	font-weight: normal;
	display: table-cell;
	vertical-align: middle;
	padding-left: 15px;
}

#pageContact .read {
	text-align: center;
	margin-bottom: 50px;
}

#pageContact .caseList {
	margin-bottom: 50px;
}

#pageContact .inquiry {
	background: #fff;
	padding: 50px;
	border-radius: 10px;
}

.inquiry .text {
	text-align: center;
	margin-bottom: 50px;
}

.inquiryDl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 0 30px;
}

.inquiryDl dt {
	width: 20%;
	padding-bottom: 25px;
	font-weight: bold;
}

.inquiryDl dd {
	width: 80%;
	padding-bottom: 25px;
}

input.w100 {
	width: 100%;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 15px;
	line-height: 2;
	font-size: 1rem;
}

textarea.w100 {
	width: 100%;
	height: 180px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 15px;
	line-height: 2;
	font-size: 1rem;
}

.policy {
	width: 100%;
	height: 180px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 15px;
	line-height: 1.5;
	overflow-y: scroll;
	margin: 20px 0;
	font-size: 0.9rem;
}

.caution {
	color: #b11616;
	font-weight: bold;
}

label input {
	margin: 6px 6px 0 0;
}

.center {
	text-align: center;
}

.submit {
	display: inline-block;
	background: #232323;
	color: #fff;
	padding: 15px 45px;
	box-sizing: border-box;
	min-width: 180px;
	border-radius: 100px;
	font-size: 0.9rem;
	font-weight: bold;
	text-align: center;
	border: none;
	margin: 0 auto;
}
.submit.disabled {
	background: #ccc;
}

.mw_wp_form .error {
	font-size: 0.9rem;
	color: #b11616;
	display: block;
	margin-top: 10px;
}

.thankyou {
	text-align: center;
}

.thankyou .copy {
	font-size: 1.5rem;
	margin-bottom: 30px;
	font-weight: bold;
	letter-spacing: 1px;
}

.thankyou .text {
	line-height: 2;
	margin-bottom: 50px;
}

.grecaptcha-badge { visibility: hidden; }

@media screen and (max-width:1024px) {
	
	#pageContact {
		padding: 50px 15px 50px;
	}

	#pageContact h2 {
		display: table;
		margin-bottom: 12px;
	}

	#pageContact .read {
		text-align: center;
		margin-bottom: 25px;
	}

	#pageContact .caseList {
		margin-bottom: 25px;
	}

	#pageContact .inquiry {
		padding: 25px;
	}

	.inquiry .text {
		margin-bottom: 25px;
	}

	.inquiryDl {
		display: block;
		width: 100%;
	}

	.inquiryDl dt {
		width: 100%;
		padding-bottom: 12px;
	}

	.inquiryDl dd {
		width: 100%;
		padding-bottom: 12px;
	}

	.policy {
		margin: 10px 0;
	}

	label input {
		margin: 4px 4px 0 0;
	}

	.thankyou .copy {
		margin-bottom: 15px;
	}

	.thankyou .text {
		margin-bottom: 25px;
	}
	
}