@charset "UTF-8";
/*-----------------------------------------------
	全体
---------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  background-image: url(../images/bg.webp);
  background-position: top center;
  background-repeat: repeat;/*繰り返さない場合は no-repeat*/
  background-attachment: fixed;/*背景を固定しない場合は消す*/
  background-size: auto;/*背景を画面いっぱいに広げる場合はcover*/

  font-size: 16px;
  font-family: 'Helvetica','Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

img {
  display: block;
  margin: 0 auto;
}

div {
  margin: 0 auto;
}

.container {
	max-width: 750px;/* コンテンツ幅 */
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  margin: 0 auto;
}

/*-----------------------------------------------
	ボタンとフォーム
---------------------------------------------- */
.cta {
  position: relative;
}

/* ボタン */
.btn1 {
	position: absolute;
  width: 90%;/* ボタンの大きさ */
  bottom: 15%;/* ボタンの位置 */
  left: 0;
  right: 0;
  animation-name: pulse;/* アニメーション名 */
  animation-duration: 1s;/* アニメーションの間隔(秒) */
  animation-iteration-count: infinite;
}
.btn2 {
	position: absolute;
  width: 90%;/* ボタンの大きさ */
  bottom: 30%;/* ボタンの位置 */
  left: 0;
  right: 0;
  animation-name: pulse;/* アニメーション名 */
  animation-duration: 1s;/* アニメーションの間隔(秒) */
  animation-iteration-count: infinite;
}
.btn3 {
	position: absolute;
  width: 90%;/* ボタンの大きさ */
  bottom: 25%;/* ボタンの位置 */
  left: 0;
  right: 0;
  animation-name: pulse;/* アニメーション名 */
  animation-duration: 1s;/* アニメーションの間隔(秒) */
  animation-iteration-count: infinite;
}
.btn4 {
	position: absolute;
  width: 90%;/* ボタンの大きさ */
  bottom: 10%;/* ボタンの位置 */
  left: 0;
  right: 0;
  animation-name: pulse;/* アニメーション名 */
  animation-duration: 1s;/* アニメーションの間隔(秒) */
  animation-iteration-count: infinite;
}
@media (hover:hover) {
  .btn:hover,
  .form_btn:hover {
    filter:brightness(1.2);/* マウスオンでボタンを明るくする */
  }
}

/* フォームタグ */
form {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: 10%;/* フォームの位置 */
  left: 0%;
  right: 0%;
}

/* フォーム入力欄 */
.mail {
  width: 90%;/* 入力欄の大きさ */
  aspect-ratio: 8 / 1;/* 縦横比 */
  font-size: 20px;
  border-radius: 6px;
  margin-bottom: 3%;/* ボタンまでの余白の大きさ */
  text-align: center;
  border: solid 3px #fcc786;
}
/* フォームボタン */
button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.form_btn {
  width:90%;/* ボタンの大きさ */
  animation-name: pulse;/* アニメーション名 */
  animation-duration: 1s;/* アニメーションの間隔(秒) */
  animation-iteration-count: infinite;  
}

/*-----------------------------------------------
	テキストコーディング用
---------------------------------------------- */

/* ------------ 文章・文字装飾 ------------ */
.text {
  padding: 0 3%;
  text-align: left;
}
p {
  padding-bottom: 1.6em;
}
p:last-of-type {
  padding-bottom: 1em;
}
.red {
  color: #E30003;
}
.marker {
  background: linear-gradient(transparent 55%, #fffc79 55%);
}

/* ------------ 枠 ------------ */
.box-top {
  background: url("") no-repeat center bottom / 100% 100%;
  aspect-ratio: 0 / 0; /* 画像の実寸比率（横/縦） */
}
.box-body {
  background: url("") repeat-y center top / contain; /* 背景画像を入れる */
}
.box-bottom {
  background: url("") no-repeat center top / 100% 100%;
  aspect-ratio: 0 / 0; /* 画像の実寸比率（横/縦） */
}
/*-----------------------------------------------
  よくある質問
---------------------------------------------- */

.faq {
  padding: 8% 5%;
  background-color: #fff;
}

.faq_title {
  margin-bottom: 5%;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
   color: #cc625a; /* ← よくある質問の文字色 */
}

.faq_item {
  margin-bottom: 3%;
}

/* デフォルトの三角を消す */
.faq_question {
  list-style: none;
}

.faq_question::-webkit-details-marker {
  display: none;
}


/*-----------------------------------------------
  Q部分
---------------------------------------------- */

.faq_question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 15px 55px 15px 15px;

  background-color: #fff;
  color: #333;

  font-size: 18px;
  font-weight: bold;
  text-align: left;

  cursor: pointer;
  transition: 0.3s;
}


/* Qを丸で囲む */
.faq_q {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;

  width: 42px;
  height: 42px;

  background-color: #cc625a;
  border-radius: 50%;

  color: #fff;
  font-size: 20px;
  font-weight: bold;
}


/* ＋ */
.faq_question::after {
  content: "＋";

  position: absolute;
  top: 50%;
  right: 20px;

  transform: translateY(-50%);

  color: #cc625a;
  font-size: 26px;
  font-weight: normal;
}


/*-----------------------------------------------
  開いたとき
---------------------------------------------- */

/* Qの行全体に色をつける */
.faq_item[open] .faq_question {
  background-color: #cc625a;
  color: #fff;
}


/* 開いたらQの丸を白枠に */
.faq_item[open] .faq_q {
  background-color: #fff;
  border: 2px solid #fff;
  color: #cc625a;
}


/* ＋ → − */
.faq_item[open] .faq_question::after {
  content: "−";
  color: #fff;
}


/*-----------------------------------------------
  A
---------------------------------------------- */

.faq_answer {
  display: flex;
  gap: 15px;

  padding: 20px 15px 25px;

  color: #333;
  font-size: 16px;
  text-align: left;
}

.faq_a {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: bold;
  color: #cc625a;
}
.faq_answer p {
  margin: 0;
  padding: 0;
}


/*-----------------------------------------------
  スマホ
---------------------------------------------- */

@media screen and (max-width: 750px) {

  .faq {
    padding: 10% 5%;
  }

  .faq_title {
    font-size: 26px;
  }

  .faq_question {
    gap: 12px;
    padding: 13px 50px 13px 13px;
    font-size: 16px;
  }

  .faq_q {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .faq_question::after {
    right: 15px;
    font-size: 23px;
  }

  .faq_answer {
    gap: 12px;
    padding: 16px 13px 22px;
    font-size: 15px;
  }
}
/*-----------------------------------------------
	フッター
---------------------------------------------- */
.footer {
  background-color: #cc625a;
  padding: 20px 10px;
	color: #fff;
	line-height: 2;
  font-size: 14px;
}
.footer a,
.copyright {
  color: #fff;
}
.footer a {
  display: inline-block;
  text-decoration: underline;
}
.footer p {
  padding: 0;
}
.copyright {
  text-align: center;
}


/*-----------------------------------------------
	スマホ
---------------------------------------------- */
@media screen and (min-width: 751px) {
	.sp_only {
    display: none;
  }
}

@media screen and (max-width: 750px) {
	.pc_only {
    display: none;
  }
  .space_sp {
    display: block;
    height: 1.6em;
  }
	
	/* フォーム入力欄 */
	.mail {
		font-size: 16px;
		border-radius: 2px;
		border-width: 2px;/* 枠線の太さ */
	}  
  
}
