:root {
  /* =========================
     Color
  ========================= */
  /* brand / accent */
  --color-primary: #DD8766;
  --color-secondary: #555555;

  /* =========================
     Typography
  ========================= */
  --font-family-kaku: "Zen Kaku Gothic Antique", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "Meiryo", sans-serif;
  --font-family-maru: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", "Yu Gothic", "Meiryo", sans-serif;
  --line-height-tight: 1.3;
  --line-height-normal: 1.6;
  --line-height-loose: 1.9;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  font-family: var(--font-family-kaku);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: #1A1311;
}

@media (max-width: 750px) {
  body:has(.fixed-contact) {
    padding-bottom: 17.3vw;
  }
}

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

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

.br-sp {
  display: none;
}

.br-pc {
  display: inline;
}

@media (max-width: 750px) {
  .br-sp {
    display: inline;
  }

  .br-pc {
    display: none;
  }
}

.title-en {
  margin-bottom: -8px;
  font-family: var(--font-family-maru);
  font-size: 6rem;
  font-weight: var(--font-weight-black);
  color: var(--color-primary);
}

.title-jp {
  font-family: var(--font-family-kaku);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
}

.title-w .title-en,
.title-w .title-jp {
  color: #fff;
}

.button-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 232px;
  padding: 22px 64px 24px 30px;
  position: relative;
  background: #080808;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  border: none;
  border-radius: 9999px;
  transition: .2s;
}

.button:hover {
  opacity: .8;
}

.button::after {
  content: "";
  width: 7px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background: #fff;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

/* ==========================
  Layout
========================== */
.l-container {
  width: 980px;
  margin-inline: auto;
  position: relative;
}

@media (max-width: 750px) {
  .l-container {
    width: 100%;
    padding-inline: 25px;
  }
}

/* ==========================
  Header
========================== */
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.l-header__inner {
  position: relative;
}

.header-brand {
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 1001;
}

@media (max-width: 750px) {
  .header-brand {
    top: 24px;
    left: 25px;
  }
}

.header-brand__logo {
  width: 49px;
  height: auto;
}

@media (max-width: 750px) {
  .header-brand__logo {
    width: 137px;
  }
}

/* menu button */
.menu-button {
  display: flex;
  align-items: center;
  gap: 14px;
  position: fixed;
  top: 33px;
  right: 32px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: 0;
  padding: 0;
  appearance: none;
}

@media (max-width: 750px) {
  .menu-button {
    flex-direction: column-reverse;
    gap: 3px;
    top: 28px;
    right: 24px;
  }
}

.menu-text {
  font-family: var(--font-family-maru);
  font-size: 1.6rem;
  font-weight: var(--font-weight-black);
  line-height: 1;
}

.menu-icon {
  position: relative;
  width: 36px;
  height: 28px;
  display: block;
}

.menu-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 36px;
  height: 2px;
  background: #080808;
  transform-origin: center;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    top 0.35s ease,
    background 0.35s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 13px;
}

.menu-icon span:nth-child(3) {
  top: 26px;
}

/* 開いた時：ばつ印 */
.menu-button.is-open .menu-icon span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.menu-button.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open .menu-icon span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

.menu-button.is-open .menu-text::after {
  content: "Close";
}

.menu-button.is-open .menu-text {
  font-size: 0;
}

.menu-button.is-open .menu-text::after {
  font-size: 1.6rem;
  font-family: var(--font-family-maru);
  font-weight: var(--font-weight-black);
  line-height: 1;
}

@media (max-width: 750px) {
  .menu-button.is-open .menu-text::after {
    font-size: 1.4rem;
  }
}

/* =========================
   global menu
========================= */
.global-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(255 255 255 / 65%);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.global-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-menu__inner {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.global-menu__main {
  width: 980px;
  margin-inline: auto;
  padding: 170px 0;
}

@media (max-width: 980px) {
  .global-menu__main {
    width: 100%;
    padding: 150px 25px 17.3vw;
  }
}

.global-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid transparent;
  gap: 46px 50px;
  list-style: none;
}

@media (max-width: 750px) {
  .global-menu__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.global-menu__item {
  position: relative;
}

.global-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
  transition: .3s;
}

@media (max-width: 750px) {
  .global-menu__link {
    padding: 4px 0 12px;
  }
}

.global-menu__link:hover {
  opacity: 0.6;
}

.global-menu__link::after {
  content: "";
  width: 54px;
  height: 54px;
  position: relative;
  background: url(../img/common/arrow-right2.svg) no-repeat;
  background-size: contain;
  border-radius: 50%;
}

@media (max-width: 750px) {
  .global-menu__link::after {
    width: 44px;
    height: 44px;
    top: 4px;
  }
}

.global-menu__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.global-menu__en {
  margin-bottom: -10px;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
}

.global-menu__jp {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}

.global-menu__contact {
  margin-top: 50px;
}

@media (max-width: 750px) {
  .global-menu__contact {
    display: none;
  }
}

.global-menu__contact-button {
  content: url(../img/common/menu-contact.svg);
  width: 296px;
  height: auto;
  transition: .3s;
}

.global-menu__contact-button:hover {
  opacity: .8;
}

