@charset "UTF-8";

/* 基本リセット */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ヘッダー */
header {
  background-color: #000000;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header h1 {
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 1rem;
}

.header a {
  text-decoration: none;
  color: #fff;
}

.header img {
  max-height: 60px;
}

/* ナビゲーション */
nav {
   /* display: none; */
  height: 100vh;
  width: 300px;
  position: absolute;
  top: 0;
  right: -300px;
  z-index: 50;
  background-color: rgba(0, 0, 0, .5);
  transition: transform .5s;
}

nav ul {
  padding-bottom: 1rem;
  text-align: center;
}

nav ul li {
  /* display: inline-block; */
  margin: 0 10px;
  padding: 10px 0;
}

nav ul li a {
  font-weight: bold;
  color: rgb(255, 255, 255);
}

/* ハンバーガーメニュー */
#navBtn {
  display: none;
}

.open {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  z-index: 100;
  width: 40px;
  height: 40px;
  border: 1px solid #CCC;
  border-radius: 2px;
}

.open::before,
.open::after {
  content: "";
}

.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 30%;
  width: 40%;
  border-bottom: 2px solid #333;
  transition: all 0.3s ease-in-out;
}

.open::before {
  transform: translateY(-8px);
}

.open::after {
  transform: translateY(8px);
}

#navBtn:checked + .open {
  background: #4f4f4f;
}

#navBtn:checked + .open span {
  transform: scaleX(0);
}

#navBtn:checked + .open::before {
  transform: rotate(45deg);
}

#navBtn:checked + .open::after {
  transform: rotate(-45deg);
}

#navBtn:checked ~ nav {
  display: block;
  transform: translateX(-300px);
}

/* ロゴ位置調整 */
.logo-center {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.logo-center img {
  max-width: 200px;
  height: auto;
}

/* メインビジュアル */
.visual-wrapper {
  position: relative;
  text-align: center;
   width: 100%;
  display: block;
}

.main-visual img {
  width: 100%;
  display: block;
}


/* メイン */
body {
  height: 100%;
  background-color: rgb(244, 241, 238);
}

#wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.cover-section h1 {
  text-align: center;
  font-size: 3rem;  /* お好みで調整 */
  font-weight: bold;
  color: #333;
}

main {
  padding: 1rem;
  margin: 0 auto;
  max-width: 1200px;
  flex-grow: 1;
  /* display: grid; 削除 */
}

.video-title {
  text-align: center;
  font-size: 2em;
  margin: 40px 0 20px;
  font-weight: bold;
  width: 100%;
  clear: both;
}

/* 
.column-img {
  flex: 1;
}

.column-text {
  flex: 2;
}
 */
/* フッター */
footer {
  background: #333;
  color: #FFF;
  text-align: center;
  padding: 1rem;
  width: 100%;
}
.profile-section {
  max-width: 800px;       /* 横幅の最大値を制限 */
  margin: 0 auto;         /* 中央寄せ（左右） */
  text-align: center;     /* 中央揃え（h1やpなど） */
  padding: 2rem 1rem;     /* 余白（任意） */
}

.profile-img {
  max-width: 400px;       /* 画像のサイズ制限 */
  width: 100%;
  height: auto;
  margin: 0 auto;         /* 中央寄せ */
  display: block;
}

.setumei {
  max-width: 600px;       /* 幅を固定して中央に */
  margin: 0 auto;         /* 中央寄せ */
  text-align: center;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 1rem;
}
.setumei2 {
  
  max-width: 450px;       /* 幅を固定して中央に */
  margin: -50px auto;         /* 中央寄せ */
  text-align: left;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 5rem;
 
}


.setumei3 {
  
  max-width: 600px;       /* 幅を固定して中央に */
  margin: -100px auto;         /* 中央寄せ */
  text-align: left;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 5rem;
  position: relative;
    top: -205px; /* 上に10pxずらす */
}

.setumei4 {
  
  max-width: 600px;       /* 幅を固定して中央に */
  margin: -50px auto;         /* 中央寄せ */
  text-align: right;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 3rem;
  position: relative;
    top: -205px; /* 上に10pxずらす */
  }




hr {
  border: none;
  border-top: 2px solid #4d3e89;
  margin: 2rem auto;
  width: 80%;  /* 幅を画面の80%にする */
}

.profile-link {
  text-align: center;
  margin: 40px 0;
}

.profile-link2 {
  margin: 0 auto;
  text-align: center;
  max-width: 500px;
   position: relative;
    top: -170px; /* 上に10pxずらす */
}

.profile-banner {
  max-width: 1200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.profile-banner:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* フォーム全体の見た目 */
main form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ラベルのスタイル */
main form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}

/* 入力フィールドとテキストエリア */
main form input[type="text"],
main form input[type="email"],
main form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* フォーカス時の強調 */
main form input[type="text"]:focus,
main form input[type="email"]:focus,
main form textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
}

