@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&family=Zen+Old+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@500&display=swap');

/* ============================================ */
/* PC common */
html {
	font-size: 62.5%;
}
body {
	letter-spacing: 0.1em;
	color: #28282c;
	transition: .3s ease-in-out;
	font-family: 'Zen Old Mincho', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
main {
  background: url(../img/bg.jpg)repeat;
  /* background: url(../img/bg.jpg)no-repeat bottom center /cover; */
}
.content {
	position: relative;
  width: 100%;
}

.is-pc {
  display: block;
}
.is-sp {
  display: none;
}

/* ============================================ */
/* PC header */
header {
	position: fixed;
	top: 6.0rem;
	left: 6.0rem;
	z-index: 998;
	display: flex;
	justify-content: space-between;
	width: calc(100% - 12.0rem);
}
header .logo {
  position: relative;
  width: 10.2rem;
}
header .logo.sp {
  display: none;
}
header .logo img {
  position: absolute;
  left: 0;
  top: 0;
	width: 100%;
  transition: .3s ease-in-out;
}
header .logo img:nth-child(1),
header .logo.is-scroll img:nth-child(2) {
  opacity: 1;
}
header .logo img:nth-child(2),
header .logo.is-scroll img:nth-child(1) {
  opacity: 0;
}


/* ============================================ */
/* PC nav */
nav.sp {
	display: none;
}
nav.sp .button {
	position: relative;
	cursor: pointer;
	width: 6.0rem;
	height: 6.0rem;
	z-index: 998;
	top: -0.5rem;
  right: -0.5rem;
}
nav.sp .button .text {
	color: #ffffff;
	font-family: 'EB Garamond', serif;
	font-size: 1.1rem;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
  top: 3.5rem;
}
nav.sp .button .text .close,
nav.sp .button.is-open .text .menu {
	display: none;
}
nav.sp .button.is-open .text .close {
	display: block;
	color: #28282c;
}
nav.sp .button > span {
	position: absolute;
	display: block;
	width: 3.0rem;
	height: 0.1rem;
	background: #ffffff;
	transition: .3s ease-in-out;
	left: 0;
	right: 0;
	margin: auto;
}
nav.sp .button > span:nth-child(1) {
	top: 1.5rem;
}
nav.sp .button > span:nth-child(2),
nav.sp .button > span:nth-child(4),
nav.sp .button > span:nth-child(5) {
	top: 2.1rem;
}
nav.sp .button > span:nth-child(3) {
	top: 2.7rem;
}
nav.sp .button > span:nth-child(4),
nav.sp .button > span:nth-child(5){
	opacity: 0;
}
nav.sp .button.is-open > span:nth-child(1),
nav.sp .button.is-open > span:nth-child(2),
nav.sp .button.is-open > span:nth-child(3) {
	opacity: 0;
}
nav.sp .button.is-open > span:nth-child(4),
nav.sp .button.is-open > span:nth-child(5) {
	opacity: 1;
	background: #28282c;
}
nav.sp .button.is-open > span:nth-child(4) {
	transform: rotate(30deg);
}	
nav.sp .button.is-open > span:nth-child(5) {
	transform: rotate(-30deg);
}
nav.sp .inner {
	pointer-events: none;
	opacity: 0;
	transition: .3s ease-in-out;
}
nav.sp .inner.is-open {
	pointer-events:inherit;
	opacity: 1;
}
nav.sp .inner .bg {
	background: rgb(0 0 0 / .6);
	display: block;
	height: 100vh;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	margin: auto;
}
nav.sp .link {
	position: absolute;
	background: #fff;
	right: 0;
  padding-top: 6.5rem;
	width: 76vw;
	height: 100vh;
}
nav.sp .link .ltem a {
	display: block;
	padding: 2.0rem;
	border-bottom: 1px solid #b4bbc5;
	font-size: 1.6rem;
	transition: .3s ease-in-out;
}
nav.sp .link .ltem a:hover {
	background: #28282c;
	color: #fff;
}
nav.sp .link .ltem.small a {
	padding: 1.2rem 1.5rem;
	font-size: 1.4rem;
}
nav.sp .link .ltem.small a.disabled{
	color: #b4bbc5;
  pointer-events:none;
}
nav.sp .link .ltem.small a.current {
	color: #b4bbc5;
}
nav.sp .link .ltem .num {
	font-size: 1.2rem;
	font-family: 'EB Garamond', serif;
  margin-bottom: 0.2rem;
	color:#b4bbc5;
	display: block;
}
nav.sp .copy {
	font-size: 1.0rem;
	position: absolute;
	bottom: 3.0rem;
	text-align: center;
	left: 0;
	right: 0;
	margin: auto;
}

header .logo.is-scroll + nav.sp .button > span {
  background: #28282c;
}
header .logo.is-scroll + nav.sp .button .text {
  color: #28282c;
}

/* PC用nav */
/* nav.pc {
	position: fixed;
	top: 56%;
	margin: auto;
	z-index: 998;
	left: 6.0rem;
	transform: translateY(-50%);
} */
nav.pc {
	position: absolute;
	top: 50%;
	left: 10%;
	margin: auto;
	z-index: 998;
	transform: translateY(-50%);
}
nav.pc .link {
  margin-top: 8rem;
	color: #ffffff;
}
nav.pc .link .ltem {
	display: block;
	font-size: 1.6rem;
	position: relative;
}
nav.pc .link .ltem + .ltem {
	margin-top: 3.8rem;
}
/* nav.pc .link .ltem + .ltem::before {
	content: "";
	background: #b4bbc5;
	display: block;
	height: 4.0rem;
	width: 0.1rem;
	left: 0.7rem;
	margin: auto;
	position: absolute;
	bottom: 3.6rem;
} */
nav.pc .link .ltem a {
	position: relative;
	padding-left: 3.4rem;
	display: flex; align-items: center;
  transition: .3s ease-in-out;
}
nav.pc .link .ltem p {
  font-size: 1.8rem;
  color: #333333;
  margin-left: 1.6rem;
}
/* nav.pc .link .ltem a::before,
nav.pc .link .ltem a::after {
	content: "";
	display: block;
	border-radius: 50%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}
nav.pc .link .ltem a::before {
	border: 2px solid #ffffff;
	height: 1.4rem;
	width: 1.4rem;
}
nav.pc .link .ltem a::after,
nav.pc .link .ltem.is-active a::after {
	height: 0.6rem;
	width: 0.6rem;
	left: 0.4rem;
} */
nav.pc .link .ltem a::after {
	background: transparent;
}
/* nav.pc .link .ltem.is-active a::after {
	background: #ffffff;
} */
nav.pc .link .ltem .num {
	font-size: 1.2rem;
	font-family: 'EB Garamond', serif;
	/* margin-bottom: 0.6rem; */
	color:#b4bbc5;
	display: block;
}

nav.pc.is-scroll .link {
  color: #28282c;
}
nav.pc.is-scroll .link .ltem a::before {
  border: 2px solid #28282c;
}
nav.pc.is-scroll .link .ltem.is-active a::after {
  background: #28282c;
}

/* ============================================ */
/* PC MV */
#mv {
	position: relative;
	width: 100%;
	height: 100vh;
}
#mv .catch {
	position: absolute;
  right: 5.0rem;
  bottom: 5.0rem;
	text-align: right;
	color: #ffffff;
	z-index: 2;
}
#mv .catch .en {
	font-size: 1.8rem;
	display: block;
  margin-bottom: 1.0rem;
  margin-right: 1.0rem;
}
#mv .catch .ja {
	font-size: 3.0rem;
	letter-spacing: 0.2em;
	display: block;
	line-height: 1.8;
}
#mv .video-bg {
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0));
	position: relative;
	z-index: 1;
  pointer-events: none;
}

