:root {
  --ink: #4b3227;
  --pink: #ea6471;
  --pink-deep: #df4b64;
  --green: #5aa441;
  --blue: #348dc4;
  --cream: #fffaf0;
  --line: #efc9a4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .9), rgba(255, 250, 238, .92) 32rem),
    #fff8ea;
  letter-spacing: 0;
  line-break: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.nowrap {
  white-space: nowrap;
}

.wrap {
  width: min(1120px, calc(100% - clamp(32px, 5vw, 64px)));
  margin-inline: auto;
}

.site-header {
  z-index: 10;
  height: 68px;
  background: rgba(255, 252, 244, .95);
  border-bottom: 1px solid rgba(226, 183, 142, .45);
  backdrop-filter: blur(8px);
}

.header-inner {
  width: min(1220px, calc(100% - 36px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 64px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand small,
.brand em {
  display: inline-block;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.brand strong {
  display: inline-block;
  margin-right: 7px;
  font-size: 29px;
  line-height: 1;
  letter-spacing: 2px;
}

.global-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding: 26px 0 20px;
}

.global-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 3px;
  border-radius: 99px;
  background: var(--pink);
}

.donate-pill,
.main-cta,
.contact button {
  color: #fff;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(180deg, #f27380, #e65068);
  box-shadow: inset 0 -2px 0 rgba(179, 49, 72, .18), 0 4px 10px rgba(221, 93, 111, .22);
}

.donate-pill {
  min-width: 124px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 356px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,250,235,.1) 65%, #fff8ea 96%),
    url("../component/component_2_parts/hero.png") center 43% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,248,234,0), #fff8ea);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin-inline: auto;
  padding-top: 26px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 6px;
  color: #5b382b;
  font-size: 20px;
  font-weight: 900;
}

.hero h1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: .18em;
  margin: 0;
  color: #178fc4;
  font-size: clamp(44px, 5.8vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 4px 0 rgba(255,255,255,.85), 0 0 5px #fff;
}

.hero h1 span {
  display: inline-block;
  white-space: nowrap;
}

.hero-title-main {
  color: #ee6570;
  -webkit-text-stroke: 1px rgba(198, 63, 75, .22);
}

.hero-title-sub {
  color: #178fc4;
}

.hero-lead {
  margin: 8px 0 12px;
  font-size: 19px;
  font-weight: 900;
  text-shadow: 0 2px 0 #fff;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 7px;
}

.hero-badges img {
  width: 132px;
  height: 132px;
  object-fit: fill;
  filter: drop-shadow(0 4px 0 rgba(255,255,255,.8));
}

.main-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 43px;
  padding: 9px 32px;
  border-radius: 999px;
  font-size: 22px;
  letter-spacing: 1px;
}

.main-cta small {
  margin-left: 10px;
  font-size: 13px;
}

.tea-cup {
  position: absolute;
  z-index: 1;
  left: max(40px, calc(50% - 560px));
  bottom: 22px;
  width: 176px;
}

.notice,
.panel,
.advisers {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .86);
}

.notice {
  width: min(1120px, calc(100% - 48px));
  margin-top: 18px;
  min-height: 88px;
  padding: 10px 22px;
  display: grid;
  grid-template-columns: 300px 1fr 118px;
  align-items: center;
  gap: 15px;
}

.notice-main {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  border-right: 1px solid #ebccb6;
}

.notice-main img {
  width: 68px;
}

.notice-main strong {
  color: #e95568;
  font-size: 24px;
  line-height: 1.45;
}

.notice-copy {
  min-width: 0;
}

.notice-copy p {
  margin: 0 0 8px;
  font-weight: 800;
}

.notice-copy div {
  font-size: 14px;
  font-weight: 800;
}

.notice-copy span {
  display: inline-block;
  margin-right: 16px;
  padding: 7px 18px;
  color: #fff;
  border-radius: 999px;
  background: var(--pink);
  font-size: 14px;
  white-space: nowrap;
}

.notice-school {
  width: 122px;
}

.activities {
  padding-top: 10px;
}

.activities h2,
.advisers h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: 4px;
}

.activities h2 span,
.advisers h2 span {
  width: 72px;
  height: 22px;
  background: url("../component/component_2_parts/20_leaf_branch.png") center / contain no-repeat;
  transform: rotate(83deg);
}

