@charset "EUC-JP";

/* ---------------------------------------------------
Information
File name:      sp.css
Style Info:     sp向け設定（w767px以下）
--------------------------------------------------- */

body {
	font-size: 14px;
	line-height: 1.6em;
	letter-spacing: 0;
}

#container {
}

/* ヘッダ */
header {
	width:100%;
	text-align: center;		
}

header h1 {
	display: block;
	margin: 16px auto;
	width: 100%;
	position: relative;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	text-indent: -9999px;
}

header h1 a {
	display: block;
	float: none;
	height: 100%;
	width: 100%;
}


#headerInfoArea {
	display: none;
}

.headerInfoSp {
	display: block;
	margin-bottom: 16px;
	position:relative;
}

.headerInfoSp img {
	width: 80%;
}

.headerInfo {
	display: none;
}

/* トップナビ */
#topNavi {
	display: none;
}

/* パンくずナビ */
#panNavi {
	display: none;
}

#panNavi ul li {
	display: none;
}

/* メインメニュー_pc */
#mainNaviArea {
	display: none;
}


/* グローバルナビ_sp */
.globalNaviSp {
	position: static;
}

#navToggle {
	display: block; /*通常時は非表示にしておきます*/
	position: fixed; /*bodyに対しての絶対位置指定です*/
	left: 0;
	top: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 500; /*default_100*/
	background-color: #75DBDB; /*custom_#75DBDB*/
	padding: 10px;
	border-top-right-radius: 5px; /*default_left*/
	border-bottom-right-radius: 5px; /*default_left*/
	transition: All ease 0.4s;
	-webkit-transition: All ease 0.4s;
	-moz-transition: All ease 0.4s;
	-o-transition: All ease 0.4s;
	-ms-transition: All ease 0.4s;
}

.openNav #navToggle {
	left: 200px; /*custom_left*/
}

#navToggle div {
	position: relative; /*spanの絶対位置指定の親にします*/
}
#navToggle span {
	display: block;
	position: absolute; /*#navToggle div に対して*/
	width:100%;
	border-bottom: 2px solid #fff;
	transition: All ease-in-out 0.4s;
	-webkit-transition: All ease-in-out 0.4s;
	-moz-transition: All ease-in-out 0.4s;
	-o-transition: All ease-in-out 0.4s;
	-ms-transition: All ease-in-out 0.4s;
}

#navToggle span:nth-child(1) {
	top: 0;
}

#navToggle span:nth-child(2) {
	top: 8px;
}

#navToggle span:nth-child(3) {
	top: 16px;
}

#navToggle span:nth-child(4) {
	top: 19px; /*default_23px*/
	border-bottom: none;
	font-size: 10px;
	letter-spacing: 0;
	color: #fff;
}

 /*最初のspanをマイナス45度に*/
.openNav #navToggle span:nth-child(1) {
	top: 11px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}

 /*2番目と3番目のspanを45度に*/
.openNav #navToggle span:nth-child(2),
.openNav #navToggle span:nth-child(3) {
	top: 11px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}

.g_nav {
	float: left; /*default_right*/
	padding-top: 5px;
}

.g_nav li {
	float: left;
	margin-right: 20px;
}

.g_nav li:last-child {
	margin-right: 0;
}

.g_nav li a {
	color: #52372F;
	text-decoration: none;
	transition: color ease 0.4s;
	-webkit-transition: color ease 0.4s;
	-moz-transition: color ease 0.4s;
	-o-transition: color ease 0.4s;
	-ms-transition: color ease 0.4s;
}

.g_nav li:hover a,
.g_nav li:active a {
	opacity: 0.6; /*default_color指定*/
	filter: alpha(opacity=60); /*default_color指定*/
}

.g_nav {
	display: block;
	margin-right: -2%; /*default_left*/
	flex: auto;
	position: fixed;
	top: 0;
	left: 0; /*default_right*/
	width: 0;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
	padding-top: 0;
	transition: All ease-in-out 0.4s;
	-webkit-transition: All ease-in-out 0.4s;
	-moz-transition: All ease-in-out 0.4s;
	-o-transition: All ease-in-out 0.4s;
	-ms-transition: All ease-in-out 0.4s;
}

