@charset "utf-8";


/* 共通スタイル */
* {
  margin: 0;
  padding: 0;

}

 .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  .zen-kaku-gothic-new-regular {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  
body {
  
  background: rgb(255, 255, 255); /* ページ全体の背景色 */
  overflow-x: hidden;
}

header {
  position: fixed;
  width: 100%;
  height: 90px;
  background: #ffffff; 
  z-index: 1000;
}

h1 {
  margin: 40px 0 10px 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 1.2rem;     
  text-decoration: none;
  display: inline-block;
  color: #000;
  transition: transform 0.3s ease;
  transform-origin: left;
  cursor: pointer;
}
h1 a {
  color: inherit;        
  text-decoration: none;  
}

h1:hover {
  transform: scale(1.2);
}

nav ul {
  list-style-type: none;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  margin: 10px 0 0 0;
  padding: 0;
  
  
}

nav ul li {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  color: #000;
  font-size: 18px;
  transition: transform 0.3s ease;
  z-index: 100;
}

nav ul li a:hover {
  transform: scale(1.2);
}
.social-icons {
  position: fixed; 
  top: 80px; 
  right: 0px; 
  transform: translate(-40%, 50%);
  display: flex; 
  gap: 23px; 
  z-index: 1001;
}

.social-icons i {
  font-size: 20px; 
  color:#9e9e9e;
  transition: color 0.6s, transform 0.6s;
  text-decoration: none;
  cursor: pointer; 
}

.social-icons i:hover {
  transform: scale(1.4);
}
.language, .language-switch {
  position: absolute;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
 
}

.language {
  position: fixed;
  font-size: 15px;
  top: 50px;
  right: 0px;
  transform: translate(-28%, 20%);
  transition: color 0.6s, transform 0.6s;
  z-index: 1001;
}
.language i:hover {
  transform: scale(1.4);
}

.language-switch {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 8px;
  list-style: none;
  width: 100%;
  top: 315px;
  right:5px;
  font-size: 10px;
  z-index: 500;
}

.language a,
.language-switch a {
  color: #888;
  text-decoration: none;
  transition: transform 0.3s ease;
  padding: 0 6px;
}

.language a:hover,
.language-switch a:hover {
  color: #000;
}

.language a.active,
.language-switch a.active {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
  cursor: default;
}

.language-switch li {
  display: flex;
  align-items: center;
}

#vegas {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 81vh;
  top: 140px;
  background-size: cover;
}
main{
  
  font-family:"Poppins","Zen Kaku Gothic New","sans-serif";
height: 5300px;
overflow-x: hidden;
}
.main-2{
height: 2800px;
}
#page-title {
  position: relative;
  text-align: center;
  font-family: "Poppins", sans-serif, Helvetica, Arial;
  font-size: 6vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
  width: 100vw;
  max-width: 1000px;
  top: 200px;
  height: 81vh;
  margin: 50px auto 0 auto;
  z-index: 100;
}

#page-title.visible {
  opacity: 1;
  visibility: visible;
}
.title {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 要素を縦横ともに中央揃え */
  text-align: center;
  width: 100vw;             /* 画面サイズに応じて幅が変わる */
  max-width: 1000px;
  font-size: 6vw;          /* 画面幅に応じて文字サイズが変わる */
  border-radius: 10px;
  opacity: 0;              /* 最初は非表示 */
  transition: opacity 1.5s;
  z-index: 10;
}


.title.show{
  opacity: 1; /* showクラスが付いたら表示 */
}

#page-content {
    display: flex;
    justify-content: center;   /* 横方向の中央 */
    align-items: center;       /* 縦方向の中央 */
    height: 100vh;             /* 画面の高さに合わせる */
    text-align: center;        /* h1のテキストも中央に */  
    z-index: 1100;
}

.photo,
.about-block,
.about-me
{
  position: fixed;
  top: 50%;
  left: 50%;        
  padding: 20px;
  line-height: 1.7;
  text-align: center;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 10;
}
.photo{
  transform: translate(-100%, -50%);
  width: 350px;
  max-width: 1000px;
  border-radius: 10%;
}
.about-block{
  font-size: clamp(12px, 4vw, 30px);
  transform: translate(35%, -200%);
  width:20% ;
  max-width: 1000px;
}

.about-me{
  font-size: clamp(12px, 4vw, 20px); 
  transform: translate(-12%, -40%);
  width: 50%;
  max-width: 1000px;
}

.photo.show,
.about-block.show,
.about-me.show{
  opacity: 1; 
}
.viewmore a{
  display: inline-block;
  text-decoration: none; 
  margin-top: 10px;
  padding: 2px 16px;          
  border: 1px solid #333;    
  border-radius: 8px;
  background-color: rgb(234, 231, 231);
  color: black; 
  transition: transform 0.3s ease;
}
.viewmore a:hover {
  transform: scale(1.1);
}
.Gallery-short {
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 30px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  z-index: 1000;
}