.activities h2 span:last-child,
.advisers h2 span:last-child {
  transform: rotate(-83deg) scaleX(-1);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.activity-grid article {
  min-height: 132px;
  padding: 10px 12px 9px;
  border: 1px solid #ecc59b;
  border-radius: 7px;
  background: rgba(255,255,255,.72);
  text-align: center;
}

.activity-grid article.blue { border-color: #b5d5e7; }
.activity-grid article.red { border-color: #efb8b4; }
.activity-grid article.green { border-color: #c8dda9; }

.activity-grid img {
  height: 50px;
  width: auto;
  margin: 0 auto 5px;
  object-fit: contain;
}

.activity-grid h3 {
  margin: 0 0 5px;
  font-size: 14px;
}

.activity-grid p,
.panel p,
.panel li,
.donation-options,
.adviser-list {
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: .96fr 1.24fr;
  gap: 12px;
  margin-top: 10px;
}

.two-col > *,
.lower > * {
  min-width: 0;
}

.panel {
  position: relative;
  min-height: 0;
  padding: 14px 18px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.panel-head h2,
.panel-head a {
  min-width: 0;
}

.panel h2 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: 3px;
}

.panel-head a {
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.news ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ecd8c5;
}

.news li {
  border-bottom: 1px solid #ecd8c5;
}

.news-link {
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr);
  gap: 8px;
  padding: 5px 0;
  border-radius: 5px;
}

.news-link:hover,
.post-list-row:hover,
.side-box a:hover,
.outline-link:hover {
  background: rgba(255, 238, 225, .65);
}

.news time,
.news span {
  white-space: nowrap;
}

.news span {
  align-self: center;
  padding: 2px 9px;
  color: #fff;
  border-radius: 999px;
  background: #f48a9a;
  font-size: 11px;
  text-align: center;
}

.news span.yellow {
  background: #f1ae55;
}

.news-title {
  min-width: 0;
  font-style: normal;
  overflow-wrap: break-word;
}

.memo {
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  color: #b67928;
  background: #fff1c9;
}

.donation {
  overflow: hidden;
  text-align: center;
}

.donation h2 {
  margin-right: 115px;
}

.donation .main-cta {
  width: min(420px, 78%);
  margin: 0 auto 5px;
}

.donation small {
  display: block;
  color: #ad6c61;
  font-weight: 800;
}

.donation-illust {
  position: absolute;
  top: -2px;
  right: 10px;
  width: 136px;
}

.donation-options {
  display: grid;
  grid-template-columns: minmax(104px, max-content) repeat(4, max-content);
  justify-content: center;
  gap: 2px;
  margin-top: 8px;
  padding: 7px;
  border: 1px solid #f0cf98;
  border-radius: 5px;
  background: rgba(255,246,219,.6);
  font-size: 10px;
  line-height: 1.2;
}

.donation-options b,
.donation-options span {
  min-width: 0;
  padding: 4px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ebd3ad;
}

.donation-options b {
  grid-column: 1;
  text-align: left;
  white-space: nowrap;
}

.donation-options span {
  color: #6f7f39;
  white-space: nowrap;
}

.lower {
  grid-template-columns: .95fr 1.25fr;
}

.donor-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.donor-table div {
  border: 1px solid #f1d3c2;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  background: #fffdfa;
}

.donor-table b {
  display: block;
  padding: 6px 4px;
  background: #fff5e8;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.donor-table p {
  margin: 0;
  padding: 5px 4px;
  border-top: 1px solid #f3e0d6;
  overflow-wrap: break-word;
}

.thanks {
  margin: 10px 0 0;
  color: #73943d;
  text-align: center;
}

.contact {
  min-height: 0;
  padding-right: 168px;
}

.operator {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 150px;
}

.contact form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 9px;
}

.contact label {
  display: grid;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
}

.contact input,
.contact select,
.contact textarea {
  width: 100%;
  min-height: 30px;
  border: 1px solid #d9cfc5;
  border-radius: 5px;
  padding: 5px 9px;
  background: #fff;
  font: inherit;
}

.contact .wide {
  grid-column: span 2;
}

.contact textarea {
  min-height: 44px;
  resize: vertical;
}

.contact .check {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact .check input {
  width: 16px;
  min-height: 16px;
}

.contact button {
  grid-column: 1 / 3;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 20px;
  cursor: pointer;
}

.advisers {
  position: relative;
  margin-top: 10px;
  padding: 10px 330px 12px 20px;
  overflow: hidden;
}

.adviser-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.adviser-list article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: center;
}

.adviser-list img {
  width: 76px;
  margin-inline: auto;
}

.adviser-list h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.adviser-list dl {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 2px 10px;
  margin: 0;
}

.adviser-list dt {
  font-weight: 900;
  white-space: nowrap;
}

.adviser-list dd {
  margin: 0;
}

.field-basket {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 330px;
}

.site-footer {
  position: relative;
  margin-top: 14px;
  padding: 22px 0 16px;
  background: #fff6df;
  border-top: 1px solid #eed3b3;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr .9fr;
  gap: 28px;
}

.footer-about {
  padding-right: 28px;
  border-right: 1px solid #dfc29c;
}

.footer-about p,
.sitemap a,
.footer-cta p {
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.footer-about p {
  overflow-wrap: anywhere;
}

.sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 4px 28px;
}

.sitemap h2 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  font-size: 17px;
}

.footer-cta {
  position: relative;
  z-index: 1;
  padding: 0 18px 10px;
  border: 1px solid #edc9a5;
  border-radius: 7px;
  background: rgba(255,255,255,.65);
}

.footer-cta strong {
  display: block;
  margin-inline: -18px;
  padding: 8px;
  color: #fff;
  background: var(--pink);
  border-radius: 7px 7px 0 0;
  text-align: center;
}

.footer-cta .main-cta {
  width: 100%;
  min-height: 36px;
  font-size: 17px;
}

.footer-flower {
  position: absolute;
  right: -60px;
  bottom: -20px;
  width: 190px;
}

.copyright {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
}

.post-hero {
  position: relative;
  min-height: 342px;
  overflow: hidden;
  isolation: isolate;
}

.post-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,250,235,.1) 72%, #fff8ea 98%),
    url("../component/component_2_parts/hero.png") center 46% / cover no-repeat;
}