/*header menu*/
 /*.openNavが付いた要素の中のnavを 縦方向に351px移動（=表示される）*/
.openNav .g_nav {
	z-index: 400; /*default_99*/
	width: 100%;
	height: 100%;
}

.g_nav .overlay {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	transition: All ease-in-out 0.4s;
	-webkit-transition: All ease-in-out 0.4s;
	-moz-transition: All ease-in-out 0.4s;
	-o-transition: All ease-in-out 0.4s;
	-ms-transition: All ease-in-out 0.4s;
}

.openNav .g_nav .overlay {
	background: rgba(0,0,0,0.6);
}

.g_nav .inner {
	width: 200px;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: -200px; /*default_right*/
	transition: All ease-in-out 0.4s;
	-webkit-transition: All ease-in-out 0.4s;
	-moz-transition: All ease-in-out 0.4s;
	-o-transition: All ease-in-out 0.4s;
	-ms-transition: All ease-in-out 0.4s;
}

.openNav .g_nav .inner {
	left: 0; /*default_right*/
}

.g_nav .sp_logo {
	display: block;
	padding: 10px;
	font-weight: bold;
	font-size: 20px;
	text-align: left; /*default_center*/
}

.g_nav .sp_logo img {
	width: 80%;
}

.g_nav .sp_logo a:hover,
.g_nav .sp_logo a:active {
	opacity: 1;
	filter: alpha(opacity=100);
}


.g_nav .sp_logo a {
	color: #000;
	text-decoration: none;
}

.g_nav ul{
	/*border-top: 1px solid #ccc;*/
	border-top: 1px solid #DDD; /*default_#C00*/
}

.g_nav ul li{
	float: none;
	margin: 0;
	border-bottom: 1px dashed #DDD; /*default_#CCC*/
	/*border-top: 1px dotted #efefef;*/
}

.g_nav ul li a{
	display: block;
	padding: 10px; /*default_20px 0*/
	text-align: left; /*default_center*/
}



/* メインナビ_pad */
#mainNaviPad {
	display: block;
	box-sizing:border-box;
	width:100%;
	padding: 0 8px;
	font-size: 13px;
}

#mainNaviPad ul {
}

#mainNaviPad ul li {
	display: block;
	box-sizing:border-box;
	width:48%;
	margin: 1%;
	padding: 10px; /*default_20px 0*/
	float: left;
	text-align:center;
	height: 50px;
	line-height: 40px;
	border-bottom: 1px solid #FDB357;
}

#mainNaviPad ul li a {
	display: block;
	text-decoration: none;
}

#mainNaviPad ul li a:hover {
	background:#FDB357;
	color: #FFF;
}

/* スライドショー */
.wideslider {
	width: 100%;
	text-align:center;
	margin-bottom: 16px;}


/* サムネイルナビ */
#thumbNav {
	display: none;
}



/* ------------------------------
	コンテンツエリア
------------------------------ */
#siteMain {
	box-sizing:border-box;
	width:100%;
	margin: 0;
	padding: 0 3%;
}


#topContent {
	box-sizing:border-box;
	margin-bottom: 24px !important;
	padding: 16px 0 0;
	width:100%;
	float: none;
}

#content {
	box-sizing:border-box;
	margin-bottom: 24px !important;
	padding: 16px 0 0;
	width:100%;
	float: none;}

/*----下層_スライドショー---*/
#contentSS {
	box-sizing:border-box;
	margin-bottom: 24px !important;
	padding: 16px 0 0;
	width:100%;
	float: none;
}


#topContent section {
	margin-bottom: 3em;
}

#content section {
	margin-bottom: 1.5em;
}



