@charset "utf-8";
/* CSS Document */

/* #page_navi_wrap
----------------------------------------- */
#page_navi_wrap {
	position: fixed;
	top: 12rem;
    width: 100%;
    z-index: 102;
    height: auto;
    background: rgba(255,255,255,0.90);
    -webkit-transition: all .6s;
    transition: all .6s;
}
#page_navi_wrap .page_navi {
	width: 100%;
    max-width: 110rem;
    margin: auto;
    height: 5.2rem;
    align-items: center;
    position: relative;
    -webkit-transition: all .6s;
    transition: all .6s;
}
#page_navi_wrap.is_show {
    top: 8.2rem;
}
#page_navi_wrap .page_navi h1 {
	font-size: 2.0rem;
    letter-spacing: 0.05em;
	font-weight: bold;
}
#page_navi_wrap .page_navi .page_navi_list {
	justify-content: flex-end;
}
#page_navi_wrap .page_navi .page_navi_list > li {
	display: flex;
}
#page_navi_wrap .page_navi .page_navi_list > li:not(:last-child) {
	margin-right: 1.5rem;
}
#page_navi_wrap .page_navi .page_navi_list > li::before {
	content: "";
	display: block;
	width: 1.3rem;
	height: 1.1rem;
	background: url(../images/private/pagedown.svg) no-repeat center center;
	background-size: contain;
	margin-right: 1rem;
}
#page_navi_wrap .page_navi .page_navi_list a {
	display: block;
    font-size: 1.4rem;
    letter-spacing: 0;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
}

@media only screen and (max-width: 768px) {
#page_navi_wrap .page_navi {
    height: auto;
    padding: 2rem 0;
    justify-content: center;
}
#page_navi_wrap .page_navi h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}
#page_navi_wrap .page_navi .page_navi_list > li::before {
    content: "";
    display: block;
    width: 2.2rem;
    height: 2rem;
    background: url(../images/private/pagedown.svg) no-repeat center center;
    background-size: cover;
    margin-right: 1rem;
}
}


/* #topmain
----------------------------------------- */
#topmain {
    position: relative;
    height : auto;
    margin: 0;
}

#topmain > .inner {
    height: -webkit-calc(100% - 14rem);
    height: calc(100% - 14rem);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

#topmain .main_txt {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 2;
    text-align: right;
}

#topmain .main_txt .logo {
    display: inline-block;
}
#topmain .main_txt .logo img {
    width: 20rem;
	height: 10.2rem;
}

#topmain .main_txt h2 {
    font-size: 5.5rem;
	letter-spacing: -0.01em;
    font-weight: bold;
    line-height: 1.2;
    text-align: right;
    color: #FFFFFF;
	margin-top: 4rem;
}


#topmain .area_wrap {
	font-size: 3rem;
	letter-spacing: 0.05em;
    margin-top: 4rem;
    color: #FFFFFF;
    text-align: right;
	background-color: #eb641e;
	width: 28.5rem;
	height: 8.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: absolute;
	bottom: 2rem;
	right: 0;
	z-index: 2;
}
#topmain .area_wrap::before {
    content: "";
	display: block;
	width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8.5rem 4.5rem;
    border-color: transparent transparent #eb631e transparent;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-100%,0)
}

#topmain .slick-slide img {
	width: 100%;
}

#topmain .slider {
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}

#topmain .slider li.slick-slide {
  height: -webkit-calc(100vh - 7rem);
  height: calc(100vh - 7rem);
  min-height: 78rem;
  /*height: 100vh;*/
  /*max-height: 600px;*/
}

#topmain .slider li.slick-slide .slide_wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#topmain .slider li.slick-slide a:hover * {
	opacity: 1;  
    filter: alpha(opacity=100);  
	-ms-filter: "alpha( opacity=100 )";
}



@media only screen and (max-width: 768px) {
    #topmain {
}
    #top #topmain .inner {
    width: 63rem;
    height : -webkit-calc(100vh - 20rem) ;
    height: calc(calc(var(--vh, 1vh) * 100) - 20rem);
    top: 0;
    transform: translate(-50%, 0%);
}
   #topmain .slider {
    position: static;
}
    #topmain .slider li.slick-slide {
      height : -webkit-calc(100vh - 20rem) ;
      height : calc(calc(var(--vh, 1vh) * 100) - 20rem) ;
      min-height: auto;
}
    
  #topmain .slider li.slick-slide div.slide_wrap {
      width: 100%;
      height: 100%;
  }
    
    #topmain .main_txt {
	top: 60%;
}
	#topmain .main_txt .logo {
    filter: drop-shadow(0 0 1rem #000000) drop-shadow(0 0 0 #000000);
}
    #topmain .main_txt h2 {
    font-size: 4.3rem;
    margin-bottom: 0;
	filter: drop-shadow(0 0 1rem #000000) drop-shadow(0 0 0 #000000);
}
	#topmain .area_wrap::before {
    transform: translate(-98%,0);
}
}