/* 送信ボタン */
main form button[type="submit"] {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* ホバー時 */
main form button[type="submit"]:hover {
  background-color: #0056b3;
}

/* 下部注意書きの中央寄せ */
main p {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
}

.formtext {
  
  max-width: 600px;       /* 幅を固定して中央に */
  margin: -50px auto;         /* 中央寄せ */
  text-align: center;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 3rem;
  position: relative;
    top: 100px; /* 上に10pxずらす */
  }

/* 基本リセット */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ヘッダー */
header {
  background-color: #000000;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header h1 {
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 1rem;
}

.header a {
  text-decoration: none;
  color: #fff;
}

.header img {
  max-height: 60px;
}

/* ナビゲーション */
nav {
   /* display: none; */
  height: 100vh;
  width: 300px;
  position: absolute;
  top: 0;
  right: -300px;
  z-index: 50;
  background-color: rgba(0, 0, 0, .5);
  transition: transform .5s;
}

nav ul {
  padding-bottom: 1rem;
  text-align: center;
}

nav ul li {
  /* display: inline-block; */
  margin: 0 10px;
  padding: 10px 0;
}

nav ul li a {
  font-weight: bold;
  color: rgb(255, 255, 255);
}

/* ハンバーガーメニュー */
#navBtn {
  display: none;
}

.open {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  z-index: 100;
  width: 40px;
  height: 40px;
  border: 1px solid #CCC;
  border-radius: 2px;
}

.open::before,
.open::after {
  content: "";
}

.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 30%;
  width: 40%;
  border-bottom: 2px solid #333;
  transition: all 0.3s ease-in-out;
}

.open::before {
  transform: translateY(-8px);
}

.open::after {
  transform: translateY(8px);
}

#navBtn:checked + .open {
  background: #4f4f4f;
}

#navBtn:checked + .open span {
  transform: scaleX(0);
}

#navBtn:checked + .open::before {
  transform: rotate(45deg);
}

#navBtn:checked + .open::after {
  transform: rotate(-45deg);
}

#navBtn:checked ~ nav {
  display: block;
  transform: translateX(-300px);
}

/* ロゴ位置調整 */
.logo-center {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.logo-center img {
  max-width: 200px;
  height: auto;
}

/* メインビジュアル */
.visual-wrapper {
  position: relative;
  text-align: center;
}

.main-visual img {
  width: 100%;
  display: block;
}


/* メイン */
body {
  height: 100%;
  background-color: rgb(244, 241, 238);
}

#wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.cover-section h1 {
  text-align: center;
  font-size: 3rem;  /* お好みで調整 */
  font-weight: bold;
  color: #333;
}

main {
  padding: 1rem;
  margin: 0 auto;
  max-width: 1200px;
  flex-grow: 1;
  /* display: grid; 削除 */
}



.video-title {
  text-align: center;
  font-size: 2em;
  margin:auto;
  font-weight: bold;
  width: 100%;
  clear: both;
}


.container{
  /* display: flex; */
  
  transform: scale(0.8); /* 80%サイズに縮小 */

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.container2{
  /* display: flex; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;

}

.container3{
  /* display: flex; */
  display: grid;
  grid-template-columns: 1fr 1fr ;
  gap: 10px;

}

.modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
    }

    /* モーダル内の画像 */
.modal img {
  max-width: 85%;
  max-height: 85%;
  height: auto;
  width: auto;
  object-fit: contain; /* 念のため比率保持 */
  box-shadow: 0 0 20px #fff;
}
/* 
.column-img {
  flex: 1;
}

.column-text {
  flex: 2;
}
 */

/* 
.column-img {
  flex: 1;
}

.column-text {
  flex: 2;
}
 */
/* フッター */
footer {
  background: #333;
  color: #FFF;
  text-align: center;
  padding: 1rem;
  width: 100%;
}
.profile-section {
  max-width: 800px;       /* 横幅の最大値を制限 */
  margin: 0 auto;         /* 中央寄せ（左右） */
  text-align: center;     /* 中央揃え（h1やpなど） */
  padding: 2rem 1rem;     /* 余白（任意） */
}

.profile-img {
  max-width: 400px;       /* 画像のサイズ制限 */
  width: 100%;
  height: auto;
  margin: 0 auto;         /* 中央寄せ */
  display: block;
}

.setumei {
  max-width: 600px;       /* 幅を固定して中央に */
  margin: 0 auto;         /* 中央寄せ */
  text-align: center;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 1rem;
}
.setumei2 {
  
  max-width: 450px;       /* 幅を固定して中央に */
  margin: -50px auto;         /* 中央寄せ */
  text-align: left;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 5rem;
 
}


.setumei3 {
  
  max-width: 600px;       /* 幅を固定して中央に */
  margin: -100px auto;         /* 中央寄せ */
  text-align: left;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 5rem;
  position: relative;
    top: -205px; /* 上に10pxずらす */
}

.setumei4 {
  
  max-width: 600px;       /* 幅を固定して中央に */
  margin: -50px auto;         /* 中央寄せ */
  text-align: right;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 3rem;
  position: relative;
    top: -205px; /* 上に10pxずらす */
  }

.setumei5 {
  
  max-width: 800px;       /* 幅を固定して中央に */
  margin: -100px auto;         /* 中央寄せ */
  text-align: left;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 5rem;
  position: relative;
   
}


