/* ============================================
   共通スタイル
   ============================================ */

/* フォント定義 */
/* Adobe Fonts (Typekit) - DIN 2014 */
@import url('https://use.typekit.net/kbo1fdw.css');

/* ============================================
   リセットCSS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   カラー変数
   ============================================ */
:root {
  /* メインカラー */
  --boat-blue: #0099FF;
  --boat-darkblue: #0069D5;
  --boat-yellow: #FFE434;
  --boat-green: #63EE1E;
  --boat-red: #F8474E;

  /* テキスト・背景色 */
  --boat-text: #081726;
  --white: #FFFFFF;
  --gray-light: #F8F8F8;
  --gray: #D9D9D9;
  --gray-border: #C2C2C2;

  /* レイアウト変数 */
  --container-width-sp: 390px;
  --container-width-pc: 419px;
  --sidebar-width: 280px;
  --header-height: 64px;
}

/* ============================================
   基本スタイル
   ============================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--boat-text);
  line-height: 1.6;
  background-color: var(--white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* コンテナ */
.container {
  width: 100%;
  max-width: 428px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  padding-top: 76px;
  min-height: 100vh;
}

/* ============================================
   SPメニューオーバーレイ
   ============================================ */
.sp-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.35s;
}

.sp-menu-overlay.active {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: var(--boat-blue);
  padding: 66px 28px 22px;
  overflow-y: auto;
  overflow-x: visible;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-menu-overlay.active .sp-menu {
  transform: translateX(0);
}

.sp-menu__close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0.5px solid var(--white);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: none;
}

.sp-menu__close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sp-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.sp-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  padding-left: 20px;
}

.sp-menu__item:hover {
  opacity: 0.8;
}

.sp-menu__item--active {
  position: relative;
  font-weight: 700;
  color: var(--boat-yellow);
}

.sp-menu__item--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--boat-yellow);
  border-radius: 0;
}

.sp-menu__item--with-dot {
  position: relative;
}

.sp-menu__item--with-dot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
}

.sp-menu__item--bold {
  font-weight: 900;
}

.sp-menu__item-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-menu__item-group > .sp-menu__item {
  position: relative;
  text-align: start;
}

.sp-menu__item--accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.sp-menu__accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sp-menu__item--accordion.active .sp-menu__accordion-icon {
  transform: rotate(180deg);
}

.sp-menu__submenu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 30px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: -12px;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.sp-menu__submenu.active {
  max-height: 500px;
  opacity: 1;
  margin-top: 0;
}

.sp-menu__submenu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  padding-left: 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}

.sp-menu__submenu-item:hover {
  opacity: 0.8;
}

.sp-menu__submenu-item--active {
  color: var(--boat-yellow);
  font-weight: 700;
}

.sp-menu__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.sp-menu__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--boat-text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  width: 244px;
  height: 44px;
}

.sp-menu__button:hover {
  opacity: 0.9;
}

.sp-menu__button img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.sp-menu__button--white {
    background-color: var(--white);
  border: none;
  color: var(--boat-red);
}

.sp-menu__button--blue {
  background-color: var(--boat-blue);
  border: 1px solid var(--white);
  color: var(--white);
}

.sp-menu__entry-button {
  background-color: var(--boat-yellow);
  border-radius: 0;
  padding: 16.908px 22.544px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  width: 244px;
  box-sizing: border-box;
}

.sp-menu__entry-content {
  position: relative;
  width: 100%;
  height: 120px;
}

.sp-menu__entry-text {
  width: 100%;
}

.sp-menu__entry-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.sp-menu__entry-title {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.4;
  color: var(--boat-text);
}

.sp-menu__entry-icon {
  width: 18.7px;
  height: 22px;
}

.sp-menu__entry-main {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #0D72E5;
}

.sp-menu__entry-main-web {
  font-size: 43.58px;
  line-height: 1;
}

.sp-menu__entry-main-entry {
  font-size: 39.2px;
  line-height: 1;
}

.sp-menu__entry-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: flex-start;
}