.Gallery-short.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  overflow: auto;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90vw;         /* 画面幅の90%まで拡大 */
  max-height: 90vh;        /* 画面の高さの90%まで */
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  object-fit: contain;     /* 画像のアスペクト比を保って拡大 */
}


.caption {
  text-align: center;
  color: white;
  padding: 15px;
  font-size: 16px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}
.close:hover {
  color: #aaa;
}

/*----gallery.html用----*/


.Gallery-short1 {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -  30px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  z-index: 1000;
}

.Gallery-short1.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.gallery-2 {
  text-align: center;
  font-size: 4vw;
}


.image-grid1,
.image-grid2 {
  position: fixed;
  width: 70%;
  max-width: 1000px;
  top: 20%;
  left: 13.5%;
  transform: translate(-100%, -50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 比率を均等に */
  gap: 50px;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 10;
  pointer-events: none;
}

.image-grid1.show,
.image-grid2.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.image-grid1 img,
.image-grid2 img  {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.image-item1 {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.image-item1 p {
  width: 100%;
  margin-top: 10px; 
}

.image-item1:hover {
  transform: scale(1.1);
}



.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  overflow: auto;
}

.modal-content {
  display: block;
  margin: 10% auto 0 auto;
  max-width: 80%;
  max-height: 70%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.caption {
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding: 15px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}
.close:hover {
  color: #aaa;
}


/*----gallery page用  END----*/


.gallery-1 {
  text-align: center;
  font-size: 6vw;
}

.image-grid {
  position: fixed;
  width: 70%;
  max-width: 1000px;
  top: 40%;
  left: 13.5%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 比率を均等に */
  gap: 70px;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 10;
  pointer-events: none;
}

.image-grid.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.image-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.image-item p {
  margin-top: 10px; 
}

.image-item:hover {
  transform: scale(1.1);
}


.viewmore-1 {
  position: fixed;
  bottom: 15%;
  color: #9e9e9e; 
  left: 50%;
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s ease;
  z-index: 1000;
}

.viewmore-1.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.viewmore-1 a {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid #333;
  font-size: clamp(12px, 4vw, 20px);
  border-radius: 8px;
  text-decoration: none;
  background-color: rgb(240, 239, 239);
  color: black; 
  transition: transform 0.3s ease;
}

.viewmore-1 a:hover {
  transform: scale(1.1); 
}

.contact-title {
  position: fixed;
  top: 35%;  /* ← ボタンより上に表示 */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 90px;
  width: 70%;
  max-width: 1000px;
  line-height: 1.7;
  color: #333;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1001;  /* ← contact-button より前に表示 */
}



.contact-button {
  position: fixed;
  width: 40%;
  max-width: 1000px;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 30px;
  text-decoration: none;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  line-height: 1.7;
  z-index: 1000;
}

.contact-title.show,
.contact-button.show {
  opacity: 1;
  pointer-events: auto;
}

.fas.fa-envelope {
  color: #999;
  font-size: 34px;
  margin-bottom: 8px;
}



.about-me1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;              /* スマホでもはみ出さないように */
  max-width: 1000px;
  padding: 20px;
  font-size: 1.5vw;
  line-height: 1.7;
  text-align: center;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 10;
}
.break1, .break2 .break3{
  display: inline;
}


.about-me1.show{
  opacity: 1; 
}

.responsive-br{
  display: none;
}
.responsive-br1{
  display: none;
}

.about-me2 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;              /* スマホでもはみ出さないように */
  max-width: 1000px;
  padding: 20px;
  font-size: clamp(16px, 4vw, 26px); /* 画面幅に応じてサイズ可変 */
  line-height: 1.7;
  text-align: center;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 10;
}



.about-me2.show{
  opacity: 1; 
}

.about-me3 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;              /* スマホでもはみ出さないように */
  max-width: 1000px;        /* デスクトップで広がりすぎない */
  padding: 20px;
  font-size: clamp(12px, 4vw, 20px); /* 画面幅に応じてサイズ可変 */
  line-height: 1.7;
  text-align: center;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 10;
}

.about-me3.show{
  opacity: 1; 
}


/* slick */
#page-content3 {
  display: flex;
  justify-content: center;  /* 横方向に中央 */
  align-items: center;      /* 縦方向に中央 */
  height: 100vh;            /* 画面全体の高さに調整 */
  margin: 1900px 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#page-content3.show {
  opacity: 1;
}

.slide-item {
  text-align: center;

}

.slide-item img {
  width: 50%;   
  max-width: 1200px;
  height: auto;
  margin: 70px auto;
  display: inline-block; 
  opacity: 0;
  transform: translateY(50px); 
  transition: opacity 1.5s ease;
}
#page-content3.show ,
.slide-item.show,
.slide-item img.show
{
  opacity: 1; 
}

footer{

    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 20px;
    background-color: #f5f5f5;
    margin-top: 80px;
    font-family: "Poppins", sans-serif;
}




/* スマホ用メニュー */
#mobile-menu {
  display: none; /* 初期状態では非表示 */
  width: 32%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: -40%; /* ナビメニューを左に隠した状態 */
  background: #ffffff;
  transition: 0.7s;
}

