

/*------------------------------------------------------------
	共通レイアウト
------------------------------------------------------------*/

div.h3Box {
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 2px solid #3c3c3c;
}


div.h3Box a {
	background: url("../common/img/arrow_link.svg") right 19px no-repeat;
	display: block;
	font-weight: bold;
	text-decoration: none;
	line-height: 48px;
	padding-right: 28px;
	position: absolute;
	top: 0;
	right: 20px;
	z-index: 1;
}



@media only screen and (min-width: 813px) {
	
	div.h3Box {
		margin-bottom: 30px;
	}
	
	div.h3Box a {
		background: url("../common/img/arrow_link.svg") right 25px no-repeat;
		line-height: 60px;
		right: 30px;
	}
	
	div.h3Box a:hover {
		text-decoration: underline;
	}
	
	div.container div.contents {
		padding: 0;
	
	}

}

/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/

main {
	background: url(../img/top/bg_main.jpg) center top no-repeat;
	background-size: cover;
	height: 480px;
	position: relative;
	overflow: hidden;
}

main div.ttlBox {
    width: 100vw;
    height: 65vw;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 10;
}

main div.ttlBox img {
	width: 180px;
	height: auto;
	margin: 0 auto 10px;
}

main h1 {
	background: url("../img/top/title.png") center top no-repeat;
    background-size: contain;
    width: 90vw;
    height: 40vw;
	text-indent: -9999px;
	margin: 0 auto 20px;
}


@media only screen and (min-width: 813px) {
	
	main {
		height: 100vh;
	}
	
	main div.ttlBox {
		width: 780px;
		height: 410px;
		top: -160px;
	}
	
	main div.ttlBox img {
		width: 240px;
		height: auto;
		margin: 0 auto 20px;
	}
	
	main h1 {
		width: 780px;
		height: 410px;
	}

}

/*------------------------------------------------------------
	ソーシャルボタン
------------------------------------------------------------*/

ul.social {
	width: 278px;
	margin: 0 auto;
}

ul.social li {
	float: left;
	height: 20px;
	margin-right: 15px;
}

ul.social li:last-child {
	margin-right: 0;
}

.fb_iframe_widget span {
	vertical-align: top!important;
}


/*------------------------------------------------------------
	ニュース
------------------------------------------------------------*/

div#newsArea {
	margin-bottom: 30px;
}

div#newsArea section article {
	background: #fff;
	width: 48%;
	margin-right: 4%;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

div#newsArea section article:nth-child(2n) {
	margin-right: 0;
}

div#newsArea section figure {
	width: 100%;
	height: 120px;
	overflow: hidden;
}

div#newsArea section dl {
	padding: 10px;
}

div#newsArea section dl dt {
	font-size: 1rem;
	color: #87BCE0;
}

div#newsArea section dl dd.ttl {
	line-height: 1.6;
}

div#newsArea section dl dd.ttl a {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #3c3c3c;
	text-decoration: none;
}

div#newsArea section dl dd.excerpt {
	display: none;
}

@media only screen and (min-width: 813px) {
	
	div#newsArea {
		margin: 70px 0 60px;
	}

	div#newsArea section article,
	div#newsArea section article:nth-child(2n)  {
		width: 31%;
		margin-right: 3.5%;
		margin-bottom: 40px;
	}
	
	div#newsArea section article:nth-child(3n) {
		margin-right: 0;
	} 
	div#newsArea section figure {
		height: 240px;
		-webkit-transition:0.3s ease-in-out;
		transition:0.3s ease-in-out;
	}
	
	div#newsArea section figure:hover {
		opacity:0.8;
		filter: alpha(opacity=80);
		-ms-filter: "alpha( opacity=80 )";
		background: #fff;
	}
	
	div#newsArea section dl {
		padding: 15px 20px 20px;
	}
	
	div#newsArea section dl dt {
		font-size: 1.3rem;
	}
	
	div#newsArea section dl dd.ttl {
		margin-bottom: 10px;
	}
		
	div#newsArea section dl dd.ttl a {
		font-size: 1.5rem;
		font-weight: bold;
	}
	
	div#newsArea section dl dd.ttl a:hover {
		text-decoration: underline;
	}

	div#newsArea section dl dd.excerpt {
		display: block;
		font-size: 1.3rem;
		text-align: justify;
		line-height: 1.8;
		color: #4d4d4d;
	}
	
}

/*------------------------------------------------------------
	フラワーサミットとは？
------------------------------------------------------------*/

