@charset "utf-8";
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/NotoSansCJKjp-DemiLight.woff') format('woff');
  font-display: swap;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: left;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  vertical-align: top;
}
a {
  text-decoration: none;
  background: transparent;
  color: #fff;
}
a:focus, a:active, a:hover {
  outline: 0;
}
ul,
ol {
  list-style: none;
  width: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.pcnon {
  display: inline-block;
}
.hs {
  height: calc(var(--vh, 1vh) * 100);
}
.layout {
  padding: 0 2% 48px;
  max-width: 960px;
  margin: 0 auto;
}

/*eyecatch*/
.swiper-container h1 {
  position: absolute;
  top: 10px;
  left: 10px;
  margin: 0;
  font-size:14px;
  color: #fff;
  z-index: 99;
  font-weight: normal;
  display: none;
}
.swiper-container h1 span {
  font-size: 18px;
}
.slide1 {
  background-image: url("../img/slide1.jpg");
}
.slide2 {
  background-image: url("../img/slide2.jpg");
}
.slide3 {
  background-image: url("../img/slide3.jpg");
}
.slide4 {
  background-image: url("../img/slide4.jpg");
}
.slide5 {
  background-image: url("../img/slide5.jpg");
}
.swiper-wrapper .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  opacity: 0;
  overflow: hidden;
}
.catch-area {
  color: white;
  position: absolute;
  text-align: center;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.catch-title {
  font-size: 30px;
  padding-bottom: 10px;
}
.catch-text {
  font-size: 18px;
}
.swiper-slide::before {
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  content: "";
  height: 100vh;
  left: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
.swiper-slide.swiper-slide-active::before {
  opacity: 1;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  color: white;
  display: none;
}
.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: #fff; 
}
.swiper-pagination-bullet {
  background: white;
}
#loader {
  background-color: #000;
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
#loader.loaded {
  animation: fadeOut 0.5s forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

/*concept/appearance*/
.box {
  background: #030021;
  color: #fff;
  padding: 30px 0 0;
}
.box h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  height: 40px;
  line-height: 40px;
  display: flex;
  overflow: hidden;
  align-items: center;
}
.box h2:before,
.box h2:after {
  content: "";
  flex: 1;
  background: #fff;
  padding: 1px ;
  margin: 0 20px;
  height: 0;
  transform: rotate(180deg);
}
.concept p span {
  color: #DF0003;
}
.tab_wrap {
  margin: 20px 0 0;
}
.tab_ul {
  display: flex;
  flex-wrap: wrap;
}
.tab_ul li {
  display: block;
  background: #ddd;
  padding: 10px 16px;
  color: #030021;
  font-weight: bold;
  margin-right: 5px;
  cursor: pointer;
}
.tab_ul li:last-child {
  margin-right: 0;
}
.tab_ul li.active {
  background:#fff;
  color: #DF0003;
}
.tab_inner,
.tab_inner2 {
  display: none;
  opacity: 0;
}
.tab_inner {
  background: #fff;
}
.tab_inner.is-active,
.tab_inner2.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tab_inner p,
.appearance_inner p {
  margin-bottom: 10px;
}
.tab_inner ul,
.appearance_inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab_inner ul li,
.appearance_inner ul li {
  flex-basis: 32.5%;
}
.pers {
  border: 3px solid #fff;
  margin-bottom: 10px;
}

/*outline*/
.outline dl {
  border: 1px solid #fff;
  border-bottom: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.outline dl dt {
  border: 1px solid #fff;
  border-top: none;
  padding: 12px 0 12px 8px;
  flex-basis: 32%;
}
.outline dl dd {
  border: 1px solid #fff;
  border-top: none;
  border-left: none;
  padding: 12px 0 12px 8px;
  flex-basis: 68%;
}

/*floorplan*/
.plan_img {
  border: 2px solid #ddd;
}
.main_image2 li {
  border: 2px solid #fff;
  display: none;
}
.main_image2 li.current_m_img {
  display: block;
}
.main_image_p02 {
  display: flex;
  align-items: center;
}
.main_image_p02 img {
  width: 40%;
  max-width: 200px;
  margin-right: 10px;
}
.main_image2,
.sub_img2 {
  display: flex;
  justify-content: space-between;
}
.sub_img2 {
  margin-top: 5px;
}
.tab_inner2 .sub_img2 li {
  flex-basis: 19.5%;
}
.sub_img2 li.current_s_img {
  border: 1px solid #fff;
}
.tour {
  margin: 20px 0;
  position: relative;
  display: inline-block;
}
.tour img {
  display: block;
}
@media (min-width:  780px) {
  .tour {
    margin: 30px 0;
  }
}
.tour ul {
	display: flex;
	justify-content: space-between;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.tour li {
	flex-basis: 33.3333%;
}
.tour li a {
  display: block;
  width: 100%;
  height: 100%;
}
.tour li:first-child {
  pointer-events: none;
}
.pp {
  margin-top: 30px;
}
.pp h3 {
  font-size: 18px;
}
.pp div {
  display: flex;
  flex-wrap: wrap;
}
.pp dl {
  width: calc(100% / 3 - 2%);
  margin: 1%;
  border: 1px solid #fff;
}
.pp dt,
.pp dd {
  text-align: center;
  padding: 2%;
}
/*vacancy*/
.vs {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}
.va table {
  text-align: center;
  width: 100%;
}
.va table td {
  border: 1px solid #fff;
  padding: 10px 0;
}
.w1 {
  width: 12.5%;
}
.w2 {
  width: 25%;
}
.w6 {
  width: 75%;
}

/*contact*/
iframe.map {
  width: 100%;
  aspect-ratio: 16/9;
}
.address {
  text-align: center;
  line-height: 2rem;
  padding: 48px 0 0;
}
/*nearby*/
.n_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px 0 20px 2%;
}
@media (min-width:  780px) {
  .n_flex {
    width: 80%;
    margin: 0 auto;
  }
}
.n_flex li {
  flex-basis: calc(16.666% - 2%);
  margin-right: 2%;
}
/*footer*/
footer div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy {
  text-align: center;
  line-height: 3.0rem;
  background: #030021;
  width: 100%;
  color: #fff;
}
.page_top, .home_top {
  display: none;
}
@media (min-width: 820px) {
  .parallax_bg {
    background-size: contain ;
    background-color: #030021;
    position: relative;
  }
  .page_top, .home_top {
    display: block;
    position: absolute;
    right: 42px;
    bottom: 30px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #fff;
    padding: 0 0 0 35px;
    border-top: solid 1px;
  }  
  .home_top {
    transform: none;
    right: 90px;
    bottom: 0px;
  }
  .page_top::before, .home_top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
  }
}

