@charset "UTF-8";


* {
    margin: 0;
    padding: 0;
}

html {
	font-size: 62.5%;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 100;
	background-color: #fff;
	color: #484E4D;
}

a {
	text-decoration: none;
	display: block;
	transition: ease 0.5s;
	color: #484E4D;
}

a:hover {
	opacity: 0.7;
}

li {
	list-style: none;
}

img {
	width: 100%;
	height: auto;
}

::selection {
    background-color: #F7F5EF;
    color: #484E4D;
}

.sp {
	display: none;
}
/*--------------------------------------------------
 ANIMATION
---------------------------------------------------*/
.del1 {
	animation-delay: 0.1s;
}
.opa {
	opacity: 0;
}

.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
	transform: translateY(50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*--------------------------------------------------
 NAV
---------------------------------------------------*/
#g-nav {
    position:fixed;
    z-index: 999;
	transition: all 0.6s;
	top: 3.5em;
	right: 5%;
}

#g-nav ul {
	display: flex;
}

#g-nav ul li {
	padding: 0 30px;
}

#g-nav ul li:last-of-type {
	padding: 0 0;
}

#g-nav ul li a {
	position: relative;
	font-size: 1.8rem;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;

}

#g-nav ul li a::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	border-radius: 1px;
	background-color: #484E4D;
	bottom: 0;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .3s ease-in-out;
  }
  
#g-nav ul li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
  }

/*--------------------------------------------------
 MV
---------------------------------------------------*/
.mv {
	width: 100%;
	position: relative;
}

.mv_bg {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 438px;
	width: 80%;
	z-index: -1;
}

.mv_lnk {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 4%;
	height: 25vw;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
	align-items: center;
}

.mv_lnk::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: #484E4D;
	animation: sdl 3.5s ease infinite;
	z-index: -1;
}

@keyframes sdl {
	0% {
	  transform: scale(1, 0);
	  transform-origin: 0 0;
	}
	50% {
	  transform: scale(1, 1);
	  transform-origin: 0 0;
	}
	50.1% {
	  transform: scale(1, 1);
	  transform-origin: 0 100%;
	}
	100% {
	  transform: scale(1, 0);
	  transform-origin: 0 100%;
	}
  }

.mv_lnk span, .mv_lnk_icon {
	background-color: #fff;
}

.mv_lnk span {
	font-size: 1.4rem;
	writing-mode: vertical-rl;
	letter-spacing: 2px;
	padding-bottom: 10px;
}

.mv_lnk_icon a {
	width: 20px;
	height: 20px;
	margin: 10px 0;
}

.mv_inr {
	display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 6% 5% 0 5%;
}

.mv_logo, .mv_img {
	width: 50%;
}

.mv_img {
	position: relative;
	overflow: hidden;
}

