@charset "utf-8";
/* reset */
html {
	font-size: 62.5%;
	min-width: 100%;
}
body, header, nav, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, a, section {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}
object, embed {
	vertical-align: top;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
img, abbr, acronym, fieldset {
	border: 0;
}
ul, ol {
	list-style-type: none;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}



/* default */
body {
	color: #333;
	font-size: 16px;
	font-family: Helvetica, "Helvetica Neue", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "メイリオ", Meiryo, sans-serif;
	line-height: 1.4;
	width: 100%;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
@media screen and (min-width: 512px) {
	body {
		background: #EEE;
	}
}
@media screen and (min-width: 512px) {
	#wrapper {
		background: #FFF;
		margin: 0 auto;
		max-width: 480px;
		filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	}
}



a {
	color: #356386;
	text-decoration: none;
}
a:hover, a:focus {
	color: #4F89B9;
	text-decoration: none;
}
a:focus, *:focus {
	outline:none;
}
a img {
	outline:none;
}
input[type=search] {
	display: block;
	margin: 10px auto 0;
	padding: 10px;
	width: 90%;
    border: 1px solid #888;
    border-radius: 4px;
    font-size: 16px;
}

header + * {
	padding-top: 70px;
	width: 100%;
}

.mainContainer {
	width: 100%;
	background: #EEE;
}
.btnBlue {
	display: block;
	margin: 0 auto;
	padding: 10px;
    border: none;
	border-radius: 4px;
    background: #0ABDE3;
    color: #FFF;
    font-size: 16px;
	text-align: center;
	cursor: pointer;
}
.gmap {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 20px 0;
}
.pager li {
	margin: 0 20px;
	width: 100px;
	height: 40px;
	border-radius: 6px;
	background: #0ABDE3;
	line-height: 40px;
	text-align: center;
}
.pager li a {
	display: block!important;
	font-weight: bold!important;
	color: #FFF!important;
}
.titleArrow{
	position: relative;
	margin: 0 0 10px;
	width: 100%;
	height: 46px;
	background: #0ABDE3;
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	line-height: 46px;
	text-align: center
}
.titleArrow::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	display: block;
	width: 0;
	height: 0;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 10px solid #0ABDE3;
}
.bannerArea a {
	display: block;
	width: 100%;
}
.bannerArea img {
	width: 100%;
	vertical-align: bottom;
}



/*header*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	width: 100%;
	height: 70px;
	border-bottom: 1px solid #CCC;
	background: #FFF;
	z-index: 999;
}

header p.mark {
	position: absolute;
	top: 10px;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 60px;
}
header p.mark img {
	width: 50px;
}
header .logo a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: calc(100% - 160px);
	height: 70px;
}
header .logo img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

header p.toggle {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 0 8px;
	width: 70px;
    height: 70px;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	z-index: 999;
}
header p.toggle span {
	display: block;
	position: absolute;
	width: 60%;
	border-bottom: solid 4px #000;
	transition: all 0.3s;
}
header p.toggle span:nth-child(1) {
	top: 20px;
}
header p.toggle span:nth-child(2) {
	top: 34px;
}
header p.toggle span:nth-child(3) {
	top: 48px;
}
header p.navOpen span {
	opacity: 0;
	width: 60%;
	transition: all 0.3s;
}
header p.navOpen span:nth-child(1) {
	top: 34px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 1;
}
header p.navOpen span:nth-child(3) {
	top: 34px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 1;
}

header div.navArea {
	display:none;
	position: fixed;
    z-index: 999;
    top: 70px;
    left: 0;
    overflow: auto;
    width: 100%;
	height: calc(100% - 60px);
    -webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,.8);
    color: #000;
}
header div.navArea nav {
	background: #FFF;
}
header div.navArea nav ul li {
	margin: 0;
	width: 100%;
	height: 60px;
	border-bottom: 1px solid #CCC;
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	line-height: 60px;
}
header div.navArea nav ul li a {
	padding: 10px 20px;
	color: #000;
}
header div.navArea nav ul li a:hover {
	color: #356386;
}



/*footer*/
footer {
	clear: both;
	background: #000;
	overflow: hidden;
}

