body {
  margin: 0;
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Microsoft JhengHei", sans-serif;
  color: #111827;
  background: #f3f4f6;
  overflow-x: hidden;
}

.post-workflow-body {
  min-height: 100vh;
  color: #0f172a;
  background: #f5f7fb;
}

.post-workflow-body .site-header,
.post-workflow-body .site-footer {
  display: none;
}

.post-workflow-page-main {
  min-height: 100vh;
  padding: 32px;
  box-sizing: border-box;
}

.post-workflow {
  width: min(100%, 1560px);
  margin: 0 auto;
}

.post-workflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.post-workflow-kicker {
  margin: 0 0 6px;
  color: #0364d9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.post-workflow h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
}

.workflow-request-button,
.workflow-save-button,
.workflow-secondary-button,
.workflow-modal-close {
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.workflow-request-button,
.workflow-save-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: #0364d9;
}

.workflow-request-button:hover,
.workflow-save-button:hover {
  background: #024fb0;
}

.workflow-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #334155;
  background: #e5e7eb;
}

.workflow-secondary-button:hover {
  background: #d1d5db;
}

.workflow-notice {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.workflow-notice.is-success {
  color: #075985;
  background: #e0f2fe;
}

.workflow-notice.is-error {
  color: #b91c1c;
  background: #fee2e2;
}

.post-workflow-layout {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 18px;
  align-items: start;
}

.workflow-list-panel,
.workflow-detail-panel,
.workflow-detail-empty {
  background: #fff;
  border: 1px solid #d8dee9;
  border-radius: 8px;
}

.workflow-list-panel {
  min-width: 0;
  overflow: hidden;
}

.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid #d8dee9;
  background: #f8fafc;
}

.workflow-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 12px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid #d8dee9;
}

.workflow-tab:last-child {
  border-right: 0;
}

.workflow-tab:hover,
.workflow-tab.is-active {
  color: #0364d9;
  background: #fff;
}

.workflow-tab.is-active {
  box-shadow: inset 0 -3px 0 #0364d9;
}

.workflow-table-wrap {
  max-height: calc(100vh - 190px);
  overflow: auto;
}

.workflow-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
}

.workflow-table th,
.workflow-table td {
  padding: 5px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
  text-align: left;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.workflow-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #475569;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.workflow-table th:nth-child(1),
.workflow-table td:nth-child(1) {
  width: 28px;
  text-align: center;
}

.workflow-table th:nth-child(2),
.workflow-table td:nth-child(2) {
  width: 65px;
}

.workflow-table th:nth-child(3),
.workflow-table td:nth-child(3){
  width: 60px;
}

.workflow-table th:nth-child(4),
.workflow-table td:nth-child(4) {
  width: 150px;
}

.workflow-table th:nth-child(5),
.workflow-table td:nth-child(5) {
  width: 50px;
}


.workflow-table th:nth-child(6),
.workflow-table td:nth-child(6) {
  width: 190px;
}

.workflow-table tbody tr {
  cursor: pointer;
  transition: background 0.16s ease;
}

.workflow-table tbody tr:hover,
.workflow-table tbody tr.is-active {
  background: #edf6ff;
}

.workflow-table a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.6;
}

.workflow-status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: #0364d9;
  background: #e0f2fe;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.workflow-status-tag.is-empty {
  color: #94a3b8;
  background: #f1f5f9;
}

.workflow-status-tag.is-awaiting {
  color: #92400e;
  background: #fef3c7;
}

.workflow-status-tag.is-revision {
  color: #be123c;
  background: #ffe4e6;
}

.workflow-status-tag.is-ready {
  color: #047857;
  background: #d1fae5;
}

.workflow-table .workflow-asset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  color: #0364d9;
  background: #e0f2fe;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.workflow-table a.workflow-asset-button:hover {
  background: #bfdbfe;
}

.workflow-table .workflow-asset-button.is-disabled {
  color: #94a3b8;
  background: #f1f5f9;
  cursor: not-allowed;
}

.workflow-empty {
  height: 180px;
  color: #64748b;
  text-align: center;
}

.workflow-detail-side {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.workflow-detail-shell {
  min-width: 0;
}

.workflow-detail-panel,
.workflow-detail-empty {
  min-height: 360px;
  padding: 22px;
  box-sizing: border-box;
}

.workflow-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.workflow-detail-id {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 6px;
  color: #0364d9;
  background: #e0f2fe;
  font-size: 12px;
  font-weight: 800;
}

.workflow-detail-head h2,
.workflow-detail-empty h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.workflow-detail-tools {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.workflow-rewrite-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #f9a8b8;
  border-radius: 6px;
  color: #881337;
  background: #fff1f2;
}

.workflow-rewrite-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.workflow-rewrite-note p {
  margin: 0;
  color: #4c0519;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.workflow-detail-section {
  padding: 18px 0;
  border-top: 1px solid #e5e7eb;
}

.workflow-detail-section:first-of-type {
  border-top: 0;
}

.workflow-detail-section h3 {
  margin: 0 0 12px;
  color: #0364d9;
  font-size: 15px;
  line-height: 1.4;
}

.workflow-media-grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.workflow-media-card {
  flex: 1 1 220px;
  min-width: 0;
}

.workflow-featured-image {
  display: block;
  width: min(100%, 200px);
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
}

.workflow-featured-image img,
.workflow-value-image {
  display: block;
  width: 100%;
  height: auto;
}

.workflow-value-image {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  object-fit: cover;
}

.workflow-value-image-link {
  display: block;
  flex: 0 0 100px;
  width: 100px;
}

.workflow-media-card .workflow-featured-image {
  width: 150px;
  height: 150px;
}

.workflow-media-card .workflow-value-image-link {
  width: 80px;
  height: 80px;
}

.workflow-media-card .workflow-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-media-card .workflow-value-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.workflow-detail-list {
  margin: 0;
}

.workflow-detail-list > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid #e5e7eb;
}

.workflow-detail-list > div > dt {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.workflow-detail-list > div > dd {
  min-width: 0;
  margin: 0;
  color: #0f172a;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.workflow-detail-list a {
  color: #0364d9;
}

.workflow-muted {
  color: #94a3b8;
}

.workflow-value-list,
.workflow-value-map {
  margin: 0;
  padding: 0;
}

.workflow-value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.workflow-value-list li {
  min-width: 0;
}

.workflow-value-map div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-top: 1px dashed #e5e7eb;
}

.workflow-value-map div:first-child {
  border-top: 0;
}

.workflow-value-map dt {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.workflow-value-map dd {
  min-width: 0;
  margin: 0;
}

.workflow-detail-content {
  line-height: 1.8;
}

.workflow-detail-content p {
  margin: 0 0 1em;
}

.workflow-detail-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #64748b;
}

.workflow-detail-empty p {
  margin: 10px 0 0;
}

.workflow-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.48);
}

.workflow-modal-backdrop[hidden] {
  display: none;
}

html.has-workflow-modal {
  overflow: hidden;
}

.workflow-modal {
  width: min(100%, 640px);
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.25);
  box-sizing: border-box;
}

.workflow-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.workflow-modal-head h2 {
  margin: 0;
  font-size: 22px;
}

.workflow-modal-close {
  width: 36px;
  height: 36px;
  color: #475569;
  background: #f1f5f9;
  font-size: 24px;
  line-height: 1;
}

.workflow-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.workflow-field small {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
}

.workflow-field input,
.workflow-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #0f172a;
  background: #fff;
  box-sizing: border-box;
  font: inherit;
  font-weight: 500;
}

.workflow-field textarea {
  min-height: 104px;
  resize: vertical;
}

.workflow-field input:focus,
.workflow-field textarea:focus {
  outline: 2px solid rgba(3, 100, 217, 0.24);
  border-color: #0364d9;
}

.workflow-no-issue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.workflow-no-issue input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0364d9;
}

.workflow-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 1080px) {
  .post-workflow-layout {
    grid-template-columns: 1fr;
  }

  .workflow-detail-side {
    position: static;
  }

  .workflow-table-wrap {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .post-workflow-page-main {
    padding: 18px 14px;
  }

  .post-workflow-header {
    align-items: stretch;
    flex-direction: column;
  }

  .post-workflow h1 {
    font-size: 24px;
  }

  .workflow-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-tab:nth-child(2) {
    border-right: 0;
  }

  .workflow-tab:nth-child(-n + 2) {
    border-bottom: 1px solid #d8dee9;
  }

  .workflow-detail-panel,
  .workflow-detail-empty {
    padding: 18px;
  }

  .workflow-detail-head {
    flex-direction: column;
  }

  .workflow-detail-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .workflow-detail-tools {
    flex-direction: column;
  }

  .workflow-request-button {
    width: 100%;
  }

  .workflow-modal {
    padding: 18px;
  }
}

body.cool-osaka-lang-en {
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
}

body.cool-osaka-lang-ko {
  font-family: "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
}

body.cool-osaka-lang-zh-hant {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", Arial, sans-serif;
}

body.cool-osaka-lang-zh-hans {
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 0.86s ease var(--scroll-reveal-delay, 0ms),
    transform 0.86s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .slider-item,
  .post-main-image-track,
  .sns-gallery-track {
    transition: none;
    will-change: auto;
  }

  .feature-track {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .vertical-cards {
    scroll-behavior: auto;
  }
}

.site-header {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 0 0 20px 0;
}

.site-logo img {
  height: 150px;
  display: block;
  object-fit: contain;
}

.menu-bar {
  margin-right: 20px;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-icon {
  width: 28px;
  display: grid;
  gap: 6px;
}

.menu-icon span {
  width: 100%;
  height: 2px;
  display: block;
  background: #111827;
}

.design-drawer {
  width: min(420px, 92vw);
  height: 100vh;
  padding: 50px 32px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.94);
  color: #0b3440;
  box-shadow: -18px 0 46px rgba(3, 41, 70, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateX(105%);
  transition: transform 0.32s ease;
}

.design-drawer.is-open {
  transform: translateX(0);
}

.design-drawer-close {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #0364d9;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.design-drawer-kicker {
  margin: 0 0 16px;
  color: #0364d9;
  font-size: 13px;
  font-weight: 900;
}

.design-drawer-title {
  margin: 0 52px 18px 0;
  color: #0364d9;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0;
}

.design-drawer-body {
  display: grid;
  gap: 20px;
}

.design-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  background: rgba(3, 41, 70, 0.24);
}

.design-drawer-backdrop.is-open {
  display: block;
}

.drawer-menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.drawer-menu-item {
  min-height: 52px;
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(3, 41, 70, 0.2);
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  transition: color 0.22s ease, padding-left 0.22s ease, background-color 0.22s ease;
}

.drawer-menu-item::before {
  content: "";
  width: 4px;
  height: 0;
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 999px;
  background: #0364d9;
  transform: translateY(-50%);
  transition: height 0.22s ease;
}

.drawer-menu-item:hover,
.drawer-menu-item:focus-visible {
  padding-left: 18px;
  background: rgba(3, 100, 217, 0.07);
  color: #0364d9;
}

.drawer-menu-item:hover::before,
.drawer-menu-item:focus-visible::before {
  height: 28px;
}

.drawer-menu-item .category-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  transition: transform 0.22s ease;
}

.drawer-menu-item:hover .category-icon,
.drawer-menu-item:focus-visible .category-icon {
  transform: scale(1.08) rotate(-3deg);
}

.drawer-menu-item .category-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.drawer-summer-action {
  min-height: 72px;
  margin: 18px 0 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  background: #0364d9;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
}

.drawer-summer-action .summer-action-icon {
  width: 40px;
  height: 40px;
  font-size: 11px;
}

.design-drawer.is-menu .design-drawer-kicker,
.design-drawer.is-menu .design-drawer-title {
  display: none;
}

.design-drawer.is-menu .design-drawer-body {
  gap: 0;
}

.drawer-language {
  width: 150px;
  height: 38px;
  margin: 0 0 24px;
  position: relative;
  z-index: 2;
}

.drawer-language-button {
  width: 150px;
  min-height: 38px;
  padding: 0 42px 0 22px;
  position: relative;
  border: 0;
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
}

.drawer-language-button::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 18px;
  top: 50%;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: translateY(-65%) rotate(45deg);
}

