@charset "UTF-8";
/*==================================================
 Foundation
================================================== */
:root {
  --bp-sm: 768px;
  --bp-lg: 1024px;
  --layer-loading: 200;
  --layer-modal: 100;
  --layer-drawer: 40;
  --layer-floating: 30;
  --layer-header: 20;
  --layer-footer: 10;
  --layer-default: 1;
  --color-text-primary: #32190E;
  --color-background: #FAF9F7;
}

/*==================================================
 Layout
================================================== */
/* Archive, Single
--------------------------------------------- */
.l-archive {
  padding-bottom: 6.25rem;
}
@media (width <= 767px) {
  .l-archive {
    padding-bottom: 3.125rem;
  }
}
.l-archive .p-mv__img {
  aspect-ratio: unset;
  width: 100%;
  height: 33.875rem;
}
@media (width <= 767px) {
  .l-archive .p-mv__img {
    height: 18.875rem;
  }
}
.l-archive .p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (width <= 767px) {
  .l-archive .p-mv__img img {
    -o-object-position: 45% center;
    object-position: 45% center;
  }
}

.l-archive__inner {
  max-width: 1370px;
  margin-top: 6.25rem;
  margin-inline: auto;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media (width <= 767px) {
  .l-archive__inner {
    margin-top: 3.125rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.p-archive__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6.25rem;
  gap: 1.875rem;
}
@media (width <= 767px) {
  .p-archive__items {
    grid-template-columns: 1fr;
    margin-top: 3.125rem;
    gap: 3rem;
  }
}

.p-archive__item > a {
  display: block;
}

.p-archive__img {
  aspect-ratio: 420/315;
}
.p-archive__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-archive__body {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  margin-top: 1.25rem;
}

.p-archive__time {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  font-size: 0.75rem;
}

.p-archive__category {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 5rem;
  padding: 0.3125rem 0.6875rem;
  overflow: hidden;
  border-radius: 999rem;
  background-color: #aaa;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (width <= 767px) {
  .p-archive__category {
    padding: 0.05rem 0.5rem;
  }
}

.p-archive__category--news {
  background-color: #f29199;
}

.p-archive__category--blog {
  background-color: #ad8f78;
}

.p-archive__title {
  display: -webkit-box;
  grid-row: 2;
  grid-column: span 2;
  margin-top: 1rem;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 行数指定 */
}
@media (width <= 767px) {
  .p-archive__title {
    margin-top: 0.5rem;
  }
}

.p-post {
  padding-bottom: 7.5rem;
}
@media (width <= 767px) {
  .p-post {
    padding-bottom: 3.125rem;
  }
}

.p-post__header {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #EDDFD1;
}
@media (width <= 767px) {
  .p-post__header {
    padding-bottom: 1.25rem;
  }
}

.p-post__title {
  padding-bottom: 1.875rem;
  font-weight: 700;
  font-size: 2.25rem;
}
@media (width <= 767px) {
  .p-post__title {
    padding-bottom: 1.25rem;
    font-size: 1.5rem;
  }
}

.p-post__category {
  padding: 0.5625rem 1rem;
  border-radius: 999rem;
  background-color: #aaa;
  color: #fff;
  font-size: 1.1875rem;
}
@media (width <= 767px) {
  .p-post__category {
    padding: 0.3125rem 0.625rem;
    font-size: 1rem;
  }
}

.p-post__category--news {
  background-color: #f29199;
}

.p-post__category--blog {
  background-color: #ad8f78;
}

.p-post__time {
  display: inline-block;
  margin-left: 1rem;
  font-weight: 500;
  font-size: 1rem;
}
@media (width <= 767px) {
  .p-post__time {
    margin-left: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-post__content {
  margin-top: 3.75rem;
}
@media (width <= 767px) {
  .p-post__content {
    margin-top: 1.875rem;
  }
}

.p-recent-posts__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.p-recent-posts__title {
  font-weight: 600;
  font-size: 2rem;
}
@media (width <= 767px) {
  .p-recent-posts__title {
    font-size: 1.5rem;
  }
}

.p-recent-posts__btn {
  display: flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  gap: 0.625rem;
  background-color: #32190E;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
}
@media (width <= 767px) {
  .p-recent-posts__btn {
    padding: 0.0625rem 0.3125rem;
    font-size: 1rem;
  }
}
.p-recent-posts__btn:before {
  content: "▶";
  font-size: 1.25rem;
}
@media (width <= 767px) {
  .p-recent-posts__btn:before {
    font-size: 0.875rem;
  }
}

.p-recent-posts .p-archive__items {
  margin-top: 1.875rem;
}
@media (width <= 767px) {
  .p-recent-posts .p-archive__items {
    margin-top: 1.25rem;
  }
}

/* Entry Content
--------------------------------------------- */
:where(.l-entry-content) {
  font-weight: 500;
  font-size: 1.125rem;
}
@media (width <= 767px) {
  :where(.l-entry-content) {
    font-size: 1rem;
  }
}
:where(.l-entry-content) h1,
:where(.l-entry-content) h2,
:where(.l-entry-content) h3,
:where(.l-entry-content) h4,
:where(.l-entry-content) h5,
:where(.l-entry-content) h6 {
  all: revert;
  clear: both;
}
:where(.l-entry-content) h1 {
  margin: 0.67em 0;
  font-size: 2em;
}
:where(.l-entry-content) h2 {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #baa086;
  font-weight: 700;
  font-size: 1.875rem;
}
@media (width <= 767px) {
  :where(.l-entry-content) h2 {
    padding-bottom: 1.25rem;
    font-size: 1.5rem;
  }
}
:where(.l-entry-content) h3 {
  font-weight: 700;
  font-size: 1.75rem;
}
@media (width <= 767px) {
  :where(.l-entry-content) h3 {
    padding-bottom: 0.625rem;
    font-size: 1.25rem;
  }
}
:where(.l-entry-content) h4 {
  font-weight: 700;
  font-size: 1.5rem;
}
@media (width <= 767px) {
  :where(.l-entry-content) h4 {
    font-size: 1rem;
  }
}
:where(.l-entry-content) th {
  text-align: center;
}
:where(.l-entry-content) a {
  text-decoration: underline;
}
:where(.l-entry-content) button,
:where(.l-entry-content) input,
:where(.l-entry-content) select,
:where(.l-entry-content) optgroup,
:where(.l-entry-content) textarea {
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
}
:where(.l-entry-content) p {
  margin-bottom: 1.5em;
}
:where(.l-entry-content) dfn,
:where(.l-entry-content) cite,
:where(.l-entry-content) em,
:where(.l-entry-content) i {
  font-style: italic;
}
:where(.l-entry-content) blockquote {
  margin: 0 1.5em;
}
:where(.l-entry-content) address {
  margin: 0 0 1.5em;
  font-style: revert;
}
:where(.l-entry-content) pre {
  max-width: 100%;
  margin-bottom: 1.6em;
  padding: 1.6em;
  overflow: auto;
  background: #eee;
  line-height: 1.6;
  font-family: "Courier 10 Pitch", courier, monospace;
}
:where(.l-entry-content) code,
:where(.l-entry-content) kbd,
:where(.l-entry-content) tt,
:where(.l-entry-content) var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
:where(.l-entry-content) abbr,
:where(.l-entry-content) acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
:where(.l-entry-content) mark,
:where(.l-entry-content) ins {
  background: #fff9c0;
  text-decoration: none;
}
:where(.l-entry-content) big {
  font-size: 125%;
}
:where(.l-entry-content) hr {
  height: 1px;
  margin-bottom: 1.5em;
  border: 0;
  background-color: #ccc;
}
:where(.l-entry-content) ul,
:where(.l-entry-content) ol {
  margin: 0 0 1.5em 1em;
}
:where(.l-entry-content) ul {
  list-style: disc;
}
:where(.l-entry-content) ul li::marker {
  color: #AD8F78;
}
:where(.l-entry-content) ul li + li {
  margin-top: 1em;
}
:where(.l-entry-content) ol {
  list-style: decimal;
}
:where(.l-entry-content) ol li::marker {
  color: #AD8F78;
}
:where(.l-entry-content) ol li + li {
  margin-top: 1em;
}
:where(.l-entry-content) li > ul,
:where(.l-entry-content) li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
:where(.l-entry-content) dt {
  font-weight: 700;
}
:where(.l-entry-content) dd {
  margin: 0 1.5em 1.5em;
}
:where(.l-entry-content) embed,
:where(.l-entry-content) iframe,
:where(.l-entry-content) object {
  max-width: 100%;
}
:where(.l-entry-content) img {
  display: inline;
  max-width: 100%;
  height: auto;
}
:where(.l-entry-content) figure {
  margin: 1em 0;
}
:where(.l-entry-content) figcaption {
  color: #ad8f78;
  font-size: 1rem;
}
:where(.l-entry-content) table {
  width: 100%;
  margin: 0 0 1.5em;
}
:where(.l-entry-content) a {
  color: #ed6075;
}
:where(.l-entry-content) a:visited {
  color: #ed6075;
}
:where(.l-entry-content) a:hover,
:where(.l-entry-content) a:focus,
:where(.l-entry-content) a:active {
  color: #ed6075;
}
:where(.l-entry-content) a:focus {
  outline: thin dotted;
}
:where(.l-entry-content) a:hover,
:where(.l-entry-content) a:active {
  outline: 0;
}
:where(.l-entry-content) button,
:where(.l-entry-content) input[type=button],
:where(.l-entry-content) input[type=reset],
:where(.l-entry-content) input[type=submit] {
  padding: 0.6em 1em 0.4em;
  border: 1px solid;
  border-radius: 3px;
  border-color: #ccc #ccc #bbb;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
}
:where(.l-entry-content) button:hover,
:where(.l-entry-content) input[type=button]:hover,
:where(.l-entry-content) input[type=reset]:hover,
:where(.l-entry-content) input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
:where(.l-entry-content) button:active,
:where(.l-entry-content) button:focus,
:where(.l-entry-content) input[type=button]:active,
:where(.l-entry-content) input[type=button]:focus,
:where(.l-entry-content) input[type=reset]:active,
:where(.l-entry-content) input[type=reset]:focus,
:where(.l-entry-content) input[type=submit]:active,
:where(.l-entry-content) input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}
:where(.l-entry-content) input[type=text],
:where(.l-entry-content) input[type=email],
:where(.l-entry-content) input[type=url],
:where(.l-entry-content) input[type=password],
:where(.l-entry-content) input[type=search],
:where(.l-entry-content) input[type=number],
:where(.l-entry-content) input[type=tel],
:where(.l-entry-content) input[type=range],
:where(.l-entry-content) input[type=date],
:where(.l-entry-content) input[type=month],
:where(.l-entry-content) input[type=week],
:where(.l-entry-content) input[type=time],
:where(.l-entry-content) input[type=datetime],
:where(.l-entry-content) input[type=datetime-local],
:where(.l-entry-content) input[type=color],
:where(.l-entry-content) textarea {
  padding: 3px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #666;
}
:where(.l-entry-content) input[type=text]:focus,
:where(.l-entry-content) input[type=email]:focus,
:where(.l-entry-content) input[type=url]:focus,
:where(.l-entry-content) input[type=password]:focus,
:where(.l-entry-content) input[type=search]:focus,
:where(.l-entry-content) input[type=number]:focus,
:where(.l-entry-content) input[type=tel]:focus,
:where(.l-entry-content) input[type=range]:focus,
:where(.l-entry-content) input[type=date]:focus,
:where(.l-entry-content) input[type=month]:focus,
:where(.l-entry-content) input[type=week]:focus,
:where(.l-entry-content) input[type=time]:focus,
:where(.l-entry-content) input[type=datetime]:focus,
:where(.l-entry-content) input[type=datetime-local]:focus,
:where(.l-entry-content) input[type=color]:focus,
:where(.l-entry-content) textarea:focus {
  color: #111;
}
:where(.l-entry-content) select {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
  border: 1px solid #ccc;
}
:where(.l-entry-content) textarea {
  width: 100%;
}
:where(.l-entry-content) .main-navigation {
  display: block;
  width: 100%;
}
:where(.l-entry-content) .main-navigation ul {
  display: none;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
:where(.l-entry-content) .main-navigation ul ul {
  z-index: 99999;
  position: absolute;
  top: 100%;
  left: -999em;
  float: left;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
:where(.l-entry-content) .main-navigation ul ul ul {
  top: 0;
  left: -999em;
}
:where(.l-entry-content) .main-navigation ul ul li:hover > ul,
:where(.l-entry-content) .main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}
:where(.l-entry-content) .main-navigation ul ul a {
  width: 200px;
}
:where(.l-entry-content) .main-navigation ul li:hover > ul,
:where(.l-entry-content) .main-navigation ul li.focus > ul {
  left: auto;
}
:where(.l-entry-content) .main-navigation li {
  position: relative;
}
:where(.l-entry-content) .main-navigation a {
  display: block;
  text-decoration: none;
}
:where(.l-entry-content) .menu-toggle,
:where(.l-entry-content) .main-navigation.toggled ul {
  display: block;
}
@media screen and (min-width: 37.5em) {
  :where(.l-entry-content) .menu-toggle {
    display: none;
  }
  :where(.l-entry-content) .main-navigation ul {
    display: flex;
  }
}
:where(.l-entry-content) .site-main .comment-navigation,
:where(.l-entry-content) .site-main .posts-navigation,
:where(.l-entry-content) .site-main .post-navigation {
  margin: 0 0 1.5em;
}
:where(.l-entry-content) .comment-navigation .nav-links,
:where(.l-entry-content) .posts-navigation .nav-links,
:where(.l-entry-content) .post-navigation .nav-links {
  display: flex;
}
:where(.l-entry-content) .comment-navigation .nav-previous,
:where(.l-entry-content) .posts-navigation .nav-previous,
:where(.l-entry-content) .post-navigation .nav-previous {
  flex: 1 0 50%;
}
:where(.l-entry-content) .comment-navigation .nav-next,
:where(.l-entry-content) .posts-navigation .nav-next,
:where(.l-entry-content) .post-navigation .nav-next {
  flex: 1 0 50%;
  text-align: end;
}
:where(.l-entry-content) .sticky {
  display: block;
}
:where(.l-entry-content) .post,
:where(.l-entry-content) .page {
  margin: 0 0 1.5em;
}
:where(.l-entry-content) .updated:not(.published) {
  display: none;
}
:where(.l-entry-content) .page-content,
:where(.l-entry-content) .entry-content,
:where(.l-entry-content) .entry-summary {
  margin: 1.5em 0 0;
}
:where(.l-entry-content) .page-links {
  margin: 0 0 1.5em;
  clear: both;
}
:where(.l-entry-content) .comment-content a {
  word-wrap: break-word;
}
:where(.l-entry-content) .bypostauthor {
  display: block;
}
:where(.l-entry-content) .widget {
  margin: 0 0 1.5em;
}
:where(.l-entry-content) .widget select {
  max-width: 100%;
}
:where(.l-entry-content) .page-content .wp-smiley,
:where(.l-entry-content) .entry-content .wp-smiley,
:where(.l-entry-content) .comment-content .wp-smiley {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border: none;
}
:where(.l-entry-content) .custom-logo-link {
  display: inline-block;
}
:where(.l-entry-content) .wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
}
:where(.l-entry-content) .wp-caption img[class*=wp-image-] {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
:where(.l-entry-content) .wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
:where(.l-entry-content) .wp-caption-text {
  text-align: center;
}
:where(.l-entry-content) .gallery {
  display: grid;
  margin-bottom: 1.5em;
  grid-gap: 1.5em;
}
:where(.l-entry-content) .gallery-item {
  display: inline-block;
  width: 100%;
  text-align: center;
}
:where(.l-entry-content) .gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
:where(.l-entry-content) .gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
:where(.l-entry-content) .gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
:where(.l-entry-content) .gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
:where(.l-entry-content) .gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
:where(.l-entry-content) .gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
:where(.l-entry-content) .gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
:where(.l-entry-content) .gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
:where(.l-entry-content) .gallery-caption {
  display: block;
}
:where(.l-entry-content) .infinite-scroll .posts-navigation,
:where(.l-entry-content) .infinite-scroll.neverending .site-footer {
  display: none;
}
:where(.l-entry-content) .infinity-end.neverending .site-footer {
  display: block;
}
:where(.l-entry-content) .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  word-wrap: normal !important;
}
:where(.l-entry-content) .screen-reader-text:focus {
  border-radius: 3px;
  background-color: #f1f1f1;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  display: block;
  z-index: 100000;
  top: 5px;
  left: 5px;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  color: #21759b;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: normal;
  text-decoration: none;
  clip-path: none;
}
:where(.l-entry-content) .alignleft {
  margin-right: 1.5em;
  margin-bottom: 1.5em;
  float: left;
}
:where(.l-entry-content) .alignright {
  margin-bottom: 1.5em;
  margin-left: 1.5em;
  float: right;
}
:where(.l-entry-content) .aligncenter {
  display: block;
  margin-right: auto;
  margin-bottom: 1.5em;
  margin-left: auto;
  clear: both;
}

/*==================================================
 Object
================================================== */
/*==================================================
 Component
================================================== */
/* Pagenation
--------------------------------------------- */
.c-pagenation {
  display: flex;
  justify-content: center;
  margin-top: 12.5rem;
}
@media (width <= 767px) {
  .c-pagenation {
    margin-top: 3.125rem;
  }
}
.c-pagenation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagenation .wp-pagenavi > * {
  padding: 0 1.25rem;
  border-right: 1px solid #32190E;
  font-size: 1.75rem;
  line-height: 1;
}
@media (width <= 767px) {
  .c-pagenation .wp-pagenavi > * {
    padding: 0 0.625rem;
    font-size: 1.25rem;
  }
}
.c-pagenation .wp-pagenavi > *:last-child {
  border-right: none;
}

/*==================================================
 Project
================================================== */
/* Contact Page
--------------------------------------------- */
/* First View
--------------------------------------------- */
.p-contact-fv {
  background-color: var(--color-background);
}

.p-contact-fv__title {
  color: var(--color-text-primary);
}

/* Form
--------------------------------------------- */
.p-contact-form {
  background-color: var(--color-background);
}

.p-contact-form__title {
  color: var(--color-text-primary);
}

.p-contact-form__text {
  color: var(--color-text-primary);
}

/* 404 Page
--------------------------------------------- */
.p-error {
  margin-top: 7.5rem;
  padding: 6.25rem 0;
  text-align: center;
}

.p-error__title {
  font-weight: 600;
  font-size: 2rem;
}

.p-error__btn {
  display: block;
  margin-top: 2.5rem;
  margin-inline: auto;
  font-weight: 600;
  font-size: 1.25rem;
}

/* Headerスタイル上書き
--------------------------------------------- */
@media (768px <= width) {
  .p-nav__item a {
    padding: 2.25rem 0 1.575rem;
  }
}

/* Top Page
--------------------------------------------- */
/* Header
--------------------------------------------- */
.p-nav__items {
  align-items: center;
}

.p-nav__item__buttonGroup {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (width <= 767px) {
  .p-nav__item__buttonGroup {
    flex-direction: column;
  }
}

.p-nav__item__contact {
  display: flex !important;
  align-items: center;
  padding: 0.375rem 0.5rem !important;
  gap: 0.4375rem;
  background-color: #32190e;
  color: #fff;
}
.p-nav__item__contact::before {
  content: "▶";
  color: inherit;
  font-size: 0.7rem;
}

.p-nav__item__line {
  display: flex !important;
  align-items: center;
  padding: 0.1rem 1.5625rem 0.1rem 0.625rem !important;
  gap: 0.4375rem;
  background-color: #06c755;
  color: #fff;
}
.p-nav__item__line::before {
  width: 2.1rem;
  height: 2.1rem;
  background: url("../images/icon-line.svg") no-repeat center/contain;
  content: "";
  color: inherit;
}

/* Footer
--------------------------------------------- */
.p-sm__buttonGroup {
  display: none;
}
@media (width <= 767px) {
  .p-sm__buttonGroup {
    display: grid;
    z-index: 200;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-rows: 51px;
    grid-template-columns: 1fr 1fr;
  }
}

.p-sm__buttonGroup__contact {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  background-color: #32190e;
  color: #fff;
}
.p-sm__buttonGroup__contact::before {
  content: "▶";
  color: inherit;
}

.p-sm__buttonGroup__line {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.2375rem;
  background-color: #06c755;
  color: #fff;
}
.p-sm__buttonGroup__line::before {
  width: 1.875rem;
  height: 1.875rem;
  background: url("../images/icon-line.svg") no-repeat center/contain;
  content: "";
  color: inherit;
}

/* News & Blog
--------------------------------------------- */
.p-news__lists {
  margin-top: 6.25rem;
}
@media (width <= 767px) {
  .p-news__lists {
    margin-top: 1.5rem;
  }
}

.p-news__list > a {
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  gap: 1.875rem;
  border-bottom: 1px solid #e3e3e3;
}
@media (width <= 767px) {
  .p-news__list > a {
    display: grid;
    grid-template-columns: 5rem 1fr;
    padding: 1.25rem 0;
    gap: 0.625rem;
  }
}

.p-news__time {
  font-size: 0.875rem;
}
@media (width <= 767px) {
  .p-news__time {
    grid-row: 1;
    grid-column: 1;
    font-size: 0.75rem;
  }
}

.p-news__category {
  flex: 0 0 5.625rem;
  padding: 0.4375rem 0.75rem;
  overflow: hidden;
  border-radius: 999rem;
  background-color: #aaa;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (width <= 767px) {
  .p-news__category {
    grid-row: 1;
    grid-column: 2;
    width: 5rem;
    padding: 0.1375rem 0.75rem;
    font-size: 0.75rem;
  }
}

.p-news__category--news {
  background-color: #f29199;
}

.p-news__category--blog {
  background-color: #ad8f78;
}

.p-news__title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.125rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 行数指定 */
}
@media (width <= 767px) {
  .p-news__title {
    grid-row: 2;
    grid-column: span 2;
    font-size: 0.875rem;
  }
}

.p-news__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.5rem;
  margin-left: auto;
}
@media (width <= 767px) {
  .p-news__btn {
    margin-top: 1.5rem;
  }
}
.p-news__btn a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1.25rem;
  font-size: 1.125rem;
}
@media (width <= 767px) {
  .p-news__btn a {
    gap: 0.625rem;
    font-size: 0.875rem;
  }
}
.p-news__btn a::before {
  display: block;
  width: 4.6875rem;
  height: 0.8125rem;
  background: url("../images/arrow-next.svg") no-repeat center/contain;
  content: "";
}
@media (width <= 767px) {
  .p-news__btn a::before {
    width: 3.125rem;
    height: 0.5625rem;
  }
}

/*==================================================
 Utility
================================================== */
/* 表示/非表示切り替え
--------------------------------------------- */
.u-sm-only {
  display: none;
}
@media (width <= 767px) {
  .u-sm-only {
    display: block;
  }
}

.u-md-only {
  display: none;
}
@media (768px <= width <= 1023px) {
  .u-md-only {
    display: block;
  }
}

.u-lg-only {
  display: none;
}
@media (1024px <= width) {
  .u-lg-only {
    display: block;
  }
}

.u-mdLg-only {
  display: none;
}
@media (768px <= width) {
  .u-mdLg-only {
    display: block;
  }
}

.u-smMd-only {
  display: none;
}
@media (width <= 1023px) {
  .u-smMd-only {
    display: block;
  }
}

/* テキストまわり
--------------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}