footer .allList {
	display: flex;
	justify-content: center;
	padding: 20px 10px;
	background: #0ABDE3;
}
footer .allList li {
	margin: 0 10px;
	width: calc(50% - 10px);
	border-radius: 6px;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	background: #FFF;
}
footer .allList li a {
	display: block;
	padding: 10px;
}

footer .pageTop {
	position: fixed;
	right: 10px;
	width: 50px;
	height: 50px;
	z-index: 99;
	opacity: 0.8;
	cursor: pointer;
}
footer .pageTop img {
	display: block;
	width: 100%;
}
footer .innner {
	padding: 10px 20px;
	width: 100%;
	height: 200px;
	color: #FFF;
	overflow: hidden;
	box-sizing: border-box;
}
footer .innner .footerlogo a {
	display: flex;
	align-items: center;
}
footer .innner .footerlogo img {
	margin: 10px 14px 0 0;
	width: 200px;
}

footer .innner ul {
	padding: 20px 10px;
	color: #FFF;
}
footer .innner ul li {
	margin-bottom: 10px;
}
footer .innner ul li:last-child {
	margin: 0;
}
footer .innner ul li a {
	color: #FFF;
}
footer .footerBottom {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	color: #FFF;
	font-size: 14px;
}



/*topSearch*/
.topSearch {
	padding: 20px 10px;
	background: #EEE;
}

.topSearch .searchTab {
	display: flex;
	justify-content: space-between;
}
.topSearch .searchTab li {
	position: relative;
	width: calc(50% - 10px);
	background: #FFF;
	border-bottom: 10px solid #EEE;
	text-align: center;
}
.topSearch .searchTab li.active {
	border-bottom: 4px solid #FFF;
}
.topSearch .searchTab li a {
	position: relative;
	display: block;
	padding: 10px;
	font-size: 18px;
	text-align: center;
	color: #356386;
}
.topSearch .searchTab li.active a {
	font-weight:  bold;
}
.topSearch .searchTab li.active a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	width: 80%;
	border-bottom: 6px solid #FFF200;
}

.topSearch .searchInput {
	display: none;
	padding: 10px 10px 14px;
	background: #FFF;
}
.topSearch div.active {
	display: block;
}

.inputTitle input {
	width: 100%;
}

.topSearch .inputLocation {
	display: flex;
	justify-content: space-between;
	margin: 20px 0 0;
}
.topSearch .inputLocation .fromGps {
	width: 100px;
}
.topSearch .inputLocation .fromGps button {
	margin: 0;
	padding: 50px 0 0;
	width: 100px;
	height: 100px;
	background-image: url("../img/icon_gps.png");
	background-size: 40px;
	background-repeat: no-repeat;
	background-position: center 10px;
	font-size: 12px;
	line-height: 1.2;	
}

.topSearch .inputLocation .fromText {
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding: 0;
	width: calc(100% - 110px);
}
.topSearch .inputLocation .fromText input[type=search] {
	margin: 0 auto 10px;
	width: 100%;
	font-size: 14px;
}
.topSearch .inputLocation .fromText button {
	width: 90%;
	font-size: 14px;
}

.topSearch #searchGps .gmap {
	margin-bottom: 10px;
}
.topSearch #searchGps input {
	width: 100%;
}
.topSearch #searchGps button {
	display: block;
	margin: 10px auto 0;
	width: 50%;
	font-size: 14px;
}



/*toppage*/
.nearShop {
    padding: 0 10px 20px;
    background: #EEE;
}
.nearShop div {
	padding: 20px 0;
	background: #FFF;
}
.nearShop .areaTitle {
	padding: 0 10px 10px;
	border-bottom: 6px solid #ABE1FE;
	font-size: 16px;
}
.nearShop .areaTitle span {
	display: inline-block;
	margin: 0 10px;
	color: #356386;
	font-size: 18px;
	font-weight: bold;
}
.searchResult {
	width: 100%;
	margin-bottom: 20px;
    padding: 0 10px;
}
.searchResult > li {
	padding: 20px 0;
	border-bottom: 6px solid #356386;
}
.searchResult .shopName a {
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	color: #356386;
}
.searchResult .shopName span {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	font-weight: normal;
	color: #000;
}

