@charset "utf-8";
/* corporate color #0082fc	*/
/* 全ての要素(*)と擬似要素(::beforeと::after)に対し、余白を解除する。	*/
*,::before,::after{
	margin:		0;
	padding:	0;
	box-sizing: border-box;		/* 要素の幅と高さの計算に、paddingやborderの太さを含めいない計算方法に変更	*/
}

ul, ol {
	list-style: none;	/* リストの行頭アイコンを非表示にする	*/
}
a {
	color: inherit;		/* リンクの文字色をなくす	*/
	text-decoration: none;	/* リンクの下線をなくす	*/
}
hr {
	height: 0;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	border: 0;
}

body {
	background-color:	#f0f0f0;
	color:	#101010;
	font-family:	sans-serif;
}


.hdr {
/*	background-color:	#c0e0f0;	*/
	margin-top:	3px;
}

.location-link {
	margin-top:	5px;
}
/* -------------------- */
/* hdr-innerクラスに対する指定	*/
.hdr-inner {
	max-width: 1200px;
	height: 42px;
	margin-left:	auto;
	margin-right: 	auto;
	padding-left: 10px;
	padding-right: 10px;
	display: flex;		/* ロゴとナビゲーションを横並びにする		*/
	justify-content: space-between;	/* ロゴとナビゲーションを左右の端に寄せる		*/
	align-items: center;
	font-family:	serif;
	position: relative;
}
.hdr-hdr {
	display: flex;
	align-items: center;
}
.jpname {
	font-size:	20px;
	font-weight: normal;
	font-family: sans-serif;
	padding-top: 5px;
	padding-left: 8px;
}
/* logoクラスに対する指定	*/
.logo {
	font-family:	'Libre Baskerville', serif;
	font-size:		24px;
}

/* toggle-menu-buttonクラスに対する指定	*/
.toggle-menu-button{
	display: inline-flex;
	width: 40px;
	height: 30px;
	margin-left: 30px;
	text-align: center;
	background-image: url(../image/hbmenu.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	border-radius: 0;
	outline: none;
}

/* ---------------------------- */
/* hdr-site-menuクラスに対する指定	*/
.hdr-site-menu{
	font-family:	sans-serif;
	font-size: 14px;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	color: #ffffff;
	background-color: #0082fc;
	padding-top: 3px;
	padding-bottom: 15px;
	display: none;
}
.hdr-site-menu.is-show{
	display: block;
}
.site-menu ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	text-align: right;
	font-size: 14px;
	line-height: 1;
}
.site-menu li {
	margin-top: 15px;
}
.site-menu a{
	color: inherit;		/* リンクの文字色をなくす	*/
	text-decoration: none;	/* リンクの下線をなくす	*/
	transition: all 0.5s ease-out;
	border: none;
	padding: 0.5rem;
	text-align: center;
}
.site-menu a:hover {
	color: inherit;		/* リンクの文字色をなくす	*/
	text-decoration: none;	/* リンクの下線をなくす	*/
	background-color: #ffffff;
	color: #000000;
}

/* site-menuクラスのul要素に対する指定	*/
.site-menu ul{
	display: flex;		/* ナビゲーションの項目を横並びにする		*/
}
.site-menu ul li{
	margin-left: 5px;
	margin-right: 5px;
}

.site-bar {
	font-size:	12px;
	display: 	flex;
	align-items: center;
}

/* ------------------------ */
/* legal-menuクラスに対する指定	*/
.legal-menu a{
	color: inherit;		/* リンクの文字色をなくす	*/
	text-decoration: none;	/* リンクの下線をなくす	*/
	transition: all 0.5s ease-out;
	border: none;
	padding: 0.5rem;
	text-align: center;
}
.legal-menu a:hover {
	color: inherit;		/* リンクの文字色をなくす	*/
	background-color: #0082fc;
	color: #C0C0C0;
}
.legal-menu ul{
	display: flex;		/* ナビゲーションの項目を横並びにする		*/
}
.legal-menu ul li{
	margin-left: 20px;
	margin-right: 20px;
}
/* ---------- */
/* footer関連 */
.ftr {
	background-color:	#b0d0f0;
	padding-top: 5px;
	padding-bottom: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 14px;
}
.ftr-tel {
	font-family: 'Righteous',sans-serif;
	font-size: 20px;
	margin-top: 1px;
}
.copyright {
	font-family: 'Righteous',sans-serif;
	margin-top: 5px;
	margin-bottom: 5px;
}
/* ------------------------ */
.location-link {
	font-size: 12px;
}
.logo-mean{
	font-family: sans-serif;
	font-size: 14px;
}
.lm-bold{
	font-family: 'Righteous',sans-serif;
	font-size: 18px;
	text-decoration: underline;
	color: #0082fc;
}
.blue-line {
	border-top: 1px solid #0082fc;
}
.blue-line-wide {
	border-top: 2px solid #0082fc;
	border-bottom: 2px sold #c0c0c0;
}
.gray-line {
	border-top: 1px solid #d0d0d0;
	margin-left: 20px;
}