/* TOP_左サイドバー */
#sidebarL {
	box-sizing:border-box;
	margin: 0 auto 16px;
	padding: 0;
	float: none;
	width: 100%;
	text-align: center;
	position: relative;
	display: block;}

.fairInfo {
	box-sizing:border-box;
	margin: 0 auto 20px;
	padding: 0 5px 5px;
	width: 76%;
	background: #C0F4F4;
	text-align: center;
}

.fairInfo h2 img {
	width: 100%;
	height: inherit;
}

.fairInfoBody {
	box-sizing:border-box;
	margin: 0;
	padding: 5px;
	width: 100%;
	position: relative;
}

.fairInfoBody h3 {
}

.fairInfoBody p.outline {
}

.fairInfoBody p.img {
}

.fairInfoBody p.img img {
	width: 100%;
}


.fairInfoBody p.date {
	margin-bottom: 10px;
}

.fairInfoBody p.btn {
}

.fairInfoBody p.btn img {
	width: 35%;
}



/* TOP_右サイドバー */
#sidebarR {
	box-sizing:border-box;
	margin: 0 auto 0px;
	padding: 0;
	float: none;
	width: 100%;
	text-align: center;
	position: relative;
	display: block;}


/* 下層_左サイドバー */
#sidebar {
	box-sizing:border-box;
	margin: 0 auto 16px;
	padding: 0;
	float: none;
	width: 100%;
	position: relative;
	display: block;
}



/*----下層サイドバー_サブナビ---*/
#subNavi {
	box-sizing:border-box;
	width:100%;
	padding: 16px 0;
}

#subNavi h3 img {
	max-width: 230px;
}

#subNavi h3 {
	background: url(../images/bg_h2h3.gif) no-repeat left bottom;
	width: 100%;
}

#subNavi h4 {
	box-sizing:border-box;
	margin: 0 auto;
	padding: 4px 17px 4px;
	background: url(../images/bg_s_navi_h4.gif) no-repeat left center #C0F4F4;
	width: 100%;
}


.sNavH3Sp {
	box-sizing:border-box;
	display: block;
	width: 100%;
	padding: 0px 0px 16px 0px;
	font-size: 16px;
	font-weight: bold;
}

#subNavi ul {
	margin-bottom: 20px;
	float: none;
}

#subNavi li {
	float: none;
}
	
#subNavi li a {
	box-sizing:border-box;
	padding: 0px 4px 10px 24px;
	width: 100%;
}

#subNavi li a:hover {
	box-sizing:border-box;
	padding: 0px 4px 10px 24px;
	width: 100%;
}

/*----サイドバー_バナーエリア---*/
.bnrArea {
	box-sizing:border-box;
	margin: 0 auto;
	padding-left: 4%;
	width: 100%;
}

.bnrArea ol {
	width: 100%;
	overflow:hidden;
}

.bnrArea ol li {
	width:44%;
	padding:0 4% 2% 0;
	display: inline-block;
	vertical-align: top;
}

.bnrArea ol li:last-child {
	padding-bottom: 0%;
}

.bnrArea ol li img {
	width: 100%;
}

.bnrArea ol li a img {
	margin-bottom: 0;
}



/*----サイドバー_TEL_スマホのみ---*/
.telSp {
	margin: 20px auto;
	text-align: center;
}

.telSp img {
	width: 80%;
}




/*----フッター---*/
footer {
	width: 100%;
	font-size: 80%;
}

#btmNaviArea {
	box-sizing:border-box;
	width:100%;
	padding: 1% 4%;}

#btmNavi01 {
	display: none;
}

#btmNavi02 {
	width: 100%;
}

#btmNavi02 li {
	width: 33.3%;
}


#btmNavi03 {
	display: none;
}




/*----footer_固定ナビ　SP用---*/
.footerFixedNav {
	display: none;
	width: 100%;
	background: #75DBDB;
	text-align: center;
	position: fixed;
	bottom: 0;
	z-index: 999;
}

