﻿@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------

	Reset Styles
	Path（パンくず）
	Paging（ページング）
	Widget（共通パーツ）

------------------------------------------------------------------------ */


/* ========================================================================
	Reset Styles
======================================================================== */

/* HTML5 */
article, aside, figure, figcaption, video, footer, header,
main, nav, section, summary{
	display:block;
	margin:0;
}


/* Base Styles */
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, small,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset{
	margin:0;
	padding:0;
	font-weight:normal;
}

html{
	font-size:62.5%; /* 10px */
}

body{
	font-family:"游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size:1.4rem; /* 14px */
	color:#333333;
	line-height:1.6;
	-webkit-text-size-adjust:100%;
}

select,input,button,textarea{
	font-family:inherit;
	font-size:100%;
	color:#333333;
}

pre,code,kbd,samp{
	font-family:inherit;
}

img,
iframe{
	border:none;
	vertical-align:bottom;
}

table{
	width:100%;
	border:none;
	border-collapse:collapse;
	border-spacing:0;
	font-size:inherit;
}

label{
	display:inline-block;
	padding:5px 0;
	cursor:pointer;
}

input,
textarea{
	padding:0;
	vertical-align:middle;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea{
	width:100%;
	height:34px;
	margin:5px 0;
	padding:0 10px;
}

textarea{
	height:auto;
	padding:10px;
}

/* Firefox・IE スピンボタン非表示 */
input[type="number"]{
	-moz-appearance:textfield;
}

/* Chrome・Safari スピンボタン非表示 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
	margin:0;
	-webkit-appearance:none;
}

input[type="radio"],
input[type="checkbox"]{
	margin:0 0.5em 0 0;
	vertical-align:baseline;
	cursor:pointer;
}

button,
input[type="image"],
input[type="submit"],
input[type="button"]{
	margin:0; /* iPhone・iPad */
	padding:0;
	cursor:pointer;
	border-radius:0; /* iPhone・iPad 角丸解除 */
	-webkit-appearance:none; /* iPhone・iPad グラデーション解除 */
}

select,
select option,
select optgroup{
	padding:0 10px;
	font-style:normal;
	cursor:pointer;
}
select{ margin:5px 0; }

ol,ul{
	list-style:none;
}

h1,h2,h3,h4,h5,h6,small{
	font-size:100%;
}

address{
	font-style:normal;
} 

a,
input{
	outline:none;
}


/* Basic Text Link */
a{
	color:#333333; text-decoration:underline;
}
a:link{
	color:#333333; text-decoration:underline;
}
a:visited{
	color:#333333; text-decoration:underline;
}
a:hover{
	color:#333333; text-decoration:none;
}
a:focus{
	color:#333333; text-decoration:underline;
}
a:active{
	color:#333333; text-decoration:underline;
}


/* Common Styles */
img{
	max-width:100%;
	height:auto;
}

ul,
ol,
.column{
	overflow:hidden;
	position:relative;
}


/* ========================================================================
	Path（パンくず）
======================================================================== */
#path{
	padding:20px 0;
	font-size:10px;
}

#path ol{
	padding:0 0 0 0;
}

#path ol li{
	float:left;
}

#path ol li::after{ content:"＞"; padding:0 0.5em; }
#path ol li:last-child::after{ display:none; }

@media screen and (max-width:767px){
#path{
	padding:20px 0 10px 0;
}

#path ol{
	padding:0 0 10px 0;
}

#path ol li{
	line-height:2;
}
}


/* ========================================================================
	Paging（ページング）
======================================================================== */
.paging{
	padding:0 0 40px 0;
	text-align:center;
	font-size:0;
	font-weight:bold;
}

.paging span{
	display:inline-block;
	margin:0 5px 10px;
	font-size:1.4rem;
	vertical-align:bottom;
}

.paging span.current{
	width:30px;
	line-height:28px;
	background:#000000;
	border:1px solid #000000;
	color:#ffffff;
}

.paging a{
	display:inline-block;
	width:30px;
	line-height:28px;
	margin:0 5px 10px;
	border:1px solid #cccccc;
	font-size:1.4rem;
	text-decoration:none;
	transition-duration:0.2s;
}

.paging a:hover{
	background:#000000;
	border-color:#000000;
	color:#ffffff;
}

@media screen and (max-width:767px){
.paging{
	width:auto;
	padding:0 0 20px 0;
}
}


/* ========================================================================
	Widget（共通パーツ）
======================================================================== */

/* ----------------------------------------
	widget_list
---------------------------------------- */
.widget_list li{
	float:left;
	width:260px;
	margin:0 53px 50px 0;
}
.widget_list li:nth-child(4n){ margin-right:0; }

.widget_list li a{
	display:block;
	text-decoration:none;
}

.widget_list li h3{
	padding:28px 0 0 0;
	text-align:center;
	font-size:1.8rem;
	font-weight:bold;
	line-height:22px;
}

.widget_list li p{
	padding:14px 0 0 0;
}

@media screen and (max-width:767px){
.widget_list{
	margin:0 -5px 10px;
}

.widget_list li{
	width:50%;
	margin:0;
	padding:0 5px 20px;
}

.widget_list li img{
	display:block;
	margin:0 auto 10px;
}

.widget_list li h3{
	padding:0;
	font-size:1.6rem;
}

.widget_list li p{
	padding:10px 0 0 0;
}
}


/* ----------------------------------------
	widget_theater
---------------------------------------- */
.widget_theater li{
	position:relative;
	float:left;
	width:260px;
	margin:0 53px 50px 0;
}
.widget_theater li:nth-child(4n){ margin-right:0; }

.widget_theater li > a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:200px;
	background:#ffffff;
	opacity:0;
	text-decoration:none;
	transition-duration:0.2s;
	z-index:1;
}

.widget_theater li > a:hover{
	opacity:0.2;
	background:#ffffff;
}

.widget_theater li h3{
	padding:10px 0 0 0;
	text-align:center;
	font-size:1.6rem;
	font-weight:bold;
}
.widget_theater li h3 a{ text-decoration:none; }
.widget_theater li h3 a:hover{ text-decoration:underline; }

.widget_theater li iframe{
	width:100%;
	height:200px;
}

@media screen and (max-width:767px){
.widget_theater{
	padding:0 0 10px 0;
}

.widget_theater li{
	float:none;
	width:100%;
	margin:0 0 20px 0;
}

.widget_theater li iframe{
	height:200px;
}
}


/* pick_up
---------------------------------------- */
.widget_theater.pick_up li{
	width:366px;
	margin-right:51px;
}
.widget_theater.pick_up li:nth-child(3){ margin-right:0; }

.widget_theater.pick_up li > a,
.widget_theater.pick_up li iframe{
	height:240px;
}

@media screen and (max-width:767px){
.widget_theater.pick_up li{
	width:100%;
	margin-right:0;
}

.widget_theater.pick_up li > a,
.widget_theater.pick_up li iframe{
	height:200px;
}
}