@charset "utf-8";
/* CSS Document */

*{
	box-sizing: border-box;
	font-size: 16px;
}

/*大きさの計算*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*iOSフォーム要素の初期化*/
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

body {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	-webkit-font-feature-settings: 'palt';/*文字詰め*/
	font-feature-settings: 'palt';/*文字詰め*/
}

body *{
  box-sizing: inherit; /* box-sizingの値は継承されないので明示的に設定 */
}

/*画像の調整*/
img {
    max-width: 100%;
    height: auto;
	vertical-align: bottom;
	width: 100%;
}

a:hover {
    opacity: 0.8;
}

/*****LPコーディングここから*****/
.lp-content{
	max-width: 768px;
	margin: 0 auto;
	background: white;
}



.lp-content {
    max-width: 100%;
    margin: 0 auto;
    background: white;
  }
  
  /* PCだけ幅640pxに制限 */
  @media screen and (min-width: 769px) {
    .lp-content {
      max-width: 640px;
    }
  }



/* ▼ アニメーションは共通 */
.ctabtn {
    position: absolute;
    width: 300px;
    animation: pulseScale 1.5s ease-in-out infinite;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* ▼ 拡大・縮小するアニメーション定義 */
  @keyframes pulseScale {
    0%, 100% {
      transform: translateX(-50%) scale(1);
    }
    50% {
      transform: translateX(-50%) scale(1.1); /* 1.1倍に拡大 */
    }
  }




.img-wrapper {
    position: relative;
    width: 100%;
  }
  
  .img-wrapper picture img {
    width: 100%;
    display: block;
  }
  
  /* ボタン共通のスタイル（中央寄せ） */
  .ctabtn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;  /* ボタンのサイズは調整OK */
    max-width: 80%;
  }
  
  /* 画像ごとの位置調整（下の方に出したい） */
  .type-a {
    bottom: 24%;
  } /* ←ここを変えれば位置調整できるよ！ */
  
  /* 画像ごとの位置調整（下の方に出したい） */
  .type-b {
    bottom: 22%;
  } /* ←ここを変えれば位置調整できるよ！ */


/* 画像ごとの位置調整（下の方に出したい） */
.type-c {
  bottom: 13.1%;
} /* ←ここを変えれば位置調整できるよ！ */

/* 画像ごとの位置調整（下の方に出したい） */
.type-d {
  bottom: 13%;;
} /* ←ここを変えれば位置調整できるよ！ */

/* 画像ごとの位置調整（下の方に出したい） */
.type-e {
  bottom: 12.5%;;
} /* ←ここを変えれば位置調整できるよ！ */





/***背景を設定したいとき***/
/*背景に色を付ける*/
/*
.content01 {
    background: #fff7f8;
}
*/

/*背景を固定したいとき　例
.content01 {
    background-image: url("img/bg-content02.jpg");
	background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
	background-size: contain;
}*/


/***メールフォーム こちらにメールフォームのコーディングを記述ください***/



/***フッター***/
.footer-section {
    background: #cf877e; /*好きな色を設定してください*/
    padding: 2rem;
}

ul.footer-menu {
    display: flex;
    justify-content: center;
}

ul.footer-menu li {
    list-style: none;
}

ul.footer-menu li a {
    color: white;
    margin-right: 10px;
    font-size: 1rem;
}

.logo {
    width: 50%;  /*ロゴにあわせて調整してください*/
    margin: 0 auto;
}


@media screen and (max-width:768px) {
	ul.footer-menu {
    display: block;
    text-align: center;
}
	
	.logo {
    width: 90%;  /*ロゴにあわせて調整してください*/
}
	
	.footer-section {
    padding: 1rem;
}
}	


/* コピーライト用 */
.copyright {
  color: #fff;           /* 白文字 */
  font-size: 12px;       /* 小さめのフォントサイズ */
  text-align: center;    /* 真ん中寄せ */
  margin-top: 10px;      /* 上に余白を少し */
  line-height: 1.4;      /* 行間を少し詰める */
}

footer .footer-menu + .copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
}