@charset "UTF-8";


body {
	font-size: 1rem;
	font-family: heisei-kaku-gothic-std, sans-serif; 
	font-weight: 300;
	min-width: 1100px;
	margin: 0 auto;
    color: #5b5b5b;
}

.loading {
	position: fixed;
	left: 0;
	top: 0;
	width:100%;
	height: 100%;
	z-index: 99999;
	background: #fff;
}

.loading a {
    font-family: 'Quicksand', sans-serif;
    font-size: 4rem;
    letter-spacing: 3px;
    color: #fff;
    -webkit-text-stroke: 1px #71c7d5;
}

.loading_inner {
    height: 100vh;
    width: 100%;
	text-align: center;
	font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bubbles {
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
overflow: hidden;
top: 0;
left: 0;
}
 
.bubble {
position: absolute;
bottom: -40;
width: 40px;
height: 40px;
background: rgb(114,199,213);
background: linear-gradient(195deg, rgba(114,199,213,1) 0%, rgba(169,221,230,1) 100%);
border-radius: 50%;
animation: bubble 10s ease-in infinite;
}
 
.bubble:nth-child(1) {
width: 20px;
height: 20px;
left: 30%;
animation-duration: 6s;
}
 
.bubble:nth-child(2) {
left: 20%;
animation-duration: 3.5s;
}
 
.bubble:nth-child(3) {
width: 30px;
height: 30px;
left: 30%;
animation-duration: 7s;
}
 
.bubble:nth-child(4) {
width: 50px;
height: 50px;
left: 67%;
animation-duration: 6s;
}
 
.bubble:nth-child(5) {
width: 20px;
height: 20px;
left: 70%;
animation-duration: 4.5s;
}
 
@keyframes bubble {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    bottom: 1000px;
  }
}

.sp_disp {
	display: none;
}


.pc_disp {
	display: block;		
}

.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}

.elem {
	width: 0;
	transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}

.isAnimate {
  width: 100%;
  height: 100%;
}


header {
	min-width: 1100px;
	position: fixed;
	width: 100%;
	display: flex;
	padding: 40px 3%;
	z-index: 99998;
	align-items: center;
	transition: all 0.35s ease;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
}

.header_logo {
    width: 80px;
	transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;	
}

ul.header_menu {
    display: flex;
    margin-left: 20px;
}

.header_reserve_area {	
    position: absolute;
    right: 30px;
    top: 30px;
}

a.header_reserve {
    font-size: 1.5rem;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;	
}

a.header_reserve:hover {
    opacity: 0.6;
    transform: scale(1.1);
    border: 1px solid #fff;
}

.header_reserve span {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 10px;
    font-size: 1.3rem;
    letter-spacing: 1px;
	transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;	
}

li.header_menu_active li a {
    color: #5b5b5b;
}

