

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  bottom: 7vh;
  right: 0;
  left: 0;
  writing-mode: vertical-rl;
  z-idex: 100;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 3s infinite;
  background-color: #FFF;
  content: "";
  height: 14vh;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 100;
}
/* 線の背景色 */
.scroll::after {
  background-color: #888;
  content: "";
  height: 14vh;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 90;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


.fadeIn_left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 4s;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 4s;
}
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 100px);
  transition: 4s;
}
.fadeIn1 {
  opacity: 0;
  transition: 3s;
}
.fadeIn2 {
  opacity: 0;
  transition: 4s;
}
.fadeIn3 {
  opacity: 0;
  transition: 5s;
}
.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


.menu {
  display: flex;
  justify-content: center;
  margin-top: 2.5%;
}
.menu li {
  list-style-type: none;
  padding-right: 10px;
  padding-left: 10px;
  cursor: pointer;
  opacity: 1;
  transition: .4s;
}
.menu li:hover {
  transition: 0.4s;
  opacity: 0.4;
}



.contents1 {
}
.concept {
  height: 100vh;
  z-index: 30;
  color: white;
  background-image: url("../img/facility-top.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.concept-inner {
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.concept h1 {
	margin:0 auto 20% auto;
	display:flex;
	justify-content: center;
}
.concept h1 img{
	width:50%;
}
.concept p {
  font-size: 15pt;
  writing-mode: vertical-rl;
  margin: 20px auto 0 auto;
  text-shadow: 1px 1px 3px #000;
  line-height: 25pt;
}
.contents2 {
  height: 100vh;
  background-image: url("../img/facility-top2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.concept2 {
  z-index: 30;
  color: white;
  position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.concept2 img {
  width: 50px;
  display: block;
  margin: 0 auto;
}
.concept2 h2 {
  font-size: 25pt;
  text-align: center;
  margin-top: 40px;
  letter-spacing: 8pt;
}
.concept2 p {
  font-size: 13pt;
  text-align: center;
  margin-top: 40px;
  line-height: 20pt;
  letter-spacing: 4pt;
}
.navi02 {
  color: white;
  margin: 150px auto 0 auto;
}
.navi02 ul {
  font-size: 12pt;
  list-style: none;
  display: flex;
  justify-content: center;
}
.navi02 li {
  margin-left: 20px;
}
.contents3 {
  height: 100vh;
}
.CNT3box {
  width: 100%;
  height: 100%;
  display: flex;
}
.CNT3in1 {
  width: 60%;
  overflow: hidden;
}
.CNT3in1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CNT3in2 {
  width: 40%;
  color: white;
}
.CNT3in2 h2 {
  font-size: 25pt;
  margin-top: 10px;
	  letter-spacing: 2pt;
}
.CNT3in2 h3 {
  font-size: 15pt;
}
.CNT3in2 p {
  font-size: 12pt;
  margin-top: 10px;
  letter-spacing: 4pt;
  line-height: 20pt;
}
.CNT3in2in {
	padding: 45% 20% 0 20%;
  height: 100%;
  position: relative;
  z-index: -20; /*ブラー効果でボヤけた部分を非表示*/
}
.CNT3in2in:before {
  content: '';
  background-image: url("../img/facility-front-sub.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  filter: blur(5px);
  z-index: -30;
  opacity: 0.2;
}
.contents4 {
  height: 100vh;
}
.CNT4box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
}
.CNT4in1 {
  width: 60%;
  overflow: hidden;
}
.CNT4in1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CNT4in2 {
  width: 40%;
  height: 100%;
  color: white;
}
.CNT4in2 h2 {
  font-size: 25pt;
  margin-top: 10px;
  letter-spacing: 2pt;
}
.CNT4in2 h3 {
  font-size: 15pt;
}
.CNT4in2 p {
  font-size: 12pt;
  margin-top: 10px;
  letter-spacing: 4pt;
  line-height: 20pt;
}
.CNT4in2in {
  padding: 45% 20% 0 20%;
  height: 100%;
  position: relative;
  z-index: 1; /*ブラー効果でボヤけた部分を非表示*/
}
.CNT4in2in:before {
  content: '';
  background-image: url("../img/facility-zakuro-sub.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  filter: blur(2px);
  z-index: -30;
  opacity: 0.2;
}
.kakomi p {
  font-size: 12pt;
  margin-top: 10px;
  letter-spacing: 4pt;
  line-height: 20pt;
  color: #B6815A;
}
.kakomi a {
  font-size: 12pt;
  margin-top: 10px;
  letter-spacing: 4pt;
  line-height: 20pt;
  color: #fff;
  text-decoration: underline;
}
.kakomi a:hover {
  color: #bbb;
  transition: 0.8s;
}
.contents5 {
  height: 100vh;
}
.CNT5box {
  width: 100%;
  height: 100%;
  display: flex;
}
.CNT5in1 {
  width: 60%;
  height: 100%;
  overflow: hidden;
}
.CNT5in1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CNT5in2 {
  width: 40%;
  height: 100%;
  color: white;
}
.CNT5in2 h2 {
  font-size: 25pt;
  margin-top: 10px;
  letter-spacing: 2pt;
}
.CNT5in2 h3 {
  font-size: 15pt;
}
.CNT5in2 p {
  font-size: 12pt;
  margin-top: 10px;
  letter-spacing: 4pt;
  line-height: 20pt;
}
.CNT5in2in {
  padding: 45% 20% 0 20%;
  height: 100%;
  position: relative;
  z-index: -20; /*ブラー効果でボヤけた部分を非表示*/
}
.CNT5in2in:before {
  content: '';
  background-image: url("../img/facility-mono-sub.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  filter: blur(5px);
  z-index: -30;
  opacity: 0.2;
}
.contents6 {
  height: 100vh;
}
.CNT6box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
}
.CNT6in1 {
  width: 60%;
  height: 100%;
  overflow: hidden;
}
.CNT6in1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CNT6in2 {
  width: 40%;
  height: 100%;
  color: white;
}
.CNT6in2 h2 {
  font-size: 25pt;
  margin-top: 10px;
  letter-spacing: 3pt;
}
.CNT6in2 h3 {
  font-size: 15pt;
}
.CNT6in2 p {
  font-size: 12pt;
  margin-top: 10px;
  letter-spacing: 4pt;
  line-height: 20pt;
}
.CNT6in2in {
  padding: 45% 20% 0 20%;
  height: 100%;
  position: relative;
  z-index: -20; /*ブラー効果でボヤけた部分を非表示*/
}
.CNT6in2in:before {
  content: '';
  background-image: url("../img/facility-cart-sub.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  filter: blur(5px);
  z-index: -30;
  opacity: 0.2;
}
@media screen and (max-width: 1048px) {
  /* 414pxまでの幅の場合 */
  .concept p {
    font-size: 12pt;
    writing-mode: horizontal-tb;
    text-align: center;
  }
  .concept2 {
    padding: 0 5%;
  }
  .concept2 img {
    width: 30px;
  }
  .concept2 h2 {
    font-size: 18pt;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 2pt;
  }
  .concept2 p {
    font-size: 10pt;
    text-align: left;
    margin-top: 40px;
    line-height: 20pt;
    letter-spacing: 4pt;
    padding: 0 5%;
  }
  .menu {
    flex-direction: column;
    margin-top: 10%;
    align-items: center;
  }
  .menu li {
    padding-bottom: 2.5%;
  }
  .CNT3box {
    flex-direction: column;
  }
  .CNT3in1 {
    width: 100%;
    height: 40%;
  }
  .CNT3in1 img {
    width: 100%;
    height: 100%;
  }
  .CNT3in2 {
    width: 100%;
    height: 60%;
  }
  .CNT3in2 h2 {
    font-size: 20pt;
  }
  .CNT3in2 h3 {
    font-size: 14pt;
  }
  .CNT3in2 p {
    font-size: 10pt;
  }
  .CNT3in2in {
    padding: 10% 10% 0 10%;
  }
  .CNT4box {
    flex-direction: column;
  }
  .CNT4in1 {
    width: 100%;
    height: 40%;
  }
  .CNT4in1 img {
    width: 100%;
    height: 100%;
  }
  .CNT4in2 {
    width: 100%;
    height: 60%;
  }
  .CNT4in2 h2 {
    font-size: 20pt;
  }
  .CNT4in2 h3 {
    font-size: 14pt;
  }
  .CNT4in2 p {
    font-size: 10pt;
  }
  .CNT4in2in {
    padding: 10% 10% 0 10%;
  }
  .CNT5box {
    flex-direction: column;
  }
  .CNT5in1 {
    width: 100%;
    height: 40%;
  }
  .CNT5in1 img {
    width: 100%;
    height: 100%;
  }
  .CNT5in2 {
    width: 100%;
    height: 60%;
  }
  .CNT5in2 h2 {
    font-size: 20pt;
  }
  .CNT5in2 h3 {
    font-size: 14pt;
  }
  .CNT5in2 p {
    font-size: 10pt;
  }
  .CNT5in2in {
    padding: 10% 10% 0 10%;
  }
  .CNT6box {
    flex-direction: column;
  }
  .CNT6in1 {
    width: 100%;
    height: 40%;
  }
  .CNT6in1 img {
    width: 100%;
    height: 100%;
  }
  .CNT6in2 {
    width: 100%;
    height: 60%;
  }
  .CNT6in2 h2 {
    font-size: 20pt;
  }
  .CNT6in2 h3 {
    font-size: 14pt;
  }
  .CNT6in2 p {
    font-size: 10pt;
  }
  .CNT6in2in {
    padding: 10% 10% 0 10%;
  }
}