@charset "utf-8";

#wrap {
	position: relative;
}

.inner {
	padding: 70px 5%;
	box-sizing: border-box;
}


#header {
	display: none;
	background: #FFFFFF;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
	padding: 15px 20px;
}
#header .logo {
	padding-right: 50px;
}
#header .logo a {
	display: flex;
	font-size: 16px;
	vertical-align: middle;
	word-break: keep-all;
	align-items: center;
}
#header .logo a img {
	width: 40px;
	vertical-align: middle;
	margin-right: 10px;
}
#header .menu {
	position: absolute;
	top: 17px;
	right: 20px;
}
#header .menu a {
	display: block;
	font-size: 12px;
	text-align: center;
}
#header .menu a img {
	display: block;
	width: 16px;
	margin: 0 auto;
}
#header .menu a.mypage_btn .thumb {
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 5px;
}
#header .menu a.mypage_btn .thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}


#side {
	width: 100%;
	max-width: 400px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 35;
	height: 100%;
	background: #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	transition: all .2s;
}
.scroll_func {
	width:100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y:auto;
}
.scroll_func::-webkit-scrollbar {
	width: 7px; 
}
.scroll_func::-webkit-scrollbar,
.scroll_func::-webkit-scrollbar-thumb {
	overflow:visible;
	border-radius: 4px;
	opacity: 0;
}
.scroll_func::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,.2); 
}

.side_wrap {
	padding: 30px;
}
#side.on {
	left: 0;
}
.side_wrap .close {
	display: none;
	position: absolute;
	top: 15px;
	right: 20px;
	width: 25px;
	height: 25px;
	z-index: 1;
}
.side_wrap .close img {
	width: 18px;
}
.side_wrap .top {
	border-bottom: 0.5px solid rgba(194, 194, 194, 0.5);
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.side_wrap .top .logo img {
	display: block;
	margin-bottom: 20px;
}
.side_wrap .top .logo a {
	display: block;
	font-size: 32px;
	font-weight: 800;
	word-break: keep-all;
}
.side_wrap .my_form {
	background: #F9F9F9;
	border-radius: 3px;
	padding: 30px 20px;
	align-items: center;
}
.side_wrap .my_form .profile {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 16px;
}
.side_wrap .my_form .profile img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.side_wrap .my_form .info {
	flex: 1;
}
.side_wrap .my_form h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}
.side_wrap .my_form .my_menu a {
	position: relative;
	font-size: 14px;
	color: #282828;
}
.side_wrap .my_form .my_menu a:nth-child(2):before {
	content: '|';
	padding: 0 6px;
}

.side_wrap .login_form label {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}
.side_wrap .login_form label input {
	display: block;
	width: 100%;
	height: 52px;
	background: #F9F9F9;
	padding: 0 16px;
	font-size: 16px;
	font-weight: 500;
	box-sizing: border-box;
}
.side_wrap .login_form button {
	display: block;
	width: 100%;
	height: 52px;
	border-radius: 5px;
}
.side_wrap .util {
	justify-content: space-between;
	margin-top: 16px;
}
.side_wrap .util > a:after {
	display: none;
}
.side_wrap .util a {
	position: relative;
	font-size: 14px;
	color: #282828;
}
.side_wrap .util a:first-child:after {
	content: '|';
	padding: 0 6px;
}
.side_wrap .box {
	border-bottom: 0.5px solid rgba(194, 194, 194, 0.5);
	padding-bottom: 30px;
}
.side_wrap .gray_box {
	background: #F9F9F9;
	margin-top: 16px;
	padding: 30px;
}
.side_wrap .gray_box .tel {
	background: url("../images/ic_phone.svg")no-repeat 0 50%;
	font-size: 20px;
	font-weight: 700;
	padding-left: 22px;
    box-sizing: border-box;
}
.side_wrap .gray_box p {
	color: #282828;
	margin-top: 10px;
}
.side_wrap .gray_box p strong {
	font-weight: 500;
}




.black_bg {
	position: fixed;
	width:100%;
	height: 100%;
	left:0;
	top:0;
	z-index: 16;
	background: rgba(0,0,0,0.4);
	display: none;
}
.not_scroll {
	overflow: hidden;
}


.container {
	padding-left: 400px;
}



#footer {
	display: none;
	padding: 60px 16px 40px;
}
#footer .gray_box {
	background: #F9F9F9;
	padding: 30px;
}
#footer .gray_box .tel {
	background: url("../images/ic_phone.svg")no-repeat 0 50%;
	font-size: 20px;
	font-weight: 700;
	padding-left: 22px;
    box-sizing: border-box;
}
#footer .gray_box p {
	color: #282828;
	margin-top: 10px;
}
#footer .gray_box p strong {
	font-weight: 500;
}




.modal {
	display: none;
	z-index: 16;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0,0,0,0.4);
	z-index: 17;
}
.modal .modal_cont {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	max-width: 1200px;
	box-sizing: border-box;
	background: #fff;
	max-height: 95%;
	padding: 5%;
	box-sizing: border-box;
	z-index: 18;
	overflow-x: hidden;
	overflow-y: visible;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}
.modal .cont img {
    width: 100%;
}
.modal .close {
	position: absolute;
	top: 3%;
  right: 1%;
	width: 20px;
}
.modal .close img {
	width: 100%;
}


table {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
table tr {
	border-bottom: 1px dashed #000;
}
table th {
	background: #F9F9F9;
	font-size: 20px;
	font-weight: 500;
	padding: 0 20px;
}
table td {
	padding: 20px;
	font-size: 20px;
}
table td .tel input {
	flex: 1;
	max-width: 55px;
	text-align: center;
}
table td .tel span {
	font-size: 20px;
	padding: 0 5px;
}

.tit {
	font-size: 48px;
	font-weight: 800;
	color: #6F00A3;
	word-break: keep-all;
}



@media screen and (max-width: 1600px){
	.inner {
		padding: 70px 70px;
	}
}
@media screen and (max-width: 1280px){
	#side {
		max-width: 320px;
	}
	.side_wrap .my_form .profile {
		width: 70px;
		height: 70px;
	}
	.side_wrap .my_form h3 {
		margin-bottom: 10px;
	}
	.container {
		padding-left: 320px;
	}
	.inner {
		padding: 70px 50px;
	}
	.tit {
		font-size: 40px;
	}
	table colgroup {
		display: none;
	}
	table th, table td {
		font-size: 18px;
	}
	table td .tel input {
		font-size: 18px;
	}
	table td .tel span {
		font-size: 18px;
	}
}
@media screen and (max-width: 1024px){
	#header {
		display: block;
	}
	#side {
		left: -110%;
	}
	.side_wrap {
		padding: 30px 16px;
	}
	.side_wrap .close {
		display: block;
	}
	.side_wrap .top .logo img {
		width: 50px;
	}
	.side_wrap .top .logo a {
		font-size: 26px;
	}
	.container {
		padding-left: 0px;
	}
	.inner {
		padding: 40px 16px;
	}
	#footer {
		display: block;
	}
	.tit {
		font-size: 30px;
	}
	table th, table td {
		font-size: 16px;
	}
	table td .tel input {
		font-size: 16px;
	}
	table td .tel span {
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
	.tit {
		font-size: 24px;
	}
	
	table td .tel span {
		font-size: 14px;
	}
}