.searchResult .shopIcon {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	margin: 10px 0;
	width: 100%;
	height: 26px;
}
.searchResult .shopIcon li {
	margin-right: 6px;
	padding: 4px;
	padding-left: 24px;
	border: 1px solid #CCC;
	font-size: 12px;
	color: #666;
	background-repeat: no-repeat;
	background-position: 2px center;
}
.searchResult .shopIcon .shopStock {
	padding: 4px;
	font-weight: bold;
}
.searchResult .shopIcon .shopStock::before {
	display: inline-block;
	margin-right: 2px;
	content: "在庫:";
	font-weight: normal;
	color: #666;
}
.searchResult .shopIcon .stock01 {
	color: #e74c3c;
}
.searchResult .shopIcon .stock02 {
	color: #16a085;
}
.searchResult .shopIcon .shopIcon01 {
	background-image: url("../img/shopicon01.png");
}
.searchResult .shopIcon .shopIcon02 {
	background-image: url("../img/shopicon02.png");
}
.searchResult .shopIcon li.shopDistance {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 6px;
	padding-left: 20px;
	border: none;
	background-image: url("../img/icon_distance.png");
}

.searchResult .shopOpen {
	display: flex;
	flex-wrap: wrap;
}
.searchResult .shopOpen dt {
	width: 70px;
}
.searchResult .shopOpen dd {
	display: flex;
	width: calc(100% - 70px);
}
.searchResult .shopOpen dd::before {
	display: block;
	margin-right: 4px;
	content: "：";
}

.searchResult .shopAction {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-top: 10px;
}
.searchResult .shopAction button {
	padding: 4px;
	width: calc(100% - 80px);
	height: 44px;
	border: 2px solid #356386;
	color: #356386;
	border-radius: 4px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.searchResult .shopAction button span {
	display: flex;
	justify-content: center;
	align-items: center;
}
.searchResult .shopAction button span::before {
	display: inline-block;
	content: "";
	width: 40px;
	height: 32px;
	background-image: url("../img/icon_button01.png");
	background-repeat: no-repeat;
	background-position: 0 center;
}
.searchResult .shopAction button span::after {
	display: inline-block;
	content: "";
	width: 26px;
	height: 32px;
	background-image: url("../img/icon_button02.png");
	background-repeat: no-repeat;
	background-position: right center;
}
.searchResult .shopAction button.myShop {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	width: 70px;
	border: 2px solid #E9704C;
	color: #E9704C;
	font-size: 12px;
	line-height: 1.2;
}
.searchResult .shopAction button.myShopReg::before {
	display: block;
	content: "";
	width: 26px;
	height: 16px;
	background-image: url("../img/icon_mytenpo.png");
	background-repeat: no-repeat;
	background-position: center top;
}




.readmore {
	margin-bottom: 10px;
	text-align: center;
}
.btnBlue {
	display: inline-block;
	padding: 14px 30px;
}


.news {
	padding: 20px 10px;
	background: #FFF;
}
.news div {
	padding: 20px 10px;
	border: 4px solid #0ABDE3;
	border-radius: 10px;
	background: #FFF;
}
.news .title {
	padding-bottom: 10px;
	border-bottom: 4px solid #FFF200;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	line-height: 1;
}
.news .title span {
	display: block;
	margin-top: 6px;
	font-size: 16px;
	color: #356386;
}
.news ul {
	padding: 10px 0 30px;
}
.news ul li a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 10px;
	width: 100%;
	border-bottom: 1px solid #CCC;
	font-weight: bold;
	color: #333;
}
.news ul li .newsDate {
	width: 80px;
}
.news ul li .newsTitle {
	padding-left: 20px;
	width: calc(100% - 80px);
}