/* #mv .video {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
#mv .video video {
	position: absolute;
	top: 50%;
	left: 50%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 101%;
	position: relative;
} */

/* #mv .mv-slider {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
  overflow: hidden; 
  width: 100%;
  height: 100vh;
} */

#mv .mv-slider {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-left: auto;
  overflow: hidden; 
  width: 62%;
  height: 100vh;
}

#mv .mv-slider .slider-item {
  width: 100%;
  height: 100vh;
}

#mv .mv-slider .slider-item.ovt {
  background-image: url(/img/top/mv_ovt.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#mv .mv-slider .slider-item.calm-villa {
  background-image: url(../img/mv.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#mv .mv-slider .slider-item.ajirohouse {
  background-image: url(/img/top/mv_ajirohouse.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ============================================ */
/* PC concept */
#concept {
  padding: 20rem 0 12rem 0;
  overflow: hidden;
}
#concept .inner {
  display: flex;
  /* padding: 0 5.56vw 0 25.69vw; */
  /* padding: 0 16vw 0 16vw; */
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
#concept .inner h1 {
  font-size: 3.6rem;
  line-height: 1.6;
  padding: 0 5.52vw 0 0;
  width: calc(100% - 24.11vw);
  white-space:nowrap;
}
#concept .inner p {
  font-size: 1.4rem;
  line-height: 2.4;
  margin-top: 1.2rem;
  width: 36.11vw;
}