div#aboutArea {
	background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
	
	position: relative;
	padding: 20px 4% 30px;
}

div#aboutArea div.contents {
	background: #fff;
	padding: 30px 5%;
}

div#aboutArea div.contents div.oneThirdLeft {
	margin-bottom: 20px;
}

div#aboutArea div.txtBox dl {
	border: 1px solid #ccc;
	padding: 15px;
	margin-top: 20px;
	border-radius: 2px;
}

div#aboutArea div.txtBox dl dt {
	font-weight: bold;
	color: #3c3c3c;
	letter-spacing: -1px;
	line-height: 1;
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 2px dashed #3c3c3c;
	position: relative;
	z-index: 10;
}

div#aboutArea div.txtBox dt:after {
	content: '';
	background: #fed6e3;
    width: 90%;
    height: 12px;
    position: absolute;
    left: 5%;
    bottom: 10px;
    z-index: -1;
}

div#aboutArea p {
	text-align: justify;
	color: #3c3c3c;
	margin-bottom: 5px;
}


@media only screen and (min-width: 813px) {
	
	div#aboutArea {
		position: relative;
		padding: 50px 0 70px;
	}
	
	div#aboutArea div.contents {
		padding: 30px 40px 40px;
	}
	
	div#aboutArea div.txtBox dl {
		padding: 30px;
	}
	
	div#aboutArea div.txtBox dl dt {
		font-size: 1.6rem;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	
	div#aboutArea div.txtBox dt:after {
	    width: 320px;
	    left: 50%;
	    bottom: 17px;
	    transform: translateX(-50%);
	}

	div#aboutArea p {
		margin-bottom: 10px;
	}
	
	
	.twoThirdRight {
		padding-left: 20px;
	}

	
}
	


/*------------------------------------------------------------
	概要
------------------------------------------------------------*/

#summaryArea {
	position: relative;
	z-index: 1;
	padding: 20px 0;
}

#summaryArea .oneHalf {
	padding: 20px 4% 0;
	position: relative;
	overflow: hidden;
}


#summaryArea p {
	text-align: justify;
	margin-bottom: 15px;
}

#summaryArea div.oneHalf:last-child {
	background: url(../img/top/img_01.jpg) center bottom no-repeat;
	background-size: cover;
}


@media only screen and (max-width: 812px) {
	
	#summaryArea h3 {
	    font-size: 1.7rem;
	}
	
	#summaryArea p {
		margin-bottom: 5px;
	}
	

	
	#summaryArea div.oneHalf:last-child {
	    width: 90%;
	    height: 80vw;
	    margin: 15px auto 20px;
	}

	
}

@media only screen and (min-width: 813px) {
	
	#summaryArea {
		padding:  0;
	}
	
	#summaryArea div.oneHalf {
		width: 50%;
		margin-right: 0;
	}
	
	#summaryArea div.oneHalf:first-child {
		padding: 50px 5% 60px;
	}
	
	
}


/*------------------------------------------------------------
	伊勢市とは？
------------------------------------------------------------*/

#locationArea {
	position: relative;
	padding: 0;
	overflow: hidden;
}

#locationArea .oneHalf {
	padding: 30px 4% 20px;
}

#locationArea .oneHalf:last-child {
	background: rgba(255,255,255,0.9);
	position: relative;
	z-index: 10;
}

#locationArea p {
	text-align: justify;
	color: #3c3c3c;
	margin-bottom: 5px;
}

@media only screen and (max-width: 812px) {
	
	#locationArea .oneHalf:first-child {
	background: url(../img/top/bg_ise.jpg) center top no-repeat;
	background-size: cover;
		width: 100%;
		height: 80vw;
	}
	
}

@media only screen and (min-width: 813px) {
	
	#locationArea {
	background: url(../img/top/bg_ise.jpg) center bottom no-repeat;
	background-size: cover;
/* 		background-attachment: fixed; */
	}


	
	#locationArea .oneHalf {
		width: 50%;
		min-height: 500px;
		margin-right: 0;
	}
	
	#locationArea .oneHalf:last-child {
		margin: 0;
		padding: 60px 5%;
	}

	#locationArea p {
		margin-bottom: 10px;
	}
		
}


/*------------------------------------------------------------
	プログラム
------------------------------------------------------------*/

div#programArea {
	padding: 0 4% 20px;
}

div#programArea p {
	text-align: justify;
	color: #3c3c3c;
	margin-bottom: 5px;
}

div#programArea p:last-of-type {
	margin-bottom: 20px;
}

