@charset "UTF-8";
@import url("contact.css");

/*
薄い色
#92CDE8

濃い色
#59A2C4
*/

body {
	max-width: 553px;
	width: 100%;
	margin: 0 auto;
	color: #202020;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 1px;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	font-family: 'メイリオ', Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}


/* 共通
================================================== */

/* リンク
------------------------------ */

a {
	color: #e17900;
	transition: All 0.4s ease;
}
a img {
	transition: All 0.4s ease;
}
a:hover img {
	opacity: .6;
}


/* テーブル
------------------------------ */

table.def {
	width: 100%;
	font-size: 13px;
}
table.def th {
	width: 40%;
	padding: 5px;
	color: #59A2C4;
	text-align: left;
	vertical-align: top;
	border: 1px solid #92CDE8;
}
table.def td {
	padding: 5px;
	border: 1px solid #92CDE8;
}


/* リスト
------------------------------ */

ul.def {
	margin: 0 0 15px;
}
ul.def li {
	padding: 5px 0 5px 12px;
	border-bottom: 1px dotted #cfcfcf;
	background: url(../images/common/ico_arrow02.png) left center no-repeat;
}


/* 定義リスト
------------------------------ */

dl.def dt {
	margin: 0 0 5px;
	padding: 0 0 0 14px;
	font-weight: bold;
	background: url(../images/common/ico_arrow01.png) left center no-repeat;
}
dl.def dd {
	margin: 0 0 8px;
	padding: 0 0 0 25px;
}


/* バナー・ボタン
------------------------------ */

.bnr {
	margin: 0 10px 10px;
	text-align: center;
}

.btn {
	margin: 0 10px 10px;
	padding: 6px 0;
	text-align: center;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(0,0,0,.1);
	border-radius: 4px;
	background:
		url(../images/common/ico_arrow02_w.png) 5px center no-repeat,
		linear-gradient(#53d8aC, #92CDE8)
	;
	box-shadow:
		0 2px 2px rgba(0,0,0,.2),
		0 1px 1px rgba(255,255,255,.6) inset
	;
	display: block;
}

p.text-more {
	padding: 12px 25%;
	border-bottom: 1px solid #faa644;
	text-align: center !important;
}
p.text-more a {
	color: inherit;
	background: url(../images/common/ico_arrow02.png) left center no-repeat;
}


/* ページネーション
------------------------------ */

ul.pagenation {
	margin: 0 0 20px;
	text-align: center;
	font-size: 0;
	letter-spacing: 0;
}
ul.pagenation li {
	width: 30px;
	margin: 0 3px;
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	border: 1px solid #cfcfcf;
	border-radius: 4px;
	vertical-align: top;
	display: inline-block;
}
ul.pagenation li.current {
	color: #fff;
	background: #92CDE8;
}
ul.pagenation li.dot {
	width: 15px;
	margin: 0 1px;
	border: none;
}
ul.pagenation li a {
	text-decoration: none;
	display: block;
}


/* パンくずリスト
------------------------------ */

.breadcrumbs {
	height: 25px;
	line-height: 25px;
	margin: 0 5px 15px;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
	white-space: nowrap;
}
.breadcrumbs li {
	font-size: 12px;
	display: inline;
}
.breadcrumbs a {
	background: url(../images/common/ico_arrow01.png) right center no-repeat;
	margin: 0 5px 0 0;
	padding: 0 10px 0 0;
}


/* ページ内リンク
------------------------------ */

.anchor-links {
	margin: 0 0 15px;
	text-align: center;
	font-size: 0;
	letter-spacing: 0;
}
.anchor-links li {
	width: 30%;
	height: 35px;
	margin: 0 1% 10px;
	line-height: 35px;
	font-size: 13px;
	border: 1px solid #cfcfcf;
	background: linear-gradient(#fff, #e3e3e3);
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
}
.anchor-links a {
	text-decoration: none;
	display: block;
}


/* 開閉式コンテンツ
------------------------------ */

.toggle {
	cursor: pointer;
}
.toggle + * {
	display: none;
}
.toggle:target + * {
	display: block;
}


/* ヘッダー
================================================== */

.site-header {
	margin-bottom: 20px;
}

.h-logo {
	    background: url(../images/common/header.jpg) center top no-repeat;
    height: 60px;
}

.h-logo img {
	width: 75%;
    top: 15%;
    right: 0;
    left: 4%;
    position: relative;
}

#nav_toggle {
    position: absolute;
    right: 2%;
    top: 9px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}

#nav_toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav_toggle span:nth-child(1) {
    top: 21px;
}

#nav_toggle span:nth-child(2) {
    top: 31px;
}