/* ============================================ */
/* PC facility */
.c-title {
  font-size: 5.2rem;
  padding-top: calc(8.0rem + 5.8rem);
  /* font-family: 'EB Garamond', serif; */
  font-family: "Cormorant", serif;
  text-align: center;
  position: relative;
  margin-bottom: 4.0rem;
}
.l-title {
  font-size: 5.2rem;
  padding-top: calc(8.0rem + 5.8rem);
  /* font-family: 'EB Garamond', serif; */
  font-family: "Cormorant", serif;
  text-align: left;
  position: relative;
  margin-bottom: 4.0rem;
}
.s-title.ja {
  display: block;
  font-size: 1.6rem;
  /* padding-top: calc(8.0rem + 5.8rem); */
  /* font-family: 'EB Garamond', serif; */
  position: relative;
  font-family: 'Zen Old Mincho', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top: 16px;

}
/* .c-title::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 8.0rem;
  background: #28282c;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
} */
#facility {
	background: url(../img/top/bg_facility.jpg)no-repeat center center/cover;
}
#facility .inner {
  padding: 8.0rem 0 18.0rem 0;
}

/* slider */
#facility .facility-slider {
  overflow: hidden;
}
#facility .slider-inner {
  margin: 0 auto;
  width: 100%;
  padding-left: 24rem;
  padding-right: 12rem;
}
#facility .facility {
  position: relative;
}
.slick-list {
  overflow: visible;
}
#facility .slider-item {
  margin-right: 20px;
}
#facility .slider-item a {
  display: block;
  overflow: hidden;
  position: relative;
  margin: auto;
  transition: .3s ease-in-out;
}
#facility .slider-item a:hover {
  opacity: 0.7;
}


/* ============================================ */
/* PC feature */
#feature {
  padding: 5.8rem 0 16.0rem 0;
  overflow: hidden;
}
#feature .inner {
  /* padding: 0 5.56vw 0 25.69vw; */
  padding: 0 10vw 0 10vw;
  width: 100%;
}
#feature .loop-title {
  overflow: hidden;
  margin-bottom: 3.5rem;
}
#feature .loop-wrap {
	display: flex;
  width: 100%;
  height: 18.0rem;
  overflow: hidden;
}
#feature .loop-wrap span {
	flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12rem;
  line-height: 1;
  color: #eff3f5;
  font-family: 'EB Garamond', serif;
}
#feature .feature-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#feature .feature-block.reverse {
  flex-direction: row-reverse;
}
#feature .feature-block + .feature-block {
  margin-top: 10.0rem;
}
#feature .feature-block > * {
  min-height: 0;
  min-width : 0;
}
#feature .feature-block .num {
  color: #8a8c8f;
  font-size: 5.2rem;
  line-height: 2;
  font-family: "Cormorant", serif;
}
#feature .feature-block .title {
  font-size: 3.6rem;
  line-height: 1.6;
}
#feature .feature-block .text {
  font-size: 1.4rem;
  line-height: 2.4;
  margin-top: 1.2rem;
}
#feature .feature-text {
  padding: 0 0 0 5.52vw;
  width: calc(100% - 26.11vw);
} 
#feature .reverse .feature-text {
  padding: 0 5.52vw 0 0;
  width: calc(100% - 26.11vw);
} 
/* slider */
#feature .feature-slider {
  width: 36.11vw;
}
#feature .feature-slider .slider-item img {
  width: 100%;
}
#feature .feature-slide-dots {
  position: absolute;
  bottom: 1.7rem;
  right: 1.7rem;
}
#feature .feature-slide-dots li {
  cursor: pointer;
  border: 1px solid transparent;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  position: relative;
}
#feature .feature-slide-dots li + li {
  margin-top: 0.4rem;
}
#feature .feature-slide-dots li::before,
#feature .feature-slide-dots li.slick-active::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #b4bbc5;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
}
#feature .feature-slide-dots li.slick-active::before {
  background: #fff;
}
#feature .feature-slide-dots li.slick-active {
  border: 1px solid #fff;
}
#feature .feature-slide-dots li button {
  font-size: 0;
}

