@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

p, div, li, a {
  font-size: 0.9rem;
  letter-spacing: 0.125em;
}

.font-small {
  font-size: 0.75rem;
  letter-spacing: -0.025rem;
}

html {
  font-size: 100%;
}

body {
  position: relative;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #161616;
}

* {
  margin: 0px;
  padding: 0px;
}

*, div, dt, dd, li, input, select, textarea {
  box-sizing: border-box;
}

/*reCAPTCHAの非表示*/
.grecaptcha-badge { visibility: hidden; }

/* ===== MAIN WRAPPER ===== */
.content {
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
  padding: 50px 0;
}

.main {
  position: relative;
}

a {
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.6s;
  color: #161616;
}
a:hover {
  color: #006934;
}

ul {
  list-style-type: none;
}

li {
  text-decoration: none;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
}

img, video {
  width: 100%;
  height: auto;
}

.bold {
  font-weight: 700;
}

.pc-nodisplay {
  display: none;
}

.sp-display {
  display: block;
}

/* タブレット・横長スマホ (768px以下) */
@media (max-width: 768px) {
  .content {
    width: 90%;
  }
  .pc-nodisplay {
    display: block;
  }
  .sp-display {
    display: none;
  }
}
.info__icon {
  width: 45px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}

.info__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: space-between;
}

.info__item {
  width: 24%;
}
.info__item a {
  display: inline-block;
  background-color: #eee;
  padding: 30px 15px;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  border: 2px solid #eee;
}
.info__item a:hover {
  background-color: #FFFFFF;
  color: #252E6B;
}
.info__item p {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 0.95rem;
}

.header .header__btn {
  padding: 8px 15px;
  color: #fff;
  border-radius: 5px;
  transition: 0.6s;
}

.header .header__franchise-btn {
  background-position: 0px 50%;
  background: linear-gradient(90deg, #ff4800, #ffcc00, #FF4D00) 0px 50%/200%;
  padding: 10px 17px;
}
.header .header__franchise-btn:hover {
  background-position: 100% 50%;
}
.header .header__contact-btn {
  background-color: #252E6B;
  transition: all 0.6s;
  border: 2px solid #252E6B;
  box-sizing: border-box;
}
.header .header__contact-btn:hover {
  opacity: 0.8;
}
.header .header__company-btn {
  background-color: #cecece;
  color: #161616;
  border: 2px solid #cecece;
}
.header .header__company-btn:hover {
  opacity: 0.8;
}

.header__nav-list-up {
  margin-bottom: 15px;
  justify-content: end;
  padding-right: 10px;
}
.header__nav-list-up .header__nav-item {
  margin-left: 15px;
}

.btn a {
  display: inline-block;
  font-size: 1rem;
  padding: 12px 36px;
  border: 2px solid #fff;
  color: #fff;
  margin-top: 30px;
  border-radius: 8px;
}

.header {
  height: auto;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #8f8f8f;
  background-color: #FFFFFF;
}

.header__inner {
  position: relative;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: -0.025rem;
  font-weight: 600;
  line-height: 1;
  color: #161616;
  z-index: 999;
  display: block;
  height: 100%;
}

.current {
  color: #006934;
}

/* ─────────────── NAV ─────────────── */
.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.88rem;
}

.header__menu-item {
  line-height: 1;
}

.header__nav {
  display: block;
  padding: 0;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: right;
  visibility: visible;
  opacity: 1;
  position: relative;
  background-color: transparent;
}

.header__menu-item {
  border-bottom: none;
}
.header__menu-item a {
  font-size: 16px;
}
.header__menu-item a:hover {
  color: #006934;
}

.header__nav__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
  height: 100%;
}

.toggle__btn {
  display: none;
}

