@charset "UTF-8";
/**
 * 共通スタイル
 */
/**
 * Variables
*/
/**
 * Reset
 * https://unpkg.com/modern-css-reset/dist/reset.min.css
 * ==========================================================================
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
/**
 * Base
 * ==========================================================================
 */
/**
 * ↓ General
 */
html {
  font-size: 16px;
  -webkit-text-size-adjust: auto;
  -moz-text-size-adjust: auto;
  text-size-adjust: auto;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  overflow-x: hidden;
  word-wrap: break-word;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: #303133;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.8;
  }
}

::-moz-placeholder {
  color: #aaa;
}

::placeholder {
  color: #aaa;
}

.pc-only {
  display: block !important;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.archive-content {
  padding: 48px 0;
}

.caution {
  display: block;
  font-size: 0.9em;
  color: #56575a;
}

.f-end {
  display: flex;
  justify-content: flex-end;
}

.r-reverse {
  flex-direction: row-reverse;
}

.t-center {
  text-align: center;
}

/**
 * ↓ Header
 */
.site-header {
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.site-header::before {
  content: "";
  position: absolute;
  background-image: url(../images/IMG_2353.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: -10px;
  left: 0;
  width: 108%;
  height: 110%;
  z-index: -1;
  filter: blur(2px) brightness(0.4);
}

.header-inner {
  padding: 60px 15px 15px;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
}

.site-branding {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}
.site-branding a {
  text-decoration: none;
  color: #303133;
}
.site-branding .header-image {
  width: 280px;
  height: auto;
  margin-right: 15px;
}

.site-title {
  font-size: 110px;
  font-weight: 600;
  font-family: "montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (max-width: 768px) {
  .site-title {
    font-size: 48px;
  }
}
.site-title p {
  font-size: 24px;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  margin-top: 8px;
  padding-left: 0.2em;
}
@media (max-width: 768px) {
  .site-title p {
    font-size: 12px;
  }
}

.header-menu {
  padding: 0 30px;
  display: flex;
  gap: 40px;
  margin: 0;
}
@media (max-width: 768px) {
  .header-menu {
    gap: 30px;
    padding: 0 15px;
  }
}
.header-menu a {
  font-size: 18px;
  font-weight: 500;
  font-family: "montserrat", sans-serif;
  transition: all 0.3s;
  position: relative;
}
.header-menu a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(60deg, #adacbc 0%, #4a90e2 40%, #9068f2 100%);
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
  bottom: -2px;
  left: 0;
}
.header-menu a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/**
 * ↓ Navigation
 */
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .main-navigation {
    justify-content: center;
  }
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: all all 0.3s;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle:hover .menu-toggle-bar {
  background-color: #adacbc;
}

.menu-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #303133;
  border-radius: 2px;
  transition: all all 0.3s;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/**
 * ↓ Drawer Menu (SP)
 */
.sp-drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #e8e8e8;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right all 0.3s;
  z-index: 2000;
  overflow-y: auto;
}
.sp-drawer-menu.is-open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.drawer-menu-list {
  list-style: none;
  padding: 3rem 2rem;
}
.drawer-menu-list li {
  margin-bottom: 1rem;
}
.drawer-menu-list a {
  text-decoration: none;
  color: #303133;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
}

/**
 * ↓ Footer
 */
.site-footer {
  color: #303133;
  padding: 0;
  margin-top: auto;
}
.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 10%, #303133 50%, transparent 90%);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

.copyright {
  font-size: 0.8rem;
}

.footer-sns {
  display: flex;
  gap: 1rem;
}

.sns-icon {
  color: #fff;
  font-size: 1.5rem;
  transition: opacity all 0.3s;
}
.sns-icon:hover {
  opacity: 0.7;
}

/**
 * ↓ Utility
*/
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*
 * ↓ 共通パーツ
 */
.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.section-title.underline {
  border-bottom: 2px solid #303133;
}
.section-title__label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  font-family: "Yusei Magic", sans-serif;
  line-height: 2.2;
}
@media (max-width: 576px) {
  .section-title__label {
    font-size: 12px;
  }
}
.section-title__heading {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-family: "montserrat", sans-serif;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 576px) {
  .section-title__heading {
    font-size: 24px;
  }
}
.section-title__heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(60deg, #adacbc 0%, #4a90e2 40%, #9068f2 100%);
}

.section-description {
  font-size: 18px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.before-icon {
  position: relative;
  padding-left: 1.1em;
}
.before-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.before-icon.pin::before {
  background-image: url("../images/icons/pin-24.svg");
}

/**
 * ↓ コンポーネント ↓
 * ==================================================================
*/
/**
 * ↓ c-button
*/
.c-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 40px;
  background-color: transparent;
  color: #303133;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid #303133;
  position: relative;
  transition: all 0.3s;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "montserrat", sans-serif;
}
.c-button__wrapper {
  display: flex;
  align-items: center;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .c-button__wrapper {
    padding-top: 15px;
  }
}
.c-button__wrapper.center {
  justify-content: center;
}
.c-button span {
  font-size: 1rem;
  line-height: 1;
  padding-right: 5px;
  z-index: 1;
}
.c-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: #303133;
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.c-button::after {
  content: "";
  position: absolute;
  border-top: 1px solid #303133;
  border-right: 1px solid #303133;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 12%;
  transform: translateY(-50%) rotate(45deg);
  font-size: 0.9rem;
  font-weight: 300;
  color: #303133;
  transition: all 0.3s;
}
.c-button:hover {
  background-color: transparent;
  border-color: #303133;
  color: #ffffff;
}
.c-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.c-button:hover::after {
  border-color: #ffffff;
  transform: translate(8px, -50%) rotate(45deg);
}

/**
 * ↓ c-slider
*/
.c-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-content {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

/**
 * ↓ c-breadcrumb
*/
.c-breadcrumb {
  padding: 1rem 0;
  background-color: #e8e8e8;
}
.c-breadcrumb__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .c-breadcrumb__list {
    padding: 0 1rem;
    font-size: 0.9rem;
  }
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
}
.c-breadcrumb__link {
  color: #adacbc;
  text-decoration: none;
  transition: opacity all 0.3s;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.c-breadcrumb__separator {
  margin: 0 0.5rem;
  color: #e8e8e8;
}

/**
 * ↓ c-pagination
*/
.c-pagination {
  margin: 3rem 0;
  text-align: center;
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1rem; /* 間隔を少し広めに */
}
.c-pagination__item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.c-pagination__item--next {
  align-items: center;
}
.c-pagination__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-decoration: none;
  transition: all all 0.3s;
  width: 56px; /* 丸のサイズ（画像に合わせて調整） */
  height: 56px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #e8e8e8;
  border: 1px solid #e8e8e8;
  color: #303133;
  font-weight: 700;
  font-size: 1.25rem;
}
.c-pagination__link i {
  font-size: 1.25rem;
}
.c-pagination__link:hover {
  background-color: transparent;
  color: #303133;
  border-color: #303133;
}
.c-pagination__link--prev, .c-pagination__link--next {
  font-weight: 600;
}
.c-pagination__link--next {
  background-color: #fff; /* 次ボタンは白で縁取りの見た目 */
  border: 2px solid #303133;
  width: 56px;
  height: 64px;
}
.c-pagination__link--next i {
  font-size: 1.25rem;
}
.c-pagination .c-pagination__next-label {
  display: inline-block;
  margin-left: 0.8rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #303133;
}

.page-numbers.current,
.page-numbers.current.c-pagination__link {
  background-color: #303133 !important;
  color: #fff !important;
  border-color: #303133 !important;
  pointer-events: none;
}

/**
 * ↓ c-no-content
*/
.c-no-content {
  text-align: center;
  padding: 4rem 2rem;
}
.c-no-content__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.c-no-content__text {
  margin-bottom: 2rem;
  color: #adacbc;
}

/**
 * ↓ c-fixed-button
*/
.c-fixed-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  animation: fadeInUp 0.5s ease-out;
}
.c-fixed-button__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: #adacbc;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
  transition: all all 0.3s;
  font-weight: 600;
}
.c-fixed-button__link:hover {
  background-color: #adacbc;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 115, 170, 0.5);
}
.c-fixed-button__link i {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .c-fixed-button {
    bottom: 1rem;
    right: 1rem;
  }
  .c-fixed-button__link {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  .c-fixed-button__text {
    display: none;
  }
}

/**
 * ↓ c-tag-filter
 */
.c-tag-filter {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #56575a;
  font-family: "Yusei Magic", sans-serif;
}
@media (max-width: 768px) {
  .c-tag-filter {
    padding: 1rem;
  }
}
.c-tag-filter__section {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .c-tag-filter__section {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.c-tag-filter__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #303133;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding-top: 0.2rem;
}
.c-tag-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}
.c-tag-filter__item {
  display: inline-block;
  background-color: #56575a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0 8px;
  border: 1px solid #56575a;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.c-tag-filter__item:hover {
  background-color: #bcbcbc;
  border-color: #bcbcbc;
}
.c-tag-filter__item.is-active {
  background-color: #303133;
  color: #fff;
  border-color: #303133;
}
.c-tag-filter__select {
  font-size: 0.9rem;
  font-family: "Yusei Magic", sans-serif;
  padding: 0.4rem 0.8rem;
  border: 1px solid #56575a;
  background-color: #ffffff;
  color: #303133;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  max-width: 120px;
}
@media (max-width: 768px) {
  .c-tag-filter__select {
    width: 100%;
  }
}
.c-tag-filter__select:hover {
  border-color: #303133;
}
.c-tag-filter__select:focus {
  outline: none;
  border-color: #303133;
  box-shadow: 0 0 0 2px rgba(48, 49, 51, 0.1);
}

.c-month-filter {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0 0 40px 24px;
}
@media (max-width: 768px) {
  .c-month-filter {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/**
 * ↓ c-modal
 */
.c-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-modal.is-open {
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: center;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.c-modal__content {
  position: relative;
  z-index: 10000;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .c-modal__content {
    max-width: 80vw;
    max-height: 80vh;
  }
}
.c-modal__close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s;
  z-index: 10001;
}
.c-modal__close:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .c-modal__close {
    top: -60px;
    right: -20px;
    font-size: 32px;
  }
}
.c-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 10001;
}
.c-modal__nav:hover {
  background: rgba(0, 0, 0, 0.1);
}
.c-modal__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.c-modal__nav--prev {
  left: -50px;
}
@media (max-width: 768px) {
  .c-modal__nav--prev {
    left: -36px;
  }
}
.c-modal__nav--next {
  right: -50px;
}
@media (max-width: 768px) {
  .c-modal__nav--next {
    right: -36px;
  }
}
@media (max-width: 768px) {
  .c-modal__nav {
    font-size: 1.5rem;
    padding: 0.75rem;
  }
}
.c-modal__counter {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  z-index: 10001;
}
.c-modal__indicators {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10001;
}
.c-modal__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.c-modal__indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}
.c-modal__indicator.is-active {
  background: #fff;
}
.c-modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 90vh;
}
.c-modal__image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