hr {
  border: none;
  border-top: 2px solid #4d3e89;
  margin: 2rem auto;
  width: 80%;  /* 幅を画面の80%にする */
}

.profile-link {
  text-align: center;
  margin: 40px 0;
}

.profile-link2 {
  margin: 0 auto;
  text-align: center;
  max-width: 500px;
   position: relative;
    top: -170px; /* 上に10pxずらす */
}

.profile-banner {
  max-width: 1200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.profile-banner2{
  height: auto;
  border-radius: 8px;
  margin: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  transform: scale(0.8); /* 80%サイズに縮小 */
  top: -200px;
}

.download-icon {
  display: auto;
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.sec03 {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
  
}

.sec05 {
  grid-row-start: 3;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 3;
  
}

.sec04 {
  grid-row-start: 4;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 4;
  
}

.sound-button {
  transform: scale(0.6); /* 80%サイズに縮小 */
  cursor: pointer;
  transition: transform 0.3s ease;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotating {
  animation: spin 4s linear infinite;
}

.profile-banner:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.profile-banner2:hover {
  transform: scale(0.85);
  opacity: 0.9;
}
/* フォーム全体のレイアウト */
form {
  width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

/* ラベル */
form label {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  display: block;
}

/* 入力フィールドとテキストエリア */
form input,
form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.2);
  outline: none;
}

/* テキストエリアの高さ調整 */
form textarea {
  min-height: 140px;
  resize: vertical;
}

/* 送信ボタン */
form button[type="submit"] {
  background-color: #0078d7;
  color: #fff;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button[type="submit"]:hover {
  background-color: #005fa3;
}

/* スマホ対応（任意） */
@media (max-width: 480px) {
  form {
    gap: 1rem;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }

  form button[type="submit"] {
    font-size: 1rem;
  }
}


.formtext {
  
  max-width: 600px;       /* 幅を固定して中央に */
  margin: -50px auto;         /* 中央寄せ */
  text-align: center;       /* テキストは左揃え */
  line-height: 1.6;
  padding: 3rem;
  
  }

 html, body {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: url("images/patern.PNG"); /* 画像パスを正確に！ */
  background-repeat: repeat;
  background-size: 80px 80px;
  opacity: 0.05;
  z-index: -1;
  animation: scroll-bg 60s linear infinite;
  pointer-events: none;
}


/* 縦スクロールアニメーション */
@keyframes scroll-bg {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-800px, -800px);
  }
}



/* メディアクエリ */
@media all and (min-width: 1025px) {
  nav {
    display: block;
    height: auto;
    width: 100%;
    position: static;
    background-color: transparent;
  }

  nav ul li {
    display: inline-block;
  }
  #navBtn,
  .open {
    display: none;
  }
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 2rem 0;
}

.social-icons a img {
  width: 40px;  /* アイコンサイズ */
  height: auto;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);  /* ホバーで拡大 */
}

.setumei{
  text-align: center;
}


@media all and (min-width: 600px) {
  .container {
    margin: auto;
    grid-template-columns: 1fr;
  }
}

/* mainをgridに */
main {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1200px;
  flex-grow: 1;
}

@media all and (min-width: 1025px) {
  main {
    grid-template-columns: 1fr 1fr;
  }
  .container2{
  /* display: flex; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;

}

}
@media screen and (min-width: 600px) {
  .setumei2 {
    padding-left: 2rem;
  }
  .visual-wrapper{
    max-width: 550px;
    margin: auto;
  }
}

/* PCサイズ以上（画面幅 1024px～） */
@media screen and (min-width: 1024px) {
  .setumei2 {
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .profile-link2 {
    max-width: 800px;
    margin: 0 auto;
  }
}


/* メディアクエリ */
@media all and (min-width: 1025px) {
  nav {
    display: block;
    height: auto;
    width: 100%;
    position: static;
    background-color: transparent;
  }

  nav ul li {
    display: inline-block;
  }
  #navBtn,
  .open {
    display: none;
  }
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 2rem 0;
}

.social-icons a img {
  width: 40px;  /* アイコンサイズ */
  height: auto;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);  /* ホバーで拡大 */
}
.video-title {
  text-align: center;
  font-size: 2em;
  margin: 40px 0 20px;
  font-weight: bold;
  clear: both;
  width: 100%;
}
.video-title2 {
  text-align: center;
  
}
.setumei{
  text-align: center;
}
 /* containerのgrid設定はメディアクエリ内にまとめる */
.container {
  display: grid;
  grid-template-columns: 1fr;
  margin: auto;
  gap: 10px;
}


@media all and (min-width: 600px) {
  .container {
    grid-template-columns: 1fr 1fr;
    margin: auto;
  }
}

/* mainをgridに */
main {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1200px;
  flex-grow: 1;
}

@media all and (min-width: 1025px) {
  main {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 600px) {
  .setumei2 {
    padding-left: 2rem;
  }
  .visual-wrapper{
    max-width: 550px;
  }
}

/* PCサイズ以上（画面幅 1024px～） */
@media screen and (min-width: 1024px) {
  .setumei2 {
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .profile-link2 {
    max-width: 800px;
    margin: 0 auto;
  }
}