/* #about
----------------------------------------- */
#about {
    padding-top: 9.5rem;
}

#about .campaign_wrap {
	width: 100%;
    max-width: 91.5rem;
    margin: auto;
	margin-bottom: 7rem;
	padding: 3.5rem 0;
	background-color: #eb641e;
	position: relative;
	z-index: 1;
}
#about .campaign_wrap::before {
	content: "";
	display: block;
    width: calc(100% - 1.4rem);
	height: calc(100% - 1.4rem);
	border: 1px solid #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
#about .campaign_wrap .campaign_txt {
    text-align: center;
	color: #FFFFFF;
	font-size: 2.7rem;
	font-weight: bold;
}
#about .campaign_wrap .campaign_txt span {
    display: block;
	font-size: 2.0rem;
}


#about h2.ttl {
    width: 100%;
    font-size: 4.2rem;
	letter-spacing: 0.05em;
    line-height: 1;
	font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 6rem;
}
#about h2.ttl::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
    width: 60.9rem;
    height: 2rem;
    background: url(../images/private/about_ttl_bg.svg) no-repeat center center;
    background-size: cover;
}

#about h3 {
    font-size: 2.7rem;
	letter-spacing: 0.05em;
    line-height: 1;
	font-weight: bold;
    text-align: center;
	color: #eb641e;
    margin-bottom: 2.5rem;
}

#about .txt_wrap {
    font-size: 2.0rem;
	letter-spacing: 0.05em;
    line-height: 1.75;
	font-weight: bold;
    text-align: center;
}

#about h3.training {
    margin-top: 15rem;
}

#about .img_list {
	margin-top: 6rem;
}
#about .img_list > li {
    width: -webkit-calc(340 / 1100 * 100%);
    width : calc(340 / 1100 * 100%);
}
#about .img_list > li img {
    width: 100%;
}

#about .floor_wrap {
	display: inline-block;
	width: 100%;
    max-width: 86.5rem;
    margin-top: 9rem;
    margin-bottom: 3rem;
    position: relative;
}

#about .floor_wrap .rink_wrap {
    position: absolute;
    z-index: 1;
}
#about .floor_wrap .rink_wrap a {
    display: block;
	width: 100%;
	height: 100%;
}
#about .floor_wrap .rink01 {
    width: calc(300 / 865 * 100%);
	height: calc(300 / 523 * 100%);
    top: 0;
    left: 0;
}
#about .floor_wrap .rink02 {
    width: calc(160 / 865 * 100%);
	height: calc(128 / 523 * 100%);
    top: 0;
    left: -webkit-calc(310 / 865 * 100%);
    left: calc(310 / 865 * 100%);
}
#about .floor_wrap .rink03 {
    width: calc(160 / 865 * 100%);
	height: calc(128 / 523 * 100%);
    top: -webkit-calc(135 / 523 * 100%);
    top: calc(135 / 523 * 100%);
    left: -webkit-calc(310 / 865 * 100%);
    left: calc(310 / 865 * 100%);
}
#about .floor_wrap .rink04 {
    width: calc(135 / 865 * 100%);
	height: calc(130 / 523 * 100%);
    top: -webkit-calc(325 / 523 * 100%);
    top: calc(325 / 523 * 100%);
    left: -webkit-calc(143 / 865 * 100%);
    left: calc(143 / 865 * 100%);
}
#about .floor_wrap .rink05 {
    width: calc(135 / 865 * 100%);
	height: calc(130 / 523 * 100%);
    top: -webkit-calc(325 / 523 * 100%);
    top: calc(325 / 523 * 100%);
    left: -webkit-calc(289 / 865 * 100%);
    left: calc(289 / 865 * 100%);
}
#about .floor_wrap .rink06 {
    width: calc(130 / 865 * 100%);
	height: calc(115 / 523 * 100%);
    top: calc(10 / 523 * 100%);
    right: calc(200 / 865 * 100%);
}
#about .floor_wrap .rink07 {
    width: calc(130 / 865 * 100%);
	height: calc(115 / 523 * 100%);
    top: calc(130 / 523 * 100%);
    right: calc(200 / 865 * 100%);
}
#about .floor_wrap .rink08 {
    width: calc(130 / 865 * 100%);
	height: calc(115 / 523 * 100%);
    top: calc(230 / 523 * 100%);
    right: calc(200 / 865 * 100%);
}
#about .floor_wrap .rink09 {
    width: calc(130 / 865 * 100%);
	height: calc(115 / 523 * 100%);
    top: calc(340 / 523 * 100%);
    right: calc(200 / 865 * 100%);
}
#about .floor_wrap .rink10 {
    width: calc(130 / 865 * 100%);
	height: calc(115 / 523 * 100%);
    top: calc(10 / 523 * 100%);
    right: calc(10 / 865 * 100%);
}
#about .floor_wrap .rink11 {
    width: calc(130 / 865 * 100%);
	height: calc(115 / 523 * 100%);
    top: calc(130 / 523 * 100%);
    right: calc(10 / 865 * 100%);
}
#about .floor_wrap .rink12 {
    width: calc(130 / 865 * 100%);
	height: calc(115 / 523 * 100%);
    top: calc(230 / 523 * 100%);
    right: calc(10 / 865 * 100%);
}

