*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  background: linear-gradient(to bottom,#ffffff, #C5C56A);
  font-family:Georgia, 'Times New Roman', Times, serif;
  width: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  width: 10px; /* スクロールバーの幅 */
  border-radius: 5px; /* スクロールバーの角の丸み */
}
::-webkit-scrollbar-thumb {
  background-color: #ccc; /* スクロールバーの色 */
  border-radius: 5px; /* スクロールバーの角の丸み */
}
::-webkit-scrollbar-thumb:hover {
  background-color: #aaa; /* ホバー時のスクロールバーの色 */
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:rgba(255,255,255,0.5);
  height: 100px;
  z-index: 2;
  transition: transform 0.3s ease-in-out; /* トランジション効果を追加 */
}
.hidden {
  transform: translateY(-100%); /* ヘッダーを上に隠す */
}
header h1 {
  position: relative;
  z-index: 2;
}
header h2 {
  position: relative;
   z-index: 1;
}
header h2 {
  text-align: center;  
  margin: -59px 0px 0px 0;  
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}
  
.logo {
  height: 80px;
  width: auto;
  margin: 1% 0 0 3%;
  transition: opacity 0.3s ease, transform 0.3s ease
}
.to-home:hover .logo {
  opacity: 0.3;
}

/* スクロールバーの非表示 */
body.menu-open {
  overflow: hidden;
}

/* ハンバーガーメニューのスタイル */
.menu {
  display: none;
  /* その他のスタイル設定 */
}

/* メニューボタンの中央の線を非表示に */
.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

/* チェックボックスがONの時のスタイル */
.menu-btn:checked ~ .menu {
  display: flex;
}

.gMenu {
  position: fixed;
  right: 0;
  top: 0vh;
  width: 100%;
  z-index: 99;
}
/* メニューアイコンを画面右上に固定しています */
.gMenu .menu-icon {
  cursor: pointer;
  position: fixed;
  right: 3vw;
  top: 44px;
  padding-top: 5px;
  height: 12px;
  z-index: 100;
}
/* メニューアイコン（三本線）の真ん中の線です */
.gMenu .menu-icon .navicon {
  background: #ffc107; /* 色は自由に変更可能です */
  display: block;
  height: 5px; /* 太さ */
  width: 50px; /* 長さ */
  position: relative;
  transition: background .3s ease-out; /* 形が変わる時のアニメーション */
}
/* メニューアイコン（三本線）の上と下の線を疑似要素で追加 */
.gMenu .menu-icon .navicon::before,
.gMenu .menu-icon .navicon::after {
  background: #ffc107; /* 色は自由に変更可能です */
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .4s ease-out; /* 形が変わる時のアニメーション */
  width: 100%;
}
.gMenu .menu-icon .navicon::before {top: 10px;} /* 位置を上にずらしています */
.gMenu .menu-icon .navicon::after {top: -10px;} /* 位置を下にずらしています */
/* 表示されるメニューです */
.gMenu .menu {
  background:linear-gradient(to bottom, rgba(0, 255, 255, 0.9), rgba(0, 255, 0, 0.9), rgba(255, 255, 0, 0.9));
  overflow: hidden;
  max-height: 0; /* ★最初は高さを0にして非表示状態に */
  transition: max-height .5s; /* 表示されるときのアニメーション */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Yu Gothic', sans-serif;
  font-size: 1.5em;
  color: #FFF;
  font-weight: bolder;
  text-shadow: 1px 1px 1px #333;
  height: 100vh; /* 画面の縦幅に合わせる */
  list-style: none; /* リストのマーカーを非表示にする */
}
.gMenu .menu .nav-list {
  margin: 2.5vh 0; /* 上下に2vhずつ感覚を空ける */
  width: 20%;
  text-align: center;
}
.snsbtniti {
  display: flex;
  justify-content: center;
  gap: 20%;
  margin-bottom: 2.5vh;
}
.gMenu .nav-list a {
  display: block;
  margin-bottom: 0%;
  text-decoration: none;
  transition: background 0.2s ease;
}
.gMenu .menu li a:hover {
  /* color: rgba(255, 255, 255, 0); */
  background: rgba(255, 255, 255, 0.3);
}


/* SNSを全表示できたらこっち */
/* .snsbtniti {
  display: flex;
  position: absolute;
  flex-direction: column;
  top: 35%;
  left: 3%;
}
.snsbtniti > * {
  margin-bottom: 80%;
}
.all_nav-list {
  margin-top: 12%;
} */