@media (max-width: 1200px) {
  .header__menu-item a {
    font-size: 1.25vw;
  }
}
/* タブレット・横長スマホ (768px以下) */
@media (max-width: 768px) {
  .header {
    position: fixed;
    height: 60px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .header__inner {
    width: 90%;
  }
  .main {
    margin-top: 60px;
  }
  /*=========================================
  #hamburger
  =========================================*/
  .toggle__btn {
    display: block;
    position: fixed;
    top: 14px;
    right: 10%;
    z-index: 150;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .toggle__btn.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .toggle__btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .toggle__btn.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  .toggle__btn span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #161616;
    transition: transform 0.3s;
  }
  .toggle__btn.is-active span {
    background-color: #161616;
  }
  .toggle__btn span:nth-child(1) {
    top: 30%;
  }
  .toggle__btn span:nth-child(2) {
    top: 60%;
  }
  .toggle__btn span:nth-child(3) {
    top: 90%;
  }
  body.noscroll {
    overflow: hidden;
  }
  /*=========================================
  #drawer
  =========================================*/
  .header__nav {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 10% px;
  }
  .header__nav.is-active {
    visibility: visible;
    opacity: 1;
  }
  .header__menu {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .header__menu-item {
    padding: 1.5rem;
    border-bottom: 1px solid #8f8f8f;
  }
  .header__menu-item a {
    font-size: 3.25vw;
  }
}
.footer {
  border-top: 1px solid #161616;
  margin-top: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
}

.footer__copyright-text {
  text-align: center;
  letter-spacing: 0;
  color: #686868;
  font-size: 0.7rem;
}

/* タブレット・横長スマホ (768px以下) */
@media (max-width: 768px) {
  .footer {
    padding: 3% 0;
  }
}
.front .content {
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-right: 10%;
}

/* ─────────────── HONEYCOMB AREA ─────────────── */
.mv-hexagon__wrapper {
  display: flex;
  flex-wrap: wrap;
  --wrapper-width: 100%;
  width: var(--wrapper-width); /* 全体の大きさを変更できる */
  /* margin-right: calc(-1 * var(--wrapper-width) / 4 * 0.25 * 2 - var(--wrapper-width) / 4 * 0.05 * 2); */
  /* margin-bottom: 20%; */
}

.honeycomb-area {
  flex: 6;
  display: flex;
  justify-content: left;
  margin: 0 calc(43% - 50vw);
  width: 100vw;
  transform: translateY(-7%);
}

.mv-hexagons {
  width: 25%;
}

.clip-path {
  filter: drop-shadow(5px 5px 10px #e8e8e8);
  margin-bottom: 10px;
}

.mv-hexagon_hexagon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 200/173; /* 正六角形になる比率 */
  background-color: #ffffff;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.mv-hexagon_hexagon > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 97%;
  height: 97%;
  background-color: #ffffff;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* 2行目と3行目の六角形を上にずらして縁を重ねる */
.mv-hexagon_hexagon:nth-of-type(2),
.mv-hexagon_hexagon:nth-of-type(4) {
  margin-top: 3%;
}

/* 中央の列を下にずらす */
/* .honeycomb-area .hexagons-center, */
/* {
	transform: translateY(calc(100% / 6));
} */
.honeycomb-area .mv-hexagons-first,
.honeycomb-area .hexagons-center {
  transform: translateY(-6.25%);
}

/* 2列目と3列目の六角形を左にずらして縁を重ねる */
.honeycomb-area .hexagons-left,
.honeycomb-area .hexagons-center {
  margin-left: -2.9166666667%;
}

.honeycomb-area .hexagons-right {
  margin-left: -2.9166666667%;
}

.front .mv-hexagon_hexagon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.video-hexagon {
  width: 150%;
  margin-left: 8%;
}

.hexagon-nodisplay {
  filter: none;
}
.hexagon-nodisplay .mv-hexagon_hexagon {
  background: none;
  position: relative;
  z-index: -1;
}

.front .mv-hexagon_hexagon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ─────────────── HERO LAYOUT ─────────────── */
.hero {
  display: flex;
  align-items: flex-start;
  gap: 13vw;
  position: relative;
}

.right-content {
  flex: 4;
  margin-right: 7.5%;
}

/* ─────────────── TAGLINE─────────────── */
.tagline-line {
  color: #161616;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
.tagline-line span {
  display: inline-block;
  line-height: 1.2;
}

.char-large {
  font-size: 120px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.char-small {
  font-size: 70px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.char-medium {
  font-size: 64px;
  font-weight: 400;
}

.font1,
.font3,
.font5,
.font8,
.font9 {
  opacity: 0;
  animation: textanimation 1.5s forwards;
}

.font1 {
  animation-delay: 0.2s;
}

.font3 {
  animation-delay: 0.5s;
}

.font4 {
  transform: translateY(25px);
}

.font5 {
  transform: rotate(-3deg);
  animation-delay: 0.8s;
}

.font7 {
  transform: rotate(3deg);
}

.font8 {
  transform: rotate(4deg);
  animation-delay: 1.1s;
}

.font9 {
  transform: rotate(-4deg);
  animation-delay: 1.4s;
}

@keyframes textanimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv-icon {
  max-width: 480px;
  width: 70%;
  margin: 15px auto;
}

/* ─────────────── TOPICS ─────────────── */
.topics__section {
  font-family: "Noto Sans JP", sans-serif;
}

.topics__label {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.topics__list {
  font-size: 14px;
}
.topics__list a {
  display: flex;
  flex-wrap: nowrap;
}

.topics__item {
  margin-bottom: 3px;
}

.topics__title {
  margin-left: 1rem;
}

/* タブレット・横長スマホ (768px以下) */
@media (max-width: 768px) {
  .front .content {
    margin-right: 0;
  }
  .right-content {
    flex: none;
    width: 90%;
    margin: 0 auto;
  }
  .hero {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .honeycomb-area {
    transform: none;
    margin: 0 calc(17% - 50vw);
    width: 120vw;
  }
  .honeycomb-area,
  .right-content {
    flex: none;
  }
  .mv-hexagon__wrapper {
    --wrapper-width: 100%;
    font-size: 3vw;
  }
  .char-large {
    font-size: 25.66vw;
  }
  .char-small {
    font-size: 10.83vw;
  }
  .char-medium {
    font-size: 9.88vw;
  }
  .topics__section {
    width: 100%;
    margin: 0 auto;
  }
  .topics__section .topics__item {
    font-size: 1.6vw;
  }
}
/* スマホ (480以下) */
.contact-inner {
  max-width: 580px;
  margin: 0 auto;
}

/* ===== INTRO TEXT ===== */
.intro {
  margin-bottom: 1.8rem;
  line-height: 2;
  font-size: 0.88rem;
  letter-spacing: 0.1rem;
  color: #333;
}

/* ===== FORM ===== */
.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.form-field {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-top: 8px;
  color: #333;
  margin-right: 1rem;
}

.badge-required {
  display: inline-block;
  background: #cc1111;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  font-weight: 500;
}

.form-input-wrap {
  flex: 1;
}

.form-input-wrap input[type=text],
.form-input-wrap input[type=email],
.form-input-wrap input[type=tel],
.form-input-wrap textarea {
  width: 100%;
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 8px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.88rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.form-input-wrap input:focus,
.form-input-wrap textarea:focus {
  border-color: #888;
}

.form-input-wrap textarea {
  resize: vertical;
  min-height: 130px;
}

/* Note text below email confirm */
.form-note {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.7;
  margin-top: 0.3rem;
  margin-bottom: 1.4rem;
}

/* ===== SUBMIT BUTTON ===== */
.submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.btn-submit {
  background: #fff;
  border: 1px solid #000000;
  border-radius: 15px;
  padding: 10px 40px;
  font-size: 0.92rem;
  color: #161616;
  cursor: pointer;
  transition: all 0.6s;
}

.btn-submit:hover {
  background: #006934;
  color: #fff;
  border: 1px solid #006934;
}

.contact .wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.step-label {
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.step-label__item {
  position: relative;
  background-color: #ebebeb;
  color: #161616;
  font-size: 0.8rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 30px;
  width: 100%;
}
.step-label__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  border-top: solid 15px transparent;
  border-bottom: solid 15px transparent;
  border-left: solid 20px #ebebeb;
}
.step-label__item:nth-child(2) {
  margin: 0 30px;
}
.step-label__item.current {
  color: #fff;
  background-color: #000;
}
.step-label__item.current::before {
  border-left: solid 20px #000;
}

.contact-confirm .form-field {
  padding-top: 0;
}

.confirm-submit-wrap p {
  display: flex;
}

.wpcf7-previous {
  padding: 10px 40px;
  margin-right: 1rem;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #000;
  transition: all 0.6s;
  box-sizing: border-box;
}
.wpcf7-previous:hover {
  background-color: #e5e5e5;
  border: 1px solid #e5e5e5;
}

.cintact-confirm .form-field {
  padding-top: 0;
}

/* タブレット・横長スマホ (768px以下) */
@media (max-width: 768px) {
  .form-row {
    flex-wrap: wrap;
  }
  .form-field,
  .form-input-wrap {
    width: 100%;
  }
  .form-field {
    justify-content: start;
    margin-bottom: 5px;
  }
}
.company-inner {
  display: flex;
  -moz-column-gap: 80px;
       column-gap: 80px;
  padding: 80px 5%;
}

.section__message {
  flex: 1;
}

/* ── LEFT COLUMN ── */
.message__content-title {
  font-size: 1.2rem;
  letter-spacing: 0.14vw;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.message__content-text {
  font-size: 1rem;
  letter-spacing: 0.14vw;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.sign {
  width: 150px;
  margin-left: auto;
  margin-right: 0;
}

/* ── RIGHT COLUMN ── */
.right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* CEO PHOTO */
.ceo__image {
  width: 15vw;
  margin: 0 auto;
  margin-bottom: 10px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.info-table td {
  padding: 12px 0;
  vertical-align: top;
  word-break: break-word;
}

.info-table .label {
  font-size: 1rem;
  letter-spacing: 0.12em;
  width: 80px;
  padding-right: 16px;
  white-space: nowrap;
}

.info-table .sep {
  padding: 12px 8px 12px 0;
  font-size: 1rem;
}

.info-table .value {
  font-size: 1rem;
  line-height: 1.3;
}

/* Map */
.map-wrap {
  width: 60%;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 8px;
}

.map-wrap iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: none;
  filter: grayscale(0.2);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 180px;
  background: #e8e8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 12px;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-card {
  animation: fadeUp 0.6s ease both;
}

.info-table tr,
.ceo__image,
.message__content {
  animation: fadeUp 0.8s ease both;
}

.info-table tr:nth-child(1) {
  animation-delay: 0.1s;
}

.info-table tr:nth-child(2) {
  animation-delay: 0.15s;
}

.info-table tr:nth-child(3) {
  animation-delay: 0.2s;
}

.info-table tr:nth-child(4) {
  animation-delay: 0.25s;
}

.info-table tr:nth-child(5) {
  animation-delay: 0.3s;
}

.info-table tr:nth-child(6) {
  animation-delay: 0.35s;
}

.info-table tr:nth-child(7) {
  animation-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .company-inner {
    padding: 80px 0;
    flex-direction: column;
  }
  /* CEO PHOTO */
  .ceo__image {
    width: 30vw;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 40px;
  }
  .company-inner {
    padding: 0;
    flex-wrap: wrap;
  }
  /* CEO PHOTO */
  .ceo__image {
    width: 50vw;
    margin-bottom: 1.5rem;
  }
  .section__message,
  .right-col {
    width: 100%;
  }
  .section__message {
    margin-bottom: 80px;
  }
  .company table, .company tbody, .company tr, .company th, .company td {
    display: block;
  }
  .company .sep {
    display: none;
  }
  .info-table tr {
    margin-bottom: 1rem;
  }
  .info-table td {
    padding: 0;
  }
  .map-wrap {
    width: 90%;
  }
}
.page-id-17 {
  background-color: #f6ebcf;
}

.works {
  background-color: #fff;
}
.works 　.page__wrap {
  background-color: #FFFFFF;
}
.works .content-box {
  padding: 0;
  padding-top: 50px;
}
.works .content {
  padding-bottom: 0;
}

.works__inner {
  padding-top: 30px;
}

.works__video-box {
  max-width: 680px;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  border: 1px solid #161616;
  border-top: none;
  padding: 0px 50px 30px 50px;
  position: relative;
}
.works__video-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: calc(100% + 100px);
  height: 20px;
  border: 1px solid #161616;
  transform: translateX(-50px);
}
.works__video-box iframe {
  width: 100%;
  height: 100%;
}

.works__sub-title {
  text-align: center;
  font-size: 1.2rem;
  margin: 30px 0;
}

.works-info__box {
  position: relative;
  background-color: #f6ebcf;
  padding: 30px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.works-info__inner {
  position: relative;
  max-width: 680px;
  width: 90%;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
}

.works-info__list {
  position: relative;
}

.works-info__inner {
  position: relative;
}
.works-info__inner::before {
  content: url("../images/works-icon1.svg");
  position: absolute;
  width: 160px;
  height: auto;
  top: calc(-160px - 3%);
  left: -165px;
}
.works-info__inner::after {
  content: url("../images/works-icon2.svg");
  position: absolute;
  width: 63px;
  height: auto;
  top: 0px;
  right: -94px;
}

@media (max-width: 900px) {
  .works-info__box {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .works-info__inner {
    padding-top: 65px;
  }
  .works-info__inner::before {
    width: 12.333vw;
    top: -29%;
    left: 4%;
  }
  .works-info__inner::after {
    width: 5.2vw;
    top: -23%;
    right: 4%;
  }
}
/* タブレット・横長スマホ (768px以下) */
@media (max-width: 768px) {
  .works .content {
    padding-bottom: 0;
  }
  .works__video-box {
    padding: 0px 5% 3% 5%;
  }
  .works__video-box::before {
    width: calc(100% + 7vw);
    transform: translateX(-3.5vw);
  }
  .works-info__inner {
    width: 100%;
  }
  .works-info__inner::before {
    width: 13.333vw;
    top: -24%;
  }
  .works-info__inner::after {
    width: 7vw;
    top: -26%;
  }
}
@media (max-width: 710px) {
  .works-info__inner::before {
    top: -22%;
  }
  .works-info__inner::after {
    top: -23%;
  }
}
@media (max-width: 660px) {
  .works-info__inner::before {
    top: -14%;
  }
  .works-info__inner::after {
    top: -16%;
  }
}
@media (max-width: 580px) {
  .works-info__inner::before {
    top: -13%;
  }
  .works-info__inner::after {
    top: -11%;
  }
}
@media (max-width: 530px) {
  .works-info__inner::before {
    top: -10%;
  }
  .works-info__inner::after {
    top: -9%;
  }
}
/* スマホ (480px以下) */
@media (max-width: 480px) {
  .works-info__inner {
    padding-top: 50px;
  }
  .works-info__inner::before {
    top: -6%;
  }
  .works-info__inner::after {
    top: -6%;
  }
  .topics__list a {
    display: block;
    margin-bottom: 1rem;
  }
  .topics__title {
    margin-left: 0;
  }
}
@media (max-width: 400px) {
  .works-info__inner::before {
    top: -4%;
  }
  .works-info__inner::after {
    top: -4%;
  }
}
@media (max-width: 380px) {
  .works-info__inner {
    padding-top: 30px;
  }
}
.page-id-21 {
  background-color: #335d40;
}

#event .content-box {
  padding: 0;
}

.event__inner {
  position: relative;
  margin: 0 auto;
}

.event__heading {
  color: white;
}
.event__heading h2 {
  font-size: 58px;
  padding: 15px 30px;
  text-align: left;
  font-weight: 400;
}
.event__heading .text-animation__list {
  background-color: rgb(0, 42, 0);
  padding: 8px 0;
}
.event__heading .text-animation__item {
  margin-right: 20px;
}
.event__heading .text-animation__item img {
  height: 100%;
}
.event__heading .text-animation {
  max-height: 50px;
  height: 5vh;
}
.event__heading .text-animation img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 比率を維持して隙間なく埋める */
  -o-object-position: center;
     object-position: center; /* 中央に配置 */
}
.event__heading p {
  font-size: 1.6rem;
}

.event-slider__list {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  border-bottom: 10px solid #FFFFFF;
}

.event-slider__item {
  width: 20%;
  position: relative;
}
.event-slider__item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.event-bottom {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-cell {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.video-cell video {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.event-flyer {
  flex: 2;
}
.event-flyer p {
  font-size: 0.7rem;
  text-align: center;
}

.event-info__img {
  transition: opacity 0.3s;
  cursor: pointer;
  z-index: 2;
}
.event-info__img:hover {
  opacity: 0.8;
}

.event-info {
  position: relative;
  flex: 3;
  background-color: #335D40;
  padding-bottom: 30px;
}

.event__heading::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: auto;
  background-image: url("../images/events/event-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -20px;
  right: 5%;
  width: 240px;
  height: 100%;
}

.event-flyer__inner {
  display: flex;
  flex: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 10px;
}

.event-schedule {
  flex: 4;
}
.event-schedule h3 {
  font-size: 1.6rem;
}

.event-info__box {
  flex: 3;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 15px 10px;
  border: 10px solid #fff;
  border-radius: 15px;
  color: #FFFFFF;
  background-color: rgba(0, 39, 0, 0.775);
  height: 90%;
}

.event-schedule__text {
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.event-info__text {
  flex: 3;
}

.event-info__date {
  font-size: 0.6rem;
  display: inline-block;
  color: #FFFFFF;
  background-color: #000;
  padding: 3px 20px;
  margin-bottom: 10px;
  border-radius: 3px;
}

.schedule-box {
  display: flex;
  max-width: 480px;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: space-between;
  background-color: #FFFFFF;
  color: #161616;
  padding: 20px;
  border-radius: 5px;
}

.line-qr__box {
  width: 9vw;
  max-width: 100px;
}
.line-qr__box p {
  font-size: 0.8rem;
  letter-spacing: -0.025rem;
  color: #00ac50;
  text-align: center;
  line-height: 1.2;
}

.line-qr__box-text {
  position: relative;
}
.line-qr__box-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #00ac50;
  transform: rotate(-15deg);
}
.line-qr__box-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #00ac50;
  transform: rotate(15deg);
}

.schedule__item {
  display: flex;
  flex-wrap: nowrap;
  font-size: 0.7rem;
}

.event__title {
  margin-left: 0.5rem;
}

/* モーダルのスタイル */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* 背景色 */
  opacity: 0; /* 初期状態では透明 */
  visibility: hidden; /* 初期状態では不可視 */
  transition: opacity 0.5s, visibility 0.5s; /* アニメーション効果 */
}

/* モーダルの画像スタイル */
.modal__content {
  display: block;
  width: 80%;
  max-width: 700px;
}

/* モーダルの閉じるボタン */
#close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* PC (1200px以下) */
@media (max-width: 1200px) {
  .event__heading h2 {
    font-size: 4.6vw;
  }
  .event__heading::before {
    width: 20vw;
  }
}
@media (max-width: 1024px) {
  .schedule__item {
    display: block;
  }
  .event-bottom {
    flex-wrap: wrap;
    padding-top: 30px;
  }
  .event-info__box {
    flex: none;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
  .event-flyer,
  .event-schedule {
    flex: none;
    width: 100%;
  }
  .event-schedule h3 {
    margin-top: 30px;
    text-align: center;
  }
  .event-schedule .event-schedule__text {
    margin-bottom: 15px;
    text-align: center;
  }
  .video-cell {
    flex: none;
    width: 30vw;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .schedule-box {
    flex-wrap: wrap;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
  }
  .event-flyer p {
    font-size: 0.9rem;
  }
  .schedule__item {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  .event-info__date {
    font-size: 1rem;
  }
  .schedule__inner,
  .line-qr__box {
    width: 100%;
    margin: 0 auto;
  }
  .schedule__inner {
    margin-bottom: 2rem;
  }
  .schedule__inner p {
    font-size: 1rem;
  }
  .line-qr__box {
    text-align: center;
  }
  .line-qr__box img {
    width: 20vw;
    margin: 0 auto;
  }
  .line-qr__box p {
    font-size: 3vw;
  }
  .line-qr__box-text {
    width: 20vw;
    margin: 0 auto;
  }
  .line-qr__box-text::after {
    right: -3px;
  }
  .line-qr__box-text::before {
    left: -3px;
  }
}
/* タブレット・横長スマホ (768px以下) */
@media (max-width: 768px) {
  .event__heading h2 {
    font-size: 7vw;
  }
  .event__heading::before {
    width: 35vw;
  }
  .event-bottom {
    padding: 30px 0;
    width: 90%;
  }
  .video-cell {
    width: 50vw;
  }
  .schedule__inner p {
    font-size: 0.9rem;
  }
}
/* スマホ (480以下) */
@media (max-width: 480px) {
  .event__heading .text-animation {
    height: 20px;
    padding: 3px 0;
  }
  #close {
    top: 10%;
  }
  .event-flyer p {
    font-size: 3.2vw;
  }
  .event-schedule h3 {
    font-size: 6.8vw;
  }
  .schedule__inner p {
    font-size: 4vw;
  }
  .event-info__date {
    font-size: 3.8vw;
  }
  .event-schedule .event-schedule__text {
    font-size: 3.8vw;
  }
  .schedule-box {
    padding: 20px 15px;
  }
}
@media (max-width: 375px) {
  .schedule__inner p,
  .schedule-date {
    font-size: 3.8vw;
  }
}
.about .content,
.service .content {
  padding: 50px 0 0 0;
}

.honeycomb-image-area {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 13%;
}

.hexagon5__wrapper {
  display: flex;
  gap: 10%;
  flex-wrap: wrap;
  --wrapper-width: 100%;
  width: var(--wrapper-width); /* 全体の大きさを変更できる */
  margin-right: calc(-1 * var(--wrapper-width) / 3 * 0.25 * 2 - var(--wrapper-width) / 3 * 0.05 * 2);
}

.hexagons {
  width: 33.3333333333%;
}

.hexagon-5_hexagon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 200/173; /* 正六角形になる比率 */
  background-color: rgb(74, 74, 74);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  margin-bottom: 20%;
  z-index: 1;
  transform: translate3d(0, 0, 0);
}
.hexagon-5_hexagon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 99%;
  z-index: 2;
  transform: translate3d(0, 0, 0);
}
.hexagon-5_hexagon a:hover {
  color: #FFFFFF;
  background-color: #006934;
}

.hexagon-5_hexagon::before {
  content: "";
  position: absolute;
  width: 99%;
  height: 99%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background-color: #fff;
  z-index: 2;
  transform: translate3d(0, 0, 0);
}

/* 2行目と3行目の六角形を上にずらして縁を重ねる */
.hexagon-5_hexagon:nth-of-type(2),
.hexagon-5_hexagon:nth-of-type(3) {
  margin-top: -5%;
}

/* 中央の列を上にずらす */
.honeycomb-image-area .hexagons-center {
  transform: translateY(-16.6666666667%);
}

/* 2列目と3列目の六角形を左にずらして縁を重ねる */
.honeycomb-image-area .hexagons-center,
.honeycomb-image-area .hexagons-right {
  margin-left: -10%;
}

.hexagons .about__icon {
  max-width: 180px;
  width: 60%;
  margin: 0 auto;
}

.hexagons .about__icon-comunication {
  max-width: 70px;
  width: 35%;
}

.hexagon-center-top .about__icon {
  max-width: 96px;
  width: 36%;
}

.hexagon-text {
  width: 100%;
  z-index: 2;
  text-align: center;
  font-size: 0.8rem;
}
.hexagon-text h3 {
  width: 85%;
  font-weight: 300;
  margin: 0 auto;
  font-size: 3.2em;
  letter-spacing: -0.025em;
  line-height: 1;
  position: relative;
}
.hexagon-text span {
  font-size: 1.9rem;
}

#hexagon-5_medium4 h3 {
  letter-spacing: -0.175em;
}

.space-small {
  font-weight: 300;
  margin: 0 auto;
  font-size: 1em;
  letter-spacing: -0.225em;
}

.hexagon-center-top {
  margin-bottom: 30%;
}
.hexagon-center-top h3 {
  font-size: 1.8rem;
}
.hexagon-center-top img {
  position: relative;
}

.h3-en {
  font-size: 1.4rem;
  letter-spacing: -0.075rem;
}

.hexagons-left,
.hexagons-right {
  margin-top: 5%;
}

.company__name {
  position: absolute;
  bottom: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  letter-spacing: 0;
  text-align: center;
  color: #9F7E4E;
}

.hexagon-large {
  position: relative;
  width: 180%;
  margin: 0 auto;
  transform: translate(-22%, -23%);
  background-color: #EBDFB0;
  z-index: -1;
}
.hexagon-large .hexagon-text {
  padding: 0 20%;
}
.hexagon-large .hexagon-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.hexagon-large .hexagon-text p {
  font-size: 0.8rem;
}

.display-panel {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.hexagon-large::before {
  z-index: -1;
  background-color: #EBDFB0;
}

.about-hexagon__text-large {
  font-size: 42px;
}

.nodisplay {
  display: none;
}

.about-hexagon__text-small {
  font-size: 30px;
}

@keyframes hexagon-animation {
  0% {
    opacity: 0;
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1) translate(0, 0);
  }
}
@keyframes shake-animation {
  0% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-14px);
  }
  30% {
    transform: translateY(10px);
  }
  45% {
    transform: translateY(-14px);
  }
  60% {
    transform: translateY(10px);
  }
  80% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
/* アニメーション */
.hexagon-5_medium {
  opacity: 0;
  animation: hexagon-animation 1s ease-in-out forwards;
}

/* テキストコンテナ */
.text-display {
  position: relative;
  width: 87%;
  margin: 0 auto;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.display-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.team-display-item {
  top: 30px;
}

.display-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.display-item.exiting {
  opacity: 0;
  transform: translateY(-20px);
  position: absolute;
}

.about__text-main {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.about .text-display .display-item:nth-child(2) .item-title {
  font-size: 44px;
}
.about .text-display .display-item:nth-child(4) .item-title {
  font-size: 37px;
}
.about .text-display .display-item:nth-child(5) .item-title {
  font-size: 44px;
}
.about .text-display .display-item:nth-child(6) .item-title {
  font-size: 44px;
}

.item-body {
  font-size: 0.8rem;
  line-height: 1.6;
  letter-spacing: normal;
  color: var(--muted);
  max-width: 380px;
  width: 78%;
  margin: 0 auto;
}

/* デフォルト表示 */
#default-display.active {
  opacity: 1;
  transform: translateY(-15%);
  position: relative;
}

#default-display {
  margin-top: 21%;
}

#default-display .item-title {
  font-size: 26px;
}

/* カラーバリアント */
[data-display="1"] .item-tag {
  color: var(--accent);
}

[data-display="1"] .item-title {
  color: var(--ink);
}

[data-display="2"] .item-tag {
  color: var(--accent2);
}

[data-display="2"] .item-title {
  color: var(--ink);
}

[data-display="3"] .item-tag {
  color: var(--accent3);
}

[data-display="3"] .item-title {
  color: var(--ink);
}

[data-display="4"] .item-tag {
  color: var(--accent4);
}

[data-display="4"] .item-title {
  color: var(--ink);
}

[data-display="5"] .item-tag {
  color: var(--accent5);
}

[data-display="5"] .item-title {
  color: var(--ink);
}

/* 背景のアクセントライン */
.bg-line {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200, 185, 122, 0.1), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease, left 0s;
}

/* コーナーデコ */
.corner {
  position: fixed;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #222;
  text-transform: uppercase;
  display: none;
}

.corner.tl {
  top: 24px;
  left: 32px;
}

.corner.tr {
  top: 24px;
  right: 32px;
  text-align: right;
}

.corner.bl {
  bottom: 24px;
  left: 32px;
}

.corner.br {
  bottom: 24px;
  right: 32px;
  text-align: right;
}

/* 縦テキスト（装飾） */
.vertical-text {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 8px;
  letter-spacing: 0.4em;
  color: #1e1e1e;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1060px) {
  #default-display .item-title {
    font-size: 2.6vw;
  }
  .about-hexagon__text-large {
    font-size: 4vw;
  }
  .about__text-main {
    font-size: 3.4vw;
  }
}
@media (max-width: 980px) {
  .space-small {
    font-size: 3vw;
  }
  .h3-en {
    font-size: 2vw;
  }
  #hexagon-5_medium4 h3 {
    font-size: 3.6vw;
  }
}
@media (max-width: 768px) {
  .about .content,
  .service .content {
    padding: 50px 0 0 0;
  }
  .hexagon5__wrapper {
    --wrapper-width: 100%;
    margin: 0 auto;
    gap: 3%;
    justify-content: center;
    /* font-size: 3vw; */
  }
  .honeycomb-image-area {
    margin-top: 0;
  }
  .about {
    overflow-x: hidden;
  }
  .about .hexagon-5_medium {
    clip-path: none;
    background-color: #fff;
    border: 1px solid #161616;
    aspect-ratio: 4/1;
    margin-bottom: 4vw;
  }
  .about .hexagon-5_medium::before {
    display: none;
  }
  .about .hexagon-5_medium a {
    height: 100%;
    font-size: 4vw;
    padding: 20px 0;
  }
  .about .hexagon-large {
    width: 120vw;
    transform: translate(-33%, -7%);
  }
  .about .hexagons-left {
    order: 1;
  }
  .about .hexagons-right {
    order: 2;
  }
  .about .hexagons-center {
    order: 3;
  }
  .about .hexagons {
    width: 48%;
  }
  .about .honeycomb-image-area .hexagons-center, .about .honeycomb-image-area .hexagons-right {
    margin-left: 0;
  }
  .about .hexagon-text {
    margin-bottom: 0;
  }
  .about .hexagon-text img {
    display: none;
  }
  .about .display-panel {
    padding-top: 8%;
  }
  #default-display .item-body {
    margin-bottom: 25px;
  }
  #default-display .item-title {
    font-size: 4.6vw;
  }
  .about-hexagon__text-large {
    font-size: 7.8vw;
  }
  .about #default-display.active {
    transform: translateY(-15%);
  }
  .hexagons-left, .hexagons-right {
    margin-top: 0;
  }
  .text-display {
    width: 70%;
  }
  .display-panel {
    justify-content: start;
  }
  .about__text-main {
    font-size: 6.4vw;
  }
  .about .text-display .display-item:nth-child(2) .item-title {
    font-size: 6.8vw;
  }
  .about .text-display .display-item:nth-child(4) .item-title {
    font-size: 6.8vw;
  }
  .about .text-display .display-item:nth-child(5) .item-title {
    font-size: 6.8vw;
  }
  .about .text-display .display-item:nth-child(6) .item-title {
    font-size: 6.8vw;
  }
  .about-hexagon__text-small {
    font-size: 6.8vw;
  }
  .item-body {
    max-width: none;
    width: 90%;
    font-size: 3.2vw;
  }
  .hexagon-text h3,
  .space-small {
    font-size: 4.2vw;
  }
  .about .honeycomb-image-area .hexagons-center {
    transform: translateY(-2%);
  }
  #default-display.active {
    transform: translateY(-5%);
  }
  .hexagons .sp-about__icon {
    text-align: center;
    margin-bottom: 1%;
  }
  .hexagons .sp-about__icon img {
    width: 28vw;
    max-width: none;
  }
  .hexagons .sp-about__icon .about__icon-comunication {
    width: 18vw;
  }
}
.hexagons .sp-about__icons {
  text-align: center;
}
.hexagons .sp-about__icons img:first-child {
  width: 13vw;
  margin-bottom: 4%;
}
.hexagons .sp-about__icons img:nth-child(2) {
  width: 22vw;
  margin-left: 5%;
}
.hexagons .sp-about__icons img:last-child {
  width: 16vw;
  margin-bottom: 4%;
}

@media (max-width: 480px) {
  .item-body {
    max-width: none;
    font-size: 3.5vw;
  }
  .about .display-panel {
    padding-top: 0;
  }
  .about #default-display.active {
    transform: translateY(-8%);
  }
  #default-display .item-body {
    margin-bottom: 5px;
  }
}
@media (max-width: 380px) {
  #default-display .item-body {
    margin-bottom: 2%;
  }
  .about .display-panel {
    padding-top: 0;
  }
  #default-display.active {
    transform: translateY(-21%);
  }
  .hexagons .sp-about__icons img:first-child {
    width: 10vw;
    margin-bottom: 4%;
  }
  .hexagons .sp-about__icons img:nth-child(2) {
    width: 17vw;
    margin-left: 5%;
  }
  .hexagons .sp-about__icons img:last-child {
    width: 13vw;
    margin-bottom: 4%;
  }
}
@media (max-width: 320px) {
  .hexagons .sp-about__icon img {
    width: 23vw;
  }
  .hexagons .sp-about__icon .about__icon-comunication {
    width: 15vw;
  }
  .display-item.active {
    transform: translateY(-20%);
  }
  .display-item:nth-child(3).active {
    transform: translateY(-14%);
  }
  .about #default-display.active {
    transform: translateY(-20%);
  }
}
@media (min-width: 769px) {
  .hexagon-5_medium {
    opacity: 0;
    transform: scale(0);
    animation: ponyo 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, purupuru 2s ease-in-out calc(1s + var(--delay)) 1;
  }
  /* 各四角の色と、プルプル動く順番の遅延時間（--delay）を設定 */
  #hexagon-5_medium1 {
    --delay: 0s;
  }
  #hexagon-5_medium2 {
    --delay: 0.5s;
  }
  #hexagon-5_medium3 {
    --delay: 1s;
  }
  #hexagon-5_medium4 {
    --delay: 1.5s;
  }
  #hexagon-5_medium5 {
    --delay: 2s;
  }
  /* --- アニメーション 1: 同時にぽにょっと出現 --- */
  @keyframes ponyo {
    0% {
      opacity: 0;
      transform: scale(0.3) translateY(20px);
    }
    40% {
      opacity: 1;
      transform: scale(1.15) translateY(-10px);
    }
    70% {
      transform: scale(0.95) translateY(5px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  /* --- アニメーション 2: 上下に順番にプルプル --- */
  @keyframes purupuru {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    10% {
      /* 上に跳ねつつ少し縦長に */
      transform: translateY(-15px) scale(0.9, 1.1);
    }
    20% {
      /* 下に沈みつつ少し横長に */
      transform: translateY(10px) scale(1.1, 0.9);
    }
    30% {
      /* 少し上に跳ねる */
      transform: translateY(-5px) scale(0.95, 1.05);
    }
    40% {
      /* 元に戻る */
      transform: translateY(0) scale(1);
    }
    /* 40% ~ 100% の間は動かず待機（ウェーブのような間隔を作るため） */
  }
}
.service .hexagon-5_hexagon {
  background: none;
}
.service .hexagon-5_hexagon::before {
  background-position: center;
  background-size: cover;
  opacity: 0.9;
}
.service .text-display {
  width: 80%;
}
.service #default-display {
  margin: 0;
}
.service .hexagon-text {
  margin-bottom: 0;
  padding: 0 15px;
}
.service h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.025em;
  background: none;
  color: #FFFFFF;
  z-index: 2;
}
.service a {
  background: none;
}
.service a:hover {
  background: rgba(0, 85, 18, 0.3960784314);
}
.service .display-panel {
  width: 70%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.service #hexagon-5_medium4 h3 {
  letter-spacing: 0.025em;
}

