body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1em 0;
}
.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}



footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
}

/* ナビゲーションメニュー */
/* Style for the hamburger menu icon */


/* ナビゲーションメニューの表示状態を切り替えるためのスタイル */
.navigation.active {
    display: block;
}

/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* デフォルトではハンバーガーメニューを非表示に設定 */
label[for="menu-toggle"] {
    display: none;
    cursor: pointer;
}


/* Navigation link styles */
.navigation a {
    color: white;
    text-decoration: none;
    
}







.main-visual img {
    width: 100%;
    height: auto;
    display: block; /* Removes any extra space below the image */
}

header img {
    height: 60px; /* または適切なサイズ */
    width: auto;
    margin: 10px; /* 余白の調整 */
}

.about-section {
    text-align: center;
    padding: 20px 0;
}

.about-section h2 {
    font-size: 2em; /* 見出しのサイズ調整 */
    margin-bottom: 10px;
}

.about-section p {
    font-size: 1em; /* パラグラフのサイズ調整 */
    line-height: 1.6; /* 行間の調整 */
}

.more-info {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.business-overview {
    text-align: center;
    padding: 20px;
}

.business-overview h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.business-overview p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.business-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd; /* オプションで境界線を追加 */
    border-radius: 4px; /* オプションで角を丸くする */
    padding: 5px; /* オプションで画像周りに余白を追加 */
}

.profile-section {
    text-align: center;
    padding: 20px;
}

.profile-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.profile-section p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.profile-image {
    max-width: 200px; /* 画像のサイズ調整 */
    border-radius: 50%; /* 丸いプロフィール画像にする */
    margin-bottom: 20px;
}

.social-links {
    text-align: center; /* コンテナ内の要素を中央に揃える */
  }
  
  .social-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: #4267B2; /* 背景色をここに直接指定する */
  }



.app-collection, .product-collection {
    text-align: center;
    padding: 20px;
}

.app-collection h1, .product-collection h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.app-list, .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.app-item, .product-item {
    width: 200px; /* アイテムの幅 */
    margin: 10px;
    text-align: center;
}

.app-item img, .product-item img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* オプションで角を丸くする */
    border: 1px solid #ddd; /* オプションで境界線を追加 */
}

.app-item p, .product-item p {
    margin-top: 5px;
    font-size: 1em;
}

.app-detail, .product-detail {
    text-align: center;
    padding: 20px;
}

.app-detail h1, .product-detail h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.app-detail p, .product-detail p {
    text-align: left;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.app-detail ul, .app-detail ol {
    text-align: left;
    padding-left: 20px; /* リストの左パディングを設定する */
}

.app-detail li {
    text-align: left; /* リストアイテムのテキストを左揃えにする */
}

/* クラスの特異性を高める */
.app-detail .creator-info, .product-detail .creator-info {
    text-align: center;
}



.app-screenshot, .product-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* オプションで角を丸くする */
    border: 1px solid #ddd; /* オプションで境界線を追加 */
    margin-bottom: 20px;
}

.launch-app-btn, .get-on-shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.publish-date {
    font-weight: bold;
}

/* AIに関する注意書き */
.ai-disclaimer {
    font-size: 0.9em;  /* smaller font size */
    color: grey;      /* grey text color */
    font-style: italic; /* italicize the text */
    margin-top: 20px;  /* add space above the disclaimer */
    margin-bottom: 20px;
    text-align: justify; /* justify the text */
}

/* 表のスタイル */
.myTable {
    width: 100%; /* 表の幅をページに合わせる */
    border-collapse: collapse; /* セル間のボーダーをまとめる */
    text-align: left; /* テキストを左揃えにする */
  }
  
  .myTable th, .myTable td {
    padding: 8px; /* セルのパディング */
    border: 1px solid #ddd; /* セルのボーダー */
  }
  
  .myTable th {
    background-color: #f2f2f2; /* 見出しの背景色 */
    color: #333; /* 見出しのテキスト色 */
  }
  
  .myTable tr:nth-child(even) {
    background-color: #f9f9f9; /* 偶数行の背景色 */
  }
  
  .myTable tr:hover {
    background-color: #f1f1f1; /* ホバー時の行の背景色 */
  }
  


  /* レスポンシブデザイン */
@media screen and (max-width: 768px) { /* 768pxは例です。必要に応じて調整してください */
    .container {
        width: 100%;
    }
}

/* Adjust styles for larger screens */
@media screen and (min-width: 768px) {
    .navigation {
        display: block; /* Always show the navigation */
    }

    .navigation li {
        display: inline;
        margin: 0 10px;
    }
}

/* Adjust styles for smaller screens */
@media screen and (max-width: 767px) {
    /* ハンバーガーメニューのアイコンサイズとタップ領域の調整 */
    label[for="menu-toggle"] {
        display: block; /* Change display to block */
        margin: 0 auto; /* Center the block horizontally */
        cursor: pointer;
        font-size: 28px; /* Icon size */
        padding: 20px; /* Tap area */
    }

        /* Hide the navigation menu by default */
    .navigation {
        display: none;
        list-style: none;
        padding: 0;
    }

        /* ナビゲーションリンクスタイルの調整 */
    .navigation a {
        display: block; /* リンクをブロック要素にしてタップしやすく */
        color: white;
        text-decoration: none;
        font-size: 18px; /* 文字サイズを大きく */
        padding: 10px 20px; /* リンクのタップ領域を拡大 */
    }

    /* Show the menu when the checkbox is checked */
    #menu-toggle:checked + label + .navigation {
        display: block;
    }

    /* Center the menu icon */
    header {
        text-align: center; /* Ensure the elements inside header are centered */
    }
}