/*
Theme Name: Yasuda Komuten Theme
Author: Your Name
Description: Custom theme for Yasuda Komuten
Version: 1.0.13
*/

:root {
  --color-primary: #12213e;
  --color-secondary: #19223a;
  --color-accent: #7c8393;
  --color-third: #4e566a;
  --color-bg: #eff0f1;
  --base-width: 1600px;
  --font-dnp: "dnp-shuei-gothic-gin-std", sans-serif;
  /* Adobe Font */
  --font-tt-commons: "tt-commons-pro", sans-serif;
  /* Adobe Font */
}

body {
  font-family: var(--font-dnp), var(--font-tt-commons), sans-serif;
  font-weight: 500;
  background-image: url(assets/images/3033texture.jpg);
  background-repeat: repeat;
  background-size: auto;
  color: var(--color-primary);
  margin: 0 auto;
}

/* body::-webkit-scrollbar {
  display: none;
} */

/* body.js-show {
  position: fixed;
  width: 100%;
  overflow: hidden;
} */

/* common */
a {
  color: var(--color-primary);
  text-decoration: none;
}

a img {
  transition: transform 0.5s, opacity 0.5s;
}

a:hover img {
  transform: scale(1.03);
  opacity: .8;
}

.bg-white {
  background: white;
}

input {
  accent-color: var(--color-primary);
}

:focus-visible {
  outline: unset;
}

/* Utility */
.hidden-pc {
  display: none !important;
}

.hidden-pc-inline {
  display: none !important;
}

/* font */
.dnp {
  font-family: var(--font-dnp), sans-serif;
}

.commons {
  font-family: var(--font-tt-commons), sans-serif;
}

.Fadescroll {
  opacity: 0;
}

/* container */
.container {
  width: calc(100% - 240px);
  max-width: 1360px;
  margin: 0 auto;
}

.container-left {
  width: 92.5%;
  max-width: calc(50% + 680px);
  margin: 0 0 0 auto;
}

/* view more link */
.view-more-link {
  position: relative;
  display: inline-block;
  width: 155px;
  font-family: var(--font-tt-commons), sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--color-third);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 12px;
}

.view-more-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  width: 10px;
  height: 10px;
  background-image: url(assets/images/arrow_gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.view-more-link:hover::after {
  right: -10px;
}

/* Header Section */
.header {
  padding-top: 29px;
  padding-bottom: 12px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.header__inner {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: 1600px;
  padding-inline: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}

.header__logo {
  margin: 0;
  display: block;
  font-size: 20px;
  line-height: 1.17;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--main-color);
}

.header__logo a {
  font-size: 20px;
  line-height: 1.17;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--main-color);
}

.header__nav {
  margin-left: auto;
  margin-right: 58px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  column-gap: 28px;
  padding: 0;
}

.header__nav-item {
  list-style: none;
}

.header__nav-item a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.header__icon {
  position: fixed;
  width: 22px;
  height: 12px;
  top: 52px;
  right: 50px;
  padding: 0;
  border: none;
  background: transparent;
  z-index: 200;
}

.header__icon.js-show .header__icon--bar1 {
  rotate: 30deg;
  top: 6px;
  background: var(--color-primary);
}

.header__icon.js-show .header__icon--bar2 {
  rotate: -30deg;
  bottom: 5px;
  background: var(--color-primary);
}