.service-tagline-line {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.1em;
  column-gap: 0.1em;
}
.service-tagline-line span {
  line-height: 1;
}
.service-tagline-line .char-large {
  font-size: 84px;
}
.service-tagline-line .char-small {
  font-size: 48px;
}

.service-tagline-line1 {
  margin-bottom: 1rem;
}
.service-tagline-line1 span:last-child {
  transform: translateY(18px);
}

.service-tagline-line2 {
  margin-bottom: 1rem;
}
.service-tagline-line2 span:nth-child(3) {
  transform: translateY(6px);
}
.service-tagline-line2 span:last-child {
  transform: translateY(12px);
}

.service-box {
  position: relative;
}
.service-box::before {
  filter: brightness(0.6);
}

.service-box1::before {
  background-image: url("../images/service/service-icon4.webp");
}

.service-box2::before {
  background-image: url("../images/service/service-icon2.webp");
}

.service-box3::before {
  background-image: url("../images/service/service-icon5.webp");
}

.service-box4::before {
  background-image: url("../images/service/service-icon3.webp");
}

.service-box5::before {
  background-image: url("../images/service/service-icon1.webp");
}

.service #default-display {
  display: block;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-top: 21%;
}
.service #default-display p {
  font-size: 38px;
}
.service #default-display .text-main2 {
  margin-bottom: 1.5rem;
}
.service #default-display .text-large {
  font-size: 72px;
  font-weight: 500;
}