#nav_toggle span:nth-child(3) {
    top: 41px;
}

.open #nav_toggle span:nth-child(1) {
    top: 26px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}

.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 26px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}

#nav_toggle p {
	margin-top: 3px;
}

.sp_nav {
    display: none;
    padding: 2% 0;
    background:#0b0b0b;
    opacity:0.8;
}

.sp_nav li {
    text-align: center;
    text-decoration: none;
}

.sp_nav li a {
	padding: 10px 0;
    display: block;
    text-decoration: none;
    color:#fff;
}

.header_wrap {
	position:fixed;
	z-index: 1000;
}
/* フッター
================================================== */

/* グローバルナビ
------------------------------ */

.f-nav {
	margin: 0 0 15px;
	overflow: hidden;
}
.f-nav li {
	width: 50%;
	margin: 0 0 3px;
	padding: 3px 0 3px 15px;
	line-height: 30px;
	font-size: 13px;
	letter-spacing: 0;
	background: url(../images/common/ico_arrow01.png) 4px center no-repeat;
	box-sizing: border-box;
	float: left;
}
.f-nav li a {
	text-decoration: none;
	display: block;
}


/* ホームへリンク・トップへリンク
------------------------------ */

.f_sns {
	overflow:hidden;
}

.f_sns>ul{
	overflow:hidden;
}

.f_sns>ul>li:nth-child(1){
	padding:0 4.4%;
}

.f_sns>ul>li:nth-child(2){
	padding:6% 20%;
}

.ft_btn li:nth-child(1){
	display:block;
	float:left;
}

.ft_btn li:nth-child(2){
	display:block;
	float:right;
}

.f_cont {
	margin-top: 20px;
}

.info {
	width: 257px;
    margin: 20px auto;
}

.reserve {
	margin-bottom: 20px;
	text-align: center;
}

.bordeaux {
	color: #b43131;
}

.f_cont li{
	margin-bottom: 20px;
	padding:0 4.4%;
}

.visual img {
	margin-top: 55px;
}


.f-topnav {
	margin: 0 0 1px;
	background: #92CDE8;
	overflow: hidden;
}
.f-topnav li {
	width: 50%;
	text-align: center;
	float: left;
}
.f-topnav li a {
	padding: 10px 0;
	display: block;
}


/* コピーライト
------------------------------ */

.f-copy {
	color: #fff;
	font-size: 12px;
	line-height: 25px;
	text-align: center;
	background: #726357;
	display: block;
}
.f-copy a {
	color: inherit;
	text-decoration: none;
}


/* コンテンツ
================================================== */

.main-contents {
	display: block;
}


/* 記事骨格
------------------------------ */

.item-box {
	margin: 0 0 40px;
	padding: 0 2%;
}
.item-text {
	overflow: hidden;
	text-align: center;
}


/* 見出し
------------------------------ */

.item-title-h3 {
	background:url(../images/common/bg_h3.png);
	color:#fff;
	text-align: center;
}
.item-title-h3 span {
	padding: 0 20px;
    display: block;
    word-wrap: break-word;
	text-align: left;
}

.item-title-h4 {
	margin: 0 0 15px;
	padding: 6px 4px 6px 15px;
	color: #59A2C4;
	font-size: 15px;
	border-bottom: 1px dotted #59A2C4;
	background: url(../images/common/ico_arrow01.png) 5px center no-repeat;
}
* ~ .item-title-h4 {
	margin-top: 20px;
}


/* 記事サムネイル
------------------------------ */

img.thumb-left {
	max-width: 35%;
	height: auto;
	margin: 0 8px 8px 0;
	float: left;
}
img.thumb-right {
	max-width: 35%;
	height: auto;
	margin: 0 0 8px 8px;
	float: right;
}
img.thumb-center {
	max-width: 95%;
	margin: 0 auto 8px;
	display: block;
}
img.photo {
	padding: 2px;
	background: #fff;
	box-shadow: 0 2px 2px rgba(0,0,0,.2);
	box-sizing: border-box;
}


/* 記事情報
------------------------------ */

.item-date {
	margin: 8px 0 8px;
	font-size: 13px;
	background: url(../images/common/ico_arrow01.png) left center no-repeat;
	display: block;
}

.post-data {
	height: 14px;
	margin: 0 0 15px;
	line-height: 14px;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
	white-space: nowrap;
}
.post-data li {
	margin: 0 8px 0 0;
	padding: 0 8px 0 0;
	font-size: 12px;
	border-right: 1px dotted #aaa;
	display: inline;
}
.post-data .item-date {
	margin: 0;
	display: inline;
}