.post-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,248,234,0), #fff8ea);
}

.post-hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
  padding-top: 82px;
  text-align: center;
  text-shadow: 0 3px 0 rgba(255,255,255,.82);
}

.post-title-line,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.post-title-line img,
.section-heading > img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.post-title-line img:last-child,
.section-heading > img:last-child {
  transform: scaleX(-1);
}

.post-title-line h1 {
  margin: 0;
  color: var(--pink);
  font-size: clamp(46px, 5.6vw, 64px);
  line-height: 1.1;
  letter-spacing: 8px;
}

.post-hero-inner p {
  margin: 18px 0 0;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.9;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a::after {
  content: "›";
  margin-left: 12px;
  color: #9d7861;
}

.content-layout.wrap,
.activity-strip.wrap {
  width: min(1120px, calc(100% - 48px));
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 248px;
  gap: 34px;
  margin-top: 28px;
  align-items: start;
}

.section-heading {
  margin-bottom: 18px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 29px;
  letter-spacing: 4px;
}

.section-heading p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.post-list-table {
  border-top: 1px solid #e6c9b0;
}

.post-list-head,
.post-list-row {
  display: grid;
  grid-template-columns: 102px 108px minmax(180px, .9fr) minmax(260px, 1.2fr) 24px;
  gap: 18px;
  align-items: center;
}

.post-list-head {
  padding: 13px 16px;
  border-bottom: 1px solid #e6c9b0;
  font-size: 13px;
  font-weight: 900;
}

.post-list-row {
  min-height: 68px;
  padding: 13px 16px;
  border-bottom: 1px solid #e9d8c8;
}

.post-list-row time,
.post-list-row strong,
.post-list-row p,
.post-list-row em {
  min-width: 0;
}

.post-list-row time {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.post-list-row strong {
  font-size: 16px;
  line-height: 1.45;
}

.post-list-row p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.post-list-row em {
  color: var(--pink);
  font-style: normal;
  font-size: 30px;
  line-height: 1;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 3px 13px;
  color: var(--pink);
  border: 1px solid #f6c9c6;
  border-radius: 999px;
  background: #fff1ef;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.category-pill.yellow {
  color: #e58a17;
  border-color: #f7dcac;
  background: #fff8e9;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #ead1bd;
  border-radius: 5px;
  background: #fffdf8;
  font-size: 13px;
  font-weight: 800;
}

.pagination .current {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}

.post-sidebar {
  display: grid;
  gap: 24px;
}

.side-box,
.side-donation,
.activity-strip,
.post-article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .86);
}

