body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

.easyCatalogDownload {
	display: block;
}
.easyCatalogDownload_btn {
	width: 100%;
}

/*-------------------------------------------------
|-
|-  formModal
|-
-------------------------------------------------*/
.formModal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index:500;
}
.contactClose {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.contactClose_btn {
    width: 35px;
}
.contactClose_btn:hover {
    cursor: pointer;
    opacity: 0.8;
}
.formModal_bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
    z-index:501;
}
.formModal_content-input{
    height: 80%;
    background: #fff;
    left: 50%;
    padding: 60px 10px 30px 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    min-width: 830px;
    max-width: 830px;
    z-index:502;
    overflow-y: scroll;
}
.formModal_content-confirm{
    height: 80%;
    background: #fff;
    left: 50%;
    padding: 60px 10px 40px 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    min-width: 830px;
    max-width: 830px;
    z-index:502;
    overflow-y: scroll;
    display: none;
}
.formModal_content-complete{
    height: auto;
    background: #fff;
    left: 50%;
    padding: 60px 10px 40px 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    min-width: 830px;
    max-width: 830px;
    z-index:502;
    overflow-y: scroll;
    display: none;
}
@media screen and (max-width: 767px){
    .formModal{
        height: 100vh;
        position: fixed;
        top: 0;
        z-index:500;
    }
    .formModal_content-input{
        height: 80%;
        min-width: 87%;
        width: 87%;
        margin: 10px auto;
        padding-bottom: 80px;
    }
    .formModal_content-confirm{
        height: 80%;
        min-width: 87%;
        width: 87%;
        margin: 10px auto;
        padding-bottom: 80px;
    }
    .formModal_content-complete{
        height: 80%;
        min-width: 87%;
        width: 87%;
        margin: 10px auto;
        padding: 20px 10px 40px 10px;
    }
}
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #fff;
    border-left: solid 1px #ececec;
}
::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 10px;
    box-shadow: inset 0 0 0 2px #fff;
}

/*-------------------------------------------------
|-
|-  contactArea
|-
-------------------------------------------------*/
.contactArea {
	width:100%;
	max-width:830px;
	margin:-15px auto 20px auto;
	background-size:100%;
}
.contactArea-enq {
	margin: 0 auto 30px;
}
@media screen and (max-width: 830px){
	.contactArea {
		max-width:100%;
	}
}
@media screen and (max-width: 767px){
	.contactArea {
		background: none;
	}
	.contactArea:nth-of-type(1) {
		margin-top:50px;
	}
	.contactArea-enq {
		margin-top: 90px;
	}
}

.orderHouse_read {
	width: 720px;
	margin: 0 auto 10px auto;
	text-align: center;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.orderHouse_read {
		width: 95%;
		margin: 0 auto 15px auto;
	}
}

.catalogDlForm {
	width:600px;
	margin:20px auto;
	text-align: center;
}
@media screen and (max-width: 767px){
	.catalogDlForm {
		width: 96%;
	}
	.catalogDlForm img {
		width: 100%;
	}
}


/*-------------------------------------------------
|-
|-  onlineGreeting
|-
-------------------------------------------------*/
.onlineGreeting {
	width: 660px;
	margin:0 auto;
	position: relative;
	background-color: #F1F1F1;
}
.onlineGreeting_img {
	width: 100%;
}
.onlineGreetingBackground {
	margin-top: -66px;
	margin-bottom: 10px;
	position: relative;
	padding: 5px 0;
}
.onlineGreetingBackgroundEntry {
	width: 230px;
	background-color: #78A592;
	text-align: center;
	padding: 5px;
	font-weight: bold;
	margin: 0 auto 10px auto;
}
.onlineGreetingHope {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}
@media screen and (max-width: 767px){
	.onlineGreetingHope {
		font-size: 15px;
	}
}
.onlineGreetingHope .input_check {
	display: none;
}
.onlineGreetingHope .check {
	position: relative;
	width: auto;
	padding-left: 30px;
	box-sizing: border-box;
	display: inline-block;
	cursor: pointer;
}

