@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; /* クリックなどの操作に影響しない */
}


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

form {
  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;  
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
/* ===== 各入力欄の共通デザイン ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
  width: 100%;               /* 横幅いっぱい（formの幅に合わせる） */
  padding: 10px 12px;        /* 内側の余白 */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;    /* paddingを含めてwidthを計算 */
  margin-top: 5px;
  margin-bottom: 15px;
}

/* ===== フォーカス時（クリック時） ===== */
input:focus,
textarea:focus,
select:focus {
  border-color: #e84592;     /* ピンクのアクセント */
  box-shadow: 0 0 5px rgba(232, 69, 146, 0.4);
  outline: none;
}

/* ===== テキストエリア専用 ===== */
textarea {
  height: 160px;             /* ボックスの高さ */
  resize: vertical;          /* 縦方向だけサイズ変更OK */
}

/*ボタン関係のホバー*/

aaa{
height: 300px;
}

.icon{
display: auto;
margin: auto;
top:-40px;
width:50%;
position: absolute;
transform: translate(-50%,-30%);
}
.bottan{
display: auto;
margin: auto;
top:-30px;
width:60%;
position: relative;
}
.aaa {
  margin: 150px 0 120px;      /* 上下の余白を設定。必要に応じて値を調整してください */
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center;     /* 垂直方向の中央揃え（高さがある場合） */
}

/* ===== 共通設定 ===== */
.bottan a {
  display: block;
  padding: 20px;
  transition: all 0.3s ease;
}

/* ===== 常時ぼんやり光る ===== */
.bottan a img {
  transform: scale(1.05);
  animation: glow 1.8s ease-in-out infinite alternate;
  transition: transform 0.6s ease-in-out;
}

/* ===== チカチカ光るアニメーション ===== */
@keyframes glow {
  0% {
    filter: brightness(1) drop-shadow(0 0 0px rgba(255, 180, 0, 0));
  }
  50% {
    filter: brightness(1.25) drop-shadow(0 0 10px rgba(255, 180, 0, 0.6));
  }
  100% {
    filter: brightness(1) drop-shadow(0 0 0px rgba(255, 180, 0, 0));
  }
}

/*サンプル請求*/
/* ===== ホバー時：さらに強く光る（任意） ===== */
.bottan a:hover img{
  transform: scale(1.1);
  filter: brightness(1.4) drop-shadow(0 0 15px rgba(255, 180, 0, 0.8));
}


/*サイト幅*/
.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;	
}
/*フッターここまで*/