div#programArea dl.gryBox {
	padding: 20px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 2px;
}

div#programArea dl.gryBox dt {
	font-size: 1.4rem;
	font-weight: bold;
	color: #3c3c3c;
	line-height: 1;
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 2px dashed #3c3c3c;
	position: relative;
}

div#programArea dl.gryBox dt:after {
	content: '';
	background: #fed6e3;
    width: 90%;
    height: 12px;
    position: absolute;
    left: 5%;
    bottom: 10px;
    z-index: -1;
}

div#programArea dl.gryBox dd {
	text-align: justify;
}

div#programArea ul#scheduleTab {
	margin-bottom: 20px;
}

div#programArea ul#scheduleTab li a {
	display: block;
	width: 48%;
	font-weight: bold;
	text-align: center;
	line-height: 36px;
	text-decoration: none;
	margin-right: 4%;
	border: 1px solid #ccc;
	float: left;
}

div#programArea ul#scheduleTab li:last-child a {
	margin-right: 0;
}

div#programArea ul#scheduleTab li a:hover,
div#programArea ul#scheduleTab li a.selected {
	background: #fed6e3;
	color: #3c3c3c;
	border: 2px solid #fed6e3;
	position: relative;
}

div#programArea ul#scheduleTab li a.selected:before {
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	margin-left: -8px;
	border: 8px solid transparent;
	border-top: 8px solid #fed6e3;
}

div#programArea ul#schedulePanel li dl {
	border-top: 1px solid #ccc;
	padding: 10px 0;
	line-height: 1.8;
}

div#programArea ul#schedulePanel li dl:last-child {
	border-bottom: 1px solid #ccc;
}

div#programArea ul#schedulePanel li dl dt {
	width: 110px;
	padding: 5px 0;
	text-align: center;
	color: #3c3c3c;
	float: left;
}

div#programArea ul#schedulePanel li dl dd {
	width: calc(100% - 140px);
	padding: 5px 15px;
	border-left: 1px solid #ccc;
	float: left;
}


@media only screen and (min-width: 813px) {
	
	div#programArea {
		padding: 50px 0;
	}
	
	div#programArea p {
		margin-bottom: 10px;
	}
	
	div#programArea p:last-of-type {
		margin-bottom: 30px;
	}
	
	div#programArea ul#schedulePanel li dl dt {
		width: 130px;
	}

	
	div#programArea dl.gryBox {
		padding: 25px 30px;
		margin: 0;
	}
	
	div#programArea dl.gryBox dt {
		font-size: 1.6rem;
	}
	
	div#programArea dl.gryBox dt:after {
	    width: 80%;
	    left: 10%;
	}
	
	div#programArea ul#scheduleTab li a {
		line-height: 50px;
	}

	
	div#programArea ul#schedulePanel li dl dd {
		padding: 5px 10px 5px 20px;
	}
	
}


/*------------------------------------------------------------
	講師紹介
------------------------------------------------------------*/


div#instructorArea {
	background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
	padding: 80px 4% 40px;
	position: relative;
}

div#instructorArea div.contents {
	background: #fff;
	padding: 20px 5%;
}

div#instructorArea div.contents h2 {
	background: #fff;
	font-weight: bold;
	line-height: 57px;
	padding: 8px 20px 0;
	position: absolute;
	top: -57px;
	left: 0;
}

.instructor-box:not(:last-child) {
	margin-bottom: 50px;
}

div#instructorArea div.contents div.grid {
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 1px dashed #ccc;
}

div#instructorArea figure {
	width: 180px;
	height: auto;
	margin: 0 auto 10px;
}

div#instructorArea dl dt {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
    margin: 10px 0 15px;
    line-height: 1.6;
}

div#instructorArea dl dt span {
	display: block;
	font-size: 1rem;
	line-height: 1.8;
	font-weight: bold;
}

div#instructorArea dl dd {
	font-size: 1.3rem;
	line-height: 1.8;
}

div#instructorArea dl dd table th {
	width: 50px;
	text-align: left;
}

div#instructorArea dl dd table.w80 th {
	width: 80px;
}

div#instructorArea dl dd p:not(:last-child) {
	margin-bottom: 10px;
}

div#instructorArea dl dd p.position {
	font-weight: bold;
	margin-bottom: 15px;
}

