@charset "UTF-8";

/* CSS Document */


.center {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/*	写真
--------------------*/

.ad {
    padding: 3px 0;
    overflow: hidden;
}

.ad img {
    width: 90vw;
    height: auto;
    padding: 5px;
    border: 1px solid #ccc;
    background: #fff;
}


/* メールフォーム */
table.formTable {
    width: 340px;
    margin: 0 auto;
    border-collapse: collapse;
}

table.formTable td {
    border: 1px solid #ccc;
    padding: 5px;
    text-align: left;
}

table.formTable th {
    border: 1px solid #ccc;
    width: 30%;
    font-weight: normal;
    background: #efefef;
    text-align: right;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
/*コーナー・ボックス */
.box{
	padding: 0.5em 1em;
	width: 85%;
	color: #939cc5;
	background-color: #CCFFFF;
	border-top: solid 5px #c9cfec;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
	margin: 0px auto;
	text-align: center;
    font-size: 22px;
    font-weight: bold;
}

a.btn_12 {
	display: flex;
    justify-content: space-evenly;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 95px;
	margin: auto;
	padding: 1rem 2rem 1rem 2rem;
	font-weight: bold;
	background: #27acd9;
	color: #fff;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}
a.btn_12::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
a.btn_12:hover {
	background: #44c6f2;
	color: #fff;
}