.drawer-language.is-open .drawer-language-button::after {
  transform: translateY(-35%) rotate(225deg);
}

.drawer-language-list {
  width: 150px;
  position: absolute;
  left: 0;
  top: 38px;
  background: #171717;
  color: #ffffff;
}

.drawer-language-list[hidden] {
  display: none;
}

.drawer-language-head,
.drawer-language-list a {
  min-height: 28px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.drawer-language-head {
  background: #1f6bd6;
}

.drawer-language-list a[aria-current="true"] {
  color: #5eb8ff;
}

.footer-drawer-language {
  margin: 0;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  filter: drop-shadow(0 12px 24px rgba(3, 41, 70, 0.2));
}

.footer-drawer-language .drawer-language-button {
  cursor: pointer;
}

.footer-drawer-language .drawer-language-button::after {
  transform: translateY(-35%) rotate(225deg);
}

.footer-drawer-language.is-open .drawer-language-button::after {
  transform: translateY(-65%) rotate(45deg);
}

.footer-drawer-language .drawer-language-list {
  top: auto;
  bottom: calc(100% + 8px);
  overflow: hidden;
  border-radius: 14px;
}

.footer-drawer-language .drawer-language-list a:hover,
.footer-drawer-language .drawer-language-list a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.drawer-link-section {
  margin-top: 28px;
}

.drawer-link-section h3 {
  margin: 0 0 12px;
  color: #0364d9;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.drawer-link-list {
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
}

.drawer-link-item {
  min-height: 56px;
  padding: 0 34px 0 18px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px dotted rgba(3, 41, 70, 0.16);
  color: #111827;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.drawer-link-item:last-child {
  border-bottom: 0;
}

.drawer-link-item::after {
  content: ">";
  position: absolute;
  right: 16px;
  top: 50%;
  color: #111827;
  font-size: 20px;
  transform: translateY(-50%);
}

.category-icon {
  width: 70px;
  height: 70px;
  display: block;
  position: relative;
  transition: transform 0.22s ease;
}

.summer-action-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffcc4d;
  color: #0c8b8d;
  font-size: 13px;
  font-weight: 900;
}

.slider {
  width: 100%;
  height: 900px;
  position: relative;
  overflow: hidden;
}

.slider-waves.category-hero-waves {
  height: 240px;
  z-index: 2;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.slider-item.active {
  opacity: 1;
}

.slider-item[style] {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.news-area {
  width: calc(100% - 40px);
  padding: 18px 20px;
  background: #eaf7ff;
}

.news-inner {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
}

.news-label {
  width: 150px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0364d9;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 130px 1fr 24px;
  gap: 22px;
  align-items: center;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.news-item time,
.news-item p {
  margin: 0;
}
.news-item time{
  font-weight: 500;
}

.news-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-arrow {
  width: 8px;
  height: 8px;
  justify-self: end;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
}

.category-news-area {
  width:860px;
  max-width: calc(100% - 68px);
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(3, 41, 70, 0.1);
}

.category-news-inner {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.category-news-list {
  gap: 0;
}

.category-news-item {
  min-height: 38px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(3, 100, 217, 0.16);
}

.category-news-item:first-child {
  padding-top: 0;
}

.category-news-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.category-news-area .category-no-posts {
  margin: 0;
}

.category-news-area .navigation.pagination {
  margin-top: 30px;
}

.category-nav {
  wi9dth: 100%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  background: #dff7fb;
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
}


.category-nav.is-fixed {
  width: min(700px, calc(100% - 200px));
  grid-template-columns: repeat(8, 1fr);
  position: fixed;
  top: 50px;
  left: 50%;
  z-index: 30;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(0, 70, 120, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
  animation: categoryDrop 0.32s ease-out;
}

.category-nav.is-fixed .category-item {
  min-height: 48px;
  padding: 10px 5px;
  gap: 0px;
  background: transparent;
  border-right-color: rgba(3, 100, 217, 0.14);
  font-size: 10px;
}

.category-nav.is-fixed .category-item.is-about {
  display: none;
}

.category-nav.is-fixed .category-icon {
  width: 40px;
  height: 40px;
}

@keyframes categoryDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -86px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.category-item {
  padding: 18px 10px 16px;
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  color: #000000;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.category-item::after {
  content: "";
  width: 28px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 9px;
  border-radius: 999px;
  background: #0364d9;
  opacity: 0;
  transform: translateX(-50%) scaleX(0.35);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.category-item:hover,
.category-item:focus-visible,
.category-item.is-current {
  z-index: 1;
  background: #eaf7ff;
  color: #0364d9;
  transform: translateY(-3px);
}

.category-item:hover::after,
.category-item:focus-visible::after,
.category-item.is-current::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.category-item:hover .category-icon,
.category-item:focus-visible .category-icon,
.category-item.is-current .category-icon {
  transform: translateY(-2px) scale(1.08);
}

.category-item:first-child {
  border-left: 1px solid #e5e7eb;
}

.category-icon.category-icon-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.cool-zone {
  width: 100%;
  position: relative;
  padding-bottom: 150px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.95), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.64), transparent 20%),
    radial-gradient(circle at 46% 88%, rgba(180, 237, 255, 0.72), transparent 26%),
    linear-gradient(135deg, #f4fdff 0%, #c8f2ff 38%, #8ddcf4 100%);
}

.cool-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.68) 18.2%, transparent 18.8% 100%),
    linear-gradient(35deg, transparent 0 34%, rgba(255, 255, 255, 0.48) 34.2%, transparent 34.8% 100%),
    linear-gradient(155deg, transparent 0 62%, rgba(255, 255, 255, 0.42) 62.2%, transparent 62.8% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 18px);
  opacity: 0.78;
}

.cool-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 22%, rgba(255, 255, 255, 0.22));
  mix-blend-mode: screen;
}

.cool-zone > * {
  position: relative;
  z-index: 2;
}

.cool-zone > .cool-zone-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.cool-zone-decor-item {
  width: var(--cool-size);
  position: absolute;
  left: var(--cool-x);
  top: var(--cool-y);
  opacity: var(--cool-opacity);
  filter: drop-shadow(0 14px 20px rgba(7, 93, 128, 0.16));
  transform: translate(-50%, -50%) rotate(var(--cool-rotate));
}

.cool-zone-decor-item img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  user-select: none;
  transform: translate3d(0, 8px, 0) scale(0.94);
  animation:
    coolZoneDecorFade 0.68s var(--cool-delay) ease forwards,
    coolZoneDecorFloat var(--cool-duration) var(--cool-delay) ease-in-out infinite alternate;
  will-change: opacity, transform;
}

.cool-zone-decor-item:nth-child(even) img {
  animation-direction: normal, alternate-reverse;
}