.side-box {
  overflow: hidden;
}

.side-box h2 {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #e9d3bc;
  text-align: center;
  font-size: 16px;
  letter-spacing: 2px;
}

.side-box a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 10px 18px;
  border-bottom: 1px solid #ead8c8;
  font-size: 14px;
  font-weight: 900;
}

.side-box a:last-child {
  border-bottom: 0;
}

.side-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.archive a {
  justify-content: space-between;
}

.archive span {
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.side-donation {
  padding: 22px 16px 18px;
  text-align: center;
}

.side-donation h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 1px;
}

.side-donation img {
  width: min(172px, 78%);
  margin: 0 auto 12px;
}

.side-donation .main-cta,
.outline-link {
  width: 100%;
  min-height: 42px;
  font-size: 16px;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px 12px;
  color: var(--pink);
  border: 2px solid #f16b7a;
  border-radius: 7px;
  background: #fff;
  font-weight: 900;
}

.activity-strip {
  display: grid;
  grid-template-columns: minmax(230px, 1.3fr) repeat(5, minmax(92px, 1fr));
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  padding: 16px 20px;
}

.activity-strip > div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
}

.activity-strip > div img {
  grid-row: span 3;
  width: 60px;
}

.activity-strip h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 3px;
}

.activity-strip p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.activity-strip .main-cta {
  width: min(210px, 100%);
  min-height: 36px;
  padding: 7px 20px;
  font-size: 15px;
}

.activity-strip > a {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid #f1d9cf;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.activity-strip > a img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.post-article {
  border-color: transparent;
  background: transparent;
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-bottom: 18px;
}

.post-meta time {
  font-size: 15px;
  font-weight: 800;
}

.post-article h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.8vw, 39px);
  line-height: 1.35;
  letter-spacing: 2px;
}

.post-article > p,
.article-section p,
.article-section li {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.article-section {
  margin-top: 30px;
}

.article-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 20px;
  letter-spacing: 1px;
}

.article-section h3 img {
  width: 34px;
  height: 28px;
  object-fit: contain;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #b9d59e;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}

.post-article table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 700;
}

.post-article th,
.post-article td {
  padding: 14px 16px;
  border: 1px solid #d8d9b8;
  text-align: center;
  line-height: 1.6;
}

.post-article th {
  background: rgba(251, 255, 239, .86);
  font-weight: 900;
}

.post-article td:last-child {
  text-align: left;
}

.article-section ul {
  margin: 0;
  padding-left: 1.3em;
}

