@charset "UTF-8";
/*
Light 300
Regular 400
Medium 500
SemiBold 600
Bold 700
Black 900
*/
/*

  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-text: #433F3C;
  --color-orange: #F49957;
  --color-orange-light: #FFFBF3;
  --color-bg: #FFF8EB;
  --color-line-gray: #DBDBDB;
  --color-border: #F2F2F2;
  --font-base: "Zen Maru Gothic", sans-serif;
  --font-gothic: "Noto Sans JP", sans-serif;
}

body {
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}

:is(p) {
  line-height: 1.8;
}

:is(li, dt, dd, th, td, address) {
  line-height: 1.7;
}

:is(input, textarea, select) {
  font-size: 16px;
}

:where(a) {
  color: inherit;
}
:where(a):hover {
  text-decoration: none;
}

.gothic {
  font-family: var(--font-gothic);
  font-optical-sizing: auto;
  font-weight: 600;
}

/*

  LAYOUT
----------------------------------------------- */
body.isMenuOpen {
  overflow: hidden;
}

.main-contents {
  overflow: clip;
}

/*
  HEADER
----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-inline: calc(50% - 640px);
}
@media (width < 1320px) {
  .header {
    padding-inline: 20px;
  }
}
@media (max-width: 960px) {
  .header {
    padding-inline: 20px;
  }
}
.header {
  transition: background 0.8s;
}
@media (width >= 1250px) {
  .header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    grid-template-areas: "corp nav" "logo nav";
    gap: 10px 0;
    padding-bottom: 10px;
  }
}
@media (width < 1250px) {
  .header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-block: 15px;
    background-color: #fff;
  }
}
.header.scrolled {
  background-color: #fff;
}
@media (width >= 1250px) {
  .header .logo {
    grid-area: logo;
  }
  .header .logo img {
    width: 460px;
  }
}
@media (width < 1250px) {
  .header .logo {
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  .header .logo img {
    width: 195px;
  }
}
.header .btn-mail {
  background-color: var(--color-orange);
  width: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .btn-mail img {
  width: 17px;
}
@media (width >= 1250px) {
  .header .btn-mail {
    display: none;
  }
}

/*
  MENU
----------------------------------------------- */
@media (width >= 1250px) {
  .gnav {
    grid-area: nav;
    margin-top: 13px;
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
    gap: 10px;
  }
}
@media (width < 1250px) {
  .gnav {
    position: fixed;
    inset: 0;
    background: #fff;
    padding: 80px 20px 40px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
  }
}
.gnav__main {
  display: flex;
}
@media (width >= 1250px) {
  .gnav__main {
    gap: 35px;
  }
  .gnav__main > li {
    font-size: 18rem;
  }
  .gnav__main .has-small-menu {
    position: relative;
  }
}
@media (width < 1250px) {
  .gnav__main {
    flex-direction: column;
    border-top: 1px solid #E9E4D9;
  }
  .gnav__main li {
    position: relative;
  }
  .gnav__main li::before, .gnav__main li::after {
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-rendering: auto;
    flex-shrink: 0;
  }
  .gnav__main li::after {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 60px;
    content: "\f105";
    color: var(--color-orange);
    font-size: 20rem;
  }
}
@media (width >= 1250px) {
  .gnav__main [class^=has-] {
    display: flex;
    align-items: center;
  }
  .gnav__main [class^=has-] a::before {
    display: none;
  }
  .gnav__main [class^=has-]:hover dl {
    opacity: 1;
    pointer-events: inherit;
  }
}
@media (width < 1250px) {
  .gnav__main [class^=has-]::after {
    display: none;
  }
}
.gnav__main a {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
@media (width >= 1250px) {
  .gnav__main a {
    font-weight: bold;
    position: relative;
    text-decoration: none;
  }
  .gnav__main a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: var(--color-border);
    background-color: currentColor;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 0.4s;
  }
  .gnav__main a:hover::before {
    transform-origin: left;
    transform: scale(1, 1);
  }
}
@media (width >= 1250px) {
  .gnav__main__item {
    height: 50px;
  }
}
@media (width < 1250px) {
  .gnav__main__item {
    border-bottom: 1px solid #E9E4D9;
    height: 60px;
    padding-inline: 30px;
    font-size: 17rem;
    font-weight: 500;
  }
}
.gnav .btnOpenMenu::before, .gnav .btnOpenMenu::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
@media (width >= 1250px) {
  .gnav .btnOpenMenu::after {
    content: "\f107";
    transform: translateY(0.05em);
    margin-left: 5px;
  }
}
@media (width < 1250px) {
  .gnav .btnOpenMenu {
    position: absolute;
    right: 0;
    top: 0;
  }
  .gnav .btnOpenMenu::after {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 60px;
    content: "+";
    color: var(--color-orange);
    font-size: 20rem;
    cursor: pointer;
  }
  .gnav .btnOpenMenu.active::after {
    content: "\f068";
  }
}
@media (width >= 1250px) {
  .gnav__sub {
    position: absolute;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
}
@media (width < 1250px) {
  .gnav__sub {
    display: none;
    padding-block: 15px;
  }
  .gnav__sub dd::before, .gnav__sub dd::after {
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-rendering: auto;
    flex-shrink: 0;
  }
  .gnav__sub dd {
    position: relative;
  }
  .gnav__sub dd::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    content: "\f105";
    color: var(--color-orange);
    font-size: 20rem;
  }
  .gnav__sub a {
    height: 40px;
    padding-inline: 40px;
    font-size: 16rem;
  }
}
@media (width >= 1250px) {
  .gnav .large-menu {
    top: calc(100% - 10px);
    left: 0;
    right: 0;
    width: 1324px;
    max-width: calc(100% - 40px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto repeat(4, 1fr);
    gap: 0 30px;
    padding: 50px 100px;
    border-radius: 50px;
  }
  .gnav .large-menu dt {
    grid-row: 1/10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 60px;
    font-size: 32rem;
    font-weight: bold;
    white-space: nowrap;
  }
  .gnav .large-menu dd {
    font-weight: 500;
    font-size: 18rem;
  }
  .gnav .large-menu dd:nth-of-type(n + 5) {
    margin-top: 30px;
  }
  .gnav .large-menu a {
    border: 1px solid var(--color-line-gray);
    border-radius: 10px;
    display: grid;
    grid-template-rows: auto 1fr;
    height: 220px;
    padding: 10px 20px;
    text-align: center;
  }
  .gnav .large-menu i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    border-bottom: 1px solid var(--color-line-gray);
  }
}
@media (width < 1250px) {
  .gnav .large-menu dt {
    display: none;
  }
  .gnav .large-menu i {
    display: none;
  }
}
@media (width >= 1250px) {
  .gnav .small-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 60px;
    border-radius: 40px;
  }
  .gnav .small-menu :is(dt, dd) {
    font-weight: bold;
    font-size: 18rem;
    text-align: center;
  }
  .gnav .small-menu dt {
    padding-block: 15px;
  }
  .gnav .small-menu dd {
    border-top: 1px solid var(--color-line-gray);
  }
  .gnav .small-menu a {
    height: 60px;
    padding-inline: 10px;
  }
}
.gnav__cta {
  display: flex;
}
@media (width >= 1250px) {
  .gnav__cta {
    gap: 20px;
  }
}
@media (width < 1250px) {
  .gnav__cta {
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
  }
}
.gnav__cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border: 1px solid var(--color-orange);
  border-radius: 999px;
  font-weight: bold;
  font-size: 18rem;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
