@charset "utf-8";

/* タイトル */
.title p {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 0;
}

/* タイムライン */
.timeline-container {
  position: relative;
  padding: 200px 20px 200px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
}

/* 中央の縦線 */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: var(--color-sub3);
  z-index: 0;
}

/* START / GOAL */
.start,
.goal {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 30px 0;
  color: var(--color-sub3);
}

/* タイムラインアイテム */
.timeline-item {
  display: flex;
  justify-content: flex-end;
  width: 45%;
  margin: -200px 0;
  position: relative;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 55%;
}


/* マーカー */
.timeline-item::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--color-base);
  border: 4px solid var(--color-sub3);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd)::after {
  right: -13%;
}

.timeline-item:nth-child(even)::after {
  left: -13%;
}

/* コンテンツ内包ブロック
.item-inner {
  max-width: 480px;
  width: 100%;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
 */

/* 吹き出し画像 */
.bubble-image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* 吹き出しテキスト */
.bubble-text {
  background: var(--color-white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-def);
}

/* 見出しラベル */
.bubble-label {
  color: var(--color-main);
  font-weight: bold;
  padding: 6px 24px;
  align-self: flex-start;
  position: relative;
  font-size: 25px;
}

.goal-button {
  display: table;
  margin: 20px auto 0;
  text-align: center;
}

/* サービス情報 */
.service-information.table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 650px;
  table-layout: auto;
  color: var(--color-sub2);
}

.service-information.table table {
  width: 100%;
  margin: 40px auto;
}

.service-information.table tr {
  padding: .35em;
}

.service-information.table th,
.service-information.table td {
  color: var(--color-gray);
  padding: 1em 10px 1em 1em;
  border-bottom: 1px solid var(--color-gray);
  /* 横の罫線 */
  font-size: 20px;
}

.service-information.table tr:last-child {
  border-bottom: none;
}

.service-information.table th,
table td {
  padding: 1em 10px 1em 1em;
}

.service-information.table th {
  font-size: 22px;
  font-weight: bold;
  border-right: 1px solid var(--color-gray);
  /* 縦の罫線 */
}

.service-information.table tr:last-child th,
.service-information.table tr:last-child td {
  border-bottom: none;
}

.service-information.txt {
  text-align: left;
  font-size: .85em;
}

.note-text a {
  text-decoration: underline;
}

/* 貸出・返却 */
.lending-return-section {
  text-align: center;
  padding: 0 20px 40px;
}

.lending-return-section h2 {
  margin-bottom: 20px;
}

.lending-return-circles {
  position: relative;
  height: 300px;
  margin-bottom: 30px;
}

.triangle-layout {
  width: 400px;
  margin: 0 auto;
}

.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--color-aharacter);
  position: absolute;
}

.circle-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.circle-left {
  bottom: -55px;
  left: 10px;
}

.circle-right {
  bottom: -55px;
  right: 10px;
}

.circle-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--color-main);
}

.circle-time {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-gray);
}

.contact-info {
  background-color: var(--color-white);
  max-width: 700px;
  padding: 20px;
  border-radius: 10px;
  margin: 90px auto 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contact-info p {
  margin-bottom: 7px;
}

.note-text {
  color: var(--color-gray);
  font-size: 14px;
}

.detail-link {
  font-size: 12px;
  color: var(--color-main);
  text-decoration: underline;
}


/* 服装・持ち物セクションのスタイル */
.container {
  position: relative;
  max-width: 700px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.clothing-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-sub2);
}

.clothing-people {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.clothing-people img {
  width: 150px;
  margin: 0 10px;
}

.items-heading {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 10px;
  color: var(--color-main);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item img {
  width: 80px;
  margin-bottom: 5px;
}

.item .label {
  font-size: 14px;
  font-weight: normal;
  color: var(--color-gray);
}

.cross-overlay {
  position: absolute;
  top: 68px;
  /* right: 80px; */
  width: 100%;
  height: 100%;
  max-width: 65px;
  object-fit: contain;
  pointer-events: none;
}

.luggage-transfer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 10px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
}

.luggage-transfer-section img {
  width: 100px;
  margin-right: 45px;
}

/* アクシデントへの対応セクションのスタイル */
.accident-section {
  padding: 20px;
  margin: 20px auto 60px;
  max-width: 640px;
  width: 90%;
}

.accident-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* アコーディオンのスタイル */
.accordion-container {
  padding: 0;
}

.accident-accordion {
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.5);
  background-color: var(--color-white);
}

.accident-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: var(--color-gray);
  font-weight: 600;
  cursor: pointer;
}

.accident-accordion summary::before,
.accident-accordion summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: var(--color-gray);
  content: '';
}

.accident-accordion summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accident-accordion summary::after {
  transition: rotate .3s;
}

.accident-accordion[open] summary::after {
  rotate: 45deg;
  transform: rotate(45deg);
}

.accident-accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  color: var(--color-main);
  transition: transform .5s, opacity .5s;
}

.accident-accordion[open] p {
  transform: none;
  opacity: 1;
}

/* キャンセルポリシー */
.cancel-policy {
  max-width: 600px;
  background-color: var(--color-white);
  padding: 2em;
  border-radius: 8px;
  margin: auto;
}