@keyframes coolZoneDecorFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes coolZoneDecorFloat {
  from {
    transform: translate3d(0, 8px, 0) scale(0.94);
  }

  to {
    transform: translate3d(0, -10px, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cool-zone-decor-item img {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.feature-marquee {
  width: 100%;
  padding: 30px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-track {
  width: max-content;
  position: relative;
  z-index: 1;
  display: flex;
  animation: feature-scroll 20s linear infinite;
  will-change: transform;
}

.feature-marquee:hover .feature-track,
.feature-marquee:focus-within .feature-track {
  animation-play-state: paused;
}

.feature-row {
  width: 100%;
  overflow: visible;
}

.feature-row + .feature-row {
  margin-top: 8px;
}

.feature-row-bottom .feature-track {
  margin-left: -295px;
}

.feature-set {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  padding-right: 8px;
}

.feature-card {
  width: 400px;
  min-height: 160px;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 15px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #0b3440;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

.feature-photo {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #0364d9, #8ddcf4);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.feature-card:hover .feature-photo img,
.feature-card:focus-visible .feature-photo img {
  transform: scale(1.06);
}

.feature-photo span {
  padding: 10px;
}

.feature-body {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.feature-cool-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
}

.feature-cool-icons img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.feature-title {
  display: -webkit-box;
  overflow: hidden;
  color: #0b3440;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feature-line {
  width: 100%;
  margin: 5px 0;
  height: 1px;
  border-top: 1px dashed rgba(11, 52, 64, 0.5);
}

.feature-meta {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(11, 52, 64, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-main {
  background: #f4fdff;
}

.category-hero {
  height: 450px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: var(--category-color, #0364d9);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
}

.category-hero-inner {
  width: min(1080px, calc(100% - 80px));
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.category-hero-waves {
  width: 100%;
  height: 180px;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  pointer-events: none;
}

.category-hero-wave-parallax > use {
  animation: category-wave-move 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  will-change: transform;
}

.category-hero-wave-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.category-hero-wave-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.category-hero-wave-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.category-hero-wave-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes category-wave-move {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-hero-wave-parallax > use {
    animation: none;
  }
}

.category-hero-logo {
  display: grid;
  place-items: center;
}

.category-hero-logo img {
  max-width: 100%;
  max-height: 350px;
  display: block;
  margin-bottom: -100px;
  object-fit: contain;
}

.category-hero-logo.has-mobile-image .category-hero-top-mobile {
  display: none;
}

.category-hero-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.38);
}

.category-cool-zone {
  padding: 130px 0 130px;
  min-height: 400px;
}

.category-cool-inner {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.category-cool-zone .about-inner.category-about-inner {
  width: min(1200px, calc(100% - 80px));
  max-width: none;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: block;
  overflow-x: none;
}

.category-about-page {
  display: grid;
  gap: 120px;
}

.category-about-intro {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.category-about-kicker {
  margin: 0 0 22px;
  color: var(--category-color, #0364d9);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.category-about-intro h2,
.category-about-statement h3 {
  margin: 0;
  color: #0b3440;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.category-about-lead {
  width: min(720px, 100%);
  margin: 36px auto 0;
  color: #365663;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 2;
}

.category-about-visual-placeholder,
.category-about-image-placeholder {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(3, 100, 217, 0.14);
  background:
    linear-gradient(135deg, rgba(3, 100, 217, 0.08), rgba(141, 220, 244, 0.2)),
    rgba(255, 255, 255, 0.72);
  color: rgba(3, 100, 217, 0.38);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.category-about-visual-placeholder {
  min-height: 520px;
  border-radius: 20px;
}

.category-about-section {
  min-width: 0;
}

.category-about-section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.category-about-section-split.is-reverse .category-about-section-copy {
  order: 2;
}

.category-about-section-split.is-reverse .category-about-image-placeholder {
  order: 1;
}

.category-about-section-copy {
  min-width: 0;
}

.category-about-section-number {
  margin: 0 0 20px;
  color: var(--category-color, #0364d9);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.category-about-section-copy h3 {
  margin: 0 0 30px;
  color: #0b3440;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.category-about-section-copy p:not(.category-about-section-number) {
  margin: 0;
  color: #365663;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.category-about-section-copy p + p {
  margin-top: 1.3em;
}

.category-about-image-placeholder {
  min-height: 520px;
  border-radius: 18px;
}

.category-about-statement {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.category-about-statement > p:last-child {
  width: min(700px, 100%);
  margin: 36px auto 0;
  color: #365663;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.category-about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.category-about-pillar {
  min-height: 330px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(3, 100, 217, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(3, 65, 120, 0.08);
}

.category-about-pillar > span {
  color: var(--category-color, #0364d9);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.category-about-pillar h3 {
  margin: auto 0 18px;
  color: #0b3440;
  font-size: 30px;
  font-weight: 900;
}

.category-about-pillar p {
  margin: 0;
  color: #46636e;
  font-size: 14px;
  line-height: 1.85;
}

.category-main.is-about-page .category-cool-zone {
  padding-top: 110px;
  background: #ffffff;
}

.about-focus {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 70px;
  align-items: center;
}

.about-en-label {
  margin: 0 0 24px;
  color: var(--category-color, #0364d9);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.about-focus h1 {
  margin: 0;
  color: #101719;
  font-size: clamp(48px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.about-focus-text {
  margin-top: 70px;
  display: grid;
  gap: 30px;
}

.about-focus-text p {
  margin: 0;
  color: #101719;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.about-house-marks {
  min-height: 540px;
  position: relative;
}

.about-house-logo {
  width: min(520px, 80%);
  height: auto;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
}

.about-problems h2 {
  margin: 0 0 62px;
  color: #101719;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
}

.about-problem-list {
  display: grid;
  gap: 32px;
}

.about-problem-card {
  min-height: 390px;
  padding: 48px 54px 44px 100px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  grid-template-rows: 1fr auto;
  gap: 28px 60px;
  border-radius: 42px;
  background: #f3f7f8;
}

.about-problem-label {
  margin: 0;
  position: absolute;
  top: 45px;
  left: 27px;
  color: var(--category-color, #0364d9);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.about-problem-copy h3 {
  margin: 0 0 20px;
  color: #102127;
  font-size: clamp(30px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.4;
}

.about-problem-copy h3 strong,
.about-problem-copy h3 em {
  color: var(--category-color, #0364d9);
}

.about-problem-copy p {
  margin: 0;
  color: #203941;
  font-size: 18px;
  line-height: 1.9;
}

.about-problem-media {
  min-height: 210px;
  align-self: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(3, 100, 217, 0.1)),
    rgba(3, 100, 217, 0.08);
}

.about-problem-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #ffffff;
}

.about-problem-media.is-diagram {
  background: var(--category-color, #0364d9);
  opacity: 0.9;
}

.about-problem-note {
  grid-column: 1 / -1;
  border-radius: 12px;
  background: rgba(11, 52, 64, 0.035);
}

.about-problem-note summary {
  padding: 16px 24px;
  cursor: pointer;
  color: #102127;
  font-size: 12px;
  font-weight: 700;
}

.about-problem-note p {
  margin: 0;
  padding: 0 24px 18px;
  color: #49616a;
  font-size: 12px;
}

.about-problem-note a {
  color: var(--category-color, #0364d9);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-problem-note a:hover {
  opacity: 0.72;
}

.about-transition {
  min-height: 1080px;
  position: relative;
  text-align: center;
}

.about-transition > p {
  margin: 0;
  color: #102127;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.75;
}

.about-transition h2 {
  margin: 50px auto 0;
  color: var(--category-color, #0364d9);
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.about-transition-shapes span {
  width: clamp(190px, 20vw, 300px);
  height: clamp(130px, 14vw, 205px);
  position: absolute;
  top: 315px;
  border-radius: clamp(32px, 3vw, 54px);
  background: var(--category-color, #0364d9);
  opacity: 0.2;
}

.about-transition-shapes span:first-child {
  left: calc(50% - 50vw + 28px);
  opacity: 0.28;
}

.about-transition-shapes span:nth-child(2) {
  width: clamp(160px, 16vw, 240px);
  height: clamp(105px, 10vw, 155px);
  right: calc(50% - 50vw + 4.5vw);
  top: 405px;
  opacity: 0.18;
}

.about-transition-shapes span:nth-child(3) {
  width: clamp(90px, 9vw, 140px);
  height: clamp(65px, 6.5vw, 100px);
  left: calc(50% - 42vw);
  top: 710px;
  opacity: 0.12;
}

.about-transition-shapes span:nth-child(4) {
  width: clamp(110px, 11vw, 170px);
  height: clamp(75px, 7.5vw, 115px);
  right: calc(50% - 46vw);
  top: 790px;
  opacity: 0.1;
}

.about-transition-images {
  width: min(1120px, 94vw);
  height: 500px;
  margin: 125px auto 0;
  position: relative;
}

.about-transition-images a {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: clamp(22px, 2.5vw, 42px);
  background: rgba(3, 100, 217, 0.08);
  box-shadow: 0 20px 45px rgba(3, 41, 70, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-transition-images a:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(3, 41, 70, 0.16);
}

.about-transition-images img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-transition-images a:nth-child(1) { width: 42%; height: 300px; left: 28%; top: 0; }
.about-transition-images a:nth-child(2) { width: 23%; height: 160px; right: 1%; top: 138px; }
.about-transition-images a:nth-child(3) { width: 23%; height: 165px; left: 0; top: 285px; }
.about-transition-images a:nth-child(4) { width: 27%; height: 190px; right: 6%; top: 360px; }

.about-blue-area {
  width: 100vw;
  margin: 0 calc(50% - 50vw) -140px;
  padding: 180px max(40px, calc((100vw - 1200px) / 2)) 170px;
  display: grid;
  gap: 120px;
  border-radius: 50px 50px 0 0;
  background: var(--category-color, #0364d9);
  color: #ffffff;
  box-sizing: border-box;
}

.about-platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 70px;
  align-items: center;
  padding-bottom: 110px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.about-platform-copy .about-en-label {
  color: #ffffff;
}

.about-platform-copy h2 {
  margin: 0 0 58px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.35;
}

.about-platform-copy > p:not(.about-en-label) {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.about-platform-copy > p + p {
  margin-top: 28px;
}

.about-platform-diagram {
  min-height: 460px;
  position: relative;
}

.about-platform-diagram span,
.about-platform-logo {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--category-color, #0364d9);
  text-align: center;
  line-height: 1.35;
}

.about-platform-diagram span { width: 190px; height: 190px; font-size: 22px; font-weight: 900; }
.about-platform-diagram .is-top { top: 0; left: 50%; transform: translateX(-50%); }
.about-platform-diagram .is-left { left: 0; bottom: 0; }
.about-platform-diagram .is-right { right: 0; bottom: 0; }
.about-platform-logo {
  width: 230px;
  height: 230px;
  left: 50%;
  top: 56%;
  z-index: 5;
  padding: 24px;
  border: 0;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  box-shadow: 0 14px 32px rgba(0, 39, 110, 0.16);
}

.about-platform-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.about-values h2,
.about-activities > h2 {
  margin: 0 0 58px;
  color: #ffffff;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 900;
  text-align: center;
}

.about-value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.about-value-card {
  width: 100%;
  max-width: 860px;
  min-height: 360px;
  margin: 0 auto;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: stretch;
  gap: 46px;
  border-radius: 38px;
  background: #ffffff;
  color: #102127;
}

.about-value-copy {
  padding: 18px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-value-card:nth-child(even) .about-value-copy {
  order: 2;
}

.about-value-card:nth-child(2) {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.about-value-card:nth-child(even) .about-value-image {
  order: 1;
}

.about-value-copy > span {
  color: var(--category-color, #0364d9);
  font-size: 12px;
  font-weight: 900;
}

.about-value-card h3,.about-service-copy h3 {
  margin: 18px 0 24px;
  font-size: clamp(24px, 2.7vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.about-value-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

.about-value-image {
  min-height: 290px;
  border-radius: 26px;
  background: rgba(3, 100, 217, 0.1);
}

.about-activities {
  padding-top: 30px;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-service-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border-radius: 16px;
  background: #ffffff;
  color: #102127;
  box-shadow: 0 24px 55px rgba(0, 39, 110, 0.14);
}

.about-service-copy {
  padding: 42px 34px 34px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.about-service-copy > p:first-child {
  margin: 0 0 10px;
  color: var(--category-color, #0364d9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}


.about-service-copy > p:not(:first-child) {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.9;
}

.about-service-copy .about-value-link {
  margin-top: auto !important;
}

.about-activity-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
  align-items: center;
}

.about-activity-image {
  min-height: 480px;
  border-radius: 38px;
  background: #ffffff;
}

.about-activity-copy > p:first-child {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 900;
}

.about-activity-copy h3 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
}

.about-activity-copy > p:not(:first-child) {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.about-activity-copy a,
.about-value-link {
  width: fit-content;
  min-height: 58px;
  margin: 80px 0 0 auto;
  padding: 0 20px 0 28px;
  display: flex;
  align-items: center;
  gap: 26px;
  border-radius: 14px;
  background: rgba(0, 39, 110, 0.35);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.about-activity-copy a span,
.about-value-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 39, 110, 0.35);
}

.about-value-link {
  margin: 0 !important;
  background: var(--category-color, #0364d9) !important;
  box-shadow: 0 10px 22px rgba(0, 39, 110, 0.16);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.about-value-link span {
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.about-value-link:hover,
.about-value-link:focus-visible {
  transform: translateY(-4px);
  filter: brightness(0.88);
  box-shadow: 0 16px 30px rgba(0, 39, 110, 0.24);
}

.about-value-link:hover span,
.about-value-link:focus-visible span {
  transform: translate(2px, -2px);
  background: rgba(0, 39, 110, 0.52);
}

.about-value-links {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-cool-intro {
  margin-bottom: 34px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.category-cool-breadcrumb {
  margin: 0;
  color: var(--category-color, #0364d9);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.category-cool-breadcrumb-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  list-style: none;
}

.category-cool-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.category-cool-breadcrumb-item + .category-cool-breadcrumb-item::before {
  content: ">";
  color: rgba(11, 52, 64, 0.42);
}

.category-cool-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.category-cool-breadcrumb span {
  color: rgba(11, 52, 64, 0.82);
}

.category-cool-breadcrumb a:hover,
.category-cool-breadcrumb a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.category-cool-description {
  width: min(780px, 100%);
  margin: 0 auto;
  color: #0b3440;
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 700;
  line-height: 1.8;
}

.category-cool-description p {
  margin: 0;
  font-size: 26px;
}

.category-cool-description p + p {
  margin-top: 0.7em;
}

.category-cool-description a {
  color: var(--category-color, #0364d9);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.category-cool-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  margin-top: 80px;
  align-items: start;
}

.category-cool-layout.is-full-width {
  grid-template-columns: minmax(0, 1fr);
}

.category-filter-toggle {
  display: none;
}

.category-filter-panel {
  position: sticky;
  top: 150px;
  min-width: 0;
  border: 2px solid rgba(3, 100, 217, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(3, 41, 70, 0.1);
}

.category-filter-form {
  padding: 22px;
  display: grid;
  gap: 22px;
}

.category-filter-block {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.category-filter-label {
  margin: 0;
  color: #0b3440;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.category-search-input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 2px solid rgba(11, 52, 64, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: #0b3440;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.category-search-input:focus {
  border-color: var(--category-color, #0364d9);
  box-shadow: 0 0 0 4px rgba(3, 100, 217, 0.12);
}

.category-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tag-choice {
  position: relative;
  min-width: 0;
  display: inline-flex;
}

.category-tag-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-tag-text {
  max-width: 100%;
  padding: 7px 12px;
  display: block;
  overflow-wrap: anywhere;
  border: 1px solid rgba(3, 100, 217, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #0b3440;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.category-tag-choice input:focus-visible + .category-tag-text {
  box-shadow: 0 0 0 4px rgba(3, 100, 217, 0.14);
}

.category-tag-choice input:checked + .category-tag-text,
.category-tag-choice:hover .category-tag-text {
  border-color: var(--category-color, #0364d9);
  background: var(--category-color, #0364d9);
  color: #ffffff;
}

.category-cool-level-text {
  min-height: 0;
  min-width: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  transform: scale(1);
  transform-origin: left center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.category-cool-level-text img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.category-cool-level-list {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.category-cool-level-choice {
  display: inline-flex;
}

.category-cool-level-choice input:checked + .category-cool-level-text {
  border-color: transparent;
  background: transparent;
  color: inherit;
  opacity: 1;
  transform: scale(1.1);
}

.category-cool-level-choice:hover .category-cool-level-text {
  border-color: transparent;
  background: transparent;
  color: inherit;
}

.category-cool-level-choice input:focus-visible + .category-cool-level-text {
  box-shadow: none;
  opacity: 1;
}

.category-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filter-reset {
  min-height: 42px;
  padding: 0 18px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.category-filter-reset {
  background: rgba(11, 52, 64, 0.08);
  color: #0b3440;
}

.category-result-panel {
  min-width: 0;
  transition: opacity 0.18s ease;
}

.category-result-panel.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

.category-results-summary {
  margin: 0 0 16px;
  color: rgba(11, 52, 64, 0.72);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.category-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.category-post-grid.is-four-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-post-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 200px minmax(0, 1fr);
  overflow: hidden;
  border: 2px solid var(--category-card-color, #0364d9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: #0b3440;
  text-decoration: none;
  box-shadow: 0 20px 44px rgba(3, 41, 70, 0.14);
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.category-post-card:not(.is-static):hover,
.category-post-card:not(.is-static):focus-visible {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 52px rgba(3, 41, 70, 0.2);
  transform: translateY(-4px);
}

.category-post-card.is-static {
  grid-template-rows: 188px minmax(0, 1fr);
  border: 1px solid rgba(11, 52, 64, 0.14);
  border-top: 4px solid var(--category-card-color, #0364d9);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(3, 41, 70, 0.1);
  cursor: default;
  transition: none;
}

.category-post-card.is-static .category-post-photo {
  width: calc(100% - 20px);
  height: 170px;
  margin: 10px 10px 8px;
  border-radius: 3px;
}

.category-post-card.is-static .category-post-body {
  padding: 12px 16px 20px;
  gap: 8px;
}

.category-post-card.is-static .category-post-meta {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px dashed rgba(11, 52, 64, 0.2);
  color: rgba(11, 52, 64, 0.82);
  line-height: 1.65;
}

.category-post-photo {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--category-card-color, #0364d9), #8ddcf4);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.category-post-photo img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.category-post-card:not(.is-static):hover .category-post-photo img,
.category-post-card:not(.is-static):focus-visible .category-post-photo img {
  transform: scale(1.06);
}

.category-post-card.is-static .category-post-photo img {
  transition: none;
}

.category-post-placeholder {
  padding: 18px;
}

.category-post-body {
  min-width: 0;
  padding: 15px;
  display: grid;
  align-content: start;
  gap: 5px;
}

.category-post-cool-icons {
  min-height: 22px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.category-post-cool-icons img {
  width: 15px;
  height:15px;
  display: block;
  object-fit: contain;
}

.category-post-title {
  display: -webkit-box;
  overflow: hidden;
  color: #0b3440;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-post-meta {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(11, 52, 64, 0.76);
  font-size: 13px;
  font-weight: 500;
  text-align: justify;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-cool-layout.is-full-width .category-post-meta {
  display: block;
  overflow: visible;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

.category-post-tags,
.vertical-card-tags {
  max-width: calc(100% - 24px);
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.category-post-tags {
  --post-card-tag-color: var(--category-card-color, #0364d9);
}

.vertical-card-tags {
  --post-card-tag-color: var(--vertical-card-color, #0364d9);
  z-index: 2;
}

.category-post-tag,
.vertical-card-tag {
  max-width: 100%;
  min-height: 20px;
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--post-card-tag-color, #0364d9);
  box-shadow: 0 4px 12px rgba(3, 41, 70, 0.14);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.category-no-posts {
  margin: 0;
  padding: 40px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: #0b3440;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.post-page {
  padding: 190px 48px 110px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.95), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.64), transparent 20%),
    radial-gradient(circle at 46% 88%, rgba(180, 237, 255, 0.72), transparent 26%),
    linear-gradient(135deg, #f4fdff 0%, #c8f2ff 38%, #8ddcf4 100%);
}

.post-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.68) 18.2%, transparent 18.8% 100%),
    linear-gradient(35deg, transparent 0 34%, rgba(255, 255, 255, 0.48) 34.2%, transparent 34.8% 100%),
    linear-gradient(155deg, transparent 0 62%, rgba(255, 255, 255, 0.42) 62.2%, transparent 62.8% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 18px);
  opacity: 0.78;
}

.post-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 22%, rgba(255, 255, 255, 0.22));
  mix-blend-mode: screen;
}

.post-detail {
  width: 860px;
  max-width: 100%;
  margin: 0 auto;
  padding: 34px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.post-detail:is(.category-cool-move, .category-cool-item) {
  width: 1080px;
  max-width: calc(100% - 80px);
  padding: 40px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.774);
}

/* Keep COOL ITEM content visible even when a browser blocks reveal initialization. */
.post-detail.category-cool-item,
.post-detail.category-cool-item > *,
.post-detail.category-cool-item .post-body-content,
.post-detail.category-cool-item .post-body-content > * {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

.post-detail.category-cool-item {
  display: block !important;
  min-height: 600px;
}

.post-breadcrumb {
  margin: 0 0 22px;
  color: var(--post-color, #0364d9);
}

.post-breadcrumb-list {
  justify-content: flex-start;
}

.post-breadcrumb span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.post-main-image {
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--post-color, #0364d9), #a5f3fc);
  color: #ffffff;
  font-size: 40px;
  font-weight: 900;
  text-transform: lowercase;
  text-shadow: 0 3px 12px rgba(3, 41, 70, 0.34);
}

.post-main-image img {
  width: 100%;
  height: 460px;
  display: block;
  object-fit: cover;
}

.post-main-image.is-slider {
  position: relative;
  display: block;
}

.post-main-image-track {
  height: 460px;
  display: flex;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.post-main-image-slide {
  min-width: 100%;
  height: 100%;
  display: block;
}

.post-main-image-slide img {
  height: 100%;
}

.post-main-image-control {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--post-color, #0364d9);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.post-main-image-control i{
  font-size: 28px;
}

.post-main-image-control:hover {

  transform: translateY(-50%) scale(1.04);
}

.post-main-image-control.prev {
  left: 16px;
}

.post-main-image-control.next {
  right: 16px;
}

.post-main-image-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.post-main-image-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.post-main-image-dots button.is-active {
  background: #ffffff;
  transform: scale(1.22);
}

.post-category,
.post-area {
  width: fit-content;
  margin: 28px 8px 16px 0;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.3;
}

.post-category {
  background: var(--post-color, #0364d9);
  color: #ffffff;
}

.post-area {
  border: 1px solid rgba(3, 100, 217, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--post-color, #0364d9);
}

.post-detail h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 38px);
  line-height: 1.3;
  letter-spacing: 0;
}

.post-lead {
  margin: 0 0 38px;
  color: #0b3440;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.9;
}

.post-tags {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.post-tag {
  color: #0364d9;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.post-body-content {
  margin: 42px 0;
  color: #0b3440;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.post-tags + .post-body-content {
  margin-top: 18px;
}

.post-body-content > *:first-child {
  margin-top: 0;
}

.post-body-content > *:last-child {
  margin-bottom: 0;
  text-align: justify;
}

.post-body-content a {
  color: var(--post-color, #0364d9);
  font-weight: 900;
}

.post-body-content img {
  max-width: 100%;
  height: auto;
}

/* COOL MOVE single: headings inside the article body only. */
.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content h2 {
  margin: 2.4em 0 1em;
  padding: 16px 20px 16px 24px;
  position: relative;
  border: 1px solid rgba(3, 100, 217, 0.14);
  border-radius: 10px;
  background: linear-gradient(105deg, rgba(3, 100, 217, 0.12), rgba(255, 255, 255, 0.62));
  color: #0755b5;
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content h2::before {
  content: "";
  width: 5px;
  position: absolute;
  inset: 10px auto 10px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--post-color, #0364d9), #38bdf8);
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content h3 {
  margin: 2em 0 0.85em;
  padding: 0 0 10px 18px;
  position: relative;
  border-bottom: 2px solid rgba(3, 100, 217, 0.2);
  color: #0b477e;
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 900;
  line-height: 1.5;
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content h3::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0.7em;
  left: 0;
  border-radius: 50%;
  background: var(--post-color, #0364d9);
  box-shadow: 0 0 0 4px rgba(3, 100, 217, 0.12);
  transform: translateY(-50%);
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content h4 {
  margin: 1.7em 0 0.7em;
  padding-left: 12px;
  border-left: 3px solid var(--post-color, #0364d9);
  color: #123f5f;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.55;
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content .wp-block-columns {
  margin: 32px 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content .wp-block-columns > .wp-block-column {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(3, 100, 217, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 28px rgba(3, 65, 120, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content .wp-block-column > *:first-child {
  margin-top: 0;
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content .wp-block-column > *:last-child {
  margin-bottom: 0;
}

.post-detail:is(.category-cool-move, .category-cool-item) .post-body-content .wp-block-column img {
  display: block;
  border-radius: 9px;
}

@media (max-width: 781px) {
  .post-detail:is(.category-cool-move, .category-cool-item) .post-body-content .wp-block-columns {
    margin: 24px 0;
    flex-direction: column;
    gap: 14px;
  }

  .post-detail:is(.category-cool-move, .category-cool-item) .post-body-content .wp-block-columns > .wp-block-column {
    flex-basis: 100% !important;
    padding: 18px;
  }
}

.post-info {
  padding-top: 28px;
  border-top: 2px solid rgba(3, 100, 217, 0.18);
}

.post-info h2 {
  margin: 0 0 18px;
  color: #0364d9;
  font-size: 28px;
  letter-spacing: 0;
}

.post-info dl {
  margin: 0;
  display: grid;
  border-top: 1px solid rgba(3, 100, 217, 0.18);
}

.post-info dl div {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  border-bottom: 1px solid rgba(3, 100, 217, 0.18);
}

.post-info dt,
.post-info dd {
  margin: 0;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.7;
}

.post-info dt {
  display: flex;
  align-items: center;
  background: rgba(3, 100, 217, 0.08);
  color: #0364d9;
  font-weight: 900;
}

.post-info dd {
  color: #0b3440;
  font-weight: 600;
}

.post-info dd a {
  color: #0364d9;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.post-map {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(3, 100, 217, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.post-map iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.post-map-link {
  padding: 14px 18px;
  display: inline-flex;
  color: #0364d9;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.post-map-link:hover {
  text-decoration: underline;
}

.category-cool-zone .navigation.pagination {
  margin-top: 46px;
  position: relative;
  z-index: 1;
}

.category-cool-zone .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.category-cool-zone .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #0b3440;
  font-weight: 900;
  text-decoration: none;
}

.category-cool-zone .page-numbers.current,
.category-cool-zone .page-numbers:hover,
.category-cool-zone .page-numbers:focus-visible {
  background: var(--category-color, #0364d9);
  color: #ffffff;
}

@keyframes feature-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.summer-info {
  width:calc(100% - 96px);
  padding: 28px 48px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 560px) 220px;
  gap: 0;
  justify-content: center;
}

.weather-widget {
  position: relative;
  z-index: 1;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #050505;
  border-radius: 12px 0 0 12px;
  box-shadow: none;
}

.weather-heading {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.weather-divider {
  width: 100%;
  height: 1px;
  margin: 22px 0;
  background: #111111;
}

.weather-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.weather-forecast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.weather-place {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 38px;
  align-items: end;
  column-gap: 10px;
}

.weather-place + .weather-place {
  padding-left: 22px;
  border-left: 1px solid rgba(0, 0, 0, 0.72);
}

.weather-label {
  grid-column: 1 / -1;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.weather-temp {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.weather-place:first-child .weather-label {
  font-size: 18px;
}

.weather-place:first-child .weather-temp {
  font-size: 44px;
}

.weather-place:last-child {
  grid-template-columns: auto 32px;
  column-gap: 8px;
  align-items: end;
}

.weather-place:last-child .weather-label {
  font-size: 14px;
}

.weather-place:last-child .weather-temp {
  font-size: 24px;
}

.weather-temp sup {
  font-size: 12px;
  vertical-align: super;
}

.weather-temp small {
  margin-left: 4px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  vertical-align: super;
}

.weather-icon {
  width: 36px;
  height: 26px;
  position: relative;
  display: block;
}

.weather-place:last-child .weather-icon {
  width: 32px;
  height: 24px;
}

.weather-icon.cloud::before,
.weather-icon.sun-cloud::before,
.weather-icon.rain::before {
  content: "";
  width: 31px;
  height: 17px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 4px solid #111111;
  border-radius: 999px;
  background: #d9f7ff;
}

.weather-icon.cloud::after,
.weather-icon.sun-cloud::after,
.weather-icon.rain::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 4px;
  bottom: 8px;
  border: 4px solid #111111;
  border-radius: 50%;
  background: #d9f7ff;
}

.weather-icon.sun-cloud {
  filter: drop-shadow(-14px -8px 0 #ffd166);
}

.weather-icon.rain {
  filter: drop-shadow(0 12px 0 #38bdf8);
}

.weather-updated {
  min-width: 56px;
  color: rgba(5, 5, 5, 0.68);
  font-size: 10px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
}

.summer-action {
  min-height: 180px;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: #0364d9;
  color: #ffffff;
  border: 1px dashed rgba(255, 255, 255, 0.75);
  border-radius: 0 12px 12px 0;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 12px 26px rgba(3, 100, 217, 0.18);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.summer-action .summer-action-icon {
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.summer-action:hover,
.summer-action:focus-visible {
  background-color: #008fbd;
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(0, 143, 189, 0.28);
}

.summer-action:hover .summer-action-icon,
.summer-action:focus-visible .summer-action-icon {
  background: #ffffff;
  color: #0364d9;
  transform: scale(1.08) rotate(-6deg);
}

.summer-action:focus-visible {
  outline: 3px solid rgba(255, 204, 77, 0.76);
  outline-offset: 4px;
}

.summer-guide-page {
  min-height: 70vh;
  background: #f4fdff;
  color: #0b3440;
  overflow: hidden;
}

.summer-guide-banner {
  height: 450px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 100, 217, 0.04), rgba(141, 220, 244, 0.32)),
    url("../img/wave.png"),
    linear-gradient(135deg, #f6fdff 0%, #c8f2ff 100%);
  background-position: center bottom, center bottom, center;
  background-repeat: no-repeat, repeat-x, no-repeat;
  background-size: cover, auto 125px, cover;
}

.summer-guide-banner-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.summer-guide-banner.has-slider {
  background: #c8f2ff;
}

.summer-guide-banner .summer-guide-banner-item {
  height: 100%;
}

.summer-guide-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.68), transparent 20%);
}

.summer-guide-banner-inner.category-hero-inner {
  align-content: center;
  gap: 14px;
  text-align: center;
}

.summer-guide-cool.cool-zone {
  padding: 70px 0 0px;
}

.summer-guide-cool.cool-zone::before {
  content: none;
}

.summer-guide-waves.category-hero-waves {
  top: -179px;
  bottom: auto;
}

.summer-guide-inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.summer-guide-lead {
  display: grid;
  justify-items: center;
  text-align: center;
}

.summer-guide-lead h2 {
  margin-top: 50px;
  color: #0364d9;
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
}

.summer-guide-lead p {
  color: #0b3440;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.9;
}

.summer-guide-weather.weather-widget {
  width:680px;
  max-width: calc(95% - 40px);
  margin: -180px auto 0;
  border-radius: 12px;
}

.summer-guide-weather .weather-content {
  grid-template-columns: 1fr;
}

.summer-guide-weather .weather-updated {
  text-align: right;
}

.summer-guide-info {
  margin-top: 72px;
}

.summer-guide-intro {
  width: min(780px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  text-align: center;
}

.summer-guide-intro h2 {
  margin: 0;
  color: #0364d9;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.summer-guide-intro p {
  margin: 0;
  color: #164a57;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.summer-guide-tabs {
  margin-top: 34px;
}

.summer-guide-tab-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 50px;
}

.summer-guide-tab {
  min-height: 128px;
  padding: 24px 18px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #0364d9;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.summer-guide-tab:hover,
.summer-guide-tab:focus-visible,
.summer-guide-tab.is-active {
  background: #ffffff;
  color: #0364d9;
  box-shadow: 0 14px 30px rgba(4, 97, 123, 0.14);
  transform: translateY(-3px);
}

.summer-guide-tab-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0364d9;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.summer-guide-tab-icon i {
  font-size: 18px;
  line-height: 1;
}

.summer-guide-tab-panel {
  width: 100vw;
  max-width: none;
  margin: 0px calc(50% - 50vw);
  padding: 120px 30px;
  border-radius: 0;
  position: relative;
  box-sizing: border-box;
  background: var(--summer-content-bg, #f4fdff);
  color: #0b3440;
  scroll-margin-top: 120px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.summer-guide-tab-panel.cool-zone::before,
.summer-guide-tab-panel.cool-zone::after {
  content: none;
}

.summer-guide-content-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.summer-guide-content-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.summer-guide-content-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}

.summer-guide-content-copy {
  width: min(820px, 100%);
  margin: 26px auto 0;
  display: grid;
  gap: 18px;
  text-align: center;
}

.summer-guide-content-subtitle {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.summer-guide-content-article {
  color: #f5f5f5;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.summer-guide-content-article p {
  margin: 0;
  font-size: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.summer-guide-content-article p + p {
  margin-top: 1em;
}

.summer-guide-point-grid {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 22px;
}

.summer-guide-point-card {
  flex: 0 1 calc((100% - 85px) / 4);
  min-width: 0;
  padding: 0px 0px 22px;
  position: relative;
  display: grid;
  gap: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(5, 90, 120, 0.12);
  border: 2px solid var(--summer-content-border, #0364d9);
}

.summer-guide-point-number {
  width: 38px;
  height: 38px;
  position: absolute;
  left: 50%;
  top: -19px;
  display: grid;
  place-items: center;
  border: 2px solid var(--summer-content-border, #0364d9);
  border-radius: 50%;
  background: #ffffff;
  color: var(--summer-content-border, #0364d9);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.summer-guide-point-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: rgba(3, 100, 217, 0.08);
}

.summer-guide-point-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.summer-guide-point-photo.is-empty {
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.88), transparent 22%),
    linear-gradient(135deg, #eaf7ff, #c8f2ff);
}

.summer-guide-point-title {
  margin: 0;
  padding: 0 18px;
  color: #0b3440;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.summer-guide-point-description {
  padding: 0 18px;
  color: #365663;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.summer-guide-point-description p {
  margin: 0;
  text-align: center;
  line-height:1.3;
}

.summer-guide-point-description p + p {
  margin-top: 0.8em;
}

.section-image-title {
  width: min(1080px, calc(100% - 40px));
  margin: 92px auto 28px;
  position: relative;
  z-index: 1;
  display: flex;
flex-direction: column;
align-items: center;
  justify-content: center;
}

.section-image-title h3{
  color: #0364d9;
  font-weight: 900;
  margin-top: -15px;
}

.section-image-title img {
  width: min(500px, 90vw);
  height: auto;
  display: block;
}

.section-image-title-event {
  margin-top: 44px;
}

.about-inner {
  max-width: 1080px;
  margin: 0 auto 100px;
  padding: 0 48px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 44px;
  align-items: center;
}

.about-copy {
  padding: 0px;
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #0b3440;
}

.about-logo {
  margin: 0 0 18px;
}

.about-logo img {
  width: 450px;
  max-width: 100%;
  height: auto;
  display: block;
}

.about-copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.about-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.about-lead span {
  display: inline-block;
  padding: 2px 10px 4px;
  background: rgba(255, 255, 255, 0.92);
  color: #071b24;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.about-lead span:nth-child(5) {
  margin-top: 12px;
}

.about-cta {
  min-height: 46px;
  margin-top: 24px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0364d9;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(3, 100, 217, 0.22);
}

.about-cta::after {
  content: ">";
  margin-left: 14px;
  font-size: 18px;
  line-height: 1;
}

.about-image {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  text-transform: lowercase;
}

.about-image img {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

.event-pickup {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 26px;
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.event-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(3, 41, 70, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: #1f2937;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.event-card-small{
  min-height: 300px;
}


.event-card:hover,
.event-card:focus-visible {
  background: #ffffff;
  transform: translateY(-5px);
}

.event-card-head {
  height: 44px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(3, 41, 70, 0.12);
  background: #ffffff;
  color: #0364d9;
  font-size: 20px;
  font-weight: 900;
  text-shadow: none;
}

.event-card-head time {
  display: inline-grid;
  grid-template-columns: 16px auto auto;
  gap: 6px;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
}

.event-card-head time::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 0 4px 0 rgba(3, 100, 217, 0.18);
}

.event-card-head time span + span::before {
  content: "→";
  margin-right: 6px;
}

.event-card-image {
  min-height: 150px;
  margin: 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(3, 100, 217, 0.62), rgba(141, 220, 244, 0.68)),
    rgba(255, 255, 255, 0.72);
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  text-transform: lowercase;
}

.event-card-small .event-card-image{
margin:10px 20px;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.event-card:hover .event-card-image img,
.event-card:focus-visible .event-card-image img {
  transform: scale(1.05);
}

.event-card h3 {
  color: #1f2937;
  font-size: 24px;
  margin:0 20px;
  line-height: 1.35;
  letter-spacing: 0;
      display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.event-card-small h3 {
  min-width: 0;
  display: block;
  overflow: hidden;
  font-size: 20px !important;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.event-card-copy {
  margin:10px 20px 10px 20px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.event-card-large .event-card-tags {
  margin: 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.event-count-1 .event-card-grid {
  display: none;
}

.event-count-2 .event-card-grid {
  grid-template-columns: 1fr;
}

.event-count-2 .event-card-small {
  min-height: 100%;
}

.event-count-3 .event-card-grid {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.event-count-4 .event-card-grid,
.event-count-5 .event-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.event-count-4 .event-card-grid .event-card:first-child {
  grid-column: 1 / -1;
}


.site-footer {
  padding: 84px 48px 250px;
  position: relative;
  background: #0364d9;
  color: #ffffff;
}

.footer-waves.category-hero-waves {
  height: 280px;
  z-index: 1;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: 70px;
  align-items: start;
}

.footer-logo {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 320px;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 22px;
}

.footer-logo img {
  width: min(280px, 100%);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: #ffffff;
  color: #0364d9;
  transform: translateY(-3px);
}

.footer-social i {
  display: block;
}

.footer-content {
  display: contents;
}

.footer-summer-info {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.footer-summer-info .weather-widget {
  min-height: 160px;
  padding: 24px 28px;
  border-radius: 12px 0 0 12px;
}

.footer-summer-info .summer-action {
  min-height: 160px;
  border-radius: 0 12px 12px 0;
  font-size: 20px;
}

.footer-link-block {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 24px;
}

.footer-link-block p {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  font-size: 17px;
  font-weight: 900;
}

.footer-category-links a {
  position: relative;
  color: #ffffff;
  padding-left: 30px;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-category-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);

  background-image: url("../img/cool.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.footer-category-links a::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 1.35em;
  right: 0;
  bottom: -5px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.footer-category-links a:hover,
.footer-category-links a:focus-visible {
  color: #d9f7ff;
}



.footer-meta {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  gap: 30px;
}

.footer-office-info {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  text-align: center;
}

.footer-office-info strong {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 900;
}

.footer-office-info span {
  display: block;
}

.footer-bottom {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.site-main {
  min-height: 70vh;
}

.vertical-scroll {
  height: 400vh;
  position: relative;
  background: #dff7fb;
}

.vertical-stage {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: #102a34;
}

.vertical-track {
  height: 100vh;
  position: relative;
  z-index: 1;
}

.vertical-panel {
  height: 100vh;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  transform: translateY(100%);
  will-change: transform;
  backface-visibility: hidden;
  background: #102a34;
}

.vertical-panel:first-child {
  transform: translateY(0);
}

.vertical-panel-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(10px);
  transform: scale(1.04);
  opacity: 1;
}

.vertical-panel-bg.has-background-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.panel-spot {
  background: #0b8fd3;
}

.panel-eat {
  background: #087eb8;
}

.panel-shop {
  background: #0f6fa8;
}

.panel-night {
  background: #0b4f86;
}



.vertical-panel-content {
  width: min(1200px, calc(100% - 160px));
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 50px;
}

.vertical-panel-top {
  width: min(850px, 100vw);
  margin: 0 auto 28px;
}

.vertical-panel-top img {
  width: 100%;
  display: block;
  object-fit: contain;
}

 .vertical-panel-top.has-mobile-image .vertical-panel-top-mobile {
  display: none;
}

.vertical-panel p {
  font-weight: 800;
  font-size: 26px;
}

.vertical-card-slider {
  width: calc(100vw - ((100vw - min(1080px, calc(100vw - 160px))) / 2));
  max-width: none;
  margin: 54px 0 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 46px) 1fr;
  gap: 12px;
}

.vertical-cards {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 10px;
  user-select: none;
  touch-action: pan-y;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.vertical-cards.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.vertical-cards::-webkit-scrollbar {
  display: none;
}

.vertical-card {
  flex: 0 0 clamp(320px, 24vw, 420px);
  aspect-ratio: 4 / 2.5;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 3px solid var(--vertical-card-color, #0364d9);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 51, 68, 0.42);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  scroll-snap-align: start;
}

.vertical-card-image {
  position: absolute;
  inset: 0;
  z-index: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(8, 51, 68, 0.42);
  color: #ffffff;
  font-size: 20px;
}

.vertical-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.42s ease;
  transform: scale(1);
}

.vertical-cards.is-dragging .vertical-card-image img {
  transition: none;
}

.vertical-card:hover .vertical-card-image img,
.vertical-card:focus-visible .vertical-card-image img {
  transform: scale(1.08);
}

.vertical-card-body {
  width: 100%;
  min-height: 48%;
  margin-top: auto;
  padding: 56px 18px 16px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  min-width: 0;
  display: grid;
  align-content: end;
  gap: 6px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.78) 56%, rgba(0, 0, 0, 0.94));
  text-align: left;
}

.vertical-card-level {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
}

.vertical-card-level img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
}

.vertical-card-title {
  display: -webkit-box;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: normal;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.52);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vertical-card-description {
  display: -webkit-box;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.58);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vertical-card-control {
     width: 40px;
    height: 40px;
    position: static;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #075985;
    font-size: 24px;
    font-weight: 900;
    line-height: 20px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(3, 41, 70, 0.18);
    transform: none;
}
.vertical-card-control i{
  font-size: 24px;
}

.vertical-card-control:hover{
  transform: scale(1.05);
}

.vertical-card-control.prev {
  grid-column: 1;
}

.vertical-card-control.next {
  grid-column: 2;
}

.course-section {
  padding: 72px clamp(20px, 4vw, 48px) 86px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 8;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.95), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.64), transparent 20%),
    radial-gradient(circle at 46% 88%, rgba(180, 237, 255, 0.72), transparent 26%),
    linear-gradient(135deg, #f4fdff 0%, #c8f2ff 38%, #8ddcf4 100%);
  color: #0b3440;
  text-align: left;
}

.course-section::before,
.course-section::after {
  border-radius: inherit;
}

.course-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.course-heading {
  margin: 0 0 30px;
  color: #0364d9;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(255, 255, 255, 0.8);
}

.course-tabs {
  display: grid;
  grid-template-columns: repeat(var(--course-tab-count, 3), minmax(0, 1fr));
  align-items: end;
  border-bottom: 3px solid #0364d9;
}

.course-tab {
  min-height: 58px;
  margin: 0 4px -3px;
  border: 3px solid #0364d9;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: rgba(255, 255, 255, 0.86);
  color: #0364d9;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.course-tab.is-active {
  background: #0364d9;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(3, 41, 70, 0.28);
}

.course-panels {
  padding-top: 28px;
}

.course-panel[hidden] {
  display: none;
}

.course-card-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.course-card-track::-webkit-scrollbar {
  display: none;
}

.course-card {
  flex: 0 0 30%;
  min-width: 260px;
  padding: 12px 12px 18px;
  position: relative;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #0b3440;
  text-decoration: none;
  scroll-snap-align: start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.course-image {
  height: 160px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #60a5fa, #a5f3fc);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(3, 41, 70, 0.35);
  text-transform: lowercase;
}

.course-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.course-card h3 {
  margin: 0;
  padding-bottom: 0;

  color: #0364d9;
  font-size: 18px;
  line-height: 1.35;
  max-height: 2.7em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.course-card p {
  margin: 0;
  color: #0b3440;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  max-height: 3.4em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.course-card-category {
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid #0364d9;
  border-radius: 4px;
  color: #0364d9;
  font-size: 12px;
  font-weight: 900;
}

.course-empty {
  margin: 28px 0 0;
  color: #0b3440;
  font-weight: 700;
  text-align: center;
}

.course-more-wrap {
  margin: 22px 0 42px;
  display: flex;
  justify-content: center;
}

.course-more-button {
  min-height: 50px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0364d9;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(3, 100, 217, 0.24);
}

.course-more-button::after {
  content: ">";
  margin-left: 16px;
  font-size: 19px;
  line-height: 1;
}

.sns-box {
  max-width: 1080px;
  margin: 54px auto 0;
  padding: 34px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(3, 41, 70, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sns-circle {
  width: 230px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  justify-self: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0364d9, #38bdf8);
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 34px rgba(3, 100, 217, 0.28);
}

.sns-circle span,
.sns-circle small {
  font-size: 13px;
}

.sns-circle strong {
  font-size: 20px;
  line-height: 1.35;
}

.sns-content {
  min-width: 0;
}

.sns-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #0364d9;
}

.sns-icon {
  width: 54px;
  height: 54px;
  position: relative;
  flex: 0 0 auto;
  border: 4px solid #0364d9;
  border-radius: 16px;
}

.sns-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 14px;
  top: 14px;
  border: 4px solid #0364d9;
  border-radius: 50%;
}

.sns-icon::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  right: 10px;
  top: 9px;
  border-radius: 50%;
  background: #0364d9;
}

.sns-heading p {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
}

.sns-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
}

.sns-message {
  margin: 16px 0 24px;
  color: #0b3440;
  font-size: 20px;
  font-weight: 900;
}

.sns-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sns-photo-grid span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #60a5fa, #a5f3fc);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(3, 41, 70, 0.3);
  text-transform: lowercase;
}

.sns-box .sns-photo-control {
  display: none;
}

.sns-box .sns-photo-viewport,
.sns-box .sns-photo-track {
  display: contents;
}

.sns-box .sns-photo-grid + .sns-photo-grid {
  display: none;
}

.sns-gallery-slider {
  max-width: 860px;
  margin:100px auto 0;
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 18px;
  align-items: center;
}

.sns-gallery-slider.is-single-page {
  grid-template-columns: minmax(0, 1fr);
}

.sns-gallery-viewport {
  overflow: hidden;
}

.sns-gallery-track {
  display: flex;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.sns-gallery-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sns-gallery-link {
  min-height: 110px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(3, 100, 217, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.72), rgba(165, 243, 252, 0.82)),
    rgba(255, 255, 255, 0.8);
  color: inherit;
  text-decoration: none;
}

.sns-gallery-link img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  display: block;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.sns-gallery-link:hover img,
.sns-gallery-link:focus-visible img {
  transform: scale(1.06);
}

.sns-gallery-control {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #0364d9;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(3, 41, 70, 0.16);
}

.sns-gallery-control i{
font-size: 34px;
}

.sns-gallery-control:hover{
  transform: scale(1.05);
}

.template-links {
  max-width: 1080px;
  margin: 42px auto 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.template-links a {
  min-height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0364d9;
  border-radius: 999px;
  background: #0364d9;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.vertical-tabs {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 54px;
  z-index: 5;
  pointer-events: none;
}

.vertical-tab {
  width: 54px;
  height: 25vh;
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  writing-mode: vertical-rl;
  color: #061f29;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: translateY(100vh);
  will-change: transform;
}

.vertical-tab:nth-child(1) {
  background: #38bdf8;
}

.vertical-tab:nth-child(2) {
  background: #0ea5e9;
  color: #ffffff;
}

.vertical-tab:nth-child(3) {
  background: #0284c7;
  color: #ffffff;
}

.vertical-tab:nth-child(4) {
  background: #075985;
  color: #ffffff;
}

.vertical-tab.is-active {
  filter: brightness(1.08);
}

.vertical-progress {
  width: 11px;
  position: absolute;
  left: 54px;
  top: 0;
  bottom: 0;
  z-index: 4;
  background: rgba(255, 255, 255, 0.2);
}

.vertical-progress-bar {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.38);
  transition: height 0.12s linear;
}

.vertical-progress-label {
  position: absolute;
  left: 50%;
  bottom: 28px;
  color: #061f29;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
  transform: translateX(-50%);
}

@media (max-width: 1080px) {
  .footer-summer-info {
    grid-template-columns: 1fr;
  }

  .footer-summer-info .weather-widget {
    border-radius: 12px 12px 0 0;
  }

  .footer-summer-info .summer-action {
    min-height: 120px;
    border-left: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.75);
    border-radius: 0 0 12px 12px;
  }

  .footer-summer-info .weather-forecast {
    gap: 14px;
  }

  .footer-summer-info .weather-place + .weather-place {
    padding-left: 14px;
  }
    .category-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

  .category-post-grid.is-four-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 860px) {
  .design-drawer {
    width: min(420px, 85vw);
    padding: 50px 10px;
  }
  .drawer-summer-action{
    min-height: 30px;
  }
  .drawer-link-item {
    min-height: 40px;
  }
  .menu-bar {
    margin-right: -20px;
  }
  body {
    overflow: auto;
  }

  .vertical-scroll {
    height: auto;
  }

  .vertical-stage {
    height: auto;
    position: relative;
    overflow: visible;
  }

  .vertical-track {
    height: auto;
    position: relative;
    transform: none !important;
  }

  .vertical-panel {
    min-height: 100vh;
    height: auto;
    position: relative;
    inset: auto;
    padding: 80px 16px 80px 40px;
    overflow-x: hidden;
    transform: none !important;
  }

  .vertical-panel-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .vertical-panel-top {
    width: min(100%, 540px);
    margin-bottom: 22px;
  }

  .vertical-panel-top.has-mobile-image .vertical-panel-top-desktop {
    display: none;
  }

  .vertical-panel-top.has-mobile-image .vertical-panel-top-mobile {
    display: block;
  }

  .vertical-panel-top img {
   width: 100%;
  }

  .vertical-panel p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .vertical-card-slider {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, 34px) 1fr;
    gap: 10px;
  }

  .vertical-cards {
    width: 100%;
    max-width: 100%;
    gap: 14px;
    padding: 0 0 12px;
  }

  .vertical-card {
    min-width: 230px;
    flex: 0 0 min(84%, 320px);
    aspect-ratio: 4 / 3;
  }

  .vertical-card-image {
    height: auto;
  }

  .vertical-card-control {
    width: 34px;
    height: 34px;
    font-size: 25px;
  }

  .course-section {
    padding: 46px 20px 58px;
  }

  .course-heading {
    margin-bottom: 24px;
    font-size: clamp(42px, 17vw, 70px);
  }

  .course-tabs {
    display: flex;
    overflow-x: auto;
    border-bottom-width: 2px;
    scrollbar-width: none;
  }

  .course-tabs::-webkit-scrollbar {
    display: none;
  }

  .course-tab {
    min-width: 178px;
    min-height: 54px;
    margin: 0 4px -2px;
    border-width: 2px;
    font-size: 15px;
  }

  .course-panels {
    padding-top: 24px;
  }

  .course-card {
    flex-basis: 82%;
    min-width: 260px;
  }

  .course-image {
    height: 150px;
  }

  .course-more-wrap {
    margin: 22px 0 42px;
  }

  .course-more-button {
    width: min(100%, 280px);
    min-height: 46px;
  }

  .sns-box {
    margin-top: 42px;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 18px;
  }

  .sns-circle {
    width: 156px;
    gap: 8px;
  }

  .sns-circle span,
  .sns-circle small {
    font-size: 11px;
  }

  .sns-circle strong {
    font-size: 15px;
  }

  .sns-heading {
    justify-content: center;
    text-align: left;
  }

  .sns-heading h2 {
    font-size: 30px;
  }

  .sns-message {
    text-align: center;
    font-size: 18px;
  }

  .sns-photo-grid {
    gap: 7px;
  }

  .sns-photo-grid span {
    border-radius: 6px;
    font-size: 10px;
  }

  .sns-gallery-slider {
    margin-top: 30px;
    grid-template-columns: minmax(0, 1fr) 40px 40px minmax(0, 1fr);
    justify-content: center;
    gap: 10px;
  }

  .sns-gallery-viewport {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
  }

  .sns-gallery-control.prev {
    grid-column: 2;
    grid-row: 2;
  }

  .sns-gallery-control.next {
    grid-column: 3;
    grid-row: 2;
  }

  .sns-gallery-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .sns-gallery-link,
  .sns-gallery-link img {
    min-height: 92px;
  }

  .sns-gallery-link {
    border-radius: 8px;
  }

  .sns-gallery-control {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .template-links {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .template-links a {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  .vertical-tabs {
    width: 28px;
    height: 100vh;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 6;
    display: none;
    float: left;
    margin-bottom: -100vh;
  }

  .vertical-scroll.is-tab-visible .vertical-tabs {
    display: block;
  }

  .vertical-tab {
    width: 28px;
    min-width: 0;
    height: 25vh;
    position: absolute;
    left: 0;
    top: 0;
    writing-mode: vertical-rl;
    border-right: 1px solid rgba(255, 255, 255, 0.72);
    font-size: 12px;
    transform: translateY(100vh);
  }

  .vertical-progress {
    display: none;
  }


  .site-logo img {
    height: 80px;
  }

  .slider {
    height: 700px;
  }

  .slider-waves.category-hero-waves {
    height: 220px;
  }



  .news-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .news-item {
    grid-template-columns: 1fr 20px;
    gap: 12px;
  }

  .news-item time {
    grid-column: 1 / -1;
  }

  .category-nav {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .category-nav.is-fixed {
   display: none;
  }

  .category-item {
    flex: 0 0 10%;
    min-height: 92px;
    font-size: 11px;
    border-bottom: 1px solid #e5e7eb;
    scroll-snap-align: start;
  }

  .category-hero {
    height: 350px;
  }

  .category-hero-inner {
    width: calc(100% - 40px);
  }

  .category-hero-waves {
    height: 72px;
  }

  .category-hero-logo {
    width: min(100%, 340px);
  }

  .category-hero-logo.has-mobile-image .category-hero-top-desktop {
    display: none;
  }

  .category-hero-logo.has-mobile-image .category-hero-top-mobile {
    display: block;
  }

  .category-hero-logo img {
    width: 90%;
    margin-bottom: -50px;
  }

  .category-cool-zone {
    padding: 48px 0 90px;
  }

  .category-cool-inner {
    width: calc(100% - 32px);
  }

  .category-cool-zone .about-inner.category-about-inner {
    width: calc(100% - 32px);
  }

  .category-about-page {
    gap: 72px;
  }

  .category-about-kicker {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .category-about-intro h2,
  .category-about-statement h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .category-about-lead,
  .category-about-statement > p:last-child {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.85;
  }

  .category-about-visual-placeholder {
    min-height: 56vw;
    border-radius: 12px;
  }

  .category-about-section-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-about-section-split.is-reverse .category-about-section-copy,
  .category-about-section-split.is-reverse .category-about-image-placeholder {
    order: initial;
  }

  .category-about-section-copy h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .category-about-section-copy p:not(.category-about-section-number) {
    font-size: 15px;
    line-height: 1.85;
  }

  .category-about-image-placeholder {
    min-height: 72vw;
    border-radius: 12px;
  }

  .category-about-pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-about-pillar {
    min-height: 240px;
    padding: 28px 24px;
  }

  .category-main.is-about-page .category-cool-zone {
    padding: 70px 0 90px;
  }

  .category-about-page {
    gap: 90px;
  }

  .about-focus {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-focus h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .about-focus-text {
    margin-top: 44px;
    gap: 22px;
  }

  .about-focus-text p {
    font-size: 14px;
  }

  .about-house-marks {
    min-height: 360px;
  }

  .about-problems h2 {
    margin-bottom: 34px;
    font-size: 30px;
  }

  .about-problem-card {
    min-height: auto;
    padding: 70px 22px 24px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
    border-radius: 24px;
  }

  .about-problem-label {
    top: 24px;
    left: 22px;
    writing-mode: horizontal-tb;
  }

  .about-problem-copy h3 {
    font-size: 24px;
  }

  .about-problem-copy p {
    font-size: 14px;
  }

  .about-problem-media {
    min-height: 220px;
    border-radius: 16px;
  }

  .about-problem-note {
    grid-column: auto;
  }

  .about-transition {
    min-height: 820px;
  }

  .about-transition > p {
    font-size: 15px;
  }

  .about-transition h2 {
    margin-top: 34px;
    font-size: 28px;
    line-height: 1.55;
  }

  .about-transition-shapes span {
    width: 92px;
    height: 70px;
    top: 270px;
    border-radius: 22px;
  }

  .about-transition-shapes span:first-child { left: calc(50% - 50vw - 8px); }
  .about-transition-shapes span:nth-child(2) {
    width: 78px;
    height: 58px;
    right: calc(50% - 50vw - 6px);
    top: 345px;
  }

  .about-transition-shapes span:nth-child(3) {
    width: 60px;
    height: 44px;
    left: -14px;
    top: 590px;
    border-radius: 16px;
  }

  .about-transition-shapes span:nth-child(4) {
    width: 72px;
    height: 50px;
    right: -18px;
    top: 675px;
    border-radius: 17px;
  }

  .about-transition-images {
    width: 100%;
    height: 390px;
    margin-top: 105px;
  }

  .about-transition-images a {
    border-radius: 18px;
  }

  .about-transition-images a:nth-child(1) { width: 62%; height: 190px; left: 19%; top: 0; }
  .about-transition-images a:nth-child(2) { width: 34%; height: 105px; right: 0; top: 150px; }
  .about-transition-images a:nth-child(3) { width: 34%; height: 105px; left: 0; top: 218px; }
  .about-transition-images a:nth-child(4) { width: 42%; height: 125px; right: 7%; top: 285px; }

  .about-blue-area {
    margin-bottom: -90px;
    padding: 90px 16px 110px;
    gap: 90px;
    border-radius: 54px 54px 0 0;
  }

  .about-platform {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-bottom: 80px;
  }

  .about-platform-copy h2 {
    margin-bottom: 34px;
    font-size: 38px;
  }

  .about-platform-copy > p:not(.about-en-label) {
    font-size: 14px;
  }

  .about-platform-diagram {
    min-height: 330px;
    width: 350px;
  }

  .about-platform-diagram span { width: 135px; height: 135px; font-size: 16px; }
  .about-platform-logo {
    width: 180px;
    height: 180px;
    padding: 18px;
  }

  .about-values h2,
  .about-activities > h2 {
    margin-bottom: 34px;
    font-size: 32px;
  }

  .about-value-grid {
    width: min(100%, 520px);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .about-value-card {
    width: min(100%, calc(100vw - 40px));
    max-width: none;
    margin-inline: auto;
    min-height: 0;
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-radius: 24px;
    box-sizing: border-box;
  }

  .about-value-card:nth-child(2) {
    grid-template-columns: none;
  }

  .about-value-card:nth-child(even) .about-value-copy,
  .about-value-card:nth-child(even) .about-value-image {
    order: unset;
  }

  .about-value-copy {
    width: 100%;
    padding: 0;
    order: 1 !important;
  }

  .about-value-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    order: 2 !important;
    border-radius: 18px;
  }

  .about-value-card h3,
  .about-service-copy h3 {
    margin: 12px 0 16px;
    font-size: 25px;
  }

  .about-value-card p {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-value-links {
    margin-top: 24px;
    gap: 10px;
  }

  .about-value-links .about-value-link {
    min-height: 52px;
    padding: 0 14px 0 18px;
    gap: 12px;
    font-size: 13px;
  }

  .about-service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-service-card {
    min-height: 0;
    border-radius: 24px;
  }

  .about-service-copy {
    padding: 26px 24px;
  }


  .about-activity-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-activity-image {
    min-height: 100vw;
    border-radius: 24px;
  }

  .about-activity-copy h3 {
    font-size: 34px;
  }

  .about-activity-copy > p:not(:first-child) {
    font-size: 14px;
  }

  .about-activity-copy a {
    margin: 42px 0 0;
  }

  .category-cool-intro {
    margin-bottom: 24px;
  }

  .category-cool-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .category-cool-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-filter-toggle {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: var(--category-color, #0364d9);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(3, 41, 70, 0.16);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  }
  .category-filter-toggle span{
display: flex;
    align-items: center;
    justify-content: center;
  }

  .category-filter-toggle:hover,
  .category-filter-toggle:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(3, 41, 70, 0.2);
  }

  .category-filter-toggle i {
    font-size: 24px;
    line-height: 1;
  }

  .category-filter-panel {
    position: static;
    margin-top: -16px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    border-width: 0;
    box-shadow: none;
    pointer-events: none;
    transition:
      max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease,
      transform 0.2s ease,
      margin-top 0.2s ease;
  }

  .category-filter-panel.is-open {
    margin-top: 0;
    max-height: min(78vh, 760px);
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
    border-width: 2px;
    box-shadow: 0 18px 42px rgba(3, 41, 70, 0.1);
    pointer-events: auto;
  }

  .category-filter-form {
    padding: 16px;
    gap: 18px;
  }

  .category-tag-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-tag-list::-webkit-scrollbar {
    display: none;
  }

  .category-cool-level-list {
    display: grid;
    overflow-x: visible;
  }

  .category-tag-choice {
    flex: 0 0 auto;
  }

  .category-results-summary {
    text-align: left;
  }

 

  .category-post-card {
    grid-template-rows: 210px minmax(0, 1fr);
  }

  .category-post-body {
    padding: 16px;
  }

  .category-post-title {
    font-size: 18px;
  }

  .post-page {
    padding: 130px 0px;
  }

  .post-detail {
    padding: 0px;
    max-width: calc(100% - 40px);
  }

  .post-detail:is(.category-cool-move, .category-cool-item) {
    padding: 15px;
        max-width: calc(100% - 30px);
  }

  .post-main-image {
    min-height: 260px;
    border-radius: 12px;
    font-size: 28px;
  }

  .post-main-image img {
    height: 260px;
  }

  .post-main-image-track {
    height: 260px;
  }

  .post-main-image-control {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .post-main-image-control.prev {
    left: 10px;
  }

  .post-main-image-control.next {
    right: 10px;
  }

  .post-main-image-dots {
    bottom: 12px;
  }

  .post-detail h1 {
    font-size: clamp(20px, 11vw, 34px);
  }

  .post-lead {
    font-size: 15px;
  }

  .post-info dl div {
    grid-template-columns: 1fr;
  }

  .post-info dt,
  .post-info dd {
    padding: 12px 14px;
  }

  .post-map {
    margin-top: 18px;
    border-radius: 12px;
  }

  .post-map iframe {
    height: 260px;
  }

  .feature-marquee {
    padding: 18px 0;
  }

  .feature-row-bottom .feature-track {
    margin-left: -170px;
  }

  .feature-card {
    width: 340px;
    min-height: 142px;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    padding: 8px;
  }

  .feature-photo {
    width: 104px;
    height: 120px;
    font-size: 14px;
  }

  .feature-cool-icons {
    min-height: 18px;
  }

  .feature-cool-icons img {
    width: 16px;
    height: 16px;
  }

  .feature-title {
    font-size: 17px;
  }

  .feature-meta {
    font-size: 12px;
  }

  .summer-info {
    grid-template-columns: 1fr;
    padding: 10px;
     width: calc(100% - 20px);
  }

  .weather-widget {
    min-height: auto;
    padding: 20px;
    border-radius: 12px 12px 0 0;
  }

  .weather-heading {
    font-size: 15px;
  }

  .weather-divider {
    margin: 14px 0 16px;
  }

  .weather-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .weather-updated {
    text-align: left;
  }

  .weather-label {
    font-size: 14px;
  }

  .weather-temp {
    font-size: 28px;
  }

  .weather-place:first-child .weather-temp {
    font-size: 32px;
  }

  .weather-place:last-child .weather-temp {
    font-size: 20px;
  }

  .summer-action {
    min-height: 116px;
    border-left: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.75);
    border-radius: 0 0 12px 12px;
    font-size: 20px;
  }

  .summer-guide-banner {
    height: 260px;
    background-size: cover, auto 90px, cover;
  }

  .summer-guide-cool.cool-zone {
    padding: 48px 0 0px;
  }

  .summer-guide-waves.category-hero-waves {
    top: -71px;
  }

  .summer-guide-inner {
    width: calc(100% - 32px);
  }

  .summer-guide-lead {
    gap: 14px;
  }

  .summer-guide-lead h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .summer-guide-lead p {
    font-size: 16px;
    line-height: 1.75;
  }

  .summer-guide-weather.weather-widget {
    padding: 20px;
    margin: -120px auto 0;
  }

  .summer-guide-info {
    margin-top: 48px;
  }

  .summer-guide-intro {
    gap: 12px;
  }

  .summer-guide-intro h2 {
    font-size: 24px;
  }

  .summer-guide-intro p {
    font-size: 15px;
    line-height: 1.75;
  }

  .summer-guide-tab-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summer-guide-tab {
    min-height: 96px;
    padding: 16px 8px;
    font-size: 14px;
  }

  .summer-guide-tab-panel {
    padding: 100px 20px;
  }
  .summer-guide-content-article p{
    font-size: 12px;
  }

  .summer-guide-content-head h3 {
    font-size: 28px;
  }

  .summer-guide-content-copy {
    margin-top: 20px;
    gap: 14px;
  }

  .summer-guide-content-subtitle {
    font-size: 17px;
    line-height: 1.65;
  }

  .summer-guide-content-article {
    font-size: 15px;
    line-height: 1.8;
  }

  .summer-guide-point-grid {
    margin-top: 36px;
    gap: 5px;
  }

  .summer-guide-point-card {
    flex-basis: calc((100% - 5px) / 2);
  }

  .summer-guide-point-title{
    font-size: 14px;
  }

  .summer-guide-point-title,
  .summer-guide-point-description {
    padding-right: 12px;
    padding-left: 12px;
  }

  .summer-guide-point-description {
    font-size: 12px;
    line-height: 1.65;
  }

  .section-image-title {
    margin: 44px auto 20px;
  }

  .section-image-title img {
    width: min(450px, 90vw);
  }

  .section-image-title-event {
    margin-top: 30px;
  }

  .about-inner {
    margin: 0 auto 36px;
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-copy {
    padding: 0px;
  }

  .about-lead span {
    font-size: 17px;
  }

  .about-image {
    min-height: 220px;
  }

  .event-pickup {
    margin-bottom: 36px;
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-card-head {
    min-height: 46px;
    padding: 0 18px;
    font-size: 16px;
  }

  .event-card-image {
    min-height: 180px;
    margin: 22px 18px 18px;
    font-size: 24px;
  }

  .event-card h3 {
    font-size: 20px;
  }

  .event-card-copy {
    font-size: 13px;
  }

  .site-footer {
    padding: 50px 20px 150px;
  }

  .footer-waves.category-hero-waves {
    height: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 34px;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1;
    min-height: auto;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-link-block {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-category-links {
    gap: 14px 20px;
    font-size: 14px;
  }

  .footer-summer-info {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 24px;
  }

  .footer-summer-info .weather-widget {
    min-height: auto;
    border-radius: 12px 12px 0 0;
  }

  .footer-summer-info .summer-action {
    min-height: 116px;
    border-left: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.75);
    border-radius: 0 0 12px 12px;
    font-size: 18px;
  }

  .footer-meta {
    grid-column: 1;
    grid-row: 4;
    margin-top: 36px;
    gap: 24px;
  }

  .footer-office-info {
    gap: 5px;
    font-size: 12px;
  }

  .footer-office-info strong {
    font-size: 18px;
  }

  .footer-bottom {
    gap: 12px 20px;
    font-size: 12px;
  }
}

@media (max-width: 465px) {
  .about-value-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-value-links .about-value-link {
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
  }

 .category-post-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
 .category-post-grid.is-four-column {
    grid-template-columns: 1fr;
  }
}
