@charset "utf-8";

/* --- 基本設定 --- */
body {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(freewheel_new.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #ffffff;
}

div#container {
    width: 950px;           /* 850pxから100px広げて、全体の窮屈さを解消します */
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    /* overflow: hidden; はそのままでOK */
}

/* --- コンテンツエリアの調整 --- */
div#content {
    width: 700px;           /* 600pxからさらに100px広げます。これで改行位置もより安定します */
    float: right;
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 30px;          /* 内側の余白を少し増やすと、より高級感が出ます */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-height: 600px;
    overflow: hidden; 

}

h2.profile-title {
    font-family: "ヒラギノ明朝 ProN W6", "Yu Mincho", "MS PMincho", serif;
    font-size: 1.8em;
    color: #ffffff;
    margin: 0;
    letter-spacing: 4px;
}

h2.profile-title .en-name {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 0.7em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-left: 5px;
    vertical-align: baseline;
    color: #ffffff;
}

p.profile-subtitle {
    font-family: "Meiryo", "MS PGothic", sans-serif;
    font-size: 0.95em;
    color: #ff0000;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* 見出しの共通デザイン */
div#content h3 {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 7px 12px;
    font-size: 0.95em;
    font-family: "Meiryo", sans-serif;
    margin-top: 35px;
}

/* 個別の見出し色設定 */
h3.contact-title {
    border-left: 5px solid #87ceeb;
    color: #87ceeb;
}

h3.news-title {
    border-left: 5px solid #ffa500;
    color: #ffa500;
}

img.photo-1 {
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

p {
    font-size: 0.95em;
    font-family: "Meiryo", "MS PGothic", sans-serif;
    color: #ffffff;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

/* テーブル（ニュース欄） */
table {
    font-size: 0.85em;
    font-family: "Meiryo", sans-serif;
    color: #ffffff;
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
}

th, td {
    padding: 12px 8px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* --- サイドバー（固定設定済み） --- */
div#sidebar {
    width: 160px;
    position: fixed;
    top: 215px; /* 手塚さんが調整された値 */
}

ul.sidemenu {
    font-size: 0.85em;
    margin: 0;
    padding: 0;
}

ul.sidemenu li { list-style-type: none; }

ul.sidemenu li a {
    display: block;
    line-height: 40px;
    text-decoration: none;
    color: #ffffff !important;
    background-color: rgba(189, 183, 107, 0.7);
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    padding-left: 15px;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: 0.3s;
}

ul.sidemenu li a:hover {
    background-color: rgba(189, 183, 107, 1.0);
}

ul.sidemenu li a[href*="facebook"] {
    background-color: rgba(59, 89, 152, 0.7);
}

ul.sidemenu li a[href*="facebook"]:hover {
    background-color: rgba(59, 89, 152, 1.0);
}

/* --- フッター --- */
div#footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 50px;
    padding: 20px 0;
    clear: both;
}

address {
    font-size: 0.75em;
    font-style: normal;
    text-align: center;
    color: #cccccc;
}

a { color: #87ceeb; text-decoration: none; }
a:hover { text-decoration: underline; }
.artist-table td {
    line-height: 1.8;       /* 行間を広くする */
    padding-bottom: 20px;   /* <br />の後の余白をより強調したい場合 */
        word-break: keep-all; /* 単語の途中での改行を防ぐ */
}
/* --- ヘッダー（ロゴ）の固定設定（PC・スマホ共通） --- */
div#header {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-475px);
    -webkit-transform: translateX(-475px);
    width: 950px;
    z-index: 9999;
    pointer-events: none;
}

div#header img {
    pointer-events: auto;
}

/* 現在地のメニュー */
ul.sidemenu li a.current {
    background-color: rgba(189, 183, 107, 1.0) !important;
    font-weight: bold;
}

div#header img {
    pointer-events: auto; /* 画像（ロゴ）自体はクリック可能にする */
}

/* --- iOS(iPhone)で背景画像が拡大されすぎるのを防ぐ --- */
@media screen and (max-width: 480px) {
    body {
        background-attachment: scroll; /* スマホではスクロールにする方が挙動が安定します */
    }
}