ul.header_menu li a {
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #5b5b5b;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

ul.header_menu li a:hover {
	color: #71c7d5;
}

ul.header_menu li a:hover:after {
    bottom: -15px;
	opacity: 1;
}

ul.header_menu li a:after {
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;	
    opacity: 0;
	width: 6px;
	height: 6px;
    position: absolute;
    content: "";
    bottom: -30px;
    display: block;
    background: #71c7d5;
    border-radius: 100%;
    left: 50%;
    margin-left: -3px;
}

.header_menu li {
    margin: 0 12px;
}

li.header_menu_active {
    font-size: 1.25rem;
    position: relative;
}

li.header_menu_active:after {
    width: 6px;
    height: 6px;
    position: absolute;
    content: "";
    bottom: -15px;
    display: block;
    background: #71c7d5;
    border-radius: 100%;
    left: 50%;
    margin-left: -3px;
}

.uneCircle {
  background: rgb(114,199,213);
  background: linear-gradient(195deg, rgba(114,199,213,1) 0%, rgba(169,221,230,1) 100%);
  animation: uneune 5s linear infinite;
  width: 160px;
  height: 140px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

@keyframes uneune {

  0% {
    border-radius: 60% 50% 70% 80% / 50% 60% 50% 70%; 
  }

  25% {
    border-radius: 70% 60% 60% 90% / 70% 80% 40% 90%; 
  }

  50% {
    border-radius: 60% 40% 70% 60% / 40% 60% 50% 60%; 
  }

  75% {
    border-radius: 90% 60% 40% 70% / 70% 50% 80% 40%; 
  }

  100% {
    border-radius: 60% 50% 70% 80% / 50% 60% 50% 70%; 
  }
}

.triger_wrap {
    display: none!important;
}

.small_header {
    padding: 15px 30px 20px;
    background: #fff;
    border-bottom: 1px solid #f3f3f3;
}

.small_header .header_logo {
    width: 65px;
}

.small_header a.header_reserve.uneCircle {
    width: 130px;
    height: 100px;
}

.small_header .header_reserve span {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.small_header .header_reserve_area {
    top: 15px;
    right: 30px;
}

section.page_title {
    padding: 250px 0;
}

.page_title_inner {
	position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.page_title_inner h1 {
    font-size: 2.4rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 999;
}

.page_title_inner h1 span {
    display: block;
    font-size: 6rem;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.bg_title {
    position: absolute;
    font-family: 'Quicksand', sans-serif;
    font-size: 8rem;
    letter-spacing: 2px;
    right: 0;
    top: 50%;
    -webkit-text-stroke: 1px #ddd;
    margin-top: -34px;
    color: #fff;
}

.modal_reserve_tel_area a {
    color: #5b5b5b;
    text-align: center;
    display: block;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    background: #fff;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.modal_reserve_tel_area a span {
    font-size: 1.6rem;
    letter-spacing: 1px;
    font-family: 'Quicksand', sans-serif;
    color: #71c7d5;
    display: block;
    align-items: center;
    text-align: center;
}

span.modal_tel_number {
    display: flex!important;
    font-size: 2.6rem!important;
    margin-top: 15px;
    font-weight: bold;
    justify-content: center;
}

span.modal_tel_number img {
    width: 30px;
}

.modal_reserve_line_area a {
    display: flex;
    background: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #71c7d5;
    font-size: 1.6rem;
    padding: 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}


.modal_reserve_line_area a:hover,
.modal_reserve_tel_area a:hover{
	transform: scale(1.1);
	opacity: 0.7;
}

.modal_reserve_line_area a img {
    width: 30px;
    height: auto;
    margin-right: 15px;
}

.modal_reserve_tel_area a span img {
    width: 30px;
    height: auto;
    margin-right: 15px;
}

.modal_reserve_area {
    max-width: 450px;
    margin: 0 auto;
}

/*---------------------------------------------------------------*\
	$980px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

body {
	min-width: inherit;
}
	
header {
	min-width: inherit;
    position: fixed;
    width: 100%;
    display: flex;
    padding: 18px 5%;
    z-index: 99998;
    align-items: center;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.header_logo {
    width: 60px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

ul.header_menu {
    display: none;
}

.header_reserve_area {
    position: fixed;
    right: 5%;
    bottom: 15px;
}

a.header_reserve {
    font-size: 1.1rem;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.header_reserve span {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 3px;
    font-size: 0.9rem;
    letter-spacing: 0px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

li.header_menu_active li a {
    color: #5b5b5b;
}

ul.header_menu li a {
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #5b5b5b;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

ul.header_menu li a:hover {
	color: #71c7d5;
}

ul.header_menu li a:hover:after {
    bottom: -15px;
	opacity: 1;
}

ul.header_menu li a:after {
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;	
    opacity: 0;
	width: 6px;
	height: 6px;
    position: absolute;
    content: "";
    bottom: -30px;
    display: block;
    background: #71c7d5;
    border-radius: 100%;
    left: 50%;
    margin-left: -3px;
}

.header_menu li {
    margin: 0 12px;
}

li.header_menu_active {
    font-size: 1.25rem;
    position: relative;
}

li.header_menu_active:after {
    width: 6px;
    height: 6px;
    position: absolute;
    content: "";
    bottom: -15px;
    display: block;
    background: #71c7d5;
    border-radius: 100%;
    left: 50%;
    margin-left: -3px;
}

.triger_wrap {
	display: block!important;
}
	
.uneCircle {
    background: rgb(114,199,213);
    background: linear-gradient(195deg, rgba(114,199,213,1) 0%, rgba(169,221,230,1) 100%);
    animation: uneune 5s linear infinite;
    width: 90px;
    height: 70px;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.header_reserve_area {
    position: fixed;
    right: 5%;
    top: inherit;
    z-index: 9999;
    bottom: 15px;
}

.small_header {
    position: fixed;
    width: 100%;
    display: flex;
    background: rgba(255,255,255,0.85);
    padding: 15px 5%;
    border-bottom: 1px solid #f9f9f9;
    z-index: 99999;
    align-items: center;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.small_header .header_logo {
    width: 60px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.small_header a.header_reserve.uneCircle {
    background: rgb(114,199,213);
    background: linear-gradient(195deg, rgba(114,199,213,1) 0%, rgba(169,221,230,1) 100%);
    animation: uneune 5s linear infinite;
    width: 90px;
    height: 70px;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.small_header .header_reserve span {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 3px;
    font-size: 0.9rem;
    letter-spacing: 0px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.small_header .header_reserve_area {
    position: fixed;
    right: 5%;
    top: inherit;
    bottom: 15px;
}
	
section.page_title {
    padding: 100px 7%;
}

.page_title_inner {
	position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.page_title_inner h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 999;
}

.page_title_inner h1 span {
    display: block;
    font-size: 3rem;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.bg_title {
    position: absolute;
    font-family: 'Quicksand', sans-serif;
    font-size: 5rem;
    letter-spacing: 2px;
    right: 0;
    top: 50%;
    -webkit-text-stroke: 0.5px #ddd;
    margin-top: -26px;
    color: #fff;
}

.pc_disp {
	display: none!important;		
}
	
.sp_disp {
	display: block!important;
}

.loading {
	position: fixed;
	left: 0;
	top: 0;
	width:100%;
	height: 100%;
	z-index: 99999;
	background: #fff;
}

.loading a {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: #71c7d5;
    -webkit-text-stroke: none;
}

.loading_inner {
    height: 100vh;
    width: 100%;
	text-align: center;
	font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
}
