@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: bold;
    font-style: normal;
}

body {
     max-width: 100vw;
     background-image: url(../images/paro-bg1.png);
     background-color: black;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/*===== Header Css =====*/
.header{
    position: absolute;
    width: 100vw;
    backdrop-filter: blur(10px);
    z-index: 9997;
	top: 0px;
}

.header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    animation: slideDown 0.3s ease-in-out;
  }
  
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0%);
    }
  }

.header-inner{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.header .logo {
    width: clamp(10rem, 8.75rem + 5vw, 15rem);
    margin-left: 10px;
}

.header .logo img {
    width: 100%;
}

#g-nav {
    position: relative;
    font-family: "Zen Antique Soft", serif;
    font-weight: 400;
    font-style: normal;
}

.nav-list {
    display: block;
}

.nav-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list ul li {
    font-size: clamp(0.6rem, 0.433rem + 0.53vw, 1.2rem);
    font-weight: bold;
    padding: 0 20PX;
}

.nav-list ul li a {
    display: block;
    border-radius: 5px;
    color: white;
    text-align: center;
    text-decoration: none;
}

  @media (max-width:768px) {

    .nav-list ul li {
      padding: 0 5px;
    }
    .header .logo {
        width: 240px;
        margin-left: 0px;
    }
}






/*===== HERO Title Style =====*/
.top-container {
    position: relative;
    width: 100vw;
    height: 100vh; 
	margin-top: -20px;
}

.hero {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: absolute;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 10;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 15s; /* 30秒に変更 */
	animation-iteration-count: infinite;
	transform: scale(1); 
}

@keyframes slide-fade {
	0%{
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 0;
		transform: scale(1); /* ここで画像サイズを1に戻す */
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}
.hero-bg:first-of-type{
	background-image: url("../images/hero.jpg");
}
.hero-bg:nth-of-type(2){
	background-image: url(../images/hero2.jpg);
	animation-delay: 5s; /* 秒数を変更 */
}
.hero-bg:last-of-type{
	background-image: url(../images/hero3.jpg);
	animation-delay: 10s; /* 秒数を変更 */
}

.hero-mg {
  position: absolute;
  width: 100%;
  font-size: 7em;
  color: white;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width:768px){

    .top-container h1 {
        height: 100dvh;
        font-size: 20px;
        text-shadow: 3px 1px 0 gray;
    }

    .top-container h3 {
        font-size: 80px;
        text-shadow: 3px 1px 0 gray;
        top: 5%;
    }

  .hero-mg {
  font-size: 2em;
  color: white;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  }
}


#movie {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/*===== Loop Title Style =====*/

.loop-text-wrapper {
  overflow: hidden;
  display: flex;
  width: 100vw;
  background-color: black;
  margin-inline: calc(50% - 50vw);
  margin-top: 2%;
}

.c-text__item {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 8em;
  color: pink;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 0px 0 10px 0;

  &:nth-child(odd) {
    animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear; 
    /*24秒かけて-12秒後に無限ループさせる*/
  }

  &:nth-child(even) {
    animation: MoveLeft2 var(--tick-duration, 24s) infinite linear; /*24秒かけて無限ループさせる*/
  }
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.loop-text-wrapper:hover .c-text__item {
   animation-play-state: paused; 
}

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

  .loop-text-wrapper {
    margin-top: 5%;
  }

  .c-text__item {
    font-size: 3em;
  }
}

/*===== WRAPPER Title Style =====*/

#wrapper {
  overflow-x: hidden;
}

.slick-slider {
  width: 100%;
  position: relative;
}

