@charset "UTF-8";

html{
    font-size: 62.5%;
}

body{
    font-family: "メイリオ", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    color: #333;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 500;
    background: #fcfcfc;
}

h1, h2, h3{
    display: inline;
}

a{
    color: #1e50a2;
}

a:hover{
    text-decoration: underline;
}

h2 > a{
    color: #000;
}

/* header, footer, clearfix
/* ============================== */

#header{
    width: 100%;
    padding: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    background: #fcfcfc;
    border-bottom: 1px solid #6f5436;
    box-sizing: border-box;
}

#header > a{
    color: #000;
}

#breadcrumb{
    width: 100%;
    padding: 0;
    margin: 20px 0;
    box-sizing: border-box;
}

#page_top{
    position : fixed;
	bottom : 10px;
	right : 10px;
	padding :10px 25px;
    color: #6f5436;
    background: #f5f5f5;
    border: 1px solid #6f5436;
    border-radius: 4px;
    box-sizing: border-box;
}

#page_top:hover{
    color: #fff;
    background: #6f5436;
	border: solid 1px #6f5436;
}

#footer{
    width: 100%;
    text-align: center;
    padding: 10px;
    color: #000;
    background: #fcfcfc;
    border-top: 1px solid #6f5436;
    box-sizing: border-box;
}

#footer > a{
    color: #000;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* search
/* ============================== */

#search_wrapper{
	width: 100%;
	background: #eae8e1;
    border-bottom: 1px solid #6f5436;
	padding: 6px 0;
}

.search_form{
	position: relative;
	width: 80%;
	padding-right: 60px;
	margin: 0 auto;
}

.search_text{
	width: 100%;
	height: 40px;
	background: #fdfdfd;
    padding: 10px;
    border: 1px solid #666;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.search_submit{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 60px;
	height: 40px;
	padding: 5px 0;
	text-align: center;
	color: #fff;
    font-weight: bold;
	background: #b7282e;
    border: 1px solid #666;
    border-left: none;
    border-radius: 0 4px 4px 0;
}

/* nav
/* ============================== */

#nav_wrapper{
    width: 100%;
    height: 32px;
    background: #6f5436;
    border-bottom: 1px solid #6f5436;
    box-sizing: border-box;
}

#nav{
    position: relative;
    width: 641px;
    height: 33px;
    margin: 0 auto;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    z-index: 999;
}

.nav > input{
    display: none;
}

.nav{
    float: left;
    box-sizing: border-box;
}

.nav > a, .nav > label{
    display: block;
    width: 160px;
    padding: 8px;
    color: #fff;
    text-align: center;
    border-left: 1px solid #fff;
    cursor: pointer;
}

.nav:hover > a, .nav:hover > label{
    color: #000;
    background: #fcfcfc;
}

/* nav subメニュー big, small
/* ============================== */

.nav_sub_b{
	position: absolute;
	visibility: hidden;
	top: 100%;
	left: 0;
	width: 640px;
	background: #fcfcfc;
	border-bottom: 3px solid #6f5436;
	transition: .2s;
	opacity: 0;
}

.nav_sub_b li{
	float: left;
}

.nav_sub_s{
	position: absolute;
	visibility: hidden;
	top: 100%;
	width: 160px;
	background: #fcfcfc;
	border-bottom: 3px solid #6f5436;
	transition: .2s;
	opacity: 0;
}

.nav ul li a{
    display: block;
    width: 160px;
    padding: 8px;
    color: #000;
    text-align: center;
}

.nav ul li a:hover{
    background: #f8f4e6;
}

.nav:hover .nav_sub_b, .nav:hover .nav_sub_s{
	visibility: visible;
	opacity: 1;
}

/* contents, breadcrumb, section
/* ============================== */

.contents_wrapper{
    width: 90%;
	height: auto;
	margin: 30px auto;
}

.breadcrumb{
    font-size: 1.6rem;
    font-weight: bold;
}

.section{
    width: 98%;
    height: auto;
    margin: 15px auto 0 auto;
    font-size: 1.3rem;
    line-height: 2rem;
    text-align: center;
}

.section_18{
    width: 98%;
    height: auto;
    margin: 10px auto 0 auto;
    font-size: 1.3rem;
    text-align: right;
}

/* paginate
/* ============================== */