.pickupArea {
	position: relative;
	padding: 20px 10px;
	background: #0ABDE3;
	text-align: center;
}
.column {
	padding-bottom: 40px;
}

.pickupArea .title {
	display: inline-block;
	margin: 0 auto;
	padding-bottom: 10px;
	border-bottom: 6px solid #FFF200;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: #FFF;
	line-height: 1;
}
.pickupArea .title span {
	display: block;
	margin-top: 6px;
	font-size: 16px;
}

.pickupArea .bgWhite {
	position: relative;
	margin: 20px 0 0;
	padding: 10px;
	border-radius: 14px;
	background: #FFF;
	text-align: left;
}
.pickupArea .swiper-container {
	margin: 0 20px 20px;
	padding: 10px;
}

.pickupArea ul li a {
	display: block;
	width: 100%;
	color: #000;
}
.pickupArea ul li a .imgArea {
	position: relative;
	padding-top: 150%;
	width: 100%;
}
.pickupArea ul li a .imgArea img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: bottom;
}
.pickupArea ul li a dl {
	padding: 10px 0 0;
	width: 100%;
	line-height: 1.2;
}
.pickupArea ul li a  dl dt {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: bold;
}
.pickupArea ul li a dl dd {
	margin-bottom: 6px;
	font-size: 12px;
}
.pickupArea ul li a dl dd:last-child {
	margin: 0;
}
.pickupArea .readmore .btnBlue {
	width: 60%;
}

.pickupArea .swiper-button-white {
	margin-top: -10px!important;
	background-color: rgba(0,0,0,.8)!important;
	background-size: 10px 38px!important;
	width: 16px!important;
	height: 40px!important;
}

.ranking .swiper-container {
	margin: 0 20px;
	padding: 10px;
}
.ranking ul {
	display: flex;
}
.ranking ul li {
	position: relative;
	height: auto;
}
.ranking ul li p.ranking_genre {
	position: relative;
    margin: 0 0 10px;
    width: 100%;
    height: 46px;
    background: #0ABDE3;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    line-height: 46px;
    text-align: center;
}
.ranking ul li p.ranking_genre::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #0ABDE3;
}
.ranking ul li ul {
	padding: 10px 0 80px;
}
.ranking ul li li {
	width: calc(calc(100% - 20px) / 3);
    margin-right: 10px;
}
.ranking ul li li:last-child {
	margin: 0;
}
.ranking .readmore {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
	width: 100%;
}
.ranking .readmore .btnBlue {
	color: #FFF;
}



/*article*/
.articleContents .pickupArea {
    position: relative;
    padding: 20px 10px;
    background: #0ABDE3;
    text-align: center;
}
.articleContents .pickupArea  + .pickupArea {
	padding: 4px 10px 20px;
}
.articleContents .pickupArea .title {
    display: inline-block;
    margin: 0 auto;
    padding-bottom: 10px;
    border-bottom: 6px solid #FFF200;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #FFF;
    line-height: 1;
}
.articleContents .pickupArea .title span {
    display: block;
    margin-top: 6px;
    font-size: 16px;
}
.articleContents .pickupArea .bgWhite {
    position: relative;
    margin: 20px 0 0;
    padding: 20px 10px;
    border-radius: 14px;
    background: #FFF;
    text-align: left;
}
.articleContents .pickupArea ul {
	padding: 0 10px;
}
.articleContents .pickupArea ul li {
	display: flex;
	padding: 14px 0;
	border-bottom: 2px dotted #CCC;
}
.articleContents .pickupArea ul li:last-child {
	border-bottom: none;
}
.articleContents .pickupArea ul li a {
	font-weight: bold;
}
.articleContents .pickupArea ul li::before {
	content: "";
	display: block;
	margin-top: 2px;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-left: 10px solid #0ABDE3;
}
.articleContents .readmore {
    margin: 10px 0 0;
    text-align: center;
}
.articleContents .pickupArea .readmore .btnBlue {
    width: 60%;
}



