@charset “utf-8”;

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Quicksand:wght@300..700&display=swap');

/*general*/
:root {
	--main-color: #07345B;
	/*--textbase:#746C52;*/
	--textbase:#4B4B4B;
	--beige:#f3eada;
	--lightgreen:#d2e9fc;
	--darkgreen:#07345B;
	--bg-yellow:#FFFDFA;
	--bg-gray:#F5F2ED;
	--bg-brown:#B0A8A8;
	--serif: 'Noto Serif JP', "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Times, Garamond, Georgia, serif;
	--sans_serif: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
	--century: Futura, 'Century Gothic';


/*
	--textbase:#333;
	--beige:#f3eada;
	--lightgreen:#e4fff8;
	--bg-yellow:#FFFDFA;
	--bg-gray:#F5F2ED;
	--bg-brown:#B0A8A8;
*/
}


html{
	font-size: 62.5%;
}
body{
	font-family: var(--sans_serif);
	font-optical-sizing: auto;
	font-style: normal;
	color:var(--textbase);
}
p,ul{
	font-size:1.4em;
}
p{
	line-height:1.8em;
}
a{
	text-decoration:none;
	color:var(--textbase);
}
a img{
	transition:0.3s all;
}
a img:hover{
	transform:scale(1.01);
}
.f_mincho{
	font-family: var(--serif);
}
.f_century{
	font-family: var(--century);
}
.f_quicksand{
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}
.text-shadow{
	text-shadow: 0px 0px 4px  rgba(0,0,0,0.4);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);

  text-shadow: 0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333;
}
.box-shadow{
	-webkit-box-shadow:0 0 4px rgba(0,0,0,0.4);
	box-shadow:0 0 4px rgba(0,0,0,0.4);
}
.filter-box-shadow{
	-webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4)); /* SafariなどのWebkitブラウザ用 */
	filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4)); 
}
.tategaki{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.small{
	font-size:1.2rem;
}
.red{
	color:#ff0000;
}
.bg_yellow{
	background:var(--bg-yellow);
}
.bg_wall{
	background-image:url("../images/top/bg_plan.jpg");
	background-size:cover;
	background-position:center center;
}
.mx-auto{
	margin-left:auto;
	margin-right:auto;
}
.mt-15{
	margin-top:15px;
}
.mt-30{
	margin-top:30px;
}
.mt-50{
	margin-top:50px;
}
.text-center{
	text-align:center;
}
.text-left{
	text-align:left !important;
}
.flex_br{
	width:100%;
}
.spbr{
	display:none;
}
.disp_sp{
	display:none;
}
.sp_left{
	text-align:center;
}
@media screen and (max-width: 767px) {
	.spbr{
		display:block;
	}
	.pcbr{
		display:none;
	}
	.disp_pc{
		display:none;
	}
	.disp_sp{
		display:block;
	}

	.sp_left{
		text-align:left !important;
	}
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}



.wrapper{
	max-width:1112px;
	margin-inline:auto;
	padding-left:15px;
	padding-right:15px;
}
.wrapper_s{
	max-width:800px;
	margin-inline:auto;
	padding-left:15px;
	padding-right:15px;
}
/*
.btn_more{
	background:var(--darkgreen);
	padding:10px 50px;
	color:#fff;
	font-size:1.6rem;
	border-radius:30px;
	display:inline-block;
	transition:0.3s all;
	border:none;
}
a.btn_more:hover{
	transform:scale(1.01);
}
*/

.btn_more {
    width: 100%;
    max-width: 220px;
    height: 60px;
    padding: 0 20px;
    position: relative;
    text-decoration: none;
    outline: none;
    display: flex;
    border-radius: 9999px;
    background-color: #fff;
    transition: all .3s ease;
    transition: background-color .3s;
    overflow: hidden;
    background-size: 400%;
	font-size:1.4rem;
	-webkit-box-shadow:0 0 4px rgba(0,0,0,0.2);
	box-shadow:0 0 4px rgba(0,0,0,0.2);
}

.btn_more::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 2;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 110%;
    height: inherit;
    border-radius: inherit;
    background-color: var(--darkgreen);
    transition: all .3s ease
}

.btn_more::after {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    z-index: 3;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--darkgreen);
    border-radius: 20px;
    transition: all .3s ease
}

.btn_more span {
    position: relative;
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 3;
    transform: translateY(-50%);
    transition: all .3s ease;
	color:var(--textbase);
}