/* ============================================ */
/* Floor */
#floor {
  background: #636877;
  padding: 0 0 16.0rem 0;
}
#floor .inner {
  padding: 0 10vw 0 10vw;
  width: 100%;
}
#floor .inner h2 {
  color: #fff;
}
#floor .inner .img {
  display: flex;
}
#floor .inner .img img {
  width: 50%;
}
#floor .inner .img img:nth-child(n+2) {
  padding: 0 0 0 5.52vw;
}

/* ============================================ */
/* Equipment */
#equipment {
  background: #e0e3e9;
  padding: 0 0 16.0rem 0;
}
#equipment .inner {
  padding: 0 10vw 0 10vw;
  width: 100%;
}
#equipment .inner h2 {
  /* color: #fff; */
}

table {width: 100%;}
table th, table td {
  font-size: 1.4rem;
  line-height: 2;
	border-top: 1px solid #8a8c8f;
	border-bottom: 1px solid #8a8c8f;
  /* border: 1px solid #8a8c8f; */
	border-collapse: collapse;
  padding: 8px 12px;
  vertical-align: middle;
  font-weight: 400;
}
th {
  width: 130px; background: #dddddd;
}
table tr th:nth-child(2) {border-top: none;}
table tr td:first-child {width: 120px;}
table tr td dl dt {display: flex; align-items: center; font-weight: 400;}
table tr td dl dt::before {content: ''; display: inline-block; background: #28282c; width: 4px; height: 4px; border-radius: 50%; margin-right: 4px;}

table tr:nth-child(n+2):nth-child(-n+4) th{background: #d1d1d1;}
table tr:nth-child(n+9):nth-child(-n+10) th{background: #d1d1d1;}
table tr:nth-child(16) th{background: #d1d1d1;}
table tr:nth-child(19) th{background: #d1d1d1;}
table tr:nth-child(21) th{background: #d1d1d1;}


/* ============================================ */
/* PC MAP AREA */
#top-map .inner {
	/* padding-left: 20.14vw;
	padding-right: 2.08vw; */
	width: 100%;
}

#top-map #map {
	/* filter:grayscale(100%);-webkit-filter:grayscale(100%); */
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 33.2%;
}
#top-map #map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ============================================ */
/* PC footer */
footer {
  padding: 16.0rem 3.0rem 8.0rem;
}

footer .reserve{position:fixed;bottom:30px;right:30px;z-index:99;}
footer .reserve a{background:#000;color:#fff;width:110px;height:110px;border-radius:100%;font-size:1.5rem;letter-spacing:0.1em;display:flex;align-items:center;justify-content:center;border:1px solid #fff;transition:.35s cubic-bezier(0.68, -0.9, 0.32, 1.6);}
footer .reserve a:hover{transform:scale(1.3);}

footer .pagetop {
  position: fixed;
  bottom: 4.0rem;
  right: 3.0rem;
  background: #fff;
  border: 1px solid #28282c;
  border-radius: 50%;
  height: 6.6rem;
  width: 6.6rem;
  opacity: 0;
  transition: .3s ease-in-out;
}
footer .pagetop.is-visible {
  opacity: 1;
}
footer .pagetop a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
footer .pagetop a::before {
  content: '';
  background: url(../img/arrow-pagetop.png)no-repeat center center;
  height: 0.8rem;
  width: 1.6rem;
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
footer .pagetop a .text {
  padding-top: 3.1rem;
  text-align: center;
}
footer .logo {
  margin: 0 auto 60px;
  text-align: center;
}
footer .footer-link {
  display: flex;
  justify-content: center;
}
footer .footer-link li {
  position: relative;
  font-size: 1.4rem;
}
footer .footer-link li + li::before {
  content: "";
  height: 1.3rem;
  width: 0.1rem;
  background: #b4bbc5;
  margin: auto;
  display: block;
  position: absolute;
  left: -1.8rem;
  top: 0;
  bottom: 0;
}
footer .footer-link li.current {
  color: #b4bbc5;
}
footer .footer-link li.current a {
  border-bottom: 1px solid #b4bbc5;
}
footer .footer-link li + li {
  margin-left: 3.6rem;
}
footer .footer-link li a.disabled{
  opacity:0.5;
  pointer-events:none;
}
footer .copy {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.1rem;
}

.loading {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
  z-index: 999;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(5rem);
  transition: opacity 1s,visibility 1s, transform 1s;
}

.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* ============================================ */
/* 1921px以上 */
@media screen and (min-width: 1921px) {
  html {
    font-size: 100%;
  }
  #concept .inner {
      padding: 0 16vw 0 16vw;
    max-width: none;
  }
}

/* ============================================ */
/* デザインサイズ以下 */
@media screen and (max-width: 1440px) {
  /* #top-map .inner {
    padding-left: 25.69vw;
    padding-right: 2.08vw;
  } */
}

/* ============================================ */
/* メニュー切り替え インナー幅調整 */
@media screen and (max-width: 1160px) {
  header .logo.sp {
    display: block;
  }

  /* nav */
  nav.pc {
    display: none;
  }
  nav.sp {
    display: block;
  }
  
  #mv .mv-slider {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin-left: auto;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }

  #concept {
    padding: 8rem 0 0 0;
    overflow: hidden;
  }
  #concept .inner {
    display: flex; flex-wrap: wrap;
    /* padding: 0 5.56vw 0 25.69vw; */
    /* padding: 0 10vw 0 10vw; */
    max-width: 940px;
    width: 100%;
    padding: 0 10vw;
    margin: 0 auto;
  }
  #concept .inner h1 {
    font-size: 3.2rem;
    line-height: 1.6;
    padding: 0;
    width: 100%;
  }
  #concept .inner p {
    font-size: 1.4rem;
    line-height: 2.4;
    margin-top: 2rem;
    width: 100%;
  }

  #feature .inner {
    padding: 0 10vw;
  }

  #top-map .inner {
    padding: 0;
  }


  footer .reserve{right:10px;bottom:10px;}
	footer .reserve a{width:70px;height:70px;font-size: 1.4rem;}

}

