/* URAページ専用スタイル */

/* 見出し関連 */
h4.liason, h5.liason {
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ff9500;
    position: relative;
    padding-left: 25px;
}

h4.liason {
    font-size: 18px;
}

h5.liason {
    font-size: 16px;
}

h4.liason:before, h5.liason:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0c8"; /* 四角アイコン */
    font-weight: 900;
    color: #ff9500;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}

/* マージン設定 */
.tb20 {
    margin-bottom: 20px;
}

.tb10 {
    margin-bottom: 10px;
}

.tb5 {
    margin-bottom: 5px;
}

/* アコーディオン内のリスト */
.hidden_box .hidden_show ul.action {
    margin-left: 20px;
    list-style: none !important;
    padding-left: 0;
}

.hidden_box .hidden_show ul.action li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: #333333;
    list-style: none !important;
}

.hidden_box .hidden_show ul.action li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff9500;
}

/* 関連情報リスト */
ul.achievements {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}

ul.achievements li {
    margin-bottom: 8px;
    color: #333333;
    list-style: disc;
}

ul.achievements li a {
    color: #333333;
    text-decoration: underline;
}

ul.achievements li a:hover {
    color: #ff9500;
    text-decoration: underline;
}

/* URA室紹介図用スタイル */
.ura-figure {
    text-align: center;
    margin: 30px 0;
}

.ura-figure img {
    max-width: 100%;
    height: auto;
    border: 1px solid #cccccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.figure-caption {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
    font-style: italic;
}

/* 目立つお知らせボックス */
.ura-notice-box {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff8f0;
    border-left: 5px solid #ff9500;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ura-notice-content {
    display: flex;
    align-items: center;
}

.notice-icon {
    color: #ff9500;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.notice-text {
    color: #333333;
    font-weight: bold;
    line-height: 1.5;
}

.notice-text a {
    color: #ff9500;
    text-decoration: underline;
}

.notice-text a:hover {
    color: #e67e00;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 1240px) {
    h4.liason {
        font-size: 16px;
    }
    
    h5.liason {
        font-size: 15px;
    }
    
    .ura-figure {
        margin: 20px 0;
    }
    
    .figure-caption {
        font-size: 13px;
    }
    
    .ura-notice-box {
        padding: 12px;
    }
    
    .notice-icon {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    h4.liason {
        font-size: 15px;
    }
    
    h5.liason {
        font-size: 14px;
    }
    
    .ura-figure {
        margin: 15px 0;
    }
    
    .figure-caption {
        font-size: 12px;
    }
    
    .ura-notice-box {
        padding: 10px;
    }
    
    .notice-icon {
        font-size: 16px;
        margin-right: 10px;
    }
}

/* 問い合わせ先情報ボックス */
.ura-contact-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
}

.contact-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 1px dotted #cccccc;
}

.contact-info {
    padding-left: 10px;
}

.contact-info p {
    margin: 8px 0;
    line-height: 1.5;
}

.contact-info i {
    color: #666666;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 1240px) {
    .ura-contact-box {
        padding: 12px 15px;
    }
    
    .contact-title {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .ura-contact-box {
        padding: 10px 12px;
    }
    
    .contact-title {
        font-size: 14px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
}