.sp-menu__entry-badge {
  background-color: var(--white);
  padding: 2.254px 7.89px;
  border-radius: 67.632px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14.654px;
  line-height: 1.4;
  color: var(--boat-text);
  white-space: nowrap;
  text-align: left;
}

.sp-menu__entry-period {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 19.03px;
  line-height: 1.4;
  color: var(--boat-text);
  text-align: left;
}

/* ============================================
   PC版サイドバー
   ============================================ */
.pc-sidebar {
  display: none;
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: var(--white);
  gap: 39px;
  z-index: 999;
}

.header__logo-area {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header__logo-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.header__logo-link:hover {
  opacity: 0.8;
}

.header__logo {
  width: 139px;
  height: 24px;
  object-fit: contain;
}

.header__site-name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.header__menu-btn {
  width: 44px;
  height: 44px;
  border: 0.5px solid var(--boat-text);
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.header__menu-btn:hover {
  background-color: var(--gray-light);
  transform: scale(1.05);
}

.header__menu-btn:focus {
  outline: 2px solid var(--boat-blue);
  outline-offset: 2px;
}

.header__menu-btn:active {
  transform: scale(0.95);
}

.header__menu-icon {
  width: 18px;
  height: 12px;
}

/* ============================================
   フッター
   ============================================ */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  padding-bottom: 120px;
  background-color: var(--white);
}

.footer__logo {
  width: 139px;
  height: 24px;
  object-fit: contain;
}

.footer__copyright {
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 1.276;
  text-align: center;
  color: var(--boat-text);
}


/* セクション */
.section {
  padding: 0 20px;
}

.section__title-area {
  position: relative;
  margin-bottom: 40px;
}

.section__title-en {
  display: block;
  height: auto;
  position: relative;
  z-index: 1;
}

.section__title-ja {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--boat-text);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* 見出し */
.heading-with-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
}

.heading-with-bar__bar {
  width: 2.9px;
  height: 100%;
  background-color: currentColor;
}

.heading-with-bar__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.heading-with-bar--yellow .heading-with-bar__bar {
  background-color: var(--boat-yellow);
}

.heading-with-bar--green .heading-with-bar__bar {
  background-color: var(--boat-green);
}

.heading-with-bar--red .heading-with-bar__bar {
  background-color: var(--boat-red);
}

/* ============================================
   ボタン
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
}

.btn:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.btn:focus {
  outline: 2px solid var(--boat-blue);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(0);
}

.btn--yellow {
  background-color: var(--white);
  color: var(--boat-text);
  border-color: var(--boat-yellow);
}

.btn--green {
  background-color: var(--white);
  color: var(--boat-text);
  border-color: var(--boat-green);
}

.btn--red {
  background-color: var(--white);
  color: var(--boat-text);
  border-color: var(--boat-red);
}

.btn--blue {
  background-color: var(--white);
  color: var(--boat-text);
  border-color: var(--boat-blue);
}

.btn__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ============================================
   カード
   ============================================ */
.card {
  padding: 12px;
  background-color: var(--white);
  border-radius: 0;
}

.card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 6px;
}

.card__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  white-space: nowrap;
}

