.bgm   {
    position:absolute;
    width:122px;
    top:20px;
    left:838px;
    height:13px;
}

.bgm .bgm_icn   {
    position:absolute;
    top:0px;
    left:0px;   
}

.bgm .on_icn    {
    position:absolute;
    top:0px;
    left:46px;
}

.bgm .off_icn   {
    position:absolute;
    top:0px;
    left:86px;
}

#main_image    {
    width:960px;
    height:500px;   
}

.banner_box {
    width:960px;
    margin-top:30px;
    text-align:center;
}

.banner_box img {
    margin-left:30px;   
}

.banner_box .l_banner   {
    margin-left:0px;
}

#information    {
    margin-top:22px;
    margin-bottom:16px;
}

#information dl {
    border-bottom: 1px dotted #737373;
    padding-top:12px;
    padding-bottom:12px;
    float:left;
    width:471px;
}

#information dt,#information dd {
    font-size:15px;
	line-height:1.5em;
}

#information dd {
	margin-left:130px;
}

#information dt {
    float:left;
    color:#b38143;
    width:130px;
	height:38px;
}

#information dd a   {
    color:#231815;
}

#information .r_info    {
    margin-left:18px;
}

#information .info_top  {
    border-top: 1px dotted #737373;    
}

.info_head  {
    position:relative;
    height:50px;
}

.info_head .title_back  {
    position:absolute;
    top:0px;
    left:0px;
    width:222px;
    height:20px;
    border-left: 2px solid #b9171e;
    border-right: 2px solid #b9171e;
}

.info_head .info_title  {
    position:absolute;
    top:0px;
    left:21px;
}

.info_head .more_info   {
    position:absolute;
    top:0px;
    left:864px;
}

/*20190422追加*/
.info_head .imp_info	{
	padding:0 !important;
	margin:0 !important;
	position:absolute;
	top:0;
	left:250px;
	width:590px !important;
	border:none !important;
	font-weight:bold;
}

.info_head .imp_info dt	{
	float:left;
	width:65px !important;
	color:#f00 !important;
	font-weight:bold;
	padding:0 !important;
	margin:0 !important;
}

.info_head .imp_info dd	{
	margin-left:55px !important;
	line-height:1.5em;
}

hr.info_line {
	border:none;
	border-top:1px dotted #737373;
	margin-bottom:10px;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .bgm {
        position: static;
        width: auto;
        height: 13px;
        transform: none;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .bgm .bgm_icn {
        position: static;
        margin-right: 6px;
    }
    
    .bgm .on_icn {
        position: static;
        margin-right: 4px;
    }
    
    .bgm .off_icn {
        position: static;
    }
    
    #main_image {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    /* PCスライドを非表示 */
    .desktop_slides {
        display: none;
    }
    
    /* モバイルスライドショー */
    .mobile_slideshow {
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: 650px;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .slides_container {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
    
    .slide.active {
        opacity: 1;
    }
    
    .slide a {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: #fff;
    }
    
    /* インジケーター */
    .slide_indicators {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 6px;
        border: 2px solid #fff;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s ease;
        flex-shrink: 0;
    }
    
    .indicator.active {
        background: #fff;
    }
    
    /* ナビゲーションボタン（非表示） */
    .slide_nav {
        display: none;
    }
    
    .banner_box {
        width: 100%;
        margin-top: 20px;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .banner_box img {
        width: 98%;
        height: auto;
        margin: 0;
    }
    
    .banner_box .l_banner {
        margin: 0;
    }
    
    #information {
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    #information dl {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
    
    #information dl:first-of-type {
        border-top: none;
    }
    
    #information dt {
        width: 100%;
        float: none;
        height: auto;
        margin-bottom: 5px;
    }
    
    #information dd {
        margin-left: 0;
    }
    
    #information .r_info {
        margin-left: 0;
    }
    
    .info_head {
        height: auto;
        padding: 10px 0;
    }
    
    .info_head .title_back {
        position: static;
        width: 90%;
        margin: 0 auto 10px;
        text-align: center;
    }
    
    .info_head .info_title {
        position: static;
        text-align: center;
        margin-bottom: 10px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .info_head .more_info {
        position: static;
        text-align: center;
    }
    
    .info_head .imp_info {
        position: static;
        width: 100% !important;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .info_head .imp_info dt {
        width: 100% !important;
        float: none;
        text-align: left;
        margin-bottom: 5px;
    }
    
    .info_head .imp_info dd {
        margin-left: 0 !important;
        text-align: left;
    }
    
    #information .info_top {
        border-top: none;
    }
}