.remodal.modal_wrap {
    width: 100%;
    max-width: 70rem;
    padding: 4rem;
    background: #FFFFFF;
}
.modal_wrap .remodal-close {
    width: auto;
    height: auto;
    padding-right: 1.5rem;
    top: 1rem;
}
.modal_wrap img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.modal_wrap .txt_wrap {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
}
.modal_wrap .txt_wrap h4 {
    font-size: 2.1rem;
    text-align: center;
}



@media screen and (max-width: 768px) {
	#about {
    padding-top: 8rem;
}
    
#about .img_list > li {
    width: 100%;
}
	
#about h3.training {
    margin-top: 8rem;
}
	
remodal.modal_wrap {
    padding: 1.5rem;
}
.modal_wrap .txt_wrap h4 {
    font-size: 1.8rem;
    text-align: center;
}
.modal_wrap .remodal-close {
    width: auto;
    height: auto;
    padding-right: 1.5rem;
    top: 1rem;
}
}



/* #support
----------------------------------------- */
#support {
	margin-top: 24rem;
    padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: #e6e6e6;
	position: relative;
}
#support::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(0,-100%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14rem 0 0 100vw;
	border-color: transparent transparent transparent #e6e6e6;
}
#support::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translate(0,100%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 14rem 100vw;
	border-color: transparent transparent transparent #e6e6e6;
}

#support h2.ttl {
    width: 100%;
    font-size: 4.0rem;
	letter-spacing: 0.05em;
    line-height: 1;
	font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 5rem;
    z-index: 1;
}
#support h2.ttl::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
    width: 76.5rem;
    height: 2.8rem;
    background: url(../images/private/support_ttl_bg.svg) no-repeat center center;
    background-size: cover;
}

#support .txt_wrap {
    font-size: 2.8rem;
	letter-spacing: 0.05em;
    line-height: 1.75;
	font-weight: bold;
    text-align: center;
}

#support .support_list {
	margin-top: 6rem;
}
#support .support_list > li {
    width: -webkit-calc(340 / 1100 * 100%);
    width : calc(340 / 1100 * 100%);
}
#support .support_list > li .img_wrap {
    width: 100%;
}
#support .support_list > li img {
    width: 100%;
}

#support .support_list > li .txt_wrap {
    width: 100%;
	margin-top: 6rem;
	font-size: 2.8rem;
	letter-spacing: 0.05em;
    line-height: 1.75;
	font-weight: bold;
	text-align: center;
}
#support .support_list > li .txt_wrap span {
	display: block;
    font-size: 3.5rem;
	line-height: 1.1;
	color: #eb641e;
}



@media screen and (max-width: 768px) {
	#support {
    padding-top: 8rem;
}
	
#support h2.ttl::after {
    width: 64rem;
    height: 2.2rem;
}
	
#support .support_list > li {
    width: 100%;
}
#support .support_list > li:not(:last-child) {
	margin-bottom: 6rem;
}
#about h3.training {
    margin-top: 8rem;
}
#support .support_list > li .txt_wrap {
	font-size: 2.8rem;
    margin-top: 3rem;
}
#support .support_list > li .txt_wrap span {
	font-size: 3.5rem;
}
}




