@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;
  width: 100%;
  height: auto; 
  max-width: none;
}

/*-----------------------------------------------
	ボタンとフォーム
---------------------------------------------- */
.cta_01 {
  position: relative;
  margin: 0 auto;
}
.cta_02 {
  position: relative;
  margin: 0 auto;
}
/* ボタン */
.btn {
	position: absolute;
  width: 36%;/* PC版のボタンの大きさ */
  bottom: 13%;/* ボタンの位置 */
  left: 0%;
  right: 0%;
  margin: 0 auto;
  animation-name: pulse;/* アニメーション名 */
  animation-duration: 1s;/* アニメーションの間隔(秒) */
  animation-iteration-count: infinite;
}

.btn2 {
	position: absolute;
  width: 36%;/* PC版のボタンの大きさ */
  bottom: 0%;/* ボタンの位置 */
  left: 0%;
  right: 0%;
  margin: 0 auto;
  animation-name: pulse;/* アニメーション名 */
  animation-duration: 1s;/* アニメーションの間隔(秒) */
  animation-iteration-count: infinite;
}

.btn:hover,.form_btn:hover{
  filter: brightness(1.2);
}

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

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

/*-----------------------------------------------
	container（テキストコーディング用）
---------------------------------------------- */
.container {
  max-width: 930px;/* コンテンツ幅 */
  width: 96%;
  margin: 0 auto;
}

/* ------------ 文章・文字装飾 ------------ */
.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; /* 画像の実寸比率（横/縦） */
}

/*-----------------------------------------------
	フッター
---------------------------------------------- */
.footer {
  background-color: #333;
  padding: 20px 10px;
	color: #fff;
	line-height: 2;
  font-size: 10px;
}
.footer a,.copyright {
  color: #fff;
}
.footer a {
  display: inline-block;
  text-decoration: underline;
}
.footer p {
  padding: 0;
}
.copyright {
  text-align: center;
}


/*-----------------------------------------------
	PC・タブレット
---------------------------------------------- */
@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 {
		width: 90%;/* SP版の入力欄の大きさ */
		font-size: 16px;
		border-radius: 2px;
    margin-bottom: 4%;/* ボタンまでの余白の大きさ */
		border-width: 2px;/* 枠線の太さ */
	}  
  /* ボタンとフォームボタン */
  .btn,
  .btn2,
  .form_btn {
    width:90%;/* SP版のボタンの大きさ */
  }
}