/* ============================================ */
/* タブレット */
@media screen and (max-width: 960px) {
  /* スライダー調整 */
  /* #facility .inner {
    padding: 4rem 8vw 9rem 8vw;
  } */

  #facility .inner {
    padding: 4rem 0 8rem 0;
  }
  #facility .slider-inner {
    margin: 0 auto;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #facility .slider-item {
    margin-right: 20px;
  }
  #facility .slider-item + .slider-item {
    margin-top: 4.0rem;
  }
  #facility .facility-slide-dots {
    margin-right: auto;
  }

  #facility .slider-item img {
    max-height: 280px;
  }

  /* feature */
  #feature .inner {
    padding: 0 8vw;
  }
  #feature .feature-block .title {
    font-size: 3rem;
  }
  #feature .feature-block .text {
    font-size: 1.4rem;
  }

  /* floor */
  #floor {
    padding: 0 0 8.0rem 0;
  }
  #floor .inner .img {
    display: flex; flex-wrap: wrap; justify-content: center;
    margin-top: 4rem; padding-left: 0;
  }
  #floor .inner .img img:nth-child(n+2) {
    padding: 2rem 0 0 0;
  }

  footer .logo img {
    max-width: 200px;
  }
}

/* ============================================ */
/* SP */
@media screen and (max-width: 768px) {
	header {
		top: 2.0rem;
		left: 2.0rem;
		width: calc(100% - 4.0rem);
	}
	header .logo {
		width: 7.0rem;
	}

  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }

  #mv .catch {
    right: 2rem;
    bottom: 2rem;
  }
  #mv .catch .en {
    font-size: 1.4rem;
  }
  #mv .catch .ja {
    font-size: 2.4rem;
  }

  #mv .mv-slider {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin-left: auto;
    overflow: hidden; 
    width: 100%;
    height: 100vh;
  }

  #mv .mv-slider .slider-item.ovt {
    background-image: url(/img/top/mv_ovt_sp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  #mv .mv-slider .slider-item.calm-villa {
    background-image: url(../img/mv.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  #mv .mv-slider .slider-item.ajirohouse {
    background-image: url(/img/top/mv_ajirohouse_sp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  #feature .feature-block .num {
    color: #8a8c8f;
    font-size: 3.2rem;
    line-height: 1.6;
    font-family: "Cormorant", serif;
  }

  .c-title {
    font-size: 3.6rem;
    padding-top: calc(6.0rem + 2.4rem);
    margin-bottom: 2.0rem;
  }
  .l-title {
    font-size: 3.6rem;
    padding-top: calc(6.0rem + 2.4rem);
    margin-bottom: 2.0rem;
  }

  /* .c-title {
    font-size: 2.7rem;
    padding-top: calc(6.0rem + 2.4rem);
    margin-bottom: 2.0rem;
  }
  .l-title {
    font-size: 2.7rem;
    padding-top: calc(6.0rem + 2.4rem);
    margin-bottom: 2.0rem;
  } */

  .s-title.ja {
    margin-top: 8px;
  }

  #facility .slider-item .text .title {
    font-size: 2.4rem;
  }
  #facility .slider-item .text {
    bottom: 2rem;
    left: 2rem;
  }
  #facility .slider-item .text .icon {
    font-size: 1.3rem;
  }
  #facility .slider-item .more {
    right: -1.5rem;
    bottom: -1.7rem;
    height: 7rem;
    width: 7rem;
  }
  #facility .slider-item .more .text {
    left: 1.9rem;
    right: 0;
    bottom: 3.7rem;
    font-size: 1.2rem;
  }
  #facility .facility-slide-dots {
    margin-top: 3.0rem;
  }

  #feature {
    padding: 3.0rem 0 4.0rem 0;
  }
  #feature .loop-title {
    margin-bottom: -7.2rem;
  }
  #feature .loop-wrap span {
    font-size: 6rem;
  }
  #feature .feature-block {
    display: block;
  }
  #feature .feature-slider {
    margin-bottom: 2.0rem;
    width: 100%;
  }
  #feature .feature-text,
  #feature .reverse .feature-text {
    width: 100%;
    padding: 0;
  }
  #feature .feature-block + .feature-block {
    margin-top: 4rem;
  }
  #feature .feature-block .title {
    line-height: 1.4;
  }

  #floor .inner .img img {
    width: 100%;
  }

  table tr th {display: block; width: 100%;}
  table tr td {display: block; width: 100%;}
  table tr th + th {border-top: 1px solid #8a8c8f;}
  table tr th + td {width: 100%; border-top: none; border-bottom: none;}
  
  #top-map #map {
    padding-top: 100%;
  }

  footer {
    padding: 5.0rem 2.0rem;
    position: relative;
  }
  footer .footer-link {
    display: block;
    text-align: center;
  }
  footer .footer-link li {
    font-size: 1.2rem;
    line-height: 1;
  }
  footer .footer-link li + li {
    margin-top: 1.5rem;
    margin-left: 0;
  }
  footer .footer-link li + li::before {
    display: none;
  }
  footer .copy {
    font-size: 1.0rem;
    margin-top: 3rem;
  }

  footer .pagetop {
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
    position: absolute;
    top: -3.0rem;
  }
}