/************************** contact **************************/
#contact .c-contents {
	width: 100%;
	margin-top: 50px;
	padding-bottom: 150px;
	border-bottom: 1px solid var(--border-color);
}
#contact .c-contents .check {
	gap: 20px;
}
#contact .c-contents > div:nth-child(2) {
	margin-bottom: 20px;
}
#contact .c-contents strong {
	display: block;
	margin-bottom: 18px;
	font-size: var(--font-mvtxt);
}
#contact .privacy-wrap {
	margin-bottom: 50px;
	gap: 20px;
}
#contact .privacy-wrap li {
	width: calc(50% - 10px);
}
#contact .input-box {
	position: relative;
}
#contact .label {
	position: relative;
	margin-bottom: 10px;
	width: fit-content;
	font-size: var(--font-menu);
	color: var(--black-color);
	cursor: text;
}
#contact .label span {
	position: absolute;
	top: -6px;
	right: -12px;
	color: var(--main-color);
}
#contact .input-box input[type="text"] {
	width: 100%;
	height: 58px;
	line-height : normal;
	padding: 12px 15px;
	font-size: var(--font-menu);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	outline-style: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#contact .radio-box-wrap {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
	gap: 20px 30px;
}
#contact .radio-box input[type="radio"] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    position: relative;
    margin-right: 10px;
}
#contact .radio-box input[type="radio"]:checked::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--main-color);
}
#contact .radio-box label {
    font-size: var(--font-menu);
    font-weight: 500;
    letter-spacing: -0.24px;
    text-align: left;
    color: var(--black-color);
}
#contact .radio-box:last-child label {
	margin-right: 0;
}
#contact textarea.textarea {
	width: 100%;
	height: 250px;
	background-color: var(--white-color);
	resize: vertical;
	color: black;
	border: none;
	outline: none;
	padding: 12px 15px;
	font-size: var(--font-menu);
	border: 1px solid var(--border-color);
	border-radius: 8px;
}
#contact .situation {
	margin-bottom: 80px;
}
#contact .check input[type="checkbox"] {
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
	margin-right: 5px;
    width: 20px;
    height: 20px;
    outline: none;
    border: 1px solid var(--border-color);
	border-radius: 4px;
    vertical-align: middle;
    cursor: pointer;
}
#contact .check input[type="checkbox"]::before {
    border-radius: 4px;
    line-height: 1;
    overflow: hidden;
    transform: scale(0) translate(-50%, -50%);
}
#contact .check input[type="checkbox"]:checked {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
#contact .check input[type="checkbox"]:checked::before {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%)
}

#contact .situation > div:not(:last-child) {
	margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
#contact .check input[type="radio"] {
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
	margin-right: 5px;
    width: 20px;
    height: 20px;
    outline: none;
    border: 1px solid var(--border-color);
	border-radius: 50%;
    vertical-align: middle;
    cursor: pointer;
}
.#contact .check input[type="radio"]::before {
    border-radius: 50%;
    line-height: 1;
    overflow: hidden;
    transform: scale(0) translate(-50%, -50%);
}
#contact .check input[type="radio"]:checked {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
#contact .check input[type="radio"]:checked::before {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%)
}

#contact .btn {
	display: block;
    padding: 15px 0;
    width: 220px;
    margin: 60px auto 0;
    font-size: var(--font-regular);
    font-weight: bold;
    text-align: center;
    color: var(--white-color);
    border-radius: 50px;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    transition: all .5s ease-in;
}
#contact .btn:hover {
    border: 1px solid var(--main-color);
    background: var(--white-color);
    color: var(--main-color);
}
/************************** contact **************************/


/************************** privacy **************************/
#privacy {
	padding-top: 80px;
}
#privacy .wrap-in {
	margin: auto;
    border-bottom: 1px solid #ddd;
}
#privacy .title {
	margin-bottom: 50px;
	font-size: 40px;
	font-weight: bold;
    text-align: center;
}
#privacy h3 {
    display: block;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 500;
	line-height: 1.4;
}
#privacy ul {
    margin-bottom: 180px;
}
#privacy li {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.5;
}
#privacy ul li > div {
	margin-bottom: 30px;
}
#privacy li strong {
	display: block;
}
#privacy li p:nth-child(2) {
    margin-top: 5px;
}
/************************** privacy **************************/

@media all and (max-width:1025px) {	
	#privacy .title {font-size: 30px;}
	#privacy ul {margin-bottom: 100px;}
}

@media all and (max-width:768px){
	#contact .sub-title {font-size: 40px;}
	#contact .c-contents .check {flex-direction: column; gap: 10px 0;}
}

@media all and (max-width:641px){
	#contact .sub-title {font-size: 30px;}
	#contact .c-contents > div:nth-child(2) {margin-bottom: 10px;}
	#contact .contact-btn {margin-top: 50px;}
	#contact .check label {font-size: 14px;}
	#contact textarea.textarea {height: 200px;}
	#contact .privacy-wrap {flex-direction: column;}
	#contact .privacy-wrap li {width: 100%;}

	#privacy .title {font-size: 26px;}
	#privacy .title, #privacy h3 {margin-bottom: 40px;}
	#privacy ul {margin-bottom: 90px;}
}

@media all and (max-width:481px){
	#privacy .title, #privacy h3 {margin-bottom: 30px;}
}