@media only screen and (min-width: 813px) {
	
	div#instructorArea {
		padding: 60px 0 20px;
	}
	
	div#instructorArea div.contents {
		margin: 50px auto 120px;
		padding: 25px 50px 40px;
	}
	
	div#instructorArea div.contents:last-child {
		margin-bottom: 60px;
	}

	div#instructorArea div.contents div.grid {
		width: 1000px;
		margin: 0 auto 40px;
	}
	
	div#instructorArea div.contents div.grid {
		padding-bottom: 40px;
	}
	
	div#instructorArea div.contents div.grid:last-child {
		margin-bottom: 0;
	}
	
	div#instructorArea figure {
		width: 280px;
		float: left;
		margin: 0 ;
	}
	
	div#instructorArea dl {
		width: 720px;
		padding-left: 40px;
		float: left;
	}
	
	div#instructorArea dl dt {
		font-size: 2.4rem;
		letter-spacing: 1px;
		text-align: left;
		line-height: 2;
		margin: 0 0 10px;
	}
	
	div#instructorArea dl dt span {
		display: inline-block;
		font-size: 1.3rem;
	}
	
	div#instructorArea dl dd {
		font-size: 1.4rem;
		line-height: 2;
	}
	
	div#instructorArea dl dd p.position {
		margin-bottom: 20px;
	}
	
	div#instructorArea dl dd table td {
		padding-left: 10px;
	}

}

/*------------------------------------------------------------
	募集要項
------------------------------------------------------------*/

#detailArea {
	padding: 0px 4% 30px;
}

#detailArea table {
	width: 100%;
	margin-bottom: 20px;
	border-top: 1px solid #ccc;
}

#detailArea table th {
	background: #f1f1f1;
	width:	80px;
	font-weight: bold;
	color: #3c3c3c;
	padding: 10px;
	border-bottom: 1px solid #ccc;
}

#detailArea table td {
	width: calc(100% - 80px);
	line-height: 1.8;
	padding: 10px 20px;
	border-bottom: 1px solid #ccc;
	text-align: justify;
}

#detailArea table td ul {
	margin-top: 10px;
	line-height: 1.7;
}

#detailArea table td ul li {
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 3px;
}

#detailArea table td ul li span {
	font-size: 1.1rem;
}

div#mapCanvas {
	width: 100%;
	height: 240px;
}

@media only screen and (min-width: 813px) {
	
	div#detailArea {
		padding: 30px 0 60px;
	}
	
	div#detailArea div.oneHalf:first-child {
	    width: 49.5%;
	    margin-right: 3%;
	}
	
	div#mapCanvas {
		height: 100%;
	}
	
	#detailArea table {
		font-size: 1.4rem;
		margin-bottom: 0;
	}
	
	#detailArea table th {
		width:	115px;
		padding: 15px 0;
	}
	
	#detailArea table td {
		width: calc(100% - 115px);
		padding: 20px;
	}
	
	#detailArea table td ul li span {
		font-size: 1.2rem;
	}

		
}
/*------------------------------------------------------------
	お申込み
------------------------------------------------------------*/

#entryArea {
	background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
	padding: 15px 4%;
}

#entryArea div.contents {
	background: #fff;
	padding: 20px;
}

#entryArea .fullwidth dl dt {
	font-weight: bold;
	color: #3c3c3c;
	margin-bottom: 5px;
}

#entryArea .fullwidth dl dd {
    text-indent: -1.2rem;
    padding-left: 1.2rem;
    line-height: 1.8;
}

#entryArea .fullwidth dl dd:not(:nth-last-child) {
	margin-bottom: 5px;
}

@media only screen and (min-width: 813px) {
	
	#entryArea {
		padding: 60px 30px;
	}
	
	#entryArea div.contents {
		background: #fff;
		padding: 40px 100px 50px;
	}
	
	#entryArea .fullwidth dl {
		margin-bottom: 5px;
	}
	
	#entryArea .fullwidth dl dt {
		font-size: 1.5rem;
		margin-bottom: 8px;
	}
		
}


/*------------------------------------------------------------
	フォーム
------------------------------------------------------------*/

#entryArea div.formBox {
	padding-top: 20px;
}

#entryArea div.formBox dl {
	border-top: 1px solid #ccc;
	padding-top: 15px;
	margin-bottom: 15px;
}

#entryArea div.formBox dl:last-of-type {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

#entryArea div.formBox dl dt {
	width: 100%;
	font-weight: bold;
	vertical-align: middle;
	margin-bottom: 10px;
}

#entryArea div.formBox dl dt span {
	font-size: 0.9rem;
	color: #900;
	border: 1px solid #900;
	padding: 3px 8px;
	margin-right: 10px;
	border-radius: 30px;
    position: relative;
    top: -2px;
}

