@charset "utf-8";
/***************************************************************************************************
	page_qanda.css
***************************************************************************************************/
/*
*/
#page_qanda {
  width:100%;
  padding:100px 0 0 0;
  overflow: hidden;
}
#page_qanda > section {
  width:100%;
  background-image: url('../images/bk_tex_1.jpg');
	background-position: 50% 0;
	background-size: 1460px auto;
  background-repeat: repeat;
}
#page_qanda > section::before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 400px;
	left:0;
	top:-100px;

	background-image: url('../images/bk_tex_1.jpg');
	background-position: 50% 0;
	background-size: 1460px auto;
  background-repeat: repeat;

	mask-image: url('../images/bk_mask_1.png');
  mask-repeat: repeat-x;
  mask-position: 50% 0;
  mask-size: 1460px auto;
	-webkit-mask-image: url('../images/bk_mask_1.png');
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-position: 50% 0;
  -webkit-mask-size: 1460px auto;
}
/*  */
#page_qanda > section .page_content {
  width:100%;
}
/*
*/
#page_qanda .blk_1 {
  width:100%;
  max-width: var(--max_wid_1);
  margin: auto;
  padding:20px 0 0 0;
  z-index: 2;
}
/*  */
#page_qanda .blk_1_1 {
  width:var(--tgt_wid_1);
  margin: auto;
	z-index: 2;
}
#page_qanda .blk_1_1 h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color:#ffffff;
}
/*
*/
#page_qanda .blk_2 {
  width:100%;
  max-width: var(--max_wid_1);
  margin: auto;
  padding:80px 0 200px 0;
  z-index: 3;
}
/*  */
#page_qanda .blk_2_1 {
	width:var(--tgt_wid_1);
	margin: auto;
}
/*  */
#page_qanda .blk_2_1.comingsoon {
	height: 400px;
}
#page_qanda .blk_2_1.comingsoon::before {
	position:absolute;
	display: block;
	content:'COMING SOON';
	font-family: 'Montserrat', sans-serif;
	font-size: 50px;
	line-height: 1;
	font-weight: 400;
	color:#ffffff;
	white-space: nowrap;
	left:50%;
	top:150px;
	transform: translateX(-50%);
}
/*  */
#page_qanda .blk_2 .rep_1 {
	width: 100%;
	padding: 60px 0 20px 0;
}
#page_qanda .blk_2 .rep_1 > h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	color:#ffffff;
}
/*  */
#page_qanda .blk_2 .blk_qa {
  width:100%;
  padding:30px 0 0 0;
}
#page_qanda .blk_2 .blk_qa input {
	display: none;
}
#page_qanda .blk_2 .blk_qa h4 {
  width:100%;
  display: table;
  min-height: 60px;
}
#page_qanda .blk_2 .blk_qa h4 > span {
	position: absolute;
	display: block;
	left:calc(100% - 30px);
	top:50%;
	pointer-events: none;
}
#page_qanda .blk_2 .blk_qa h4 > span::before,
#page_qanda .blk_2 .blk_qa h4 > span::after {
	position: absolute;
	display: block;
	content: '';
	width: 18px;
	height: 2px;
	left:0;
	top:0;
	background-color: var(--col_1);
  transform:translate(-50%, -50%);
  transition:opacity .2s ease-out 0s, transform .2s ease-out 0s;
}
#page_qanda .blk_2 .blk_qa h4 > span::before {
  transform:translate(-50%, -50%) rotate(-90deg);
}
#page_qanda .blk_2 .blk_qa input:checked ~ h4 > span::before {
  transform:translate(-50%, -50%) rotate(0deg) scale(1);
}
#page_qanda .blk_2 .blk_qa input:checked ~ h4 > span::after {
  transform:translate(-50%, -50%) rotate(90deg) scale(0);
	opacity: 0;
}
#page_qanda .blk_2 .blk_qa h4 label {
  display: table-cell;
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 60px 10px 80px;
	background-color: var(--col_1);
  cursor: pointer;
	color:var(--col_1);
	font-weight: 700;
	border-radius: 30px;
	background-color: #ffffff;
  text-align: left;
  vertical-align: middle;
}
#page_qanda .blk_2 .blk_qa h4 label::before {
  position: absolute;
  display: block;
  content:'Q';
  left:0;
  top:0;
  /* top:calc(50% - 30px); */
	width:60px;
	height: 60px;
	border-radius: 50%;
	background-color:var(--col_1);
	text-align: center;
  font-size: 20px;
  line-height:55px;
	color:#ffffff;
	font-family: 'Montserrat', sans-serif; 
  font-weight: 700;
	border: 2px solid #ffffff;
}
#page_qanda .blk_2 .blk_qa > div {
  display: block;
  padding: 0 20px 0 75px;
  height: 0;
  overflow:hidden;
  opacity: 0;
  pointer-events: none;
  transition:padding .2s ease-out 0s, opacity 0s .2s;
}
#page_qanda .blk_2 .blk_qa input:checked ~ div {
  padding: 20px 20px 20px 75px;
  height: 100%;
  opacity: 1;
  pointer-events: auto;
  transition:padding .2s ease-out 0s, opacity 0s 0s;
}
#page_qanda .blk_2 .blk_qa > div > p {
  display: block;
  font-size: 16px;
  line-height: 2;
  transform:translateY(-20px);
	color:#ffffff;
  opacity:0;
  transition:transform .2s ease-out 0s, opacity .2s ease-out 0s;
}
#page_qanda .blk_2 .blk_qa input:checked ~ div > p {
  opacity:1;
  transform:translateY(0);
}
#page_qanda .blk_2 .blk_qa > div > p * {
  font-size: inherit;
  line-height: inherit;
  color:inherit;
}
#page_qanda .blk_2 .blk_qa > div > p a {
  text-decoration: underline;
  word-break: break-all;
}
#page_qanda .blk_2 .blk_qa > div > p a.nm_hover {
  text-decoration: none;
}
#page_qanda .blk_2 .blk_qa > div::before {
  position: absolute;
  display: block;
  content:'A';
  left:22px;
  top:-20px;
	width:38px;
	height: 38px;
	border-radius: 50%;
	background-color:#ffffff;
	text-align: center;
  font-size: 20px;
  line-height:35px;
	color:var(--col_1);
	font-family: 'Montserrat', sans-serif; 
  font-weight: 700;
	opacity:0;
  transition:top .2s ease-out 0s, opacity .2s ease-out 0s;
}
#page_qanda .blk_2 .blk_qa input:checked ~ div::before {
  opacity:1;
  top:19px;
}



