@charset "UTF-8";
/*
Theme Name: aquacity-campaign.com
Author: Catwork Co., Ltd.
Version: 1.0.0
*/


/* Reset
----------------------------------------------------------- */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, code,
del, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, u,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	-webkit-text-size-adjust: 100%;
	word-break: break-word;
}

html{
	scroll-behavior: smooth;
}
body {
	/* font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 16px;
	line-height: 2;
	color:#fff;
}
a {
	color:#fff;
	text-decoration: none;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}
strong {
	font-weight: normal;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="email"],
textarea {
	border-radius: 0;
	-webkit-appearance: none;
	line-height: normal;
	color: var(--main-font-color, #333);
}
textarea {
	overflow: auto;
}
::placeholder {
	color: #999;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}
.wrap {
	width: 100%;
	overflow-x: hidden;
}
.inner {
	width: 1200px;
	margin: 0 auto;
}
h2, h3, h4, h5, h6 {
	font-weight: normal;
}



/* フェードアニメーション css
----------------------------------------------------------*/

/*ふわっと出る*/
.mv01_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 0
}
.mv01_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*下から*/
.mv02_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 60px, 0);
	-moz-transform: scale(1, 1) translate3d(0, 60px, 0);
	-ms-transform: scale(1, 1) translate3d(0, 60px, 0);
	-o-transform: scale(1, 1) translate3d(0, 60px, 0);
	transform: scale(1, 1) translate3d(0, 60px, 0);
	opacity: 0
}
.mv02_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}


/* ☆アニメーション */
@keyframes starMove {
	0% {
		transform: translate(0, 0) rotate(0deg) scale(0.9);
		opacity: 0;
	}

	20% {
		opacity: 0.7;
	}

	50% {
		transform: translate(-10px, -15px) rotate(180deg) scale(1.05);
		opacity: 0.9;
	}

	80% {
		opacity: 0.7;
	}

	100% {
		transform: translate(-20px, -30px) rotate(360deg) scale(0.9);
		opacity: 0;
	}
}



/*===============================================
横幅1200px以下
===============================================*/
@media screen and (max-width: 1240px) and (min-width: 880px){
	html,
	body,
	.wrap{
		width:1240px;
	}
}


/*===============================================
横幅800px以上
===============================================*/
@media screen and (min-width: 880px) {
	a {
		transition: all .5s;
	}
	a:hover {
		opacity:0.8;
		filter:alpha(opacity=80);
		-moz-opacity:0.8;
		transition: all .5s;
	}
	.sp {
		display: none;
	}
	.wrap {
		position: fixed;
		width: 100%;
		height: 100%;
		background: url(img/bg_fixed.png)center center / cover no-repeat;
	}
	@media screen and (max-width: 1240px) {
		.wrap{
			width: 1240px;
		}
	}


/* header
------------------------------------------------------------------------*/
	.header_bg{
		position: relative;
	}
	.header_bg::after{
		content: "";
		width: 800px;
		height: 685px;
		background: url(img/home_bg.png)no-repeat;
		border-radius: 0 0 20px 20px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 0;
		z-index: -1;
	}


	header{
		width: 800px;
		margin: 0 auto;
		padding: 55px 0;
		border-radius: 0 0 20px 20px;
		text-align: center;
		box-sizing: border-box;
		position: relative;
		overflow: hidden;
	}
	header h1{
		width: 373px;
		height: 0;
		background: url(img/logo.png)no-repeat;
		background-size: 373px;
		margin: 0 auto;
		padding-top: 138px;
		overflow: hidden;
	}
	header .text01{
		width: 690px;
		font-size: 40px;
		line-height: 1.2;
		margin: 0 auto;
		padding: 18px 0;
		background: linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0) 100%);
		box-sizing: border-box;
		position: relative;
		z-index: 1;
	}
	header .img{
		margin: -60px 0 -20px;
	}
	header .text02{
		font-size: 32px;
		line-height: 1.6;
	}
	header .text02 span{
		color: #fff600;
	}


	/* thanks */
	header .text03{
		display: inline-block;
		font-size: 50px;
		line-height: 1.36;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
		margin: 340px auto 0;
		padding: 25px 0 20px;
		box-sizing: border-box;
		position: relative;
	}
	header .text03::before{
		content: "";
		background: url(img/common_text01.png)no-repeat;
		background-size: 742px;
		width: 742px;
		height: 309px;
		position: absolute;
		top: -345px;
		left: -55px;
	}
	header .text04{
		font-size: 44px;
		line-height: 1;
		padding: 65px 0 40px;
		box-sizing: border-box;
	}
	header .text05{
		font-size: 32px;
		line-height: 1;
		padding-bottom: 35px;
	}


	/* ☆ */

	/* 共通 */
	header .star::before,
	header .star::after{
		content: "";
		background: url(img/star_accent.png) no-repeat center/contain;
		animation: starMove linear infinite;
		opacity: 0;
		position: absolute;
	}

	/* 通常サイズ大+小 */
	header .star::before {
		width: 29px;
		height: 29px;
	}
	header .star::after {
		width: 16px;
		height: 16px;

		transform: translate(15px, 15px);
		animation-duration: 18s;
		animation-delay: -3s;
		animation-direction: reverse;
		opacity: 0.6;
	}

	/* 逆サイズ小＋大 */
	header .star.reverse::before {
		width: 16px;
		height: 16px;
		opacity: 0.6;
	}

	header .star.reverse::after {
		width: 29px;
		height: 29px;

		transform: translate(-10px, 10px);
		animation-duration: 17s;
		animation-delay: -2s;
	}

	/* 配置 */
	header .s1::before { top: 13%;  left: 70px;  animation-duration: 12s; }
	header .s9::before { top: 23%;  left: 70px;  animation-duration: 12s; }
	header .s2::before { top: 8%; right: 50px; animation-duration: 14s; }
	header .s3::before { top: 30%; left: 80px;  animation-duration: 10s; }
	header .s4::before { top: 42%; right: 75px; animation-duration: 16s; }
	header .s5::before { top: 55%; left: 100px;  animation-duration: 11s; }
	header .s6::before { top: 68%; right: 80px; animation-duration: 13s; }
	header .s7::before { top: 80%; left: 45px;  animation-duration: 15s; }
	header .s8::before { top: 92%; right: 55px; animation-duration: 12s; }

	header .s1::after { top: 17%; left: 40px; }
	header .s9::after { top: 27%; left: 40px; }
	header .s2::after { top: 10%; right: 80px; }
	header .s3::after { top: 33%; left: 110px; }
	header .s4::after { top: 45%; right: 40px; }
	header .s5::after { top: 58%; left: 70px; }
	header .s6::after { top: 72%; right: 110px; }
	header .s7::after { top: 83%; left: 70px; }
	header .s8::after { top: 95%; right: 85px; }

	/* 一部逆再生 */
	header .s2::before,
	header .s5::before {
		animation-direction: reverse;
	}



