@charset "UTF-8";
/** @format */
body {
  font-size: 1rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif;
}

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

a {
  text-decoration: none;
}
a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  text-decoration: underline;
}
a:hover img {
  opacity: 0.6;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.container--header {
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
}

.container_s {
  width: 100%;
  max-width: 750px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

.blog {
  background-color: #f5f1eb;
  padding: 3.75rem 0 8.25rem;
}
@media screen and (max-width: 767px) {
  .blog {
    padding: 2rem 0 3.75rem;
  }
}
.blog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .blog__header {
    margin-bottom: 3.75rem;
  }
}
.blog__description {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
  width: 100%;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .blog__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.blog__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .blog__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog__link:hover {
  opacity: 0.8;
  text-decoration: none;
}
.blog__image {
  width: 100%;
  height: 14.375rem;
  position: relative;
  overflow: hidden;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .blog__image {
    height: auto;
    width: 33.4285714286%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .blog__image img {
    aspect-ratio: 117/78;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.blog__image:first-child {
  height: 14.375rem;
}
@media screen and (max-width: 767px) {
  .blog__image:first-child {
    height: auto;
  }
  .blog__image:first-child img {
    aspect-ratio: 117/78;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.blog__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.blog__date {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #db5331;
  display: block;
}
@media screen and (max-width: 767px) {
  .blog__date {
    font-size: 12px;
  }
}
.blog__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  max-height: 5.4em;
}
@media screen and (max-width: 767px) {
  .blog__title {
    font-size: 14px;
  }
}
.blog__title--clamp {
  height: 3.9375rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
@media screen and (max-width: 767px) {
  .blog__title--clamp {
    height: auto;
    max-height: none;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.blog__infinite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3rem;
  min-height: 3rem;
}
@media screen and (max-width: 767px) {
  .blog__infinite {
    padding-top: 2rem;
  }
}
.blog__infinite-sentinel {
  width: 100%;
  height: 1px;
  pointer-events: none;
}
.blog__infinite-loader {
  width: 2rem;
  height: 2rem;
  border: 2px solid #e0d5c8;
  border-top-color: #db5331;
  border-radius: 50%;
  -webkit-animation: blog-infinite-spin 0.8s linear infinite;
          animation: blog-infinite-spin 0.8s linear infinite;
}
.blog__infinite-loader[hidden] {
  display: none;
}

@-webkit-keyframes blog-infinite-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes blog-infinite-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.blog-single {
  background-color: #f5f1eb;
  padding: 3.75rem 0 8.25rem;
}
@media screen and (max-width: 767px) {
  .blog-single {
    padding: 2rem 0 3.75rem;
  }
}
.blog-single__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 44.375rem;
  margin: 0 auto;
}
.blog-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.blog-single__date {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 2.8px;
  color: #db5331;
  display: block;
  margin: 0;
}
.blog-single__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .blog-single__title {
    font-weight: 500;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0.8px;
  }
}
.blog-single__image {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #faf8f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-single__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
  max-width: 473px;
}
.blog-single__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .blog-single__content {
    gap: 1.5rem;
  }
}
.blog-single__content .wp-block-paragraph,
.blog-single__content p:not([class]) {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  width: 100%;
  margin: 0;
}
.blog-single__content .wp-block-paragraph strong,
.blog-single__content p:not([class]) strong {
  font-weight: 700;
}
.blog-single__content h2,
.blog-single__content h3,
.blog-single__content .wp-block-heading:is(h2, h3) {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .blog-single__content h2,
  .blog-single__content h3,
  .blog-single__content .wp-block-heading:is(h2, h3) {
    font-size: 1.25rem;
  }
}
.blog-single__content h4,
.blog-single__content h5,
.blog-single__content h6,
.blog-single__content .wp-block-heading:is(h4, h5, h6) {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
  width: 100%;
}
.blog-single__content ul,
.blog-single__content ol,
.blog-single__content .wp-block-list {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
  width: 100%;
}
.blog-single__content ul li,
.blog-single__content ol li,
.blog-single__content .wp-block-list li {
  margin-bottom: 0;
  position: relative;
}
.blog-single__content ul li::before,
.blog-single__content ol li::before,
.blog-single__content .wp-block-list li::before {
  content: "・";
  position: absolute;
  left: -1.5rem;
}
.blog-single__content ul li:last-child,
.blog-single__content ol li:last-child,
.blog-single__content .wp-block-list li:last-child {
  margin-bottom: 0;
}
.blog-single__content a {
  color: #db5331;
  text-decoration: underline;
}
.blog-single__content a:hover {
  opacity: 0.8;
}
.blog-single__content .wp-block-image {
  width: 100%;
  margin: 0;
}
.blog-single__content .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-single__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 5rem;
}
.blog-single__back-button {
  background-color: #db5331;
  border: 1.108px solid white;
  padding: 1rem 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: white;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.blog-single__back-button:hover {
  opacity: 0.8;
  text-decoration: none;
}
.blog-single__back-icon {
  width: 0.9995625rem;
  height: 0.9995625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.blog-single__back-icon-image {
  width: 100%;
  height: 100%;
  display: block;
}
.blog-single__back-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0.8px;
  color: white;
}
.blog-single table tr {
  border: 1px solid #F5F1EB;
  border-collapse: collapse;
}
.blog-single table tr th,
.blog-single table tr td {
  padding: 1rem 1.875rem;
  border: 1px solid #E0D5C8;
}
@media screen and (max-width: 767px) {
  .blog-single table tr th,
  .blog-single table tr td {
    padding: 0.75rem 1rem;
  }
}
.blog-single table tr th {
  background-color: #DB5331;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0.8px;
}
.blog-single table tr td {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0.8px;
  color: #4A403A;
  background-color: #fff;
}
.blog-single table tr td b {
  color: #DB5331;
  font-weight: 700;
}
.blog-single .wp-block-table thead {
  border: 1px solid #E0D5C8;
}
.blog-single .blog-single__tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-single .blog-single__tags ul li a {
  color: #DB5331;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 131.25% */
  letter-spacing: 0.8px;
}