@charset "UTF-8";

/* 基本色 */
:root {
	--large-width: 1000px;
	--middle-width: 800px;
}
a {
    transition : all 0.3s;
}
a:link {
	color: #FF6666;
	text-decoration: none;
}
a:visited {
	color: #FF6666;
	opacity: 0.7;
}
a:hover {
	color: #ffb667;
}
a:active {
	color: #FF6666;
}
i {
	margin-right: 5px;
}

/* 基本設定： フォントサイズ */
@media (max-width: 599px) {
	:root {
		font-size: 14px;
	}
}
@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}
@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}
body {font-size: 16px;}

.pc {
	display: block!important;
}
.sp {
	display: none!important;
}
@media screen and (max-width: 480px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block!important;
	}
}

/* 基本設定： ページ全体 */
body {
	margin: 0;
	font-family: 'メイリオ',
		'Hiragino Kaku Gothic Pro', 
		sans-serif;
}
h2 {
	color: #8A795E;
	text-align: center;
	margin-bottom: 2em;
}
h2:before {
	content: '';
	display: inline-block;
	width: 70px;
	height: 70px;
	background-image: url(img/titlekazariright.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 3em;
}
h2:after {
	content: '';
	display: inline-block;
	width: 70px;
	height: 70px;
	background-image: url(img/titlekazarileft.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-left: 3em;
}
@media screen and (max-width: 480px) {
	h2 {
		font-size: 18px;
		line-height: 35px;
		white-space: nowrap;
	}
	h2:before {
		width: 35px;
		height: 35px;
		margin-right: .1em;
	}
	h2:after {
		width: 35px;
		height: 35px;
		margin-left: .1em;
	}
}

/* ヘッダー */
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

/* コンテンツA */
.conA {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.conA.compact {
	height: 450px;
	min-height: 0;
}
.conA h1 {
	margin: 0;
	letter-spacing: 0.01em;
}
.conA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 18px;
}
.conA img {
	width: 100%;
	max-width: 1600px;
	margin: 0;
}

@media (min-width: 768px) {
	.conA p {
		font-size: 14px;
		color: #8A795E;
	    line-height: 1.8;
	}
}
@media screen and (max-width: 480px) {
	.conA a {
		-webkit-transform : translateX(-50%);
		transform : translateX(-50%);
		left: 50%;
		width: 50%;
		padding: 5px 15px;
		border: solid 1px white;
		font-weight: 400;
	}
}

/* コンテンツB */
article.conB {
	background: #edfaf6;
}
.conB .col .mybtn{
	/* border: 1px solid #8A795E; */
	border-radius: 5px;
	padding: 5px 10px;
	margin-right: 5px;
	color: white;
	font-weight: 700;
	letter-spacing: 0.08em;
	background: #FF6666;
}
/* .conB .col .mybtn.wait.on{
	background: #FF6666;
} */


.conB .col {
	text-align: center;
	background: #edfaf6;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
}
/* .conB .col:hover,.conB .col.on:hover {
	background: rgba(255, 240, 103, 0.38);
	cursor : pointer;
} */
.conB .col.on {
	background: white;
}
.conB .container .col:first-child {
	border-left: 2px solid white;
}
.conB .container .col:last-child {
	border-bottom: 0;
}
.conB .col h3 {
	margin-top: 0;
	margin-bottom: 10px;
	padding: 5px;
	font-size: 16px;
	position: relative;
}
.conB .col h3:after {
	position: absolute;
	left: 0;
	bottom: 4px;
	content: '';
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px dotted #8A795E;
}
.conB .col .avatar {
	width: 100px;
	border-radius: 200px;
}

.conB .col .caption {
	text-align: left;
	font-size: 12px;
	padding: 5px 15px;
	height:60px;
}
.conB .col:nth-child(odd) h3 {
	background: #FFD7D7;
}
.conB .col:nth-child(even) h3 {
	background: #CEEAE8;
}
.conB .col .btn-sts {
	/* border: 1px solid #8A795E; */
	border-radius: 5px;
	padding: 5px 10px;
	margin-right: 5px;
	color: white;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.conB .col .btn-sts.wait {
	background: #FF6666;
}
.conB .col .btn-sts.on {
	background: #92B6C1;
}
.conB .col .btn-sts.off {
	background: #A3927C;
}
.conB .col .btn-sts.online {
	background: #4FC2C2;
}	

.conB .col .rate {
	color: #A8A8A8;
	text-stroke: 1px #8A795E;
	-webkit-text-stroke: 1px #8A795E;
}
.conB .col .rate b {
	color: #FDBA02;
}
.conB p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}
.conB a {
	color: #046380;
	color: var(--main-color);
	text-decoration: none;
}
.conB a:hover	{
	text-decoration: underline;
}
.conB .icon	{
	display: inline-block;
	margin-bottom: 20px;
	font-size: 40px;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
	background-color: #ddd;
	background-color: var(--icon-bk-color);
	color: #fff;
	color: var(--icon-color);
}
@media (min-width: 768px) {
	.conB .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.conB .col	{
		flex: 1;
	}
}
@media screen and (max-width: 480px) {
	.conB .container {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row; 
	}
	.conB .col	{
		width: 50%;
		box-sizing: border-box;
	}
}


/* コンテンツC */
.conC .col {
	padding: 20px;
}
.conC p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	color: #8A795E;
}
.conC .col h3 {
	margin-top: 3em;
	margin-bottom: 10px;
	text-align: center;
	padding: 5px;
	font-size: 18px;
	position: relative;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 1em;
	color: #8A795E;
}
.conC a:hover	{
	background-image: linear-gradient(
		rgba(255,255,255,0.2),
		rgba(255,255,255,0.2)
	);
}
@media (min-width: 768px) {
	.conC .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.conC .photo {
		flex: 3;
	}
	.conC .col {
		flex: 2;
		padding: 50px;
	}
}


/* コンテンツD */
article.conD {
	/* background: #FFFBDD; */
	background: #ffffff;
}
.conD .container {
	padding-top: 2px;
}
.conD p,.conD li {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	color: #8A795E;
}
.conD h4 {
	color: #FF6666;
	padding-top: 20px;
	display: block;
}
.conD .col .comment {
	display: flex;
	padding: 20px;
	border-top: 1px solid #8A795E;
	border-bottom: 1px solid #8A795E;
	border-right: 1px solid #8A795E;
	border-left: 5px solid #8A795E;
	margin-bottom: 2em;
	align-items: center;
}
.conD .col .comment .lead,.conD .col .qa .lead {
	margin-left: 20px;
	width: 100%;
}
.conD .col .qa .lead {
	margin-left: 20px;
	margin-right: 20px;
}
.conD .col .comment .lead h3,.conD .col .qa .lead h3 {
	font-size: 20px;
	font-weight: 400;
	border-bottom: 1px solid #8A795E;
	padding-bottom: 10px;
	margin-top: 0;
	margin-bottom: 15px;
}
.conD .col .comment .customer_image img {
	width: 150px;
}
.conD .col .comment:nth-child(even) .lead h3,
.conD .col .qa:nth-child(even) .lead h3 {
	color: #4FC2C2;
}
.conD .col .comment:nth-child(odd) .lead h3,
.conD .col .qa:nth-child(odd) .lead h3 {
	color: #FF6666;
}
.conD .col .qa {
	display: flex;
	padding: 20px;
	border: 1px solid #8A795E;
	border-radius: 20px;
	margin-bottom: 2em;
	align-items: center;
}
.conD .col .qa:nth-child(even) {
	/* border: 2px solid #4FC2C2; */
	border: 2px solid #666666;
}
.conD .col .qa:nth-child(odd) {
	/* border: 2px solid #FF6666; */
	border: 2px solid #666666;
}
.conD .comment,.conD .qa {
	background: white;
}
.conD .qaq:before {
	content: "Q.";
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 2.2rem;
	margin-right: 10px;
}
@media (min-width: 768px) {
	.conD .container {
		display: flex;
		flex-direction: row-reverse;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.conD .photo {
		flex: 0 0 400px;
	}
	.conD .col {
		flex: 1;
		padding: 50px;
	}
	.pb-0 .col,.conD .pb-0 {
		padding-bottom: 0;
	}
	.container.pt-0 {
		padding-top: 0;
	}
}
@media screen and (max-width: 480px) {
	.conD .col .comment .customer_image img {
		width: 100px;
		margin-bottom: 5px;
	}
	.conD .col {
		padding: 20px;
	}
	.conD .col .comment {
		flex-direction: column;
	}
	.conD .col .comment {
		border-left: 1px solid #8A795E;
	}
	.conD .col .comment .lead {
	    margin-left: 0;
	}
}


/* コンテンツE */
.conE .container {
	padding-top: 2px;
}
.conE .news{
	display:flex;
	flex-wrap: wrap;
	border: 1px solid #8A795E;
	border-top: none;
}
.conE .news dt{
	width: 20%;
	padding: 15px 25px;
	box-sizing: border-box;
	border-top: 1px solid #8A795E; 
}
.conE .news dd{
	padding: 15px;
	margin: 0;
	border-top: 1px solid #8A795E; 
	width: 80%;
	background: #fff;
	box-sizing: border-box;
}
.conE .news dd a{
	color: black;
}
.conE .news dd a:hover{
	color: #ffb667;
}
.btn-conE {
	border: 2px solid #FF6666;
	padding: 10px 0;
	text-align: center;
	display: block;
	border-radius: 50px;
	color: #FF6666;
	margin-top: 2em;
}
.btn-conE:hover {
	background: #FF6666;
	cursor : pointer;
	color: white;
}
@media (min-width: 768px) {
	.conE .container {
		display: flex;
		flex-direction: row-reverse;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.conE .photo {
		flex: 0 0 400px;
	}
	.conE .col {
		flex: 1;
		padding: 50px;
	}
}
@media screen and (max-width: 480px) {
	.conE .col {
		padding: 20px;
	}
	.conE .news dt {
		width: 100%;
		padding: 15px 15px 5px;
		color: #8A795E;
		font-weight: bolder;
	}
	.conE .news dd {
		width: 100%;
		border-top: none;
		padding-top: 0;
	}
	.btn-conE {
		padding: 10px 30px;
		margin-bottom: 1em;
	}
}

/* フッター */
footer {
	color: black;
	background-color: #FFD7D7;
	background-image: url(img/lace2.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	padding-bottom: 2em;
	background-size: contain;
}
footer .container {
	padding: 40px 20px;
}

@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.footA {
		flex: 0 0 40%;
	}
	.footB {
		flex: 0 0 60%;
	}
	.footC {
		flex: 0 0 100%;
	}
}
@media screen and (max-width: 480px) {
	footer {
		background-size: 80rem;
		padding-bottom: 0;
	}
}

/* フッターA */
.footA {
	margin-bottom: 30px;
	text-align: center;
}
.footA .btn-foot {
	border: 2px solid #FF6666;
	padding: 10px 30px;
	text-align: center;
	display: inline-block;
	border-radius: 50px;
	color: #FF6666;
	background: white;
}
.footA .btn-foot:hover {
	background: #FF6666;
	cursor : pointer;
	color: white;
}
.footA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
}
.footA a {
	color: inherit;
	text-decoration: none;
}
@media screen and (max-width: 480px) {
	.footA .btn-foot {
	    display: inline-block;
	    right: 10%;
	    bottom: 10%;
	    padding: 10px 30px;
	    border: solid 3px white;
	    border-radius: 200px;
	    background-color: #FF6666;
	    color: #fff;
	    font-size: 24px;
	    text-decoration: none;
	}
}

/* フッターB： フッターメニュー */
.footB div {
	margin-bottom: 20px;
}
.footB h3 {
	margin-top: 0;
	margin-bottom: 10px;
	border-bottom: solid 1px currentColor;
	font-size: 14px;
}
.footB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footB a {
	display: block;
	padding: 5px 15px;
	color: inherit;
	font-size: 14px;
	text-decoration: none;
	color: black;
	display: inline-block;
	border-radius: 15px;
}
.footB a:hover {
	background-color: rgba(255, 103, 103, 0.31);
}

@media (min-width: 768px) {
	.footB {
		display: flex;
	}
	.footB div {
		flex: 1;
	}
	.footB div:not(:first-child) {
		margin-left: 40px;
	}
}

/* フッターC */
.footC {
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

/* ヘッダー */
header {
	width: 100%;
	background-color: #FFD7D7;
	background-image: url(img/lace1.png);
	background-repeat: repeat-x;
	padding-top: 2em;
	background-size: contain;
	position: relative;
}
.nohero header {
	position: static;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}
@media screen and (max-width: 480px) {
	header {
		padding-top: 20px;
		background-size: 80rem;
	}
}
/* ヘッダーA */
.headA {
	display: inline-block;
	text-decoration: none;
}
.headA img {
	width: 100%;
}
@media screen and (max-width: 480px) {
	.headA img {
		width: 100%;
		margin: 0 10px;
	}
}

/* ヘッダーB */
.headB ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background: #FFA0A0;
	width: 100%;
	display: flex;
	justify-content: center;
	color: white;
}
.headB a {
	display: block;
	padding: 15px;
	color: inherit;
	text-decoration: none;
}
.headB a:hover {
	background-color: rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
	header .container {
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}
	header .container img {
		width: 500px;
	}
}
@media screen and (max-width: 480px) {
	.headB ul {
		display: flex;
		flex-direction: column;
	}
}


/* ヘッダーC */

@media (max-width: 767px) {
	/* 小さい画面用の設定 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.headC {
		margin-right: 10px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.5;
		cursor: pointer;
	}
	.headC:hover {
		opacity: 0.3;
	}
	.headB {
		display: none;
	}
}
@media (min-width: 768px) {
	/* 大きい画面用の設定 */
	.headC {
		display: none;
	}
	.headB {
		display: block !important;
	}
}

/* ヘッダーC： トグルボタン */

@media (max-width: 767px) {
	/* 小さい画面用の設定 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.headC {
		margin-right: 10px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.5;
		cursor: pointer;
	}

	.headC:hover {
		opacity: 0.3;
	}

	.headB {
		display: none;
	}
}

@media (min-width: 768px) {
	/* 大きい画面用の設定 */
	.headC {
		display: none;
	}

	.headB {
		display: block !important;
	}
}

/* ログインフォーム */
#feedback-page{
	text-align:center;
}

.form {
	margin: 5px;
}

#form-main{
	width:100%;
	padding-top:0px;
}

