@charset "utf-8";
/* CSS Document */

@keyframes flowing {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

@font-face {
  font-family: "League Gothic Condensed";
  src: url("league-gothic.condensed-regular.ttf") format("truetype");
  font-display: swap;
}

@media screen and (min-width: 769px) {
	
	body {
font-family: "League Gothic Condensed", sans-serif !important;
   background-color: #ffffff;
	background-size:cover;
	background-image: url("PC用背景2.jpg");
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	  margin: 0 !important;
  }
	
header {
	position: fixed;
	width: 100%;
	margin: 0;
  display: flex;                /* 横並び */
  justify-content: space-between; /* ロゴ左・メニュー右に配置 */
  align-items: center;          /* 縦位置を揃える */
  padding: 15px 20px 15px 20px;           /* 余白 */
	height: 60px;
  background: #000000;          /* 背景色（赤） */
	z-index: 5000;
}

.logo img {
  height: 7vh;   /* ロゴの高さを調整（任意） */
}

nav ul {
position: fixed;
  list-style: none;
  display: flex;
  gap: 20px;      /* 項目の間隔 */
  margin: 0;
  padding: 10px;
}

nav a {
  text-decoration: none;
  color: #ffb300;
  font-family:"League Gothic Condensed", sans-serif !important;
  font-size: 3rem;
  transition: color 0.3s;
}

nav a:hover {
  color:#FFD800;
}

.logo {
	width: 15%;   /* 好きなサイズに調整 */
  height: auto;   /* 自動で高さを合わせる（縦横比維持） */
}

h1 {
	font-family: 'League Gothic Condensed';
	font-weight: lighter;
	color: whitesmoke;
	font-size: 12vw;
	letter-spacing: -0.3vw;
	line-height: 0.8;
	text-align: left;  /* 左寄せ */
	margin: 3% 0 0 3%; /* 上と左に余白をつける */

}

h2 {
	position: absolute;
	top: 30vh;
	font-family: "Tsunagi Gothic Black";
	color:whitesmoke;
	font-size: 15px;
	letter-spacing: 0.5vw;
  width: 47%;          /* 画面幅の左半分だけを使う */
  margin: 0 auto 0 0;  /* 左寄せ配置 */
  text-align: right;   /* 要素内のテキストを右端に寄せる */
}

a {text-decoration: none;
	color:whitesmoke;
}
	
	a:hover{color:#FFED00;}

.logo-img  {
	margin: 0 0 0 0%;
	width: 80%;   /* 好きなサイズに調整 */
  height: auto;   /* 自動で高さを合わせる（縦横比維持） */
}

.flow-wrapper { 
	position: relative;
	overflow: hidden;
	width: 100%;   /* 横幅いっぱい */
	height: 100vh;  /* 好きな高さに調整 */

}


.flow-text {
	margin: 30vh 0 0 0;
	font-family: "League Gothic Condensed";
  display: flex;
  white-space: nowrap;
  animation: flowing 20s linear infinite;
}

.flow-text span {
  font-size: 270px;
	color:#FFFFFF;
  font-weight: normal;
	letter-spacing: -10px;
	 z-index: 1; /* 背面に配置 */
	
}

.front-image {
	position: relative;
	bottom: 5vh;
  height: 18vh; /* 好きな大きさに */
  z-index: 2; /* 前面に */
}
	
footer {
	height: 100px;
	margin: 0;
  display: flex;                /* 横並び */
  justify-content: space-between; /* ロゴ左・メニュー右に配置 */
  align-items: center;          /* 縦位置を揃える */
  padding: 10px 20px 10px 20px;           /* 余白 */
  background: black;          /* 背景色（赤） */
}


.logo {
	width: 15%;   /* 好きなサイズに調整 */
  height: auto;   /* 自動で高さを合わせる（縦横比維持） */
}
	
	.gallery {
  width: 100%;
  margin: 0;          /* ヘッダーと揃えるならここを消す */
  padding: 0 0 0 0px;    /* headerと同じ左右余白を入れるとピッタリ感出る */
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  box-sizing: border-box;
}

.gallery img {
  width:19.6%;  
  height: auto;
  object-fit: cover;
	height:200;
}
	
.obi {
	position: fixed;
	bottom:0;
	background-color:#000000;
	height: 10vh;
	width:100vw;
	z-index: 1000; /* 前面に */
	 padding: 0px 30px 0px 30px;           /* 余白 */
	font-family: "Tsunagi Gothic Black";
	color: whitesmoke;
	 display: flex;                /* 横並び */
  align-items: center;          /* 縦位置を揃える */
  text-align: right;   /* 要素内のテキストを右端に寄せる */
}
	
}
.parent {
  display: flex;
  justify-content: flex-end;
}

.qabutton {
  position: relative;
  bottom: 10vh;
  height: 15vh;
}

h3 {
	font-family: "League Gothic Condensed";
	font-weight: lighter;
	text-align: center;
	color: white;
	margin:0 0 0 10px;
	font-size: 15vh;
	letter-spacing: -1px;
	height:90px;
}

	
.おしり{
	background-color: black;
	height:300px;
	margin-top:10px;
}

@media screen and (max-width: 769px) {
	
	body {
font-family: "League Gothic Condensed", sans-serif !important;
   background-color: #ffffff !important;
	background-size:cover !important;
	background-position: center !important;
	background-attachment: fixed !important;
	background-repeat: no-repeat !important; /* 繰り返さない */
	  margin: 0;
  }
	
header {
	position: fixed;
	margin: 0;
  display:block;                /* 横並び */
  justify-content: space-between; /* ロゴ左・メニュー右に配置 */
  align-items: center;          /* 縦位置を揃える */
  padding: 10px 10px 15px 10px;           /* 余白 */
	height: 60px;
	z-index: 5000;
}

.logo img {
  height: 7vh;   /* ロゴの高さを調整（任意） */
}

nav ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap:0px;      /* 項目の間隔 */
	margin-top: 8px;
	padding: 0px;
}

nav a {
  text-decoration: none;
  color: #ffb300;
  font-family:"League Gothic Condensed", sans-serif !important;
  font-size: 2rem;
  transition: color 0.3s;
}

nav a:hover {
  color:#FFD800;
}

.logo {
	width: 15%;   /* 好きなサイズに調整 */
  height: auto;   /* 自動で高さを合わせる（縦横比維持） */
}

h1 {
	font-family: 'League Gothic Condensed';
	font-weight: lighter;
	color: whitesmoke;
	font-size: 12vw;
	letter-spacing: -0.3vw;
	line-height: 0.8;
	text-align: left;  /* 左寄せ */
	margin: 3% 0 0 3%; /* 上と左に余白をつける */

}

h2 {
	position: absolute;
	top: 56vh;
	font-family: "Tsunagi Gothic Black";
	color:whitesmoke;
	font-size: 8px;
	letter-spacing: 0.5vw;
  margin: 0 0 0 10px;  /* 左寄せ配置 */
	z-index: 3;
}

a {text-decoration: none;
	color:whitesmoke;
}
	
	a:hover{color:#FFED00;}

.btn-img {
	position: absolute;  /* ← これ！ */
  top: 80%;             /* 上からの距離 */
  right: 1%;           /* 右からの距離 */
  width: 10%;
  height: auto;
}


.logo-img  {
	margin: 0 0 0 0%;
	width: 80%;   /* 好きなサイズに調整 */
  height: auto;   /* 自動で高さを合わせる（縦横比維持） */
}

.flow-wrapper { 
	position: relative;
	overflow: hidden;
	width: 100%;   /* 横幅いっぱい */
	height: 100vh;  /* 好きな高さに調整 */
	z-index: 1
}


.flow-text {
	margin: 33vh 0 0 0;
	font-family: "League Gothic Condensed";
  display: flex;
  white-space: nowrap;
  animation: flowing 20s linear infinite;
}

.flow-text span {
  font-size: 140px;
	color:#FFFFFF;
  font-weight: normal;
	letter-spacing: -5px;
	 z-index: 1; /* 背面に配置 */
	
}

.front-image {
 position:relative;
 margin-top: 100px;
  height: 18vh; /*	 好きな大きさに */
  z-index: 2; /* 前面に */
}

.qabutton {
 position:relative;
	bottom: -15px;
  height: 12vh; /* 好きな大きさに */
  z-index: 2; /* 前面に */
}
	
footer {
	height: 100px;
	margin: 0;
  display: flex;                /* 横並び */
  justify-content: space-between; /* ロゴ左・メニュー右に配置 */
  align-items: center;          /* 縦位置を揃える */
  padding: 10px 20px 10px 20px;           /* 余白 */
  background: black;          /* 背景色（赤） */
}


.logo {
	width: 15%;   /* 好きなサイズに調整 */
  height: auto;   /* 自動で高さを合わせる（縦横比維持） */
}
	
.gallery {
	background-color:;
  width: 100%;
  margin: 0;          /* ヘッダーと揃えるならここを消す */
  padding: 2px 0 0 5px;    /* headerと同じ左右余白を入れるとピッタリ感出る */
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  box-sizing: border-box;
}

.gallery img {
  width:99%;  
  height: auto;
  object-fit: cover;
	height:150px;
}
	
.obi {
	position:fixed;
	bottom:0;
	background-color:#000000;
	height: 10vh;
	width:100vw;
	z-index: 1000; /* 前面に */
	 padding: 0px 10px 0px 10px;           /* 余白 */
	font-family: "Tsunagi Gothic Black";
	color: whitesmoke;
	 display: flex;                /* 横並び */
  align-items: center;          /* 縦位置を揃える */
  text-align: right;   /* 要素内のテキストを右端に寄せる */
	font-size:10px;
}
	
}
	
.おしり{
	background-color: black;
	height:300px;
	margin-top:10px;
}

.parent {
  display: flex;
  justify-content: flex-end;
}

h3 {
	font-family: "League Gothic Condensed";
	font-weight: lighter;
	color: white;
	margin:0 0 0 10px;
	font-size: 10vh;
	letter-spacing: -1px;
	height:10vh;
}


.background-image {
	position:fixed;
	height:100vh;
	margin: 0 auto;
	z-index: 1;
}