/* #how_to_use
----------------------------------------- */
#how_to_use {
    padding-top: 19rem;
	position: relative;
}

#how_to_use h2.ttl {
    width: auto;
    font-size: 3.7rem;
	letter-spacing: 0.05em;
    line-height: 1;
	font-weight: bold;
    display: inline-flex;
    position: relative;
    margin-bottom: 17rem;
}
#how_to_use h2.ttl::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
    width: 100%;
    height: 0.3rem;
	background-color: #000000;
}

#how_to_use .txt_wrap {
    font-size: 2.8rem;
	letter-spacing: 0.05em;
    line-height: 1.75;
	font-weight: bold;
    text-align: center;
}

#how_to_use .how_to_use_list {
	align-items: flex-start;
}
#how_to_use .how_to_use_list > li {
    width: -webkit-calc(340 / 1100 * 100%);
    width : calc(340 / 1100 * 100%);
	text-align: center;
}
#how_to_use .how_to_use_list > li .img_wrap {
	width: 100%;
	height: 21rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
#how_to_use .how_to_use_list > li:not(:last-child) .img_wrap::after {
	content: "";
	display: block;
    width: 3.8rem;
	height: 4.3rem;
	background: url(../images/private/step_arrow.svg) no-repeat center center;
	background-size: auto;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(100%,-50%);
}
#how_to_use .how_to_use_list > li img {
}
#how_to_use .how_to_use_list > li h3 {
	font-size: 2.8rem;
	letter-spacing: 0.05em;
	line-height: 1.1;
	font-weight: bold;
	margin-top: 4rem;
	margin-bottom: 2rem;
	text-align: center;
}
#how_to_use .how_to_use_list > li .txt_wrap {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
    line-height: 1.75;
	font-weight: bold;
	text-align: center;
}


@media screen and (max-width: 768px) {
	#how_to_use {
    padding-top: 20rem;
}
    
	#how_to_use h2.ttl {
    font-size: 3.7rem;
    margin-bottom: 8rem;
}
	
#how_to_use .how_to_use_list > li {
    width: 100%;
	position: relative;
}
#how_to_use .how_to_use_list > li:not(:last-child) {
	margin-bottom: 12rem;
}
#how_to_use .how_to_use_list > li .img_wrap {
    height: auto;
}
#how_to_use .how_to_use_list > li img {
    width: 50%;
	height: auto;
}
#how_to_use .how_to_use_list > li h3 {
	font-size: 2.8rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
#how_to_use .how_to_use_list > li .txt_wrap {
	font-size: 2.2rem;
}
#how_to_use .how_to_use_list > li:not(:last-child) .img_wrap::after {
    display: none;
}
#how_to_use .how_to_use_list > li:not(:last-child)::after {
    content: "";
    display: block;
    width: 3.8rem;
    height: 4.3rem;
    background: url(../images/private/step_arrow.svg) no-repeat center center;
    background-size: cover;
    position: absolute;
    top: auto;
    bottom: -3rem;
    right: 50%;
    transform: translate(50%,100%) rotate(90deg);
}
}



/* #price
----------------------------------------- */
#price {
    padding-top: 15rem
}

#price .default_price {
    width: 100%;
    padding: 5rem;
}

#price .default_price.bottom {
	margin-top: 6rem;
}

#price .default_price h3.ttl {
    display: inline-block;
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 4rem;
    text-align: center;
}
#price .default_price h3.ttl::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.15rem;
    background-color: #000000;
    margin-top: 0.5rem;
}
#price .default_price .price_wrap {
    align-items: flex-end;
    justify-content: center;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: bold;
}
#price .default_price .price_wrap .ttl {
    font-size: 2.1rem;
    margin-right: 3rem;
}
#price .default_price .price_wrap .tax {
    font-size: 1.8rem;
    font-weight: normal;
    margin-left: 0.5rem;
}
#price .default_price .campaign_price {
    margin-top: 2rem;
	text-align: center;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: bold;
	color: #FF0000;
}
#price .default_price .campaign_price span {
    font-size: 2.6rem;
}

#price .monthly_price {
    margin-top: 6rem;
}
#price .monthly_price h3.ttl {
    display: inline-block;
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 4rem;
    text-align: center;
}
#price .monthly_price h3.ttl::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.15rem;
    background-color: #000000;
    margin-top: 0.5rem;
}


