@charset "UTF-8";
/**
 * 文学のまち大津とは (page-about.php) 専用スタイル
 */

  :root {
    --kasumi: #EEF2F6;
    --washi: #FFFFFF;
    --koai: #3D709C;
    --koai-deep: #2D5677;
    --mizu: #A7BDD2;
    --mizu-soft: #D2DDE9;
    --wakaba: #79988E;
    --shu: #C6876E;
    --shu-deep: #B5755C;
    --sora: #E7F2F9;
    --sumi: #333A49;
    --sumi-soft: #6F7A87;
    --line: #D8E0E9;
  }

  .wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .latin {
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .mincho {
    font-family: "Noto Serif JP", serif;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 14px;
    padding: 13px 26px;
    transition: .2s;
    cursor: pointer;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--shu);
    color: #fff;
  }

  .btn-primary:hover {
    background: var(--shu-deep);
  }

  .btn-ghost {
    border: 1px solid var(--koai);
    color: var(--koai-deep);
    background: transparent;
  }

  .btn-ghost:hover {
    background: rgba(61, 112, 156, .08);
  }

  .crumb {
    font-size: 12.5px;
    color: var(--sumi-soft);
    padding: 20px 0 8px;
  }

  .crumb a:hover {
    color: var(--koai-deep);
  }

  .crumb span {
    margin: 0 8px;
    color: var(--sumi-soft);
  }

  .page-head {
    padding: 22px 0 6px;
  }

  .eyebrow {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-style: italic;
    letter-spacing: .28em;
    font-size: 13px;
    color: var(--koai);
    text-transform: uppercase;
  }

  .ph-title {
    font-family: "Noto Serif JP", serif;
    font-weight: 800;
    font-size: clamp(25px, 3.3vw, 36px);
    line-height: 1.42;
    letter-spacing: .02em;
    margin-top: 8px;
  }

  .ph-lead {
    color: var(--sumi-soft);
    font-size: 14px;
    margin-top: 12px;
  }

  .sec {
    padding: 38px 0;
  }

  .sec-h {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: .03em;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
  }

  .sec-h::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--koai);
    flex: none;
  }

  .ph {
    background: repeating-linear-gradient(45deg, var(--kasumi), var(--kasumi) 10px, #e7edf3 10px, #e7edf3 20px);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sumi-soft);
    font-size: 12px;
    letter-spacing: .08em;
  }

  .cta-band {
    background: var(--koai-deep);
    color: #fff;
    border-radius: 18px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 8px 0 58px;
  }

  .cta-band h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 700;
  }

  .cta-band p {
    font-size: 13px;
    color: #D9ECF7;
    margin-top: 6px;
  }

  /* page */

  .concept {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
  }

  .concept-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--koai-deep);
    margin: 12px 0 16px;
    letter-spacing: .04em;
  }

  .concept-body {
    font-size: 14.5px;
  }
  .cv-static {
    aspect-ratio: 64/21;
    border-radius: 18px;
  }

  .gallery .g-stage {
    position: relative;
    aspect-ratio: 64/21;
    border-radius: 18px;
    overflow: hidden;
    background: var(--kasumi);
  }

  .g-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .g-slide.active {
    opacity: 1;
  }

  .g-slide.g-ph {
    background: repeating-linear-gradient(45deg, var(--kasumi), var(--kasumi) 10px, #e7edf3 10px, #e7edf3 20px);
  }

  .g-slide.flyer {
    background: #DCEFF8;
  }

  .g-ph-label,
  .g-slide.flyer .fl {
    color: var(--sumi-soft);
    font-size: 13px;
    letter-spacing: .1em;
  }

  .g-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 16px 13px;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(transparent, rgba(45, 86, 119, .82));
    text-align: left;
  }

  .g-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    border: 0;
    cursor: pointer;
    font-size: 19px;
    color: var(--sumi);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .g-arrow:hover {
    background: #fff;
  }

  .g-arrow.prev {
    left: 10px;
  }

  .g-arrow.next {
    right: 10px;
  }

  .g-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
  }

  .g-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: var(--line);
    cursor: pointer;
    padding: 0;
  }

  .g-dots button.active {
    background: var(--koai);
  }

  .band-washi {
    background: var(--washi);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .writers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .wcard {
    background: var(--washi);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
  }

  .wcard .wimg {
    aspect-ratio: 3/4;
    border-radius: 8px;
    width: 88px;
    margin: 0 auto 14px;
  }

  .wcard .wname {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 16px;
  }

  .wcard .wkana {
    font-size: 11px;
    color: var(--sumi-soft);
    letter-spacing: .06em;
    margin-top: 2px;
  }

  .wcard .wdesc {
    font-size: 12.5px;
    color: var(--sumi);
    margin-top: 10px;
    line-height: 1.8;
    text-align: left;
  }

  .wcard .wtag {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    color: var(--koai-deep);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px 11px;
  }

  .proj-doc h3 {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 18px;
    margin: 34px 0 12px;
    padding-left: 12px;
    border-left: 3px solid var(--koai);
  }

  .proj-doc h3:first-child {
    margin-top: 0;
  }

  .proj-doc p {
    font-size: 15px;
    margin: 0 0 18px;
  }

  .proj-doc ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
  }

  .proj-doc li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .proj-doc li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--koai);
  }

  .proj-doc li strong {
    color: var(--koai-deep);
  }

  .subcard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--washi);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 26px;
    transition: .2s;
  }

  .subcard:hover {
    border-color: var(--koai);
    transform: translateY(-1px);
  }

  .subcard .st {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 16px;
  }

  .subcard .sd {
    font-size: 12px;
    color: var(--sumi-soft);
    margin-top: 3px;
  }

  .subcard .sarrow {
    color: var(--koai);
    font-size: 18px;
  }

  .hero-wave {
    width: 100%;
    display: block;
    margin-top: -2px;
  }

  .mode-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0 0 26px;
  }

  .ms-label {
    font-size: 11px;
    color: var(--sumi-soft);
    letter-spacing: .04em;
  }

  .as-tabs {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: var(--washi);
  }

  .as-tab {
    padding: 8px 20px;
    border: 0;
    background: transparent;
    font-size: 13px;
    color: var(--sumi-soft);
    cursor: pointer;
    font-family: inherit;
    transition: .16s;
  }

  .as-tab.active {
    background: var(--koai);
    color: #fff;
  }

  .feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .feat {
    background: var(--washi);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .2s;
  }

  .feat:hover {
    transform: translateY(-3px);
    border-color: var(--koai);
  }

  .flyer {
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flyer .lbl {
    font-size: 12px;
    color: var(--koai-deep);
    background: rgba(255, 255, 255, .82);
    padding: 5px 12px;
    border-radius: 999px;
  }

  .shiori-tab {
    position: absolute;
    top: 0;
    left: 18px;
    background: var(--shu);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px 9px;
    border-radius: 0 0 9px 9px;
  }

  .feat-body {
    padding: 12px 18px 20px;
  }

  .feat-date {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--sumi-soft);
    font-size: 16px;
    letter-spacing: .03em;
    margin: 6px 0;
  }

  .feat-title {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 17px;
    margin: 3px 0 8px;
    line-height: 1.5;
  }

  .feat-place {
    font-size: 12.5px;
    color: var(--sumi-soft);
    margin-bottom: 10px;
  }

  .ftags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
  }

  .ftag {
    font-size: 11px;
    padding: 3px 11px;
    border-radius: 999px;
    background: rgba(121, 152, 142, .18);
    color: #5d7a6f;
  }

  [hidden] {
    display: none !important;
  }

  @media(max-width:880px) {
    .concept {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .writers {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .feat-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .mode-switch {
      justify-content: flex-start;
    }
  }
