﻿@charset "UTF-8";


/*general*/
.chatbot img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
.chatbot.launcher {
	position : fixed;
	bottom : 0;
	right : 4.687%;
	margin-right : 65px;
	margin-bottom: 25px;
	z-index : 2222;
}
.chatbot.launcher.chatbot_open {
	width: 382px;
	right : 0;
	margin-right : 0;
	margin-bottom: 0;
	z-index: 2223;
}
.chatbot.launcher.chatbot_ani_open {
	-webkit-animation: ani-chatbot_ani_open .5s linear forwards;
	-moz-animation: ani-chatbot_ani_open .5s linear forwards;
	-o-animation: ani-chatbot_ani_open .5s linear forwards;
	animation: ani-chatbot_ani_open .5s linear forwards;
/*
	-webkit-animation-name: ani-chatbot_ani_open;
	-webkit-animation-duration: .5s;
	animation-name: ani-chatbot_ani_open;
	animation-duration: .5s;
*/
}
@keyframes ani-chatbot_ani_open {
	0%{
		bottom: -100%;
	}
	100% {
		bottom: 0;
	}
}
/*--------modal--------*/

.modalBtnBlock .btn01 {
	position: relative;
	display: inline-block;
	width: 100%;
	min-width: 140px;
	padding: 14px 37px;
	border-radius: 5px;
	border: 2px solid #fff;
	background: -moz-linear-gradient(top, #A8030F 0%, #540208 100%);
	background: -webkit-linear-gradient(top, #A8030F 0%, #540208 100%);
	background: linear-gradient(to bottom, #A8030F 0%, #540208 100%);
	box-shadow: 5px 5px 10px rgba(0, 0, 0, .59);
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
}
.modalBtnBlock .btn01::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #fff;
	transform: translateY(-50%);
}
.modalBtnBlock .btn01::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 9px;
	border-color: transparent transparent transparent #A8030F;
	transform: translateY(-50%);
}
.modalBtnBlock .btn01:hover {
	color: #fff;
	text-decoration: none;
}
.modalBtnBlock a.btn01 {
	color: #fff;
}
.modalBtnBlock .btn01.is-disabled {
	padding: 13px 20px;
	border: 1px solid #A6200F;
	background: #fff;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.51);
	color: #333;
	cursor: default;
}
.modalBtnBlock .btn01.is-disabled::before {
	content: none;
}
.modalBtnBlock .btn01.is-disabled::after {
	content: none;
}
.modalBtnBlock .btn01.is-disabled:hover {
	opacity: 1;
}
.modalBtnBlock .btn01.is-disabled {
	padding: 13px 20px;
	border: 1px solid #A6200F;
	background: #fff;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.51);
	color: #333;
	cursor: default;
}

.modalWrap input {
	display: none;
}

.modalOverlay01 {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	opacity: 0;
	-webkit-transition: opacity .3s, -webkit-transform 0s .3s;
	transition: opacity .3s, -webkit-transform 0s .3s;
	transition: opacity .3s, transform 0s .3s;
	transition: opacity .3s, transform 0s .3s, -webkit-transform 0s .3s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.modalOverlay02 {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1500000;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	opacity: 0;
	-webkit-transition: opacity .3s, -webkit-transform 0s .3s;
	transition: opacity .3s, -webkit-transform 0s .3s;
	transition: opacity .3s, transform 0s .3s;
	transition: opacity .3s, transform 0s .3s, -webkit-transform 0s .3s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.modalOverlay01::-webkit-scrollbar,
.modalOverlay02::-webkit-scrollbar{
	width: 10px;
}
.modalOverlay01::-webkit-scrollbar-track,
.modalOverlay02::-webkit-scrollbar-track{
	background: #fff;
	border-left: solid 1px #ececec;
}
.modalOverlay01::-webkit-scrollbar-thumb,
.modalOverlay02::-webkit-scrollbar-thumb{
	background: #ccc;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 0 2px #fff;
	box-shadow: inset 0 0 0 2px #fff;
}

.modalTrigger {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modalContent01 {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 85%;
	max-width: 322px;
	padding: 17px 20px 25px;
	border-radius: 3px;
	border: 1px solid #707070;
	background: #fff;
	transition: .3s;
}

.modalContent02 {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 85%;
	max-width: 322px;
	padding: 17px 20px 25px;
	border-radius: 3px;
	border: 1px solid #707070;
	background: #fff;
	transition: .3s;
}

.modalContent01 .modalBox {
	padding: 10px 10px 10px;
	border-radius: 2px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.38);
}

.modalContent02 .modalBox {
	padding: 10px 10px 25px;
	border-radius: 2px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.38);
}

.modalTitle {
	position: relative;
	margin-left: 10px;
	margin-bottom: 15px;
	padding-left: 10px;
	font-size: 11px;
	font-weight: bold;
}

.modalTitle::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 3px;
	height: 1.3em;
	margin-bottom: 25px;
	background-color: #E60000;
	transform: translateY(-50%);
}

.modalBrandCheckList.hide,
.modalBtnBlock.hide {
	display: none;
}

.modalBrandCheckList li {
	display: table;
	width: 100%;
}

.modalTypeList li + li {
	margin-top: 9px;
}
.modalBrandCheckList li + li {
	margin-top: 9px;
}

.modalBrandCheckList li > .modalLogo,
.modalBrandCheckList li > .modalCheckBlock {
	display: table-cell;
}

.modalBrandCheckList .modalLogo {
	width: 54px;
	text-align: center;
	vertical-align: middle;
}

.modalBrandCheckList .modalLogo img {
	width: 54px;
}

.modalBrandCheckList .modalCheckBlock {
	padding-left: 2px;
}

.modalBtn01 {
	display: block;
	padding: 10px;
	border: 1px solid #A6200F;
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.51);
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}