.onlineGreetingHope .check:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 18px;
	height: 18px;
	margin: auto;
	background-color: #78A592;
	border: 1px solid #fff;
	border-radius: 2px;
	display: block;
}
.onlineGreetingHope .check:after {
	content: '';
	position: absolute;
	left: 4px;
	top: 63%;
	width: 6px;
	height: 16px;
	margin-top: -18px;
	border-right: 6px solid #fff;
	border-bottom: 4px solid #fff;
	display: block;
	opacity: 0;
	transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
.onlineGreetingHope .input_check:checked+.check::after {
	opacity: 1;
	transform: rotate(45deg) scale3d(1, 1, 1);
}
.onlineGreeting_read {
	width: 660px;
	margin: 0 auto;
}
@media screen and (max-width: 767px){
	.onlineGreeting_read {
		width: 95%;
		margin: 0 auto;
	}
}



.onlineGreetingEntry_read {
	font-size: 9px;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.onlineGreeting {
		width: 100%;
	}
	.onlineGreetingBackground {
	}
	.onlineGreetingBackgroundEntry {
		width: 60%;
		bottom: 10px;
		margin-top: 58px;
	}
}
.preferredDate {
	margin: 23px auto 10px auto;
	width: 330px;
	padding: 20px;
	background-color: #fff;
	border-radius: 30px 10px 30px 10px;
}
.preferredDate_tit {
	font-size: 13px;
	font-weight: bold;
	margin-bottom: 5px;
	position: relative;
}
.preferredDate_ipt {
	margin-bottom: 5px;
}
.online_seminar_date {
	padding: 5px 10px;
}
.inputTxt-50 {
	width: 50%;
}
select.preferredDate_time {
	height: 33px;
	vertical-align: bottom;
	color: #757575;
}
@media screen and (max-width: 767px){
	.preferredDate {
		width: 95%;
		margin: 0 auto;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
	}
	select.preferredDate_time {
		height: 40px;
	}
}



/*-------------------------------------------------
|-
|-  contactBlock
|-
-------------------------------------------------*/
.contactBlock {
	position: relative;
}
@media screen and (max-width: 767px){
	.contactBlock {
		width: 100%;
		background-color:#f0efec;
		padding: 0 0 20px;
	}
}
.contactBlockTitleArea {
	width:100%;
/*	position: absolute;*/
	top: -24px;
	border-bottom:1px solid #666767;
/*	display: flex;*/
	flex-wrap: wrap;
}
.contactBlockTitleArea-enq {
	display: none;
}
.contactBlockTitleArea_en {
	padding-left:5%;
	box-sizing: border-box;
	text-align: center;
}
.contactBlockTitleArea_jp {
	/*margin-left:50px;*/
	margin-left:30px;
	font-weight:bold;
	font-size: 15px;
	text-align: center;
}
.require_read {
	width: 600px;
	text-align: right;
	margin: 5px auto;
}
@media screen and (max-width: 767px){
	.require_read {
		width: 100%;
	}
}
.require_mark {
	color: #ca646f;
}
.contactBlockTitleArea_en-134 {
	width:18%;
	min-width:134px;
}
.contactBlockTitleArea_en-158 {
	width:21%;
	min-width:158px;
}
.contactBlockTitleArea_en-186 {
	width:22%;
	min-width:186px;
}
.contactBlockTitleArea_en-258 {
	width:31%;
	min-width:258px;
}
.contactBlockTitleArea_en-295 {
	width:35%;
	min-width:295px;
}
.contactBlockTitleArea_en-320 {
	width:38%;
	min-width:320px;
}
.contactBlockTitleArea_en-344 {
	width:41%;
	min-width:344px;
}
.contactBlockTitleArea_en-361 {
	width:43%;
	min-width:361px;
}
.contactBlockTitleAreaEn_img{
	width:344px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
@media screen and (max-width: 767px){
	.contactBlockTitleArea {
		border-bottom:none;
		top: -10px;
		margin-top: -15px;
	}
	.contactBlockTitleArea-enq {
		display: flex;
	}
	.contactBlockTitleArea_en {
		padding-left: 0;
		margin:-10px auto 0 auto;
	}
	.contactBlockTitleArea_jp {
		margin:0 auto;
		width:100%;
		text-align: center;
		font-size:16px;
	}
	.contactBlockTitleArea_en-158 {
		width:38%;
		min-width:38%;
	}
	.contactBlockTitleArea_en-258 {
		width:68%;
		min-width:68%;
	}
	.contactBlockTitleArea_en-295 {
		width:70%;
		min-width:70%;
	}
	.contactBlockTitleArea_en-344 {
		width:82%;
		min-width:82%;
	}
	.contactBlockTitleArea_en-347 {
		width:50%;
	}
	.contactBlockTitleArea_en-361 {
		width:86%;
		min-width:86%;
	}
	.contactBlockTitleAreaEn_img {
		width:96%;
	}

}
.contactBlockItem {
	display: flex;
	flex-wrap: wrap;
	width: 550px;
	margin: 0 auto;
}
.contactBlockItem_title {
	width:45%;
	max-width: 305px;
	padding: 20px 0px 20px 20px;
	box-sizing: border-box;
	background-color: #EFEEEB;
}
.contactBlockItemTitle_txt {
	font-weight: bold;
	font-size:13px;
	position: relative;
	padding-right: 50px;
	box-sizing: border-box;
}
.contactBlockItemTitle_inTxt {
	font-weight: bold;
	font-size:13px;
}
.contactBlockItemTitle_subTxt {
	font-size:11px;
	font-weight: 400;
	display: inline-block;
}
.itemRequired::after {
	content:"＊";
	color: #ca646f;
	font-size:14px;
	font-weight:400;
	padding: 2px 10px;
	box-sizing: border-box;
	position: absolute;
	right: 3%;
	top:0px;
/*	background-color:#ca646f;*/
}
.itemRequired-any::after {
	content:"いずれか必須";
}
.itemRequired-op::after {
	content:"任意";
	background-color:#7293ae;
}
.contactBlockItem_con {
	width:55%;
	padding:20px;
	box-sizing: border-box;
}
.contactBlockItem_con-chk {
	line-height: 200%;
}
.contactText {
	font-size:13px;
}
.contactText-req {
	position: relative;
	margin-bottom: 10px;
}
.contactText-red {
	font-weight: bold;
	color: #ca646f;
	margin-top:20px;
}
.contactText-fm {
	width: 80%;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid #a08d70;
	margin: 20px 0 5px;
	background-color: #fff;
}
.contactText-sm {
	width: 80%;
	text-align: right;
	font-size: 11px;
	margin-bottom: 20px;
}
@media screen and (max-width: 767px){
	.contactBlockItem {
		width:91%;
		margin:0 auto;
	}
	.contactBlockItem-chk {
		padding: 10px;
		background: #fff;
		box-sizing: border-box;
	}
	.contactBlockItemTitle_txt {
		font-size: 15px;
	}
	.contactBlockItemTitle_txt-full {
		padding-right: 0;
	}
	.contactBlockItemTitle_subTxt {
		width:100%;
		font-size:13px;
	}
	.contactBlockItem_title {
		width:100%;
		max-width:100%;
		padding:5px 0 0 0;
	}
	.contactText {
		font-size:13px;
		margin:0 auto;
	}

	.contactText-red {
		margin-top:20px;
	}
	.contactText-fm {
		width: 100%;
		margin: 20px auto 5px;
	}
	.contactText-sm {
		margin-bottom: 20px;
		text-align: center;
	}
	.contactBlockItem_con {
		width:100%;
		padding: 0;
		margin-bottom: 10px;
	}
	.contactBlockItem_con-chk {
		padding:10px;
		background-color: #fff;
		box-sizing: border-box;
	}
	.itemRequired::after {
		font-size:12px;
		right:0;
	}
	.itemRequiredSp {
		width:100%;
		text-align: right;
		margin-top:20px;
	}
	.itemRequiredSp:after {
		position: relative;
		padding: 4px 10px;
	}
}
.contactSelect {
	width:100%;
	margin:20px 0;
	display: flex;
	flex-wrap: wrap;
}
.contactSelect_item {
	width:60%;
	margin-bottom:20px;
	font-size:12px;
}
.contactSelect_item:nth-child(odd) {
	width:40%;
}
.contactSelectItem_radio {
	position: absolute;
	opacity: 0;
}
.cs-radioLabel {
	font-size: 13px;
	display: inline-block;
	cursor: pointer;
}
.contactSelectItem_radio + .cs-radioLabel:before {
	content: '';
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #ccc;
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	/*top: -0.2em;*/
	margin-right: 5px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
.contactSelectItem_radio:checked + .cs-radioLabel:before {
	background-color: #a08d70;
	box-shadow: inset 0 0 0 4px #f4f4f4;
}
.contactSelectItem_radio:focus + .cs-radioLabel:before {
	outline: none;
	border-color: #a08d70;
}
.contactSelectItem_radio:disabled  + .cs-radioLabel:before {
	box-shadow: inset 0 0 0 4px #f4f4f4;
	border-color: rgba(244,244,244,0.25);
	background: rgba(244,244,244,0.25);
}
.contactSelectItem_radio:empty:before {
	margin-right: 0;
}
@media screen and (max-width: 767px){
	.contactSelect {
		padding:20px;
		box-sizing: border-box;
		background-color:#fff;
	}
	.contactSelect_item {
		width:100%;
	}
	.contactSelect_item:nth-child(odd) {
		width:100%;
	}
	.cs-radioLabel {
		font-size: 13px;
	}
	.cs-radioLabel-l {
		font-size: 14px;
		font-weight:bold;
	}
}
.contactBtnArea {
	width:74%;
	min-width: 389px;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
}
.contactBtnArea_btn {
	width:177px;
	margin-bottom: 20px;
}
.contactBtnAreaBtn_acv {
	width:100%;
	padding:6px 10px;
	font-size:11px;
	font-weight:bold;
	color:#fff;
	text-align:center;
	display: inline-block;
	box-sizing: border-box;
	letter-spacing: 1px;
	position: relative;
	transition: all .2s;
}
.contactBtnAreaBtn_acv:hover {
	opacity: 0.8;
}
.contactBtnAreaBtn_acv:hover::after {
	right:8px;
}
.contactBtnArea_btn:nth-of-type(1){
	margin-right:35px;
}
.contactBtnAreaBtn_acv-gr {
	background-color:#7da68f;
}
.contactBtnAreaBtn_acv-gr::after {
	content: '';
	position: absolute;
	top: 36%;
	width: 5px;
	bottom: auto;
	margin: auto;
	height: 5px;
	right: 7%;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	border-radius: 1px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .2s;
}
.contactBtnAreaBtn_acv-br {
	background-color:#a08d70;
}
@media screen and (max-width: 767px){
	.contactBtnArea {
		width:100%;
		min-width: 100%;
		text-align: right;
	}
	.contactBtnArea_btn{
		width:100%;
	}
	.contactBtnAreaBtn_acv {
		width: 33%;
		min-width:250px;
		padding:10px;
		font-size:13px;
		display: inline-block;
	}
	.contactBtnArea_btn:nth-of-type(1){
		margin-right:0px;
	}
	.contactBtnArea_btn:nth-of-type(2){
		margin-bottom:0;
	}
}
.inputTxt {
	width:90%;
	padding:3px 10px;
	box-sizing: border-box;
}
.inputTxt-20 {
	width:20%;
}
.inputTxt-30 {
	width:30%;
}
.inputTxt-35 {
	width:35%;
}
.inputTxt-50 {
	width:50%;
}
.inputTxt-60 {
	width:60%;
}
@media screen and (max-width: 767px){
	.inputTxt {
		width:100%;
		padding:5px;
		font-size: 16px;
	}
	.inputTxt-20 {
		width:40%;
	}
	.inputTxt-30 {
		width:45%;
	}
	.inputTxt-50 {
		width:70%;
	}
	.inputTxt-60 {
		width:60%;
	}
}
.clearBtn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	padding:5px 10px;
	font-size:12px;
	font-weight: bold;
	background-color:#c3c3c3;
	color:#fff;
	border-radius: 5px;
	margin-left:10px;
	transition:0.4s;
}
.clearBtn:hover {
	opacity: 0.8;
}
.searchBtn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	padding:10px 20px;
	font-size:12px;
	font-weight: bold;
	background-color:#777778;
	color:#fff;
	border-radius: 5px;
	margin-left:10px;
	transition:0.4s;
}
.searchBtn:hover {
	opacity: 0.8;
}
@media screen and (max-width: 767px){
	.clearBtn {
		font-size:16px;
		padding:7px;
		margin-top: 5px;
	}
	.searchBtn {
		font-size:16px;
	}
}
.contactPulldown {
	padding:5px 10px;
	width:40%;
}
.contactPulldown-80 {
	width:80%;
}
.contactPulldown-100 {
	width:100%;
}
@media screen and (max-width: 767px){
	.contactPulldown {
		width:100%;
		height:50px;
		padding:15px 10px;
		font-size:16px;
	}
}
.textAreaTxt {
	width:100%;
}
@media screen and (max-width: 767px){
	.textAreaTxt {
		font-size:16px;
	}

}
.contactListEnq_label {
	font-size:13px;
	display: flex;
	cursor: pointer;
}
.inputChk {
	box-sizing: border-box;
	padding: 0;
	display: none;
 }
.inputChk + .inputChk_chkTitle {
	position: relative;
	vertical-align: middle;
	margin-right: 35px;
}
.inputChk + .inputChk_chkTitle:after {
	position: absolute;
	top: -1px;
	left: 0.3rem;
	width: 1.2rem;
	height: 1.2rem;
	content: '';
	cursor: pointer;
	border: 1px solid #ccc;
	background-color:#fff;
}

.inputChk + .inputChk_chkTitle:before {
	position: absolute;
	z-index: 1;
	top: 0.2rem;
	left: 0.6rem;
	width: 0.7rem;
	height: 0.325rem;
	content: '';
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: rotate(-45deg) scale(0, 0);
	transform: rotate(-45deg) scale(0, 0);
	border: 2px solid #a08d70;
	border-top-style: none;
	border-right-style: none;
}

.inputChk:checked + .inputChk_chkTitle:before {
	-webkit-transform: rotate(-45deg) scale(1.2, 1.2);
	transform: rotate(-45deg) scale(1.2, 1.2);
}
.inputChk_chkTitle-b {
	font-size:15px;
	font-weight: bold;
	padding-left:30px;
}
.inputChk + .inputChk_chkTitle-b:after {
	top: 1px;
}
.inputChk_chkTitle-chk {
	padding-left:0;
}
@media screen and (max-width: 767px){
	.contactListEnq_label {
		font-size: 13px;
	}
	.contactListEnq_label-l {
		font-size:15px;
		font-weight: bold;
	}
	.inputChk + .inputChk_chkTitle:after {
		 top: 1px;
	}
	.inputChk_chkTitle-b {
		font-size:20px;
	}
	.inputChk + .inputChk_chkTitle-b:after {
		top: 6px;
	}
	.inputChk + .inputChk_chkTitle-b:before {
		top:0.7rem;
	}
	.inputChk_chkTitle-online {
		padding-top:5px;
		font-size: 15px;
	}
}
.contactListEnq {
	display: flex;
	flex-wrap: wrap;
}
.contactListEnq_item {
	width:50%;
	margin-bottom:20px;
}
@media screen and (max-width: 767px){
	.contactListEnq {
		background-color:#fff;
		padding: 20px;
		box-sizing: border-box;
		margin-top:20px;
	}
	.contactListEnq_item {
		width:100%;
	}
	.contactListEnq_item:last-child {
		margin-bottom: 0;
	}
}
.otherBlock {
	margin-left:30px;
}
.btnArea {
	width:100%;
	text-align: center;
}
.btnArea-2col {
	width:44%;
	margin:0 auto;
	display: flex;
	justify-content: center;
}
.btnItem {
	margin-top: 20px;
	width: 100%;
	text-align: center;
}

.nextBtn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	width: 20%;
	min-width: 300px;
	font-size: 17px;
	color: #fff;
	font-weight: bold;
	padding: 10px 0;
	text-align: center;
	background-color: #a08d70;
	display: inline-block;
	margin: 0 auto;
	border-radius: 5px;
	transition: 0.4s;
}
.nextBtn-gray {
	background-color: #c3c3c3;
}
.nextBtn:hover {
	opacity: 0.8;
}
@media screen and (max-width: 767px){
	.btnArea-2col {
		width:91%;
	}
	.btnItem {
		width: 100%;
	}
	.nextBtn {
		width:90%;
		min-width: 90%;
		font-size: 19px;
		margin-bottom:10px;
	}
	.nextBtn-gray {
		margin-bottom: 20px;
	}
}