.p_wrapper{
    position: relative;
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.p_prev, .p_current, .p_list, .p_dots, .p_next{
	display: block;
	float: left;
	box-sizing: border-box;
}

.p_current{
    padding: 6px 15px;
    color: #fff;
    font-weight: bold;
    background: #999;
	border: 1px solid #999;
}

.p_dots{
	padding: 6px;
}

.p_list > a{
	display: block;
	padding: 6px 15px;
	background: #fff;
	border: 1px solid #999;
}

.p_prev > a{
	display: block;
	padding: 6px 10px;
	background: #fff;
	border: 1px solid #999;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}

.p_next > a{
	display: block;
	padding: 6px 10px;
	background: #fff;
	border: 1px solid #999;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

.p_list > a:hover, .p_prev > a:hover, .p_next > a:hover{
	background: #f5f5f5;
}

/* entry
/* ============================== */

.entry{
	display: table;
	float: left;
	width: 33%;
	margin-right: 0.3%;
    margin-bottom: 5px;
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
	box-sizing: border-box;
}

.entry_l{
	display: table-cell;
	width: 120px;
	height: 170px;
	background: #fff;
    border-right: 1px solid #c0c0c0;
	box-sizing: border-box;
}

.entry_r{
	display: table-cell;
	width: auto;
	vertical-align: top;
	padding: 4px;
}

.entry_r01{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
    width: 100%;
    padding-bottom: 2px;
	margin-bottom: 4px;
	border-bottom: 1px dotted #c0c0c0;
}

.entry_r01b{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-weight: bold;
	width: 100%;
    padding-bottom: 2px;
	margin-bottom: 4px;
	border-bottom: 1px dotted #c0c0c0;
}

.entry_r01b a{
    display: block;
}

.entry_r02{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
    width: 100%;
    padding: 2px;
	font-size: 1.3rem;
}

/* title
/* ============================== */

.title_heading{
	width: 100%;
	height: auto;
	padding: 8px;
	margin: 0 0 10px 0;
	text-align: right;
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
}

.title_movie{
	width: 100%;
	height: auto;
	padding: 10px;
	margin: 20px 0;
	background: #000;
}

.title_outline{
	width: 100%;
	height: auto;
	padding: 10px;
	margin: 10px 0 0 0;
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
}

.title_tbl{
	display: table;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
}

.title_tbl_l{
	display: table-cell;
	width: 25%;
	background: #fff;
    border-right: 1px solid #c0c0c0;
	box-sizing: border-box;
}

.title_tbl_l  img{
	width: 100%
}

.title_tbl_r{
	display: table-cell;
	width: 75%;
	vertical-align: top;
}

.title_tbl_r01{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 1.6rem;
	width: 100%;
	padding: 4px;
	margin: 4px 0;
	border-bottom: 1px dashed #c0c0c0;
}

.title_tbl_r01b{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 1.6rem;
	font-weight: bold;
	width: 100%;
	padding: 4px;
	margin: 4px 0;
	border-bottom: 1px dashed #c0c0c0;
}

.title_tbl_r01b a{
    display: block;
}

.title_tbl_r02{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	width: 100%;
	padding: 4px;
	margin: 4px 0;
}

.title_official_link > a{
    display: block;
    padding: 12px 8px;
    margin: 6px;
    background: #fffaf0;
    border: 1px solid #6f5436;
    border-radius: 4px;
    box-sizing: border-box;
}

.title_official_link > a:hover{
    background: #faf0e6;
}

.pickup_heading{
    width: 100%;
    padding: 12px 8px;
    margin: 20px 0 10px 0;
    color: #fff;
	font-size: 1.6rem;
    font-weight: bold;
    background: #6f5436;
    border-bottom: 1px solid #6f5436;
    border-radius: 4px;
    box-sizing: border-box;
}

/* listm, listl
/* ============================== */

.list_wrapper{
    width: 100%;
    height: auto;
    padding: 20px 40px;
    margin-top: 20px;
    line-height: 1.5;
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
	box-sizing: border-box;
}

.list_link{
    float: left;
}

.list_link a{
    display: block;
    padding: 8px 12px;
    margin: 4px;
    background: #fffaf0;
    border: 1px solid #6f5436;
    border-radius: 4px;
    box-sizing: border-box;
}

.list_link a:hover{
    background: #faf0e6;
}

/* about
/* ============================== */

.about_wrapper{
    width: 100%;
    height: auto;
    padding: 20px 40px;
    margin-top: 20px;
    line-height: 1.5;
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
	box-sizing: border-box;
}

.about_wrapper > ul{
    list-style-type: circle;
}

/* duga
/* ============================== */

.duga_wrapper{
    width: 100%;
    height: auto;
    padding: 20px 40px;
    margin-top: 20px;
    color: #000;
    line-height: 1.8;
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
	box-sizing: border-box;
}

.duga_wrapper img{
    max-width: 100%;
    height: auto;
    border: 1px solid #c0c0c0;
    box-sizing: border-box;
}

.duga_wrapper a{
    text-decoration: underline;
}

.duga_heading{
    width: 100%;
    padding: 8px;
    margin: 20px 0 10px 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    background: #6f5436;
    border-bottom: 1px solid #6f5436;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
    box-sizing: border-box;
}

.duga_section{
    width: 100%;
    max-width: 800px;
    margin: 10px 0;
}

.duga_section > ul{
    margin-left: 20px;
    list-style-type: circle;
}

.duga_matome{
    width: 100%;
    margin: 15px 0;
    padding: 10px;
    font-weight: bold;
    font-size: 1.6rem;
    background: #fffaf0;
    border: 1px solid #6f5436;
    border-radius: 4px;
}

.duga_table{
    width: 100%;
    margin: 6px;
}

.duga_table tr th, .duga_table tr td{
    width: 25%;
    padding: 4px;
    border: 1px solid #c0c0c0;
}

.duga_table tr th{
    background: #fafafa;
}

/* ============================== */
/* max-width: 900px for tb
/* ============================== */
@media screen and (max-width: 900px) {

/* contents, breadcrumb
/* ============================== */

.contents_wrapper{
    width: 98%;
    height: auto;
    margin: 30px auto;
}

.list_wrapper{
    padding: 20px;
}

.duga_wrapper{
    padding: 20px;
}

.qr{
    display: none;
}

/* search for tb, sp
/* ============================== */

.search_form{
    position: relative;
    width: 98%;
    padding-right: 60px;
    margin: 0 auto;
}

/* nav for tb, sp
/* ============================== */

#nav_wrapper{
    height: initial;
}

#nav{
    width: 100%;
    height: 44px;
}

.nav{
    width: 25%;
}

.nav > a, .nav > label{
    display: block;
    width: 100%;
    padding: 14px 8px;
    color: #fff;
    text-align: center;
    border-left: 1px solid #f8f8ff;
    cursor: pointer;
}

.nav:hover > a, .nav:hover > label{
    color: #000;
    background: #fff;
}

.nav_sub_b, .nav_sub_s{
    position: absolute;
    visibility: hidden;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    transition: .2s;
    opacity: 0;
    border-bottom: none;
    box-sizing: border-box;
    z-index: 999;
}

.nav_sub_b li{
    float: left;
    width: 50%;
}

.nav_sub_s li{
    float: left;
    width: 100%;
}

.nav ul li a{
    display: block;
    width: 100%;
    padding: 14px 8px;
    color: #000;
    text-align: left;
    border-bottom: 1px solid #666;
}

.nav:hover .nav_sub_b, .nav:hover .nav_sub_s{
    visibility: hidden;
    opacity: 0;
}

.nav input:checked ~ .nav_sub_b, .nav input:checked ~ .nav_sub_s{
    visibility: visible;
    height: auto;
    opacity: 1;
}

.nav input ~ label::after{
    content: ' +';
}

.nav input:checked ~ label::after{
    content: ' -';
}

.nav input:checked ~ label{
    color: #000;
    font-weight: bold;
    background: #fff;
}

/* entry for tb
/* ============================== */

    .entry{
        display: table;
        float: left;
        width: 49.5%;
        height: 171px;
        margin-right: 0.4%;
        margin-bottom: 5px;
        background: #fff;
        border: 1px solid #c0c0c0;
        border-radius: 4px;
        box-sizing: border-box;
    }
}

/* ============================== */
/* max-width: 700px for sp
/* ============================== */
@media screen and (max-width: 700px) {


/* entry for sp
/* ============================== */

    .entry{
        display: table;
        float: left;
        width: 100%;
        height: 171px;
        margin: 0 auto;
        margin-bottom: 5px;
        background: #fff;
        border: 1px solid #c0c0c0;
        border-radius: 4px;
        box-sizing: border-box;
    }
}