.modalBrandCheck:checked + .modalBtn01 {
	background-color: #A6200F;
	color: #fff;
}

.modalBtnBlock {
	margin-top: 20px;
	text-align: center;
}

.modalBtnBlock .btn01 {
	padding: 14px 20px;
	border: none;
	font-size: 12px;
}
.modalBtnBlock .btn01::before {
	width: 16px;
	height: 16px;
}
.modalBtnBlock .btn01::after {
	right: 19px;
	border-width: 4px 0 4px 6px;
}

.modalBtnBlock .btn01::hover {
	text-decoration: none;
}

.modalContent01 .txt1,
.modalContent02 .txt1 {
	margin-bottom: 15px;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
}

.modalWrap input:checked ~ .modalOverlay01,
.modalWrap input:checked ~ .modalOverlay02 {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.modalContent01 .closeButton,
.modalContent02 .closeButton {
	position: absolute;
	top: -30px;
	right: 0;
	width: auto;
	height: auto;
	padding-right: 30px;
	border-radius: 0;
	background-color: transparent;
	color: #fff;
	font-size: 16px;
}
.modalContent01 .closeButton::before,
.modalContent01 .closeButton::after,
.modalContent02 .closeButton::before,
.modalContent02 .closeButton::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: inherit;
	width: 20px;
	height: 1px;
	background-color: #fff;
}
.modalContent01 .closeButton::before,
.modalContent02 .closeButton::before {
	transform: rotate(45deg);
}
.modalContent01 .closeButton::after,
.modalContent02 .closeButton::after {
	transform: rotate(-45deg);
}

