@charset "utf-8";
/* CSS Document */



html {
	height: 100%;
	font-size: 100%;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}



/* レイアウト（section）*/

.wrapper {
	display: grid;
	justify-items: center;
	align-items: center;
}

.cover {
	width: 100%;
	background-image: url("../images/cover_bg-sp.jpg");
	background-position: center right 35%;
	background-size: cover;
	background-repeat: no-repeat;
	flex-grow: 1;
}
.cover_layout {
	max-width: 1000px;
	margin: auto;
	padding: 0 24px 24px;
}
.cover_title,
.cover_bullet,
.cover_opt_form {
	max-width: 375px;
	margin: 0;
}
.cover_bullet {
	margin-bottom: 32px;
}
@media (max-width: 639px) {
	.cover_bullet {
		margin-bottom: 16px;
	}
}	

@media (min-width: 640px) {
.cover_layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	column-gap: 24px;
	align-items: center;
	padding: 0 36px;
}
.cover_layout .cover_title {
	grid-column: 1 / 3;
}
.cover_title,
.cover_bullet,
.cover_opt_form {
	max-width: 100%;
	margin: 0;
}
}

@media (min-width: 768px) {
.cover {
	background-image: url("../images/cover_bg-tb.jpg");
}
.cover_layout {
	grid-template-columns: 1fr 327px;
}
}

@media (min-width: 840px) {
.cover_layout {
	grid-template-columns: 1fr 400px;
}
}

@media (min-width: 1080px) {
.cover {
	background-image: url("../images/cover_bg-pc.jpg");
}
.cover_layout {
	padding: 0;
}
.form_title {
	display: none;
}
.cover_bullet img {
	object-fit: cover;
	object-position: center top;
	width: 520px;
	height: 296px;
	cursor: pointer;
}
.cover_bullet img:hover {
	object-position: center bottom;
}
}



/* フォーム */

.input_email {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 12px;
	padding: 20px;
	border: solid 4px #808080;
	border-radius: 8px;
	background-color: #fff;
	font-size: 16px;
	text-align: center;
}
.input_email:focus {
	border: solid 4px #00b800;
	/*box-shadow: 0px 0px 2px 1px #ff0;*/
}
.form_title {
	max-width: 80%;
	margin: 0 auto 1rem;
	drop-shadow: 0 0 4px rgba(0,0,0,1);
}
.form_text {
	display: block;
	margin-bottom: .25rem;
	color: #2a2a2a;
	font-size: 1rem;
	font-weight: bold;
	text-align: justify;
	line-height: 1.4;
}
/*.form_text {
	display: block;
	margin-bottom: .25rem;
	color: #fff;
	font-size: 1rem;
	font-weight: bold;
	text-align: justify;
	text-shadow: 1px 1px 0px #000;
	line-height: 1.4;
}*/
.form_text.attention {
	font-size: 0.875rem;
	font-weight: normal;
}
.entry_btn {
	display: block;
	width: 100%;
	height: 0;
	margin-bottom: 1rem;
	padding-top: 33.0275%;
	background-color: inherit;
	background-image: url("../images/form_button_top-sptb.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
	border: none;
	color: transparent;
	cursor: pointer;
}
.entry_btn:hover{
	opacity: 0.8 !important;
}

@media (max-width: 639px) {
	.input_email {
		font-size: 14px;
		padding: 20px 12px;
	}
}	

/* フッタ */

.footer_inner{
	padding: 24px;
}
.footer_menu {
	margin-bottom: .5em;
}
.footer_menu li {
	margin-bottom: .25em;
}

@media (min-width: 480px) {
.footer_menu {
	display: flex;
	justify-content: center;
}
.footer_menu li:first-child::after {
	content: "";
	width: 0;
	margin-left: .75em;
	padding-right: .75em;
	border-left: solid 1px #000;
}
}



/* 表示 */

@media (max-width: 639px) {
.max-width-639px {
	display: block;
}
.min-width-640px {
	display: none;
}
.min-width-1080px {
	display: none;
}
}
@media (min-width: 640px) {
.max-width-639px {
	display: none;
}
.min-width-640px {
	display: block;
}
.min-width-1080px {
	display: none;
}
}
@media (min-width: 1080px) {
.max-width-639px {
	display: none;
}
.min-width-640px {
	display: none;
}
.min-width-1080px {
	display: block;
}
}



/* 改行 */

.br-off {
    display: none;
}

@media screen and (min-width: 480px) {
.br-off-480 {
    display: none!important;
}
}

@media screen and (min-width: 640px) {
.br-off-640 {
    display: none!important;
}
.br-on-640 {
    display: inline!important;
}
}

@media screen and (min-width: 768px) {
.br-off-768 {
    display: none!important;
}
.br-on-768 {
    display: inline!important;
}
}

@media screen and (min-width: 960px) {
.br-off-960 {
    display: none!important;
}
.br-on-960 {
    display: inline!important;
}
}


@media (min-width: 375px) {
}

/*btn_anime*/
.btn_animate01 {
	margin: 0 auto;
	animation: fuwafuwa 1s ease 0s infinite alternate;
	transform-origin:center;
	cursor: pointer;
	}
	@keyframes fuwafuwa {
	from {transform: scale(0.9,0.9);}
	to {transform: scale(1,1);}
	}