注目キーワード
  1. デザイン
  2. 表示速度
  3. SEO
  4. AMP
  5. PWA

styles.css

  • 2024年2月9日
  • 2024年10月27日
  • 未分類
  • 5回
  • 0件
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5; /* 薄いグレーの背景色 */
    font-size: 16px; /* フォントサイズを16pxに設定 */
}
a {
    text-decoration: none; /* 装飾をなしに設定 */
    color: #0072bc; /* リンクの文字色を#0072bcに設定 */
}
a:hover {
    text-decoration: underline; /* マウスオーバー時に下線を表示 */
}
.header {
    background-color: white; /* 白色の背景色 */
    width: 100%;
    padding: 5px 0; /* ヘッダーコンテンツ内の上下の余白を5px */
}
.header-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    text-align: left;
    font-size: 28px; /* ロゴのフォントサイズを28pxに設定 */
    font-weight: bold; /* ロゴのフォントを太字に設定 */
    color: #0072bc; /* ロゴの文字色を#004e9cに設定 */
}
.menu {
    display: flex;
}
.menu-item {
    position: relative;
}
.menu span {
    margin-left: 20px;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 200px;
}
.submenu span {
    display: block;
    padding: 10px;
    cursor: pointer;
}
.submenu span:hover {
    background-color: #f0f0f0;
}
.content {
    width: 960px; /* 幅を960pxに設定 */
    margin: 0 auto; /* 中央揃え */
    padding: 20px;
}
h1:first-letter {
    margin-top: 0;
    padding-top: 0;
    font-size: 1.5em;
    color: #7172ac;
}
h1 {
    font-size: 24px; /* 文字サイズを24pxに設定 */
    font-weight: bold; /* 太字に設定 */
    margin-top: 0; /* 上の余白を0pxに設定 */
    padding: 0 ;
}
h2 {
    background-color: #0072bc; /* 背景色を004e9cに設定 */
    color: white; /* 文字色を白に設定 */
    font-size: 22px; /* フォントサイズを24pxに設定 */
    font-weight: bold; /* 太字に設定 */
    padding: 10px 15px; /* 内側の余白 */
    border-radius: 5px; /* 角を5px丸く設定 */
    margin-top: 0; /* 上の余白を削除 */
}
h3 {
    font-size: 20px; /* 文字サイズを24pxに設定 */
    color: #0072bc; /* 文字色を白に設定 */
    font-weight: bold; /* 太字に設定 */
    border-bottom: 1px solid #d3d3d3; /* 文字下に黒い下線を設定 */
    margin-top: 0; /* 上の余白を0pxに設定 */
}
h4 {
    font-size: 20px; /* 文字サイズを24pxに設定 */
    color: #0072bc; /* 文字色を白に設定 */
    padding: 0 1rem;
    border-left: 7px solid #0072bc;
  }
  .box {
    background-color: white; /* 白色のボックス背景色 */
    margin-bottom: 20px;
    padding: 26px; /* ボックス内の余白 */
    border-radius: 3px; /* 角を3px丸く設定 */
}
/* コンテナの設定 */
.three-box-wrapper {
    width: 960px;
    margin: 0 auto 20px auto; /* 下に20pxの余白を追加 */
    display: flex; /* フレックスボックスで横並びに */
    gap: 20px; /* ボックス間の余白 */
}
/* 各ボックスのスタイル */
.three-box-item {
    flex: 1; /* 各ボックスを等分する */
    padding: 20px;
    border: 1px solid #ccc; /* 枠線 */
    background-color: #fff; /* 通常時の背景色 */
    box-sizing: border-box; /* パディングと枠線を含めた幅計算 */
    text-align: center; /* コンテンツを中央揃え */
    transition: background-color 0.3s; /* 背景色の変更をスムーズに */
}
/* カーソルが乗ったときのスタイル */
.three-box-item:hover {
    background-color: #fffacd; /* 薄い黄色に変更 */
}
.footer {
    background-color: #333333; /* 濃いグレーの背景色 */
    width: 100%;
    padding: 20px 0;
    color: white;
    text-align: center;
}
.footer span {
    margin: 0 10px;
    cursor: pointer;
}
.timeline {
    list-style: none;
  }
  .timeline > li {
    margin-bottom: 60px;
  }
  .timeline-title {
    font-size: 20px; /* フォントサイズを20pxに設定 */
    font-weight: bold; /* 太字に設定 */
    color: #0072bc; /* 文字色を#0072bcに設定 */
    border-bottom: 1px solid #d3d3d3; /* 下線の太さ1px、色を#d3d3d3に設定 */
    margin-top: 0px; /* 上の余白を0pxに設定 */
    margin-bottom: 0px;
    padding-bottom: 2px; /* 下線との間に少し余白を追加 */
}
  /* for Desktop */
  @media ( min-width : 640px ){
    .timeline > li {
      overflow: hidden;
      margin: 0;
      position: relative;
    }
    .timeline-date {
      width: 110px;
      float: left;
      margin-top: 20px;
    }
    .timeline-content {
      width: 75%;
      float: left;
      border-left: 3px #e5e5d1 solid;
      padding-left: 30px;
    }
    .timeline-content:before {
      content: ”;
      width: 12px;
      height: 12px;
      background: #6fc173;
      position: absolute;
      left: 106px;
      top: 24px;
      border-radius: 100%;
    }
  }
  #back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: none; /* 背景をなくす */
    padding: 0; /* 余白をなくす */
    cursor: pointer;
    transition: background-color 0.3s; /* 背景色のホバーエフェクト */
}
#back-to-top:hover {
    background-color: transparent; /* ホバー時の背景色を透明にする */
}
#back-to-top img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像がボタン全体にフィット */
}
.bottom-fixed {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}
.bottom-fixed button {
    margin: 0 10px;
    padding: 10px 20px;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 16px;
    background-color: #fff; /* 背景色を白に設定 */
    border-radius: 5px; /* 丸いボックスに設定 */
    box-shadow: 0 0 10px rgba(0,0,0,0.2); /* 影を追加 */
}
.menu-box, .submenu-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px; /* 高さを600pxに設定 */
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: auto; /* スクロール対応 */
}
.menu-box.active, .submenu-box.active {
    display: block;
}
#tocMenu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%; /* 画面の高さに合わせる */
    background: #fff;
    border-left: 1px solid #ccc;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    padding: 20px;
    overflow-y: auto; /* 縦スクロールを有効にする */
}
#tocMenu ul {
    list-style-type: none; /* リストのデフォルトのマーカーを削除 */
    padding: 0;
}
#tocMenu li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}
#tocMenu .close {
    display: block;
    margin-top: 20px;
    padding: 10px;
    background-color: #e0e0e0;
    color: #000;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
}
#deliveryCodeMenu table {
    width: 100%;
    border-collapse: collapse;
}
#deliveryCodeMenu th, #deliveryCodeMenu td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}
.button, .back, .close {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
    display: inline-block;
    margin: 10px 0;
}
.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列に設定 */
    gap: 10px; /* 各項目の間に10pxの隙間を設定 */
}
.categories li {
    list-style-type: none; /* リストのデフォルトのマーカーを削除 */
    text-align: center;
}
.back, .close {
    position: absolute;
    bottom: 20px;
}
.back {
    left: 20px;
}
.close {
    right: 20px;
}