/* home
------------------------------------------------------------------------*/

	.home .loop{
		position: absolute;
		top: 478px;
		left: 50%;
		transform: translateX(-50%);
		background: url(img/mv_loop.png)center center repeat-x;
		background-size: cover;
		width: 100%;
		height: 127px;
		max-width: 1800px;
		animation: loop 50s linear infinite;
	}
	@keyframes loop{
		0% {background-position: 2760px 0;}
		50% {background-position: 1380px 0;}
		100% {background-position: 0 0;}
	}

	
	.home .main{
		width: 800px;
		margin: 30px auto 0;
		background-image: linear-gradient(90deg, #56bbd3, #008cbb);
		border-radius: 20px 20px 0 0;
		/* overflow: hidden; */
		position: relative;
	}
	.home .main .inner{
		width: 800px;
		padding: 0 30px;
		box-sizing: border-box;
	}


	/* ☆ */
	.home .main .star::before,
	.home .main .star::after{
		content: "";
		background: url(img/star_accent.png) no-repeat center/contain;
		width: 29px;
		height: 29px;
		animation: starMove 12s linear infinite;
		position: absolute;
	}
	.home .main .star::before{
		animation-delay: -3s;
		top: 545px;
		left: 50px;
	}
	.home .main .star::after{
		animation-direction: reverse;
		top: 410px;
		right: 55px;
	}


	/* cont01 */
	.home .cont01 .inner{
		padding: 375px 50px 40px;
		text-align: center;
		position: relative;
	}
	.home .cont01 .inner::before{
		content: "";
		background: url(img/common_text01.png)no-repeat;
		width: 840px;
		height: 349px;
		opacity: 0.4;
		position: absolute;
		top: 40px;
		left: -18px;
	}
	.home .cont01 .inner h2{
		color: #fff600;
		font-size: 46px;
		line-height: 1;
		position: relative;
	}
	.home .cont01 .inner .text01{
		margin-top: 30px;
		font-size: 38px;
		line-height: 1.684;
	}
	.home .cont01 .inner .text02{
		margin: 45px auto 0;
		width: 670px;
		height: 90px;
		line-height: 90px;
		border-radius: 90px;
		font-size: 42px;
		background-image: linear-gradient(90deg, #e53e91,#1338af);
		position: relative;
	}
	.home .cont01 .inner .text02::before{
		content: "";
		position: absolute;
		bottom: -21.5px;
		left: 50%;
		transform: translateX(-50%);
		width: 26px;
		height: 22.5px;
		background: linear-gradient(90deg, #7f3b9f, #793ba1);	
		clip-path: polygon(50% 100%, 0 0, 100% 0);
	}
	.home .cont01 .inner ul{
		margin: 85px auto 76px;
		display: flex;
		justify-content: center;
		gap: 10px;
		position: relative;
	}
	.home .cont01 .inner ul::before{
		content: "";
		background: url(img/accent01.png)no-repeat;
		width: 630px;
		height: 479px;
		position: absolute;
		top: -122px;
		right: -250px;
		z-index: -1;
	}
	.home .cont01 .inner ul li{
		position: relative;
	}
	.home .cont01 .inner ul li::before{
		content: "";
		width: 76px;
		height: 76px;
		position: absolute;
		left: -6px;
		bottom: -26px;
	}
	.home .cont01 .inner ul li:nth-of-type(1)::before{
		background: url(img/kinds_number01.png) no-repeat;
		background-size: 76px;
	}
	.home .cont01 .inner ul li:nth-of-type(2)::before{
		background: url(img/kinds_number02.png) no-repeat;
		background-size: 76px;
	}
	.home .cont01 .inner ul li:nth-of-type(3)::before{
		background: url(img/kinds_number03.png) no-repeat;
		background-size: 76px;
	}
	.home .cont01 .inner .form_box{
		width: 700px;
		background: rgba(255,255,255,0.15);
		border-radius: 20px;
		border: 1px solid #fff;
		margin: 0 auto;
		padding: 140px 50px 50px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner h3{
		width: 700px;
		height: 100px;
		font-size: 46px;
		line-height: 105px;
		background-image: linear-gradient(90deg, #e53e91,#1338af);
		border-radius: 20px 20px 0 0;
		position: absolute;
		top: -1px;
		left: -1px;
	}
	.home .cont01 .inner table{
		width: 600px;
		text-align: left;
		position: relative;
	}
	.home .cont01 .inner table::before{
		content: "";
		background: url(img/accent01.png)no-repeat;
		width: 630px;
		height: 479px;
		transform: scale(-1, 1);
		position: absolute;
		top: 295px;
		left: -300px;
		z-index: -1;
	}
	.home .cont01 .inner table tr{
		display: block;
		margin-bottom: 5px;
		padding-bottom: 45px;
		border-bottom: 1px solid #fff;
	}
	.home .cont01 .inner table tr:last-of-type{
		border: none;
	}
	.home .cont01 .inner table th,
	.home .cont01 .inner table td{
		display: block;
		width: 100%;
		color: #333;
		box-sizing: border-box;
	}
	.home .cont01 .inner table th{
		font-size: 36px;
		line-height: 1.33;
		font-weight: bold;
		vertical-align: middle;
		padding: 30px 0 15px 65px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner table th::before{
		content: "Q1";
		position: absolute;
		left: 0;
	}
	.home .cont01 .inner table tr:nth-of-type(2) th::before{
		content: "Q2";
	}
	.home .cont01 .inner table tr:nth-of-type(3) th::before{
		content: "Q3";
	}
	.home .cont01 .inner table tr:nth-of-type(4) th::before{
		content: "Q4";
	}
	.home .cont01 .inner table td{
		font-size: 30px;
	}
	.home .cont01 .inner table td input[type="text"],
	.home .cont01 .inner table td select{
		width: 100% !important;
		height: 80px !important;
		font-size: 30px;
		font: inherit;
		padding: 5px;
		box-sizing: border-box;
		padding: 20px 30px 15px;
		border: none !important;
		background: #fff;
		border-radius: 5px !important;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		cursor: pointer;
	}
	.home .cont01 .inner table td label{
		display: flex !important;
		width: 100%;
		margin: 0 0 25px 0 !important;
		color: #fff;
		font-size: 30px;
		line-height: 1.68;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		cursor: pointer;
		position: relative;
	}
	.home .cont01 .inner table td label input[type="checkbox"]{
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		margin: 0;
	}
	.home .cont01 .inner table td label span{
		margin: 5px 15px 0 0;
		width: 38px;
		height: 38px;
		border-radius: 8px;
		background: #fff;
		border: 1px solid #fff;
		cursor: pointer;
		position: relative;
		z-index: 1;
	}
	.home .cont01 .inner table td label:last-child span{
		margin-bottom: 20px;
	}
	.home .cont01 .inner table td label input[type="checkbox"]:checked ~ span::after {
		content: "";
		background: url(img/check_icon.png)no-repeat;
		background-size: 28px;
		width: 28px;
		height: 24px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.home .cont01 .inner .text03{
		color: #fff;
		font-size: 30px;
		line-height: 1;
		font-weight: bold;
		margin: 25px auto 20px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; 
	}
	.home .cont01 .inner .note{
		margin: 50px auto 20px;
		font-size: 28px;
		line-height: 1;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	}
	.home .cont01 .inner input[type="submit"]{
		font-family: var(--main-font) !important;
		width: 700px;
		height: 100px;
		border-radius: 100px;
		font-size: 38px;
		line-height: 102px;
		padding-right: 40px;
		box-sizing: border-box;
		cursor: pointer;
		margin: auto;
		border: none;
		display: block;
		color: #fff;
		background-image: linear-gradient(90deg, #e53e91,#fd7918);
		transition: all .5s;
		position: relative;
	}
	.home .cont01 .inner input[type="submit"]:hover{
		opacity: 1;
		background-image: linear-gradient(-90deg, #e53e91,#fd7918);
		transition: all .5s;
	}
	.home .cont01 .inner .button{
		position: relative;
	}
	.home .cont01 .inner .button::after{
		content: "";
		background: url(img/submit_icon.png)no-repeat;
		background-size: 26px;
		width: 26px;
		height: 31px;
		position: absolute;
		top: 34px;
		right: 200px;
	}


/* thanks
------------------------------------------------------------------------*/
	
	.thanks .main{
		width: 800px;
		margin: 30px auto 0;
		background-image: linear-gradient(90deg, rgba(86, 187, 211, 0.9), rgba(0, 140, 187, 0.9));
		border-radius: 20px 20px 0 0;
		/* overflow: hidden; */
		position: relative;
	}
	.thanks .main .inner{
		width: 800px;
		padding: 0 30px;
		box-sizing: border-box;
	}


	/* ☆ */
	.thanks .main .star::before,
	.thanks .main .star::after{
		content: "";
		background: url(img/star_accent.png) no-repeat center/contain;
		width: 29px;
		height: 29px;
		animation: starMove 12s linear infinite;
		position: absolute;
	}
	.thanks .main .star::before{
		animation-delay: -3s;
		top: 131px;
		left: 74px;
	}
	.thanks .main .star::after{
		animation-direction: reverse;
		top: 44px;
		right: 60px;
	}


	/* cont01 */
	.thanks .cont01 .inner{
		padding: 80px 0 0;
		text-align: center;
		position: relative;
	}
	.thanks .cont01 .inner h2{
		color: #fff600;
		font-size: 52px;
		line-height: 1;
		position: relative;
	}
	.thanks .cont01 .inner .text01{
		margin-top: 50px;
		font-size: 36px;
		line-height: 1.889;
		font-weight: bold;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	}
	.thanks .cont01 .inner .wallpaper{
		width: 640px;
		margin: 0 auto 100px;
		padding-bottom: 80px;
		border-bottom: 1px solid #fff;
	}
	.thanks .cont01 .inner .wallpaper .type{
		margin-top: 80px;
		padding-top: 50px;
		border-top: 1px solid #fff;
	}
	.thanks .cont01 .inner .wallpaper .type h3{
		display: grid;
		gap: 15px;
		font-size: 47px;
		line-height: 1;
		margin-bottom: 55px;
	}
	.thanks .cont01 .inner .wallpaper .type h3 span{
		font-size: 32px;
	}
	.thanks .cont01 .inner .wallpaper .type .img{
		margin: 0 auto;
		width: 500px;
		height: 888px;
		overflow: hidden;
		position: relative;
	}
	.thanks .cont01 .inner .wallpaper .type .img img{
		width: 100%;
		height: auto;
		transform: translateY(-200px);
	}
	.thanks .cont01 .inner .text02{
		font-size: 48px;
		line-height: 1.6;
		position: relative;
	}
	.thanks .cont01 .inner .text02 span{
		font-size: 42px;
	}
	.thanks .cont01 .inner .text02::before{
		content: "";
		background: url(img/common_text01.png)no-repeat;
		background-size: 742px;
		width: 742px;
		height: 309px;
		opacity: 0.2;
		position: absolute;
		top: 0px;
		left: 30px;
	}
	.thanks .cont01 .inner .button a{
		display: block;
		width: 700px;
		height: 100px;
		border-radius: 100px;
		font-size: 32px;
		line-height: 102px;
		font-weight: bold;
		color: #fff;
		background-image: linear-gradient(90deg, #e53e91,#1338af);
		margin: 70px auto 0;
		transition: all .5s;
		position: relative;
	}
	.thanks .cont01 .inner .button a:hover{
		opacity: 1;
		background-image: linear-gradient(-90deg, #e53e91,#1338af);
		transition: all .5s;
	}


/* footer
------------------------------------------------------------------------*/
	footer{
		padding: 60px 30px 120px;
		position: relative;
	}
	footer .copy{
		color: #fff;
		font-size: 24px;
		line-height: 1;
		text-align: center;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; 
	}


}/*PCの記述ここまで*/



/*===============================================
横幅800px以下 sp
===============================================*/

@media screen and (max-width: 880px) {
	html,
	body,
	.wrap {
		width: 880px;
		position: relative;
	}
	.inner {
		box-sizing: border-box;
		width: auto;
	}
	.pc {
		display: none;
	}
	.sp {
		display: inline;
	}
	.bg_fixed{
		position: fixed;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		background: url(img/bg_fixed_sp.png)center center / cover no-repeat;
		z-index: -1;
	}


/* header
------------------------------------------------------------------------*/
	.header_bg{
		position: relative;
	}
	.header_bg::after{
		content: "";
		width: 800px;
		height: 685px;
		background: url(img/home_bg.png)no-repeat;
		border-radius: 0 0 20px 20px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 0;
		z-index: -1;
	}


	header{
		width: 800px;
		margin: 0 auto;
		padding: 55px 0;
		border-radius: 0 0 20px 20px;
		text-align: center;
		box-sizing: border-box;
		position: relative;
		overflow: hidden;
	}
	header h1{
		width: 373px;
		height: 0;
		background: url(img/logo.png)no-repeat;
		background-size: 373px;
		margin: 0 auto;
		padding-top: 138px;
		overflow: hidden;
	}
	header .text01{
		width: 690px;
		font-size: 40px;
		line-height: 1.2;
		margin: 0 auto;
		padding: 18px 0;
		background: linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0) 100%);
		box-sizing: border-box;
		position: relative;
		z-index: 1;
	}
	header .img{
		margin: -60px 0 -20px;
	}
	header .text02{
		font-size: 32px;
		line-height: 1.6;
	}
	header .text02 span{
		color: #fff600;
	}


	/* thanks */
	header .text03{
		display: inline-block;
		font-size: 50px;
		line-height: 1.36;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
		margin: 340px auto 0;
		padding: 25px 0 20px;
		box-sizing: border-box;
		position: relative;
	}
	header .text03::before{
		content: "";
		background: url(img/common_text01.png)no-repeat;
		background-size: 742px;
		width: 742px;
		height: 309px;
		position: absolute;
		top: -345px;
		left: -55px;
	}
	header .text04{
		font-size: 44px;
		line-height: 1;
		padding: 65px 0 40px;
		box-sizing: border-box;
	}
	header .text05{
		font-size: 32px;
		line-height: 1;
		padding-bottom: 35px;
	}


	header .upper_damy_box{
		position: fixed;
		top: 0;
		left: 0;
		content: "";
		background: rgba(255,255,255,0.01);
		width: 100%;
		height: 50px;
		pointer-events: none;
		z-index: 99999;
	}
	header .under_damy_box{
		position: fixed;
		bottom: 0;
		left: 0;
		content: "";
		background: rgba(255,255,255,0.01);
		width: 100%;
		height: 50px;
		pointer-events: none;
		z-index: 99999;
	}


	/* ☆ */

	/* 共通 */
	header .star::before,
	header .star::after{
		content: "";
		background: url(img/star_accent.png) no-repeat center/contain;
		animation: starMove linear infinite;
		opacity: 0;
		position: absolute;
	}

	/* 通常サイズ大+小 */
	header .star::before {
		width: 29px;
		height: 29px;
	}
	header .star::after {
		width: 16px;
		height: 16px;

		transform: translate(15px, 15px);
		animation-duration: 18s;
		animation-delay: -3s;
		animation-direction: reverse;
		opacity: 0.6;
	}

	/* 逆サイズ小＋大 */
	header .star.reverse::before {
		width: 16px;
		height: 16px;
		opacity: 0.6;
	}

	header .star.reverse::after {
		width: 29px;
		height: 29px;

		transform: translate(-10px, 10px);
		animation-duration: 17s;
		animation-delay: -2s;
	}

	/* 配置 */
	header .s1::before { top: 13%;  left: 70px;  animation-duration: 12s; }
	header .s9::before { top: 23%;  left: 70px;  animation-duration: 12s; }
	header .s2::before { top: 8%; right: 50px; animation-duration: 14s; }
	header .s3::before { top: 30%; left: 80px;  animation-duration: 10s; }
	header .s4::before { top: 42%; right: 75px; animation-duration: 16s; }
	header .s5::before { top: 55%; left: 100px;  animation-duration: 11s; }
	header .s6::before { top: 68%; right: 80px; animation-duration: 13s; }
	header .s7::before { top: 80%; left: 45px;  animation-duration: 15s; }
	header .s8::before { top: 92%; right: 55px; animation-duration: 12s; }

	header .s1::after { top: 17%; left: 40px; }
	header .s9::after { top: 27%; left: 40px; }
	header .s2::after { top: 10%; right: 80px; }
	header .s3::after { top: 33%; left: 110px; }
	header .s4::after { top: 45%; right: 40px; }
	header .s5::after { top: 58%; left: 70px; }
	header .s6::after { top: 72%; right: 110px; }
	header .s7::after { top: 83%; left: 70px; }
	header .s8::after { top: 95%; right: 85px; }

	/* 一部逆再生 */
	header .s2::before,
	header .s5::before {
		animation-direction: reverse;
	}



/* home
------------------------------------------------------------------------*/

	.home .loop{
		position: absolute;
		top: 478px;
		left: 50%;
		transform: translateX(-50%);
		background: url(img/mv_loop_sp.png)center center repeat-x;
		background-size: cover;
		width: 100%;
		height: 127px;
		max-width: 880px;
		animation: loop 50s linear infinite;
	}
	@keyframes loop{
		0% {background-position: 1380px 0;}
		50% {background-position: 690px 0;}
		100% {background-position: 0 0;}
	}

	
	.home .main{
		width: 800px;
		margin: 30px auto 0;
		background-image: linear-gradient(90deg, #56bbd3, #008cbb);
		border-radius: 20px 20px 0 0;
		/* overflow: hidden; */
		position: relative;
	}
	.home .main .inner{
		width: 800px;
		padding: 0 30px;
		box-sizing: border-box;
	}


	/* ☆ */
	.home .main .star::before,
	.home .main .star::after{
		content: "";
		background: url(img/star_accent.png) no-repeat center/contain;
		width: 29px;
		height: 29px;
		animation: starMove 12s linear infinite;
		position: absolute;
	}
	.home .main .star::before{
		animation-delay: -3s;
		top: 545px;
		left: 50px;
	}
	.home .main .star::after{
		animation-direction: reverse;
		top: 410px;
		right: 55px;
	}


	/* cont01 */
	.home .cont01 .inner{
		padding: 375px 50px 40px;
		text-align: center;
		position: relative;
	}
	.home .cont01 .inner::before{
		content: "";
		background: url(img/common_text01.png)no-repeat;
		width: 840px;
		height: 349px;
		opacity: 0.4;
		position: absolute;
		top: 40px;
		left: -18px;
	}
	.home .cont01 .inner h2{
		color: #fff600;
		font-size: 46px;
		line-height: 1;
		position: relative;
	}
	.home .cont01 .inner .text01{
		margin-top: 30px;
		font-size: 38px;
		line-height: 1.684;
	}
	.home .cont01 .inner .text02{
		margin: 45px auto 0;
		width: 670px;
		height: 90px;
		line-height: 90px;
		border-radius: 90px;
		font-size: 42px;
		background-image: linear-gradient(90deg, #e53e91,#1338af);
		position: relative;
	}
	.home .cont01 .inner .text02::before{
		content: "";
		position: absolute;
		bottom: -21.5px;
		left: 50%;
		transform: translateX(-50%);
		width: 26px;
		height: 22.5px;
		background: linear-gradient(90deg, #7f3b9f, #793ba1);	
		clip-path: polygon(50% 100%, 0 0, 100% 0);
	}
	.home .cont01 .inner ul{
		margin: 85px auto 76px;
		display: flex;
		justify-content: center;
		gap: 10px;
		position: relative;
	}
	.home .cont01 .inner ul::before{
		content: "";
		background: url(img/accent01.png)no-repeat;
		width: 630px;
		height: 479px;
		position: absolute;
		top: -122px;
		right: -250px;
		z-index: -1;
	}
	.home .cont01 .inner ul li{
		position: relative;
	}
	.home .cont01 .inner ul li::before{
		content: "";
		width: 76px;
		height: 76px;
		position: absolute;
		left: -6px;
		bottom: -26px;
	}
	.home .cont01 .inner ul li:nth-of-type(1)::before{
		background: url(img/kinds_number01.png) no-repeat;
		background-size: 76px;
	}
	.home .cont01 .inner ul li:nth-of-type(2)::before{
		background: url(img/kinds_number02.png) no-repeat;
		background-size: 76px;
	}
	.home .cont01 .inner ul li:nth-of-type(3)::before{
		background: url(img/kinds_number03.png) no-repeat;
		background-size: 76px;
	}
	.home .cont01 .inner .form_box{
		width: 700px;
		background: rgba(255,255,255,0.15);
		border-radius: 20px;
		border: 1px solid #fff;
		margin: 0 auto;
		padding: 140px 50px 50px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner h3{
		width: 700px;
		height: 100px;
		font-size: 46px;
		line-height: 105px;
		background-image: linear-gradient(90deg, #e53e91,#1338af);
		border-radius: 20px 20px 0 0;
		position: absolute;
		top: -1px;
		left: -1px;
	}
	.home .cont01 .inner table{
		width: 600px;
		text-align: left;
		position: relative;
	}
	.home .cont01 .inner table::before{
		content: "";
		background: url(img/accent01.png)no-repeat;
		width: 630px;
		height: 479px;
		transform: scale(-1, 1);
		position: absolute;
		top: 295px;
		left: -300px;
		z-index: -1;
	}
	.home .cont01 .inner table tr{
		display: block;
		margin-bottom: 5px;
		padding-bottom: 45px;
		border-bottom: 1px solid #fff;
	}
	.home .cont01 .inner table tr:last-of-type{
		border: none;
	}
	.home .cont01 .inner table th,
	.home .cont01 .inner table td{
		display: block;
		width: 100%;
		color: #333;
		box-sizing: border-box;
	}
	.home .cont01 .inner table th{
		font-size: 36px;
		line-height: 1.33;
		font-weight: bold;
		vertical-align: middle;
		padding: 30px 0 15px 65px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner table th::before{
		content: "Q1";
		position: absolute;
		left: 0;
	}
	.home .cont01 .inner table tr:nth-of-type(2) th::before{
		content: "Q2";
	}
	.home .cont01 .inner table tr:nth-of-type(3) th::before{
		content: "Q3";
	}
	.home .cont01 .inner table tr:nth-of-type(4) th::before{
		content: "Q4";
	}
	.home .cont01 .inner table td{
		font-size: 30px;
	}
	.home .cont01 .inner table td input[type="text"],
	.home .cont01 .inner table td select{
		width: 100% !important;
		height: 80px !important;
		font-size: 30px;
		font: inherit;
		padding: 5px;
		box-sizing: border-box;
		padding: 20px 30px 15px;
		border: none !important;
		background: #fff;
		border-radius: 5px !important;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		cursor: pointer;
	}
	.home .cont01 .inner table td label{
		display: flex !important;
		width: 100%;
		margin: 0 0 25px 0 !important;
		color: #fff;
		font-size: 30px;
		line-height: 1.68;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		cursor: pointer;
		position: relative;
	}
	.home .cont01 .inner table td label input[type="checkbox"]{
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		margin: 0;
	}
	.home .cont01 .inner table td label span{
		margin: 5px 15px 0 0;
		width: 38px;
		height: 38px;
		border-radius: 8px;
		background: #fff;
		border: 1px solid #fff;
		cursor: pointer;
		position: relative;
		z-index: 1;
	}
	.home .cont01 .inner table td label:last-child span{
		margin-bottom: 20px;
	}
	.home .cont01 .inner table td label input[type="checkbox"]:checked ~ span::after {
		content: "";
		background: url(img/check_icon.png)no-repeat;
		background-size: 28px;
		width: 28px;
		height: 24px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.home .cont01 .inner .text03{
		color: #fff;
		font-size: 30px;
		line-height: 1;
		font-weight: bold;
		margin: 25px auto 20px;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; 
	}
	.home .cont01 .inner .note{
		margin: 50px auto 20px;
		font-size: 28px;
		line-height: 1;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	}
	.home .cont01 .inner input[type="submit"]{
		font-family: var(--main-font) !important;
		width: 700px;
		height: 100px;
		border-radius: 100px;
		font-size: 38px;
		line-height: 102px;
		padding-right: 40px;
		box-sizing: border-box;
		cursor: pointer;
		margin: auto;
		border: none;
		display: block;
		color: #fff;
		background-image: linear-gradient(90deg, #e53e91,#fd7918);
		transition: all .5s;
		position: relative;
	}
	.home .cont01 .inner input[type="submit"]:hover{
		opacity: 1;
		background-image: linear-gradient(-90deg, #e53e91,#fd7918);
		transition: all .5s;
	}
	.home .cont01 .inner .button{
		position: relative;
	}
	.home .cont01 .inner .button::after{
		content: "";
		background: url(img/submit_icon.png)no-repeat;
		background-size: 26px;
		width: 26px;
		height: 31px;
		position: absolute;
		top: 34px;
		right: 200px;
	}


/* thanks
------------------------------------------------------------------------*/
	
	.thanks .main{
		width: 800px;
		margin: 30px auto 0;
		background-image: linear-gradient(90deg, rgba(86, 187, 211, 0.9), rgba(0, 140, 187, 0.9));
		border-radius: 20px 20px 0 0;
		/* overflow: hidden; */
		position: relative;
	}
	.thanks .main .inner{
		width: 800px;
		padding: 0 30px;
		box-sizing: border-box;
	}


	/* ☆ */
	.thanks .main .star::before,
	.thanks .main .star::after{
		content: "";
		background: url(img/star_accent.png) no-repeat center/contain;
		width: 29px;
		height: 29px;
		animation: starMove 12s linear infinite;
		position: absolute;
	}
	.thanks .main .star::before{
		animation-delay: -3s;
		top: 131px;
		left: 74px;
	}
	.thanks .main .star::after{
		animation-direction: reverse;
		top: 44px;
		right: 60px;
	}


	/* cont01 */
	.thanks .cont01 .inner{
		padding: 80px 0 0;
		text-align: center;
		position: relative;
	}
	.thanks .cont01 .inner h2{
		color: #fff600;
		font-size: 52px;
		line-height: 1;
		position: relative;
	}
	.thanks .cont01 .inner .text01{
		margin-top: 50px;
		font-size: 36px;
		line-height: 1.889;
		font-weight: bold;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	}
	.thanks .cont01 .inner .wallpaper{
		width: 640px;
		margin: 0 auto 100px;
		padding-bottom: 80px;
		border-bottom: 1px solid #fff;
	}
	.thanks .cont01 .inner .wallpaper .type{
		margin-top: 80px;
		padding-top: 50px;
		border-top: 1px solid #fff;
	}
	.thanks .cont01 .inner .wallpaper .type h3{
		display: grid;
		gap: 15px;
		font-size: 47px;
		line-height: 1;
		margin-bottom: 55px;
	}
	.thanks .cont01 .inner .wallpaper .type h3 span{
		font-size: 32px;
	}
	.thanks .cont01 .inner .wallpaper .type .img{
		margin: 0 auto;
		width: 500px;
		height: 888px;
		overflow: hidden;
		position: relative;
	}
	.thanks .cont01 .inner .wallpaper .type .img img{
		width: 100%;
		height: auto;
		transform: translateY(-200px);
	}
	.thanks .cont01 .inner .text02{
		font-size: 48px;
		line-height: 1.6;
		position: relative;
	}
	.thanks .cont01 .inner .text02 span{
		font-size: 42px;
	}
	.thanks .cont01 .inner .text02::before{
		content: "";
		background: url(img/common_text01.png)no-repeat;
		background-size: 742px;
		width: 742px;
		height: 309px;
		opacity: 0.2;
		position: absolute;
		top: 0px;
		left: 30px;
	}
	.thanks .cont01 .inner .button a{
		display: block;
		width: 700px;
		height: 100px;
		border-radius: 100px;
		font-size: 32px;
		line-height: 102px;
		font-weight: bold;
		color: #fff;
		background-image: linear-gradient(90deg, #e53e91,#1338af);
		margin: 70px auto 0;
		transition: all .5s;
		position: relative;
	}
	.thanks .cont01 .inner .button a:hover{
		opacity: 1;
		background-image: linear-gradient(-90deg, #e53e91,#1338af);
		transition: all .5s;
	}


/* footer
------------------------------------------------------------------------*/
	footer{
		padding: 60px 30px 120px;
		position: relative;
	}
	footer .copy{
		color: #fff;
		font-size: 24px;
		line-height: 1;
		text-align: center;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; 
	}


}/*SPの記述ここまで*/



/*mail form pro
----------------------------------------------------------*/
div#mfp_hidden {
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0px;
	margin: 0px;
}
div#mfp_hidden input {
	margin: 10px;
}
div.mfp_thanks {
	padding: 30px;
}
div.mfp_thanks p {
	line-height: 1.7em;
}
div.mfp_thanks ul.mfp_caution {
	margin: 0px;
	padding: 0px;
}
div.mfp_thanks ul.mfp_caution li {
	display: block;
	color: #C00;
	margin: 0px;
	padding: 5px 0px;
}
div#mfp_thanks {
	text-align: center;
	font-size: 18px;
	padding: 20px 0px;
}
div#mfp_thanks strong {
	color: #C00;
	font-size: 24px;
}
form#mailformpro dl dt {
	float: left;
	width: 160px;
	clear: both;
	font-size: 12px;
	padding: 10px 0px;
	text-align: right;
	border-top: solid 1px #CCC;
	margin: 0px;
}
form#mailformpro dl dd {
	border-top: solid 1px #CCC;
	margin: 0px;
	padding: 10px 5px 20px 170px;
	font-size: 12px;
	line-height: 1.5em;
	text-align: left;
}
form#mailformpro dl dd ul,form#mailformpro dl dd ol {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd ul li,form#mailformpro dl dd ol li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
form#mailformpro .must {
	display: block;
	background-color: #C00;
	border: solid 2px #C00;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
}
form#mailformpro .optionally {
	display: block;
	background-color: #06C;
	border: solid 2px #06C;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
}
form#mailformpro label {
	border-radius: 3px;
	margin: 3px;
	display: inline-block;
	white-space: nowrap;
}
table#mfp_confirm_table {
	color: #333;
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}
table#mfp_confirm_table tr.mfp_colored {
	background-color: #F6F7F9;
}
table#mfp_confirm_table tr.mfp_achroma {
	background-color: #FFF;
}
table#mfp_confirm_table tr th,table#mfp_confirm_table tr td {
	text-align: left;
	border-top: solid 1px #CCC;
	padding: 9px;
}
table#mfp_confirm_table tr th {
	white-space: nowrap;
	width: 200px;
}
table#mfp_confirm_table tr td {
	line-height: 1.5em;
	word-break: break-all;
}
div#mfp_phase_confirm {
	clear: both;
}
div#mfp_phase_confirm h4 {
	font-size: 36px;
	padding: 10px 0px 0px 0px;
	text-align: center;
}
div#mfp_overlay {
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_overlay_inner {
	color: #333;
	background-color: #FFF;
	padding: 15px;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #000;
	width: 640px;
	max-width: 90%;
}
div#mfp_overlay_background {
	background-color: #000;
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_loading_screen {
	z-index: 20000;
	opacity: 0.8;
	display: none;
	background-color: #000;
	position: absolute;
}
div#mfp_loading {
	z-index: 20001;
	position: absolute;
	display: none;
	width: 40px;
	height: 40px;
	background-image: url(img/mfp_loading.gif);
}
.mfp_colored {
	background-color: #F6F7F9;
}
.mfp_achroma {
	background-color: #FFF;
}
div.mfp_err {
	clear: both;
	display: none;
	text-align: left;
	margin: 5px 0px 0px 0px;
	padding: 3px 0px 5px 17px;
	color: #F00;
	font-size: 24px;
	line-height: normal;
	background-image: url(img/mfp_error.gif);
	background-repeat: no-repeat;
	background-position: 0px 14px;
}
.mfp_parent_error {
	border: solid 2px #F00;
}
form#mailformpro .problem {
	background-color: #FCC;
}
div#mfp_error {
	background-color: #FEE;
	border: solid 1px #F00;
	padding: 10px;
	display: none;
}
div#mfp_error p {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	text-align: center;
}
div#mfp_error p strong {
	font-size: 18px;
	color: #F00;
}
div#mfp_warning {
	color: #F00;
	background-color: #FEE;
	border: solid 1px #F00;
	padding: 10px;
	display: none;
	border-radius: 5px;
}
div#mfp_warning p {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	text-align: center;
}
div#mfp_warning p strong {
	font-size: 18px;
	color: #F00;
}
div#mfp_price {
	color: #C00;
	font-size: 36px;
	padding: 10px;
	font-weight: bolder;
}
div#mfp_price span {
	color: #666;
	font-size: 12px;
	font-weight: normal;
}
button.mfp_next,button.mfp_prev {
	font-size: 18px;
	margin: 10px;
	padding: 5px 10px;
}
button.mfp_next {
	float: right;
}
button.mfp_prev {
	float: left;
}
ul#mfp_phase_stat {
	padding: 10px;
	text-align: center;
}
ul#mfp_phase_stat li {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 5px;
	margin: 0px 5px;
	list-style: none;
	font-size: 14px;
}
ul#mfp_phase_stat li.mfp_phase_arrow {
	box-shadow: none;
	color: #999;
	padding: 8px 0px;
}
ul#mfp_phase_stat li.mfp_active_phase {
	box-shadow: 0px 1px 6px #000;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #0068B7;
	border: solid 2px #0068B7;
	font-weight: bolder;
	color: #FFF;
	text-shadow: 0px 1px 3px #000;
}
ul#mfp_phase_stat li.mfp_inactive_phase {
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #EEE;
	border: solid 2px #EEE;
	color: #999;
	box-shadow: 0px 1px 6px #CCC;
}
div#mfp_shopping_cart {
	border: solid 1px #CCC;
	margin: 0px;
	padding: 0px;
}
div#mfp_shopping_cart p {
	margin: 0px;
	text-align: center;
	padding: 20px 10px;
	font-size: 12px;
	background-color: #FEE;
}
table.mfp_shoppingcart {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
}
table.mfp_shoppingcart thead tr td {
	background-color: #EEE;
	border-bottom: solid 1px #CCC;
	text-align: center;
	font-size: 12px;
	padding: 5px;
}
table.mfp_shoppingcart tbody tr th,table.mfp_shoppingcart tbody tr td {
	font-size: 12px;
	padding: 5px;
	border-bottom: solid 1px #CCC;
}
table.mfp_shoppingcart tbody tr td select {
	display: block;
	margin: 0px auto;
	text-align: center;
}
table.mfp_shoppingcart tbody tr td select option {
	text-align: center;
}
table.mfp_shoppingcart tbody tr th span {
	display: block;
	font-weight: normal;
	font-size: 10px;
	color: #666;
	padding: 3px 0px;
}
table.mfp_shoppingcart tfoot tr td {
	padding: 5px;
	font-size: 16px;
	font-weight: bolder;
	color: #900;
}
td.msc_price {
	font-size: 12px;
	text-align: right;
}
div.mfp_buttons {
	clear: both;
	padding: 10px 0px;
	text-align: center;
}
div.mfp_buttons button#mfp_button_send {
	padding: 10px 100px;
	background-color: #1338af;
	border: 1px solid #1338af;
	color: #FFFFFF;
	cursor: pointer;
}
div.mfp_buttons button#mfp_button_cancel {
	padding: 10px 100px;
	border: 1px solid #1338af;
	color: #1338af;
	cursor: pointer;
	background:#fff;
}
.imagebutton {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
	background: none;
}
.mfp_element_checkbox,
.mfp_element_radio {
	vertical-align: middle;
	margin: 0px 2px;
}
.mfp_element_file {
	font-size: 12px;
	display: inline-block;
	padding: 10px 10px;
	vertical-align: middle;
	border: solid 1px #CCC;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC inset;
	background: #EEE;
}
.mfp_element_reset {
	color: #333;
}
button.mfp_next,button.mfp_prev {
	font-size: 14px;
}
input#mfp_reserve_item,input#mfp_reserve_date {
	display: none;
}
div#mfp_reserve_wrapper {
	position: relative;
	overflow: hidden;
	border: solid 1px #CCC;
}
div#mfp_reserve_inner {
	position: relative;
	padding: 0px 0px 0px 100px;
	overflow: auto;
}
div#mfp_reserve_wrapper table {
	border-spacing: 0px;
	border-collapse: collapse;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_label {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	background-color: #FEE;
	z-index: 100;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value {
	padding: 0px 0px 0px 0px;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
	cursor: pointer;
}
@media screen and (min-width: 880px){
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
	background-color: #E8EEF9;
}
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
	background-color: #0068B7;
	color: #FFF;
}
td.mfp_reserve_disabled {
	background-color: #CCC;
}
td.mfp_reserve_warning {
	background-color: #FFC;
}
div#mfp_reserve_wrapper table tr td,div#mfp_reserve_wrapper table tr th {
	border: solid 1px #CCC;
	padding: 0px 5px;
	font-size: 12px;
	text-align: center;
	font-family: Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-weight: normal;
	height: 20px;
	text-align: left;
}
td.mfp_reserve_week_0 {
	color: #F00;
	background-color: #FEE;
}
td.mfp_reserve_week_6 {
	color: #00F;
	background-color: #EEF;
}
div.mfp_ok {
	border: solid 1px #111;
	display: inline-block;
	padding: 1px 10px;
	margin-top: 20px;
	color: #111;
	font-size: 20px;
	display: none;
}
div.prefcodeWrapper {
	position: relative;
}
div.prefcodeResult {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 5px;
	border: solid 1px #CCC;
	background-color: #FFF;
	box-shadow: 0px 0px 5px #CCC;
	display: none;
}
div.prefcodeResult div {
	cursor: pointer;
}
@media screen and (min-width: 880px){
div.prefcodeResult div:hover {
	background-color: #C9EBFB;
}
}
div.prefcodeResult div.prefcodeNext {
	background-color: #EEE;
	text-align: center;
}
div.prefLoading {
	padding: 60px 100px;
	background: url(img/mfp_zip_loading.gif) no-repeat center center;
}
.hidefield {
	height: 0px;
	overflow: hidden;
}
.showfield {
	height: auto;
	overflow: visible;
}
div.mfp_attached_thumbnails {
	display: none;
	padding: 5px;
	margin: 5px auto;
	border: solid 1px #CCC;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC inset;
	background: #EEE;
}
div.mfp_attached_thumbnails ul {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	border: solid 4px #FFF;
	margin: 5px;
	box-shadow: 0px 2px 5px #999;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
	display: block;
	max-height: 100px;
	overflow: hidden;
}
div.mfp_attached_thumbnails ul li a img {
	display: block;
	max-width: 80px;
}
button.mfp_attached_reset {
	font-size: 14px;
}
div#mfp_OperationCheck div#mfp_OperationCheck_inner {
	display: none;
}
div#mfp_OperationCheck strong {
	background: #090;
	display: block;
	color: #222;
	text-align: center;
	border-radius: 3px;
}
div#mfp_OperationCheck * {
	padding: 0px;
	margin: 0px;
	font-size: 12px;
}
div#mfp_OperationCheck p {
	padding: 0px 5px;
	margin: 0px;
	font-size: 12px;
}
div#mfp_OperationCheck p a {
	color: #0C0;
	text-decoration: none;
}
@media screen and (min-width: 880px){
div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
	text-decoration: underline;
}
}
div#mfp_OperationCheck p button {
	border: none;
	background: none;
	color: #0C0;
	cursor: pointer;
}
div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
	line-height: 12px;
	font-size: 12px;
	list-style: none;
	vertical-align: middle;
}
div#mfp_OperationCheck ul li {
	padding: 5px 10px;
}
div#mfp_OperationCheck ul li
{
	text-decoration: underline;
}
button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
	border-radius: 5px;
	padding: 5px 10px 5px 2em;
	border: solid 1px #CCC;
	background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
	background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
	background: -moz-linear-gradient(top, #EEE, #CCC);
	background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
	text-shadow: 0px 2px 0px #FFF;
	font-size: 16px;
	cursor: pointer;
	outline: none;
	display: inline-block;
	margin: 5px auto;
}
button#mfp_recorder_record {
	background: url(img/mfp_record_disabled.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button#mfp_recorder_clear {
	background: url(img/mfp_record_remove.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button#mfp_recorder_restore {
	background: url(img/mfp_record_restore.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
	background: url(img/mfp_record_enabled.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
div#mfp_recorder_wrap {
	border: solid 1px #CCC;
	padding: 10px;
	text-align: center;
	margin: 5px auto;
}
td.request_image {
	width: 100px;
}
td.request_image img {
	max-width: 100px;
}
span.mfp_tips {
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #FCC;
	display: block;
	border-radius: 5px;
	padding: 10px;
	margin: 2px;
	box-shadow: 0px 2px 10px #999;
}
span.mfp_tips strong {
	color: #800040;
}
span.mfp_tips span {
	display: block;
	padding: 10px;
	color: #008080;
}
span.mfp_tips em {
	font-style: normal;
	color: #090;
	font-weight: bold;
}
@media screen and (max-width: 1240px) {
	div#mfp_overlay_background{
		width:1240px !important;
		height: 100% !important;
	}
	div#mfp_overlay{
		width:1240px !important;
	}
}
@media screen and (max-width: 881px) {
	table#mfp_confirm_table {
		font-size: 28px;
	}
	form#mailformpro dl dt {
		float: none;
		width: auto;
		font-size: 12px;
		padding: 5px;
		text-align: left;
	}
	form#mailformpro dl dd {
		clear: both;
		border-top: none;
		padding: 5px 15px;
		font-size: 12px;
		line-height: 1.5em;
	}
	div.mfp_buttons button {
		font-size: 14px;
	}
	div#mfp_phase_confirm h4 {
		font-size: 18px;
	}
	ul#mfp_phase_stat {
		padding: 0px;
		text-align: left;
	}
	ul#mfp_phase_stat li {
		text-align: center;
		padding: 5px 0px;
		border-radius: 3px;
		margin: 5px;
		list-style: none;
		font-size: 14px;
		width: 28%;
	}
	ul#mfp_phase_stat li.mfp_phase_arrow {
		bos-shadow: none;
		display: none;
	}
	table#mfp_confirm_table tr th {
		white-space: nowrap;
		width: 150px;
	}
	div#mfp_thanks {
		text-align: center;
		font-size: 18px;
		padding: 20px 0px;
	}
	div#mfp_thanks strong {
		color: #C00;
		font-size: 24px;
		display: block;
	}
	div#mfp_overlay_background{
		width:880px !important;
		height: 100% !important;
	}
	div#mfp_overlay{
		width:880px !important;
	}
	div#mfp_overlay_inner{
		font-size: 30px;
		color: #333;
		width:830px;
		max-width:none;
	}
	div.mfp_buttons button#mfp_button_send {
		font-size: 30px;
		padding: 10px 0;
		width:760px;
		margin-bottom: 10px;
	}
	div.mfp_buttons button#mfp_button_cancel {
		font-size: 30px;
		padding: 9px 0;
		width:760px;
		margin-right: 3px;
	}
}