.hexagon-large .company__name {
  text-align: center;
}

@media (max-width: 1230px) {
  .service h3 {
    font-size: 2.2vw;
  }
  .service #hexagon-5_medium4 h3 {
    font-size: 2.2vw;
  }
}
@media (max-width: 998px) {
  .service #default-display p {
    font-size: 3.16vw;
  }
  .service #default-display .text-large {
    font-size: 6vw;
  }
  .service-tagline-line .char-large {
    font-size: 9.66vw;
  }
  .service-tagline-line .char-small {
    font-size: 4.666vw;
  }
}
/* タブレット・横長スマホ (768px以下) */
@media (max-width: 768px) {
  .service {
    height: 100vh;
    overflow-x: hidden;
    margin-top: 60px;
  }
  .service .content {
    width: 100%;
    position: relative;
  }
  .service .hexagon5__wrapper {
    margin-top: 0;
    justify-content: space-between;
  }
  .service .honeycomb-image-area {
    width: 90%;
    margin: 0 auto;
  }
  .service .service-box1,
  .service .service-box2,
  .service .service-box3,
  .service .service-box4,
  .service .service-box5 {
    clip-path: none;
    aspect-ratio: 3/1;
    margin-bottom: 10%;
  }
  .service .hexagons-left {
    width: 48%;
  }
  .service .hexagons-right {
    width: 48%;
  }
  .service .hexagon-5_hexagon::before {
    clip-path: none;
  }
  .service .hexagon-center-top {
    width: 47vw;
    margin: 0 auto;
  }
  .service .hexagon5__wrapper .hexagon-large {
    margin-top: 25%;
  }
  .service .honeycomb-image-area .hexagons-center {
    position: absolute;
    width: 70vw;
    transform: translateX(28%);
    padding-top: 36vw;
  }
  .service .display-panel {
    width: 80%;
  }
  .service #default-display {
    margin-top: 5%;
  }
  .service-tagline-line .char-large {
    font-size: 22vw;
  }
  .service-tagline-line .char-small {
    font-size: 11vw;
  }
  .service-tagline-line2 span:last-child {
    transform: translateY(17px);
  }
  .service h3 {
    font-size: 4.2vw;
    width: 100%;
  }
  .service #hexagon-5_medium4 h3 {
    font-size: 4.2vw;
    width: 100%;
  }
  .service .hexagon-text {
    padding: 0 5px;
  }
}
@media (max-width: 480px) {
  .service h3 {
    font-size: 4vw;
  }
}
.privacy__main-title {
  font-size: 1.4rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
}

.privacy__main-text {
  margin-bottom: 50px;
}

.privacy__title {
  font-size: 1.1rem;
  font-weight: 400;
  border-bottom: 1px solid #acacac;
  padding-bottom: 0.5rem;
  margin: 30px 0 1rem 0;
}

.privacy__text-list {
  list-style-type: disc;
  margin-left: 1rem;
  font-size: 0.8rem;
}/*# sourceMappingURL=style.css.map */