.footerFixedNav a {
	box-sizing:border-box;
	display: inline-block;
	width:   44%;
	margin:   2% 4% 2% 0;
	padding: 6px 2px;
	font-size: 140%;
	line-height: 1;
	color: #FFF;
	text-decoration: none;
	border: 1px solid #FFF;
	float: left;
	transition: all 0.4s ease;
}

.footerFixedNav a:first-child {
	margin-left:   4%;
}

.footerFixedNav a:hover {
	color: #FFF;
	text-decoration: none;
	opacity: 0.6;
	filter: alpha(opacity=60);
}

.footerFixedNav i {
	margin-bottom: 8px;
	font-size: 150%;
}




/*---- TOP_フッタ_提携バナーエリア ---*/

#footerBnr {
	box-sizing:border-box;
	margin: 0 !important;
	padding: 10px 0 0 !important;
}

#tieUpBnrArea {
	box-sizing:border-box;
	margin: 0 auto;
	padding: 0 2%;
	width: 100%;
}

#tieUpBnrArea ol {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	overflow:hidden;
	text-align: center;
}

#tieUpBnrArea ol li {
	margin: 0 !important;
	box-sizing:border-box;
	width:48%;
	padding:0 2% 0 0 !important;
	display: inline-block;
	vertical-align: top;
}

#tieUpBnrArea ol li:nth-child(2n) {
	padding-right: 0;
}

#tieUpBnrArea ol li img {
	width: 100%;
}

#tieUpBnrArea ol li a img {
}




/*----copyright---*/
#copyright {
	width: 100%;
	text-align: center;
}

#copyright p {
	margin: 0px 16px;
	padding: 16px 0 8px;
	font-size: 80%;
	line-height: 1.4em;
}

/*----共通_PCでのみ表示---*/
.pc {
	display: none;
}

/*----共通_スマホでのみ表示---*/
.sp {
	display: inherit;
}



/*---- TOPcontent ---*/


/* TOP_見出し */

#topContent h2 {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow: hidden;
	background: #75DBDB;
	line-height: 0;
}

#topContent h2 img {
}



/* TOP_新着リスト */

.newsArea {
	box-sizing:border-box;
	margin: 0;
	padding: 0;
	width: 100%;
}

.newsArea ul {
	box-sizing:border-box;
	width: 100%;
	margin: 0 0 12px 0 !important;
	line-height: 1.4em;
}

.newsArea ul li {
	box-sizing:border-box;
	margin: 0;
	padding: 10px 5px 5px;
}

.newsArea .date {
}



/* TOP_InstaFeed */
#instafeed{
	display: inline-block;
}

#instafeed p {
}



#instafeed ul {
	margin: 20px 0;
}


#instafeed li{
	box-sizing:border-box;
	display: block;
	margin: 0px 2% 2% 0;
	padding: 0 !important;
	float: left;
	width: 49%;
	height: 172px;
	overflow: hidden;
	position: relative;
}

#instafeed li:nth-of-type(2n+0) {
	margin-right: 0;
}


#instafeed li img {
  min-width: 172px;
  min-height: 172px;
}




/*---- content ---*/

/* 下層_タイトル */
#siteMain h2 {
	margin: 0;
	width: 100%;
}

#siteMain h2 img {
	width: 100%;
}

.pageH2Sp {
	box-sizing:border-box;
	display: block;
	width: 100%;
	padding: 12px 0px 4px 34px;
	font-size: 18px;
	font-weight: normal;
}

.txtS {
	font-size: 12px;
}

/* 大見出し */
#content h3 {
	box-sizing:border-box;
	margin-bottom: 1em;
	padding: 0;
	width: 100%;
	font-size: 16px;
}

#siteMain h3 img {
	width: 100%;
}

#content h3.txt {
	box-sizing:border-box;
	margin: 0 0 20px;
	padding: 15px 5px;
	width: 100%;
	font-size: 130%;
	font-weight: bold;
	line-height: 1.5em;
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	clear: both;
}



/* 下層_見出し */
#content h4 {
	margin: 0px 0px 0.75em 0px;
	padding: 2px 6px;
	font-size: 14px;
}

