@charset "UTF-8";
    /* 基本的なCSSリセットとフォント設定 */
    body {
        font-family: 'Noto Sans JP', Arial, Helvetica, sans-serif;
        margin: 0;
        padding: 0;
        color: #333;
        line-height: 1.6;
        background-color: #f4f7f6; /* 全体的な背景色 */
    }
    .container {
        max-width: 960px; /* コンテンツの最大幅 */
        margin: 0 auto;
        padding: 20px;
    }

    /* ヘッダー */
    header {
        background-color: #ffffff;
        padding: 20px 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        text-align: left; /* ここをleftに変更 */
    }
    header .logo {
        font-size: 2em;
        font-weight: bold;
        text-decoration: none;
        display: inline-block; /* 画像をインラインブロックにして左寄せにする */
    }
    header .logo img {
        max-width: 300px; /* Adjust as needed */
        height: auto;
    }

    /* メインコンテンツのセクション */
    main {
        padding: 40px 0;
    }
    section {
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        padding: 30px;
    }
    h1 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2.2em;
        padding-bottom: 10px;
        border-bottom: 2px solid #e0e0e0;
    }
    h2 {
        font-size: 1.8em;
        border-left: 5px solid #0056b3;
        padding-left: 15px;
        margin-bottom: 25px;
        margin-top: 0px;
        cursor: pointer; /* Add cursor pointer to indicate it's clickable */
        display: flex; /* For aligning icon and text */
        align-items: center; /* For aligning icon and text */
    }

    h3 {
        font-size: 1.4em;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    p {
        margin-bottom: 15px;
    }
    ul, ol {
        margin-bottom: 15px;
        padding-left: 25px;
    }
    ul li, ol li {
        margin-bottom: 8px;
    }
    .note {
        background-color: #e6f7ff; 
        border-left: 4px solid #007bff;
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
    }

    .button-group {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    /* 青色のボタン */
    .button {
        display: inline-block;
        background-color: #007bff; 
        color: #ffffff;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
        margin: 10px;
    }
    .button:hover {
        background-color: #0056b3;
    }
    .contact-info {
        background-color: #f0f0f0; 
        padding: 20px;
        border-radius: 8px;
        margin-top: 30px;
    }
    .contact-info p {
        margin-bottom: 5px;
    }


    /* フッター */
    footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 20px 0;
        margin-top: 40px;
        font-size: 0.9em;
    }

    /* Collapsible content default state */
    .collapsible-content {
        display: none;
    }
    .collapsible-content ul {
        list-style: disc; /* Ensure unordered lists within collapsed content have bullets */
    }
    
    /* 既存のpタグのスタイル */
    p {
        margin: 0; /* 上下左右のマージンを0にする */
        padding-left: 20px; 
    }
    
    /* --- 特定のliにだけマークを再表示させる --- */
    .show-bullet {
      list-style-type: disc; /* 円盤（・）のマークを再表示 */
      padding-left: 20px; /* マークのスペースを確保するためのパディング */
    }
    
    li {
        list-style-type: none; /* This removes the bullet points */
        padding: 0;            /* Optional: Removes default left padding */
        margin: 0;             /* Optional: Removes default margin */
    }
    
    /* liタグ内のh3要素にスタイルを適用 */
    li h3 {
        padding-left: 20px; /* 左に20pxの余白を追加 */
    }
    
    .add-paragraph {
      padding-left: 40px; /* マークのスペースを確保するためのパディング */
    }

/* Tab specific styles */

.tabs {
    display: flex;
    margin-bottom: 0px;
    border-bottom: 2px solid #e0e0e0;
    justify-content: space-between;
}
.tab-button {
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: bold;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: background-color 0.3s ease;
    outline: none; /* Remove outline on focus */
    /* ここに font-size を追加または変更します */
    font-size: 1.1em; /* 例: 1.1em はデフォルトの1.1倍の大きさ*/
    flex-grow: 1;
    width: 50%;
    text-align: center;
    border-bottom: none; /* 下線をなくす */
}

.tab-button:hover {
    background-color: #e6e6e6;
}
.tab-button.active {
    background-color: #ffffff;
    border-bottom: 2px solid #ffffff; /* Active tab visually connects to content */
    color: #0056b3;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}

.tab-content {
  margin-top: 0; /* コンテンツの上部の余白をなくす */
  padding-top: 0px; /* 必要に応じてコンテンツに上部の余白を追加 */
}

.tab-content.active {
    display: block; /* アクティブなタブコンテンツのみ表示 */
}

/* 貸出可能機器一覧 */
#rentalEquipmentContent ul {
border: 2px solid red; 
padding: 15px; 
margin-top: 10px; 
border-radius: 8px; 
list-style-type: disc; 
padding-left: 40px; 
}

.contact-section {
border: 2px solid black; /* 2pxの黒い実線 */
padding: 20px; /* 枠内の余白 */
margin-bottom: 20px; /* ここに20pxの下部余白を追加 */
margin-top: 5px; /* または、任意の適切な値 */
}

/* 貸出可能機器*/
.contact-section-middle {
border: 1px solid black; /* 2pxの黒い実線 */
padding: 20px; /* 枠内の余白 */
margin-left: 15px;
}

.contact-section {
  background-color: #ffffff; /* 白い背景色 */
  border: 1px solid #ccc; /* 1pxの薄いグレーの枠線 */
  padding: 20px; /* 内側の余白 */
  margin-bottom: 20px; /* セクションの下の余白 */
  border-radius: 8px; /* 角を少し丸くする */
}
.contact-section h3 {
  margin-top: 0;
}


/* 機器検証申込書はこちら */
.contact-buttons .button-group a.button:first-child {
  background-color: #0050A4;
  border: 1px solid #0050A4;
  color: #FFFFFF;
}
.contact-buttons .button-group a.button:first-child:hover {
  background-color: #003D7A;
  border: 1px solid #003D7A;
}

/* 代替機貸出申込書はこちら */
.contact-buttons .button-group a.button:last-child {
  background-color: #003D7A;
  border: 1px solid #003D7A;
  color: #FFFFFF;
}
.contact-buttons .button-group a.button:last-child:hover {
  background-color: #0050A4;
  border: 1px solid #0050A4;
}


.contact-info a[href^="tel:"] {
  font-size: 1.5em; /* Makes the font size larger. You can adjust the value. */
  font-weight: bold; /* Makes the text bold. */
  text-decoration: none; /* Removes the underline from the link. */
  color: #333; /* Changes the link color. You can set a different color. */
}


/* タブのスタイル */
.tab-button {
  background-color: #f0f0f0; /* デフォルトの背景色 */
  color: #333;
}

/* 機器検証タブのアクティブ状態 */
.tab-button[data-tab="equipmentVerification"].active {
  background-color: #0050A4; /* 青色 */
  color: #fff;
}

/* 代替機貸出タブのアクティブ状態 */
.tab-button[data-tab="loanEquipment"].active {
  background-color: #003D7A; /* 緑色 */
  color: #fff;
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.contact-email-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: inline-block; /* ① インラインブロックに変更 */
    margin-left: 16px;    /* ② 左側に余白を追加 */
}

/* 受付時間のセクション全体を調整 */
.hours-of-operation {
    margin-top: 15px; /* 上部に余白を追加して、前の要素と区別 */
    padding-left: 0; /* 左側のパディングをリセット */
    /*font-size: 0.9em;*/ /* 少しフォントを小さくして、補足情報であることを示す */
    line-height: 1.6; /* 行間を調整して読みやすくする */
    /*margin-left: 145px;*/    /* ② 左側に余白を追加 */
}

/* 受付時間のリスト（平日、土曜）のスタイルを調整 */
.hours-of-operation ul {
    list-style-type: none; /* デフォルトの箇条書きマークを非表示 */
    padding: 0; /* 左側のデフォルトの余白を削除 */
    /*margin: 0;*/ /* 上下のマージンを削除 */
    margin-left: 20px;    /* ② 左側に余白を追加 */
}

/* 各リストアイテム（平日、土曜）のスタイル */
.hours-of-operation ul li {
    margin-bottom: 5px; /* 各行の下に少し余白を追加 */
}

/* 「※」の注釈のスタイルを調整 */
.hours-of-operation .holiday-note {
    font-size: 0.8em; /* さらにフォントを小さく */
    color: #888; /* グレーアウトして、補足情報であることを強調 */
    margin-top: 10px; /* 上部に余白を確保 */
}

.hours {
  font-weight: bold;
}

@media (min-width: 768px) {
    /* 768px以上の画面幅に適用されるスタイル */
    .hours-of-operation {
        margin-left: 145px;
    }
}
