@charset "utf-8";
/*----------------------------------------------------------
　全体
-----------------------------------------------------------*/
html {
	width: 100%;
	height: 100%;
	font-family: メイリオ, Meiryo, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 62.5%;/*10px相当*/
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body {
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-size: 1.6rem;
	color: #333;
	text-align: center;
}
@media only screen and ( max-width: 599px ) {
	body {
		font-size: 1.4rem;
		line-height: 1.4;
	}
}
.left {
	float: left;
}
.right {
	float: right;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.textC {
	text-align: center;
}
.textL {
	text-align: left;
}
.textR {
	text-align: right;
}
.text_fff {
	color: #fff;
}
.red {
	color: #c3002f;
}
.text_b {
  font-weight: 700;
}
a:link, a:visited {
	color: #005ECF;
	text-decoration: none;
}

a:hover {
	color: #005ECF;
	text-decoration: none;
}
/*イメージマップ用
IE対応：<area onFocus="this.blur();">
------------------------------------*/
area {
	border: none;
	outline: none;
}

/*******************************************************************
　ページ共通パーツ
*******************************************************************/
/*幅750px以上＝PC表示
--------------------*/
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
/*幅750pxまで＝スマホ表示
--------------------*/
@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}


/*******************************************************************
　各セクション
*******************************************************************/
/*共通 ------------------------------*/
.contents {
	width: 100%;
	text-align: center;
	margin: 0 auto;
  position: relative;
}
.wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2), 5px 0 10px rgba(0, 0, 0, 0.2);
}
.container {
	width: 90%;
	max-width: 700px;
	margin: 0 auto;
}
.box {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}
.attn_box {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}
.attn {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.4;
}
@media only screen and ( max-width: 749px ) {
  .attn {
    text-align: left;
    font-size: 1.0rem;
    line-height: 1.3;
  }
}

/*----------------------------------------------------------
　ヘッダー 
-----------------------------------------------------------*/
header {
	width: 100%;
	margin: 0;
	padding: 0 0 10px;
	overflow: hidden;
  background: #fff;
}
.header_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	max-width: 1080px;
	margin: 0 auto;
}
.header_logo{
	width: 15%;
	text-align: left;
}
.header_logo img {
	max-width: 100px;

}
.header_name {
	text-align: right;
}
.header_name img {
	max-width: 120px;
}
@media only screen and ( max-width: 749px ) {
	header {
		margin: 0 auto 0;
	  padding: 0;
  }
	.header_logo {
		width: 50%
	}
  .header_logo img {
    max-width: none;
  }
  .header_name {
  }
  .header_name img {
    width: 90%;
    }
}


/*----------------------------------------------------------
　メインコンテンツ
-----------------------------------------------------------*/
body {
  background: url("../img/bg_body.png") center top #fff;
  background-attachment: fixed;
}
.wrapper {
  background: #fff;
}
.main {
  position: relative;
  z-index: 1;
}

.cp_btn_box {
  position: relative;
  margin: 5% auto;
}
.btn_post {
  position: absolute;
  bottom: 0;
  left: calc(180 / 700 * 100%);
  width: calc(360 / 700 * 100%);
  max-width: 360px;
}
.cp_box {
}
/* -----------------------------------------------------
　注意事項
-----------------------------------------------------------*/
.footer_wrap {
  margin-top: 1%;
}
.notice_inner {
	width: 94%;
	margin: 0 auto;
	font-size: 1.2rem;
	padding: 2em 0 2em;
  text-align: left;
	word-break: break-all;
}
.copyright {
	text-align: center;
	padding: 0 0 1em;
}

@media only screen and ( max-width: 599px ) {
	.notice_inner {
		font-size: 1.0rem;
	}
}

/*----------------------------------------------------------
　フッターボタン
-----------------------------------------------------------*/
.footer_btn_box {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 20;
}
.footer_btn {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

/*----------------------------------------------------------
　画像エフェクト
-----------------------------------------------------------*/
/*ふわふわ*/
.floating_img {
  animation: floating 2s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(8px);
  }
}
/*縮小拡大*/
.bound_img {
  animation: explosion 3s ease-out infinite;
  opacity: 1;
}

@keyframes explosion {
  0% {
    transform: scale(1.0);
    opacity: 1;
  }
  15% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  30% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  45% {
    transform: scale(1.15);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.9);
    opacity: 0.95;
  }
  75% {
    transform: scale(1.05);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.0);
    opacity: 1;
  }
}