@media (width >= 1250px) {
  .gnav__cta a {
    gap: 15px;
  }
}
.gnav__cta a:hover img {
  opacity: 1;
}
.gnav__cta img {
  transform: translateY(0.05em);
}
.gnav__cta .access a {
  color: var(--color-orange);
  transition: 0.3s;
}
.gnav__cta .access a:hover {
  background-color: #FEF3EB;
}
@media (width >= 1250px) {
  .gnav__cta .access a {
    width: 180px;
  }
}
@media (width < 1250px) {
  .gnav__cta .access a {
    gap: 30px;
    padding-right: 20px;
  }
}
.gnav__cta .contact a {
  background: var(--color-orange);
  color: #fff;
}
@media (width >= 1250px) {
  .gnav__cta .contact a {
    width: 275px;
  }
}
@media (width < 1250px) {
  .gnav__cta .contact a {
    gap: 10px;
  }
}
.gnav .corporate {
  display: flex;
}
@media (width >= 1250px) {
  .gnav .corporate {
    position: absolute;
    top: 0;
    left: calc(50% - 640px);
    background: #EEF2F9;
    border-radius: 0 0 10px 10px;
    gap: 24px;
    padding: 5px 20px;
  }
}
@media (width < 1250px) {
  .gnav .corporate {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E9E4D9;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
}
.gnav .corporate :is(dt, dd) {
  white-space: nowrap;
}
@media (width >= 1250px) {
  .gnav .corporate :is(dt, dd) {
    font-size: 15rem;
  }
}
@media (width < 1250px) {
  .gnav .corporate :is(dt, dd) {
    font-weight: 500;
  }
}
.gnav .corporate dt {
  font-weight: 500;
}
@media (width < 1250px) {
  .gnav .corporate dt {
    width: 100%;
    text-align: center;
    font-size: 15rem;
  }
}
.gnav .corporate dd {
  display: flex;
  align-items: center;
  gap: 3px;
}
@media (width < 1250px) {
  .gnav .corporate dd {
    font-size: 14rem;
  }
}
.gnav .corporate a {
  position: relative;
  text-decoration: none;
}
.gnav .corporate a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  background-color: currentColor;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform 0.4s;
}
.gnav .corporate a:hover::before {
  transform-origin: left;
  transform: scale(1, 1);
}
@media (width < 1250px) {
  .gnav .corporate i {
    color: var(--color-orange);
    rotate: -90deg;
  }
}