.cancel-policy h2 {
  margin-top: 30px;
}

.cancel-policy ul {
  list-style: disc inside;
  line-height: 1.6;
  margin: 0 30px 30px;
}

.cancel-policy li {
  margin-bottom: 0.5em;
}

.cancel-policy li::before {
  content: "●";
  color: var(--color-main);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1em;
}


/* お支払い方法セクション */
.payment-section {
  text-align: center;
  padding: 20px;
  margin: 40px auto 0;
  max-width: 600px;
  width: 90%;
  background-color: var(--color-white);
  border-radius: 10px;
}

.payment-card .e-money-img {
  max-width: 100%;
}

.payment-section h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.payment-method {
  margin-bottom: 30px;
}

.payment-method h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-gray);
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.payment-card {
  text-align: center;
  padding: 15px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  width: 200px;
}

.payment-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--color-def);
}

.payment-card img {
  max-width: 50%;
  height: auto;
  margin-bottom: 10px;
}

.note-text {
  font-size: 12px;
  color: var(--color-gray);
}

/* 下部ボタン */
.contact-button-section {
  text-align: center;
}



/* === モバイル対応 === */
@media (max-width: 768px) {
  .timeline-container {
    padding: 20px 20px 20px 40px;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 10px 15px;
    left: 0 !important;
    text-align: left !important;
  }

  .timeline-item::after {
    left: -60px !important;
    right: auto !important;
    top: 20px;
    transform: translateX(-50%);
  }

  .timeline-content::before {
    left: -15px !important;
    right: auto !important;
    border-width: 10px 15px 10px 0 !important;
    border-color: transparent var(--color-white) transparent transparent !important;
  }

  .timeline-content {
    margin-left: 20px;
  }

  .bubble-label {
    left: 10px !important;
    right: auto !important;
  }

  /* START／GOAL */
  .start,
  .goal {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin: 30px 0 10px;
    color: var(--color-sub2);
  }

  .goal {
    margin-top: 10px;
  }

  .goal a {
    font-size: 16px;
  }

  /* サービス情報セクション */

  .service-information.table {
    border-collapse: collapse;
    margin: 40px auto;
    padding: 0;
    width: calc(100% - 40px);
    max-width: 650px;
    table-layout: auto;
    color: var(--color-gray);
    background-color: transparent;
    border: none;
  }

  .service-information.table table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .service-information.table tr {
    padding: .35em;
    margin-bottom: 0;
    border-radius: 0;
    overflow: visible;
  }

  .service-information.table tr:last-child {
    border-bottom: none;
  }

  .service-information.table th,
  .service-information.table td {
    padding: 1em 10px 1em 1em;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-gray);
    /* 横の罫線 */
    text-align: left;
    position: static;
    vertical-align: middle;
  }

  .service-information.table th {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-table);
    width: 30%;
    background-color: transparent;
    padding-bottom: 1em;
    margin-bottom: 0;
    border-right: 1px solid var(--color-gray);
    /* 縦の罫線 */
  }

  .service-information.table td {
    font-size: 18px;
    line-height: 1.5;
    width: 70%;
    padding-left: 10px;
  }

  .service-information.table tr:last-child th,
  .service-information.table tr:last-child td {
    border-bottom: none;
  }

  .service-information.table colgroup {
    display: table-column-group;
  }

  .service-information.table col {
    display: table-column;
  }

  .service-information.table td .note-text {
    font-size: 11px;
    color: var(--color-gray);
    display: block;
    margin-top: 5px;
  }

  /* 貸出・返却セクション */
  .triangle-layout {
    max-width: 100%;
  }

  .circle {
    width: 180px;
    height: 180px;
  }

  .circle-left {
    bottom: -20px;
    left: 36px;
  }

  .circle-right {
    bottom: -20px;
    right: 36px;
  }

  .circle-time {
    font-size: 18px;
  }

  .contact-info {
    margin: 40px auto 20px;
  }

  .note-text {
    line-height: 1.7;
  }

  .luggage-transfer-section img {
    margin-right: 10px;
  }

  /* 持ち物バツ印 */
  .cross-overlay {
    max-width: 60px;
    top: 0px;
    right: 37px;
  }

  /* アクシデントへの対応セクション */
  .accident-accordion summary {
    font-size: 13px;
  }

  /* キャンセルポリシー */
  .cancel-policy {
    max-width: 90%;
  }

  .cancel-policy h2 {
    padding: 0 20px 10px;
  }

  .cancel-policy ul {
    margin: 0 20px 30px;
  }

  /* お支払い方法 */
  .payment-section {
    max-width: 90%;
  }
}

/* === さらに小さいモバイル対応 === */
@media (max-width: 375px) {

  /* 貸出・返却 */
  .circle {
    width: 140px;
    height: 140px;
  }

  .circle-left {
    bottom: 40px;
    left: 0px;
  }

  .circle-right {
    bottom: 40px;
    right: 0px;
  }

  .contact-info {
    margin: auto auto 20px;
  }
}

@media (max-width: 374px) {

  /* 持ち物バツ印 */
  .cross-overlay {
    max-width: 50px;
    top: -45px;
    right: 28px;
  }
}