@media(hover: hover) {
    .btn_more:hover::before {
        transform:scaleX(1)
    }

    .btn_more:hover span {
        color: #fff
    }

    .btn_more:hover::after {
        background-color: #fff;
        transform-origin: center;
        transform: scale(2)
    }
}


.btn_small{
	background:var(--darkgreen);
	padding:8px 30px;
	color:#fff;
	font-size:1.4rem;
	border-radius:30px;
	display:inline-block;
	transition:0.3s all;
	border:none;
}
a.btn_small:hover{
	transform:scale(1.01);
}

a.textlink {
	font-size:1.3rem;
  position: relative;
  display: inline-block;
  border-bottom: 2px dotted;
  margin-bottom:15px;
  padding: .5rem 2.6rem .5rem .5rem;
  transition: all .3s;
  color:#614f38;

  &:before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 0;
    width: 0;
    height: 0;
    bottom:32%;
    border-left: 5px solid black;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transition: all .3s;
    
  }
  &:hover{
    
    &:before{
      right:0;
    }
  }
}

.cnr_ttl h2{
	font-size:2.4rem;
	letter-spacing:0.1em;
	font-weight:300;
}
.cnr_ttl p{
	font-size:1.6rem;
	margin-top:10px;
	font-weight:300;
	letter-spacing: 0.12em;
}
ul.kome{
	list-style: none;
	padding: 0;
}
ul.kome li{
	display: flex;
	padding:2px 0;
}
ul.kome li::before {
	content: "※";
	margin-right: .25em;
}

ul.sq{
	list-style: square;
	padding-left:1em;
}
ul.sq li{
	padding:2px 0;
}
.gmap {
  width: 100%;
  height: 470px;
}

.gmap iframe {
  width: 100%;
  height: 100%;
}


/*header*/
.header{
	position:relative;
}
.header .header_inner{
	position:relative;
	height:100vh;
}
#nav-toggle {
	display: none;
}
#header_top{
	display:flex;
	justify-content: space-between;
	font-family: var(--serif);
	padding:0 15px;
	max-width:1112px;
	margin: auto;
	position:relative;
	z-index:4;
}
.header #header_top{
	padding-top:40px;
}

.header #header_top .top_sub{
	margin-top:10px;
}
#header_top .top_sub *{
	line-height:2rem !important;
}
.header #header_top .top_sub *{
	color:#fff;
}
.header_p #header_top .top_sub .telno{
	color:#000;
}
.header_p #header_top .top_sub .langbtn a{
	color:#fff;
}
#header_top h1{
	display:inline-block;
}
#header_top .top_sub{
	display:flex;
	gap:16px;
}
.top_sub .telno{
	font-size:2rem;
}
.header_p .top_sub .telno{
	font-size:1.5rem;
}
.top_sub .langbtn a{
	font-size:1.2rem;
	background:#3E3936;
	color:#fff;
	border-radius:15px;
	padding:4px 15px;
}

.top_sub_sp{
	display:none;
}

.homepage #global-nav{
	/*background:rgba(255,255,255,0.8);*/
	background: linear-gradient(45deg, #1c578a, #07345B);
	padding:26px 0px;
	text-align:center;
	position:absolute;
	bottom:0;
	width:100%;
	z-index:2;
}
#global-nav_fixed{
	/*background:rgba(255,255,255,0.8);*/
	background: linear-gradient(45deg, #1c578a, #07345B);
	padding:15px 0px;
	text-align:center;
	position: fixed;
	width:100%;
	z-index:999;
	height:auto;
	top:-76px;
	transition: top .5s;
}
#global-nav_fixed.fixed{
	top:0;
}