@media only screen and (max-width: 640px) {
	.chatbot.mixed {
		position : fixed;
		bottom : 0;
		right : 4.687%;
		margin-right : 65px;
		margin-bottom: 25px;
		z-index : 2222;
	}
	.chatbot.mixed,
	.chatbot.launcher {
		width: 175px;
		right: 50%;
		margin-right: 0;
		transform: translateX(50%);
	}
	.chatbot.mixed.chatbot_open {
		width: 382px;
		right : 0;
		margin-right : 0;
		margin-bottom: 0;
		z-index: 2223;
		transform: translateX(0);
	}
	.chatbot.mixed.chatbot_open,
	.chatbot.launcher.chatbot_open {
		width: 100%;
		height: 100%;
		transform: translateX(0);
	}
	.chatbot.mixed.chatbot_open .chatbot_box,
	.chatbot.launcher.chatbot_open .chatbot_box {
/*		height: 100vh;*/
/*		height: 100%;*/
	}
	.chatbot.mixed.chatbot_open.chatbot_ani_min,
	.chatbot.launcher.chatbot_open.chatbot_ani_min {
/*
		height: 50vh;
		height: 50%;
		-webkit-transition: .3s linear;
		transition: .3s linear;
*/
		-webkit-animation: ani-chatbot_ani_min .5s linear forwards;
		-moz-animation: ani-chatbot_ani_min .5s linear forwards;
		-o-animation: ani-chatbot_ani_min .5s linear forwards;
		animation: ani-chatbot_ani_min .5s linear forwards;
	}
	.chatbot.mixed.chatbot_open.chatbot_ani_max,
	.chatbot.launcher.chatbot_open.chatbot_ani_max {
/*
		height: 100vh;
		height: 100%;
		-webkit-transition: .3s linear;
		transition: .3s linear;
		*/
		-webkit-animation: ani-chatbot_ani_max .5s linear forwards;
		-moz-animation: ani-chatbot_ani_max .5s linear forwards;
		-o-animation: ani-chatbot_ani_max .5s linear forwards;
		animation: ani-chatbot_ani_max .5s linear forwards;
	}
	.modalBox + .modalBox {
		margin-top: 15px;
	}
}
@keyframes ani-chatbot_ani_min {
	0%{
		height: 100%;
	}
	100% {
		height: 50%;
	}
}
@keyframes ani-chatbot_ani_max {
	0%{
		height: 50%;
	}
	100% {
		height: 100%;
	}
}


/*general box*/
.chatbot .chatbot_box {
/*	display: none;*/
	position: relative;
	height: 512px;
/*	background-color: #fff5f5;*/
	border-radius: 5px;
	border-left: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
	overflow: hidden;
}
.chatbot .chatbot_box .chatbot_ttl {
	width: 100%;
	color: #333333;
	font-weight: bold;
	background-color: #ffffff;
	text-align: left;
	border-bottom: 1px solid #dbdbdb;
	border-top: 6px solid #e60000;
	padding: 10px 55px 10px 10px;
	font-size: 16px;
	-webkit-user-select: none;
	user-select: none;
	box-sizing: border-box;
}
.chatbot .chatbot_box .chatbot_empty {
	padding: 0;
}
.chatbot .chatbot_box .chatbot_ttl img {
	vertical-align: middle;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.chatbot .chatbot_box_inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 640px) {
	.chatbot .chatbot_box {
		width: 100%;
		height: 100%;
	}
	.chatbot.embedded {
/*		height: calc(100vh - 100px);*/
		height: 512px;
	}
}

/*general container*/
.chatbot .chatbot_cont {
	height: calc(100% - 51px);
	padding: 10px;
  background-color: #fff5f5;
	overflow-x: hidden;
	overflow-y: scroll;
	position: relative;
	-webkit-overflow-scrolling: touch;
}
.chatbot .chatbot_max {
	height: calc(100% - 7px);
}
.chatbot .chatbot_cont p {
	font-size: 14px;
	margin-left: 90px;
}
.chatbot .chatbot_cont p.chatbot_error {
	margin-left: 0;
}
.chatbot .chatbot_cont .chatbot_icon {
	position: relative;
	min-height: 66px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	background: #ffffff;
	color: #333333;
	border-radius: 20px;
	border: solid 2px #e60000;
}
.chatbot .chatbot_cont .chatbot_icon:before {
	position: absolute;
	top: -10px;
	left: -95px;
	width: 80px;
	height: 80px;
	background: url(/cmn/img/chatbot/icon.png)no-repeat;
	background-size: 100% 100%;
	content: "";
}
.chatbot .chatbot_cont .chatbot_icon:after {
	position: absolute;
	border-color: transparent #e60000;
	border-style: solid;
	border-width: 7px 15px 3px 0;
	display: block;
	width: 0;
	top: 10px;
	z-index: 1;
	left: -15px;
	content: '';
}
.chatbot .chatbot_cont .chatbot_icon.chatbot_error:after,
.chatbot .chatbot_cont .chatbot_icon.chatbot_error:before {
	display: none;
}