/*modal*/
.modal-overlay {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    background-color: #666;
    opacity: 0.6;
}
.modal-content {
	position: fixed;
	top: 10px;
	left: 10px;
	margin: 0;
    width: calc(100% - 20px);
	height: calc(100vh - 20px);
	background: #FFF;
	overflow: hidden;
	z-index: 9999;
}
@media screen and (min-width: 512px){
	.modal-content {
		left: calc(50% - 240px);
		margin: 0;
		max-width: 480px;
		filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	}
}
.modal-content .btn-close {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	top: 3px;
	right: 3px;
    width: 38px;
	height: 38px;
	border: 2px solid #FFF;
	background-image: url("../img/icon_close.png");
	background-repeat: no-repeat;
	background-position: center 4px;
	color: #FFF;
	font-size: 10px;
	text-align: center;
    cursor: pointer;
}

.modal-title {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 6px solid #ABE1FE;
}

.modal-title .imgArea {
    position: relative;
	margin: 20px 10px;
    width: 150px;
	height: 150px;
}
.modal-title .imgArea img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
}
.modal-title .searchOption {
	margin: 20px 0;
	width: calc(100% - 180px);
	font-size: 12px;
	text-align: left;
	color: #666;
}
.modal-title .searchOption dd {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: bold;
	color: #000;
}

.modal-body {
	height: calc(100% - 252px);
	overflow-y: auto;
}



/*bookDetails*/
.bookDetails {
	padding: 0;
	background: #FFF;
	overflow: hidden;
}
.bookDetails img {
	display: block;
	float: left;
	padding: 20px 20px 10px;
	max-width: 150px;
	max-height: 200px;
}
.bookDetails div {
	padding: 20px;
}
.bookDetails h2 {
	font-size: 20px;
	font-weight: bold;
}
.bookDetails ul {
	margin: 4px 0 20px;
}
.bookDetails li {
	color: #000;
}
.bookDetails li span {
	color: #666;
}
.bookDetails li span::after {
	content: "：";
	display: inline-block;
	margin-right: 2px;
	color: #666;
}
.bookDetails div p {
	line-height: 1.6;
}



/*membersContents*/
#membersContents .title {
    position: relative;
    margin: 0 0 10px;
    width: 100%;
    height: 46px;
    background: #0ABDE3;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    line-height: 46px;
    text-align: center;
}
#membersContents .title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #0ABDE3;
}

#membersContents .bodymain_inner {
	padding: 0;
	text-align: center;
}
#membersContents .bodymain_inner p.t1 {
	padding: 20px 10px;
	font-weight: bold;
}
#membersContents .bodymain_inner p.t1normal {
	padding: 0 10px 20px;
	font-weight: normal;
	text-align: left;
}
#membersContents .bodymain_inner ul {
	padding: 0 10px 30px;
	text-align: left;
}
#area_login .bodymain_inner .in {
    padding: 20px 10px;
	background: #EEE;
}
#area_login .bodymain_inner .in form {
	padding: 10px;
	background: #FFF;
}
#area_login input {
	display: block;
    margin: 20px auto 0;
    padding: 10px;
    width: 100%;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 16px;
}
#area_login input[type=submit] {
    display: block;
    margin: 20px auto;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #0ABDE3;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}
#area_login input[type=checkbox] {
    display: none;
}
.login-etc {
	margin-bottom: 10px;
}
.bca-checkbox__label {
	position: relative;
	display: inline-block;
	padding: 5px 0 5px 30px;
	width: auto;
	cursor: pointer;
}
.bca-checkbox__label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	background: #FFF;
	border: 1px solid #666;
}
.bca-checkbox__label::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	display: block;
	margin-top: -9px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #0ABDE3;
	border-bottom: 3px solid #0ABDE3;
	opacity: 0;
	transform: rotate(45deg);
}
input[type=checkbox]:checked + .bca-checkbox__label::after {
    opacity: 1;
}
.bodymain_inner .in > .effect2 {
	margin: 20px auto 0;
	padding: 16px 0;
	border-radius: 10px;
	width: 80%;
	background: #FFF;
}
.bodymain_inner .in > .effect2 a {
	display: block;
	font-weight: bold;
}