#content h5 {
	margin: 0px 0px 1.5em 0px;
	padding: 0px 8px;
	color: #EB835A;
	font-size: 110%;
	font-weight: bold;
	clear: both;
	border-bottom: 1px solid #D8D8D8;
}





/* 本文 */
#topContent p,
#content p {
	padding: 0 5px 1em;
	overflow: hidden;
}

#content p.right {
	padding: 0 0 0.5em !important;
	font-size: 12px;
}

/*----中央配置画像---*/
#content p.phC {
	padding: 0 0 1em;
}

#content p.phC img {
	max-width: 100%;
}



/*----箇条書きリスト---*/
#topContent ul,
#content ul {
	margin: 0 0 1em 16px;
}

#topContent ul li,
#content ul li {
	padding-bottom: 0.5em;
}

/*----箇条書きリスト_大_201901---*/
#content ul.large {
	margin: 1.2em 0 10em 16px;
}

#content ul.large li {
	padding-bottom: 1.2em;
	line-height: 1.8em;
}

#content ul.large li .txtL {
	font-size: 18px;
	font-weight: bold;
}




/*----二段組みコンテンツ---*/
#block2Area {
	box-sizing:border-box;
	width: 100%;
}



/*----イントロダクション---*/
#block2Area p.ph {
	box-sizing:border-box;
	margin: 0 auto;
	padding: 0 0 20px;
	width: 100%;
	float: none;
	text-align: center;
}

#block2Area p.intro {
	box-sizing:border-box;
	margin: 0 auto;
	padding: 0 5% 20px;
	width: 100%;
	float: none;
	text-align: left;
}

#block2Area p.center {
	margin-bottom: 15px;
	padding: 0 5px !important;
	text-align: left;
}




/*----下層トップページ_インフォリスト---*/
.infoListArea {
	box-sizing:border-box;
	margin: 0 auto 20px;
	padding: 0;
	width: 100%;
	text-align: center;
}

/*----ブライダルフェア用---*/
.infoListFair {
	box-sizing:border-box;
	margin: 0 0 16px 0;
	padding: 5px;
	width: 100%;
	float: none;
	background: url(../../fair/images/bg_infolist.gif) no-repeat center top #C0F4F4;
	position: relative;
	text-align: center;
}

/*----ウェディングスタイル用---*/
.infoListHall {
	box-sizing:border-box;
	margin: 0 0 16px 0;
	padding: 5px;
	width: 100%;
	float: none;
	background: url(../../hall/images/bg_infolist.gif) no-repeat center top #C0F4F4;
	position: relative;
	text-align: center;
}

/*----料理用---*/
.infoListCuisine {
	box-sizing:border-box;
	margin: 0 0 16px 0;
	padding: 5px;
	width: 100%;
	float: none;
	background: url(../../cuisine/images/bg_infolist.gif) no-repeat center top #C0F4F4;
	position: relative;
	text-align: center;
}

/*----プラン用---*/
.infoListPlan {
	box-sizing:border-box;
	margin: 0 0 16px 0;
	padding: 5px;
	width: 100%;
	float: none;
	background: url(../../w_plan/images/bg_infolist.gif) no-repeat center top #C0F4F4;
	position: relative;
	text-align: center;
}


/*----全リスト共通---*/
.infoListBody {
	box-sizing:border-box;
	margin: 20px 0px 0px;
	padding: 5px;
	width: 100%;
	background: #FFF;
	display: block;
}

.infoListBody h4 {
	padding: 10px 5px !important;
	min-height: inherit;
}

.infoListBody p.img {
	width: 100%;
}

.infoListBody p.img img {
	width: 100%;
	height: inherit;
}


.infoListBody p.outline {
	margin-bottom: 10px;
	min-height: inherit;
}

.infoListBody p.btn {
}

.infoListBody p.btn img {
	width: 35%;
}




