@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background-color: #9fd8f3;
	/*	画像はこちら↓ */
	/*	background: url(../images/bg.png) repeat center;*/
}

/*アクセントカラー（背景色）*/
.nav,
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background-color: #80e1ff;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #70c6e0;
}

.popup_close {
	border-color: #5085d5;
}

.text_blue{
	color: #5085d5;
	font-weight: bold;
}
/* ==========================================================
	header
========================================================== */

/*メニューの幅(SP) 
　※calc(### / 750 * 100%)の###部分を変更してください*/
.nav ul {
	width: calc(1200 / 750 * 100%);
	justify-content: space-around;
}

/*メニューの文字色*/
.nav a {
	color: #fff;
}

/*メニューの文字色：ホバー*/
/*テキストリンクの文字色：ホバー*/
.nav a:hover,
.txt_link:hover {
	color: #000;
}

/*メニューの下線：ホバー*/
.nav a:hover:after {
	background-color: #000;
}


/* ==========================================================
	コンテンツ
========================================================== */

/*コンテンツ外側の背景*/
#main {
	background-color: #9fd8f3;
    /*	画像はこちら↓ */
    /*	background: url(../images/bg.png) repeat center;*/
}

/*コンテンツ背景*/
.contents {
	background-color: #fff;
}

/*スライダーの矢印ボタン：ホバー*/
/*ポップアップのクローズボタン：ホバー*/
.slick-arrow:hover,
.popup_close:hover {
	background-color: #000;
}

/*ポップアップのクローズボタン：ホバー*/
.popup_close:hover {
	border-color: #000;
}

.ttl_h2 {
		display        : inline-block;
		color          : #fff04d;           
		letter-spacing : 4px;             
		text-shadow    : 
			 2px  2px 1px #5085d5,
			-2px  2px 1px #5085d5,
			 2px -2px 1px #5085d5,
			-2px -2px 1px #5085d5,
			 2px  0px 1px #5085d5,
			 0px  2px 1px #5085d5,
			-2px  0px 1px #5085d5,
			 0px -2px 1px #5085d5;     
			 line-height: 1.4;  
}
.ttl_h2:before{
	display: none;
}
.ttl_h3 {
    position: relative;
    font-weight: bold;
    margin-bottom: 1.5em;
    padding-left: 1em;
    line-height: 1;
}

.ttl_h3:before{
	background-color: #5085d5;
}
.ttl_h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5em;
    height: 100%;
}
.content_title{
	border-bottom: 0.4rem dashed #5085d5;
	margin-bottom: 1em;
	font-weight: bold;	
}

.googleMap {
	margin: 0 auto;
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	}

	.googleMap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	}

@media screen and (min-width: 768px)
{
}