.slick-item img {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.slick-item img.show {
  opacity: 1;
  transform: translateY(0);
}

.slick-slide {
  opacity: 0.6;
  transition: 0.3s;
  padding: 30px 10px;
}

.slick-active {
  opacity: 1 !important;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.slick-prev {
  left: 30px;
}

.slick-next {
  right: 30px;
}

.slick-prev:before,
.slick-next:before {
  content: '';
  font-size: 30px;
  color: #75E1D6;
  font-family: Arial, sans-serif;
}

.slick-prev:before {
  content: '<';
}

.slick-next:before {
  content: '>';
}

@media screen and (max-width: 768px) {
  .slick-prev {
    left: 30px;
  }
  .slick-next {
    right: 30px;
  }
}

/*===== ABOUT Title Style =====*/

#about {
  position: relative;
  width: 100vw;
}

.vertical {
  position: absolute;
  width: 30%;
  top: 10%;
  left: 0;
}

.vertical-2 {
  position: absolute;
  bottom: 0%;
  right: 0;
}

.vertical-h2 {
  color: violet;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 9em;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.sec-01 {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
  color: #fff;
}

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

.main-title-01 {
  font-size: 3rem;
  
  margin-bottom: 50px;
  text-align: center;
  margin-bottom: 10%;
}

.content-01 {
  width: 1150px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: palevioletred;
  border-radius:20px;
  border: 4px solid white;
}

.content-01 .image-01 {
  position: relative;
  width: 500px;
  height: 700px;
  overflow: visible;
}

.content-01 .image-01 img {
  position: absolute;
  top: -54px;
  left: -60px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  overflow: visible;
  z-index: 10;
}

.content-01 .text-box-01 {
  z-index: 20;
  background-color: white;
  padding: 40px;
  max-width: 500px;
  height: 500px;
  outline: 4px solid plum;
  outline-offset: -8px;
  border-radius: 10px;
  transform: translate(-20px, 0px);
}

.content-01 .text-box-01 h3 {
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 10px;
  color:aqua;
}

.content-01 .text-box-01 p {
  font-size: 1em;
  color: plum;
  line-height: 2;
}





.sec-02 {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
  color: #fff;
}

.content-02 {
  position: relative;
  width: 1150px;
  height: 600px;
  background-color: palevioletred;
  border-radius:20px;
  border: 4px solid white;
}

.content-02 .sec02-img {
  position: absolute;
  bottom: 4px;
  left: 10px;
  width: 300px;
  height: 600px;
  object-fit: cover;
  z-index: 10;
}

.content-02 .sec02-img2 {
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 400px;
  height: 600px;
  object-fit: cover;
  overflow: visible;
  z-index: 10;
}

.bottle-img1 {
  position: absolute;
  bottom: -10px;
  right: 380px;
  width: 100px;
  height: 350px;
  object-fit: cover;
  z-index: 10;
}

.bottle-img2 {
  position: absolute;
  bottom: -10px;
  right: 480px;
  width: 100px;
  height: 350px;
  object-fit: cover;
  z-index: 10;
}

.bottle-img3 {
  position: absolute;
  bottom: -4px;
  right: 600px;
  width: 80px;
  height: 300px;
  object-fit: cover;
  z-index: 10;
}

.info-01 {
  position: absolute;
  width: 850px;
  height: 250px;
  background-color: white;
  border-radius: 20px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  padding: 2px;
  outline: 4px solid plum;
  outline-offset: -8px;
}

.info-01 h3 {
  color: aqua;
  text-align: center;
  font-size: 3em;
  padding: 20px;
}

.info-01 p {
  color: plum;
  font-size: 1em;
  padding: 0 150px;
  line-height: 1.4;
}




.sec-03 {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
  color: #fff;
}

.content-03 {
  width: 1150px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: palevioletred;
  border-radius:20px;
  border: 4px solid white;
}

.main-title-03 {
  font-size: 3em;
  margin-bottom: 100px;
}

.media-info-01 {
  width: 400px;
  margin-left: 50px;
}

.media-info-01 li {
  height: 52px;
  width: 200px;
  background-color: white;
  padding: 10px;
  border-radius: 20px;
  outline: 4px solid plum;
  outline-offset: -8px;
  list-style: none;
  text-align: center;
  font-size: 1.8em;
  transition-duration: .4s;
}

.media-info-01 li:hover {
  transform: scale(1.1);
}

.media-info-01 li a {
  text-decoration: none;
  color: plum;
}

.media-info-01 li:not(:last-child) {
  margin: 50px 0;
}


.media-info-01 li:nth-child(1),
.media-info-01 li:nth-child(5) {
  
  margin-left: 100px;
  
}

.media-info-01 li:nth-child(2),
.media-info-01 li:nth-child(4) {
  margin-left: 50px;
}



.content-03 .image-03 {
  position: relative;
  width: 900px;
  height: 800px;
  overflow: hidden;
}

.content-03 .image-03 img {
  position: absolute;
  top: -0px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  z-index: 10;
}


@media (max-width:768px) {

.vertical-h2 {
  color: violet;
  font-size: 4em;
}

.main-title-01 {
  font-size: 1.2em;
  margin-bottom: 5%;
}

.content-01 {
  /* position: relative; */
  width: 80vw;
  height: 50vh;
  flex-direction: column;
   overflow: visible;
}

.content-01 .text-box-01 {
  padding: 5px;
  width: 380px;
  height: 300px;
  transform: translate(0px, 40px);
}

.content-01 .text-box-01 h3 {
  font-size: 1.2em;
  padding: 10px;
  color:aqua;
}

.content-01 .text-box-01 p {
  font-size: 0.6em;
  color: plum;
  padding: 0 20px;
}

.content-01 .image-01 {
    width: 500px;
    height: 800px;
    overflow: visible;
	object-fit: cover;
}

.content-01 .image-01 img {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 240px;
  height: 280px;
  object-fit: cover;
  overflow: visible;
  z-index: 10;
}



.content-02 {
  width: 80vw;
  height: 50vh;
  flex-direction: column;
  object-fit: cover;
  overflow: visible;
}

.content-02 .sec02-img {
  bottom: 0;
  left: 20px;
  width: 160px;
  height: 270px;
}

.content-02 .sec02-img2 {
  top: -30px;
  right: -40px;
  width: 200px;
  height: 340px;
  object-fit: cover;
  overflow: visible;
}

.bottle-img1 {
  bottom: 0;
  right: 0;
  width: 50px;
  height: 200px;
  z-index: 10;
}

.bottle-img2 {
  bottom: 0;
  right: 60px;
  width: 50px;
  height: 200px;
  object-fit: cover;
  z-index: 10;
}

.bottle-img3 {
  bottom: -1px;
  right: 130px;
  width: 50px;
  height: 200px;
  object-fit: cover;
  z-index: 10;
}

.info-01 {
  top: 50px;
  right: -0px;
  width: 300px;
  height: 300px;
  padding: 1px;
}

.info-01 h3 {
  font-size: 2em;
}

.info-01 p {
  font-size: 0.8em;
  padding: 0 50px;
}



.sec-03 {
  justify-content: space-evenly;
  padding: 80px 100px;
  color: #fff;
	margin-top: -30px;
}

.content-03 {
  width: 80vw;
  height: 50vh;
  flex-direction: column;
}
	
.main-title-03 {
  font-size: 2em;
  margin-bottom: 30px;
}	

.media-info-01 {
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-left: 0;
  margin-top: 0;
}

.media-info-01 li {
  width: 120px;
  height: 35px;
  list-style: none;
  font-size: 1em;
  outline: 2px solid plum;
  outline-offset: -4px;
}

.content-03 .image-03 {
  width: 420px;
  height: 520px;
  object-fit: cover;
  overflow: visible;
}

.content-03 .image-03 img {
  top: 30%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 400px;
  height: 400px;
  object-fit: cover;
  overflow: visible;
  z-index: 10;
}

.media-info-01 li:not(:last-child) {
  margin: 3px;
}

.media-info-01 li:nth-child(1),
.media-info-01 li:nth-child(5) {
  margin-left: 0px;
}

.media-info-01 li:nth-child(2),
.media-info-01 li:nth-child(4) {
  margin-left: 0px;
}

.media-info-01 li:nth-child(1){
  padding-right: 20px;
}

.media-info-01 li:nth-child(3) {
  padding-left: 20px;
}

}

/*===== ABOUT-PAROPARO Title Style =====*/



/*===== CASTLIST Title Style =====*/

#castlist {
  width: 100vw;
  height: auto;
  margin-top: 5%;
}

.castlist-text h3 {
  font-size: 3em;
  color: white;
  padding: 20px;
  text-align: center;
}

.castlist-text p {
  font-size: 1.4em;
  color: white;
  padding: 20px;
  text-align: center;
}

.gallery {
  width: 80vw;
  margin: 10px 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: black;
  border-radius:20px;
  border: 4px solid plum;
}

.gallery img {
  width: 160px;
  height: 349px;
  padding: 10px;
  object-fit: cover;
  transition: 0.7s;
  border-radius:20px;
}

.gallery img:hover {
  transform: scale(1.1);
}

@media (max-width:768px) {

  .castlist-text h3 {
  font-size: 2em;
  color: white;
  padding: 20px;
  }

.castlist-text p {
  font-size: 1em;
  color: white;
  padding: 10px 30px;
  }
}

/*===== System Title Style =====*/

#system {
  width: 100vw;
  height: 100vh;
}