/*general list*/
.chatbot .chatbot_cont .chatbot_list {
	margin-left: 90px;
}
.chatbot .chatbot_cont .chatbot_list a {
	width: 100%;
	display: inline-block;
	color: #333;
	text-decoration: none;
}
.chatbot .chatbot_cont .chatbot_list span {
	width: 100%;
	display: inline-block;
  box-sizing: border-box;
}
.chatbot .chatbot_cont .chatbot_list li {
	background-color: #FFFFE0;
	border-radius: 15px;
	box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
	color: #333333;
	cursor: pointer;
}
.chatbot .chatbot_cont .chatbot_list li a,
.chatbot .chatbot_cont .chatbot_list li span {
	padding: 9px 26px;
}
.chatbot .chatbot_cont .chatbot_list li a:before,
.chatbot .chatbot_cont .chatbot_list li span:before {
	display: inline-block;
	position: relative;
	top: 2px;
	left: -4px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid #535353;
	content: "";
}




/* --------------------------------
renew
-------------------------------- */

.contactIndex [class*="btnType"] > .btnImg {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* chatbot modify */
.contactIndex .chatbot .chatbot_box {
  height: auto;
}
.contactIndex .chatbot .chatbot_box_inner {
  position: relative;
}
.contactIndex .chatbot .chatbot_cont {
  overflow-y: auto;
}
.contactIndex .chatbot .chatbot_cont .chatbot_icon {
  background: #FFDBDB;
  border: solid 2px #FFDBDB;
  margin-bottom: 20px;
  padding: 16px 25px;
}
.contactIndex .chatbot .chatbot_cont .chatbot_icon:after {
  border-color: transparent #FFDBDB;
}
.contactIndex .chatbot .chatbot_cont .chatbot_list li {
  background-color: #FFF;
  box-shadow: none !important;
  border: 1px solid #CFCFCF;
}
.contactIndex .chatbot .chatbot_cont .chatbot_list li + li {
  margin-top: 10px;
}
.contactIndex .chatbot .chatbot_cont .chatbot_list li a,
.contactIndex .chatbot .chatbot_cont .chatbot_list li span {
  position: relative;
  padding: 20px 45px;
  font-size: 1.14286rem;
  font-weight: bold;
}
.contactIndex .chatbot .chatbot_cont .chatbot_list li a:before,
.contactIndex .chatbot .chatbot_cont .chatbot_list li span:before {
  display: none;
}
.contactIndex .chatbot .chatbot_cont .chatbot_list li a:after,
.contactIndex .chatbot .chatbot_cont .chatbot_list li span:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 1px solid #E60000;
  border-right: 1px solid #E60000;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: rotate(45deg);
}