#price .price_list {
    width: 100%;
    margin-bottom: 3rem;
	align-items: flex-end;
}

#price .price_list > li {
    width: -webkit-calc(288 / 1100 * 100%);
    width: calc(288 / 1100 * 100%);
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    height: 30.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

#price .price_list > li:nth-child(2) {
	width: -webkit-calc(462 / 1100 * 100%);
    width: calc(462 / 1100 * 100%);
	height: 39.2rem;
    background: rgb(255,255,255);
    background: linear-gradient(130deg, rgba(255,255,255,0) 0%, rgba(245,245,245,1) 0%, rgba(171,171,171,1) 100%);
    border: none;
    position: relative;
}
#price .price_list > li:nth-child(2)::before {
    content: "";
    display: block;
    width: 9.8rem;
    height: 9.8rem;
    position: absolute;
    top: 0;
    left: 0;
	transform: translate(-5%,-50%);
    z-index: 2;
    background: url(../images/private/ninki_icon.svg) no-repeat center center;
    background-size: contain;
}

#price .price_list > li .txt_top {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}
#price .price_list > li .txt_top span {
    font-size: 1.6rem;
}
#price .price_list > li .price {
    width: 100%;
    text-align: center;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 4rem;
}
#price .price_list > li .price .tax {
    font-size: 1.8rem;
    font-weight: normal;
    margin-left: 0.5rem;
}

#price .price_list > li .campaign_price {
	width: 100%;
    margin-top: -2rem;
    margin-bottom: 4rem;
	text-align: center;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: bold;
	color: #FF0000;
}
#price .price_list > li .campaign_price span {
    font-size: 2.6rem;
}

#price .price_list > li .txt_bottom {
    font-size: 1.8rem;
    text-align: center;
}
#price .price_list > li .txt_bottom span {
    display: block;
    font-size: 1.8rem;
}

#price .price_list > li .txt_bottom h4 {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: bold;
	color: #eb641e;
	margin-bottom: 2rem;
}

#price .price_list > li .txt_bottom .service_list li {
    display: block;
    font-size: 1.8rem;
}


#price .price_info {
    
}
#price .default_price .price_wrap del {
    color: #888;
    padding: 0 0.4em;
    text-decoration: none;
	position: relative;
}
#price .default_price .price_wrap del::before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
    background-image: linear-gradient(#FF0000, #FF0000);
    background-position: 0 50%;
    background-size: 100% 2px;
    background-repeat: repeat-x;
}

#price .price_list > li .price del {
    color: #888;
    padding: 0 0.4em;
    text-decoration: none;
	position: relative;
}
#price .price_list > li .price del::before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
    background-image: linear-gradient(#FF0000, #FF0000);
    background-position: 0 50%;
    background-size: 100% 2px;
    background-repeat: repeat-x;
}


#price .ticket {
    text-align: center;
	margin-top: 9rem;
}
#price .ticket h3.ttl {
	font-size: 2.6rem;
    font-weight: bold;
	text-align: center;
	margin-bottom: 1rem;
    
}
#price .ticket .txt_bottom {
    
}

#price .otoku {
    text-align: center;
	margin-top: 4rem;
}
#price .otoku h3 {
	font-size: 2.3rem;
    font-weight: bold;
	color: #eb641e;
	text-align: center;
	margin-bottom: 1rem;
    
}
#price .otoku .txt_wrap {
    
}
#price .otoku .img_wrap {
    margin-top: 3rem;
}


@media screen and (max-width: 768px) {
	#price {
        padding-top: 15rem
}
    #price .default_price h3.ttl {
    display: inline-block;
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 4rem;
    text-align: center;
}
    #price .default_price .price_wrap {
    align-items: flex-end;
    justify-content: center;
    font-size: 3.2rem;
    line-height: 1;
    font-weight: bold;
}
    #price .default_price .price_wrap .ttl {
    font-size: 2.6rem;
    margin-right: 3rem;
}
    #price .default_price .price_wrap .tax {
    font-size: 2.2rem;
    font-weight: normal;
    margin-left: 0.5rem;
}
	#price .default_price .campaign_price {
    font-size: 2.6rem;
}
#price .default_price .campaign_price span {
    font-size: 3.2rem;
}
	
    #price .monthly_price h3.ttl {
    display: inline-block;
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 4rem;
    text-align: center;
}
    
#price .price_list {
    width: 100%;
    margin-bottom: 2rem;
}