.isMenuOpen .gnav {
  opacity: 1;
  pointer-events: inherit;
}
.isMenuOpen .gnav::after {
  translate: 0 0;
  animation: footerHand 1s 0.6s linear infinite;
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  z-index: 5;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  transition: 0.2s;
}
@media (width >= 1250px) {
  .btnMenu {
    display: none;
  }
}
.btnMenu span, .btnMenu::before, .btnMenu::after {
  content: "";
  grid-area: 1/1;
  background: var(--color-text);
  width: 28px;
  height: 2px;
  border-radius: 99px;
  transition: 0.2s;
}
.btnMenu::before {
  translate: 0 -9px;
}
.btnMenu::after {
  translate: 0 9px;
}

.isMenuOpen .btnMenu {
  box-shadow: 0 0 6px rgba(244, 153, 87, 0.2);
}
.isMenuOpen .btnMenu::before {
  rotate: 45deg;
  translate: 0;
  background: var(--color-orange);
}
.isMenuOpen .btnMenu::after {
  rotate: -45deg;
  translate: 0;
  background: var(--color-orange);
}
.isMenuOpen .btnMenu span {
  opacity: 0;
  height: 0;
}

/*
  FOOTER
----------------------------------------------- */
.footer {
  background-color: var(--color-bg);
  display: grid;
  padding-inline: calc(50% - 650px);
}
@media (width < 1340px) {
  .footer {
    padding-inline: 20px;
  }
}
@media (max-width: 960px) {
  .footer {
    padding-inline: 20px;
  }
}
.footer {
  position: relative;
}
@media (width >= 960px) {
  .footer {
    grid-template-columns: auto 1fr auto;
    gap: 60px min(65px, 5vw);
    padding-block: 70px 30px;
    margin-top: 80px;
  }
}
@media (width < 960px) {
  .footer {
    padding-block: 10px 100px;
    gap: 32px;
    margin-top: 40px;
  }
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: url(../img/bg-footer.png) no-repeat center top/100% 100%;
}
@media (width >= 960px) {
  .footer::before {
    top: -80px;
    height: 150px;
  }
}
@media (width < 960px) {
  .footer::before {
    top: -40px;
    height: 40px;
  }
}
@media (width >= 960px) {
  .footer__info .logo img {
    width: 461px;
  }
}
@media (width < 960px) {
  .footer__info .logo img {
    width: 333px;
  }
}
.footer__info address {
  margin-block: 0.8em 0.9em;
  font-style: normal;
  font-weight: 500;
}
@media (width >= 960px) {
  .footer__info address {
    font-size: 20rem;
  }
}
.footer__info .sns {
  display: flex;
  gap: 20px;
}
@media (width < 960px) {
  .footer__info .sns {
    justify-content: center;
  }
}
.footer__info .sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
}
.footer__info .link {
  margin-top: 1.2em;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (width < 960px) {
  .footer__info .link {
    justify-content: center;
  }
}
.footer__info .link a {
  color: #919191;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}
.footer__info .link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  background-color: currentColor;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform 0.4s;
}
.footer__info .link a:hover::before {
  transform-origin: left;
  transform: scale(1, 1);
}
.footer__info .link img {
  width: 16px;
}
.footer__nav {
  display: flex;
}
@media (width >= 960px) {
  .footer__nav {
    gap: min(65px, 3.5vw);
    margin-inline: auto;
  }
}
@media (width < 960px) {
  .footer__nav {
    gap: 80px;
  }
}
@media (width < 520px) {
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
.footer__nav ul {
  display: grid;
  align-content: start;
  gap: 0.6em;
}
.footer__nav a {
  position: relative;
  text-decoration: none;
}
.footer__nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  background-color: currentColor;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform 0.4s;
}
.footer__nav a:hover::before {
  transform-origin: left;
  transform: scale(1, 1);
}
.footer__nav a {
  font-weight: 500;
  white-space: nowrap;
}
@media (width >= 960px) {
  .footer__nav a {
    font-size: 17rem;
  }
}
@media (width < 960px) {
  .footer__nav a {
    font-size: 17rem;
  }
}
@media (width < 960px) {
  .footer__cta {
    text-align: center;
  }
}
.footer__cta dt {
  font-weight: 500;
}
@media (width >= 960px) {
  .footer__cta dt {
    font-size: 21rem;
  }
}
@media (width < 960px) {
  .footer__cta dt {
    font-size: 20rem;
  }
}
.footer__cta dd {
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1.3;
}
@media (width < 960px) {
  .footer__cta dd {
    justify-content: center;
  }
}
@media (width >= 960px) {
  .footer__cta dd img {
    width: 33px;
    transform: translateY(3px);
  }
}
@media (width < 960px) {
  .footer__cta dd img {
    width: 30px;
    transform: translateY(3px);
  }
}
.footer__cta dd a {
  color: var(--color-orange);
  font-family: var(--font-gothic);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
@media (width >= 960px) {
  .footer__cta dd a {
    font-size: 46rem;
  }
}
@media (width < 960px) {
  .footer__cta dd a {
    font-size: 42rem;
  }
}
.footer__cta .time {
  margin-top: 0.2em;
  font-weight: 500;
}
@media (width >= 960px) {
  .footer__cta .time {
    font-size: 18rem;
  }
}
.footer__cta .c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  border-radius: 999px;
  gap: 0.5em;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
@media (width >= 960px) {
  .footer__cta .c-btn {
    margin-top: 25px;
    height: 60px;
    font-size: 22rem;
  }
  .footer__cta .c-btn img {
    width: 20px;
    transform: translateY(2px);
  }
}
@media (width < 960px) {
  .footer__cta .c-btn {
    margin-top: 20px;
    margin-inline: auto;
    width: 327px;
    height: 60px;
    font-size: 18rem;
  }
  .footer__cta .c-btn img {
    width: 19px;
    transform: translateY(2px);
  }
}
.footer .copyright {
  text-align: center;
}
@media (width >= 960px) {
  .footer .copyright {
    grid-row: 2;
    grid-column: 1/-1;
  }
}
@media (width >= 960px) {
  .footer__fixed {
    display: none;
  }
}
@media (width < 960px) {
  .footer__fixed {
    position: fixed;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
.footer__fixed .tel {
  display: grid;
  justify-items: center;
  gap: 3px;
  font-size: 11rem;
  font-weight: 500;
}
.footer__fixed .tel a {
  margin-top: 2px;
  display: flex;
  gap: 3px;
  align-items: center;
  color: var(--color-orange);
  font-size: 21rem;
  text-decoration: none;
}
.footer__fixed .tel a img {
  width: 16px;
}
.footer__fixed .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 165px;
  height: 40px;
  background-color: var(--color-orange);
  border-radius: 999px;
  color: #fff;
  font-size: 11rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
}
.footer__fixed .btn img {
  width: 20px;
}

/*
  コンポーネント
----------------------------------------------- */
.c-title {
  background: url(../img/ico-heading.png) no-repeat center top;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media (width >= 960px) {
  .c-title {
    background-size: 30px;
    padding-top: 70px;
    font-size: 46rem;
  }
}
@media (width < 960px) {
  .c-title {
    background-size: 20px;
    padding-top: 35px;
    font-size: 20rem;
  }
}

.c-btn {
  text-decoration: none;
  transition: 0.3s;
}
.c-btn:hover {
  filter: brightness(1.04);
}
.c-btn:hover img {
  opacity: 1;
}

.c-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  max-width: 100%;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  z-index: 1;
  color: var(--color-orange);
  transition: 0.3s;
}
.c-button::after {
  content: "";
  background: url(../img/mrk-right.svg) no-repeat center top/100%;
  aspect-ratio: 1;
}
@media (width >= 960px) {
  .c-button {
    height: 60px;
  }
  .c-button::after {
    width: 48px;
  }
}
@media (width < 960px) {
  .c-button::after {
    width: 23px;
  }
}
.c-button.transparent {
  background-color: transparent;
}
@media (width >= 960px) {
  .c-button.transparent {
    font-size: 20rem;
  }
}
.c-button.orange {
  justify-content: center;
  background-color: var(--color-orange);
  border-radius: 999px;
  color: #fff;
}
.c-button.orange::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-button.orange:hover {
  filter: brightness(1.04);
}
@media (width >= 960px) {
  .c-button.orange {
    min-width: 270px;
    height: 60px;
    padding-right: 8px;
    font-size: 16rem;
  }
  .c-button.orange::after {
    right: 6px;
  }
}
@media (width < 960px) {
  .c-button.orange {
    min-width: 210px;
    height: 48px;
    padding-right: 5px;
  }
  .c-button.orange::after {
    right: 5px;
    width: 38px;
  }
}

.c-news__tab {
  display: flex;
}
.c-news__tab > * {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F2F2F2;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
}
.c-news__tab .active {
  background: var(--color-orange);
  color: #fff;
}
@media (width >= 960px) {
  .c-news__tab {
    gap: 24px;
    margin-bottom: 30px;
  }
  .c-news__tab > * {
    min-width: 160px;
    height: 45px;
    font-size: 18rem;
  }
}
@media (width < 960px) {
  .c-news__tab {
    gap: 16px;
    margin-bottom: 20px;
  }
  .c-news__tab > * {
    padding-inline: 1em;
    height: 34px;
  }
}
.c-news__list a {
  display: grid;
  border-bottom: 1.5px solid var(--color-border);
  text-decoration: none;
}
@media (width >= 960px) {
  .c-news__list a {
    grid-template-columns: auto 110px 1fr;
    gap: 45px;
    padding-block: 30px;
    border-width: 2px;
  }
}
@media (width < 960px) {
  .c-news__list a {
    gap: 6px;
    padding-block: 20px 10px;
  }
}
.c-news__list .date {
  color: #878787;
  font-family: var(--font-gothic);
}
@media (width < 960px) {
  .c-news__list .date {
    font-size: 14rem;
  }
}
.c-news__list .category {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-bg);
  color: var(--color-orange);
  font-weight: 500;
}
@media (width >= 960px) {
  .c-news__list .category {
    height: 30px;
    font-size: 14rem;
  }
}
@media (width < 960px) {
  .c-news__list .category {
    width: fit-content;
    height: 32px;
    font-size: 15rem;
  }
}
.c-news__list .title {
  width: fit-content;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset:0.5ex;
}
.c-news__list a:not([href]) .title,
.c-news__list .title:hover{
  text-decoration: none;
}
@media (width >= 960px) {
  .c-news__list .title {
    font-size: 18rem;
  }
}