.header_p #global-nav{
	background:rgba(0,174,149,1.0);
	padding:10px 0px;
	text-align:center;
	margin-top:15px;
}
#global-nav ul{
	max-width:1112px;
	margin: auto;
	display:flex;
	justify-content:center;
	align-items: center;
	list-style: none;
	padding:0;
}
#global-nav_fixed ul{
	max-width:1112px;
	margin: auto;
	display:flex;
	justify-content:center;
	align-items: center;
	list-style: none;
	padding:0;
}
#global-nav ul li{
}
#global-nav_fixed ul li img{
	width:200px;
}
.homepage #global-nav ul li{
	padding:0 30px;
}
#global-nav_fixed ul li{
	padding:0 20px;
}
.header_p #global-nav ul li{
	padding:3px;
}
#global-nav_fixed ul li:not(:last-child),
.homepage #global-nav ul li:not(:last-child){
	border-right:1px solid #99DED1;
}
.header_p #global-nav ul li:not(:last-child){
	border-right:1px solid #fff;
}
#global-nav_fixed ul li a,
#global-nav ul li a{
	font-family: var(--serif);
	font-weight:500;
	position:relative;
}
.homepage #global-nav ul li a{
	font-size:1.6rem;
	color:#fff;
}
#global-nav_fixed ul li a{
	font-size:1.4rem;
	color:#fff;
}
.header_p #global-nav ul li a{
	font-size:1.4rem;
	color:#fff;
	transition:0.5s;
}
#global-nav_fixed ul li a:hover,
#global-nav ul li a:hover{
	opacity:0.65;
	transition:0.5s;
}
#global-nav_fixed ul li a::after,
#global-nav ul li a::after{
	content:"";
	z-index:0;
	height:2px;
	bottom:-6px;
	left:0;
	position:absolute;
	background:#99DED1;
	opacity:0;
	width:100%;
	-webkit-transform:scaleX(0);
	transform:scaleX(0);
	-webkit-transition:0.5s opacity cubic-bezier(0.55, 0.18, 0.34, 0.81),0.5s -webkit-transform cubic-bezier(0.55, 0.18, 0.34, 0.81);
	transition:0.5s opacity cubic-bezier(0.55, 0.18, 0.34, 0.81),0.5s -webkit-transform cubic-bezier(0.55, 0.18, 0.34, 0.81);
	transition:0.5s opacity cubic-bezier(0.55, 0.18, 0.34, 0.81),0.5s transform cubic-bezier(0.55, 0.18, 0.34, 0.81);
	transition:0.5s opacity cubic-bezier(0.55, 0.18, 0.34, 0.81),0.5s transform cubic-bezier(0.55, 0.18, 0.34, 0.81),0.5s -webkit-transform cubic-bezier(0.55, 0.18, 0.34, 0.81)
}
#global-nav_fixed ul li a:hover::after,
#global-nav ul li a:hover::after{
	opacity:1;
	-webkit-transform:scaleX(1);
	transform:scaleX(1)
}




#nav-toggle div {
	position: relative;
}
/*
main .wrapper{
	max-width:1515px;
	margin: auto;
	display:flex;
	gap:20px;
	justify-content:space-between;
	padding-left:15px;
	padding-right:15px;
}
*/
/*rsv_search*/
.rsv_search{
	background:var(--lightgreen);
	padding:22px 30px;
}
.search_box{
	display:flex;
	gap:15px;
	justify-content:center;
}
.search_box h2{
	font-weight:400;
	color:var(--main-color);
	font-size:1.8rem;
	border-top:1x solid var(--main-color);
	border-top:1px solid;
	border-bottom:1px solid;
	border-color:var(--main-color);
	padding:10px 15px;
	font-family:var(--serif);
	text-align:center;
}
.search_box h2 span{
	display:block;
	font-size:1rem;
}
.search_box form{
	display:flex;
	gap:15px;
	align-items:center;
}
.search_box p{
	line-height:4.2rem;
}
form input[type=date],
form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size:1.4rem;
	padding:10px;
	background:#fff;
	border-radius:4px;
	border:none;
}


input.search_btn{
	background:var(--darkgreen);
	color:#fff;
	font-size:1.4rem;
	padding:14px 15px;
	display: block;
	cursor: pointer;
	transition:0.3s all;
	border-radius:4px;
	border:none;
}
input.search_btn:hover{
/*
	background:#B0A8A8;
	border-color:#B0A8A8;
*/
	transform:scale(1.1);
}
.allplan_btn{
	color:var(--darkgreen);
	font-size:1.4rem;
	padding:14px 15px;
	display: block;
	cursor: pointer;
	transition:0.3s all;
	border-radius:4px;
	border:1px solid var(--darkgreen);
}
.allplan_btn:hover{
	transform:scale(1.1);
}
.sub_online{
	text-align:center;
	margin-top:16px;
}
.sub_online a{
	font-size:1.3rem;
	color:var(--textbase);
	position: relative;
	padding-left:16px;
}
.sub_online a::before{
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image:url('../images/common/icon_arrow_r.png');
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right:4px;
}