.img-animation {
	animation: img-opacity 1s cubic-bezier(.4, 0, .2, 1);
	overflow: hidden;
	position: relative;
}
  
  .img-animation:before {
	animation: img-animation 1s cubic-bezier(.4, 0, .2, 1) forwards;
	background: #484E4D;
	bottom: 0;
	content: '';
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.mv_inr .img-animation, .mv_inr .img-animation:before {
	animation-delay: 1.5s;
}
  
  @keyframes img-opacity {
	100% {
	  opacity: 1;
	}
  }
  
  @keyframes img-animation {
	100% {
	  transform: translateX(100%);
	}
  }




.mv_logo {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

h1 {
	margin-top: 3em;
	font-size: 1.4rem;
	font-weight: 100;
	letter-spacing: 1px;
}

h1 br {
	display: none;
}

/*--------------------------------------------------
 cont1
---------------------------------------------------*/

.cont1 {
	margin-top: 120px;
}

.cont1_box {
	width: 100%;
	align-items: center;
}

.cont1_box:last-of-type {
	margin-top: 180px;
	flex-direction: row-reverse;
}

.cont1_box, .cont1_img_outer {
	display: flex;
}

.cont1_txt_outer, .cont1_img_outer {
	width: 50%;
}

.cont1_img_outer {
	justify-content: space-between;
}

.cont1_img {
	width: 45%;
	height: 60em;
	position: relative;
	overflow: hidden;
}

.cont1_img img, .common_img img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

.cont1_img:first-of-type {
	margin-top: 120px;
}

.cont1_txt {
	width: 45%;
	margin: 0 auto;
}

h2, .reserve_inr a {
	font-size: 4rem;
	font-weight: 100;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

.cont1_txt p {
	margin-top: 3em;
	font-size: 1.5rem;
	line-height: 2.2;
}

.cont1_box:first-of-type .cont1_txt p:last-of-type {
	text-align: right;
	margin-top: 0;
}

/*--------------------------------------------------
 reserve
---------------------------------------------------*/

.reserve {
	width: 100%;
	margin: 120px 0;
}

.reserve_inr {
	max-width: 650px;
	width: 90%;
    margin: 0 auto;
	text-align: center;
}

.reserve_inr p {
	margin: 15px 0;
	padding-bottom: 15px;
	border-bottom: solid 1px #484E4D;
	font-size: 1.4rem;
}

.reserve_inr a {
	position: relative;
	display: inline-block;
}

.reserve_inr a:before {
	content: '';
	position: absolute;
	top: 13px;
    left: -30px;
    width: 30px;
    height: 30px;
    background-image: url(src/images/tel_img.svg);
    background-size: contain;
}

/*--------------------------------------------------
 cont2・cont3
---------------------------------------------------*/

.cont2, .cont3, table {
	width: 100%;
	position: relative;
}

.cont2_bg {
	position: absolute;
    top: -7em;
    right: 0;
    width: 30%;
    height: 35%;
    background-image: url(src/images/cont2_bg.jpg);
    background-size: cover;
    z-index: -1;
}

.cont3_bg {
	position: absolute;
    top: -7em;
    left: 0;
    width: 30%;
    height: 35%;
    background-image: url(src/images/cont3_bg.jpg);
    background-size: cover;
    z-index: -1;
}

.common_img {
	max-width: 1600px;
	width: 90%;
	height: 50em;
	position: relative;
	overflow: hidden;
}

.cont3 .common_img {
	margin-left: auto;
}

.common_inr, tbody {
	max-width: 800px;
	width: 80%;
	margin: 0 auto;
	padding: 180px 0;
	overflow: hidden;
}

.common_inr h2 {
	text-align: center;
	margin-bottom: 30px;
}

tr {
	display: flex;
	justify-content: space-between;
	padding: 0.5em 0;
	font-size: 1.6rem;
	line-height: 2.5;
}

td p span {
	font-size: 1.4rem;
}

th {
	font-weight: 100;
	text-align: left;
}

td {
	display: block;
	text-align: right;
}

td p {
	position: relative;
}

td p:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	min-width: 780px;
	border-top: dotted 1px #484E4D;
	z-index: -1;
}

th, td p {
	padding: 0 10px;
}

th, td p {
	background-color: #fff;
}

.cont3_txt {
	display: flex;
	margin: 30px 0;
}

.cont3_txt p {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 1px;
}

.cont3_txt p:first-of-type {
	padding-right: 50px;
}

.cont3_txt p:last-of-type {
	display: inline-block;
}

/*--------------------------------------------------
 cont4
---------------------------------------------------*/
.cont4 {
	position: relative;
	width: 100%;
	background-image: url(src/images/cont4_bg.jpg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.cont4 .reserve_inr {
	position: relative;
	z-index: 2;
	padding: 5em 0;
}

.white_bg {
	max-width: 750px;
    width: 60%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	border-radius: 50%;
	z-index: 1;
}

/*--------------------------------------------------
 FOOTER
---------------------------------------------------*/

.ft_inr, .ft_icon {
	display: flex;
}

.ft_inr {
	max-width: 800px;
	width: 85%;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
	padding: 7em 0;
}

.ft_logo {
	width: 150px;
}

.ft_icon a {
	margin: 0 10px;
	width: 25px;
	height: 25px;
}

.copy {
	width: 100%;
	border-top: solid 1px #484E4D;
	padding: 3em 0;
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 1px;
}


@media screen and ( max-width:896px) {

#g-nav {
   top:-120%;
   left:0;
   width:100%;
   height: 100vh;
   background:#fff;
}

#g-nav.panelactive{
    top: 0;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav ul {
	display: block;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav li{
	list-style: none;
    text-align: left;
	padding: 0 0!important;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 2rem!important;
}


.openbtn {
	position:fixed;
    z-index: 9999;
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
	background-color: #666;
  	width: 80%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}


.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.mv_inr {
	display: block;
}

.mv_logo, .mv_img {
    width: 100%;
}

.mv_lnk {
	display: none;
}

.mv_logo {
	padding-bottom: 5em;
}

.cont1_txt {
    width: 70%;
}

.cont1_img {
    height: 30em;
}
}


@media screen and ( max-width:480px) {

.mv_logo_img {
	width: 50%;
	margin: auto;
}

.mv_inr {
	padding-top: 5em;
}

h1 br {
	display: block;
}

h1 {
	line-height: 1.8;
}

.mv_logo {
    padding-bottom: 3em;
}

.cont1_box, .cont3_txt {
	display: block;
}

.cont1_txt_outer, .cont1_img_outer, .white_bg {
    width: 90%;
	margin: auto;
}

.cont1_txt_outer {
	padding-bottom: 70px;
}

.cont1_txt, .cont3_txt {
	width: 100%;
}

.cont1_box:last-of-type {
    margin-top: 70px;
}

.common_img {
    height: 20em;
}

.cont2_bg, .cont3_bg {
    top: -4em;
    height: 15%;
}

.common_inr {
    width: 90%;
    padding: 70px 0;
}

tr {
    display: block;
	line-height: 2;
}

th, td p {
    padding: 0 0;
}

.cont3_txt p:first-of-type {
    padding-right: 0;
	padding-bottom: 30px;
}

.reserve h2, .reserve_inr a {
	font-size: 3rem;
}

.reserve_inr a:before {
    top: 9px;
    width: 25px;
    height: 25px;
}

}