.header__icon--bar {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.header__icon--bar1 {
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  top: 0;
  left: 0;
  transition: top 0.3s, bottom 0.3s, rotate 0.3s;
}

.header__icon--bar2 {
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
  transition: top 0.3s, bottom 0.3s, rotate 0.3s;
}

.header.js-bg-change .header__logo {
  color: var(--color-primary);
}

.header.js-bg-change .header__logo a {
  color: var(--color-primary);
}

.header.js-bg-change .header__icon--bar1,
.header.js-bg-change .header__icon--bar2 {
  background: var(--color-primary);
}

/* Drawer Section */
.drawer {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 733px;
  height: 100%;
  translate: 101% 0;
  background: #ededef;
  z-index: 50;
  transition: translate 0.3s, opacity 0.3s;
  overflow-y: scroll;
  opacity: 0;
}

.drawer.js-show {
  translate: 0 0;
  opacity: 1;
}

.drawer-icon {
  position: absolute;
  top: 50px;
  right: 50px;
}

.drawer__inner {
  box-sizing: border-box;
  padding-top: 100px;
  padding-inline: 20px 40px;
  padding-bottom: 100px;
  margin-inline: auto;
  max-width: 440px;
}

.drawer-logo img {
  width: 183px;
  height: 24px;
}

.drawer__links {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer__link {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  border-bottom: 1px solid var(--color-accent);
}

.drawer__link:hover .top-arrow {
  transform: translateX(5px);
}

.drawer__link-text {
  font-size: 13px;
  letter-spacing: 0.24em;
  line-height: 2;
  font-weight: 500;
  color: var(--color-accent);
}

.drawer__link .top-arrow {
  width: 13px;
  height: 13px;
}

.drawer__nav {
  margin-top: 45px;
}

.drawer__nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  justify-content: space-between;
  column-gap: 10px;
  row-gap: 30px;
  margin: 0;
  padding: 0;
}

.drawer__nav-item {
  list-style: none;
}

.drawer__nav-link {
  display: flex;
  column-gap: 15px;
  align-items: flex-end;
}

.drawer__nav-link.drawer__nav-link--gap-s {
  column-gap: 7px;
}

.drawer__nav-link--en {
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.drawer__nav-link--jp {
  font-size: 7px;
  letter-spacing: 0.16em;
}

.drawer__bottom {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 20px;
}

.drawer__tel {
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.drawer__tel .drawer__tel--s {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.drawer__address {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 2.3;
  font-weight: 400;
}

.drawer__map {
  position: relative;
  padding-left: 10px;
  padding-bottom: 4px;
  font-size: 9.11px;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  width: fit-content;
  border-bottom: 1px solid var(--color-primary);
}

.drawer__map::after {
  content: "\2197";
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
  color: var(--color-primary);
  position: absolute;
  top: -2px;
  right: -17px;
}

.drawer__bottom-right {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.drawer__social {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.drawer__social img {
  width: 18px;
  height: 18px;
}

.drawer__privacy {
  margin-top: 42px;
}

.drawer__privacy a {
  font-size: 10px;
  letter-spacing: 0.16em;
}

/* Footer Section */
.footer {
  padding: 50px 0 32px 0;
  font-size: 13px;
  color: var(--color-primary);
  background: white;
  /* border-top: 1px solid var(--color-accent); */
  /* margin-top: 120px; */
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* gap: 32px; */
  flex-wrap: wrap;
}

.footer-col.footer-brand {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  flex: 0 0 30%;
  max-width: 30%;
}

.footer-center {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col.footer-links {
  flex: 0 0 25%;
  max-width: 25%;
  margin-top: 30px;
}

.footer-logo {
  width: 100px;
}

.footer-company {
  font-size: 16px;
  font-weight: 600;
  margin-top: 45px;
  margin-bottom: 28px;
  letter-spacing: 3.4px;
}

.footer-address {
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 3.1px;
  margin-top: 25px;
}

.footer-map {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 10px;
  padding-right: 21px;
  letter-spacing: 0.9px;
  position: relative;
}

.footer-map::after {
  content: "";
  position: absolute;
  background-image: url(assets/images/arrow_navy.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 38%;
  right: 2px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
}

.footer-tel:before {
  content: "tel";
  display: block;
  font-family: var(--font-tt-commons), sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 21px;
  letter-spacing: 1.2px;
}

.footer-tel {
  font-size: 15px;
  font-family: var(--font-tt-commons), sans-serif;
  font-weight: 400;
  letter-spacing: 1.8px;
  margin-top: 47px;
  margin-bottom: 0;
}

.footer-copyright {
  font-size: 10px;
  font-family: var(--font-tt-commons), sans-serif;
  font-weight: 200;
  color: var(--color-primary);
  letter-spacing: 1.4px;
  margin-top: 81px;
}

.footer-brand {
  max-width: 220px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav-ja {
  font-size: 8px;
  font-family: var(--font-dnp), sans-serif;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.2px;
  margin-left: 20px;
  margin-top: 6px;
  white-space: nowrap;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.footer-nav li {
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.footer-links-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 31px;
  border-bottom: 1px solid var(--color-accent);
}

.footer-links a {
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 5px;
}

.footer-links a:hover::after {
  right: -10px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  background-image: url(assets/images/arrow_gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 15px;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.footer-arrow {
  font-size: 20px;
  color: var(--color-accent);
  margin-left: 6px;
  position: relative;
  top: 2px;
}

.footer-social {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  gap: 16px;
  margin-top: 90px;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social-inner {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.footer-social-links img {
  width: 18px;
  height: 18px;
  padding-left: 6px;
  object-fit: contain;
  margin-right: 21px;
}

.footer-social-links a {
  font-family: var(--font-tt-commons), sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
}

.footer-policy {
  font-size: 10px;
  font-weight: 400;
  margin-top: 8px;
  padding-left: 157px;
  letter-spacing: 1.6px;
}

.footer-col.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 114px;
  align-items: flex-start;
  margin-top: 36px;
  margin-bottom: 0;
  padding-left: 4px;
}

.footer-col.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}

.footer-col.footer-nav li {
  display: flex;
  align-items: baseline;
  font-size: 14px;
  font-family: var(--font-tt-commons), sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  gap: 12px;
  line-height: 1.3;
}

.footer-copy-wrap {
  display: none;
}

/* contact from 7 */
.wpcf7 form .wpcf7-response-output {
  font-family: var(--font-dnp);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  text-align: left;
  margin: 2em 0.5em 1em;
  padding: 0;
  border: none;
}

/* ---------   1550px以下   ----------------- */
@media screen and (max-width: 1550px) {
  .footer .container {
    box-sizing: border-box;
    width: 100%;
    padding-inline: 20px;
  }

  .footer-inner {
    display: flex;
    /* justify-content: flex-start; */
    align-items: flex-start;
    /* gap: 32px; */
    /* column-gap: 100px;
    row-gap: 50px; */
    flex-wrap: wrap;
  }

  .footer-col.footer-brand {
    flex: unset;
    max-width: 100%;
  }

  .footer-center {
    flex: unset;
    max-width: 100%;
  }

  .footer-col.footer-links {
    flex: unset;
    min-width: 300px;
    max-width: 100%;
  }

  .footer-col.footer-nav {
    gap: 10%;
  }
}

/* ------------------ Bottom Works Section -------------------------- */
section#bottom-works {
  position: relative;
  background: white;
  padding-top: 110px;
  padding-bottom: 120px;
}

.bottom-works__swiper {
  height: 400px;
}

.bottom-works__swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-slide.bottom-works__swiper-slide {
  width: 765px;
  border-right: 6px solid rgba(18, 33, 62, 0.34);
}

.bottom-works-thumb {
  width: 100%;
  aspect-ratio: 1.9125;
  overflow: hidden;
  display: block;
  filter: brightness(80%);
}

.bottom-works__slide-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.works-content {
  display: flex;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  gap: 0;
}

.works-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 350px;
  border-bottom: 1px solid white;
  z-index: 10;
}

.works-text a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.works-text .works-arrow {
  transition: transform 0.3s;
}

.works-text a:hover .works-arrow {
  transform: translateX(10px);
}

.bottom-works-link {
  display: contents;
}

.works-text p:nth-child(1) {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-family: var(--font-tt-commons), sans-serif;
}

.works-text a {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: var(--font-tt-commons), sans-serif;
}

.footer-arrow {
  font-size: 20px;
  color: var(--color-accent);
  margin-left: 6px;
  position: relative;
}

@media screen and (max-width: 768px) {
  section#bottom-works {
    position: relative;
    padding-top: 53px;
    padding-bottom: 50px;
  }

  .bottom-works__swiper {
    margin-top: 0px;
    height: 220px;
  }

  .bottom-works__swiper-wrapper {
    transition-timing-function: linear;
  }

  .bottom-works__swiper-slide {
    width: 333px;
  }

  .bottom-works__slide-link {
    height: 100%;
  }

  .bottom-works-thumb {
    /* aspect-ratio: 1.5; */
    aspect-ratio: auto;
    height: 100%;
  }

  .works-text {
    position: absolute;
    top: 75px;
    /* left: 50%; */
    transform: translate(-50%, 0%);
    color: white;
    flex-direction: column;
    row-gap: 16px;
    width: auto;
    border-bottom: none;
    z-index: 2;
  }

  .works-text p:nth-child(1) {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .works-text a {
    flex-direction: column;
    gap: 17px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.06em;
  }

  .bottom-works-link {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 15px;
    padding-left: 16px;
    display: flex;
    border: 1px solid white;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
  }

  .works-text .works-arrow {
    font-size: 8px;
  }
}

/* ------------------ Event Section Layout -------------------------- */
section#event {
  padding-top: 257px;
  padding-bottom: 100px;
  overflow: hidden;
}

section#event {
  background: white;
}

.event-section-inner {
  display: flex;
  width: 100%;
  align-items: flex-start;
}

.event-section-left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 556px;
}

.event-section-right {
  flex: 1;
  width: calc(100% - 320px);
  display: flex;
  justify-content: flex-end;
  padding-top: 26px;
}

.swiper.event-swiper {
  /* max-width: 1010px; */
  width: 100%;
  padding-left: 30px;
  padding-right: 120px;
}

.event-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  height: auto;
  width: 300px;
}

.event-swiper .swiper-slide .thumbnail_wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.event-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-swiper .event-thumb-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-swiper .event-info {
  padding: 10px 0;
  margin-top: 0;
  min-height: 120px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.event-swiper__pagination {
  display: none;
}

.event-swiper__button {
  display: none;
}

.swiper.event-style-swiper .swiper-button-prev[aria-disabled=true],
.swiper.event-swiper .swiper-button-next[aria-disabled=true] {
  background: #9096a3;
  opacity: 1;
  pointer-events: none;
}


.event-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-third);
  letter-spacing: 3px;
  margin-top: 12px;
}

.event-title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 10px;
  margin-top: 6px;
}

.event-date,
.event-place {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-top: 6px;
  margin-left: 2px;
}

.event-date {
  margin-top: 15px;
}

.event-date span {
  letter-spacing: 1.4px;
}

.event-section-right .view-more-link {
  display: none;
}

@media screen and (max-width: 768px) {
  section#event {
    padding-top: 126px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-section-inner {
    flex-direction: column;
    row-gap: 20px;
  }

  .event-section-left {
    flex: 0;
    display: block;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: unset;
  }

  .event-section-left .view-more-link {
    display: none;
  }

  .event-section-left h2 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
  }

  .event-section-left p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
  }

  .event-section-right {
    flex: 1;
    width: 100%;
    display: block;
    padding-top: 26px;
  }

  .event-section-right .view-more-link {
    display: block;
    margin-top: 47px;
  }

  #event .swiper.event-swiper {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  #event .event-swiper .swiper-wrapper {
    height: auto;
  }

  #event .event-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    height: auto;
    width: 240px;
  }

  #event .event-swiper .event-info {
    padding: 10px 0;
    margin-top: 0;
    min-height: 120px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  #event .event-swiper__controls {
    display: grid;
    grid-template-columns: 123px 1fr;
    align-items: center;
    margin-block-start: 37px;
  }

  #event .event-swiper__button {
    display: block;
    position: relative;
    height: 40.5px;
    width: 100%;
  }

  #event .event-swiper__button-prev,
  #event .event-swiper__button-next {
    position: absolute;
    top: initial;
    bottom: 0;
    z-index: 2;
    width: 40.5px;
    height: 40.5px;
    background: var(--color-third);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  #event .event-swiper__button-prev {
    left: 0;
  }

  #event .event-swiper__button-next {
    left: 50px;
  }

  #event .event-swiper__button-prev::after,
  #event .event-swiper__button-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url(assets/images/arrow_white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
  }

  #event .event-swiper__button-prev::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }

  #event .event-swiper__button-prev[disabled],
  #event .event-swiper__button-next[disabled] {
    background: #9096a3 !important;
  }

  #event .event-swiper__pagination {
    margin-top: 14px;
    position: relative;
    display: block;
    padding-left: 45px;
    text-align: left;
  }

  .swiper-pagination-fraction {
    font-size: 0;
  }

  .swiper-pagination-fraction .swiper-pagination-total {
    margin-left: 7px;
  }

  .swiper-pagination-fraction .swiper-pagination-current,
  .swiper-pagination-fraction .swiper-pagination-total {
    font-size: 11px;
    letter-spacing: -0.1em;
    line-height: 1.75;
    color: var(--color-accent);
  }

  .event-swiper__pagination::before {
    position: absolute;
    content: "EVENT";
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    line-height: 1.75;
    color: var(--color-accent);
    top: 0;
    left: 0;
  }

  .event-swiper__pagination::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 50px;
    width: 10px;
    height: 1px;
    rotate: -76deg;
    background: var(--color-accent);
  }

  .event-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-third);
    letter-spacing: 0.18em;
    margin-top: 17px;
  }

  .event-title {
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid var(--color-accent);
    min-height: 40px;
    margin-top: 5px;
  }

  .event-date,
  .event-place {
    font-size: 10px;
    color: var(--color-accent);
    letter-spacing: 0.18em;
    margin-top: 6px;
    margin-left: 0px;
  }

  .event-date {
    margin-top: 17px;
  }

  .event-date span {
    font-weight: 300;
    letter-spacing: 0.08em;
  }
}

