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

/*初期設定*/

*,
*::before,
*::after
{
margin: 0;
padding: 0;
box-sizing: border-box;
}

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

body{
background-image:url("../images/logo/background.png");
min-width: 1280px;/*100px + 1080px + 100px*/
color: #333;
font-family: 'Noto Sans JP', '小塚ゴシック Pr6N', sans-serif;
}

body::before {
  content: "";
  position: fixed; /* ←ここがポイント！スクロールしても背景と一緒に動かない */
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6); /* 白の透過60% */
  z-index: -1;
  pointer-events: none; /* クリックなどの操作に影響しない */
}






/*フォーム内の指定*/
.faq h1{
font-family:serif;
font-size: 30px;
text-align: center;
padding:50px;
}

.faq {
  max-width: 600px; /* フォーム全体の幅（お好みで） */
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
form h2 {
font-family:serif;
font-size: 18px;
text-align: start;
padding:5px 20px;
}

form p {
font-family:serif;
font-size: 18px;
text-align: start;
padding:20px;
margin-bottom: 20px;  
}





/*サイト幅*/
.container{
width: 1080px;
margin: 0 auto;
}

/*レスポンシブ対応*/

/*ヘッダー部分*/
/* 背景を全幅にする部分 */
.header-innner{
display: flex;/*横並び*/
justify-content: space-between;/*ロゴは左、ナビは右*/
align-items: flex-end;/*ヘッダーの下部に揃える*/
height: 100px;/*設計図の指定*/
padding: 0 15px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #e84592;
  height: 100px;
}

body {
  padding-top: 100px;
}

h1 img {
display: block;
width: 100px;
height: auto;
padding: 0  0 0 15px;
}

/*ヘッダーこれから*/
/*グローバルナビゲーション*/
.global-nav ul{
list-style: none;
display: flex;
margin: 0;
padding: 0;
}

/* 画像に影をつける */
.global-nav li img {
width: auto;
padding-right: 10px;
vertical-align: middle;
filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.8)); /* ←画像用シャドウ */
}

/* 文字に影をつける */
.global-nav a {
color: #333;
text-decoration: none;
display: flex; /* 画像と文字を横並びにする */
align-items: center; /* 高さを揃える */
padding: 0 20px;
margin: 15px 0;
border-left: #333 solid 0.5px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* ←文字用シャドウ */
}

.global-nav a img {
width: 28px;/* アイコンの大きさを調整 */
height: auto;/* テキストとの間隔 */
display: inline-block;/* ベースライン制御のため */
box-shadow: #fff 50%;
}

.global-nav a:hover{
background-color: #8e295e;
}
/*ヘッダーここまで*/

/*ファーストビューこれから*/
.first-view{
width:100%;
height: 1200px;

	
	
/*背景画像*/

/* 背景の表示位置（上：中央、下：中央上） */
background-position: center center, 
center top;
}
/*ファーストビューここまで*/

.video-bg video {
  width: 100%;
  height: 100vh; /* 画面の高さいっぱい */
}


/*フッターここから*/
.footer-innner {
  display: flex; /* 中の要素を縦中央にしたい場合 */
  flex-direction: column; /* 縦並び */
  justify-content: center; /* 縦中央寄せ */
  align-items: center; /* 横中央寄せ */
}

footer{
background-color: #e84592;/*ヘッダー帯*/
}

footer p{
text-align: center;
padding-bottom: 20px;
}


.footer-innner small {
  color: #333;
  display: block;
  text-align: center;
}


/*グローバルナビゲーション*/

.footer-innner .global-nav2 ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px; /* 各リンクの間隔 */
}

.footer-innner .global-nav2 ul li a {
  text-decoration: none;
  color: #333;
}

.global-nav2 ul{
list-style: none;
display: flex;/*横並べ*/
justify-content: center;/*中央揃え*/
padding:20px;
}

.global-nav2 a{
color: #333;
text-decoration: none;
display: block;/*ボタン化*/
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* ←文字用シャドウ */
}

.global-nav2 img{
padding: 20px;
filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3)); /* ←画像用シャドウ */
}



.global-nav2 a:hover{
background-color:#8e295e;

}

.global-nav2 img:hover{
background-color:#D8D8D8;	
}
/*フッターここまで*/