#entryArea div.formBox dl dd {
	width: 100%;
	font-size: 1.6rem;
	line-height: 1;
}

#entryArea div.formBox dl dd input[type="text"],
#entryArea div.formBox dl dd input[type="email"],
#entryArea div.formBox dl dd input[type="tel"],
#entryArea div.formBox dl dd input[type="number"] {
	width: 100%;
	font-size: 1.6rem;
	padding: 10px;
}

#entryArea div.formBox dl dd input[type="text"].post {
	width: 130px;
}


@media only screen and (max-width: 812px) {
	
	#entryArea div.formBox dl dd input[type="radio"] {
		display: inline-block;
		vertical-align: bottom;
	}
	
	
	#entryArea div.formBox dl dd label {
		font-size: 1.4rem;
	}
	
}

#entryArea div.formBox dl dd label {
	margin: 0 9px 0 2px;
}

#entryArea div.formBox dl dd label:last-of-type {
	margin: 0 0 0 2px;
}

.customSelect { 
	background: #fff url("../common/img/angle-down.png") 96% 15px no-repeat;
	background-size: 12px 7px;
	width: 100%;
	height: 39px;
	line-height: 39px;
	border: 1px solid #ccc;
	padding: 0 10px;
	text-align: left;
}


#entryArea div.formBox dl dd textarea {
	width: 100%;
	font-size: 1.6rem;
	height: 140px;
	padding: 10px;
}

#entryArea div.formBox button {
	background: #64B6EE;
	display: block;
	width: 70%;
	max-width: 360px;
	font-size: 1.2rem;
	letter-spacing: 1px;
	font-weight: normal;
	text-align: center;
	color: #fff;
	border: none;
	padding: 10px 0;
	margin: 0 auto;
	position: relative;
}

#entryArea div.formBox input[type="button"],
#entryArea div.formBox input[type="submit"] {
	background: #E2384D;
	width: 40%;
	max-width: 300px;
	font-size: 1.6rem;
	letter-spacing: 1px;
	font-weight: normal;
	text-align: center;
	color: #fff;
	padding: 10px 0;
	margin: 0 5%;
	position: relative;
}

div.formError {
	width: 100%;
	text-align: center!important;
}

div.formError div.formBox input[type="button"] {
	margin-bottom: 20px!important;
}

@media only screen and (min-width: 813px) {

	#entryArea div.formBox dl {
		padding-top: 10px;
		margin-bottom: 10px;
	}
	
	#entryArea div.formBox dl:last-of-type {
		margin-bottom: 40px;
	}
	
	#entryArea div.formBox dl dt {
		width: 35%;
		font-size: 1.4rem;
		line-height: 38px;
		vertical-align: middle;
		float: left;
		text-align: left;
		margin: 10px 0;
		padding-left: 4%;
	}
	
	#entryArea div.formBox dl dt span {
		font-size: 1.1rem;
	}
	
	#entryArea div.formBox dl dd {
		width: 65%;
		text-align: left;
		line-height: 38px;
		float: right;
		border-left: 1px solid #ccc;
		padding: 0 50px 0 40px;
		margin: 10px 0;
	}
	
	#entryArea div.formBox dl dd label {
		margin: 0 12px 0 2px;
	}
		
	#entryArea div.formBox dl dd input[type="tel"] {
		width: 60%;
	}
	
	#entryArea div.formBox dl dd input[type="text"],
	#entryArea div.formBox dl dd input[type="email"],
	#entryArea div.formBox dl dd input[type="tel"],
	#entryArea div.formBox dl dd input[type="number"],
	#entryArea div.formBox dl dd textarea {
		font-size: 1.5rem;
		padding: 15px;
	}
	
	#entryArea div.formBox button {
		font-size: 1.6rem;
		padding: 20px 0;
	}
	
	#entryArea div.formBox input[type="button"],
	#entryArea div.formBox input[type="submit"] {
		font-size: 1.6rem;
		padding: 20px 0;
		margin: 0 10px;
	}
	
	#entryArea div.formBox button:hover,
	#entryArea div.formBox input[type="button"]:hover,
	#entryArea div.formBox input[type="submit"]:hover {
		background: #6abaf0;
		cursor: pointer;
		-webkit-transition: 0.3s ease-in-out;
				transition: 0.3s ease-in-out;
	}
	
	
}


/*------------------------------------------------------------
	Footer
------------------------------------------------------------*/

footer {
	border: none;
}