/* 詳細ページ SNSシェアボタン
------------------------------ */

.sns-sharerbtn-list {
	margin: 8px 0;
	padding: 8px 0;
	text-align: center;
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	background: #f0f0f0;
	overflow: hidden;
	clear: both;
}
.sns-sharerbtn-list li {
	margin: 0 4px;
	vertical-align: top;
	display: inline-block;
}


/* 詳細ページ 前後の記事へのリンク
------------------------------ */

.paginated-link {
	margin: 0 5px;
	overflow: hidden;
}
.paginated-link li {
	width: 48%;
	padding: 0 5px;
	text-align: center;
	font-size: 13px;
	border: 1px solid #cfcfcf;
	border-radius: 4px;
	background: #f0f0f0;
	box-sizing: border-box;
}
.paginated-link li.prev-link {
	float: left;
	margin: 25px 0 0;
}
.paginated-link li.next-link {
	float: right;
	margin:25px 0 0;
}
.paginated-link li a {
	height: 35px;
	line-height: 35px;
	text-decoration: none;
	display: block;
	overflow: hidden;
}


/* トップページ
================================================== */

/* 新着情報
------------------------------ */

.news-list li {
	height: 35px;
	line-height: 35px;
	border-bottom: 1px dotted #cfcfcf;
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-list li span {
	margin: 0 8px 0 0;
	color: #c45b07;
}

.news-list li a {
	color: #c45b07;
	word-break: break-all;
}


/* ブログ
------------------------------ */

.thumb-post-list {
	padding: 5px 0;
	overflow: hidden;
}
	.thumb-post-list li {
		padding: 8px 0;
		border-bottom: 1px dotted #cfcfcf;
		overflow: hidden;
	}
		.thumb-post-list .left {
			width: 45%;
			height: 0;
			padding: 0 0 29%;
			overflow: hidden;
			float: left;
		}
			.thumb-post-list .left img {
				width: 100%;
				height: auto;
			}
		.thumb-post-list .right {
			width: 55%;
			padding: 0 10px;
			float: left;
			box-sizing: border-box;
		}
			.thumb-post-list .right .date {
				line-height: 18px;
				font-size: 12px;
			}
			.thumb-post-list .right .title {
				max-height: 3em;
				margin: 0 0 5px;
				line-height: 1.5em;
				overflow: hidden;
				display: inline-block;
				vertical-align: top;
			}
			.thumb-post-list .right .body {
			}

	/* 2カラム表示 .column2 */
	.thumb-post-list.column2 li {
		width: 50%;
		float: left;
	}

	/* 一個目の記事だけ大きく表示 .big-first */
	.thumb-post-list.big-first li:first-child {
		width: 100%;
	}
		.thumb-post-list.big-first li:first-child .right .title {
			font-size: 16px;
		}


/* 下層ページ
================================================== */

/* サイトマップ
------------------------------ */
.sitemap-list {
	padding: 0 2.4%;
    margin: 20px 0;
}

.sitemap-list a {
	padding: 0 0 0 15px;
	line-height: 40px;
	text-decoration: none;
	border-bottom: 1px dotted #ccc;
	background: url(../images/common/ico_arrow01.png) 5px center no-repeat;
	display: block;
	color:#e07900;
}
.sitemap-list a:hover {
	background-color: #efefef;
}


/* よくある質問
------------------------------ */

dl.faq-list dt {
	padding: 0 0 0 35px;
	color: #59A2C4;
	font-weight: bold;
	background: url(../images/faq/ico_q.png) left center no-repeat;
}
dl.faq-list dd {
	margin: 0 0 20px;
	padding: 10px 0 10px 35px;
	border-bottom: 1px dotted #cfcfcf;
	background: url(../images/faq/ico_a.png) left center no-repeat;
}


/* ギャラリー
------------------------------ */

ul.gallery {
	font-size: 0;
	letter-spacing: 0;
}
ul.gallery li {
	width: 32%;
	margin: 0 0 8px;
	font-size: 13px;
	vertical-align: top;
	display: inline-block;
}
ul.gallery li:nth-child(3n+2) {
	margin: 0 2% 8px;
}


/* お問い合わせ
------------------------------ */

.contact-form dt {
	margin: 0 0 8px;
	padding: 5px;
	background: #e9e9e9;
	background: url(../images/common/bg_h3.png);
	text-align: left;
	color:#fff;
}

.contact-form dt label {
	margin-left: 35px;
}

.contact-form dd {
	margin: 0 0 15px;
	text-align: left;
}

.input-big,
.input-middle,
.input-mini {
	padding: 5px;
	box-sizing: border-box;
}
.input-big {
}
.input-middle {
	width: 60%;
}
.input-mini {
	width: 60px;
}

/* 必須マーク */
.required-mark {
	color: #f00;
	font-size: 12px;
}

/* 未記入エラー文 */
.error-text {
	margin: 0 0 5px;
	color: #f00;
}

/* 確認、バック、送信ボタン */
.contact-submits {
	text-align: center;
	margin-bottom: 20px;
}
.contact-submits input {
	margin: 0 5px;
	padding: 5px;
}

/* セキュリティエラー */
.sec-error-text {
	padding: 10px;
	color: #f00;
	font-size: 16px;
	border: 2px solid #f00;
	margin-bottom: 20px;
}

.greet {
	margin: 60px 0;
	    padding: 0 2%;
}

.g_title {
	margin-bottom: 32px;
	padding:0 10%;
}

.greet ul li {
	margin-bottom:22px;
	padding: 0 9.7%;
}

.link {
	margin-bottom: 60px;
}

.link li {
	margin-bottom: 20px;
    padding: 0 4.4%;
}

.link li:nth-child(4) {
	margin-top: 40px;
}

.news_c img {
    margin-bottom: 20px;
}

.t_news {
	padding: 0 4.4%;
	margin-bottom: 55px;
}

.privacy_h3 {
	background:url(../images/common/bg_h4.png) no-repeat;
	height:45px;
}

.privacy_h3 span {
	margin-left: 20%;
	display: block;
    padding-top: 2%;
}

.main-menu {
	font-size: 20px;
	margin: 15px 0;
	padding: 0 2%;
}

.menu-title {
	font-weight: bold;
    background: url(../images/common/bg_h3.png);
    color: #fff;
    padding: 10px 0 10px 12%;
}

.menu-detail {
	padding:0 2.4%;
}

.menu-detail dt {
	color: #c45a53;
    font-size: 15px !important;
    line-height: 1.4;
    margin: 0 0 5px 0;
    font-weight: bold;
    background: url(../images/common/bg_h4_02.png) no-repeat;
    border-bottom: 2px solid #c45a53;
    padding-bottom: 10px;
}

.menu-detail dt span {
	display: block;
    margin-left: 60px;
    letter-spacing: -1px;
    padding-top: 4px;
}

.menu-detail dd {
    margin: 0 0 5px 0;
    font-size: 14px !important;
    line-height: 1.4;
    margin-top: 3px !important;
}

.img_center {
	text-align: center;
}

.fee_area {
	padding-bottom: 27px;
}

.menu-detail02 {
	text-align: center;
	padding:0 2.4%;
}

.menu-detail02 dt {
	color: #c45a53;
    font-size: 15px !important;
    line-height: 1.4;
    margin: 0 0 5px 0;
    font-weight: bold;
    background:url(../images/common/bg_h4_02.png) no-repeat;
    border-bottom: 2px solid #c45a53;
}

.menu-detail02 dt span {
	display:block;
	margin-left: 15%;
	padding-top: 6px;
	margin-bottom: 10px;
	letter-spacing: -1px;
}

.menu-detail02 dd {
    margin: 0 0 5px 0;
    font-size: 14px !important;
    line-height: 1.4;
    margin-top: 3px !important;
	padding-top: 15px;
}

.text-ac {
	padding: 0 4.4%;
    line-height: 30px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    margin-bottom: 20px;
}

.member-system li {
	margin-bottom: 15px;
}

.kalon-c{
	border: 2px solid #e17900;
    background: #e17900;
    color: #fff;
}

.fee_area a {
	text-decoration: none;
}

.school-top li {
	margin-bottom: 15px;
	padding:0 4.4%;
}

.text-al {
	text-align: left;
    line-height: 30px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    margin-bottom: 20px;
    padding:0 2%;
}

.list02 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.room-list li {
	margin-bottom: 15px;
	text-align: center;
}

.last {
	margin-bottom: 20px;
	padding:0 4.4px;
}

.greet-img>ul>li{
	margin-bottom: 15px;
	text-align: center;
	width:46%;
	float:left;
	padding:0 2%;
}

.greet-img p {
	text-align: center;
	padding:0 2%;
	margin-bottom: 15px;
}

.news-title-h3 {
	background:url(../images/common/bg_h3.png);
}

.item-text p {
	word-wrap: break-word;
    margin: 0 2%;
    text-align: left;
}

.contact-form {
	margin: 20px 0;
	padding: 0 2%;
}

.g_title img {
	text-align: center;
    margin: 0 auto;
    display: block;
}

.site-body {
	padding: 0 2%;
}

.member-system {
	padding:0 2%;
}