/**
 * ↓ テンプレートパーツ ↓
 * ==================================================================
*/
/**
 * ↓ posts
 */
.posts {
  width: 100%;
  position: relative;
  font-family: "Yusei Magic", sans-serif;
}

.posts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 30px;
}
@media (max-width: 768px) {
  .posts__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (max-width: 576px) {
  .posts__list {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}
.post-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  border: 1px solid #adacbc;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.post-card__thumb.sensitive:before {
  content: "※センシティブ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 2px 16px;
  font-size: 0.9rem;
  border-radius: 4px;
  z-index: 1;
}
.post-card__thumb.sensitive img {
  filter: blur(10px) brightness(0.8);
}
.post-card__tag {
  background-color: #56575a;
  color: #ffffff;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 0 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  white-space: nowrap;
}
.post-card__body {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-card__title {
  font-weight: 500;
  line-height: 1.2;
}
.post-card__excerpt {
  line-height: 1.8;
  font-size: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .post-card__excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 4;
  }
}
.post-card__cta {
  margin-top: auto;
}
.post-card__btn {
  display: flex;
  justify-content: flex-end;
}

.privacy-policy {
  padding: 80px 0;
}
.privacy-policy .privacy-policy__item {
  margin-bottom: 30px;
}
.privacy-policy .privacy-policy__item h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 768px) {
  .privacy-policy .privacy-policy__item h2 {
    font-size: 18px;
  }
}
.privacy-policy .privacy-policy__item ol {
  margin: 0;
}
.privacy-policy .privacy-policy__item ol li {
  list-style-type: decimal;
}

.page-content {
  padding: 60px 0;
}

.single-post__tags {
  margin-bottom: 20px;
}
.single-post__tag {
  background-color: #56575a;
  color: #ffffff;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 0 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  white-space: nowrap;
}
.single-post__gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-post__image {
  height: 85vh;
  width: auto;
  max-width: 90%;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .single-post__image {
    height: auto;
    max-width: 100%;
  }
}
.single-post__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=common.css.map */