/*contactContents*/
#contactContents .contact-form {
	background: #FFF;
}
#contactContents h2 {
    position: relative;
    margin: 0 0 10px;
    width: 100%;
    height: 46px;
    background: #0ABDE3;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    line-height: 46px;
    text-align: center;
}
#contactContents h2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #0ABDE3;
}

#contactContents .section {
	padding: 20px 10px;
	width: 100%;
	background: #F3F3F3;
}
#contactContents p.section {
	padding: 20px 10px;
	width: 100%;
	background: #FFF;
}
#contactContents .mailsend {
	background: #FFF;
	text-align: center;
}
#contactContents .mailsend p {
	margin-bottom: 10px;
}
#contactContents .mailsend p:first-child {
	font-weight: bold;
	font-size: 16px;
}
#contactContents .mail-description {
	background: #FFF;
}
#contactContents .message-box {
	margin-bottom: 10px;
}
#contactContents .section form {
	width: 100%;
}
#contactContents table {
	margin: 0;
	width: 100%;
	text-align: left;
}
#contactContents table th {
	display: block;
	margin-bottom: 10px;
	width: 100%;
	height: 20px;
	font-size: 16px;
	line-height: 20px;
}
#contactContents table th span {
	display: inline-block;
	margin-left: 5px;
	padding: 0 5px;
	font-size: 12px;
	line-height: 20px;
	border: 2px solid #E13131;
	color: #E13131;
	text-align: center;
}
#contactContents table th span.required {
	background: #E13131;
	color: #FFF;
	font-weight: normal;
	text-align: center;
}
#contactContents table td {
	display: block;
	margin: 0 auto 20px;
	padding: 10px;
	width: calc(100% - 20px);
	border-radius: 6px;
	background: #FFF;
}
#contactContents table td > span {
	display: block;
	padding: 0;
}
#contactContents table td > span + span  {
	padding: 10px 0 0;
}
#contactContents table input {
	display: block;
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 16px;
}
#contactContents table select {
	display: block;
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 16px;
}
#contactContents table input[type=radio] {
	display: none;
}
#contactContents table input[type=checkbox] {
	display: none;
}
#contactContents table td label {
	position: relative;
	display: inline-block;
	padding: 5px 30px;
	width: auto;
	cursor: pointer;
}
#contactContents table td label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	margin-top: -8px;
	width: 16px;
	height: 16px;
	border: 1px solid #666;
	border-radius: 50%;
	background: #FFF;
}
#contactContents table td label::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 9px;
	display: block;
	margin-top: -4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #0ABDE3;
    opacity: 0;
}
#contactContents table input[type=radio]:checked + label::after, #contactContents table input[type=checkbox]:checked + label::after {
    opacity: 1;
}
#contactContents table input[type=checkbox] + label {
	margin: 5px 0;
}
#contactContents table #RowMessageEmail1 input {
	margin: 0;
}
#contactContents table #RowMessageTel1 td > span {
    display: inline;
    padding: 10px 0;
}
#contactContents table #RowMessageTel1 input {
	display: inline-block;
	margin: 10px 0;
	width: 30%;
}
#contactContents table #RowMessageZip td {
	padding: 10px 10px 20px;
}
#contactContents table #RowMessageZip input {
	margin: 0;
}
#contactContents table #RowMessageZip #MailMessageZip {
	display: inline-block;
	margin: 10px 0 0;
	width: 200px;
}
#contactContents table textarea {
	width: 100%;
}
#contactContents table #MailMessageRoot {
	margin: 20px auto 0;
}
#contactContents table #MailMessageRootEtc {
	margin: 0;
}

#contactContents .submit {
	text-align: center;
}
#contactContents .submit input {
	display: inline-block;
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #0ABDE3;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
	font-weight: bold;
}
#contactContents .submit input:first-child {
	border: 2px solid #0ABDE3;
	background: #FFF;
	color: #0ABDE3;
}
.error-message {
	color: #F00;
	font-size: 12px;
}
.alert-message {
	color: #F00;
}