@charset "UTF-8";

/*
    #000000:黒色
    #00FF00:桃色
    #A12AA7:濃い桃色
    #F9C6FF:薄い桃色
    #938293:薄紫色
    #FFFFFF:白色
*/


/*全体設定
---------------------------------------------------------------------------*/

/*フォント設定*/
html {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', sans-serif;
}

/*ページ本体のデザイン*/
body {
    font: 100%;    /*文字サイズ*/
    color: #000000;    /*文字色*/
    margin: 0px;    /*内側位置補正*/
    padding: 0px;    /*外側位置補正*/
    text-align: center;    /*文字左右位置*/
    background: #FFFFFF;    /*背景色*/
}

/*各タグの共通事項*/
h3,p,ul,li,dl,dt,dd{
    margin: 0px;    /*内側位置補正*/
    padding: 0px;    /*外側位置補正*/
}

/*明朝体を使うタグ*/
h1,h2,h3,#menu{
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;/*フォント設定*/
    margin: 0px;    /*内側位置補正*/
    padding: 0px;    /*外側位置補正*/
}

/*リストタグ*/
ul{
    list-style-type: none;    /*黒丸削除*/
}

/*写真*/
img {
    object-fit: contain; /*画像の縦横比は維持*/
    max-width: 100%;    /*最大画像幅は画面100%*/
    border: none;    /*境界線削除*/
}

/*色設定*/
.color1 {
    color: #FF00FF;
}

.color2 {
    color: #A12AA7;
}

.color3 {
    color: #A12AA7;
}

.look {
    background: #000000;
}

.text-center {
    text-align: center;
}

/*リンク設定
---------------------------------------------------------------------------*/
/*リンク通常時*/
a {
    color: #FF00FF;    /*文字色*/
}

/*リンクカーソルオーバー時*/
a:hover {
    color: #938293;    /*カーソルオーバー時文字色*/
}


/*画面幅による表示切替設定
---------------------------------------------------------------------------*/


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block;
}
.sp {
    display: none;
}
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 912px) {
    .pc {
        display: none;
    }
    .sp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    /* ロゴサイズの明示的な指定 */
    .logo {
        flex: 0 0 auto; /* サイズを固定 */
        padding: 5px 0;
    }
    
    /* SP用フッターの高さを固定 */
    #footer.sp {
        height: 500px; /* 適切な高さに調整 */
        overflow-y: auto; /* 内容が多い場合はスクロール可能に */
        padding: 20px 0;
    }
    
    /* SP用フッターのテーブルスタイル */
    #footer.sp table {
        width: 100%;
        border-collapse: collapse;
    }
    
    /* SP用フッターのセルスタイル */
    #footer.sp td {
        padding: 5px;
        vertical-align: top;
    }
    
    .logo img {
        height: 75px;
        width: auto;
    }
    
    /* ナビゲーション全体を右端に配置 */
    .nav {
        display: flex;
        justify-content: flex-end;
        width: auto; /* 必要な幅だけ取る */
    }
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after
    {
        display: block;
    }
    
    /* SP用フッターのリンクスタイル */
    #footer.sp a {
        display: inline-block;
        padding: 3px 0;
        text-decoration: none;
        color: #000000;
        font-size: 14px;
    }
    
    /* SP用フッターのSNSアイコンコンテナ */
    #footer.sp .text-center {
        text-align: center;
        padding: 10px 0;
    }
    
    /* SP用フッターのSNSアイコン間隔 */
    #footer.sp .text-center a {
        margin: 0 5px;
    }
}


/*hタグ設定
---------------------------------------------------------------------------*/
/*見出し1*/
h1 {
    margin: 0px;    /*内側位置補正*/
    padding: 0px;    /*外側位置補正*/
    background: #A12AA7;    /*背景色*/
    color: #FFFFFF;    /*文字色*/
    font-size: 15px;    /*文字サイズ*/
    text-align: center;    /*文字左右位置*/
}

/*見出し2*/
h2 {
    margin: 0px;    /*内側位置補正*/
    padding: 0px;    /*外側位置補正*/
    background: #A12AA7;    /*背景色*/
    color: #FFFFFF;        /*文字色*/
    font-size: 120%;    /*文字サイズ*/
    text-align: center;    /*文字左右位置*/
    line-height: 50px;    /*高さ*/
}

/*見出し3*/
h3 {
    margin-left: 5px;    /*内側位置補正*/
    padding: 0px;    /*外側位置補正*/
    background: #9161AB;    /*背景色*/
    color: #FFFFFF;        /*文字色*/
    font-size: 120%;    /*文字サイズ*/
    text-align: center;    /*文字左右位置*/
    line-height: 30px;    /*高さ*/
}

/*見出し4*/
h4 {
    margin-left: 10px;    /*内側位置補正*/
    padding: 0px;    /*外側位置補正*/
    border-bottom: 1px solid #000; /*下線設定*/
    color: #A12AA7;        /*文字色*/
    font-size: 100%;    /*文字サイズ*/
    text-align: left;    /*文字左右位置*/
    line-height: 25px;    /*高さ*/
}



/*ヘッダー設定
---------------------------------------------------------------------------*/
/* 【SP用】ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
    margin-right: 0; /* 右マージンを0に */
    padding-right: 0; /* 右パディングを0に */
}

/* メニュー範囲外をクリックするためのオーバーレイ */
.menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98; /* メニューより下、他のコンテンツより上 */
    display: none;
    cursor: pointer; /* カーソルをポインターに変更 */
    pointer-events: auto; /* ポインターイベントを有効化 */
    -webkit-tap-highlight-color: transparent; /* タップ時のハイライトを無効化 */
    touch-action: auto; /* タッチアクションを有効化 */
}