#mobile-menu ul {
  padding-top: 80px;
}

#mobile-menu ul li {
  font-size: 20px;
}

#hamburger {
  display: block;
  position: fixed;
  top: 20px;
  right: 30px;
  width: 50px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
}

.inner_line {
  display: block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #000000;
  transition: 1s;
  border-radius: 4px;
}

#hamburger #line1 {
  top: 0;
}

#hamburger #line2 {
  top: 20px;
}

#hamburger #line3 {
  bottom: 0;
}

/* ハンバーガーメニュークリック時のアニメーション */
.in {
  transform: translateX(100%);
}

.line_1 {
  transform: rotate(-45deg);
  margin-top: 20px;
}

.line_2 {
  opacity: 0;
}

.line_3 {
  transform: rotate(45deg);
  margin-bottom: 20px;
}

/* PC用メニュー */
#pc-menu {
  display: none; /* 初期状態では非表示 */
  width: auto;
  height: auto;
  position: relative;
  background-color: #ffffff;
  z-index: 1000;
}

#pc-menu ul {
  display: flex; /* 横並びにする */
  justify-content: flex-start;
  padding: 0 20px;
}

#pc-menu ul li {
  margin: 0 5px;
}
.sp-break { 
  display: none;
 }

  

/* レスポンシブ対応 */
@media (max-width: 768px) {

 .sp-break { display: inline; }

  h1 {
    margin-left: 0;
    margin-top: 20px;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    overflow-wrap: break-word; 
    transform-origin: center; 
  }

  #mobile-menu {
      display: block; /* スマホ用メニューを表示 */
      padding: 10px 15px;
      transform-origin: center; 
      text-align: center;
  }

  #hamburger {
      display: block; /* ハンバーガーメニューを表示 */
  }

  #pc-menu {
      display: none; 
  }
  .social-icons {
    display: none;
  }
  .language {
    display: none;
    
  }
  #vegas {
    top: 95px;
  }
  .title,
  #page-title{
    font-size: 8vw;
    }
    .Gallery-short {
      top: 12%; 
      left: 50%;
      transform: translate(-50%, 30px);
    }
  .gallery-1{
    font-size: 5vw;
  }
  .viewmore-1{
    top: 92%;
    transform: translate(-50%, 30px);
  }
  .image-grid{
    width: 30%;
    top: 15%;
    left: 32%;
    transform: none;
    grid-template-columns: 1fr; 
    gap: 10px;
  }
  .image-grid1,
  .image-grid2{
    width: 60%;
    top: 15%;
    left: 17%;
    transform: translate(-50%, -50%);
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
  }
  .photo,
  .about-block,
  .about-me{
    width: 100%;
  }

  .photo{
    transform: translate(-50%, -80%);
    border-radius: 20%;
    max-width: 250px; 
  }
  .about-block  {
    transform: translate(-50%, 30%);
    font-size: 20px; 
    max-width: 600px;
  }
  .about-me{
    transform: translate(-50%, 25%);
    max-width: 600px;
    font-size: 16px;
  }
  .about-me1{
    font-size: 16px;
    width: 100%;
    max-width: 600px;
  }
  .responsive-br{
    display: inline;
  }
  .responsive-br1{
    display: none;
  }
  .about-me2{
    font-size: 16px;
  }
  .slide-item img {
    width: 90%;   
  }
  .contact-title {
    top: 30%;
    font-size: 46px;
  
  }
  .contact-button{
    width: 80%;
    font-size: 24px;
  }
  .about-me3{
    font-size: 16px;
  }
  }


@media (min-width: 769px) {
  #mobile-menu {
      display: none; /* スマホ用メニューを非表示 */
  }

  #hamburger {
      display: none; /* ハンバーガーメニューを非表示 */
  }

  #pc-menu {
      display: block; /* PC用メニューを表示 */
  }
}

@media (max-width: 480px) {
  .Gallery-short {
    top: 20%; 
    left: 50%;
    transform: translate(-50%, 30px);
  }
  .gallery-1{
    font-size: 8vw;
  }
  .viewmore-1{
    top: 90%;
    transform: translate(-50%, 30px);
  }
  .image-grid{
    width: 50%;
    top: 25%;
    left: 20.5%;
    transform: none;
    grid-template-columns: 1fr; 
    gap: 10px;
  }
  .image-grid1,
  .image-grid2{
    width: 75%;
    top: 30%;
    left: 8%;
    transform: translate(-50%, -50%);
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
  }
  }
@media (max-width: 375px) {
  .Gallery-short {
    top: 15%; 
    left: 50%;
    transform: translate(-50%, 30px);
  }
  .gallery-1{
    font-size: 8vw;
  }
  .viewmore-1{
    top: 90%;
    transform: translate(-50%, 30px);
  }
  .image-grid{
    width: 50%;
    top: 20%;
    left: 20.5%;
    transform: none;
    grid-template-columns: 1fr; 
    gap: 10px;
  }
  .responsive-br1{
    display: inline;
  }
  }