.system-title {
  color: white;
  text-align: center;
  padding: 50px;
  font-size: 2em;
}

.system-area {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}

#system img {
  width: 500px;
  height: auto;
  object-fit: cover;
}

.system-text {
	width: 100vw;
	padding: 10px;
}

.system-text p {
	text-align: center;
	color: white;
	font-size: 1.4em;
	
}

@media (max-width:768px) {

    #system {
      height: auto;
    }

    #system img {
      width: 200px;
    }
	
	.system-text p {
	font-size: 1em;
}
}

/*===== EXTERIORE Title Style =====*/

#exterior {
  width: 100vw;
  height: auto;
}

.exterior-text {
  color: white;
  text-align: center;
  padding: 50px;
}

.exterior-text h3 {
  font-size: 2em;
	margin-top: 5%;
}

.exterior-text span {
  font-size: 1.6em;
}

.exterior-gallery {
  margin: 10px 50px;
  text-align: center;
}

.exterior-gallery img {
  width: 400px;
  height: 300px;
  padding: 10px;
  object-fit: cover;
  transition: 0.7s;
}

.exterior-gallery img:hover {
  transform: scale(1.1);
}

/*===== INTERIOR Title Style =====*/

#interior {
  width: 100vw;
  height: auto;
  margin-bottom: 10%;
}