#form-div {
	background-color: #FDEBEB;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 10px;
	width: 250px;
	height: 195px;
	left: 0;
	top: 0;
	position: absolute;
	box-sizing: border-box;
}

.feedback-input {
	color:#3c3c3c;
	font-family: Helvetica, Arial, sans-serif;
	font-weight:500;
	font-size: 12px;
	border-radius: 0;
	line-height: 14px;
	background-color: #fbfbfb;
	padding: 5px 5px 5px 5px;
	margin-bottom: 10px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0);
}

.feedback-input:focus{
	background: #fff;
	box-shadow: 0;
	border: 3px solid #3498db;
	color: #3498db;
	outline: none;
  padding: 13px 13px 13px 54px;
}

.focused{
	color:#30aed6;
	border:#30aed6 solid 3px;
}

input:hover, textarea:hover,
input:focus, textarea:focus {
	background-color:white;
}

#button-pink{
	width: 100%;
	border: #FF6666 solid 3px;
	border-radius: 50px;
	cursor:pointer;
	background-color: white;
	color:#FF6666;
	font-size:12px;
	padding:8px 15px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	font-weight:700;
}

#button-blue:hover{
	background-color: rgba(0,0,0,0);
	color: #0493bd;
}
	
.submit:hover {
	color: #3498db;
}
	