body.is-menu-open {
  overflow: hidden;
}

/* ==========================
  home
========================== */
/* hero */
.hero-section {
  height: 100vh;
  background: url(../img/common/bg.png) no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  .hero-section {
    height: auto;
  }
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 750px) {
  .hero__inner {
    flex-direction: column-reverse;
    padding: 130px 0 112px;
  }
}

.hero-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 750px) {
  .hero-message {
    position: static;
    transform: translate(0);
    margin-top: 32px;
  }
}

.hero-message__image {
  width: 742px;
  height: auto;
}

@media (max-width: 750px) {
  .hero-message__image {
    width: auto;
    max-width: 342px;
    margin-inline: auto;
  }
}

.hero-canvas canvas {
  max-width: 95vw;
  max-height: 100vh;
  image-rendering: antialiased;
}

@media (max-width: 750px) {
  .hero-canvas canvas {
    max-width: 130vw;
  }
}

#indicatorContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

@media (max-width: 750px) {
  #indicatorContainer {
    flex-direction: row;
    top: auto;
    bottom: 34px;
    position: absolute;
    right: auto;
    transform: translate(0, -50%);
  }
}

.indicator-box {
  width: 9px;
  height: 9px;
  border: 1px solid #707070;
  transition: background-color 0.3s ease;
}

@media (max-width: 750px) {
  .indicator-box {
    width: 10px;
    height: 10px;
  }
}

.indicator-box.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* history */
.history-section {
  border-right: 58px solid var(--color-primary);
}

@media (max-width: 750px) {
  .history-section {
    border-right: none;
  }
}

.history__inner {
  display: grid;
  grid-template-columns: 50% 1fr;
  align-items: start;
}

@media (max-width: 750px) {
  .history__inner {
    display: block;
  }
}

.history-image {
  width: 100%;
  aspect-ratio: 690 / 787;
  position: sticky;
  top: 0;
  background: url(../img/front/history-main-image.webp) no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  .history-image {
    width: 100%;
    aspect-ratio: 393 / 345;
    background: url(../img/front/history-main-image-sp.webp) no-repeat;
    background-size: cover;
  }
}

.history-content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 339px;
  margin-inline: auto;
  padding: 100px 0;
}

@media (max-width: 750px) {
  .history-content {
    gap: 60px;
    width: 100%;
    padding: 50px 25px 78px;
  }
}

.history-item__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
}

.history-item__body {
  margin-top: 26px;
}

.history-item__body p {
  margin-bottom: 1.9em;
  font-size: 1.6rem;
  line-height: 1.8;
}

.history-item__body *:last-of-type {
  margin-bottom: 0;
}

.history-item__image {
  margin-top: 48px;
  border-radius: 10px;
  overflow: hidden;
}

/* works */
.works-section {
  padding: 92px 0 100px;
  background: url(../img/common/bg.png) no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  .works-section {
    padding: 22px 0 50px;
  }
}

.works-title {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}

@media (max-width: 750px) {
  .works-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.works-title-desc {
  font-size: 1.6rem;
}

.works-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin-top: 50px;
}

@media (max-width: 750px) {
  .works-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 38px;
    padding-inline: 25px;
  }
}

.works-link {
  display: block;
  width: 100%;
  aspect-ratio: 690 / 407;
  position: relative;
  overflow: hidden;
}

.works-link:nth-child(n+3) {
  aspect-ratio: 690 / 210;
}

@media (max-width: 750px) {

  .works-link,
  .works-link:nth-child(n+3) {
    aspect-ratio: 345 / 132;
  }
}

.works-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0 0 0 / 30%);
  z-index: 1;
}

.works-link__text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: #fff;
  text-align: center;
  z-index: 1;
}

.works-link__text span {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  font-weight: var(--font-weight-medium);
}

.works-link__text span::after {
  content: "";
  width: 1px;
  height: 28px;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  background: #fff;
}

.works-link__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25, .8, .25, 1);
}

@media (hover: hover) and (pointer: fine) {
  .works-link:hover .works-link__image {
    transform: scale(1.08);
  }
}

.works-button-wrap {
  justify-content: flex-end;
  margin-top: 50px;
}

@media (max-width: 750px) {
  .works-button-wrap {
    justify-content: center;
  }
}


/* member */
.member-section {
  padding: 100px 0;
  overflow: hidden;
}

@media (max-width: 750px) {
  .member-section {
    padding: 24px 0 50px;
  }
}

.member__inner {
  margin-bottom: 47px;
}

.member__nav {
  display: flex;
  gap: 12px;
  position: absolute;
  right: 24px;
  bottom: 0;
}

.member__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
}

.member__btn--prev {
  background: url(../img/common/arrow-left.svg) no-repeat;
  background-size: contain;
}

.member__btn--next {
  background: url(../img/common/arrow-right.svg) no-repeat;
  background-size: contain;
}

.member__slider {
  overflow: visible;
}

@media (max-width: 750px) {
  .member__slider {
    padding-inline: 25px;
  }
}

.member__viewport {
  width: 980px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}

@media (max-width: 750px) {
  .member__viewport {
    width: 100%;
  }
}

.member__track {
  display: flex;
  gap: 46px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform .45s ease;
}

