@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;700&display=swap');

@media screen and (min-width:800px){
	.no-pc{
		display:none!important;
	}
}
@media screen and (max-width:799px){
	.no-sp{
		display:none!important;
	}
}

/* ==============================================
CSS reset
=============================================== */
* ,*:before ,*:after {
	box-sizing:border-box;
	text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}
html ,body ,div ,p ,span ,iframe ,a ,img ,
h1 ,h2 ,h3 ,h4 ,h5 ,h6 ,
dl ,dt ,dd ,ol ,ul ,li ,
form ,label ,
table ,thead ,tbody ,tfoot ,tr ,th ,td ,
blockquote ,q ,pre ,
header ,footer ,nav ,article ,section ,aside {
	margin:0;
	padding:0;
	border:0 none;
	vertical-align:baseline;
	font-size:inherit;
	font-weight:inherit;
}
button ,input ,textarea ,select {
	font-size:110%;
	padding:0.3em;
	font-family:inherit;
	line-height:1.6;
}
input[type="submit"] ,button {
	padding:0.5em 2em;
	font-family:inherit;
}

html ,body {
	min-height:100%;
	height:100%;
	font-family:'Noto Serif JP',serif;
	line-height:1.6;
}
a {
	color:inherit;
	text-decoration:none;
	cursor:pointer;
	transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
}
a:hover {
	text-decoration:none;
}

img {
	vertical-align:top;
	max-width:100%;
    max-height:100%;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}

ol ,ul ,li {
	list-style:none;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

/* ============================================
common pc
=============================================== */

html{
    scroll-behavior: smooth;
}

html,body{
	margin:0;
	padding:0;
}

body{
	position:relative;
	font-size:16px;
	color:#000;
	background-color:#fff;
}

@media screen and (min-width:800px){
	#bgLayer{
		min-width: 1200px;
		max-width: 1920px;
		width:100%;
		margin:0 auto;
	}
}

@media screen and (max-width:799px){
	#bgLayer{
		width:480px;
		min-width:480px;
		max-width:480px;
		margin:0 auto;
	}
}

img{
	height:auto;
	display:inline-block;
	border:0 none;
}

h1,p{
	margin:0;
}

em {
	font-style: normal;
}

strong {
    font-weight: normal;
}

.tel-link-a{
	pointer-events: auto;
}

.all-center-full{
	width:100%;
	max-width:100%;
	margin:0 auto;
}

.all-center-1600{
	width:1600px;
	max-width:100%;
	margin:0 auto;
}
.all-center-1200{
	width:1200px;
	max-width:100%;
	margin:0 auto;
}
.all-center-1000{
	width:1000px;
	max-width:100%;
	margin:0 auto;
}
.all-center-800{
	width:800px;
	max-width:100%;
	margin:0 auto;
}


dl,dt,dd{
	display: block;
	margin: 0;
	padding: 0;
}

header,section,footer{
	max-width: 100%;
}