/* ------------------------ */
.btn_L {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 13pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #0000ff;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
  border        : 2px solid #000066;    /* 枠の指定 */
}
.btn_L:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000000;     /* 文字色     */
  background    : #999999;     /* 背景色     */
}
.btn_M {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 10pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 8px 8px;   /* 余白       */
  background    : #0000ff;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 5px 5px 2px #666666;  /* 影の設定 */
  border        : 1px solid #000066;    /* 枠の指定 */
}
.btn_M:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000000;     /* 文字色     */
  background    : #999999;     /* 背景色     */
}

.btn_S {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 8pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 4px 4px;   /* 余白       */
  background    : #eeeeee;     /* 背景色     */
  color         : #222222;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 4px 4px 2px #666666;  /* 影の設定 */
  border        : 1px solid #333333;    /* 枠の指定 */
}
.btn_S:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000000;     /* 文字色     */
  background    : #cccccc;     /* 背景色     */
}
/* ------------------------ */
.movie-type1{
	width:	480px;
	height:	270px;
	margin-left: 20px;
}

/* ------------------------ */

/* ------------------------ */


/* ------------------------------ */
/* -------- スマホ表示対応　-------- */
@media (max-width: 800px) {
	.canimation {
		font-size: 16px;
	}
	.hdr {
		background-color:	#b0d0f0;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
		z-index: 10;
	}
	.hdr-inner {
		position: relative;
		max-width: max-content;
		height: 40px;
		margin-left:	auto;
		margin-right: 	auto;
		padding-left: 10px;
		padding-right: 10px;
		display: flex;		/* ロゴとナビゲーションを横並びにする		*/
		justify-content: space-between;	/* ロゴとナビゲーションを左右の端に寄せる		*/
		align-items: center;
		font-family:	serif;
	}
	.hdr-hdr {
		display: inline-flex;
	}
	/* hdr-site-menuクラスに対する指定	*/
	.hdr-site-menu{
		position:	absolute;
		top: 100%;
		left: 0;
		right: 0;
		color: #ffffff;
		background-color: #0082fc;
		padding-top: 3px;
		padding-bottom: 15px;
		font-family:	sans-serif;
		font-size: 14px;
		display: none;
	}
	.site-menu {
		margin-top: 0px;
		padding-top: 0px;
	}
	.site-menu ul {
		display: block;
		text-align: center;
		font-size: 14px;
		line-height: 1;
	}
	.site-menu li {
		margin-top: 10px;
		margin-bottom: 15px;
	}

	.site-bar {
		font-size:	12px;
		display: 	flex;
		align-items: center;
		visibility: hidden;
		height: 36px;
	}
	.ftr {
		background-color:	#b0d0f0;
		margin-top: 10px;
		padding-top: 0px;
		padding-bottom: 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
		font-size: 14px;
	}
	.ftr-site-menu{
		font-family:	sans-serif;
		font-size: 14px;
		padding-top: 0px;
		padding-bottom: 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
		background-color: #0082fc;
		width: 100%;
	}

	.logo {
		margin-top: 5px;
	}
	.location-link {
		visibility: hidden;
	}
	.legal-menu {
		margin-bottom: 3px;
	}
	.legal-menu ul {
		display: block;
		text-align: center;
		font-size: 14px;
		line-height: 1;
	}
	.legal-menu li {
		margin-top: 15px;
	}
	/*	----------------	*/
	.gray-line {
		border-top: 1px solid #d0d0d0;
		margin-left: 5px;
	}
	.movie-type1{
		width:	320px;
		height:	180px;
		margin-left: 5px;
	}
}
