/*---------------
font
---------------*/
.en{
	font-family: "Lato", serif;
	font-style: normal;
}
.en2{
	font-family: 'din-2014', sans-serif;
	font-style: normal;
}
.jp{
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.jp2{
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック", "YuGothic", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
/*---------------
body
---------------*/
html{
	margin-top: 0!important;
}
body{
	position: relative;
	overflow-x: hidden;
}
.pc-on{
	display: block;
}
.sp-on{
	display: none;
}
.br-pc{
	display: block;
}
.br-sp{
	display: none;
}
.fade {
  opacity: 0;
  -webkit-animation: fadeIn ease 1.5s;
  -moz-animation: fadeIn ease 1.5s;
  -o-animation: fadeIn ease 1.5s;
  -ms-animation: fadeIn ease 1.5s;
  animation: fadeIn ease 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.title-ani, .title-ani02, .title-ani03 {
  opacity: 0;
  transform: translateX(-50px);
}
.fade-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media all and (max-width: 786px) {
	html{
		max-width: 786px;
	}
	body{
		max-width: 786px;
	}
	.pc-on{
		display: none;
	}
	.sp-on{
		display: block;
	}
	.br-pc{
		display: none;
	}
	.br-sp{
		display: block;
	}
}

/*---------------
head,button
---------------*/
.link-block{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px 0 80px;
}
.main-head{
	display: inline-block;
}
.main-head h1{
}
.main-head h2{
}
.main-head p{
	letter-spacing: 0.08em;
}
.co-contact{
	position: fixed;
	bottom: 40px;
	right: 0;
	z-index: 1000;
}
.co-contact a img{
	width: 178px;
	transition: transform 0.3s ease;
}
.co-contact a img:hover{
	width: 178px;
	transform: rotate(-30deg);
}
@media all and (max-width: 786px) {
	.link-block{
		padding: 0 16px 0 20px;
	}
	.co-contact{
		bottom: auto;
		top: calc(100vh - 170px);
		right: 7px;
	}
	.co-contact a img{
		width: 127px;
	}
	.co-contact a img:hover{
		pointer-events: none;
		width: 127px;
		transform: unset;
	}
}

/*-----------------------------------------
  fade-in
-----------------------------------------*/
/*
.fade-in {
  opacity: 0;
}
.fade-in.active {
  animation: fadeIn .8s .5s ease-out forwards;
}
@keyframes fadeIn {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
*/


/*---------------
header
---------------*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	height: 150px;
	width: 100%;
	z-index: 5000;
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.symbol-logo{
	position: absolute;
  top: 50%;
  left: 140px;
  transform: translateY(-50%);
  display: block;
	width: 222px;
}
.symbol-logo img{
	width: 222px;
}
@media all and (max-width: 786px) {
	#header{
		height: 80px;
	}
	.symbol-logo{
		position: absolute;
		top: 18px;
		left: 20px;
		width: 112px;
		transform: unset;
	}
	.symbol-logo img{
		width: 112px;
	}
}

/*---------------
mainContent
---------------*/
#mainContent{
	width: 100%;
	margin: 0;
	max-width: 100%;
}

/*---------------
contents-list
---------------*/
.cts-thum{
	height: 170px;
	width: 100%;
}
.cts-thum img{
	height: 170px;
	width: 100%;
	object-fit: cover;
}

.cts-ct {
    color: #fff;
    height: 46px;
    line-height: 46px;
    width: 100%;
    padding: 0 0 0 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cts-ct::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(190, 190, 190, 1), rgba(255, 255, 255, 0));
    z-index: -1;
    transition: opacity 0.5s ease;
}

.cts-ct::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(190, 190, 190, 1), rgba(190, 190, 190, 1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.top-jn-cts ul li:hover .cts-ct::before,
.related-li ul li:hover .cts-ct::before,
.jn-pickup-r ul li:hover .cts-ct::before,
.jn-latest-li ul li:hover .cts-ct::before {
    opacity: 0;
}

.top-jn-cts ul li:hover .cts-ct::after,
.related-li ul li:hover .cts-ct::after,
.jn-pickup-r ul li:hover .cts-ct::after,
.jn-latest-li ul li:hover .cts-ct::after {
    opacity: 1;
}
.cts-title{
	font-weight: bold;
	margin: 16px 0;
	color: #212121!important;
}
.cts-des{
	color: #212121!important;
}

@media all and (max-width: 786px){
	.cts-thum{
		height: 100px;
	}
	.cts-thum img{
		height: 100px;
	}
	.cts-ct{
		height: 34px;
		line-height: 34px;
		padding: 0 0 0 14px;
	}
	.cts-title{
		margin: 16px 0 14px;
		white-space: normal;
	}
	.cts-des{
	}
	#wk-contents .cts-ct::before{
		background: transparent;
	}
	#wk-contents .cts-ct::aftger{
		background: transparent;
	}
}