/*-------------------------------------------------
|-
|-  完了ページ用
|-
-------------------------------------------------*/
.finTxtArea {
	margin: 0 auto;
	width: 89%;
	max-width: 1040px;
}
.finTxtMain {
	text-align: center;
	font-size: 25px;
	font-weight: bold;
}
.finTxtSub {
	margin: 50px auto;
	text-align: center;
	line-height: 250%;
	padding-top: 50px;
	border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px){
	.finTxtArea {
		margin: 0 auto;
	}
	.finTxtMain{
		font-size: 33px;
	}
	.finTxtSub {
		text-align: left;
	}
}

.btnArea {
	margin-top: 20px;
}

.cs-errIptTxt,
.cs-errSel{
	background-color:#f4d7d7;
	border:2px solid #e08d8d;
}
.cs-errTxt {
	color: #e08d8d;
	font-size:13px;
	font-weight:bold;
}
.mt-0 {
	margin-top:0;
}
.mt-5 {
	margin-top:5px;
}
.mt-20 {
	margin-top:20px;
}
.ml-5 {
	margin-left:5px;
}
.mb-10 {
	margin-bottom:10px;
}
.mb-20 {
	margin-bottom:20px;
}
.pt-5 {
	padding-top:5px;
}
.my-0 {
	margin:0 auto;
}
.fs-12 {
	font-size: 12px;
}