.forgot {
	color: #FF6666;
	text-align: center;
	font-size: 12px;
	margin-bottom: 0;
}

@media only screen and (max-width: 580px) {
	#form-div{
		position: relative;
		width: 100%;
		height: 200px;
		background-color: #FFA0A0;
	}
	.forgot {
		display: block;
	    margin: 0;
	    color: white;
	}
}

/* form */
.cp_form {
	position: relative;
	width: 600px;
	margin: 40px auto;
	padding: 1em 2em;
}
.cp_form .cp_radio, .cp_group {
	position: relative;
	margin-top: 2.25rem;
	margin-bottom: 2.25rem;
}
.cp_form .cp_group input[type=button],
.cp_form .cp_group input[type=submit],
.cp_form .cp_group input[type=checkbox],
.cp_form .cp_group input[type=radio],
.cp_form .cp_group input[type=text],
.cp_form .cp_group input[type=tel],
.cp_form .cp_group input[type=password],
.cp_form .cp_group input[type=email],
.cp_form .cp_group input[type=url],
.cp_form .cp_group input[type=date],
.cp_form .cp_group input[type=number],
.cp_form .cp_group textarea,
.cp_form .cp_group .cp_file .file_text,
.cp_form .cp_group select {
	font-family: inherit;
}
.cp_form .cp_group input {
	height: 1.9rem;
}
.cp_form .cp_group textarea {
	resize: vertical;
}
.cp_form .cp_group select::-ms-expand {
	display: none;
}
.cp_form .cp_ipselect {
	position: relative;
	width: 100%;
	margin: 2em auto;
}
.cp_form .cp_sl {
	position: relative;
	font-size: 1rem;
	font-family: inherit;
	background-color: transparent;
	width: 100%;
	padding: 10px 10px 10px 0;
	border-radius: 0;
	border: none;
}
.cp_form .cp_sl:focus {
	outline: none;
	border-bottom: 1px solid rgba(0,0,0, 0);
}
.cp_form .cp_ipselect .cp_sl {
	-webkit-appearance: none;
	        appearance: none;
}
.cp_form .cp_ipselect:after {
	position: absolute;
	top: 18px;
	right: 10px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid rgba(0, 0, 0, 0.3);
	pointer-events: none;
}
.cp_form .cp_sl_selectlabel {
	color: #b3b3b3;
	position: absolute;
	pointer-events: none;
	left: 0;
	top: 10px;
	transition: 0.2s ease all;
}
.cp_form .cp_sl:focus ~ .cp_sl_selectlabel,
.cp_form .cp_sl:valid ~ .cp_sl_selectlabel {
	font-size: 0.8rem;
	color: #da3c41;
	top: -20px;
	transition: 0.2s ease all;
}
.cp_form .cp_sl_selectbar {
	position: relative;
	display: block;
	width: 100%;
}
.cp_form .cp_sl_selectbar:before,
.cp_form .cp_sl_selectbar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 1px;
	position: absolute;
	background: #da3c41;
	transition: 0.2s ease all;
}
.cp_form .cp_sl_selectbar:before {
	left: 50%;
}
.cp_form .cp_sl_selectbar:after {
	right: 50%;
}
.cp_form .cp_sl:focus ~ .cp_sl_selectbar:before,
.cp_form .cp_sl:focus ~ .cp_sl_selectbar:after {
	width: 50%;
}
.cp_form .cp_sl_highlight {
	position: absolute;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}