/* チェックボックスは常に非表示です */
.gMenu .menu-btn {
  display: none;
}
/* ▼▼▼以下はチェックボックスがONの時の状態です▼▼▼ */
.gMenu .menu-btn:checked ~ .menu {
  max-height: 100vh; /* ★チェックボックスがオンの時高さを338pxにして表示させます */
  transition: max-height 0.5s;
}
/* メニューボタンの中央の線を非表示に */
.gMenu .menu-btn:checked ~ .menu-icon .navicon {background: transparent;}
/* メニューボタンの上下の線を45度傾けて✕印を作ります */
.gMenu .menu-btn:checked ~ .menu-icon .navicon::before {transform: rotate(-45deg);top: 0;}
.gMenu .menu-btn:checked ~ .menu-icon .navicon::after {transform: rotate(45deg);top: 0;}
/* サイトに合わせてオリジナルカスタマイズ */
.gMenu .menu-icon .navicon,
.gMenu .menu-icon .navicon::before,
.gMenu .menu-icon .navicon::after {
  background: #777;
}

@keyframes fadeAnimation {
  from { opacity: 0; } /* 初期状態（透明度0） */
  to { opacity: 1; } /* 最終状態（透明度1） */
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-input {
  color: #333;
  height: 100%;
  width: 95%;
  padding-top: 115px;
  font-size: 1.43rem;
  margin: 0 auto;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}
.section-input ::placeholder {
  color: #ccc;
}
form {
  width: 600px;
  margin: 0 auto;
}
.section-input input[type="text"],
.section-input input[type="email"],
.section-input input[type="tel"],
.section-input textarea {
  border: 1px solid #cccccc;
  background: #ffffff;
  width: 100%;
  margin: 1% 0 4%;
  padding: 4px 8px;
}
.section-input input[type="text"]:focus,
.section-input input[type="email"]:focus,
.section-input input[type="tel"]:focus,
.section-input textarea:focus {
  border-color: #4CAF50;
  border-width: 2px;
  outline: none; /* デフォルトのフォーカス時のハイライトを削除 */
}
.submit-btn { 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}
input[type="submit"] { 
  letter-spacing: 6px;
  background: #4CAF50;
  color: #ffffff;
  padding: 18px 80px;
  margin-bottom: 5vh;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition:  transform 0.3s ease;
}
input[type="submit"]:hover {
  background-color: rgba(122, 241, 106, 0.5);
  transform: scale(1.1);
  animation: pulseAnimation 1s infinite; /* ホバー時にアニメーションを実行 */
}
h3 {
text-align: center;
font-size: 2em;
padding-top: 2%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.section-confirm {
  color: #333;
  height: 100vh;
  width: 95%;
  padding-top: 5%;
  font-size: 1.5em;
  margin: 0 auto;
}
.confirm_item {
  margin-bottom: 0.5em;
}
.section-confirm input[type="submit"] { 
  letter-spacing: 1px;
  background: #4CAF50;
  color: #ffffff;
  font-size: 0.8em; /* ボタンのフォントサイズを小さく調整 */
  padding: 0.5em 2em; /* ボタンの上下のパディングを0.5em、左右のパディングを1emに設定 */
  margin: 2.5em; /* ボタン同士の間隔を0.5emに設定 */  border-radius: 4px;
  transition:  transform 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.submit-buttons {
text-align: center;
margin: 0em 1em 0.7em;
}

.section-complete {
  height: 100vh;
  width:95%;
  margin: 0 auto;
  font-size: 1.5em;
  line-height: 1.8;
  display: flex;
  flex-direction: column; /* コンテンツを縦方向に配置 */
  justify-content: center; /* 縦方向に中央に配置 */
      align-items: center; /* 横方向に中央に配置 */
}
.section-complete p {
  margin-left: 2em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.6em;
  font-weight: bolder;
  color: #444;
}
.hover-container {
  margin-top: 1em;
  line-height: 0.7em;
}
.hover-container .logo {
  display: flex;
  margin: 0 auto;
}

.sp-br{
  display: none;
}

footer {
  font-family: 'Yu Gothic', sans-serif;
  background-color:#C5C56A;
  border-top: 2px solid #ffe;
  height: 138px;
  width: 100%;
  display: block;
  position: relative;
}
.address {
  color : #ffe;
  font-size: 1.6rem;
  position: absolute;
  left: 8%;
  top: 10%;
}
#company-name {
  color: #ffe;
  font-size: 4rem;
  position:absolute;
  right: 5%;
  bottom: 25%;
  letter-spacing: -0.1rem;
}
#company-name small {
  font-size: 65%;
}
.instagram-icon {
  position: absolute;
  left: 15%;
  bottom: 15%;
}
.twitter-icon {
  position: absolute;
  left: 20%;
  bottom: 16%;
}
.pinterest-icon {
  position: absolute;
  left: 25%;
  bottom: 14%;
}
.base-icon {
  position: absolute;
  left: 30%;
  bottom: 9%;
}
.copyrights {  
  font-size: 0.8rem;
  background-color: #555;
  color:#fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.1% 0;
}
.copyrights p {
  text-align: center;
}
.copyrights .pp {
  position: absolute;
  right: 2%;
  bottom: 7%;
}

.arrow-wrapper {
  display: none;
  position: fixed;
  bottom: 145px;
  right: 1%;
}
.arrow-circle {
  font-size: x-large;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:rgba(51, 51, 51, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.arrow-circle:hover {
   background-color: #555;
  transform: scale(1.05);
}