/***************************************************************************************************
  responsive
***************************************************************************************************/

@media screen and (max-width: 1000px) {
/*
*/
#page_qanda {
  padding:100px 0 0 0;
}
#page_qanda > section::before {
	height: 400px;
	top:-50px;
  mask-size: 400px auto;
  -webkit-mask-size: 400px auto;
}
/*
*/
#page_qanda .blk_1 {
  max-width: var(--max_wid_2);
  padding:10px 0 0 0;
}
/*  */
#page_qanda .blk_1_1 {
  width:var(--tgt_wid_2);
}
#page_qanda .blk_1_1 h2 {
  font-size: 22px;
}
/*
*/
#page_qanda .blk_2 {
  max-width: var(--max_wid_2);
  padding:30px 0 100px 0;
}
/*  */
#page_qanda .blk_2 > div {
	width:var(--tgt_wid_2);
}
#page_qanda .blk_2 .rep_1 {
	padding: 20px 0 30px 0;
}
#page_qanda .blk_2 .rep_1 > h3 {
	font-size: 18px;
	padding:0 0 15px 0;
}
/*  */
#page_qanda .blk_2 .rep_1 .blk_qa {
  padding: 0 0 20px 0;
}
#page_qanda .blk_2 .blk_qa h4 {
  min-height: 52px;
}
#page_qanda .blk_2 .rep_1 .blk_qa h4 > span {
	left:calc(100% - 25px);
}
#page_qanda .blk_2 .rep_1 .blk_qa h4 > span::before,
#page_qanda .blk_2 .rep_1 .blk_qa h4 > span::after {
	width: 14px;
}
#page_qanda .blk_2 .rep_1 .blk_qa h4 label {
  font-size: 14px;
  padding: 8px 50px 8px 60px;
	border-radius: 80px;
}
#page_qanda .blk_2 .rep_1 .blk_qa h4 label::before {
	width:38px;
	height: 38px;
  font-size: 19px;
  line-height:36px;
	border: none;
	left:10px;
	top:calc(50% - 19px);
}
#page_qanda .blk_2 .rep_1 .blk_qa > div {
  padding: 0 20px 0 60px;
}
#page_qanda .blk_2 .rep_1 .blk_qa input:checked ~ div {
  padding: 20px 20px 20px 60px;
}
#page_qanda .blk_2 .rep_1 .blk_qa > div > p {
  font-size: 14px;
}
#page_qanda .blk_2 .rep_1 .blk_qa > div::before {
  left:10px;
  top:-25px;
	width:38px;
	height: 38px;
  font-size: 19px;
  line-height:35px;
}
#page_qanda .blk_2 .rep_1 .blk_qa input:checked ~ div::before {
  top:15px;
}
/*  */
#page_qanda .blk_2_1.comingsoon {
	height: 200px;
}
#page_qanda .blk_2_1.comingsoon::before {
	font-size: 26px;
	top:70px;
}

/*  */

}