.published {
  margin: 34px 0 22px;
  color: #947567;
  text-align: right;
  font-size: 14px;
  font-weight: 800;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 18px;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.facebook {
  background: #4267a8;
}

.x-share {
  background: #050505;
}

.line-share {
  background: #06b900;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    position: relative;
  }

  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8px 0 12px;
  }

  .global-nav {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .global-nav a {
    padding: 8px 0 10px;
  }

  .hero-inner {
    padding-top: 26px;
  }

  .tea-cup {
    opacity: .88;
  }

  .notice,
  .two-col,
  .lower,
  .footer-inner,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .notice-main {
    border-right: 0;
  }

  .notice-copy {
    padding-top: 4px;
  }

  .notice-school,
  .donation-illust,
  .operator,
  .field-basket,
  .footer-flower {
    display: none;
  }

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    padding-right: 20px;
  }

  .advisers {
    padding-right: 22px;
  }

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

  .activity-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .activity-strip > div {
    grid-column: 1 / -1;
  }

  .footer-about {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .donate-pill {
    display: none;
  }

  .global-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    min-width: 0;
    overflow-x: visible;
    white-space: normal;
  }

  .global-nav a {
    min-width: 0;
    padding: 4px 0 8px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 460px;
  }

  .hero-inner {
    width: min(100% - 32px, 720px);
  }

  .hero h1 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2px;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.08;
  }

  .hero h1 span {
    max-width: 100%;
    margin-inline: auto;
    white-space: nowrap;
  }

  .hero-kicker,
  .hero-lead {
    font-size: 17px;
  }

  .hero-lead {
    max-width: 100%;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-badges {
    display: grid;
    width: min(100%, 264px);
    grid-template-columns: repeat(2, minmax(0, 124px));
    gap: 8px;
    margin-inline: auto;
  }

  .hero-badges img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .main-cta {
    width: min(100%, 342px);
    font-size: 19px;
    padding-inline: 18px;
    letter-spacing: 0;
  }

  .main-cta small {
    display: none;
  }

  .tea-cup {
    display: none;
  }

  .notice {
    padding: 14px;
  }

  .notice-main strong {
    font-size: 23px;
  }

  .notice-copy div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }

  .notice-copy span {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .activities h2,
  .advisers h2 {
    font-size: 25px;
    letter-spacing: 2px;
  }

  .activity-grid,
  .adviser-list,
  .contact form {
    grid-template-columns: 1fr;
  }

  .donation-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donation-options b {
    grid-column: 1 / -1;
  }

  .contact .wide,
  .contact .check,
  .contact button {
    grid-column: auto;
  }

  .news li {
    font-size: 12px;
  }

  .news-link {
    grid-template-columns: max-content max-content minmax(0, 1fr);
    gap: 6px;
  }

  .post-hero {
    min-height: 316px;
  }

  .post-hero-inner {
    width: min(100% - 32px, 760px);
    padding-top: 58px;
  }

  .post-title-line,
  .section-heading {
    gap: 12px;
  }

  .post-title-line h1 {
    font-size: clamp(38px, 11vw, 50px);
    letter-spacing: 4px;
  }

  .post-hero-inner p {
    font-size: 16px;
  }

  .content-layout.wrap,
  .activity-strip.wrap {
    width: min(100% - 24px, 1120px);
  }

  .content-layout {
    gap: 22px;
  }

  .post-list-head {
    display: none;
  }

  .post-list-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding: 15px 12px;
  }

  .post-list-row time,
  .post-list-row .category-pill,
  .post-list-row strong,
  .post-list-row p {
    grid-column: 1;
  }

  .post-list-row em {
    grid-column: 2;
    grid-row: 1 / 5;
    align-self: center;
  }

  .post-sidebar {
    grid-template-columns: 1fr;
  }

  .table-scroll {
    overflow-x: visible;
  }

  .post-article table {
    min-width: 0;
    table-layout: fixed;
    font-size: 12px;
  }

  .post-article th,
  .post-article td {
    padding: 9px 6px;
    overflow-wrap: anywhere;
  }

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

  .activity-strip > div {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .activity-strip > a {
    border-radius: 8px;
  }

  .published {
    text-align: left;
  }

  .donation h2 {
    margin-right: 0;
  }

  .adviser-list article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .adviser-list dl {
    grid-template-columns: 66px minmax(0, 1fr);
  }
}

@media (max-width: 360px) {
  .header-inner {
    width: min(100% - 24px, 1220px);
  }

  .global-nav {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 12px;
  }

  .global-nav a {
    width: 100%;
    padding: 2px 0 6px;
  }

  .global-nav a.active::after {
    right: auto;
    bottom: 0;
    width: 3em;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .hero h1 span,
  .hero-title-sub {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .panel {
    padding-inline: 14px;
  }

  .panel h2 {
    font-size: 19px;
    letter-spacing: 1px;
  }

  .activities h2,
  .advisers h2 {
    gap: 10px;
    font-size: 24px;
  }

  .activities h2 span,
  .advisers h2 span {
    width: 44px;
  }

  .hero-badges {
    width: min(100%, 244px);
    grid-template-columns: repeat(2, minmax(0, 118px));
  }

  .hero-badges img {
    width: 100%;
    height: auto;
  }

  .donor-table {
    gap: 6px;
  }

  .post-title-line img,
  .section-heading > img {
    display: none;
  }

  .section-heading h2 {
    font-size: 25px;
    letter-spacing: 2px;
  }

  .pagination {
    gap: 7px;
  }

  .pagination a,
  .pagination span {
    min-width: 29px;
    height: 30px;
    padding-inline: 8px;
  }

  .post-article h2 {
    font-size: 27px;
    letter-spacing: 1px;
  }

  .post-article > p,
  .article-section p,
  .article-section li {
    font-size: 14px;
  }

  .table-scroll {
    overflow-x: visible;
  }

  .post-article table {
    min-width: 0;
    table-layout: fixed;
    font-size: 12px;
  }

  .post-article th,
  .post-article td {
    padding: 9px 6px;
    overflow-wrap: anywhere;
  }

  .share-buttons a {
    flex: 1 1 110px;
    padding-inline: 10px;
  }

  .donor-table b,
  .donor-table p {
    padding-inline: 3px;
  }
}