@media (max-width: 750px) {
  .member__track {
    gap: 30px;
  }
}

.member-card {
  flex: 0 0 auto;
  width: min(296px, 72vw);
  border-radius: 10px;
  overflow: hidden;
  transition: .2s;
  cursor: pointer;
}

.member-card:hover {
  opacity: .8;
}

.member-card__img {
  aspect-ratio: 296 / 347;
  background: #eee;
}

.member-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.member-card__cap {
  padding: 14px 15px;
  background: var(--color-primary);
  color: #fff;
  position: relative;
}

.member-card__role {
  font-size: 1.4rem;
}

.member-card__name {
  font-size: 2.2rem;
  font-weight: var(--font-weight-medium);
}

.member-card__arrow {
  display: block;
  width: 11px;
  height: 16px;
  background: url(../img/front/member-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 16px;
  top: 50%;
  translate: 0 -50%;
}

/* voice */
.voice-section {
  background: rgba(221 135 102 / 70%);
}

.voice-content {
  padding: 84px 0 122px;
}

@media (max-width: 750px) {
  .voice-content {
    padding: 18px 0 50px;
  }
}

.voice-desc {
  margin-top: 46px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
}

.voice-button-wrap {
  margin-top: 48px;
}

@media (max-width: 750px) {
  .voice-button-wrap {
    justify-content: center;
    margin-top: 57px;
  }
}

.voice-image--pc {
  display: flex;
  gap: 20px;
  width: 490px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.voice-image__col {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 30px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.voice-image__col img {
  display: block;
  width: 230px;
  height: auto;
  border-radius: 10px;
}

.voice-marquee-set {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-shrink: 0;
}

.voice-image--sp {
  display: none;
}

.voice-image-sp {
  width: calc(100% + 50px);
  margin: 50px 0 0 -25px;
  overflow: hidden;
}

.voice-image-sp__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.voice-image-sp__row:last-child {
  margin-bottom: 0;
}

.voice-image-sp__row img {
  display: block;
  width: 345px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.voice-marquee-set--row {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

@media (max-width: 750px) {

  .voice-image--pc {
    display: none;
  }

  .voice-image--sp {
    display: block;
  }
}


/* blog */
.blog-section {
  padding: 100px 0;
  background: url(../img/common/bg.png) no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  .blog-section {
    padding: 20px 0 50px;
  }
}

.blog__inner {
  display: flex;
  gap: 200px;
}

@media (max-width: 750px) {
  .blog__inner {
    flex-direction: column;
    gap: 50px;
  }
}

.blog-list {
  flex: 1;
}

.blog-item {
  position: relative;
  border-top: 1px solid #707070;
  transition: .3s;
}

.blog-item:last-child {
  border-bottom: 1px solid #707070;
}

.blog-item:hover {
  background: rgba(255 255 255 /40%);
}

.blog-item::after {
  content: "";
  width: 54px;
  height: 54px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: url(../img/common/arrow-right2.svg) no-repeat;
  background-size: contain;
  pointer-events: none;
}

.blog-item__link {
  display: block;
  padding: 22px 110px 22px 34px;
}

@media (max-width: 750px) {
  .blog-item__link {
    padding: 22px 90px 22px 10px;
  }
}

.blog-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.blog-item__date {
  font-size: 1.4rem;
  line-height: 1;
}

.blog-item__cat {
  width: 76px;
  padding: 4px 0;
  background: var(--color-primary);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: #fff;
  text-align: center;
}

.cat2 {
  background: #668BDD;
}

.blog-item__title {
  margin-top: 10px;
  font-size: 1.6rem;
}

/* sustainable */
.sustainable-section {
  padding: 100px 0;
  background: url(../img/front/sustainable-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 750px) {
  .sustainable-section {
    padding: 50px 0 0;
    background: #fff;
  }

  .sustainable-section::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 393 / 370;
    margin-top: -120px;
    background: url(../img/front/sustainable-bg-sp.webp) no-repeat;
    background-size: cover;
  }
}

.sustainable-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

@media (max-width: 750px) {
  .sustainable-title {
    gap: 14px;
  }
}

.sustainable-title::before {
  content: url("../img/front/sustainable-mark.svg");
  width: 65px;
  height: auto;
}

.sustainable-desc {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (max-width: 750px) {
  .sustainable-desc {
    margin-top: 32px;
  }
}

.sustainable-button-wrap {
  margin-top: 48px;
}

@media (max-width: 750px) {
  .sustainable-button-wrap .button {
    width: 100%;
  }
}

.fixed-contact {
  position: fixed;
  width: 100%;
  bottom: 36px;
  right: 0;
  z-index: 998;
}

@media (max-width: 750px) {
  .fixed-contact {
    bottom: 0;
    z-index: 999;
  }
}

.fixed-contact__link {
  display: block;
  width: 200px;
  height: 94px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../img/common/fixed-contact.svg) no-repeat;
  background-size: contain;
  transition: .2s;
}

@media (max-width: 750px) {
  .fixed-contact__link {
    width: 100%;
    height: auto;
    background: url(../img/common/fixed-contact-sp.svg) no-repeat;
    background-size: cover;
    aspect-ratio: 393 / 68;
  }
}

.fixed-contact__link:hover {
  opacity: .9;
}


/* ==========================
  footer
========================== */
.l-footer {
  background: var(--color-primary);
  position: relative;
  color: #fff;
}

.footer-message {
  padding-top: 80px;
}

@media (max-width: 750px) {
  .footer-message {
    padding-top: 50px;
  }
}

.footer-message__image {
  width: 723px;
  height: auto;
  margin-inline: auto;
}

@media (max-width: 750px) {
  .footer-message__image {
    width: 100%;
    max-width: 347px;
    margin-inline: auto;
  }
}

.footer__inner {
  display: flex;
  padding: 80px 0 94px;
}

@media (max-width: 750px) {
  .footer__inner {
    flex-direction: column;
    padding: 50px 0 45px;
  }
}

.footer-content {
  flex: 0 0 50%;
}

.footer-brand__logo {
  max-width: 250px;
  height: auto;
}

@media (max-width: 750px) {
  .footer-brand__logo {
    margin-inline: auto;
  }
}

.footer-address {
  margin-top: 25px;
  font-size: 1.6rem;
}

.footer-tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: -4px;
  font-family: var(--font-family-maru);
  font-size: 4.5rem;
  font-weight: var(--font-weight-black);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 26px;
}

@media (max-width: 750px) {
  .footer-nav {
    margin-top: 30px;
  }
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 750px) {
  .footer-nav__list {
    gap: 8px 14px;
  }
}

.footer-nav__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 1.4rem;
}

.footer-nav__item::before {
  content: "■";
  display: block;
}

.footer-nav__link:hover {
  text-decoration: underline;
}

.footer-map {
  width: 100vw;
  max-width: none;
  margin-right: calc((100vw - 980px) / -2);
  padding-top: 16.07%;
  position: relative;
}

@media (max-width: 750px) {
  .footer-map {
    display: none;
  }
}

.footer-map-sp {
  display: none;
  width: calc(100% + 50px);
  margin: 18px 0 0 -25px;
  padding-top: 69.2%;
  position: relative;
}

@media (max-width: 750px) {
  .footer-map-sp {
    display: block;
  }
}

.footer-map iframe,
.footer-map-sp iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-foot {
  padding: 20px 0;
  border-top: 1px solid #955D48;
}

.footer-foot__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-privacy,
.footer-copyright {
  font-size: 1.4rem;
  color: #955D48;
}

.footer-privacy:hover {
  text-decoration: underline;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  transition: opacity .3s;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0 0 0 / 68%);
}

.modal__container {
  display: flex;
  flex-direction: column;
  width: min(90%, 980px);
  max-height: 70vh;
  position: relative;
  transform: scale(.8);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .3s;
  opacity: 0;
  z-index: 2;
}

.modal.is-open .modal__container {
  transform: scale(1);
  opacity: 1;
}

.modal__content {
  flex: 1;
  overflow-y: auto;
}

.modal__close {
  width: 52px;
  height: 52px;
  position: absolute;
  top: -78px;
  right: 10px;
  background: url(../img/common/modal-close.svg) no-repeat;
  background-size: contain;
  border: none;
}

@media (max-width: 750px) {
  .modal__close {
    width: 30px;
    height: 30px;
    top: -50px;
  }
}

.member-modal__inner {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.member-modal__image-box {
  width: 399px;
}

@media (max-width: 750px) {
  .member-modal__image-box {
    width: 100%;
  }
}

.member-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 750px) {
  .member-modal__image {
    aspect-ratio: 10 / 8;
  }
}

.member-modal__body {
  flex: 1;
  padding: 60px 53px 36px 62px;
}

@media (max-width: 750px) {
  .member-modal__body {
    padding: 30px 25px 36px 25px;
  }
}

.member-modal__name {
  padding: 12px 20px 16px 20px;
  background: var(--color-primary);
  font-size: 2.8rem;
  font-weight: var(--font-weight-medium);
  color: #fff;
  border-radius: 10px;
}

@media (max-width: 750px) {
  .member-modal__name {
    font-size: 2.2rem;
  }
}

.member-modal__table {
  width: 100%;
  margin-top: 14px;
}

.member-modal__table tr:not(:last-child) {
  border-bottom: 1px solid #707070;
}

.member-modal__table th {
  width: 134px;
  padding: 16px 0 14px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  text-align: left;
  vertical-align: top;
}

.member-modal__table td {
  padding: 16px 0 14px;
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
}

@media (max-width: 750px) {
  .member-modal__table td {
    font-size: 1.6rem;
  }
}


/* ==========================
  page
========================== */
/* hero */
.page-hero {
  background: url(../img/common/bg.png) no-repeat;
  background-size: cover;
}

.page-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 490px;
  position: relative;
}

@media (max-width: 750px) {
  .page-hero__inner {
    justify-content: space-between;
    height: auto;
    padding: 100px 25px 60px;
  }
}

.page-hero__title-en {
  display: block;
  margin-bottom: -20px;
  font-family: var(--font-family-maru);
  font-size: 9rem;
  font-weight: var(--font-weight-black);
  color: var(--color-primary);
}

@media (max-width: 750px) {
  .page-hero__title-en {
    margin-bottom: -12px;
    font-size: 4.4rem;
  }
}

.page-hero__title-en-sm {
  margin-bottom: -4px;
  font-size: 7rem;
}

@media (max-width: 750px) {
  .page-hero__title-en-sm {
    margin-bottom: -2px;
    font-size: 3.6rem;
  }
}

.page-hero__title-jp {
  display: block;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
}

@media (max-width: 750px) {
  .page-hero__title-jp {
    font-size: 1.8rem;
  }
}

.page-hero__desc {
  position: absolute;
  bottom: 60px;
  left: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (max-width: 750px) {
  .page-hero__desc {
    bottom: 15px;
    left: 25px;
    position: static;
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

.page-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 428px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 750px) {
  .page-hero__visual {
    width: 38%;
    top: 95px;
    right: 4%;
    transform: translateY(0);
    padding-inline: 15px;
  }
}

.page-hero__message {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-hero-shape {
  width: 100%;
  height: auto;
}

.page-hero-shape__base {
  fill: var(--color-primary);
}

.page-hero-shape__image,
.page-hero-shape__overlay {
  opacity: 0;
  pointer-events: none;
}

.page-hero-shape.is-image .page-hero-shape__image {
  opacity: 1;
}

.page-hero-shape.is-image .page-hero-shape__base {
  opacity: 0;
}

.page-hero-shape.is-image.is-overlay .page-hero-shape__overlay {
  opacity: 1;
}

/* breadcrumb */
.breadcrumb {
  margin-top: 20px;
  padding-inline: 25px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
}

.breadcrumb__item {
  font-size: 1.4rem;
}

.breadcrumb__item:not(:last-child)::after {
  content: "＞";
  display: inline-block;
}


/* works */
.page-works-section {
  padding: 48px 0 120px;
}

.page-works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0 138px;
  margin-top: -10px;
}

@media (max-width: 750px) {
  .page-works__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 0;
  }
}

.page-works__grid>div {
  position: relative;
}

.page-works__grid>div:first-child::after {
  content: "";
  width: 1px;
  height: calc(100% - 18px);
  position: absolute;
  top: 18px;
  right: -70px;
  background: #707070;
}

@media (max-width: 750px) {
  .page-works__grid>div:first-child::after {
    content: none;
  }
}

.page-works__title {
  display: flex;
  align-items: baseline;
  gap: 30px;
  font-family: var(--font-family-maru);
  font-weight: var(--font-weight-black);
}

@media (max-width: 750px) {
  .page-works__title {
    gap: 25px;
  }
}

.page-works__num {
  position: relative;
  font-size: 4rem;
}

@media (max-width: 750px) {
  .page-works__num {
    font-size: 3rem;
  }
}

.page-works__num::after {
  content: "";
  width: 1px;
  height: 36px;
  position: absolute;
  top: 18px;
  right: -16px;
  background: #000;
}

@media (max-width: 750px) {
  .page-works__num::after {
    height: 25px;
    top: 14px;
    right: -12px;
  }
}

.page-works__label {
  font-size: 3.5rem;
  color: var(--color-primary);
}

@media (max-width: 750px) {
  .page-works__label {
    font-size: 2.5rem;
  }
}

.page-works__intro {
  width: 435px;
  margin-top: 25px;
  position: relative;
}

@media (max-width: 750px) {
  .page-works__intro {
    width: 100%;
    margin-top: 15px;
    z-index: -1;
  }
}

.page-works__intro::after {
  content: "";
  width: 108px;
  height: auto;
  aspect-ratio: 108 / 178;
  position: absolute;
  top: 5px;
  right: 0;
  background: url(../img/works/person.png) no-repeat;
  background-size: contain;
}

@media (max-width: 750px) {
  .page-works__intro::after {
    width: 30%;
  }
}

.page-works__intro-text {
  width: 299px;
  padding: 20px;
  position: relative;
  background: #F4F4F4;
  border-radius: 10px;
}

@media (max-width: 750px) {
  .page-works__intro-text {
    width: 60%;
  }
}

.page-works__intro-text::after {
  content: "";
  width: 45px;
  height: 30px;
  position: absolute;
  top: 46px;
  right: -33px;
  background: url(../img/works/bubble-arrow.svg) no-repeat;
  background-size: contain;
  z-index: -1;
}

.page-works__intro-text p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.page-work-item {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}


.page-works {
  padding: 80px 0 95px;
}

@media (max-width: 750px) {
  .page-works {
    padding: 50px 0;
  }
}

.page-works__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

@media (max-width: 750px) {
  .page-works__inner {
    gap: 40px;
  }
}

.page-works__content {
  position: relative;
}


.page-works__main {
  display: flex;
  flex-direction: column;
  width: 490px;
}

@media (max-width: 750px) {
  .page-works__main {
    width: 100%;
  }
}

.page-works__content.reverse .page-works__main {
  margin-left: calc(50% + 55px);
}

@media (max-width: 750px) {
  .page-works__content.reverse .page-works__main {
    margin-left: auto;
  }
}

.page-works__large {
  width: 50vw;
  margin-right: calc((100vw - 980px) / -2);
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 750px) {
  .page-works__large {
    width: 100%;
    margin-top: 30px;
    margin-right: auto;
    position: static;
  }
}

.page-works__content.reverse .page-works__large {
  margin-right: auto;
  margin-left: calc((100vw - 980px) / -2);
  right: auto;
  left: 0;
}

@media (max-width: 750px) {
  .page-works__content.reverse .page-works__large {
    margin-left: auto;
    position: static;
  }
}

.page-works__col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
  width: 420px;
  min-height: 190px;
  margin-top: 30px;
}

@media (max-width: 750px) {
  .page-works__col {
    gap: 25px;
    width: 100%;
    min-height: auto;
  }
}

.work-item {
  cursor: pointer;
  transition: .3s;
}

.work-item:hover {
  opacity: .7;
}

.page-works__grid-main {
  margin-top: 14px;
}

.work-item__image-box {
  aspect-ratio: 188 / 106;
  margin-bottom: 10px;
}

.page-works__large .work-item__image-box {
  width: 100%;
  height: 425px;
}

@media (max-width: 750px) {
  .page-works__large .work-item__image-box {
    height: auto;
    aspect-ratio: 421 / 206;
  }
}

.page-works__grid-main .work-item__image-box {
  aspect-ratio: 421 / 206;
  margin-bottom: 30px;
}

.page-works__grid .work-item__image-box {
  aspect-ratio: 188 / 128;
}

.page-works__grid-main .work-item__image-box {
  aspect-ratio: 421 / 206;
}

.work-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.page-works__large .work-item__image {
  border-radius: 10px 0 0 10px;
}

@media (max-width: 750px) {
  .page-works__large .work-item__image {
    border-radius: 10px;
  }
}

.work-item__body {
  padding-right: 56px;
  position: relative;
}

.work-item__body::after {
  content: "";
  width: 39px;
  height: 39px;
  position: absolute;
  top: 4px;
  right: 0;
  background: url(../img/works/work-item-arrow.svg) no-repeat;
  background-size: contain;
  pointer-events: none;
}

.page-works__large .work-item__body {
  width: 490px;
}

@media (max-width: 750px) {
  .page-works__large .work-item__body {
    width: 100%;
  }
}

.page-works__content.reverse .page-works__large .work-item__body {
  margin-left: auto;
}

.work-item__date {
  display: block;
  font-size: 1.4rem;
  color: #080808;
}

.work-item__client {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}

.work-item__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

.timeline-head {
  font-family: var(--font-family-maru);
  font-weight: var(--font-weight-black);
  font-size: 3.5rem;
  color: var(--color-primary);
}

@media (max-width: 750px) {
  .timeline-head {
    font-size: 2.5rem;
  }
}

.timeline-list {
  margin-top: -50px;
  position: relative;
}

@media (max-width: 750px) {
  .timeline-list {
    margin-top: -10px;
  }
}

.timeline-list::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 8px;
  background: #E0E0E0;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__content {
  flex: 1;
  padding-left: 24px;
  position: relative;
}