/* オーバーレイ表示 */
#drawer_input:checked ~ .menu_overlay {
    display: block;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
    bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
    display: block;
    width: 150px;
    height: 100%;
    text-align: left;
    position: fixed;
    left: -100%;
    z-index: 99;
    background: #000000;
    transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
    left: 0;/* メニューを画面に入れる */
}

/* 【SP用】ここから上がハンバーガーメニューに関するCSS */

/* 【SP用】メニュー項目 */
.menu {
    text-align: left;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #FFFFFF;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.menu_layout {
    margin-left: 5px;
    margin-right: 5px;
}

/* 【SP用】応援するボタンのスタイル */
.support-menu {
    background-color: #A12AA7;
}

.support-menu a {
    color: #FFFFFF !important;
}

/* 【PC用】ヘッダー設定 */
.header_pc {
    position: relative;
    background: #FFFFFF;
    width: 912px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    color: #000000;
    font: 150%;
    text-decoration: none;
    text-align: left;
}

/* 【PC用】メインメニュー設定 */
.menu-container {
    text-align: center;
}

#menu {
    text-align: center;
    display: inline-block;
    width: 114px;
    height: 50px;
    line-height: 50px;
    border-width: thin;
    border-right-style: solid;
}

#menu2 {
    text-align: center;
    display: inline-block;
    width: 114px;
    height: 50px;
    line-height: 50px;
    border-width: thin;
    border-right-style: solid;
}

.menu_ditail {
    display: block;
}

/* 【PC用】メインメニューリンク設定 */
#menu a {
    color: #000000;
    font: 150%;
    text-decoration: none;
    display: block;
}

#menu2 a {
    color: #FFFFFF;
    font: 150%;
    text-decoration: none;
    display: block;
    background-color: #A12AA7;
}

.menu_top {
    border-width: thin;
    border-left-style: solid;
}

.hedder_pc_body {
    background: #FFFFFF;
    height: 150px;
}

/*トップ設定
---------------------------------------------------------------------------*/
#top {
    background: #FFFFFF;
    width: 500px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}


/*コンテナー設定
---------------------------------------------------------------------------*/
#container {
    width: 100%;
}

/*コンテンツ設定
---------------------------------------------------------------------------*/
#contents {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    width: 912px;
    max-width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
    display: inline;
    float: center;
    margin-left: 20px;
    padding-top: 20px;
    padding-bottom: 100px;
    text-align: left;
    max-width: 100%;
}

/*メインコンテンツ内の見出し設定箇所*/
#main h2 {
    font-size: 120%;
    color: #FFFFFF;        /*文字色を白色に*/
    line-height: 50px;                    /*見出しの高さ*/
    padding-left: 10px;
    letter-spacing: 0.2em;    
}

/*メインコンテンツ内の段落設定箇所*/
#main p {
    padding: 0.5em 10px 0.5em;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', sans-serif;
}

/*SNSを表示するとSPで本ページをスクロールできなくなる対策の余白*/
.sns {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
}

/* Twitterセクションのスタイル */
#twitter-section {
    width: 100%;
    max-width: 912px;
    margin: 0 auto;
    padding: 20px 0;
    clear: both;
}

.twitter-container {
    width: 100%;
    max-width: 912px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.twitter-container h2 {
    background: #A12AA7;
    color: #FFFFFF;
    font-size: 120%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 10px;
}

.twitter-widget {
    margin: 20px 0;
    max-width: 100%;
}

/* レスポンシブ対応のビデオコンテナ */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 アスペクト比 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*表の書式設定*/
.table_basic {    /*表の本文(左寄せ)*/
    color: #000000;
    background-color: #CCCCCC;    
}

.table_center {    /*表の本文(中央寄せ)*/
    color: #000000;
    background-color: #CCCCCC;
    text-align: center;
}

.table_basic_row_head {    /*表の行見出し*/
    color: #FFFFFF;
    background-color: #976A95;
    font-weight: bold;
    text-align: center;
}

.table_basic_clm_head {    /*表の列見出し*/
    color: #000000;
    background-color: #CCCCCC;
    text-align: center;
    font-weight: bold;
}

.auto-style16 {
    background-color: #C0C0C0;
}

/*フッター（リンク部分）
---------------------------------------------------------------------------*/
#footer_link {
    font: 75% "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
    clear: both;
    width: 912px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    padding-top: 30px;
}

#footer_link a {
    color: #938293;
}

#footer_link a:hover {
    color: #938293;    /*カーソルオーバー時に薄い紫色にする*/
}


/*フッター（copyright部分）
---------------------------------------------------------------------------*/
#footer {
    clear: both;
    text-align: center;
    height: 70px;
    padding-top: 30px;
}

#footer a {
    color: #000000;
    text-decoration: none;
}

#copyright {
    clear: both;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*アイコン類設定
-------------------------------------------------------------------------*/

/*運転会*/
#untenkai {
    background: #FF00FF;
    font: 20%;
    color: #FFFFFF;
    text-align: center;
    width: 100px;
    height: 25px;
    margin: 0px;
    padding: 0px;
}

/*ご注意*/
#caution {
    background: #FF0000;
    font: 20%;
    color: #FFFFFF;
    text-align: center;
    width: 100px;
    height: 25px;
    margin: 0px;
    padding: 0px;
}

/*お知らせ*/
#others {
    background: #0000FF;
    font: 20%;
    color: #FFFFFF;
    text-align: center;
    width: 100px;
    height: 25px;
    margin: 0px;
    padding: 0px;
}