/*---------------
contact
---------------*/
#contact{
	width: 100%;
	color: #fff;
	margin-top: -150px;
}
.contact-wrap{
	position: relative;
	width: 100%;
	color: #fff;
}
.contact-bg{
}
.contact-bg img{
	width: 100%;
}
.contact-stone{
	position: absolute;
	top: 44.4%;
	will-change: transform;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.contact-stone-a{
	left: 10%;
	transform: translateX(-10%);
}
.contact-stone-b{
	right: 10%;
	transform: translateX(10%);
}
.contact-stone img{
	width: 100%;
	object-fit: contain;
}
.contact-block{
	display: flex;
	flex-flow: column;
	position: absolute;
	top: 42.9%;
	left: 80px;
}
.contact-block h2{
	margin-bottom: 8px;
}
.contact-block h3{
	margin-bottom: 16px;
}
.contact-block .head-wrap{
	margin-bottom: 24px;
}
.contact-block .link-block-img {
	position: relative;
  display: inline-block;
	height: 88px;
	width: 88px;
}
.contact-block .link-block-img img{
	transition: opacity 0.5s ease;
	height: 88px;
	width: 88px;
	filter: drop-shadow(0px 4px 16px rgba(0,0,0,0.12));
}
.contact-block .link-block-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://test.highlite.jp/wp-content/themes/jinr-child/images/common/btn_b.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.contact-block .link-block-img:hover img {
  opacity: 0;
}
.contact-block .link-block-img:hover::after {
  opacity: 1;
}
@media all and (max-width: 786px) {
	#contact{
	}
	.contact-wrap{
	}
	.contact-bg{
	}
	.contact-bg img{
	}
	.contact-stone{
		width: auto;
		margin: 0 auto;
		margin: auto;
	}
	.contact-stone-a{
		position: absolute;
		top: 250px;
	}
	.contact-stone-b{
		position: absolute;
		top: 85px;
	}
	.contact-stone-a img{

	}
	.contact-stone-b img{
		width: 109px;
	}
	.contact-block{
		top: 151px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: calc(100% - 24px - 25px);
	}
	.contact-block h2{
	}
	.contact-block h3{
		margin-bottom: 18px;
	}
	.contact-block .head-wrap{
		margin-bottom: 0px;
	}
	.contact-block .link-block-img {
		height: 49px;
		width: 49px;
	}
	.contact-block .link-block-img img{
		transition: unset;
		height: 49px;
		width: 49px;
	}
	.contact-block .link-block-img::after {
	  transition: unset;
	}
	.contact-block:hover .link-block-img img {
		pointer-events: none;
	}
	.contact-block:hover .link-block-img::after {
		pointer-events: none;
	}
}