.object{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.drop-shadow{
	filter: drop-shadow(0 0 1px #000);
}

.pointer:hover {
    opacity: 0.8;
}

.pointer2:hover {
    opacity: 0.8;
	filter:brightness(0);
}

/* ==============================================
common SP
=============================================== */

@media screen and (max-width:799px){	
	.tel-link-a{
		pointer-events: auto;
	}

	.sp-LR15 {
		padding-left:15px !important;
		padding-right:15px !important;
	}

	.sp-L15 {
		padding-left:15px !important;
	}
	
	.sp-R15 {
		padding-right:15px !important;
	}
}

/* ====================================================================
	flex
==================================================================== */
.flex {
	display:flex;
	justify-content:center;
	align-items:center;
}
.flex.left {
	justify-content:flex-start;
}
.flex.right {
	justify-content:flex-end;
}
.flex.between {
	justify-content:space-between;
}
.flex.around {
	justify-content:space-around;
}
.flex.evenly {
	justify-content:space-evenly;
}

.flex.top {
	align-items:flex-start;
}
.flex.bottom {
	align-items:flex-end;
}
.flex.stretch {
	align-items:stretch;
}

.flex.base {
	align-items:baseline;
}

.flex.column {
	flex-direction:column;
}
.flex.rev {
	flex-direction:row-reverse;
}
.flex.column.rev {
	flex-direction:column-reverse;
}

.flex.wrap {
	flex-wrap:wrap;
}

.flex.col2 > * {
	width:calc(100% / 2);
}
.flex.col3 > * {
	width:calc(100% / 3);
}

.flex > .half {
	width:50%;
}
.flex > .full {
	width:100%;
}

.height-inherit > * {
	height:100%;
}
.height-inherit-all * {
	height:100%;
}

/* =============================
common caption
================================ */

.caption-cover{
	overflow:hidden;
}
.caption{
	text-align: center;
}

.caption-en,
.caption-ja{
	display: block;
	line-height: 1.4;
}

.caption-en{
	font-size: 320%;
}
.caption-en:after{
	content:"";
	display:block;
	width:100%;
	height:3px;
	background:linear-gradient(90deg,#09f0,#09f9,#003f,#09f9,#09f0);
}
.caption-ja{
	font-size: 200%;
}

@media screen and (max-width:799px){
	.caption-en {
		font-size: 230%;
	}

	.caption-ja {
		font-size: 140%;
	}
}

/* =====================================================================
common main
======================================================================== */
main > section {
	scroll-margin-top:6em;
}
.waku{
	padding-top:6em;
}
.waku.only {
	padding-bottom:6em;
}

.tel-wrapper{
	padding: 0 0.5em;
}

.tel-icon{
	width: 50px;
}

.tel{
	font-size: 150%;
	padding: 0 0.3em;
}

.logo{
	width: 390px;
}

/* ==
nav
==== */

.nav-ul1-cover{
	background-color: #004098;
}

.nav-ul1{
	max-width:1200px;
	margin:0 auto;
	padding: 0 0.2em;
}

.nav-li:first-child {
    background: linear-gradient(90deg, #ccc 1%,transparent 0%) no-repeat 50% 50%;
    background-size: 100% 75%;
}

.nav-li {
    width: calc(100% / 5);
    text-align: center;
    background: linear-gradient(90deg, #ccc 1%,transparent 0%) no-repeat 50% 50%;
    background-size: 100% 75%;
	position: relative;
}

.nav-li:last-child {
    background: linear-gradient(90deg, #ccc 1%,transparent 0%) no-repeat 50% 50%,linear-gradient(270deg,#ccc 1%, transparent 0%) no-repeat 50% 50%;
    background-size: 100% 75%;
}

.nav-a{
	border-top:solid 5px transparent;
	border-bottom:solid 5px transparent;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:0.8em 0;
}

.nav-a::after {
    content: "";
    position: absolute;
    bottom: 0.5em;
    left: 1em;
    right: 1em;
    display: block;
    height: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.nav-a:hover:after {
	border-bottom: 2px solid #ccc;
}

.nav-a-text1{
	display:block;
	color:#fff;
	font-size:115%;
}

@media screen and (max-width:799px){

	main > section{
		scroll-margin-top:6em;
	}
	.waku {
		padding-top:3em;
	}

	.tel-wrapper {
		padding: 0;
	}

	.nav-li:first-child {
		background: transparent;
	}
	
	.nav-li {
		background: linear-gradient(90deg, #ccc 1%,transparent 0%) no-repeat 50% 50%;
		background-size: 100% 75%;
	}
	
	.nav-li:last-child {
		background: linear-gradient(90deg, #ccc 1%,transparent 0%) no-repeat 50% 50%;
	}

	.nav-a{
		padding:0.3em 0;
		font-size:90%;
	}

	.nav-a:active:after {
		border-bottom: 2px solid #ccc;
	}
}

/* ==================================
header
================================== */

header{
	position:sticky;
	top:0;
	left:0;
	right:0;
	z-index:1000;
	background-color:#fff;
}

header .logo-tel-wrapper{
	background-color: #fff;
}

header .logo-tel-cover{
	padding-top: 0.5em;
    padding-bottom: 0.5em;
}

header .tel-outer{
	display: block;
	text-align: center;
}

header .time-cover{
	padding: 0 0.3em;
}

header .time{
	line-height:1.2;
	font-size: 120%;
}

@media screen and (max-width:799px){

	header .logo-tel-cover{
		padding: 0 0.5em;
	}
	
	header .logo {
		width: 260px;
	}

	header .tel-outer {
		padding: 0.2em 0.5em;
		line-height:1.2;
	}

	header .time-cover{
		padding: 0;
	}

	header .tel {
		font-size: 120%;
		padding: 0;
	}
	header .time {
		font-size: 90%;
	}
}

/* ==================================
section-fv
================================== */

.section-fv{
}

@media screen and (max-width:799px){
}

/*  ==========================================================
section-news
==========================================================*/

ul.newsList {
	margin:3em 1em 1em;
	padding:0.5em 1em;
	border:#ccc;
	box-shadow:0 0 3px #999 inset;
	line-height:1.6;
}

ul.newsList li.newsInfo .newsInner {
	border-bottom:1px dashed #7182ff;
}
ul.newsList li.newsInfo:last-child .newsInner {
	border-bottom:0 none;
}

ul.newsList li.newsInfo .newsInner > h3.flex {
	padding:1em 0.5em;
	display: flex;
	justify-content:flex-start;
	align-items: center;
	cursor:pointer;
	transition:all 0.4s ease;
	-webkit-transition:all 0.4s ease;
}
ul.newsList li.newsInfo .newsInner > h3.flex > span {
	display:block;
}
ul.newsList li.newsInfo .newsInner > h3.flex > span:nth-child(1) {
	width:12em;
	font-size:90%;
	text-align:right;
	padding-right:1em;
}
ul.newsList li.newsInfo .newsInner > h3.flex > span:nth-child(2) {
	margin-right:auto;
}
ul.newsList li.newsInfo .newsInner > h3.flex:after {
	content:"▲記事を閉じる";
	margin-left:auto;
	font-size:90%;
	text-align:right;
	color: #004098;
}

/* news top */
ul.newsList li.newsInfo.newmark .newsInner h3 > span:nth-child(1):before {
	content:"NEW";
	font-size:90%;
	font-weight:bold;
	color:#c00;
	padding-right:1em;
	-webkit-animation:1.5s animateBlink infinite alternate linear;
	animation:1.5s animateBlink infinite alternate linear;
}

/* open */
ul.newsList li.newsInfo .newsInner:not(.off) {
	background-color: #d9eaff;
}

ul.newsList li.newsInfo .newsInner.off > h3.flex:after {
	content:"▼記事を開く";
}

ul.newsList li.newsInfo .newsInner .description {
	display:none;
	width:100% !important;
	padding-top:1.5em;
	padding-bottom:1.5em;
	padding-left:1.5em !important;
	padding-right:1.5em !important;
	overflow:hidden;
	border-top:1px dotted #7182ff;
}
ul.newsList li.newsInfo .newsInner .description > div.flex {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-direction:row-reverse;
}

ul.newsList li.newsInfo .newsInner .description > div.flex .text {
	flex-grow:1;
	padding:0 1em;
}

@media screen and (min-width:800px) {

	ul.newsList li.newsInfo .newsInner .description > div.flex .image {
		min-width:30%;
		max-width:30%;
		padding-left:20px;
	}
}

@media screen and (max-width:799px) {
	ul.newsList li.newsInfo .newsInner > h3.flex:active {
		background-color: #019ad4;
	}
	
	ul.newsList li.newsInfo .newsInner > h3.flex {
		padding:5px;
		flex-wrap:wrap;
	}
	ul.newsList li.newsInfo .newsInner > h3.flex > span {
		line-height:1.6;
	}
	ul.newsList li.newsInfo .newsInner > h3.flex > span:nth-child(1) {
		width:100%;
		text-align:left;
	}
	ul.newsList li.newsInfo.c0 .newsInner h3 > span:nth-child(1):before {
		padding-right:0.5em;
	}
	ul.newsList li.newsInfo .newsInner > h3.flex > span:nth-child(2) {
		padding-left:0.5em;
	}
	ul.newsList li.newsInfo .newsInner .description {
		padding-left:1em, !important;
		padding-right:1em !important;
	}

	ul.newsList li.newsInfo .newsInner .description > div.flex {
		flex-direction:column;
	}
	ul.newsList li.newsInfo .newsInner .description > div.flex .image {
		width:80%;
		padding:0;
		margin:0 auto 20px;
		text-align:center;
	}
	ul.newsList li.newsInfo .newsInner .description > div.flex .text {
		width:100%;
	}
}

/* ==================================
section-company
================================== */

.all-company .img-wrapper {
	padding-top: 4em;
}

.all-company .img-cover {
	width: 500px;
	margin: 0 auto;
}

.all-company .text-cover {
	padding-top: 3em;
}

.all-company .text.message {
	font-size: 140%;
	color:#003;
	text-align:center;
}
 
.all-company .text.message p + p {
	padding-top:0.8em;
}

@media screen and (max-width:799px){

	.all-company .img-wrapper {
		padding-top: 2.5em;
	}

	.all-company .img-cover {
		width: auto;
		margin: 0 auto;
	}

	.all-company .text-cover {
		padding-top: 2em;
	}

	.all-company .text.message {
		font-size:120%;
	}
}

/* ======================================================================================================
section-business-contents
====================================================================================================== */

.all-business-content .title-cover{
	padding-top:3em;
}

.all-business-content .title{
	padding-bottom:0.2em;
	color: #fff;
	text-shadow:1px 1px 5px #000;
	background: #09f;
	font-weight:bold;
	text-align: center;
	font-size: 250%;
}

.detail-list{
	overflow: hidden;
}

.detail-list > li {
	position:relative;
	padding:1.5em 1em 1em;
}

.detail-list .detail-in {
	box-shadow:1px 1px 5px #999;
	border-radius: 10px;
	background-color: rgb(0, 64, 152);
	border:3px solid #004098;
}

.detail-list .detail-inner {
	padding-top:16.4em;
	background-repeat: no-repeat;
	background-size:100%;
	background-position: 50% 0%;
	overflow:hidden;
	border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.detail-list .detail_1 .detail-inner {
	background-image:url(images/common/business_content1_pc.jpg);
}
.detail-list .detail_2 .detail-inner {
	background-image:url(images/common/business_content2_pc.jpg);
}
.detail-list .detail_3 .detail-inner {
	background-image:url(images/common/business_content3_pc.jpg);
}
.detail-list .detail_4 .detail-inner {
	background-image:url(images/common/business_content4_pc.jpg);
}
.detail-list .detail_5 .detail-inner {
	background-image:url(images/common/business_content5_pc.jpg);
}
.detail-list .detail_6 .detail-inner {
	background-image:url(images/common/business_content6_pc.jpg);
}
.detail-list .detail_7 .detail-inner {
	background-image:url(images/common/business_content7_pc.jpg);
}

.detail-list .h3 {
	color:#fff;
	text-shadow:1px 1px 5px #000;
	font-weight:900;
	padding-bottom:0.3em;
}

.detail-list h3 {
	font-size:250%;
}
.detail-list .info {
	padding:0.5em;
	background:#fff;
	height: 208px;
	color: #004c86;
}

.detail-list .info .strong {
	font-size:150%;
}
.detail-list .info ul {
	padding:0.5em 1em;
	font-size:130%;
}

.detail-list .center {
    text-align: center;
}

.detail-list .textindent-ajust{
	text-indent: -1em;
	padding-left: 1em;
}

.detail-list .textShadow {
	text-shadow:
		2px 2px 0 #fff ,-2px 2px 0 #fff ,2px -2px 0 #fff ,-2px -2px 0 #fff
		,0px 2px 0 #fff ,-2px 0px 0 #fff ,2px  0px 0 #fff , 0px -2px 0 #fff
		,3px 3px 5px #000;
}

@media screen and (max-width:799px){

	.all-business-content .title {
		font-size: 230%;
	}
	
	.detail-list.flex.col2 > * {
		width:100%;
	}

	.detail-list .detail_1 .detail-inner {
		background-image:url(images/common/business_content1_sp.jpg);
	}
	.detail-list .detail_2 .detail-inner {
		background-image:url(images/common/business_content2_sp.jpg);
	}
	.detail-list .detail_3 .detail-inner {
		background-image:url(images/common/business_content3_sp.jpg);
	}
	.detail-list .detail_4 .detail-inner {
		background-image:url(images/common/business_content4_sp.jpg);
	}
	.detail-list .detail_5 .detail-inner {
		background-image:url(images/common/business_content5_sp.jpg);
	}
	.detail-list .detail_6 .detail-inner {
		background-image:url(images/common/business_content6_sp.jpg);
	}
	.detail-list .detail_7 .detail-inner {
		background-image:url(images/common/business_content7_sp.jpg);
	}

	.detail-list .detail-in {
		border:3px solid #004098;
		padding-top: 0;
	}
	
	.detail-list .detail-inner {
		padding-top:10.8em;
		margin-top: -56px;
        z-index: 10;
        position: relative;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		background-position: 50% 0%;
		background-size: 100%;
		border:0 none;
	}

	.detail-list h3 {
		font-size:200%;
		z-index: 100;
        position: relative;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		background-color: rgb(0, 64, 152, 0.5);
		padding-top: 5px;
	}

	.detail-list .info {
		height: 170px;
	}
	
	.detail-list .info .strong {
		font-size:120%;
	}
	.detail-list .info ul {
		font-size:100%;
	}

	.detail-list > li:after {
		left:1.2em;
		width:8em;
		height:8em;
	}
}

/* ======================================================================================================
section-business-contents
====================================================================================================== */

.all-about-us .text-cover{
	padding-top: 3em;
}

.all-about-us .text{
	font-size: 120%;
}

.all-about-us table {
	width:1000px;
	max-width:100%;
	margin:4em auto 0;
}

.all-about-us table tr {
	border-bottom:1px solid #cdc;
}

.all-about-us table th ,
.all-about-us table td {
	padding:2em;
	vertical-align:top;
	font-size: 120%;
}

.all-about-us table th {
	font-weight:bold;
	white-space:nowrap;
}

@media screen and (max-width:799px){

	.all-about-us table {
		margin:2em auto 0;
		width:100%;
	}

	.all-about-us table th ,
	.all-about-us table td {
		padding:1em;
	}
}

/* ==================================
section-contact
================================== */

@media screen and (max-width:799px){

}

/* ==================================
footer
=====================================*/

footer {
	background-color: #87CEEB;
	color:#000;
	text-align: center;
}

footer .waku{
	padding-top: 3em;
	padding-bottom: 1em;
}

footer .logo{
	width: 550px;
	margin: 0 auto;
}

footer .tel-wrapper{
	padding:1.5em 0 0;
}

footer .tel-cover{
	display: inline;
}

footer .tel{
	font-size: 180%;
	padding: 0;
}

footer .nav-ul1-cover{
	padding-top: 1.5em;
	background-color:transparent;
}

footer .nav-ul1{
	max-width:550px;
	margin:0 auto;
}

footer .nav-li:first-child,
footer .nav-li,
footer .nav-li:last-child{
	background-size: 100% 35% !important;
}

footer .nav-li:first-child {
    background: linear-gradient(90deg, #000 1%,transparent 0%) no-repeat 50% 50%;
}

footer .nav-li{
	background: linear-gradient(90deg, #000 1%,transparent 0%) no-repeat 50% 50%;
}

footer .nav-li:last-child {
	background: linear-gradient(90deg, #000 1%,transparent 0%) no-repeat 50% 50%,linear-gradient(270deg,#000 1%, transparent 0%) no-repeat 50% 50%;
}

footer .nav-a::after {
    bottom: 0.9em;
}

footer .nav-a-text1{
	color:#000 !important;
}

footer .nav-a:hover:after {
    border-bottom: 2px solid #004098;
}

footer .copyright {
	padding-top: 1em;
	font-size:90%;
	text-align:center;
}

@media screen and (max-width:799px){

	footer .logo{
		width:400px;
	}

	footer .tel {
		font-size: 170% !important;
	}

	footer .nav-li:first-child {
		background:transparent;
	}
			
	footer.nav-li {
		background: linear-gradient(90deg, #000 1%,transparent 0%) no-repeat 50% 50%;
	}
	
	footer .nav-li:last-child {
		background: linear-gradient(90deg, #000 1%,transparent 0%) no-repeat 50% 50%;
	}

	footer .nav-a::after {
		bottom: 0.5em !important;
	}

	footer .nav-a:active:after {
		border-bottom: 2px solid #004098;
	}
}

/* ==========================================================
	pagetop button
============================================================= */

#pagetopButton {
	display:none;
    position: fixed;
    bottom: 1em;
    right: 1em;
	width:4em;
	height:4em;
	z-index: 10000;
}

#pagetopButton .anchorLink {
	width:100%;
	height:100%;
	line-height:1.2;
	font-weight:bold;
    color:#fff;
	background-color: #019ad4;
	border-radius:0.5em;
	cursor:pointer;
	transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
}

#pagetopButton .anchorLink:hover {
	background:#06f;
}

@media screen and (max-width:799px){
	#pagetopButton {
	    bottom: 0.2em;
    	right: 0.2em;
		width:3.5em;
		height:3.5em;
	}

	#pagetopButton .anchorLink:active {
		background:#06f;
	}
}



/* ======================================================================================================
	map
====================================================================================================== */
.map-cover {
	padding-top:2em;
}


/* ======================================================================================================
	form
====================================================================================================== */
.thanks-frame ,
.form-frame {
	width:800px;
	max-width:100%;
	margin:0 auto;
	padding-bottom:4em;
	font-size:130%;
}
.thanks-frame {
	padding-top:2em;
}

.form-wrapper dl{
	padding-top:2em;
	width:100%;
}

.form-wrapper dt{
	padding:1.5em 0 0;
}

.form-wrapper dd{
	padding-left:1em;
	padding-top:0.5em;
}

@media screen and (max-width:799px){
	.form-wrapper dl {
		padding:0 1.5em;
	}
}




/* ====================================================================
	form - optional / required
==================================================================== */
.optional,
.required{
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.optional:before,
.required:before{
	content:attr(data-text);
	display:inline-block;
	margin-right:0.5em;
	padding:0.1em 0.5em 0.2em;
	background-color:#f60;
	border-radius:0.3em;
	color:#ffffff;
	font-size:80%;
}
.optional:before{
	background-color:#06f;
}

@media screen and (max-width:799px){
	.required{
		justify-content:flex-start;
	}

	.optional:before,
	.required:before{
		margin-right:0.3em;
		padding:0.1em 0.3em 0.2em;
	}
	span.check > label {
		font-size:85%;
	}
}



/* ====================================================================
	form - field
==================================================================== */
input ,textarea{
	width:100%;
	-webkit-appearance:none; 
	appearance:none;
	border-radius:0.5em;
	font-size:90%;
}
input[type='radio'] ,input[type='checkbox']{
	width:1em;
	height:1em;
	-webkit-appearance:auto; 
	appearance:auto;
}

input:not([type="submit"]){
	border:2px solid #999;
	padding:0.3em 0.5em;
}

.textarea-text{
	padding:2.5em 5em !important;
}

textarea{
	resize:none;
	height:8em;
	padding:0.5em;
	border:2px solid #999;
}

span.check {
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
span.check > label {
	padding-left:0.3em;
}


@media screen and (max-width:799px){
	input[type="submit"]{
		width:auto;
		padding:0.5em 1em;
	}

	input:focus ,textarea:focus{
		border:solid 2px #000000;
		outline:none;
		background-color:#99e5ff;
	}

}



/* ====================================================================
	form - button
==================================================================== */
.formButton{
	padding-top:2em;
	padding-left:1em;
	display:flex;
	justify-content:center;
	text-align:center;
}

input[type="submit"] ,
.formButton a {
	position:relative;
	z-index:2;
	width:auto;
	padding:0.5em 2em 0.6em;
	font-size:110%;
	line-height:1;
	text-indent:0.3em;
	letter-spacing:0.3em;
	color:#fff;
	background-color:#06f;
	border:2px solid #06f;
	border-radius:0.3em;
	transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	cursor:pointer;
}
.formButton a{
	font-size:100%;
	text-indent:0.1em;
	letter-spacing:0.1em;
	border-radius:0.5em;
}

@media screen and (min-width:800px){
	.formButtonFrame {
		position:relative;
		display:inline-block;
		color:#06f;
		background:#fff;
		border:2px solid #06f;
		border-radius:0.3em;
		cursor:pointer;
		transition:background 0.3s ease;
		-webkit-transition:background 0.3s ease;
	}
	.formButtonFrame:hover {
		color:#fff;
		background:#06f;
	}

	input[type="submit"] ,
	.formButton a {
		color:inherit;
		background:transparent;
		border:0 none;
	}

}
@media screen and (max-width:799px){
}


/* ====================================================================
	form - error
==================================================================== */
.error {
	margin:0.3em 0 0.5em;
	display:inline-block;
	padding:0.2em 2em;
	color:#f00;
	border:1px solid #f00;
	background:rgba(255,255,255,0.6);
	border-radius:0.2em;
	font-size:90%;
}


/* ====================================================================
	form - confirm
==================================================================== */
.status2 #form-table {
	line-height:1.4;
}

@media screen and (max-width:799px){
	.status2 dd.form-5 {
		font-size:90%;
	}
}


/* ====================================================================
	form - customize
==================================================================== */
.field-group.flex {
	display:flex;
	justify-content:center;
}

.form-5 .field-group.flex {
	flex-wrap:wrap;
}
.form-5 .field-group.flex > .check {
	width:100%;
}


#privacyBox {
	height:12em;
	padding:0.5em;
	font-size:65%;
	line-height:1.4;
	color:#333;
	background:rgba(255,255,255,0.9);
	border:2px solid #999;
	border-radius:0.5em 0 0 0.5em;
	overflow:auto;
}
#privacyBox > h2{
	font-weight:bold;
}
#privacyBox > div{
	padding-left:1em;
	padding-bottom:0.5em;
}
#privacyBox dt{
}

.status2 #privacyBox {
	display:none;
}

@media screen and (max-width:799px){
}









