:root {
  --able-green: #009361;
  --able-dark: #006935;
  --accent-red: #c30e23;
  --cream: #fffbcc;
  --yellow: #fff100;
  --ink: #231916;
  --muted: #665f5a;
  --paper: #ffffff;
  --line: #d9ddd9;
  --page-width: 500px;
  --quick-contact-height: 62px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-bottom: calc(var(--quick-contact-height) + env(safe-area-inset-bottom, 0px) + 16px);
}

body.university-matsumoto {
  margin: 0;
  color: var(--ink);
  background: #dce9e1;
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 21px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.university-matsumoto img {
  display: block;
  max-width: 100%;
  height: auto;
}

.university-matsumoto :where(a) {
  color: inherit;
}

.university-matsumoto figure,
.university-matsumoto h1,
.university-matsumoto h2,
.university-matsumoto h3,
.university-matsumoto h4,
.university-matsumoto dl,
.university-matsumoto dd,
.university-matsumoto ul {
  margin: 0;
}

.university-matsumoto ul {
  padding: 0;
  list-style: none;
}

.gtm-frame {
  display: none;
  visibility: hidden;
}

.site_wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.main_body {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: var(--paper);
}

.university-matsumoto .desktop_deco,
.desktop_rail {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(760px, 100svh, 980px);
  isolation: isolate;
  overflow: hidden;
}

.university-matsumoto .hero_image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero_tint {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 76% 46% at 24% 56%,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.56) 44%,
    rgba(255, 255, 255, 0.2) 72%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero_content {
  display: flex;
  min-height: clamp(760px, 100svh, 980px);
  flex-direction: column;
  justify-content: flex-end;
  padding: 138px 24px calc(var(--quick-contact-height) + 40px);
}

.hero_eyebrow {
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 0;
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 12px rgba(255, 255, 255, 0.92);
}

.hero_eyebrow strong {
  display: block;
  color: var(--able-dark);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}

.hero_eyebrow span {
  display: block;
  color: #184634;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.hero_main {
  width: 100%;
}

.hero_able_logo {
  display: block;
  width: clamp(145px, 36%, 174px);
  height: auto;
  margin: 0 0 20px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.95)) drop-shadow(0 0 7px rgba(255, 255, 255, 0.88));
}

.hero h1 {
  color: var(--able-dark);
  font-size: 43px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 1px 0 #fff, 0 0 9px rgba(255, 255, 255, 0.96), 0 0 20px rgba(255, 255, 255, 0.9);
}

.hero_lead {
  margin-top: 13px;
  color: var(--accent-red);
  font-size: 23px;
  font-weight: 700;
  text-shadow: 0 1px 0 #fff, 0 0 8px rgba(255, 255, 255, 0.98), 0 0 16px rgba(255, 255, 255, 0.9);
}

.hero_copy {
  max-width: 420px;
  margin-top: 14px;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.75;
  text-shadow: 0 1px 0 #fff, 0 0 7px #fff, 0 0 14px rgba(255, 255, 255, 0.94);
}

.hero_actions {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 22px 0 0;
}

.button {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  padding: 12px 54px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
  transition: transform 180ms ease;
  -webkit-mask: url("../images/icon-circle-arrow-right.svg") center / contain no-repeat;
  mask: url("../images/icon-circle-arrow-right.svg") center / contain no-repeat;
}

.button:hover::after {
  transform: translate(3px, -50%);
}

.button:focus-visible,
.quick_contact a:focus-visible,
.desktop_brand:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button_outline {
  color: var(--able-dark);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--able-dark);
}

.button_primary {
  color: #fff;
  background: var(--able-dark);
  border-color: var(--able-dark);
}