.timeline-item__content::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 6px;
  left: 1px;
  background: var(--color-primary);
  border-radius: 50%;
}

@media (max-width: 750px) {
  .timeline-item__content::before {
    top: 4px;
  }
}

.timeline-item__step {
  font-family: var(--font-family-maru);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
}

@media (max-width: 750px) {
  .timeline-item__step {
    font-size: 1.4rem;
  }
}

.timeline-item__title {
  margin: 0 0 12px;
  font-family: var(--font-family-maru);
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 750px) {
  .timeline-item__title {
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
}

.timeline-item__text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.works-modal__inner {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.works-modal__image-box img {
  width: 100%;
}

.works-modal__body {
  padding: 26px 30px 20px 30px;
}

.works-modal__name {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}

.works-modal__text-wrap {
  margin-top: 10px;
}

.works-modal__text-wrap p {
  margin-bottom: 1em;
  font-size: 1.6rem;
  line-height: 1.8;
}

.works-modal__text-wrap p *:last-child {
  margin-bottom: 0;
}

/* voices */
.page-voice {
  padding: 65px 0 100px;
}

@media (max-width: 750px) {
  .page-voice {
    padding: 50px 0;
  }
}

.page-voice-bg {
  padding: 105px 0 115px;
  background: url(../img/common/bg.png) no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  .page-voice-bg {
    padding: 50px 0;
  }
}

.page-voice__head {
  text-align: center;
}

.page-voice__number {
  display: inline-block;
  padding: 2px 14px 4px;
  background: var(--color-primary);
  font-family: var(--font-family-maru);
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: #fff;
  line-height: 1;
  border-radius: 10px;
}

@media (max-width: 750px) {
  .page-voice__number {
    font-size: 2.1rem;
  }
}

.page-voice__title {
  margin-top: 4px;
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
}

@media (max-width: 750px) {
  .page-voice__title {
    font-size: 2.1rem;
  }
}

.page-voice__client {
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.page-voice__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 78px;
  margin-top: 45px;
}

@media (max-width: 750px) {
  .page-voice__content {
    gap: 40px;
    margin-top: 25px;
  }
}

.page-voice__gallery {
  width: 490px;
  z-index: 2;
}

@media (max-width: 750px) {
  .page-voice__gallery {
    width: 100%;
  }
}

.page-voice__gallery-main {
  aspect-ratio: 490 / 400;
}

@media (max-width: 750px) {
  .page-voice__gallery-main {
    aspect-ratio: 490 / 250;
  }
}

.page-voice__gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 750px) {
  .page-voice__gallery-thumbs {
    gap: 15px;
    margin-top: 15px;
  }
}

.page-voice__gallery-thumb {
  width: 126px;
  aspect-ratio: 126 / 103;
}

@media (max-width: 750px) {
  .page-voice__gallery-thumb {
    width: 30%;
  }
}

.page-voice__gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.page-voice__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.voice-item {
  position: relative;
}

.voice-item:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -50px;
  left: 0;
  border-bottom: 1px dashed #707070;
}