/*footer*/

footer{
	background-image:url("../images/common/bg_footer.jpg");
	background-size:cover;
	background-position:right bottom;
	background-repeat:no-repeat;
	padding:80px 15px 10px;
}
.footerlogo{
	width:340px;
}
footer .footer_inner{
	display:flex;
	gap:100px;
}
.footerindex{
	color:var(--main-color);
}
.footerindex h5{
	font-size:16px;
	font-weight:normal;
}
.footerindex ul{
	font-size:1.4rem;
	list-style:none;
	border-left:1px solid var(--main-color);
}
.footerindex ul li{
	padding:8px 0;
}
.footerindex ul li a{
	color:var(--main-color);
	white-space:nowrap;
}
.footerbnr a img{
	box-shadow: 0px 0px 4px #ccc;
}
.copyright{
	color:#fff;
	font-size:12px;
	padding:10px;
	text-align:right;
}

#sec_yt{
	background:#010101;
	text-align:center;
}
#sec_yt div{
	width:100%;
	max-width:900px;
	margin:auto;
	aspect-ratio: 16 / 9;
	padding:50px 15px;
}
#sec_yt div iframe {
	width: 100%;
	height: 100%;
}

/*------------------------------------------
responsive
------------------------------------------*/

@media screen and (max-width: 999px) {
	.header{
		position: relative;
	}
	.header_p{
		padding:0 0 40px;
		position: relative;
	}
	.header_p::after {
		content: '';
		position: absolute;
		top: -10px;
		bottom: -5px;
		left: 0;
		right: 0;
		background-color: rgba(47, 79, 79,0.9);
		transform: skewY(-6deg);
		z-index: -2;
	}
	.header_inner{
		width:100%;
		position:fixed;
		padding:15px 0;
		z-index:3;
	}
	.header_p .header_inner{
		background:var(--main-color);
	}
	#header_top {
		width: 100%;
	}
	.header #header_top {
		padding-top:20px;
	}
	.header #header_top.fixed {
		background-color: rgba(47, 79, 79,0.9);
		padding:20px 0;
	}
	.header_p #header_top {
		margin:0;
	}
	header h1{
		width:250px;
	}
	#header_top h1 img{
		width:250px;
	}


	#nav-toggle {
		display: block;
	}

	.top_sub_sp{
		display:block;
		margin-top:20px;
	}
	.top_sub_sp .telno{
		font-size:2rem;
		color:#fff;
	}
	.top_sub_sp .langbtn a{
		font-size:1.2rem;
		background:#3E3936;
		color:#fff;
		border-radius:15px;
		padding:6px 30px;
		display:inline-block;
		margin-top:20px;
	}
	.top_sub_sp .rsvbtn{
		font-size:1.6rem;
		background:var(--main-color);
		color:#fff;
		padding:15px 0px;
		display:block;
		margin:30px auto;
		width:80%;
		border-radius:30px;
	}

	#global-nav_fixed {
		display:none;
	}
	#global-nav {
		position: absolute;
		background: none !important;
		top: -700px;
		width: 100%;
		text-align: center;
		margin-top: 0px !important;
		margin-right: 0px;
		padding:100px 30px 100px !important;
		bottom:auto !important;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#global-nav ul {
		display:flex;
		font-size: 14px;
		margin-top: 20px;
		flex-wrap:wrap;
		gap:10px;
		justify-content:center;
	}
	#global-nav ul li:not(:last-child) {
		border:none;
	}
	#global-nav ul li {
		padding:16px 0 !important;
		width:48%;
		border:1px solid #fff !important;
		margin-bottom:10px;
	}

	#global-nav ul li a{
		color:#fff;
	}
	#global-nav ul li img{
		margin:auto;
	}

	.top_sub{
		position: absolute;
		top: -900px;
	}

	/* #nav-toggle 切り替えアニメーション */
	#nav-toggle {
		position: relative;
