@charset "UTF-8";
.c-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .c-wrapper {
    width: 93.75%;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-wrapper.jp-page-container {
  width: 100%;
}

@media (min-width: 769px) {
  #header .c-wrapper {
    width: 1020px;
  }
  #global-navi .c-wrapper {
    width: 1020px;
  }
  #footer .c-wrapper {
    width: 1050px;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  #header .c-wrapper {
    width: 93.75%;
    margin-left: auto;
    margin-right: auto;
  }
  .c-breadcrumbs {
    width: 93.75%;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .c-wrapper {
    width: 93.75%;
    margin-left: auto;
    margin-right: auto;
  }
}
#main {
  background: #fff;
}

.c-breadcrumbs {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .c-breadcrumbs {
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(255, 255, 255);
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  line-height: 1.6;
}

.page-container {
  overflow: hidden;
  --text: #1f2937;
  --brand: #0f4c9a;
  --line: #e5e7eb;
  --divider: #e5e7eb;
  --radius: 10px;
  --px: 16px;
  --py: 12px;
  color: var(--text);
  background-color: #fff;
}

.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 360px;
  width: 100%;
  flex-direction: column;
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 700;
  align-items: center;
  background-color: #EAF2FB; /* デザインの淡いブルー */
  white-space: normal; /* テキストを折り返し可能に */
  overflow: hidden;
}
.hero-section .hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ボックスいっぱいに表示 */
  object-position: right 40%; /* 右寄せで車輪が見えるように */
  z-index: 0;
}
.hero-section .hero-content {
  position: relative;
  z-index: 1; /* 背景画像より前面に */
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px; /* 余白を確保 */
}
@media (max-width: 768px) {
  .hero-section .hero-content {
    padding: calc(40 / 375 * 100vw) calc(50 / 375 * 100vw);
  }
}
.hero-section .hero-content .hero-subtitle {
  color: rgb(0, 36, 110);
  font-size: 24px;
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: calc(18 / 375 * 100vw);
  }
}
.hero-section .hero-content .hero-title {
  color: rgb(51, 51, 51);
  font-size: 40px;
  line-height: 1.3;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-title {
    font-size: calc(24 / 375 * 100vw);
  }
}
@media (max-width: 768px) {
  .hero-section {
    max-width: 100%;
    white-space: initial;
    justify-content: flex-end;
  }
  .hero-section .hero-background {
    max-width: 100%;
    object-position: center; /* SPは中央表示 */
  }
  .hero-section .hero-content {
    white-space: initial;
  }
  .hero-section .hero-content .hero-title {
    max-width: 100%;
  }
}

.notice-section {
  background-color: rgb(255, 255, 255);
  align-self: center;
  display: flex;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1000px;
  align-items: center;
  gap: 40px 46px;
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  white-space: nowrap;
  justify-content: start;
  flex-wrap: wrap;
  padding: 24px 35px;
  border: 1px solid rgb(239, 68, 68);
}
.notice-section .notice-title {
  color: rgb(239, 68, 68);
  font-size: 16px;
  font-weight: 700;
  align-self: stretch;
  margin: auto 0;
}
.notice-section .notice-text {
  color: rgb(51, 51, 51);
  font-size: 14px;
  font-weight: 400;
  align-self: stretch;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  margin: auto 0;
}
.notice-section .notice-date {
  margin-left: auto;
  font-size: 12px;
  white-space: nowrap;
  align-self: flex-end; /* 下端に合わせる */
}
@media (max-width: 768px) {
  .notice-section {
    width: calc(340 / 375 * 100vw);
    flex-direction: column;
    max-width: 100%;
    white-space: initial;
    padding: calc(20 / 375 * 100vw);
    row-gap: calc(10 / 375 * 100vw);
  }
  .notice-section .notice-title {
    font-size: calc(16 / 375 * 100vw);
  }
  .notice-section .notice-text {
    max-width: 100%;
    font-size: calc(12 / 375 * 100vw);
  }
  .notice-section .notice-date {
    align-self: flex-end;
    font-size: calc(12 / 375 * 100vw);
  }
}

/* Info Section Styles */
.info-section {
  background-color: rgb(246, 246, 246);
  display: flex;
  margin-top: 20px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  text-align: center;
  justify-content: start;
  padding: 50px 0;
}
.info-section .info-content {
  width: 1000px;
  max-width: 100%;
}
.info-section .section-title {
  color: rgb(0, 64, 128);
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .info-section {
    max-width: 100%;
  }
  .info-section .section-title {
    max-width: 100%;
    font-size: calc(25 / 375 * 100vw);
  }
}