.voice-item__head {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.voice-item__text {
  margin-top: 14px;
}

.voice-item__text p {
  margin-bottom: 1em;
  font-size: 1.6rem;
  line-height: 1.8;
}

.voice-item__text p:last-of-type {
  margin-bottom: 0;
}

/* about */
.page-about {
  padding: 55px 0 100px;
}

.page-about-bg {
  padding: 100px 0;
  background: url(../img/common/bg.png) no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  .page-about-bg {
    padding: 50px 0;
  }
}

.page-about__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 100px;
}

@media (max-width: 750px) {
  .page-about__inner {
    flex-direction: column;
    gap: 20px;
  }
}

.page-about__title-en {
  margin-bottom: -2px;
  font-family: var(--font-family-maru);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.page-about__title {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
}

.page-about__content {
  flex: 1;
}

.page-about__table {
  width: 100%;
}

.page-about__table th,
.page-about__table td {
  padding-block: 22px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}

.page-about__table th {
  width: 162px;
  padding-inline: 10px;
  border-bottom: 2px solid var(--color-primary);
}

@media (max-width: 750px) {
  .page-about__table th {
    width: 100px;
  }
}

.page-about__table td {
  padding-inline: 18px;
  border-bottom: 1px solid #E0E0E0;
}

.page-about__message {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

@media (max-width: 750px) {
  .page-about__message {
    font-size: 2rem;
  }
}

.page-about__desc {
  margin-top: 46px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (max-width: 750px) {
  .page-about__desc {
    margin-top: 30px;
  }
}


/* blog */
.page-blog {
  padding: 55px 0 100px;
}

.page-blog .blog-item::after {
  width: 37px;
  height: 37px;
  right: 20px;
}

.page-blog .blog-item__link {
  padding: 22px 80px 22px 10px;
}

.page-blog .blog-item__meta {
  gap: 10px;
}

.page-blog .blog-item__date {
  font-size: 1.6rem;
}

.blog-button-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.button-more::after {
  width: 8px;
  height: 7px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}


/* post */
.post-article__header {
  padding: 160px 0 142px;
  background: url(../img/common/bg.png) no-repeat;
  background-size: cover;
}

@media (max-width: 750px) {
  .post-article__header {
    padding: 130px 0 74px;
  }
}

.post-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.post-article__date {
  font-size: 1.6rem;
}

@media (max-width: 750px) {
  .post-article__date {
    font-size: 1.4rem;
  }
}

.post-article__cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

@media (max-width: 750px) {
  .post-article__cats {
    gap: 10px;
  }
}

.post-article__cat {
  display: inline-block;
  padding: 2px 16px 4px;
  background: var(--color-primary);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: #fff;
}

@media (max-width: 750px) {
  .post-article__cat {
    font-size: 1.4rem;
  }
}

.cat-news {
  background: var(--color-primary);
}

.cat-blog {
  background: #668BDD;
}

.post-article__title {
  max-width: 550px;
  margin-top: 14px;
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

@media (max-width: 750px) {
  .post-article__title {
    font-size: 2.4rem;
  }
}

.post-article__body {
  max-width: 720px;
  margin: 55px auto 0;
}

@media (max-width: 750px) {
  .post-article__body {
    padding-inline: 25px;
    margin-top: 35px;
  }
}

.entry-content p {
  margin-bottom: 1em;
  font-size: 1.6rem;
  line-height: 1.8;
}

.entry-content h2 {
  margin: 1.6em 0 .6em;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}

.entry-content h3 {
  margin: 1.6em 0 .6em;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

.entry-content ul {
  list-style: disc;
  margin: 2em 0 .6em;
  padding-left: 2.5em;
}

.entry-content li {
  font-size: 1.6rem;
  line-height: 1.8;
}

.entry-content img {
  display: block;
  max-width: 100%;
  margin: 1em auto;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0 .6em;
}

.entry-content table th,
.entry-content table td {
  font-size: 1.6rem;
  line-height: 1.8;
}

.entry-content a {
  text-decoration: underline;
}

.entry-content a:hover {
  text-decoration: none;
}

.entry-content *:last-child {
  margin-bottom: 0;
}

/* 画像の位置調整 */
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  text-align: center;
}

.wp-caption-text {
  margin-top: 0;
}

/* コンテンツ自由入力欄画像のflot解除用 */
.articleBody * {
  clear: both;
}

.articleBody .alignright+* {
  clear: both;
}

.articleBody .alignleft+* {
  clear: both;
}

.post-article__footer {
  max-width: 720px;
  margin: 50px auto 100px;
}

.post-article__pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 750px) {
  .post-article__pager {
    padding: 0 25px 90px;
  }
}

@media (max-width: 750px) {
  .post-article__pager-all {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.post-article__pager-prev,
.post-article__pager-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}

.post-article__pager-prev::before {
  content: "";
  width: 44px;
  height: 44px;
  background: url(../img/common/arrow-left.svg) no-repeat;
  background-size: contain;
}

.post-article__pager-next::after {
  content: "";
  width: 44px;
  height: 44px;
  background: url(../img/common/arrow-right.svg) no-repeat;
  background-size: contain;
}

.post-article__pager-all::after {
  clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
}


/* contact */
.page-contact {
  padding: 52px 0 85px;
}

@media (max-width: 750px) {
  .page-contact {
    padding: 50px 0;
  }
}

.form-group,
.smf-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 750px) {

  .form-group,
  .smf-form {
    gap: 20px;
  }
}

.form-field,
.smf-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 17px;
}

@media (max-width: 750px) {

  .form-field,
  .smf-item {
    display: block;
  }
}

.form-label,
.smf-item__label {
  width: 260px;
  padding: 8px 70px 8px 0;
  position: relative;
  font-size: 2rem;
}

@media (max-width: 750px) {

  .form-label,
  .smf-item__label {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    font-size: 1.6rem;
  }
}

.form-label.required::after,
.required .smf-item__label__text::after {
  content: "必須";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--color-primary);
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  color: #fff;
  border-radius: 6px;
}

@media (max-width: 750px) {

  .form-label.required::after,
  .required .smf-item__label__text::after {
    display: inline-block;
    width: 48px;
    height: 24px;
    position: static;
    margin-left: 10px;
    font-size: 1.4rem;
    transform: translateY(0);
    text-align: center;
  }
}

.smf-text-control {
  margin: -8px 0;
}

.form-control,
.smf-item__col--controls {
  flex: 1;
}

.form-input,
.smf-text-control__control {
  width: 100%;
  padding: 11px 14px !important;
  font-size: 1.6rem !important;
  border: 1px solid #E0E0E0;
}

.form-textarea,
.smf-textarea-control__control {
  min-height: 250px;
  padding: 11px 14px !important;
  font-size: 1.6rem !important;
}

.form-actions,
.smf-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

@media (max-width: 750px) {
  .smf-action {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.form-button,
.smf-button-control__control {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  min-width: 232px !important;
  padding: 22px 64px 24px 30px !important;
  position: relative !important;
  background: var(--color-primary) !important;
  font-size: 1.6rem !important;
  line-height: 1.3 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9999px !important;
  transition: .2s;
}

.smf-button-control [data-action="back"] {
  background: #000 !important;
}

.form-button:hover {
  opacity: .8;
}

.form-button::after,
.smf-button-control__control::after {
  content: "";
  width: 7px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background: #fff;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.smf-button-control [data-action="back"]::after {
  clip-path: polygon(100% 0%, 0% 50%, 100% 100%) !important;
}

.smf-action .smf-button-control+.smf-button-control {
  margin-left: 0 !important;
}

.smf-error-messages {
  font-size: 1.6rem;
  font-weight: bold;
}

.smf-placeholder {
  padding: 8px 0;
  font-size: 1.6rem;
}

.smf-complete-content,
.smf-system-error-content {
  font-size: 1.6rem;
  line-height: 1.8;
}

.smf-label {
  margin-right: 20px !important;
}

.smf-radio-button-control {
  padding: 2px 0;
  gap: 5px !important;
}

.smf-radio-button-control__label {
  font-size: 1.6rem;
}

.smf-radio-button-control__control {
  width: 19px !important;
  height: 19px !important;
  border-color: #707070 !important;
}

.smf-form .smf-radio-button-control__control:checked {
  background-color: var(--color-primary);
}

.form-radio-group {
  padding: 11px 0;
}

input[type=radio] {
  display: none;
}

/* ネイティブのinputを非表示 */
.form-radio-group .form-radio-input {
  display: none;
}

.wpcf7-form-control {
  display: flex;
  gap: 20px;
}

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

/* label スタイル */
.form-radio-group .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 1.6rem;
  user-select: none;
}

/* ●の外枠 */
.form-radio-group .wpcf7-list-item label::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid #707070;
  background-color: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s, background-color 0.2s;
}

/* 選択時：:has() で input:checked を持つ label を対象にする */
.form-radio-group .wpcf7-list-item label:has(input:checked)::before {
  background-color: var(--color-primary);
  box-shadow: inset 0 0 0 4px #fff;
}

/* privacy */
.page-privacy {
  padding: 100px 0;
}

@media (max-width: 750px) {
  .page-privacy {
    padding: 50px 0;
  }
}

.page-privacy__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-privacy__item p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.page-privacy__item.mt1 {
  margin-top: 60px;
}

@media (max-width: 750px) {
  .page-privacy__item.mt1 {
    margin-top: 40px;
  }
}