/*---------------
footer
---------------*/
footer{
	height: 26vw;
	width: 100%;
	background: rgba(7, 23, 21, 0.64);
}
.footer-wrap{
	width: calc(100% - 24.5vw);
	margin: 0 auto;
	display: flex;
}
.footer-block01{
	width: calc(21.5vw - 35px);
	margin: 75px 0 75px 35px;
	color: #FFF;
	border-right: 2px solid #fff;
}
.footer-logo{
	width: 11.5vw;
	margin-bottom: 32px;
	display: block;
}
.footer-logo img{
	width: 11.5vw;
}
.footer-block01 p.footer-address{
	font-size: 0.83vw;
	line-height: 1.375;
	margin-bottom: 33px;

}
.footer-block01 p.copyright{
	font-size: 0.83vw;
	font-weight: bold;
}
.footer-block02{
	width: calc(100% - 21.5vw - 35px);
	margin: 75px 0 75px 30px;
	padding-top: 15px;
	color: #fff;
}
.footer-menu{
	display: -webkit-flex;
	display: flex;
	align-items: center;
	margin-bottom: 23px;
	transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.footer-menu:hover {
  transform: translateX(10px);
}
.footer-menu img{
	width: 1.04vw;
	margin-right: 11px;
}
.footer-menu a.privacy-policy{
	font-size: 0.9375vw;
	display: block;
}
.footer-menu a.terms-of-service{
	font-size: 0.9375vw;
	display: block;
}

@media all and (max-width: 786px) {
	footer{
		height: 500px;
	}
	.footer-wrap{
		width: calc(100% - 40px);
		margin: 0 20px 55px;
		display: block;
		position: relative;
		padding: 40px 0 0;
		height: 500px;
	}
	.footer-block01{
		position: absolute;
		bottom: 55px;
		left: 0;
		width: 100%;
		margin: 0;
		border-right: none;
	}
	.footer-logo{
		width: 150px;
		margin-bottom: 16px;
	}
	.footer-logo img{
		width: 150px;
	}
	.footer-block01 p.footer-address{
		font-size: 12px;
		line-height: 16px;
		margin-bottom: 28px;

	}
	.footer-block01 p.copyright{
		font-size: 14px;
	}
	.footer-block02{
		position: absolute;
		top: 40px;
		left: 0;
		width: 100%;
		margin: 0 0 40px 0;
		padding: 0 0 40px 0;
		border-bottom: 2px solid #fff;
	}
	.footer-menu img{
		width: 5.3vw;
	}
	.footer-block02 a.privacy-policy{
		font-size: 16px;
		display: block;
	}
	.footer-block02 a.terms-of-service{
		font-size: 16px;
		display: block;
	}
}

/*---------------
menu
---------------*/
.co-header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 38.8vw;
  height: 100vh;
  padding: 42px 0 0 4.7vw;
  transform: translateX(100%); 
  background-color: #FFF;
  transition: ease .4s;
  display: none;
  -webkit-filter:drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	-moz-filter:drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	-ms-filter:drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	filter:drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.menu-line{
	margin-bottom: 50px;
}
.nav-items, .co-nav-items {
}
.nav-items__item, .co-nav-items_item{
  margin-bottom: 2.0vh;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.nav-items__item:nth-last-child, .co-nav-items__item:nth-last-child{
  margin-bottom: 0;
}
.nav-items__item a, .co-nav-items__item a {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  border-left: 2px solid #000;
  padding-left: 20px;
  transition: border-left-width 0.3s cubic-bezier(.4,0,.2,1);
}
.nav-items__item:hover a,
.co-nav-items__item:hover a {
  border-left-width: 4px;
  padding-left: 30px;
}
.nav-items__item2, .co-nav-items__item2 {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  border-left: 2px solid #000;
  padding-left: 20px;
  margin-bottom: 24px;
}
.nav-items__item:last-child a, .co-nav-items__item:last-child a {
  margin-bottom: 0;
}
.co-header__hamburger {
	position: absolute;
	top: 42px;
	right: 83px;
	width: 75px;
	height: 75px;
	border: 1px solid #000;
	border-radius: 2px;
	padding: 0 18px;
}
.nav-items__item a h2, .co-nav-items__item a h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  margin-right: 10px;
}
.nav-items__item a h3, .co-nav-items__item a h3 {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.1em;
}
.nav-items__item > h2, .co-nav-items__item > h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  margin-right: 10px;
}
.nav-items__item > h3, .co-nav-items__item > h3 {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.1em;
}
.menu2 {
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.menu2:hover {
  transform: translateX(10px);
}

.menu2-arrow {
  position: relative;
  display: flex;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.menu2-arrow img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  transition: opacity 0.2s;
  display: block;
}

.menu2-arrow .arrow-default {
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.menu2-arrow .arrow-hover {
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.menu2:hover .menu2-arrow .arrow-default {
  opacity: 0;
}
.menu2:hover .menu2-arrow .arrow-hover {
  opacity: 1;
}

.studio-lineup {
  margin: 0 0 2.0vh 15px;
}
.studio-lineup a {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.studio-lineup a:last-child {
  margin-bottom: 0px;
}
.studio-lineup a h4.en {
  margin-right: 7px;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  width: 40px;
}
.studio-lineup a h4.jp2 {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.menu-reserve-button{
	position: relative;
  background-color: #071715; /* ベース色 */
  background-image: linear-gradient(to right, #fff, #fff);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  transition: background-size 0.5s cubic-bezier(.4,0,.2,1);
  color: #fff;
  height: 75px;
  width: 25vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 50px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #071715;
  margin-bottom: 30px;
}
.menu-reserve-button:hover {
	background-size: 100% 100%;
}
.menu-reserve-button .set_cnts_link_text {
  flex: 1;
}
.menu-reserve-button:hover .set_cnts_link_text {
  color: #071715;
}
.menu-reserve-button .set_cnts_link_icon {
  width: 80px;
  height: 80px;
  margin-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-reserve-button .arrow-svg {
  width: 60px;
  height: 60px;
  display: block;
}
.menu-reserve-button .arrow-line {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.4s cubic-bezier(.4,0,.2,1);
}
.menu-reserve-button:hover .arrow-line {
  stroke-dashoffset: 0;
}
.menu-reserve-button .arrow-line,
.menu-reserve-button .arrow-head {
  transition: stroke 0.3s;
}
.menu-reserve-button:hover .arrow-line,
.menu-reserve-button:hover .arrow-head {
  stroke: #071715;
}
.menu-reserve-button .arrow-circle {
  transition: fill 0.3s;
  fill: #071715;
}
.menu-reserve-button:hover .arrow-circle {
  fill: #FFF;
  stroke: #071715;
}
.menu-reserve-button .arrow-head {
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  transform: translateX(-5px);
}
.menu-reserve-button:hover .arrow-head {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
	.co-header__nav {
	  width: 80%;
	  padding: 80px 0 0 20px;
	}
	.menu-line{
		width: 100%;
		margin-left: 20px;
		margin-bottom: 4vh;
	}
	.nav-items, .co-nav-items {
	}
	.nav-items__item, .co-nav-items_item{
	  margin-bottom: 2.0vh;
	}
	.nav-items__item2, .co-nav-items__item2 {
	  padding-left: 10px;
	  margin-bottom: 1.2vh;
	}
	.nav-items__item:nth-last-child, .co-nav-items__item:nth-last-child{
	  margin-bottom: 0;
	}
	.nav-items__item a, .co-nav-items__item a {
		padding-left: 10px;
	}

	.nav-items__item:hover a, .co-nav-items__item:hover a {
	}
	.nav-items__item:last-child a, .co-nav-items__item:last-child a {
	}
	.co-header__hamburger {
		position: absolute;
		right: 20px;
		top: 20px;
		padding: 0 10px;
		height: 43px;
		width: 43px;
	}
	.nav-items__item a h2, .co-nav-items__item a h2 {
	  font-size: 6.6vw;
	  line-height: 1.2;
	  margin-right: 10px;
	}
	.nav-items__item a h3, .co-nav-items__item a h3 {
	  font-size: 4.2vw;
	  line-height: 1.2;
	}
	.nav-items__item > h2, .co-nav-items__item > h2 {
	  font-size: 6.6vw;
	  line-height: 1.2;
	  margin-right: 10px;
	}
	.nav-items__item > h3, .co-nav-items__item > h3 {
	  font-size: 4.2vw;
	  line-height: 1.2;
	}
	.menu-reserve-button{
		height: 76px;
		width: calc(100% - 20px);
		line-height: 76px;
		font-size: 14px;
		padding-left: 40px;
	}
	.studio-lineup{
		margin: 0 0 2.0vh 15px;
	}
	.studio-lineup a{
	  margin-bottom: 1.2vh;
	  height: 2.5vh;
	}
	.studio-lineup a.menu3{
	  align-items: normal;
	  height: 5.0vh;
	}
	.studio-lineup a:last-child{
	}
	.studio-lineup a .menu2-arrow{
		margin-right: 10px;
	}
	.studio-lineup a.menu3 .menu2-arrow{
	}
	.studio-lineup a .menu2-arrow img{
		width: 28px;
	}
	.studio-lineup a h4.en{
		font-size: 18px;
		line-height: 22px;
		width: 35px;
	}
	.studio-lineup a h4.jp2{
		font-size: 12px;
		line-height: 19px;
	}
	.menu-reserve-button{
		margin-bottom: 3vh;
	}
	.menu-reserve-button:hover {
	}
	.menu-reserve-button .set_cnts_link_text {
	}
	.menu-reserve-button:hover .set_cnts_link_text {
	}
	.menu-reserve-button .set_cnts_link_icon {
	  width: 40px;
	  height: 40px;
	  margin-right: 25px;
	}
	.menu-reserve-button .arrow-svg {
	  width: 40px;
	  height: 40px;
	  display: block;
	}
	.menu-reserve-button .arrow-line {
	}
	.menu-reserve-button:hover .arrow-line {
	}
	.menu-reserve-button .arrow-line,
	.menu-reserve-button .arrow-head {
	}
	.menu-reserve-button:hover .arrow-line,
	.menu-reserve-button:hover .arrow-head {
	}
	.menu-reserve-button .arrow-circle {
	}
	.menu-reserve-button:hover .arrow-circle {
	}
	.menu-reserve-button .arrow-head {
	}
	.menu-reserve-button:hover .arrow-head {
	}
}

.co-hamburger {
  background-color: transparent;
  z-index: 9999;
}
.co-hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}
.co-hamburger span:nth-child(1) {
	height: 1px;
	width: 36px;
}
.co-hamburger span:nth-child(2) {
	height: 1px;
	width: 36px;
  margin: 12px 0;
}
.co-hamburger span:nth-child(3) {
	height: 1px;
	width: 36px;
}
.co-header__nav.active{
  transform: translateX(0);
  display: block;
}
.co-hamburger.active span:nth-child(1) {
  top: 0;
  left: -3px;
  width: 45px;
  transform: rotate(45deg);
}
.co-hamburger.active span:nth-child(2) {
  display: none;
}
.co-hamburger.active span:nth-child(3) {
  top: -1px;
  left: -4px;
  width: 45px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
	.co-hamburger span {
	}
	.co-hamburger span:nth-child(1) {
		width: 21px;
	}
	.co-hamburger span:nth-child(2) {
		width: 21px;
	  margin-top: 7px;
	  margin-bottom: 7px;
	}
	.co-hamburger span:nth-child(3) {
		width: 21px;
	}
	.co-hamburger.active span:nth-child(1) {
	  top: 0;
	  left: 0;
	  width: 21px;
	}
	.co-hamburger.active span:nth-child(2) {
	  display: none;
	}
	.co-hamburger.active span:nth-child(3) {
	  top: -1px;
	  left: 0;
	  width: 21px;
	}
}

/*---------------
co-reserve
---------------*/
#co-reserve-button{
	position: fixed;
	bottom: 0;
	right: 70px;
	z-index: 1000;
}
.co-reserve-block{
	height: 100px;
	width: 229px;
	display: block;
}
.co-reserve-block .co-official-reserve{
	position: relative;
  background-color: #071715; /* ベース色 */
  background-image: linear-gradient(to top, #fff, #fff);
  background-repeat: no-repeat;
  background-size: 100% 0%;
  background-position: left bottom;
  transition: background-size 0.5s cubic-bezier(.4,0,.2,1);
  color: #fff;
  height: 100px;
  width: 229px;
  display: block;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 0;
  border: 1px solid #071715;
  text-align: center;
  padding-top: 25px;
}
.co-reserve-block .co-official-reserve:hover{
	background-size: 100% 100%;
}
.co-reserve-block .co-official-reserve .set_cnts_link_text {
  flex: 1;
  font-size: 20px;
  display: block;
}
.co-reserve-block .co-official-reserve:hover .set_cnts_link_text{
  color: #071715;
}
.co-reserve-block .co-official-reserve .set_cnts_link_subtext {
  flex: 1;
  font-size: 10px;
  margin-bottom: 7px;
  display: block;
}
.co-reserve-block .co-official-reserve:hover .set_cnts_link_subtext{
  color: #071715;
}

@media screen and (max-width: 768px) {
	#co-reserve-button{
		width: 100%;
		right: 0;
		transition: opacity 0.5s;
	  opacity: 1;
	  pointer-events: auto;
	}
	#co-reserve-button.fade-out {
	  opacity: 0;
	  pointer-events: none;
	}
	.co-reserve-block{
		height: 67px;
		width: 100%;
		display: block;
	}
	.co-reserve-block .co-official-reserve{
		height: 67px;
		width: 100%;
		padding-top: 15px;
	}
	.co-reserve-block .co-official-reserve{
	}
	.co-reserve-block .co-official-reserve:hover {
	}
	.co-reserve-block .co-official-reserve .set_cnts_link_text {
		font-size: 16px;
	}
	.co-reserve-block .co-official-reserve:hover .set_cnts_link_text {
	}
	.co-reserve-block .co-official-reserve .set_cnts_link_subtext {
		font-size: 8px;
	}
	.co-reserve-block .co-official-reserve:hover .set_cnts_link_subtext {
	}
}

/*---------------
jinr
---------------*/
#postFooter{
	display: none;
}