.interior-text {
  color: white;
  text-align: center;
  padding: 50px;
}

.interior-text h3 {
  font-size: 2em;
}

.interior-text span {
  font-size: 1.6em;
}

.interior-gallery {
  margin: 10px 50px;
  text-align: center;
  
}

.interior-gallery img {
  width: 400px;
  height: 300px;
  padding: 10px;
  object-fit: cover;
  transition: 0.7s;
}

.interior-gallery img:hover {
  transform: scale(1.1);
}





/*===== CONTACT Title Style =====*/

#contact {
  margin-bottom: 10%;
  background-color: white;
  width: 100%;
  height: 90vh;
}

#contact h3 {
  font-size: 3em;
  color: black;
  text-align: center;
  padding: 50px;
}

.mailform {
  width: 40vw;
  margin-left: auto;
  margin-right: auto;
}


.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 1em;
}

.wpcf7 input[type="submit"] {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 1em;
  border-radius: 5px;
}

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

.wpcf7 textarea {
  width: 80vw;
}

.mailform {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
}


/*===== MAP Title Style =====*/

#map {
  width: 100vw;
  height: 70vh;
}

.map-area {
  margin: 0px auto;
  max-width: 1000px;
  text-align: center;
}

.map-area h2 {
  font-size: 3em;
  color: white;
  padding: 20px;
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


/*===== FOOTER Title Style =====*/

footer {
  height: 70vh;
  width: 100vw;
  background-image: url("../images/footer-bg.jpg");
  background-position: center ;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-container {
  display: flex;
  flex-direction: column;
  height: 70vh;
  background-color: rgba(0,0,0,0.6);
  color: white;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 600px;
  height: auto;
  padding: 20px;
}

.footer-nav {
  margin-top: 0px;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav ul li {
    font-size: clamp(0.6rem, 0.433rem + 0.53vw, 1.2rem);
    font-weight: bold;
    padding: 10px 30px 50px 10px;
}

.copyright {
  text-align: center;
}

.copyright p {
  font-size: 1em;
  color: white;
  padding: 10px;
	
@media screen and (max-width: 768px) {
.copyright p {
  font-size: 0.8em;
}
}