/*----下層_個別記事内ph---*/
#content .articleArea p img {
	width: 100%;
	height: inherit;
}


/*----下層_ウェディングスタイル_二段組イントロダクション---*/
#introArea {
	box-sizing:border-box;
	width: 100%;
}

#introArea .introAreaL {
	box-sizing:border-box;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 20px;
	float: none;
	text-align: center;
}

#introArea .introAreaR {
	box-sizing:border-box;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 20px;
	float: none;
	text-align: center;
}


/*----ウェディングスタイル、フォトレポ---*/
#contentSS section {
	margin-bottom: 30px;
}

#contentSS h2 {
	margin: 0 0 20px;
	padding: 0;
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	clear: both;
}


#contentSS p.phC {
	box-sizing:border-box;
	width: 100%;
	padding: 0px 0px 10px 0px;
	text-align: center;
}

#contentSS p.phC img {
	width: 100%;
}

#content p.catch,
#contentSS p.catch {
	box-sizing:border-box;
	width: 100%;
	padding: 0 0 10px;
	text-align: center;
}

#content p.catch img,
#contentSS p.catch img {
	max-width: 100%;
}

#contentSS p.center {
	text-align: center;
}


#contentSS img.ph {
	margin-bottom: 20px;
}

#contentSS .entryList {
	box-sizing:border-box;
	width: 100%;
	margin: 0 auto 20px;
	float: none;
	text-align: center;
}

#contentSS .entryList h3 {
	margin-top: 0px;
	height: inherit;
}

#contentSS .entryList img {
	width: 100%;
	height: inherit;
}

.flexslider .slides {
	box-sizing:border-box;
	padding: 0;
	width: 100%; 
	position: relative;
}

.flexslider .slides img {
	box-sizing:border-box;
	width: 100%; 
	height: inherit;
}





/*----下層ページ下部_お問合せ枠---*/
#content .contactInfo {
	box-sizing:border-box;
	margin: 30px auto;
	padding: 5px;
	width: 90%;
	background: #C0F4F4;
	position: relative;
	text-align: center;
}


#content .contactInfoBody {
	box-sizing:border-box;
	margin: 0;
	padding: 10px 10px 0;
	background: #FFF;
	width: 100%;
}


#content .contactInfoBodyCont {
	box-sizing:border-box;
	margin: 0 auto;
	padding: 0 10px;
	width: 100%;
	background: #FFF;
	float: none;
	text-align: center;
}

#content .contactInfoBodyCont img {
	padding-bottom: 5px;
	width: 90%;
}


#content .contactInfoBodyCont p.contBtn {
	text-align: center;
}



/*----フェアボタン---*/
#content .fairBtn {
	box-sizing:border-box;
	margin: 0 auto;
	padding: 0px;
	width: 80%;
	text-align: center;
}

#content .fairBtn p {
	height: inherit;
}


#content .fairBtn p a img {
	width: 100%;
}

#content .fairBtn p a:hover img {
	padding: 0;
}




/*----下層_テーブルフォーム01 資料請求---*/	
.tableFormat01 {
	margin: 0px 0px 15px;
	padding: 5px 5px;
}

.tableFormat01 table {
	width: 100%;
	margin: 0px;
	padding: 0px;
	background: #FFF;
}

.tableFormat01 table th {
	box-sizing:border-box;
	padding: 10px 5px;
	display: block;
    width: 100%;
}

.tableFormat01 table td {
	box-sizing:border-box;
	padding: 10px 5px;
	display: block;
    width: 100%;
}

.tableFormat01 table td.bgBlue {
	padding: 10px 5px;
}

.tableFormat01 table td.btn {
	padding: 10px 5px;
}


/*----下層_フォーム 資料請求---*/	

input {
}

input.text {
}

select {
}

textarea {
	box-sizing:border-box;
	width: 100%;
}



/*----pagetop---*/
#page-top {
	bottom: 100px;
	right: 15px;
	z-index: 0;
	opacity: 0.9;
	filter: alpha(opacity=90);
}