.card__description {
  word-break: auto-phrase;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

/* ============================================
   ステップ表示
   ============================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 0 6px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step__number {
  position: relative;
  width: 64.3px;
  height: 64.3px;
  background-color: var(--boat-blue);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__label {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 12.66px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 3px;
}

.step__num {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 33.75px;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--white);
}

.step__text {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--boat-text);
  white-space: nowrap;
}

.step__arrow {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================
   ニュース
   ============================================ */
.news-item {
  display: flex;
  gap: 8px;
  padding: 0 4px;
  border-bottom: 0.5px solid var(--gray-border);
  padding-bottom: 8px;
  margin-bottom: 8px;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

a.news-item,
a.news-item:link,
a.news-item:visited,
a.news-item:hover,
a.news-item:active {
  text-decoration: none !important;
}

.news-item__date {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.48;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--boat-text);
}

.news-item__title {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.48;
  letter-spacing: 0.04em;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   ページタイトル
   ============================================ */
.page-title {
  position: relative;
  width: 244.43px;
  height: 75px;
  margin: 65.12px 0 0 20.04px;
  z-index: 12;
}

.page-title__bg {
  position: absolute;
  inset: 0;
  background-color: var(--white);
  border: 1.5px solid var(--boat-darkblue);
  display: flex;
  align-items: flex-end;
}

.page-title__bg::before {
  content: '';
  position: absolute;
  bottom: -18.5px;
  left: 17px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 0px solid transparent;
  border-top: 20.5px solid var(--boat-darkblue);
  z-index: -1;
}

.page-title__bg::after {
  content: '';
  position: absolute;
  bottom: -15.5px;
  left: 19.5px;
  width: 0;
  height: 0;
  border-left: 14.5px solid transparent;
  border-right: 0px solid transparent;
  border-top: 16.5px solid var(--white);
  z-index: 2;
}

.page-title__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.2;
  text-align: center;
  color: var(--boat-darkblue);
  white-space: nowrap;
  letter-spacing: -0.04em;
}

.page-title--yellow,
.page-title--blue,
.page-title--red {
  box-shadow: 4px 4px 0px var(--boat-blue);
}

.page-title--yellow .page-title__bg::before,
.page-title--blue .page-title__bg::before,
.page-title--red .page-title__bg::before {
  filter: drop-shadow(4px 4px 0px var(--boat-blue));
}

/* ============================================
   メディアクエリ - レスポンシブ対応
   ============================================ */

/* スマホ（480px～767px） - コンテナ + 背景画像 */
@media (min-width: 480px) and (max-width: 767px) {
  body {
    background: var(--white);
    position: relative;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/pc-background/pc-left-bg-no-logo.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }

  .container {
    width: 390px;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    min-height: 100vh;
    z-index: 1;
  }

  .header {
    width: 390px;
  }
}

/* タブレット以上（768px以上） - SPメニュー非表示 */
@media (min-width: 768px) {
  .sp-menu-overlay {
    display: none !important;
  }

  .header__menu-btn {
    display: none !important;
  }

  .sp-menu__entry-button {
    display: none !important;
  }

  .entry-btn {
    display: none !important;
  }

  body {
    background: var(--white);
    position: relative;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/pc-background/pc-left-bg-no-logo.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }

  .container {
    width: 390px;
    margin: 0;
    margin-left: 0;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    min-height: 100vh;
    z-index: 1;
  }

  .header {
    width: 390px;
    left: 0;
    transform: translateX(0);
  }

  .pc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: fixed;
    top: 0;
    right: 0;
    left: 390px;
    height: 100vh;
    background-color: var(--white);
    padding: 71px 18px 0;
    z-index: 0;
    overflow-y: auto;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .pc-sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .pc-sidebar::before {
    content: '';
    position: fixed;
    bottom: 0;
    right: 0;
    width: 1154px;
    height: 644px;
    background-image: url('../images/pc-background/pc-right-decoration.png');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    clip-path: inset(0 0 0 calc(1154px - 100vw + 390px));
  }

  .pc-sidebar__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    min-width: max-content;
  }

  .pc-sidebar__menu-item {
    display: block;
    text-decoration: none;
    color: var(--boat-text);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    min-width: 100%;
  }

  .pc-sidebar__menu-item:hover {
    opacity: 0.8;
  }

  /* 表示中ページのスタイル（アコーディオンボタン以外） */
  .pc-sidebar__menu-item.active:not(.pc-sidebar__menu-item--accordion) {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--boat-darkblue);
    padding-left: 0;
  }

  .pc-sidebar__menu-item.active:not(.pc-sidebar__menu-item--accordion)::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--boat-darkblue);
    border-radius: 0;
    flex-shrink: 0;
  }

  .pc-sidebar__menu-item:not(.active) {
    padding-left: 20px;
  }

  .pc-sidebar__menu-item--bold {
    font-weight: 900;
  }

  .pc-sidebar__menu-item--accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding-left: 20px;
  }

  .pc-sidebar__accordion-icon {
    flex-shrink: 0;
    margin-left: 18px;
    transition: transform 0.3s ease;
  }

  .pc-sidebar__menu-item--accordion.active .pc-sidebar__accordion-icon {
    transform: rotate(180deg);
  }

  .pc-sidebar__submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 244px;
    padding-left: 30px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: -12px;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  }

  .pc-sidebar__submenu.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 0;
  }

  .pc-sidebar__submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 0;
    text-decoration: none;
    color: var(--boat-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
  }

  .pc-sidebar__submenu-item.active {
    color: var(--boat-darkblue);
    font-weight: 700;
  }

  .pc-sidebar__submenu-item:hover {
    opacity: 0.8;
  }

  .pc-sidebar__submenu-item--active {
    color: var(--boat-darkblue);
  }

  .pc-sidebar__submenu-item--active::before {
    background-color: var(--boat-darkblue);
  }

  .pc-sidebar__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .pc-sidebar__button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 30px;
    background-color: var(--white);
    text-decoration: none;
    color: var(--boat-text);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.04em;
    width: 244px;
    height: 44px;
  }

  .pc-sidebar__button:hover {
    opacity: 0.9;
  }

  .pc-sidebar__button--red {
    border: 1px solid var(--boat-red);
  }

  .pc-sidebar__button--blue {
    border: 1px solid var(--boat-blue);
  }

  .pc-sidebar__button span {
    flex: 1;
    white-space: nowrap;
  }

  .pc-sidebar__button img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .pc-sidebar__entry-button {
    background-color: var(--boat-yellow);
    border-radius: 0;
    padding: 16.908px 22.544px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
    margin: 46px 0 116px;
    gap: 12px;
  }

  .pc-sidebar__entry-content {
    position: relative;
    width: 234px;
    height: 137.09px;
  }

  .pc-sidebar__entry-text {
    position: absolute;
    left: 0;
    top: 0;
  }

  .pc-sidebar__entry-title {
    font-family: "din-2014", sans-serif;
    font-weight: 300;
    font-size: 24.798px;
    line-height: 1.4;
    color: var(--boat-text);
    margin-bottom: 0;
  }

  .pc-sidebar__entry-main {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #0D72E5;
    margin-top: 0;
    letter-spacing: -2px;
  }

  .pc-sidebar__entry-main-web {
    font-size: 52.58px;
  }

  .pc-sidebar__entry-main-entry {
    font-size: 48.2px;
  }

  .pc-sidebar__entry-icon {
    position: absolute;
    right: 0.93px;
    top: 9.57px;
    width: 22px;
    height: 22px;
  }

  .pc-sidebar__entry-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
  }

  .pc-sidebar__entry-badge {
    background-color: var(--white);
    padding: 2.254px 7.89px;
    border-radius: 67.632px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14.654px;
    line-height: 1.4;
    color: var(--boat-text);
    white-space: nowrap;
    text-align: center;
  }

  .pc-sidebar__entry-period {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: var(--boat-text);
    text-align: center;
  }

  .pc-sidebar__entry-date {
    font-size: 22px;
    color: var(--boat-text);
  }

  .pc-sidebar__entry-weekday {
    font-size: 16.5px;
    color: var(--boat-text);
  }
}

/* PC版（1024px以上） - 左背景915px + コンテナ中央配置 */
@media (min-width: 1024px) {
  body::before {
    width: 915px;
    background-position: top left;
  }

  .container {
    max-width: 419px;
    width: 419px;
    margin: 0 auto;
  }

  .header {
    width: 419px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pc-sidebar {
    left: calc(50% + 419px / 2);
  }

  .pc-sidebar::before {
    content: '';
    position: fixed;
    bottom: 0;
    right: -150px;
    width: 1154px;
    height: 644px;
    background-image: url('../images/pc-background/pc-right-decoration.png');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    clip-path: inset(0 0 0 calc(1000px - (100vw - 50% - 300px / 2)));
  }
}