.button_red {
  color: #fff;
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.button:hover {
  color: #fff;
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.button_free_badge {
  position: absolute;
  top: -24px;
  left: -12px;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: var(--able-dark);
  background: var(--yellow);
  box-shadow: 0 0 0 1px rgba(0, 105, 53, 0.46), 0 5px 14px rgba(0, 69, 53, 0.18);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  transform: rotate(-4deg);
  pointer-events: none;
}

.hero_actions .button_briefing {
  margin-top: 16px;
}

.quick_contact {
  display: grid;
  width: 100%;
  max-width: var(--page-width);
  height: calc(var(--quick-contact-height) + env(safe-area-inset-bottom, 0px));
  min-height: 0;
  padding: 0 0 env(safe-area-inset-bottom, 0px);
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 30;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transform: translateX(-50%);
  background: var(--ink);
  box-shadow: 0 -5px 20px rgba(0, 45, 29, 0.18);
}

.quick_contact a {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.quick_contact_icon {
  width: 20px;
  height: 20px;
  flex: none;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.quick_contact a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.quick_contact a:hover {
  background: var(--able-green);
}

.contents {
  background: #fff;
}

.sectitle {
  --sectitle-accent: var(--able-dark);
  --sectitle-motif-fill: rgba(0, 105, 53, 0.045);
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  padding: 78px 24px 28px;
  border-bottom: 1px solid rgba(0, 105, 53, 0.24);
  color: var(--sectitle-accent);
  background: transparent;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.sectitle::before {
  display: none;
}

.sectitle_label {
  display: block;
  position: relative;
  z-index: 2;
}

.sectitle_break_narrow {
  display: none;
}

.sectitle_motif {
  display: block;
  width: max-content;
  height: auto;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 7px;
  left: 50%;
  z-index: 1;
  color: var(--sectitle-motif-fill);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%);
}

.sectitle_red {
  --sectitle-accent: var(--accent-red);
  --sectitle-motif-fill: rgba(195, 14, 35, 0.04);
  border-bottom-color: rgba(195, 14, 35, 0.24);
}

.section_photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.section_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section_photo_offset img {
  object-position: center 42%;
}

.content_inner {
  padding: 34px 24px 42px;
}

.intro {
  color: var(--able-dark);
  font-size: inherit;
  font-weight: 500;
  line-height: 1.75;
}

.content_inner h3,
.event_block h3 {
  margin-top: 28px;
  padding-bottom: 9px;
  border-bottom: 3px solid var(--able-green);
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
}

.point_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.university-matsumoto .point_grid {
  margin-top: 24px;
}

.point_grid li {
  display: flex;
  min-height: 166px;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 20px;
  border: 1px solid rgba(0, 105, 53, 0.18);
  border-top: 5px solid var(--yellow);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 52, 38, 0.1);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.university-matsumoto .point_icon {
  display: block;
  width: 54px;
  height: 54px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid rgba(0, 105, 53, 0.12);
  border-radius: 50%;
  background: #f1f7f3;
}

.point_label {
  display: block;
  width: 100%;
  margin-top: 14px;
  color: var(--ink);
  line-height: 1.45;
  text-align: center;
}

.body_copy {
  margin-top: 24px;
  line-height: 1.75;
}

.contact .content_inner > .body_copy:first-child {
  margin-top: 0;
}

.faq {
  margin-top: 34px;
}

.faq h3 {
  margin-top: 0;
}

.faq dl {
  border-top: 1px solid var(--ink);
}

.faq dl > div {
  padding: 16px 0 18px;
  border-bottom: 1px solid var(--line);
}

.faq dt,
.faq dd {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
}

.faq dt {
  font-weight: 600;
}

.faq dd {
  margin-top: 8px;
  color: var(--muted);
}

.faq dt::before,
.faq dd::before {
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
}

.faq dt::before {
  content: "Q";
  background: var(--able-dark);
}

.faq dd::before {
  content: "A";
  background: var(--accent-red);
}

.faq_text {
  min-width: 0;
}

.guardians {
  background: #f5f7f5;
}

.check_list {
  margin-top: 14px;
  border-top: 1px solid var(--ink);
}

.check_list li {
  position: relative;
  padding: 13px 10px 13px 40px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.check_list li::before {
  content: "●";
  position: absolute;
  left: 9px;
  color: var(--able-green);
  font-size: 20px;
  font-weight: 900;
}

.section_button {
  width: 100%;
  margin-top: 26px;
}

.reservation {
  background: #fffef0;
}

.reservation .intro {
  color: var(--ink);
}

.reservation .content_inner:first-of-type {
  padding-bottom: 24px;
}

.reservation .merit_list {
  display: grid;
  gap: 34px;
  padding: 8px 20px 36px;
  background: #fffef0;
}

.reservation .merit {
  position: relative;
  padding-bottom: 42px;
  overflow: visible;
  isolation: isolate;
  background: transparent;
}

.reservation .merit > img {
  display: block;
  width: calc(100% - 36px);
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 3px;
}

.reservation .merit:nth-child(even) > img {
  margin-left: 36px;
}

.reservation .merit > h4 {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(330px, calc(100% - 58px));
  padding: 19px 22px 18px;
  border: 1px solid rgba(0, 105, 53, 0.18);
  border-left: 5px solid var(--yellow);
  border-radius: 4px;
  color: var(--able-dark);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 52, 38, 0.18);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
}

.reservation .merit:nth-child(even) > h4 {
  right: auto;
  left: 0;
}

.reservation .merit_label {
  display: block;
  text-wrap: balance;
}

.reservation .merit_list + .content_inner {
  padding-top: 44px;
}

.reservation .merit_list + .content_inner .faq {
  margin-top: 0;
}

.events {
  padding-bottom: 42px;
  background: #f4f6f4;
}

.events_card {
  margin: 28px 18px 0;
  overflow: hidden;
  border: 1px solid rgba(0, 105, 53, 0.28);
  border-top: 5px solid var(--able-green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 69, 53, 0.1);
}

.event_block {
  padding: 32px 20px 38px;
}

.event_block + .event_block {
  border-top: 1px solid rgba(0, 105, 53, 0.24);
}

.event_block h3 {
  margin-top: 0;
  border-bottom-width: 2px;
  font-size: 23px;
}

.event_details {
  margin-top: 24px;
  border: 1px solid rgba(35, 25, 22, 0.28);
  font-size: 18px;
}

.event_details > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.event_details > div:last-child {
  border-bottom: 0;
}

.event_details dt,
.event_details dd {
  padding: 15px 12px;
}

.event_details dt {
  color: #fff;
  background: var(--able-dark);
  font-weight: 700;
}

.event_details dd {
  min-width: 0;
  background: #fff;
  overflow-wrap: anywhere;
}

.event_dates {
  display: grid;
  gap: 4px;
}

.event_dates span {
  display: block;
}

.event_dates strong {
  margin-top: 7px;
  color: var(--accent-red);
}

.event_action {
  margin-top: 34px;
}

.onsite_event {
  background: var(--cream);
}

.event_note {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.contact address {
  margin-top: 16px;
  padding: 0;
  font-style: normal;
  line-height: 1.7;
}

.contact_shop_name {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.contact_location {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 17px;
}

.contact .contact_details {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact_details > div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact_details dt {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--able-dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  white-space: nowrap;
}

.contact_details dd {
  min-width: 0;
  font-size: 18px;
  line-height: 1.55;
}

.contact_detail_icon {
  width: 20px;
  height: 20px;
  flex: none;
  opacity: 0.78;
}

.contact address a {
  color: var(--able-dark);
  font-size: inherit;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
}

.site_footer {
  display: grid;
  gap: 15px;
  justify-items: center;
  padding: 30px 18px calc(28px + var(--quick-contact-height) + env(safe-area-inset-bottom, 0px));
  color: var(--ink);
  background: #fff;
  text-align: center;
}

.footer_logo {
  width: 150px;
  height: auto;
  opacity: 1;
}

.footer_copyright {
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 641px) {
  .site_wrapper {
    background-color: #dce9e1;
    background-image: url("/lp/university-matsumoto/images/desktop-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
  }

  .main_body {
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0, 97, 105, 0.3);
  }

  .quick_contact {
    overflow: hidden;
    border-radius: 0 0 12px 12px;
  }

  .university-matsumoto .desktop_deco {
    display: block;
    position: fixed;
    z-index: 1;
    height: auto;
    mix-blend-mode: screen;
    opacity: 0.58;
    pointer-events: none;
  }

  .university-matsumoto .desktop_deco_left {
    width: clamp(190px, min(30vw, 54svh), 520px);
    left: clamp(-88px, -3.8vw, -26px);
    top: clamp(-58px, -2.4vw, -18px);
    bottom: auto;
  }

  .university-matsumoto .desktop_deco_right {
    width: clamp(180px, min(29vw, 50svh), 500px);
    top: clamp(20px, 3svh, 42px);
    right: clamp(-48px, -1.8vw, -14px);
  }
}

@media (min-width: 1201px) {
  .desktop_rail {
    display: flex;
    width: min(346.378px, calc(50vw - 370px));
    position: fixed;
    top: 180px;
    left: 80px;
    z-index: 3;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .desktop_brand {
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 2px 12px rgba(0, 69, 46, 0.85), 0 1px 2px rgba(0, 45, 29, 0.9);
  }

  .desktop_brand_title {
    display: block;
    width: 100%;
  }

  .desktop_brand_title small {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 700;
    line-height: 1.35;
  }

  .desktop_brand_title strong {
    display: block;
    font-size: clamp(40px, 3.6vw, 58px);
    font-weight: 900;
    line-height: 1.14;
  }

}

@media (min-width: 1601px) {
  .desktop_rail {
    width: 346.378px;
    left: 160px;
  }
}

@media (min-width: 641px) and (max-height: 840px) {
  .university-matsumoto .hero_image {
    object-position: 43% center;
  }

  .hero_content {
    padding-bottom: calc(var(--quick-contact-height) + 24px + max(0px, 760px - 100svh));
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.16;
  }

  .hero_lead {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .hero_copy {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero_actions {
    gap: 8px;
    margin-top: 14px;
  }

  .hero_actions .button {
    min-height: 58px;
    padding: 10px 48px;
    font-size: 17px;
  }

  .hero_actions .button::after {
    right: 16px;
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  :root {
    --quick-contact-height: 56px;
  }

  body.university-matsumoto {
    background: #fff;
    font-size: 16px;
  }

  .site_wrapper {
    min-height: 0;
  }

  .main_body {
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }

  .hero,
  .hero_content {
    min-height: max(720px, 100svh);
  }

  .university-matsumoto .hero_image {
    object-position: 57% center;
  }

  .hero_tint {
    background: radial-gradient(
      ellipse 88% 48% at 20% 58%,
      rgba(255, 255, 255, 0.74) 0%,
      rgba(255, 255, 255, 0.58) 45%,
      rgba(255, 255, 255, 0.2) 73%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero_content {
    justify-content: flex-end;
    padding: 124px 18px calc(var(--quick-contact-height) + 24px);
  }

  .hero_eyebrow {
    max-width: calc(100% - 36px);
    top: 25px;
  }

  .hero_eyebrow strong {
    font-size: 18px;
  }

  .hero_eyebrow span {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero_lead {
    font-size: 18px;
  }

  .hero_copy {
    margin-top: 12px;
    font-size: inherit;
    line-height: 1.75;
  }

  .hero_actions {
    gap: 8px;
    margin: 18px auto 0;
  }

  .button {
    min-height: 62px;
    padding: 11px 48px;
    font-size: 16px;
  }

  .button::after {
    right: 16px;
    width: 22px;
    height: 22px;
  }

  .button_free_badge {
    top: -21px;
    left: -8px;
    width: 46px;
    height: 46px;
    font-size: 11px;
  }

  .quick_contact {
    max-width: none;
    min-height: 0;
    border-radius: 0;
  }

  .quick_contact a {
    gap: 7px;
    font-size: 13px;
  }

  .quick_contact_icon {
    width: 18px;
    height: 18px;
  }

  .sectitle {
    padding: 62px 18px 23px;
    font-size: 21px;
  }

  .sectitle_motif {
    bottom: 8px;
    left: 50%;
    font-size: 60px;
  }

  .content_inner,
  .event_block {
    padding: 29px 18px 36px;
  }

  .events_card {
    margin: 24px 10px 0;
  }

  .event_block {
    padding: 26px 14px 32px;
  }

  .intro {
    font-size: inherit;
  }

  .content_inner h3,
  .event_block h3 {
    font-size: 18px;
  }

  .point_grid li {
    min-height: 148px;
    padding: 17px 14px 16px;
    font-size: 16px;
  }

  .university-matsumoto .point_icon {
    width: 46px;
    height: 46px;
    padding: 8px;
  }

  .point_label {
    margin-top: 11px;
  }

  .faq dt::before,
  .faq dd::before {
    margin-top: 2px;
  }

  .reservation .merit > h4 {
    right: 0;
    bottom: 0;
    left: auto;
    width: min(270px, calc(100% - 36px));
    padding: 15px 18px 14px;
    border-left-width: 4px;
    font-size: 18px;
    line-height: 1.45;
  }

  .reservation .merit:nth-child(even) > h4 {
    right: auto;
    left: 0;
  }

  .reservation .merit_list {
    gap: 28px;
    padding: 4px 14px 30px;
  }

  .reservation .merit {
    padding-bottom: 36px;
  }

  .reservation .merit > img {
    width: calc(100% - 24px);
  }

  .reservation .merit:nth-child(even) > img {
    margin-left: 24px;
  }

  .event_details > div {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .event_details {
    font-size: 15px;
  }

  .event_details dt,
  .event_details dd {
    padding: 13px 8px;
  }

  .event_dates {
    font-size: inherit;
  }

  .event_note {
    font-size: 14px;
  }

  .contact_shop_name {
    font-size: 17px;
  }

  .contact_location {
    font-size: 14px;
  }

  .contact .contact_details {
    gap: 9px;
    margin-top: 18px;
  }

  .contact_details > div {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
  }

  .contact_details dt {
    gap: 7px;
    font-size: 14px;
  }

  .contact_details dd {
    font-size: 15px;
  }

  .contact_detail_icon {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }

  .site_footer {
    gap: 13px;
    padding-top: 26px;
  }

  .footer_logo {
    width: 132px;
  }

  .footer_copyright {
    font-size: 12px;
  }
}

@media (max-width: 389px) {
  .point_grid {
    gap: 10px;
  }

  .point_grid li {
    min-height: 142px;
    padding: 14px 11px;
    font-size: 15px;
  }

  .university-matsumoto .point_icon {
    width: 42px;
    height: 42px;
    padding: 7px;
  }
}

@media (max-width: 340px) {
  .button_briefing {
    padding-right: 34px;
    padding-left: 34px;
    font-size: 15px;
  }

  .sectitle_break_narrow {
    display: block;
  }

  .events .sectitle_motif {
    bottom: 23px;
  }

  .event_details > div {
    grid-template-columns: 1fr;
  }

  .event_details dt {
    padding: 9px 10px;
  }

  .event_details dd {
    padding: 11px 10px 14px;
  }
}

@media (max-width: 640px) and (max-height: 760px) {
  .university-matsumoto .hero_image {
    object-position: 49% center;
  }

  .hero_content {
    padding-bottom: calc(var(--quick-contact-height) + 24px + max(0px, 720px - 100svh));
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.16;
  }

  .hero_lead {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero_copy {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero_actions {
    gap: 7px;
    margin-top: 12px;
  }

  .hero_actions .button {
    min-height: 54px;
    padding: 8px 44px;
    font-size: 15px;
  }

  .hero_actions .button::after {
    right: 14px;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 340px) and (max-height: 760px) {
  .hero_actions .button_briefing {
    padding-right: 34px;
    padding-left: 34px;
  }
}

@media (max-width: 374px) {
  .university-matsumoto .hero_image {
    object-position: 45% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .button::after {
    transition: none;
  }
}