/* --------------------------------
loading
-------------------------------- */
.js-load {
	position: relative;
}
.js-load label {
	visibility: hidden;
}
.js-load.isLoad .loader {
	display: none;
}
.js-load.isLoad label {
	visibility: visible;
}
.js-load .loader {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.js-load .loader {
	border-radius: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
}
.js-load .loader {
	border-top: 2px solid rgba(0, 0, 0, 0.2);
	border-right: 2px solid rgba(0, 0, 0, 0.2);
	border-bottom: 2px solid rgba(0, 0, 0, 0.2);
	border-left: 2px solid #000;
	/* -webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0); */
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
@keyframes load8 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* sp only */
@media screen and (max-width:640px) {
  .contactIndex .chatbot.embedded {
    height: auto;
  }
  .contactIndex .clm.item4 {
    flex-direction: column;
  }
  .contactIndex .clm.item4 > .btnType18 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 10px 40px;
  }
  .contactIndex [class*="btnType"] > .btnImg img {
    width: 78%;
  }
  .contactIndex .clm.item4 > .btnType18:nth-child(even) {
    margin-left: 0;
  }
  .contactIndex [class*="btnType"].adjust01 > .btnImg {
    padding-left: 20px;
  }
  .contactIndex [class*="btnType"].adjust02 > .btnImg {
    padding-left: 15px;
  }
  /* chatbot modify */
  .contactIndex .chatbot .chatbot_cont {
    padding: 30px 20px 30px 15px;
  }
  .contactIndex .chatbot .chatbot_cont .chatbot_list {
    margin-left: 0;
  }
}

/* pc only */
@media print, all and (min-width:641px) {
  .contactIndex .clm.item4.typeBlankIn > .btnType18{
    width: 100%;
    max-width: 209px;
  }
  .contactIndex .clm.item4.typeBlankIn:before {
    content:"";
    display: block;
    width:100%;
    max-width: 209px;
    margin-left: 20px;
    order: 1;
  }
  .contactIndex [class*="btnType"].adjust01 > .btnImg {
    padding-left: 30px;
  }
  /* chatbot modify */
  .contactIndex .chatbot .chatbot_cont {
    padding: 30px 75px 30px 25px;
  }
	/*--------modal--------*/
	.modalBtnBlock .btn01 {
		padding: 15px 37px;
		border-radius: 6px;
		opacity: 1;
		transition: opacity .2s;
	}
	.modalBtnBlock .btn01::before {
		right: 21px;
		width: 27px;
		height: 27.5px;
	}
	.modalBtnBlock .btn01::after {
		right: 27px;
		border-style: solid;
		border-width: 7px 0 7px 11px;
	}
	.modalBtnBlock .btn01:hover {
		opacity: .8;
	}
	[class^="modalContent0"] {
		position: relative;
		top: 50%;
		left: 50%;
		max-width: inherit;
		padding: 24px 30px 26px;
		transform: translateX(-50%) translateY(-50%);
	}

	.modalContent01 {
		width: 655px;
	}

	.modalContent02 {
		width: 400px;
	}

	.modalContentInner01 {
		display: flex;
		justify-content: space-between;
	}

	.modalContentInner01 .l {
		width: 246px;
	}

	.modalContentInner01 .r {
		width: 331px;
	}

	.modalContent01 .modalBox,
	.modalContent02 .modalBox {
		padding: 17px 20px 29px;
	}

	.modalTitle {
		margin-left: 0;
		margin-bottom: 19px;
		font-size: 14px;
	}

	.modalTypeList {
		margin-top: 35px;
	}
	.modalBrandCheckList {
		margin-left: 2px;
	}

	.modalBrandCheckList .modalCheckBlock {
		padding-left: 14px;
		padding-right: 7px;
	}

	.modalBtn01 {
		transition:all .3s;
	}

	.modalBtn01:hover {
		color: #A6200F;
		box-shadow: 0 3px 9px 0 rgb(0 0 0 / 25%);
	}

	.modalBtnBlock .btn01 {
		max-width: 440px;
		font-size: 14px;
	}
	.modalBtnBlock .btn01::before {
		width: 18px;
		height: 18px;
	}
	.modalBtnBlock .btn01::after {
		right: 26px;
		border-width: 4.5px 0 4.5px 7px;
	}

	.modalTypeList li + li {
		margin-top: 19px;
	}

	.modalContent01 .txt1,
	.modalContent02 .txt1 {
		margin-bottom: 15px;
		font-size: 16px;
		text-align: center;
	}
}
@media all and (min-width:0px) {
	*::-ms-backdrop, .modalOverlay01,
	*::-ms-backdrop, .modalOverlay02 {
		overflow: hidden;
	}
}