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

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

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

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

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

.qa-op_br {
  display: none;
}
html {
  font-size: 16px;
}
/* 黄丹 */
body {
  background: linear-gradient(to bottom,#ffffff, #f8af8e);
  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: #333336;
  }
  
.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;
}

.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 fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.question main{
  height: 100%;
  width: 100%;
  padding-top: 100px;
  font-size: 1.43rem;
}
.wrapper {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}
.wrapper{
  width: 95%;
  margin: 0 auto 3%;
}
.wrapper h3 {
  font-family: 'Yu Gothic', sans-serif;
  font-weight: bold;
  color: #333;
  padding: 0.5em 0 0.5em 0.5em;
  cursor: pointer;
  transition: 0.1s;
  text-indent: -1.35em; /*段落が変わっても行を合わせる*/
  padding-left: 1.8em; /*始まりの位置を合わせる*/
}
.wrapper section {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 10px;
}
h3:hover{
  color: #bbb;
}
.answer {
  font-family: 'Yu Gothic', sans-serif;
  font-weight: bold;
}
.wrapper section p {
  padding: 0.5em 1em 0.5em 0.5em;
  display: none;
  font-weight: bold;
  line-height: 1.8;
  border-top: 1px dotted #333;
  color: #333;
  text-indent: -1.2em; /*段落が変わっても行を合わせる*/
  padding-left: 1.7em; /*始まりの位置を合わせる*/
}
.wrapper .section_03 div {
  padding: 0.5em 1em 0.5em 0.5em;
  display: none;
  font-weight: bold;
  line-height: 1.6;
  border-top: 1px dotted #333;
  color: #333;
  text-indent: -1.2em; /*段落が変わっても行を合わせる*/
  padding-left: 1.7em; /*始まりの位置を合わせる*/

}
.wrapper .section_03 div ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-top:0.5em;
}
.wrapper .section_03 div ul li {
  padding: 0 0 0.5em 0.5em;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #ff7f50;
  text-indent: -1.33em; /*段落が変わっても行を合わせる*/
}

.img_bg_01{
  animation: fadeIn 1s ease forwards;
  opacity: 0;
  padding-top: 0.5em;
  display: flex;
  height: auto;
  width: 95%;
  margin: 0 auto;
  border-radius: 5px;
  filter: saturate(170%) brightness(100%) contrast(190%) hue-rotate(0deg);
}
.img_bg_02{
  animation: fadeIn 1s ease forwards;
  opacity: 0;
  padding-top: 0.5em;
  display: flex;
  height: auto;
  width: 95%;
  margin: 0 auto;
  border-radius: 5px;
  filter: saturate(170%) brightness(100%) contrast(190%) hue-rotate(100deg);
}
.img_bg_03{
  animation: fadeIn 1s ease forwards;
  opacity: 0;
  display: flex;
  height: auto;
  width: 95%;
  margin: 0 auto;
  border-radius: 5px;
  filter: saturate(170%) brightness(100%) contrast(190%) hue-rotate(0deg);
}

.op-br {
  display: none;
}
.other-pages {
  height: 100%;
  color: #333;
  /* background-color:#fff; */
  border-radius:10px;
  margin: 3% 0 3%;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}
.other-pages ul {
  display: flex;
  margin-top: 1%;
  justify-content: space-evenly;
}
.other-pages p {
  width: 96vw;
  text-decoration: underline 1px;
  text-align: center;
  font-size: 1.55rem;
  font-weight: bold;
}
.other-pages li {
  font-family: 'Yu Gothic', sans-serif;
  margin-top: 2%; 
  font-weight: bold;
}
.button {
  background-color: #285D2A;
  color: #FFFFFF;
  padding: 2.18vh 2vw;
  border: none;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  font-size: 2.4rem;
}
.button:hover {
  transform: scale(1.2);
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease-in-out;
}
.button:hover::before {
  width: 200%;
}

.sp-br {
  display: none;
}
footer {
  font-family: 'Yu Gothic', sans-serif;
  background-color: #f8af8e;
  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);
}