/*
		position: absolute;
		right: 12px;
		top: -10px;
*/
		width: 43px;
		/*height: 60px;*/
		cursor: pointer;
		z-index: 101;
		text-align:center;
	}
	.header #nav-toggle {
		position: relative;
		padding:0px;
		top:0;
	}
	#nav-toggle span {
		display: block;
		position: absolute;
		height: 2px;
		width: 24px;
		background: #fff;
		left: 0;
		right: 0;
		margin:auto;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	#nav-toggle span:nth-child(1) {
		top: 0;
	}
	#nav-toggle span:nth-child(2) {
		top: 9px;
	}
	#nav-toggle span:nth-child(3) {
		top: 18px;
	}
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* #global-nav スライドアニメーション */
	.open #global-nav {
		display:block;
		/* #global-nav top + #mobile-head height */
		background: rgba(47, 79, 79, 0.9) !important;
		-moz-transform: translateY(650px);
		-webkit-transform: translateY(650px);
		transform: translateY(650px);
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		position:fixed;
		z-index:3;
		height:100vh;
	}
	.open #global-nav ul li a {
		font-size:1.6rem !important;
		color:#fff;
	}


	/*rsv_search*/
	.rsv_search{
		background:var(--lightgreen);
		padding:20px 0px;
	}
	.search_box{
		display:block;
	}
	.search_box h2{
		font-size:1.7rem;
		text-align:center;
		margin-bottom:15px;
	}
	.search_box form{
		display:flex;
		gap:6px;
		flex-wrap:wrap;
		justify-content:center;
	}
	.search_box p{
		line-height:4.2rem;
	}
	form input[type=date],
	form select {
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		font-size:1.4rem;
		padding:3px 8px;
		background:#fff;
		border-radius:4px;
		border:none;
	}

	.sub_online{
		text-align:center;
		margin-top:16px;
	}
	.sub_online a{
		font-size:1.2rem;
		padding-left:10px;
	}

	/*footer*/
	footer{
		background-position:right bottom;
		background-size:800px auto;
		padding:50px 15px 10px;
	}
	.footerlogo{
		width:250px;
		margin:0 auto 30px
	}
	footer .footer_inner{
		gap:10px;
		flex-wrap:wrap;
	}
	.footerindex{
		width:45%;
	}
	.footerindex h5{
		font-size:13px;
	}
	.footerindex ul{
		padding-left:10px;
	}
	.footerindex ul li{
		padding:7px 0;
	}
	.footerbnr{
		margin:30px 0 60px;
	}
	.copyright{
		font-size:10px;
		padding-right:10px;
		text-align:right;
	}
	.cnr_ttl h2{
		font-size:24px;
	}
	.cnr_ttl p{
		font-size:1.4rem;
	}

}

@media screen and (max-width: 599px) {
	#sec_yt div{
		padding:0px;
	}
}

.sidelink {
    list-style: none;
    padding: 0px;
}
.sidelink li {
    margin-bottom: 8px;
}
.sidelink li a {
    display: block;
    font-size: 1.4rem;
    color: rgb(255, 255, 255);
    text-align: left;
    position: relative;
    background: rgb(93, 194, 208);
    padding: 8px 15px 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
}
.sidelink li a::after {
    position: absolute;
    content: url("../images/top/icon_link.svg");
    top: 8px;
    right: 12px;
}

/* ==========================
  モーダル（ポップアップ）
========================== */
.js_modalWrap {
	display: none;
	z-index: 1000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.js_modalBG {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.js_modalContInner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 720px;
	max-width: 100%;
	background-color: #fff;
	max-height: 600px;
	padding: 40px;
}
.js_modalCont {
	overflow-y: scroll;
	max-height: 520px;
	padding-right:20px;
}
.js_modalCont > * + * {
	margin-top: 10px;
}
.js_modalContInner > .js_modalClose + * {
	margin-top: 0;
}

.js_modalCont h4{
	background:#fff;
	padding:8px 0;
	text-align:center;
	font-size:1.8rem;
}
.js_modalCont p{
	padding:15px;
}
.js_modalCont .photo{
	display:flex;
	gap:20px 4%;
	justify-content:center;
	flex-wrap:wrap;
}
.js_modalCont .photo img{
}
.js_modalClose {
	display: block;
	position: absolute;
	top: 10.5px;
	right: 10.5px;
	width: 20px;
	height: 20px;
	overflow: hidden;
	cursor: pointer;
	z-index: 1001;
}
.js_modalClose::before,
.js_modalClose::after {
	content: "";
	background-color: #222;
	position: absolute;
	top: -5px;
	right: 10px;
	width: 1px;
	height: 30px;
}
.js_modalClose::before {
	transform: rotate(45deg);
}
.js_modalClose::after {
	transform: rotate(-45deg);
}