.cp_form .cp_group .cp_label {
	position: absolute;
	top: 0.25rem;
	pointer-events: none;
	padding-left: 0.125rem;
	z-index: 1;
	color: #b3b3b3;
	font-size: 1rem;
	font-weight: normal;
	-webkit-transition: all 0.28s ease;
	        transition: all 0.28s ease;
}
.cp_form .cp_group .bar {
	position: relative;
	border-bottom: 0.0625rem solid #999999;
	display: block;
}
.cp_form .cp_group .bar::before {
	content: '';
	height: 0.125rem;
	width: 0;
	left: 50%;
	bottom: -0.0625rem;
	position: absolute;
	background: #da3c41;
	-webkit-transition: left 0.28s ease, width 0.28s ease;
	        transition: left 0.28s ease, width 0.28s ease;
	z-index: 2;
}
.cp_form .cp_group input[type=button],
.cp_form .cp_group input[type=submit],
.cp_form .cp_group input[type=checkbox],
.cp_form .cp_group input[type=radio],
.cp_form .cp_group input[type=text],
.cp_form .cp_group input[type=tel],
.cp_form .cp_group input[type=password],
.cp_form .cp_group input[type=email],
.cp_form .cp_group input[type=url],
.cp_form .cp_group input[type=date],
.cp_form .cp_group input[type=number],
.cp_form .cp_group textarea {
	display: block;
	background: none;
	padding: 0.125rem 0.125rem 0.0625rem;
	font-size: 1rem;
	border-width: 0;
	border-color: transparent;
	line-height: 1.9;
	width: 100%;
	color: transparent;
	-webkit-transition: all 0.28s ease;
	        transition: all 0.28s ease;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.cp_form .cp_group select,
.cp_form .cp_group input:focus,
.cp_form .cp_group input:valid,
.cp_form .cp_group textarea:focus,
.cp_form .cp_group textarea:valid {
	color: #333333;
}
.cp_form .cp_group select ~ .cp_label,
.cp_form .cp_group input:focus ~ .cp_label,
.cp_form .cp_group input:valid ~ .cp_label,
.cp_form .cp_group textarea:focus ~ .cp_label,
.cp_form .cp_group textarea:valid ~ .cp_label {
	font-size: 0.8rem;
	color: #da3c41;
	top: -1rem;
	left: 0;
}
.cp_form .cp_group select:hover,
.cp_form .cp_group input:focus,
.cp_form .cp_group textarea:focus {
	outline: none;
}
.cp_form .cp_group select:hover ~ .cp_label,
.cp_form .cp_group input:focus ~ .cp_label,
.cp_form .cp_group textarea:focus ~ .cp_label {
	color: #da3c41;
}
.cp_form .cp_group select:hover ~ .bar::before,
.cp_form .cp_group input:focus ~ .bar::before,
.cp_form .cp_group textarea:focus ~ .bar::before {
	width: 100%;
	left: 0;
}
.cp_form .checkbox label,
.cp_form .cp_radio label {
	position: relative;
	cursor: pointer;
	padding-left: 2rem;
	text-align: left;
	color: #333333;
	display: block;
}
.cp_form .checkbox input,
.cp_form .cp_radio input {
	width: auto;
	opacity: 0.00000001;
	position: absolute;
	left: 0;
}
.cp_form .radio {
	margin-bottom: 1rem;
}
.cp_form .radio .ch_bar {
	position: absolute;
	top: -0.25rem;
	left: -0.25rem;
	cursor: pointer;
	display: block;
	font-size: 1rem;
	-webkit-user-select: none;
	        user-select: none;
	color: #999999;
}
.cp_form .radio .ch_bar::before,
.cp_form .radio .ch_bar::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	margin: 0.25rem;
	width: 1rem;
	height: 1rem;
	-webkit-transition: -webkit-transform 0.28s ease;
	        transition:         transform 0.28s ease;
	border-radius: 50%;
	border: 0.125rem solid currentColor;
}
.cp_form .radio .ch_bar::after {
	-webkit-transform: scale(0);
	        transform: scale(0);
	background-color: #da3c41;
	border-color: #da3c41;
}
.cp_form .radio label:hover .ch_bar {
	color: #da3c41;
}
.cp_form .radio input:checked ~ .ch_bar::after {
	-webkit-transform: scale(0.5);
	        transform: scale(0.5);
}
.cp_form .radio input:checked ~ .ch_bar::before {
	color: #da3c41;
}
.cp_form .checkbox {
	margin-top: 3rem;
	margin-bottom: 1rem;
}
.cp_form .checkbox .ch_bar {
	color: #999999;
	position: absolute;
	top: 0;
	left: 0;
	width: 1rem;
	height: 1rem;
	z-index: 0;
	border: 0.125rem solid currentColor;
	border-radius: 0.0625rem;
	-webkit-transition: border-color 0.28s ease;
	        transition: border-color 0.28s ease;
}
.cp_form .checkbox .ch_bar::before,
.cp_form .checkbox .ch_bar::after {
	position: absolute;
	height: 0;
	width: 0.2rem;
	background-color: #da3c41;
	display: block;
	-webkit-transform-origin: left top;
	        transform-origin: left top;
	border-radius: 0.25rem;
	content: '';
	-webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
	        transition: opacity 0.28s ease, height 0s linear 0.28s;
	opacity: 0;
}
.cp_form .checkbox .ch_bar::before {
	top: 0.65rem;
	left: 0.38rem;
	-webkit-transform: rotate(-135deg);
	        transform: rotate(-135deg);
	-webkit-box-shadow: 0 0 0 0.0625rem #ffffff;
	        box-shadow: 0 0 0 0.0625rem #ffffff;
}
.cp_form .checkbox .ch_bar::after {
	top: 0.3rem;
	left: 0;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.cp_form .checkbox label:hover .ch_bar {
	color: #da3c41;
}
.cp_form .checkbox input:checked ~ .ch_bar {
	color: #da3c41;
}
.cp_form .checkbox input:checked ~ .ch_bar::after,
.cp_form .checkbox input:checked ~ .ch_bar::before {
	opacity: 1;
	-webkit-transition: height 0.28s ease;
	        transition: height 0.28s ease;
}
.cp_form .checkbox input:checked ~ .ch_bar::after {
	height: 0.5rem;
}
.cp_form .checkbox input:checked ~ .ch_bar::before {
	height: 1.2rem;
	-webkit-transition-delay: 0.28s;
	        transition-delay: 0.28s;
}
.cp_form .radio + .radio,
.cp_form .checkbox + .checkbox {
	margin-top: 1rem;
}
/* File input */
.cp_form .cp_group .cp_file {
	position: relative;
}
.cp_form .cp_group .cp_file .title {
	position: static;
}
.cp_form .cp_group .cp_file .button {
	font-size: 1em;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	padding: .5rem 1.2em 0 1.2em;
	cursor: pointer;
	-webkit-transition: background-color 0.25s;
	        transition: background-color 0.25s;
	color: #ffffff;
	border-radius: 0;
	background-color: #999999;
}
.cp_form .cp_group .cp_file .file_input {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	padding: 0;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-appearance: none;
					appearance: none;
}
.cp_form .cp_group .cp_file .file_text {
	position: relative;
	box-sizing: border-box;
	padding: 6px 10px;
	-webkit-transition: border-color 0.6s;
	        transition: border-color 0.6s;
	border-bottom: 0.0625rem solid #999999;
	outline: none;
}
.cp_form .cp_group .cp_file .file_text::before {
	content: '';
	height: 2px;
	width: 0;
	left: 50%;
	bottom: -1px;
	position: absolute;
	background: #da3c41;
	-webkit-transition: left 0.28s ease, width 0.28s ease;
	        transition: left 0.28s ease, width 0.28s ease;
	z-index: 2;
}
.cp_form .cp_group .cp_file .file_input:hover ~ .file_text::before {
	width: 100%;
	left: 0;
}
.cp_form .cp_group .cp_file label:hover .button {
	background-color: #da3c3c;
}
.cp_form .cp_group .cp_file label:active .button {
	background-color: #b02f2f;
}
.cp_form .btn_cont {
	text-align: center;
}
.cp_form .btn {
	position: relative;
	background: currentColor;
	border: 1px solid currentColor;
	font-size: 1.1rem;
	color: #FF6666;
	border-radius: 200px;
	margin: 3rem 0;
	padding: 0.75rem 3rem;
	cursor: pointer;
	-webkit-transition: background-color 0.28s ease, color 0.28s ease, -webkit-box-shadow 0.28s ease;
	        transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
	overflow: hidden;
	-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
	        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}
.cp_form .btn span {
	color: #ffffff;
	position: relative;
	z-index: 1;
}
.cp_form .btn::before {
	content: '';
	position: absolute;
	background: #071017;
	border: 50vh solid #1d4567;
	width: 30vh;
	height: 30vh;
	border-radius: 50%;
	display: block;
	top: 50%;
	left: 50%;
	z-index: 0;
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(0);
	        transform: translate(-50%, -50%) scale(0);
}
.cp_form .btn:hover {
	color: white;
	-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3);
	        box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3);
	border: 3px solid #FF6666;
}
.cp_form .btn:hover span {
	color: #FF6666;
}
.cp_form .btn:focus {
	outline: none;
}
.cp_form .attention {
	background: #FFFBDD;
	padding: 20px;
	border-radius: 10px;
	color: #8A795E;
}
.cp_form .attention span {
	text-align: center;
	display: block;
}	
@media screen and (max-width: 480px) {
	.cp_form {
		width: 100%;
		padding: 0;
	}
}