.section-description {
  color: rgb(51, 51, 51);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .section-description {
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    font-size: calc(14 / 375 * 100vw);
    text-align: left;
  }
}

.section-note {
  text-align: right;
  font-size: 12px;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .section-note {
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    font-size: calc(12 / 375 * 100vw);
  }
}

/* Anchor Links Styles */
.anchor-links {
  display: flex;
  margin-top: 60px;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgb(51, 51, 51);
  font-weight: 700;
  white-space: nowrap;
  justify-content: center;
  flex-wrap: wrap;
}
.anchor-links .anchor-link-item {
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 160px;
  height: 157px;
  margin: auto 0;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .anchor-links .anchor-link-item {
    width: 30%;
    max-width: calc(105 / 375 * 100vw);
    height: calc(130 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) 0;
  }
}
.anchor-links .anchor-link-item .anchor-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 30px;
}
.anchor-links .anchor-link-item .anchor-text {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .anchor-links .anchor-link-item .anchor-text {
    margin-top: calc(10 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.4;
  }
}
.anchor-links .anchor-link-item .anchor-arrow {
  aspect-ratio: 1.72;
  object-fit: contain;
  object-position: center;
  width: 12px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .anchor-links .anchor-link-item .anchor-arrow {
    margin-top: calc(10 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
  }
}
@media (max-width: 768px) {
  .anchor-links {
    max-width: 100%;
    margin-top: 40px;
    white-space: initial;
  }
  .anchor-links .anchor-link-item {
    white-space: initial;
  }
}

/* Main Content Styles */
.main-content-wrapper {
  align-self: end;
  display: flex;
  width: 100%;
  max-width: 1000px;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
}
.main-content-wrapper .main-content {
  width: 100%;
}
@media (max-width: 768px) {
  .main-content-wrapper {
    max-width: 100%;
    margin: 40px 10px 0 0;
  }
  .main-content-wrapper .main-content {
    max-width: 100%;
  }
}

.content-section {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .content-section {
    max-width: 100%;
    margin-bottom: calc(80 / 375 * 100vw);
  }
}

.content-title {
  border-bottom: 1px solid rgb(0, 36, 110);
  display: flex;
  width: 100%;
  padding-bottom: 16px;
  align-items: start;
  color: rgb(0, 36, 110);
  white-space: nowrap;
  justify-content: start;
  font: 700 30px "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
}
@media (max-width: 768px) {
  .content-title {
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    white-space: initial;
    font-size: calc(22 / 375 * 100vw);
  }
}

/* Highlighted Box Styles */
.highlighted-box {
  border-radius: 10px;
  background-color: rgb(246, 246, 246);
  margin-top: 30px;
  width: 100%;
  padding: 25px 50px;
}
@media (max-width: 768px) {
  .highlighted-box {
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding: calc(25 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
}
.highlighted-box .box-title {
  font-size: 18px;
  font-weight: 700;
  color: rgb(51, 51, 51);
}
@media (max-width: 768px) {
  .highlighted-box .box-title {
    font-size: calc(18 / 375 * 100vw);
  }
}
.highlighted-box .box-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-top: 10px;
  color: rgb(51, 51, 51);
}
@media (max-width: 768px) {
  .highlighted-box .box-text {
    font-size: calc(14 / 375 * 100vw);
  }
}

/* Area Information Styles */
.area-info {
  border-radius: 11px;
  display: flex;
  margin-top: 30px;
  width: 100%;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 25px 50px;
  border: 1px solid rgb(224, 224, 224);
}
@media (max-width: 768px) {
  .area-info {
    max-width: 100%;
    padding: 0 20px;
  }
}

.area-map {
  aspect-ratio: 1.27;
  object-fit: contain;
  object-position: center;
  width: 450px;
  align-self: stretch;
  min-width: 240px;
  margin: auto 0;
}
@media (max-width: 768px) {
  .area-map {
    max-width: 100%;
    min-width: 0;
  }
}

.area-details {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  margin: auto 0;
}
@media (max-width: 768px) {
  .area-details {
    max-width: 100%;
  }
}

.area-table {
  background-color: rgb(255, 255, 255);
  width: 100%;
  overflow: hidden;
  border: 1px solid rgb(224, 224, 224);
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .area-table {
    max-width: 100%;
  }
}

.area-header {
  background-color: rgb(31, 71, 215);
  color: rgb(255, 255, 255);
  font-weight: 700;
  text-align: center;
  padding: 5px 10px;
  width: 100px;
}

.area-header.tohoku {
  background-color: rgb(27, 104, 222);
}

.area-header.hokuriku {
  background-color: rgb(44, 121, 241);
}

.area-header.other {
  background-color: rgb(72, 134, 245);
}

/* Area table cell utilities for repeated inline styles */
.area-cell {
  padding: 5px 8px;
  border: 1px solid rgb(224, 224, 224);
}

.area-cell--label {
  background-color: rgb(246, 246, 246);
  font-weight: 700;
}

.area-cell--note {
  background-color: rgb(224, 224, 224);
}

/* Safety Tips Styles */
.safety-tips {
  display: flex;
  margin-top: 30px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 768px) {
  .safety-tips {
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.safety-tips .tips-title {
  font-size: 20px;
  font-weight: 700;
  color: rgb(51, 51, 51);
}
@media (max-width: 768px) {
  .safety-tips .tips-title {
    font-size: calc(18 / 375 * 100vw);
  }
}
.safety-tips .tips-grid {
  align-self: center;
  display: flex;
  margin-top: 30px;
  align-items: start;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
  justify-content: start;
  flex-wrap: wrap;
}
.safety-tips .tips-grid .tip-item {
  border-color: rgb(224, 224, 224);
  border-right-width: 1px;
  border-left-width: 1px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 240px;
  padding: 20px 0;
  color: rgb(51, 51, 51);
}
@media (max-width: 768px) {
  .safety-tips {
    max-width: 100%;
    white-space: initial;
  }
  .safety-tips .tips-grid {
    max-width: 100%;
    white-space: initial;
  }
  .safety-tips .tip-item {
    white-space: initial;
  }
}

/* FAQ Styles */
.faq-section {
  margin-top: 30px;
  width: 100%;
}
.faq-section .faq-item {
  border-radius: 10px;
  width: 100%;
  max-width: 1000px;
  padding: 25px 50px;
  border: 1px solid rgb(224, 224, 224);
  margin-bottom: 10px;
}
.faq-section .faq-item .question {
  display: flex;
  width: 100%;
  padding-bottom: 10px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  justify-content: start;
  flex-wrap: wrap;
}
.faq-section .faq-item .question .question-icon {
  border-radius: 5px;
  background-color: rgb(0, 36, 110);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  color: rgb(255, 255, 255);
  text-align: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: auto 0;
}
@media (max-width: 768px) {
  .faq-section .faq-item .question .question-icon {
    margin: 0;
    margin-top: 4px;
  }
}
.faq-section .faq-item .question .question-text {
  color: rgb(51, 51, 51);
  font-size: 20px;
  align-self: stretch;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  margin: auto 0;
}
@media (max-width: 768px) {
  .faq-section .faq-item .question .question-text {
    font-size: calc(16 / 375 * 100vw);
  }
}
.faq-section .faq-item .answer {
  display: flex;
  margin-top: 15px;
  width: 100%;
  align-items: start;
  gap: 10px;
  color: rgb(51, 51, 51);
  justify-content: start;
  flex-wrap: wrap;
}
.faq-section .faq-item .answer .answer-icon {
  border-radius: 5px;
  background-color: rgb(246, 246, 246);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}
.faq-section .faq-item .answer .answer-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
@media (max-width: 768px) {
  .faq-section .faq-item .answer .answer-text {
    font-size: calc(14 / 375 * 100vw);
  }
}
@media (max-width: 768px) {
  .faq-section {
    max-width: 100%;
    white-space: initial;
  }
  .faq-section .faq-item {
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    white-space: initial;
    padding: calc(20 / 375 * 100vw);
  }
  .faq-section .question,
  .faq-section .answer {
    max-width: 100%;
    white-space: initial;
  }
  .faq-section .question-text,
  .faq-section .answer-text {
    max-width: 100%;
  }
  .faq-section .question-icon,
  .faq-section .answer-icon {
    white-space: initial;
  }
}

/* Back to Top Button */
.back-to-top {
  border-radius: 35px;
  background-color: rgb(0, 36, 110);
  box-shadow: 0px 2px 6px rgb(153, 153, 153);
  align-self: start;
  display: flex;
  margin-top: 580px;
  min-height: 70px;
  flex-direction: column;
  align-items: stretch;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font: 700 16px "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  cursor: pointer;
  text-decoration: none;
  position: fixed;
  bottom: 110px;
  right: 20px;
  z-index: 100;
}
@media (max-width: 768px) {
  .back-to-top {
    font-size: 3vw;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    min-height: 13.3333333333vw;
    bottom: 15vw;
  }
}
.back-to-top .back-to-top-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: center;
}
@media (max-width: 768px) {
  .back-to-top {
    margin-top: 40px;
    white-space: initial;
  }
}

/* Footer Image */
.footer-image {
  aspect-ratio: 1.63;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 78px;
}
@media (max-width: 768px) {
  .footer-image {
    max-width: 100%;
    margin-top: 40px;
  }
}

/* Utility Classes */
.text-bold {
  font-weight: 700;
}

.text-red {
  color: rgb(239, 68, 68);
}

.text-blue {
  color: rgb(0, 56, 167);
}

.underline {
  text-decoration: underline;
}

.caption-small {
  font-weight: 400;
  font-size: 12px;
}

/* ===============================
   冬タイヤ対象期間（PC/SPテーブル）
   =============================== */
.period-schedule {
  margin-top: 30px;
}

.period-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  border: 1px solid var(--line);
  background: #fff;
  /* 残り幅を2列で均等配分（100% - 200px*2） */
  /* 行の下罫線（最終行以外） */
  /* 中央の縦線（2列目の右側） */
  /* 地域（見出し） */
  /* 期間（内容） */
}
.period-table caption {
  position: absolute;
  left: -9999px;
}
.period-table col.col-area {
  width: 150px;
}
.period-table col.col-term {
  width: calc((100% - 300px) / 2);
}
.period-table th,
.period-table td {
  padding: var(--py) var(--px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  vertical-align: middle;
  background: #fff;
}
.period-table tbody tr:not(:last-child) > * {
  border-bottom: 1px solid var(--line);
}
.period-table thead th:nth-child(2),
.period-table tbody td:nth-child(2) {
  border-right: 1px solid var(--divider);
}
.period-table .period-area {
  font-weight: 700;
  color: #00246E;
  white-space: nowrap;
  background-color: #F6F6F6;
  text-align: center;
  border-right: 1px solid var(--divider);
  overflow-wrap: anywhere;
  font-feature-settings: "palt";
}
.period-table .period-term {
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 768px) {
  .period-table-stack {
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  /* 4カラム（左エリア/左期間/右エリア/右期間） */
  .period-table--sp col.col-area {
    width: 18%;
  }
  .period-table--sp col.col-term {
    width: 32%;
  }
  .period-table--sp th,
  .period-table--sp td {
    padding: calc(14 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    white-space: normal !important;
  }
  .period-table--sp thead {
    display: none;
  }
  /* 縦線：2列目と4列目に区切り */
  .period-table--sp tbody td:nth-child(2),
  .period-table--sp thead th:nth-child(2),
  .period-table--sp tbody td:nth-child(4),
  .period-table--sp thead th:nth-child(4) {
    border-right: 1px solid var(--divider);
  }
}
.part-reserve.part-reserve--compact .part-reserve__layout {
  grid-template-columns: 1fr 1fr;
}

.area-info {
  display: grid;
  align-items: start;
  padding: 20px 50px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  /* 右カラム：カード一覧（マルチカラムで段組 → 行間の空きを解消） */
  /* カード共通 */
  /* レスポンシブ */
}
@media (max-width: 768px) {
  .area-info {
    padding: calc(15 / 375 * 100vw);
    width: calc(340 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.area-info__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
}
@media (max-width: 768px) {
  .area-info__map {
    padding: 0;
  }
}
.area-info__map-figure {
  width: 50%;
}
@media (max-width: 768px) {
  .area-info__map-figure {
    width: 100%;
  }
}
.area-info .area-map {
  width: 100%;
  height: auto;
  display: block;
}
.area-info__list {
  column-count: 2;
  column-gap: 12px;
}
.area-info .area-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
  break-inside: avoid;
  margin-bottom: 12px;
  width: 100%;
  /* 特徴（全幅） */
  /* ------------------------
     北海道カードを表形式に寄せる
  ------------------------ */
}
@media (max-width: 768px) {
  .area-info .area-card {
    grid-template-columns: calc(60 / 375 * 100vw) 1fr;
    margin-bottom: 8px;
  }
}
.area-info .area-card__head {
  padding: 12px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-radius: 10px 0 0 10px;
  grid-row: 1/-1; /* 縦バーをカード全高に伸ばす */
  /* 見出し色の段階（画像の濃淡イメージ） */
}
.area-info .area-card__head.is-hokkaido {
  background: #1F47D7;
}
.area-info .area-card__head.is-tohoku {
  background: #1B68DE;
}
.area-info .area-card__head.is-hokuriku {
  background: #2C79F1;
}
.area-info .area-card__head.is-kantochubu {
  background: #4886F5;
}
.area-info .area-card__head.is-kinki {
  background: #58C1F7;
}
.area-info .area-card__head.is-chugoku {
  background: #4C88F5;
}
.area-info .area-card__head.is-shikoku {
  background: #99E5F6;
  color: #00246E;
}
.area-info .area-card__head.is-kyushu {
  background: #A6ECFA;
  color: #00246E;
}
.area-info .area-card__dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  row-gap: 4px;
  column-gap: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  /* 最終行の下線を揃える */
}
.area-info .area-card__dl > dt,
.area-info .area-card__dl > dd {
  padding: 2px 0;
  border-bottom: 1px solid var(--line);
}
.area-info .area-card__dl > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #333;
  background-color: #f6f6f6;
}
.area-info .area-card__dl > dd {
  background: transparent;
}
.area-info .area-card__dl > dd:last-child {
  border-bottom: none;
}
.area-info .area-card__feature {
  grid-column: 1/-1;
  background: var(--muted);
  padding: 8px 10px;
  border-bottom: none;
}
.area-info .area-card__feature .label {
  font-weight: 700;
}
.area-info .area-card--flat {
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: 120px 1fr;
}
.area-info .area-card--flat .area-card__head {
  border-radius: 0;
  padding: 8px 10px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .area-info .area-card--flat .area-card__head {
    width: calc(60 / 375 * 100vw);
    font-size: calc(11 / 375 * 100vw);
  }
}
.area-info .area-card--flat .area-card__dl {
  row-gap: 0;
  line-height: 1.5;
}
.area-info .area-card--flat .area-card__dl > dt,
.area-info .area-card--flat .area-card__dl > dd {
  padding: 6px 8px;
  font-size: 11px;
}
@media (max-width: 768px) {
  .area-info .area-card--flat .area-card__dl > dt,
  .area-info .area-card--flat .area-card__dl > dd {
    font-size: calc(9 / 375 * 100vw);
  }
}
@media (max-width: 768px) {
  .area-info .area-card--flat .area-card__dl {
    grid-template-columns: calc(50 / 375 * 100vw) 1fr;
  }
}
.area-info .area-card--flat .area-card__feature {
  background: #e5e5e5;
}
@media (max-width: 1024px) {
  .area-info {
    grid-template-columns: 1fr;
  }
  .area-info__list {
    column-count: 2;
  }
}
@media (max-width: 768px) {
  .area-info__list {
    column-count: 1;
  }
  .area-info .area-card {
    grid-template-columns: calc(60 / 375 * 100vw) 1fr;
  }
}

/* Winter Tire Availability Table Styles */
.table-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border: 1px solid #e0e0e0;
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.availability-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  table-layout: fixed;
  box-sizing: content-box;
}
.availability-table, .availability-table th, .availability-table td {
  border: 1px solid #e0e0e0;
}

/* Header Styles */
.header-row {
  display: table-row; /* テーブルと同一レイアウトで列幅を揃える */
  width: 100%;
  min-width: 1000px;
}
.header-row th {
  display: table-cell;
  height: 134px;
  vertical-align: middle;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  background-color: #f6f6f6;
  padding: 14px 8px;
  color: #00246e;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
}

.region-header {
  width: auto;
  flex: none;
}

.area-header,
.availability-header,
.paid-option-header,
.chain-header,
.fourwd-header {
  flex: 1 0 0;
}

.standard-equipment-header {
  flex: 1 0 0;
}

.equipment-text {
  color: #00246e;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.equipment-note {
  color: #00246e;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: -1.1px;
  line-height: 1.2;
}

/* Row Styles */
.region-row,
.prefecture-row {
  border: 2px solid #e0e0e0;
  min-width: 1000px;
  display: table-row;
}
.region-row td,
.prefecture-row td {
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  padding: 10px 12px;
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 130%;
  vertical-align: middle;
  display: table-cell;
}

/* Cell Type Styles */
.region-cell {
  width: auto;
  font-weight: 400;
  background-color: white;
}

.prefecture-cell {
  font-weight: 400;
  background-color: white;
}

.availability-cell {
  font-weight: 400;
  background-color: white;
}

.price-cell {
  font-weight: 400;
  background-color: white;
}

.unavailable-cell {
  background-color: #e0e0e0;
}

.no-handling-cell {
  font-weight: 700;
  background-color: #e0e0e0;
}

/* PC: availability-table の全カラムを均等幅にする */
.availability-table thead th,
.availability-table tbody td {
  width: 14.2857142857%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .table-container {
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
    overflow-x: scroll;
    border: none;
  }
  .availability-table {
    min-width: 800px;
    border: 1px solid #e0e0e0;
  }
  .header-row {
    min-width: 800px;
  }
  .header-row th {
    height: 100px;
    padding: 8px 6px;
    font-size: 12px;
    min-width: 100px;
  }
  .region-header {
    min-width: 100px;
  }
  .region-row,
  .prefecture-row {
    min-width: 800px;
  }
  .region-row td,
  .prefecture-row td {
    padding: 8px 6px;
    font-size: 12px;
    min-width: 100px;
  }
  .equipment-text {
    font-size: 12px;
  }
  .equipment-note {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  .availability-table {
    min-width: 600px;
  }
  .header-row {
    min-width: 600px;
  }
  .header-row th {
    width: calc(70 / 375 * 100vw);
    height: 80px;
    padding: 6px 4px;
    font-size: 10px;
    min-width: 0;
  }
  .region-header {
    min-width: 80px;
  }
  .region-row,
  .prefecture-row {
    min-width: 600px;
  }
  .region-row td,
  .prefecture-row td {
    padding: 6px 4px;
    font-size: 10px;
    min-width: 80px;
  }
  .equipment-text {
    font-size: 10px;
  }
  .equipment-note {
    font-size: 8px;
  }
}
.region-cell[rowspan] {
  padding-top: 14px;
}

@media (max-width: 768px) {
  .region-cell[rowspan] {
    padding-top: 8px;
  }
}
@media (max-width: 768px) {
  .region-cell[rowspan] {
    padding-top: 6px;
  }
}
/* Winter Driving Tips Component Styles */
.winter-driving-tips {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  position: relative;
  padding: 40px 20px;
  margin: 0 auto;
}
.winter-driving-tips .main-title {
  align-self: stretch;
  color: #333;
  text-align: center;
  font: 700 20px/150% "Noto Sans JP", sans-serif;
  margin: 0;
}
.winter-driving-tips .tips-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 960px;
  justify-content: center;
}
.winter-driving-tips .tip-card {
  display: flex;
  width: 240px;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  position: relative;
  background-color: #fff;
  margin: 0;
}
.winter-driving-tips .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  position: relative;
}
.winter-driving-tips .tip-icon {
  display: flex;
  width: 240px;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  position: relative;
  background: #fff;
}
.winter-driving-tips .tip-image {
  width: 70px;
  height: 70px;
  position: relative;
}
.winter-driving-tips .tip-description {
  align-self: stretch;
  color: #333;
  text-align: center;
  font: 400 16px/150% "Noto Sans JP", sans-serif;
  margin: 0;
}

@media (max-width: 768px) {
  .winter-driving-tips {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: calc(30 / 375 * 100vw);
  }
  .winter-driving-tips .tips-container {
    flex-direction: column;
    width: 100%;
  }
  .winter-driving-tips .tip-card {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
    padding: calc(10 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
  .winter-driving-tips .tip-card:last-child {
    border-bottom: 1px solid #e0e0e0;
  }
  .winter-driving-tips .tip-description {
    font-size: calc(15 / 375 * 100vw);
    align-self: auto;
    text-align: left;
  }
  .winter-driving-tips .icon-container {
    width: calc(70 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
  }
}
.winter-banner {
  position: relative;
  display: flex;
  max-width: 375px;
  flex-direction: column;
  font-family: Noto Sans JP, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 700;
  white-space: nowrap;
  justify-content: end;
  padding: 182px 0 50px;
}

.banner-background {
  aspect-ratio: 1.04;
  object-fit: contain;
  object-position: center;
  width: 375px;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  height: 360px;
}

.banner-content {
  align-self: center;
  z-index: 0;
  display: flex;
  width: 337px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  padding: 0 25px;
}

.safety-tagline {
  color: rgb(0, 36, 110);
  font-size: 18px;
  text-align: center;
  align-self: start;
  margin: 0;
  font-weight: 700;
}

.service-description {
  color: rgb(51, 51, 51);
  font-size: 24px;
  line-height: 29px;
  margin: 15px 0 0 0;
  font-weight: 700;
}

.c-wrapper .part-reserve-sp {
  margin-inline: 0;
}

/*# sourceMappingURL=style.css.map */