/* ------------------ 一覧 -------------------------- */
body.archive h1 {
  font-size: 34px;
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 5.5px;
  color: var(--color-primary);
}

body.archive h1 span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-left: 48px;
}



/* ------------------ SP -------------------------- */
@media screen and (max-width: 768px) {

  /* Utility */
  .hidden-pc {
    display: block !important;
  }

  .hidden-pc-inline {
    display: inline-block !important;
  }

  .hidden-sp {
    display: none !important;
  }

  /* Container */
  .container {
    box-sizing: border-box;
    width: 100%;
    padding-inline: 20px;
  }

  .container-left {
    width: 100%;
    margin: 0;
  }

  /*  view-more-link */
  .view-more-link {
    width: 100px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .view-more-link::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 10px;
    height: 10px;
    background-image: url(assets/images/arrow_gray.svg);
    background-size: contain;
    transform: translateY(0%);
  }

  /* Header Section */
  .header {
    padding-block: 26px;
  }

  .header__inner {
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
  }

  .header__logo {
    font-size: 14px;
  }

  .header__logo a {
    font-size: 14px;
  }

  .header__icon {
    width: 28px;
    top: 26px;
    right: 20px;
  }

  .header__nav {
    display: none;
  }

  /* Drawer Section */
  .drawer {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    translate: 101% 0;
    background: #ededef;
    z-index: 50;
    overflow: scroll;
  }

  .drawer-icon {
    position: absolute;
    top: 30px;
    right: 20px;
  }

  .drawer__inner {
    box-sizing: border-box;
    padding-top: 100px;
    padding-inline: 20px 40px;
    padding-bottom: 100px;
    margin-inline: auto;
    max-width: 440px;
  }

  .drawer-logo img {
    width: 183px;
    height: 24px;
  }

  .drawer__links {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .drawer__link {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    border-bottom: 1px solid var(--color-accent);
  }

  .drawer__link-text {
    font-size: 13px;
    letter-spacing: 0.24em;
    line-height: 2;
    font-weight: 500;
    color: var(--color-accent);
  }

  .drawer__link .top-arrow {
    width: 13px;
    height: 13px;
  }

  .drawer__nav {
    margin-top: 45px;
  }

  .drawer__nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 30px;
    margin: 0;
    padding: 0;
  }

  .drawer__nav-item {
    list-style: none;
  }

  .drawer__nav-link {
    display: flex;
    column-gap: 15px;
    align-items: flex-end;
  }

  .drawer__nav-link.drawer__nav-link--gap-s {
    column-gap: 7px;
  }

  .drawer__nav-link--en {
    font-size: 14px;
    letter-spacing: 0.16em;
    font-weight: 500;
  }

  .drawer__nav-link--jp {
    font-size: 7px;
    letter-spacing: 0.16em;
  }

  .drawer__bottom {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 20px;
  }

  .drawer__tel {
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .drawer__tel .drawer__tel--s {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .drawer__address {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 2.3;
    font-weight: 400;
  }

  .drawer__map {
    position: relative;
    padding-left: 10px;
    padding-bottom: 4px;
    font-size: 9.11px;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    width: fit-content;
    border-bottom: 1px solid var(--color-primary);
  }

  .drawer__map::after {
    content: "\2197";
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    color: var(--color-primary);
    position: absolute;
    top: -2px;
    right: -17px;
  }

  .drawer__bottom-right {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }

  .drawer__social {
    display: flex;
    align-items: center;
    column-gap: 15px;
  }

  .drawer__social img {
    width: 18px;
    height: 18px;
  }

  .drawer__privacy {
    margin-top: 42px;
  }

  .drawer__privacy a {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  /* Footer Section */
  .footer {
    padding-top: 35px;
    padding-bottom: 0px;
    font-size: 13px;
    color: var(--color-primary);
    border-top: none;
    margin-top: 0px;
  }

  .footer-inner {
    gap: 0px;
    flex-direction: column;
    display: grid;
    grid-template-areas:
      "brand links"
      "social social"
      "copy copy";
    grid-template-columns: auto 1fr;
    column-gap: 50px;
  }

  .footer-col.footer-brand {
    grid-area: brand;
    order: 1;
    margin-bottom: 0px;
    display: grid;
    grid-template-areas:
      "logo "
      "company "
      "address "
      "map"
      "tel";
    column-gap: 17px;
    text-align: left;
    max-width: 100%;
  }

  .footer-brand .footer-copyright {
    display: none;
  }

  .footer-center {
    order: 3;
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-logo {
    grid-area: logo;
  }

  .footer-company {
    grid-area: company;
    font-size: 14.27px;
    letter-spacing: 0.06em;
    margin-top: 34px;
    margin-bottom: 0px;
  }

  .footer-address {
    grid-area: address;
    margin-top: 16px;
    margin-bottom: 0px;
    font-size: 11.1px;
    line-height: 2.3;
    letter-spacing: 0.1em;
  }

  .footer-map {
    display: flex;
    grid-area: map;
    align-self: flex-end;
    margin-bottom: 6px;
    padding-bottom: 3px;
    margin-top: 0px;
    font-size: 11px;
    letter-spacing: 0.06em;
    width: 27px;
    margin-left: 37px;
  }

  .footer-map::after {
    margin-left: 11px;
  }

  .footer-tel {
    position: relative;
    grid-area: tel;
    margin-bottom: 0px;
    font-size: 11.89px;
    letter-spacing: 0.1em;
    margin-top: 27px;
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 14px;
  }

  .footer-tel::before {
    content: "tel";
    display: block;
    font-size: 11.89px;
    color: var(--color-primary);
    margin-bottom: 0px;
    letter-spacing: 1.2px;
  }

  .footer-tel::after {
    content: "";
    position: absolute;
    width: 88px;
    height: 1px;
    background: var(--color-accent);
    bottom: -3px;
    left: 30px;
  }

  .footer-links {
    order: 2;
    gap: 30px;
  }

  .footer-links-inner {
    width: 230px;
    padding-bottom: 10px;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--color-accent);
  }

  .footer-links a {
    font-size: 12.12px;
    font-weight: 500;
    letter-spacing: 0.24em;
  }

  .footer-col.footer-links {
    width: 100%;
    min-width: 220px;
    max-width: 100%;
    margin-top: 86px;
  }

  .footer-links .top-arrow {
    width: 10px;
    height: 10px;
  }

  .footer-copyright {
    font-size: 11px;
    color: var(--color-accent);
    margin-top: 32px;
    letter-spacing: 0.4px;
    margin-top: 84px;
  }

  .footer-nav {
    display: none;
  }

  .footer-arrow {
    font-size: 20px;
    color: var(--color-accent);
    margin-left: 6px;
    position: relative;
    top: 2px;
  }

  .footer-social {
    grid-area: social;
    margin-top: 80px;
  }

  .footer-social-links {
    grid-area: links;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-social-inner {
    display: flex;
    align-items: center;
    margin-bottom: 11px;
  }

  .footer-social-links img {
    width: 18px;
    height: 18px;
    padding-left: 6px;
    object-fit: contain;
  }

  .footer-social-links a {
    font-size: 12px;
    padding-left: 0;
    letter-spacing: 0.16em;
    gap: 6px;
  }

  .footer-social .footer-policy {
    display: none;
  }

  .footer-col.footer-nav {
    display: none;
  }

  .footer-nav-ja {
    font-size: 8px;
    font-family: var(--font-dnp), sans-serif;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-left: 16px;
    margin-top: 6px;
    white-space: nowrap;
  }

  .footer-copy-wrap {
    grid-area: copy;
    box-sizing: border-box;
    padding-inline: 3px;
    margin-top: 110px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    order: 4;
  }

  .footer-copy-wrap::before {
    content: "";
    position: absolute;
    width: calc(100% + 40px);
    height: 1px;
    background: var(--color-accent);
    left: -20px;
    top: 0;
  }

  .footer-copy-wrap .footer-copyright {
    margin-top: 0;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .footer-copy-wrap .footer-policy {
    padding-left: 0;
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--color-accent);
  }

  /* ------------------ 一覧 -------------------------- */
  body.archive h1 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
  }

  body.archive h1 span {
    font-size: 10px;
    margin-left: 13px;
  }

  .pagination-container {
    width: 95%;
  }
}

/* ------------ 500px以下 ------------------*/
@media screen and (max-width: 500px) {
  .footer-inner {
    gap: 0px;
    display: flex;
    flex-direction: column;
  }

  .footer-col.footer-brand {
    grid-template-areas:
      "logo logo"
      "company company"
      "address map"
      "tel  tel";
  }
}

/* Pagination Styles */
.pagination-container {
  width: 63.75%;
  max-width: 1020px;
  margin: 0 auto;
}

.pagination {
  display: flex;
  align-items: center;
  font-weight: 300;
}

.pagination-left,
.pagination-center,
.pagination-right {
  flex: 1 1 0%;
}

.pagination-left {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
}

.pagination-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 0%;
  text-align: center;
}

.pagination-right {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.archive .page-numbers {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: var(--color-third);
}

.archive .page-numbers:hover {}

.archive .page-numbers.current {
  color: #a8aaae;
}

.nav-links .page-numbers.next {
  margin-left: 140px !important;
}

.pagination .nav-links .page-numbers.next {
  margin-left: 60px !important;
}

.prev-link,
.next-link {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: var(--color-third);
  font-size: 14px;
  letter-spacing: 2.5px;
}

.prev-link:hover,
.next-link:hover {
  background-color: #f5f5f5;
}

.top-arrow-link {
  display: inline-block;
  text-decoration: none;
  letter-spacing: 2.5px;
}

.top-arrow {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

body.archive .top-arrow {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.prev-arrow-link .top-arrow {
  transform: rotate(180deg);
}

.pagination-center .nav-links .prev.page-numbers,
.pagination-center .nav-links .next.page-numbers {
  display: none !important;
  /* 強制的に非表示 */
}

/* Disabled state for pagination */
.prev-link.disabled,
.next-link.disabled,
.top-arrow-link.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .pagination-container {
    width: 95%;
  }

  .pagination-container .pagination {
    gap: 16px;
  }

  .nav-links {
    font-size: 11px;
    font-weight: 400;
    gap: 10px;
  }

  .pagination-left,
  .pagination-right {
    gap: 5px;
  }

  .pagination-left {
    justify-content: flex-end;
  }

  .pagination-right {
    justify-content: flex-start;
  }

  .prev-link,
  .next-link {
    display: none;
    padding: 0;
  }

  body.archive .top-arrow {
    width: 8px;
    height: 8px;
  }

  .archive .page-numbers {
    padding: 8px 5px;
  }
}


/* tag */
.post-tags {
  margin: 0;
  padding-inline-start: 0;
}

.post-tags li {
  width: 100%;
  list-style: none;
  display: inline-block;
  margin-bottom: 10px;
}

.post-tags li a {
  font-size: 13px;
  font-weight: 400;
}

/* ------------------ Hero Side Links -------------------------- */
.hero-side-links {
  position: fixed;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 20;
}

.hero-side-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: auto;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid #fff;
  border-radius: 999px;
  font-size: 13px;
  color: #fff;
  font-family: var(--font-tt-commons), sans-serif;
  letter-spacing: 2.2px;
  writing-mode: vertical-rl;
  padding: 20px 1px 20px 0;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, color 0.2s;
}

.hero-side-links.bg-navy .hero-side-link {
  background: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.hero-side-links .hero-side-link:hover,
.hero-side-links.bg-navy .hero-side-link:hover {
  background: white;
  color: var(--color-primary);
  border-color: var(--color-accent);
}

@media screen and (max-width: 768px) {
  .hero-side-links {
    display: none;
  }
}