/* テーブル */
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 650px;
  table-layout: fixed;
}

table tr {
  background-color: #fff;
  border: 1px solid #bbb;
  padding: .35em;
}
table th,
table td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
}
table th {
  font-size: .85em;
  background-color: #eee;
  width: 30%;
}
.txt{
   text-align: left;
   font-size: .85em;
}
.price{
   text-align: right;
}
@media screen and (max-width: 600px) {
  table {
    border: 0;
    width:100%
  }
  table th{
    background-color: #eee;
    display: block;
    border-right: none;
    width: 100%;
    box-sizing: border-box;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em;
    border-right: none;
  }
  
  table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}

/* modal */
.popupModal1 {
	position: absolute;
	display: inline-block;
	right: 15%;
	bottom: 10%;
	padding: 10px 30px;
	border: solid 3px white;
	border-radius: 200px;
	background-color: #FF6666;
	font-size: 14px;
	text-decoration: none;
	z-index: 99;
}
.popupModal1 label {
	color: white;
}
.popupModal1 label.pop13 {
	color: #FF6666;
}
.conA a:hover	{
	border: solid 3px #FF6666;
	background: white;
	cursor : pointer;
	color: #FF6666;
}
.popupModal1 > input { /* ラジオボックス非表示 */
    display: none;
}
.popupModal1 > input:nth-child(1) + label { 
    cursor: pointer;
}
.modalPopup2 { /* 初期設定 ポップアップ非表示 */
    display: none;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 {/* ラジオ１ チェックでポップアップ表示 */
    display: block;
    z-index: 998;
    position: fixed;
    width: 90%;
    height: 80%;
    border-radius: 20px;
    left: 50%;
    top: 50%;
    margin-top: 30px;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #FFFBDD;
    overflow: hidden;
    border: 5px solid #ffa0a0;
    box-sizing: border-box;
}
@media (min-width: 768px) {/* PCのときはページの真ん中の600x600領域 */
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2{
         width: 600px;
         height: 600px;

    }
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
     left: 50% !important;
     top: 50% !important;
     margin-left: 270px !important;
     margin-top: -310px !important;
}
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div {/* */
    overflow:auto;
    -webkit-overflow-scrolling:touch;
    display: inline-block;
    width: 100%;
    height: 100%;
	padding: 30px;
	box-sizing: border-box;
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div > iframe {
    width: 100%;
      height:100%;
      border:none;
      display:block;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div > img {/* ポップアップの中の要素 */
max-width: 100%;
}
.popupModal1 > input:nth-child(1) + label ~ label {
    display: none;/* ラジオ１ 以外のラベルを初期は非表示 */

}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 997;
    text-indent: -999999px;
    overflow: hidden;
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
    position: fixed;
    left: 10px;
    bottom: 20px;
    z-index: 999;
    width: 44pt;
    height: 44pt;
    font-size: 40px;
    border-radius: 50%;
    line-height: 44pt;
    text-align: center;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}

.popupModal1 > input:nth-child(1) + label + input:nth-child(3):checked + label + input:nth-child(5) + label + .modalPopup2,
.popupModal1 > input:nth-child(1) + label + input:nth-child(3) + label + input:nth-child(5):checked + label + .modalPopup2 { /* ラジオ２と３ どっちかチェックでポップアップ非表示 */
    display: none;
}


.modalPopup2 {
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.popupModal1 .modalTitle {
     padding-bottom: .5em;
     margin: 1em 0;
     border-bottom: 1px dotted #8A795E;
     font-weight: bold;
     color: #FF6666;
}
.popupModal1 .modalMain {
     color:#222;
     text-align: left;
     font-size: 14px;
     line-height: 1.8em;
}
.popupModal1 .modalMain p {
     color:#8A795E;
     text-align: center;
     font-size: 14px;
     line-height: 2;
     margin-bottom: 1.3em;
}
@media screen and (max-width: 480px) {
	.popupModal1 {
		position: absolute;
		display: inline-block;
		right: 5%;
		bottom: 10%;
		padding: 5px 15px;
		border: solid 2px white;
		font-size: 12px;
	}
}