#price .price_list > li {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    height: 38rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

#price .price_list > li:nth-child(2) {
	width: 100%;
	height: 50rem;
    background: rgb(255,255,255);
    background: linear-gradient(130deg, rgba(255,255,255,0) 0%, rgba(245,245,245,1) 0%, rgba(171,171,171,1) 100%);
    border: none;
    position: relative;
}
#price .price_list > li:nth-child(2)::before {
    content: "";
    display: block;
    width: 9.8rem;
    height: 9.8rem;
    position: absolute;
    top: 0;
    left: 0;
	transform: translate(-5%,-20%);
    z-index: 2;
    background: url(../images/private/ninki_icon.svg) no-repeat center center;
    background-size: contain;
}
#price .price_list > li .txt_bottom h4 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}
#price .price_list > li .txt_bottom .service_list li {
    font-size: 2.8rem;
}
	
#price .price_list > li:nth-child(2) {
    border: none;
}

#price .price_list > li .txt_top {
    font-size: 3.0rem;
    margin-bottom: 1rem;
}
#price .price_list > li .txt_top span {
    font-size: 2.8rem;
}
#price .price_list > li .price {
    font-size: 3.2rem;
    margin-bottom: 4rem;
}
#price .price_list > li .txt_bottom {
    font-size: 2.8rem;
}
#price .price_list > li .txt_bottom span {
    display: block;
    font-size: 2.8rem;
}
#price .price_info {
    font-size: 2.6rem;
}
	
#price .ticket {
    margin-top: 6rem;
}
	
#price .otoku h3 {
    font-size: 2.8rem;
}
}





/* #security
----------------------------------------- */
#security {
    padding-top: 15rem
}
#security .inner {
    text-align: center;
}
#security h2.ttl {
    font-size: 3.6rem;
	font-weight: bold;
    margin-bottom: 6rem;
}
#security .txt_wrap {
	display: inline-block;
}
#security .lead {
	font-size: 3.0rem;
    line-height: 1.75;
	letter-spacing: 0.05em;
    font-weight: bold;
	text-align: left;
	margin-bottom: 2rem;
}

#security .security_list {
}
#security .security_list > li {
	font-size: 2.0rem;
	letter-spacing: 0.05em;
	text-align: left;
}

#security .img_list {
	margin-top: 6rem;
}
#security .img_list > li {
    width: -webkit-calc(340 / 1100 * 100%);
    width : calc(340 / 1100 * 100%);
}
#security .img_list > li img {
    width: 100%;
}


@media screen and (max-width: 768px) {
	#faq {
    padding-top: 11rem;
}
    
}



/* #access
----------------------------------------- */
#access {
    padding-top: 15rem;
}

#access .inner {
    max-width: none;
}

#access h2.ttl {
    font-size: 3.6rem;
	font-weight: bold;
    margin-bottom: 6rem;
}

#access .map_wrap {
  position: relative;
  width: 100%;
  padding-top: 36.5905%;
}

#access .map_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#access .address_wrap {
    margin-top: 3rem;
    font-size: 1.6rem;
}
#access .tel_wrap {
    margin-top: 1rem;
    font-size: 1.6rem;
}


#access a.reserve_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 8rem;
	padding: 0 3rem;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: bold;
    color: #FFFFFF;
    background: #EB641E;
	margin-top: 8rem;
}
#access a.reserve_btn span {
    display: block;
    font-size: 1.0rem;
    font-weight: normal;
    margin-top: 1rem;
}
#access a.reserve_btn .reserve_txt {
    margin-left: .8rem;
	text-align: left;
}
#access a.reserve_btn img {
    width: 4rem;
}


@media screen and (max-width: 768px) {
	#access {
    adding-top: 18rem;
}
    #access .inner {
    max-width: 100%;
}
	
	#access .map_wrap {
      padding-top: 60%;
}
	
    #access .address_wrap {
    margin-top: 4rem;
    font-size: 2.6rem;
}
    #access .tel_wrap {
    margin-top: 1rem;
    font-size: 2.6rem;
}
	
	#access a.reserve_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 12rem;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #FFFFFF;
    background: #EB641E;
}
#access a.reserve_btn img {
    width: 5.3rem;
}
#access a.reserve_btn .reserve_txt {
    font-size: 2.1rem;
    margin-left: 1rem;
    line-height: 1.6;
}
#access a.reserve_btn span {
	margin-top: 0.5rem;
}
}